/*
Version: 3.4.8 Timestamp: Thu May  1 09:50:32 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('select2.png') no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('select2.png') no-repeat 100% -22px;
    background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin-left: 0;
    margin-right: 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

.form-control .select2-choice {
    border: 0;
    border-radius: 2px;
}

.form-control .select2-choice .select2-arrow {
    border-radius: 0 2px 2px 0;   
}

.form-control.select2-container {
    height: auto !important;
    padding: 0;
}

.form-control.select2-container.select2-dropdown-open {
    border-color: #5897FB;
    border-radius: 3px 3px 0 0;
}

.form-control .select2-container.select2-dropdown-open .select2-choices {
    border-radius: 3px 3px 0 0;
}

.form-control.select2-container .select2-choices {
    border: 0 !important;
    border-radius: 3px;
}

.control-group.warning .select2-container .select2-choice,
.control-group.warning .select2-container .select2-choices,
.control-group.warning .select2-container-active .select2-choice,
.control-group.warning .select2-container-active .select2-choices,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.warning .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #C09853 !important;
}

.control-group.warning .select2-container .select2-choice div {
    border-left: 1px solid #C09853 !important;
    background: #FCF8E3 !important;
}

.control-group.error .select2-container .select2-choice,
.control-group.error .select2-container .select2-choices,
.control-group.error .select2-container-active .select2-choice,
.control-group.error .select2-container-active .select2-choices,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.error .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #B94A48 !important;
}

.control-group.error .select2-container .select2-choice div {
    border-left: 1px solid #B94A48 !important;
    background: #F2DEDE !important;
}

.control-group.info .select2-container .select2-choice,
.control-group.info .select2-container .select2-choices,
.control-group.info .select2-container-active .select2-choice,
.control-group.info .select2-container-active .select2-choices,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.info .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #3A87AD !important;
}

.control-group.info .select2-container .select2-choice div {
    border-left: 1px solid #3A87AD !important;
    background: #D9EDF7 !important;
}

.control-group.success .select2-container .select2-choice,
.control-group.success .select2-container .select2-choices,
.control-group.success .select2-container-active .select2-choice,
.control-group.success .select2-container-active .select2-choices,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.success .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #468847 !important;
}

.control-group.success .select2-container .select2-choice div {
    border-left: 1px solid #468847 !important;
    background: #DFF0D8 !important;
}

/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.9.8 - 2015-02-16T15:10:00.891Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}


/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;

  /* Instead of center because of .btn */
  text-align: left;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 100%;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: .3em;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
  outline: 0;
}

.ui-select-bootstrap .ui-select-choices-row>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>a:hover, .ui-select-bootstrap .ui-select-choices-row>a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>a {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>a,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>a {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #428bca;
}
a.text-primary:hover {
  color: #3071a9;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #428bca;
}
a.bg-primary:hover {
  background-color: #3071a9;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
table {
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.modal-footer:before,
.modal-footer:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.modal-footer:after,
.dl-horizontal dd:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.adstream-select {
  min-width: 730px;
  min-height: 220px;
  position: relative;
}
.adstream-select .text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adstream-select .add-item,
.adstream-select .remove-item {
  display: inline-block;
  height: 29px;
  line-height: 29px;
  width: 29px;
  background-position: center center;
  background-repeat: no-repeat no-repeat;
  position: absolute;
  right: 37px;
  opacity: 0.7;
}
.adstream-select .add-item:hover,
.adstream-select .remove-item:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #f0f7fe;
  border: 1px solid #c9e1fc;
  border-radius: 100%;
}
.adstream-select .add-item {
  background-image: url('../images/adstream-select/add-item.png');
}
.adstream-select .remove-item {
  background-image: url('../images/adstream-select/remove-item.png');
}
.adstream-select .item {
  border-bottom: 1px solid #cccccc;
  height: 30px;
  line-height: 30px;
  AAAborder-right: solid #cccccc 1px;
  position: relative;
}
.adstream-select .item:hover {
  background-color: #d8e9fd;
}
.adstream-select .item-name {
  height: 30px;
  line-height: 30px;
  width: 250px;
  display: inline-block;
  margin-left: 20px;
}
.adstream-select .item:last-child {
  border-bottom: 0;
}
.adstream-select .selected-panel {
  min-width: 350px;
  border: solid 1px #cccccc;
  display: inline-block;
  position: absolute;
  top: 0;
  background: white;
}
.adstream-select .items-container {
  max-height: 179px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 350px;
}
.adstream-select .search-item {
  border-bottom: 1px solid #cccccc;
  height: 40px;
  line-height: 40px;
  position: relative;
}
.adstream-select .search-field {
  height: 30px;
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 200px;
}
.adstream-select .input-sm {
  height: 100%;
}
.adstream-select .items-container::-webkit-scrollbar {
  width: 15px;
}
.adstream-select .items-container::-webkit-scrollbar-thumb {
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  background-color: #e2e2e2;
  border-radius: 5px;
}
.adstream-select .selected-panel.items-acceptor {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  right: 0;
}
.adstream-select .selected-panel.items-donor {
  left: 0;
}
.adstream-select .all-items {
  position: absolute;
  left: 232px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adstream-select .items-all:hover {
  text-decoration: underline;
  cursor: pointer;
}
.adstream-select .right-inner-addon-A i {
  position: absolute;
  right: 0;
  padding: 7px 11px;
}
.adstream-select .item-name {
  width: 220px;
  float: left;
  border-right: 1px solid #ccc;
}
.adstream-select .show-prepared-content {
  width: 50px;
  height: 30px;
  float: left;
  text-align: center;
  border-right: 1px solid #ccc;
}
.adstream-select .add-item,
.adstream-select .remove-item {
  height: 30px;
  width: 40px;
  float: right;
  position: relative;
  right: auto;
}

.modal-box {
  -moz-box-shadow: 1px 0px 3px 0px #cccccc;
  -ms-box-shadow: 1px 0px 3px 0px #cccccc;
  -webkit-box-shadow: 1px 0px 3px 0px #cccccc;
  box-shadow: 1px 0px 3px 0px #CCC;
  border-radius: 1px;
  position: absolute;
  min-width: 350px;
  border: 1px solid #CCC;
  z-index: 1050;
}
.modal-box .title {
  position: relative;
}
.modal-box .text {
  background: #F3F3F3;
  min-height: 18px;
  color: #333;
  line-height: 18px;
  padding: 8px 38px 8px 20px;
  border-bottom: 1px solid #D2D2D2;
  font-weight: bold;
  position: relative;
  word-wrap: break-word;
}
.modal-box .closeHint {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 16px;
}
.modal-box .content {
  padding: 18px;
  line-height: 17px;
  background: #ffffff;
  font-weight: normal;
}

.destination-groups-table .GATable td.edit {
  width: 150px;
}
.destination-groups-table .GATable td.edit .EditBox {
  max-width: none;
}
.destination-groups-table .GATable td.edit .EditBox .icon.edit {
  float: right;
  padding-right: 15px;
}
.destination-groups-table .new-destination-group .EditPanel .EditTitle {
  border: 0;
}
.destination-groups-table .sortorder.icon6 {
  cursor: default;
}

tr.ga-edit .EditPanel .EditTitle {
  border: 0;
}
tr.ga-edit.edit-mode:hover > td {
  background: none;
}
tr.ga-edit .edit .info,
tr.ga-edit .edit .delete {
  float: right;
  width: 16px;
  visibility: hidden;
}
tr.ga-edit .edit .delete {
  margin-right: 5px;
}
.GATable tr.ga-edit:hover > td > .EditBoxContainer .EditBox {
  visibility: hidden;
}
.GATable tr.ga-edit:hover > td > .info,
.GATable tr.ga-edit:hover > td > .delete,
.GATable tr.ga-edit:hover > td > .iconrelocate2 {
  visibility: visible;
}
.GATableName span {
  width: 730px;
}
.GATableName .likeLink,
.GATableName .ellipsed {
  width: 300px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.gaPaging.ga-paging * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.gaPaging.ga-paging *:before,
.gaPaging.ga-paging *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.gaPaging.ga-paging .input {
  height: 18px;
  line-height: 18px;
}
.gaPaging.ga-paging .input input {
  padding: 0 4px;
  width: 7px;
}
.gaPaging.ga-paging .input input.size-1 {
  width: 7px;
}
.gaPaging.ga-paging .input input.size-2 {
  width: 14px;
}
.gaPaging.ga-paging .input input.size-3 {
  width: 21px;
}
.gaPaging.ga-paging .input input.size-4 {
  width: 28px;
}
.gaPaging.ga-paging .input input.size-5 {
  width: 35px;
}

.simple-search .InputBox {
  float: left;
  margin-right: 9px;
}
.simple-search .InputBox.FieldInput input {
  height: 25px;
  line-height: 25px;
}
.simple-search .SearhButton {
  float: left;
}

.tab-view {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.tab-view li {
  display: inline-block;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid silver;
  margin-bottom: -1px;
  border-radius: 2px 2px;
  cursor: pointer;
  min-width: 100px;
  background-color: #F5F5F5;
  color: black;
  padding-left: 5px;
  padding-right: 5px;
}
.tab-view li.selected {
  background-color: white;
  color: black;
  border-bottom: 1px solid transparent;
}
.tab-content header {
  display: none;
}
.tab-content {
  width: 100%;
  height: 100%;
  display: none;
  border: 1px solid silver;
  padding-left: 6px;
  padding-bottom: 6px;
}
.tab-content.selected {
  display: block;
}

.ga-bread-crumbles {
  overflow: hidden;
}
.ga-bread-crumbles .BreadCrumbles a.title {
  font-weight: normal;
}

.modal-open .ga-info-window {
  display: block;
}
.ga-info-window {
  z-index: 1050;
}
.ga-info-window .modal-content {
  border-radius: 1px;
  box-shadow: 1px 0px 3px 0px #CCC;
  border: 1px solid #CCC;
}
.ga-info-window .modal-content .header {
  font-weight: bold;
  line-height: 18px;
  min-height: 18px;
  padding: 8px 38px 8px 20px;
  background-color: #F3F3F3;
  border-bottom: 1px solid #D2D2D2;
  position: relative;
  text-align: left;
  height: auto;
}
.ga-info-window .modal-content .header .close {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 16px;
}
.ga-info-window .modal-content .content {
  padding: 18px 10px 18px 18px;
}

.ta-info-msg {
  background: #FEFFC2;
  border: solid 1px #fff30d;
  color: #202020;
  left: 0;
  margin: auto;
  height: 20px;
  line-height: 20px;
  padding: 0 20px;
  position: fixed;
  right: 0;
  top: 0px;
  transition: opacity 1s ease;
  word-wrap: break-word;
  z-index: 1050;
  font-size: 12px;
}
.ta-info-msg.success {
  background-color: #ccedd4;
  border-color: #b7dec1;
}
.ta-info-msg.success .icon16 {
  background-position: 0 -387px;
}
.ta-info-msg.error {
  background-color: #ffded9;
  border-color: #f7d1cb;
}
.ta-info-msg.error .icon16 {
  background-position: 0 -403px;
}
.ta-info-msg .icon16 {
  margin-right: 5px;
  display: inline-block;
  line-height: 16px;
  width: 16px;
}
.ta-info-msg-fade {
  opacity: 0;
}

.ga-date-edit {
  display: table;
}
.ga-date-edit .form-control,
.ga-date-edit .input-group-btn {
  display: table-cell;
  vertical-align: middle;
}
.ga-date-edit input[type="text"].noWidget {
  border-radius: 3px 0 0 3px;
}
.ga-date-edit .input-group-btn button {
  margin-left: -1px;
  padding: 1px 6px 4px 6px;
  border-radius: 0 3px 3px 0;
  height: 23px;
  width: 28px;
}
.ga-date-edit .dropdown-menu table {
  outline: none;
}
.ga-date-edit .dropdown-menu table td {
  padding: 0;
}
.ga-date-edit .dropdown-menu table th {
  text-align: center;
}
.ga-date-edit .dropdown-menu table th small {
  font-size: 85%;
}
.ga-date-edit .dropdown-menu .btn-default {
  height: 34px;
}
.ga-date-edit .dropdown-menu .btn-default.btn-sm {
  height: 30px;
}
.ga-date-edit .dropdown-menu .btn-default:not(.active) {
  border: 0;
}
.ga-date-edit strong {
  font-weight: bold;
}

.default-button {
  display: inline-block;
}

.ga-number input[type="number"] {
  box-sizing: content-box;
  color: #404040;
  height: 23px;
  width: 165px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding-left: 5px;
}
.ga-number .ga-popover {
  width: 165px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.margin-top-20px {
  margin-top: 20px;
}
.margin-bottom-20px {
  margin-bottom: 20px;
}
.ga-hidden {
  display: none;
}
.ga-logo-image {
  width: 110px;
  height: 68px;
}
.ga-loading {
  opacity: 0.5;
}
.ga-loader {
  background-image: url('../images/loader.gif');
  background-position: center center;
  background-repeat: no-repeat;
}
.ga-spinner {
  background-image: url('../images/spinner3-black.gif');
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  display: inline;
  float: left;
}
.ui-select-container {
  width: 100%;
}
.ui-select-container button.ui-select-toggle {
  border-radius: 0;
  text-align: left;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.ui-select-container .ui-select-choices.ui-select-choices-content.dropdown-menu {
  border-radius: 0;
}
.ui-select-container button.ui-select-toggle {
  height: 30px;
  padding: 4px 10px;
  background-color: #F5F5F5;
}
.wp-img-container {
  width: 35px;
  height: 35px;
  display: inline-block;
  opacity: 0.7;
}
.wp-img-container.pen {
  background-image: url('../images/pen.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-img-container.basket {
  background-image: url('../images/basket.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-img-container.add-item {
  background-image: url('../images/add-item.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-img-container.copy {
  background-image: url('../images/copyt.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-img-container:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  border-radius: 100%;
}
.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-ms-clear {
  display: none;
}
* {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
*:before,
*:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.btn-confirm-blue {
  background-color: #008BCB;
  border-color: #008BCB;
  min-width: 90px;
  color: #ffffff;
  border-radius: 0;
}
.btn-confirm-blue:hover,
.btn-confirm-blue:focus,
.btn-confirm-blue:active,
.btn-confirm-blue.active {
  background-color: #007ab2;
  border-color: #006898;
  color: #ffffff;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-container .select2-choice .select2-arrow b {
    background-repeat: no-repeat !important;
    background-size: inherit !important;
    background-image: url('../images/ga3icons.png') !important;
    background-position: right -78px !important;
  }
}

.ga-mandatory {
  color: #ff3636;
}

.select2-search input {
  min-height: 23px;
  padding: 3px 20px 3px 5px;
  border-radius: 4px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.yellow-window {
  background-color: #FFFDCE;
  border: 1px solid #0F3D3B;
}
.yellow-window .title {
  font-weight: bold;
  font-size: 16px;
}
.yellow-window .modal-header {
  border-bottom: 0;
}
.yellow-window .cancel {
  color: #404040;
  text-decoration: underline;
}
.yellow-window .cancel:hover {
  color: #404040;
}
.field-label-col {
  width: 120px;
  text-align: right;
}
.modal-backdrop.fade.in {
  background: #EEEEEE;
  opacity: 0.5;
}
.modal.fade {
  transition: opacity 0.3s linear;
}
.modal-dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  overflow-y: auto;
}
.modal-dialog:after {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.modal-content {
  display: inline-block;
  vertical-align: middle;
}
.modal-footer {
  border-top: 0;
}
.modal-header {
  padding: 20px 40px 15px;
}
.custom-modal {
  text-align: left;
  min-width: 540px;
  min-height: 180px;
  font-size: 14px;
}
.custom-modal * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-modal *:before,
.custom-modal *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-modal .custom-modal-content {
  padding: 0 40px 30px 40px;
}
.custom-modal .custom-modal-content .confirm-message {
  font-size: 90%;
}
.custom-modal .btn-confirm-blue {
  background-color: #008BCB;
  border-color: #008BCB;
  min-width: 90px;
  color: #ffffff;
  border-radius: 0;
}
.custom-modal .btn-confirm-blue:hover,
.custom-modal .btn-confirm-blue:focus,
.custom-modal .btn-confirm-blue:active,
.custom-modal .btn-confirm-blue.active {
  background-color: #007ab2;
  border-color: #006898;
  color: #ffffff;
}
.custom-modal .button-cancel {
  margin-left: 20px;
}
.custom-modal .button-cancel:hover {
  text-decoration: underline;
  cursor: pointer;
}
.custom-modal .title {
  background-color: #F0F0F0;
  font-weight: bold;
  padding: 0 40px;
  position: relative;
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px;
}
.custom-modal .title .tick-blue,
.custom-modal .title .tick-close {
  display: inline-block;
  height: 100%;
  min-width: 20px;
  position: absolute;
}
.custom-modal .title .caption {
  margin-left: 25px;
}
.custom-modal .title .tick-blue {
  background-image: url('../images/tick-blue.png');
  background-position: center center;
  background-repeat: no-repeat;
  left: 40px;
}
.custom-modal .title .tick-close {
  background-image: url('../images/tick-close.png');
  background-position: center center;
  background-repeat: no-repeat;
  right: 20px;
  opacity: 0.7;
}
.custom-modal .title .tick-close:hover {
  opacity: 1;
  cursor: pointer;
}
.custom-modal.user-modal {
  min-width: 810px;
}
.custom-modal .modal-action-block {
  margin-top: 30px;
}
.custom-modal .btn-link {
  color: #202020;
}
.custom-modal .ga-label {
  font-size: 12px;
  height: 26px;
  line-height: 22px;
  vertical-align: top;
}
.custom-modal .ga-small-input {
  width: 60px;
  float: left;
}
.custom-modal .ga-uom {
  float: left;
  white-space: nowrap;
  margin-left: 2px;
  margin-right: 8px;
}
.white-pages-window .modal-content {
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  border: 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}

.ga-commit-tree .bottom-line {
  border-bottom: 1px solid #EEE;
}
.ga-commit-tree .AdsMoreInformation {
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ga-commit-tree .AdsMoreInformation .expandControl {
  display: inline-block;
}
.ga-commit-tree .new-level {
  padding-left: 18px;
}
.ga-commit-tree .paragraph {
  font-weight: bold;
}
.ga-commit-tree .new-item {
  color: #66AA59;
}
.ga-commit-tree .modified-item {
  color: #D2AF35;
}
.ga-commit-tree .deleted-item {
  color: #C45353;
}
.ga-commit-tree .item {
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  padding-left: 20px;
}
.ga-commit-tree .action-description {
  font-size: 12px;
}
.ga-commit-tree .item-container {
  position: relative;
}
.ga-commit-tree .item-container:hover {
  background: #EEF4F7;
}
.ga-commit-tree .expand-all {
  float: right;
  color: #0082DC;
  margin-top: 3px;
  font-weight: normal;
  font-size: 13px;
}
.ga-commit-tree .expand-all > span {
  border-bottom: 1px dashed #0082DC;
  cursor: pointer;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.tv-commit-tree button {
  width: 70px;
}
.tv-commit-tree button.btn.cancel.btn-link {
  color: #404040;
  box-sizing: border-box;
}
.tv-commit-tree button.btn.cancel.btn-link:hover {
  color: #404040;
}
.tv-commit-tree button.SearchButton,
.tv-commit-tree button.cancel {
  margin-right: 10px;
}
.tv-commit-tree .SaveButton.gaBlueButton {
  display: inline-block;
}
.tv-commit-tree .name {
  font-weight: bold;
}
.tv-commit-tree .intro {
  margin: 15px 0;
}
.tv-commit-tree .tree-container {
  font-size: 13px;
  margin-left: 20px;
}
.tv-commit-events .date-container {
  float: left;
  padding: 0 5px 0 0;
}
.tv-commit-events .events-table {
  font-size: 13px;
  border-top: 2px solid #CCC;
  border-left: 2px solid #CCC;
}
.tv-commit-events .events-table .index {
  width: 5%;
}
.tv-commit-events .events-table .name {
  width: 18%;
}
.tv-commit-events .events-table .code {
  width: 12%;
}
.tv-commit-events .events-table .date {
  width: 25%;
}
.tv-commit-events .events-table .commited-by {
  width: 15%;
}
.tv-commit-events .events-table .link {
  width: 20%;
}
.tv-commit-events .events-table tr:nth-child(odd) {
  background-color: #F5F5F5;
}
.tv-commit-events .events-table tr:nth-child(odd):hover {
  background-color: #EEF4F7;
}
.tv-commit-events .events-table tr:nth-child(even) {
  background-color: #ffffff;
}
.tv-commit-events .events-table tr:nth-child(even):hover {
  background-color: #EEF4F7;
}
.tv-commit-events .events-table td {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
.tv-commit-events .events-table th {
  font-weight: normal;
}
.tv-commit-events .events-table td,
.tv-commit-events .events-table th {
  height: 30px;
  padding: 0 10px;
  text-align: left;
  border-right: 2px solid #CCC;
  border-bottom: 2px solid #CCC;
}
.tv-commit-events .events-table tr.header {
  background-color: #E0E0E0;
  height: 32px;
}
.tv-commit-events .events-table tr.header:hover {
  background-color: #E0E0E0;
}
.tv-commit-events .events-table tr.actions {
  background-color: #F8F8F8;
}
.tv-commit-events .events-table tr.actions:hover {
  background-color: #F8F8F8;
}
.tv-commit-events .events-table tr.actions td {
  padding: 7px 15px;
}
.tv-commit-events .events-table .dropdown-menu table tr {
  background-color: #ffffff;
}
.tv-commit-events .events-table .dropdown-menu table tr:hover {
  background-color: #ffffff;
}
.tv-commit-events .events-table .dropdown-menu table tr td,
.tv-commit-events .events-table .dropdown-menu table tr th {
  height: auto;
  border-right: 0;
  border-bottom: 0;
  padding: 0;
}
.tv-commit-events .events-table .dropdown-menu table tr th {
  font-weight: bold;
}
.tv-commit-events .events-table .ga-paging {
  float: right;
}
.tv-commit-events .events-table .input-container {
  float: left;
  padding: 18px 5px 0 0;
}
.tv-commit-events .events-table .input-container input {
  box-sizing: border-box;
}
.tv-commit-events .events-table .SearhButton {
  margin-top: 16px;
}
.tv-commit-events .events-table .sortorder {
  display: inline-block;
  margin-left: 5px;
  width: 8px;
  margin-top: 6px;
  zoom: 1;
  cursor: default;
}
.tv-commit-events .events-table .label {
  cursor: pointer;
  font-weight: normal;
}
.tv-commit-events .events-table .no-elements {
  text-align: center;
}
.tv-commit-details {
  overflow: hidden;
  font-size: 13px;
}
.tv-commit-details * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tv-commit-details *:before,
.tv-commit-details *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tv-commit-details .elements {
  font-weight: bold;
  border-bottom: 1px solid #EDEDED;
}
.tv-commit-details .elements:hover {
  background-color: #EEF4F7;
}
.tv-commit-details .title {
  border-bottom: 3px solid #EDEDED;
}
.tv-commit-details .row {
  margin-left: -5px;
  height: 32px;
  line-height: 32px;
}
.tv-commit-details .row .new-item {
  color: #66AA59;
}
.tv-commit-details .row .modified-item {
  color: #D2AF35;
}
.tv-commit-details .row .deleted-item {
  color: #C45353;
}
.tv-commit-details .row div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.d-flex {
  display: flex;
}
.align-items-end {
  align-items: flex-end;
}
.wp-img-container {
  vertical-align: middle;
  height: 24px;
  width: 20px;
}
.wa-headbuild-safe-title .wa-form-element:not(:first-child) {
  margin-top: 5px;
}
.wa-market-validator .wa-form-element .dropdown {
  width: calc(100% - 50px);
}
.open > .dropdown-menu {
  min-width: 100%;
}
.custom-modal.custom-modal-sub-config .custom-modal-content.add-rule {
  width: 880px;
}
.custom-modal.custom-modal-sub-config .parent-mm-config {
  text-align: right;
}
.custom-modal.custom-modal-sub-config .white-page-content {
  margin-left: 15px;
}
.custom-modal.custom-modal-sub-config .reset-back {
  width: 25px;
  padding: 24px 0 0;
  cursor: pointer;
  background-image: url('../images/reset-back.png');
  margin-top: 24px;
}
.default-highlighter {
  color: #3F9723;
}
.list-highlighter {
  background: #e0f1ff;
}
.chk-alignment {
  position: relative;
  top: 3px;
}
.multipleAudioChannels {
  border: 1px solid #CCC;
  display: inline-block;
  margin-top: 7px;
  padding-left: 12px;
  margin-right: 7px;
  padding-bottom: 15px;
  width: 96%;
  margin-left: 15px;
}

.object-widget .infoContainer .NameBlock {
  padding-right: 10px;
}
.object-widget .infoContainer .NameBlock .active-block {
  float: right;
}

.sub-object-listing .GATable td.edit {
  width: 150px;
}
.sub-object-listing .GATable td.edit .EditBox {
  max-width: none;
}
.sub-object-listing .GATable td.edit .EditBox .icon.edit {
  float: right;
  padding-right: 15px;
}
.sub-object-listing .new-object .EditPanel .EditTitle {
  border: 0;
}
.sub-object-listing .sortorder.icon6 {
  cursor: default;
}

.assignito .padder {
  padding-bottom: 10px;
  padding-top: 10px;
}
.assignito .sline {
  width: 700px;
}
.assignito .fieldo {
  float: left;
}
.assignito .fieldContainer {
  float: left;
}
.assignito .selectControl {
  width: 240px;
}
.assignito .slabel {
  float: left;
  text-align: right;
  white-space: nowrap;
  margin-right: 5px;
  margin-left: 10px;
  margin-top: 3px;
}

.addPanel.new-tv-page .form-field .field-name {
  padding: 3px 10px 0 0;
  text-align: right;
  width: 75px;
  display: inline-block;
}
.addPanel.new-tv-page .tv-select {
  width: 210px;
  height: 22px;
}
.addPanel.new-tv-page .name {
  width: 200px;
}
.addPanel.new-tv-page .select2-chosen {
  font-weight: normal;
}
.addPanel.new-tv-page input {
  font-size: 12px;
}
.addPanel.new-tv-page .EditPartBlock .field-upload {
  margin-top: 10px;
  margin-left: 410px;
}
.addPanel.new-tv-page .EditPartBlock .field-upload input {
  vertical-align: middle;
}
.addPanel.new-tv-page .Fields .field .fieldContent .select {
  width: 212px;
}
.addPanel.new-tv-page .Fields .field .fieldContent .ga-button {
  display: inline-block;
  margin-left: 15px;
  position: absolute;
}
.addPanel.new-tv-page .Fields .field .fieldContent .add-language {
  width: 105px;
  margin-left: 110px;
}

.tv-market-box .font-12px {
  font-size: 12px;
}
.tv-market-box .btn:active {
  box-shadow: none;
}
.tv-market-box .btn-grey {
  background-color: #F8F8F8;
}
.tv-market-box .btn-group.open .dropdown-toggle {
  box-shadow: none;
}
.tv-market-box .infoContainer .NameBlock span {
  padding-top: 5px;
}
.tv-market-box .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 6px solid;
  border-left: 4px solid rgba(0, 0, 0, 0);
}
.tv-market-box .btn:focus,
.tv-market-box .btn:active:focus,
.tv-market-box .btn.active:focus {
  outline: none;
}
.tv-market-box .btn.no-padding {
  padding: 0;
}
.tv-market-box .btn {
  font-size: 12px;
}
.tv-market-box .dropdown-menu {
  padding: 5px 5px;
  min-width: 120px;
  border-radius: 0;
}
.tv-market-box .dropdown-menu .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}
.tv-market-box .dropdown-menu .icon.hidden {
  display: none;
}
.tv-market-box .dropdown-menu .text {
  font-size: 12px;
}
.tv-market-box .dropdown-menu > li:hover {
  cursor: pointer;
  background-color: #cccccc;
}
.tv-market-box .CountryBlock {
  font-size: 12px;
}
.tv-market-box .CountryBlock .CountryBlockRight {
  padding-top: 2px;
}
.tv-market-box .CountryBlock .CountryBlockRight .publisherActionsMenu .checkbox {
  padding-top: 4px;
  margin-left: 5px;
  margin-right: 5px;
}
.tv-market-box .CountryBlock .CountryBlockRight .publisherActionsMenu .EditBox {
  padding-top: 3px;
}
.tv-market-box .CountryBlock .CountryBlockRight .publisherActionsMenu .EditBox .moveableHintContainer {
  float: none;
}

.tv-market-box .infoContainer .NameBlock {
  padding-right: 10px;
}
.tv-market-box .infoContainer .NameBlock .active-block {
  float: right;
}

.tv-page .name-input {
  display: inline-block;
  width: 278px;
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  border: 1px solid #CCC;
  border-radius: 3px;
}
.tv-page .tv-select {
  width: 290px;
  height: 25px;
  font-size: 13px;
}
.tv-page .field-name {
  width: 65px;
  float: left;
  padding-right: 10px;
  text-align: right;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
}
.tv-page .form-field {
  overflow: hidden;
  clear: both;
  margin: 15px 0;
}
.tv-page .button-field {
  padding-left: 75px;
  height: 30px;
  margin: 0 0 15px;
}
.tv-page .SearchButton {
  float: left;
  min-width: 65px;
}
.select2-results .select2-highlighted {
  background: #404040;
}
.select2-drop-active {
  border: 1px solid #C4C3BC;
}
.select2-chosen {
  font-weight: normal;
}
.select2-container .select2-choice .select2-arrow {
  background-color: #fff;
  background-image: none;
  border-color: #cccccc;
  width: 21px;
  height: 23px;
}
.select2-container .select2-choice .select2-arrow b {
  background-image: url('../images/ga3icons.png');
  background-position: right -78px;
  height: 19px;
  line-height: 19px;
}
.select2-container .select2-choice {
  background-image: none;
  border-color: #cccccc;
  height: 23px;
  line-height: 23px;
}
.select2-container-active .select2-choice {
  border: 1px solid #C4C3BC;
}
.select2-dropdown-open .select2-choice {
  background-color: #FFFFFF;
}
.modal-box .content .modified-by,
.modal-box .content .label {
  display: inline-block;
}
.modal-box .content .label {
  width: 95px;
  margin-right: 10px;
}
.modal-box .content .modified-by {
  font-weight: bold;
}
.tv-home,
.new-tv-market,
.market-page {
  overflow: hidden;
}
.tv-home .SearchResult {
  min-width: 938px;
}
.new-tv-market .select2-container .select2-choice,
.market-page .select2-container .select2-choice {
  height: 23px;
  line-height: 23px;
}
.new-tv-market .select2-container .select2-choice .select2-arrow b,
.market-page .select2-container .select2-choice .select2-arrow b {
  background-position: right -77px;
}
.new-tv-market .collapsed,
.market-page .collapsed {
  overflow: hidden;
}
.all-result.SearchResult .searchTitle {
  width: 100%;
}
.all-result.SearchResult .searchTitle .title {
  float: left;
}
.all-result.SearchResult .searchTitle .paging {
  float: right;
}
.all-result.SearchResult .bottom-paging {
  padding-top: 10px;
  text-align: right;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.destination-list {
  overflow: hidden;
}
.destination-list * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.destination-list *:before,
.destination-list *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.destination-list .head {
  border-bottom: 3px solid #EDEDED;
}
.destination-list .items {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  text-align: left;
  font-size: 13px;
  overflow: hidden;
}
.destination-list .items.content {
  height: 43px;
  line-height: 43px;
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #EDEDED;
}
.destination-list .items.content:hover {
  background: #EEF4F7;
}
.destination-list .items.content:hover .hintIcon {
  visibility: visible;
}
.destination-list .items.content .active-action {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.destination-list .row > div {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 35px;
  line-height: 35px;
}
.destination-list .row > div.description {
  line-height: 18px;
  font-weight: bold;
}
.destination-list span.sortorder {
  display: inline-block;
  margin-left: 5px;
  width: 8px;
  margin-top: 6px;
  zoom: 1;
  cursor: default;
}
.destination-list .sortby {
  cursor: pointer;
}
.destination-list .SearchPanel {
  height: 42px;
  border-bottom: 1px solid #EDEDED;
}
.destination-list .SearchPanel .simple-search .InputBox.FieldInput input {
  height: 25px;
  line-height: 25px;
}
.destination-list .gaPaging * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.destination-list .gaPaging *:before,
.destination-list .gaPaging *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.destination-list .collapsed {
  overflow: hidden;
}
.destination-list .hintIcon {
  width: 16px;
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.destination-list .hintIcon.delete {
  left: 40px;
}
.destination-list .hintIcon.info {
  left: 20px;
}

.new-group .EditPanel .EditContainer .Content.pt5 {
  height: 40px;
}

.preview-box .EditBox .moveableHintContainer {
  float: left;
}
.CountryBlock .CountryBlockLeft,
.CountryBlock .ellipsed {
  max-width: 690px;
}

.EditPanel.ga-contact-form .Content .EditPartBlock {
  margin-left: 150px;
  margin-bottom: 0;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .field textarea.noWidget {
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid #CCC;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .field input.noWidget {
  width: 170px;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields.full-width {
  width: 100%;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields.full-width .fieldContent {
  width: auto;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields.full-width .fieldContent input,
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields.full-width .fieldContent textarea {
  width: 520px;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields.full-width .fieldContent .select {
  width: 530px;
}
.EditPanel.ga-contact-form .Content .EditPartBlock .Fields .fieldContent .select {
  width: 170px;
}
.EditPanel.ga-contact-form .select2-container .select2-choice {
  height: 23px;
  line-height: 23px;
}
.EditPanel.ga-contact-form .select2-container .select2-choice .select2-arrow b {
  background-position: right -77px;
}
.EditPanel.ga-contact-form .select2-container {
  width: 170px;
}

.Card.ga-contact-item {
  height: 155px;
}
.Card.ga-contact-item .content {
  overflow: hidden;
}
.Card.ga-contact-item .content.ga-contact-content {
  padding: 20px;
  position: relative;
}
.Card.ga-contact-item .content .primaryContact {
  margin-left: 150px;
  margin-top: 10px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 5px;
}
.Card.ga-contact-item .content .row {
  overflow: hidden;
  margin-bottom: 8px;
}
.Card.ga-contact-item .content .row div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Card.ga-contact-item .content .row div.name {
  font-weight: bold;
  padding-left: 0;
}
.ClientUsersList .CardsContainer .Card.ga-contact-item .content {
  padding: 20px 20px 10px 20px;
}
.CardsContainer .Card.ga-contact-item .titleBlock {
  height: 20px;
}

.addPanel.destination-form .name-container {
  margin-bottom: 15px;
}
.addPanel.destination-form .name-container .destination-name {
  width: 250px;
  font-weight: bold;
}
.addPanel.destination-form .EditContainer .Content .Logo {
  width: 120px;
}
.addPanel.destination-form .Content .EditPartBlock {
  margin-left: 150px;
}
.addPanel.destination-form .Content .EditPartBlock .field textarea:disabled {
  background-color: #f4f4f4;
}
.addPanel.destination-form .Content .EditPartBlock .field textarea.noWidget {
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid #CCC;
}
.addPanel.destination-form .Content .EditPartBlock .field .ga-date-edit input.noWidget {
  width: 145px;
}
.addPanel.destination-form .Content .EditPartBlock .field input.noWidget {
  width: 160px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width {
  width: 100%;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent {
  width: auto;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent input,
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent textarea {
  width: 520px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent .select {
  width: 530px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields .fieldContent .select {
  width: 172px;
}
.addPanel.destination-form .select2-container .select2-choice {
  height: 23px;
  line-height: 23px;
}
.addPanel.destination-form .select2-container .select2-choice .select2-arrow b {
  background-position: right -77px;
}
.addPanel.destination-form .img-container {
  cursor: pointer;
}

.destination-preview.infoContainer .ContentBlock .ItemField li.left {
  width: 180px;
}
.destination-preview.infoContainer .ContentBlock div.FirstFieldBlock {
  width: 700px;
}
.destination-preview.infoContainer .ContentBlock .ItemField li.right {
  width: 450px;
}
.destination-preview.infoContainer .NameBlock span {
  padding-top: 5px;
}
.destination-preview.infoContainer .tooltip-inner {
  max-width: none;
}

.addPanel.destination-form .name-container {
  margin-bottom: 15px;
}
.addPanel.destination-form .name-container .destination-name {
  width: 250px;
  font-weight: bold;
}
.addPanel.destination-form .Content .EditPartBlock {
  margin-left: 150px;
}
.addPanel.destination-form .Content .EditPartBlock .field textarea.noWidget {
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid #CCC;
}
.addPanel.destination-form .Content .EditPartBlock .field input.noWidget {
  width: 160px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width {
  width: 100%;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent {
  width: auto;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent input,
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent textarea {
  width: 520px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields.full-width .fieldContent .select {
  width: 530px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields .fieldContent .select {
  width: 172px;
}
.addPanel.destination-form .Content .EditPartBlock .Fields .fieldContent .ga-button {
  display: inline-block;
  margin-left: 15px;
  position: absolute;
}
.addPanel.destination-form .Content .EditPartBlock .Fields .fieldContent .add-language {
  width: 105px;
  margin-left: 110px;
}
.addPanel.destination-form .select2-container .select2-choice {
  height: 23px;
  line-height: 23px;
}
.addPanel.destination-form .select2-container .select2-choice .select2-arrow b {
  background-position: right -77px;
}
.addPanel.destination-form .select2-container .select2-choice abbr {
  top: 5px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.ga-contact,
.ga-station {
  overflow: hidden;
}
.ga-contact *,
.ga-station * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-contact *:before,
.ga-station *:before,
.ga-contact *:after,
.ga-station *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-contact .collapsed,
.ga-station .collapsed {
  overflow: hidden;
}
.ga-contact .KeyUpSearch,
.ga-station .KeyUpSearch {
  overflow: hidden;
}
.ga-change-primary {
  text-align: left;
}
.ga-change-primary .question {
  font-weight: bold;
}
.ga-change-primary .modal-footer {
  padding: 15px 0 0 0;
}
.ga-change-primary .modal-footer .cancel {
  color: #404040;
}
.ga-change-primary .modal-footer .change {
  border-radius: 3px;
}

.hub-preview.infoContainer .ContentBlock .ItemField li.right {
  width: 210px;
}
.hub-preview.infoContainer .ContentBlock .ItemField li.left {
  width: 160px;
}

.new-market-group.addPanel.destination-form .Content {
  padding: 0;
}
.new-market-group.addPanel.destination-form .Content .EditPartBlock {
  padding-top: 15px;
  margin-left: 0;
}
.new-market-group.addPanel.destination-form .form-field .field-name {
  padding-bottom: 3px;
  text-align: right;
  width: 95px;
  display: inline-block;
}
.new-market-group .media-field {
  margin-left: 60px;
}
.new-market-group .media-field input {
  vertical-align: middle;
}

.binding-ui-select.container {
  width: 300px;
  padding: 0;
}
.binding-ui-select.container .select-container {
  padding-right: 10px;
}
.binding-ui-select.container .wp-action-block {
  padding: 0;
  height: 30px;
}
.binding-ui-select.container .wp-action-block .wp-img-container {
  width: 30px;
  height: 30px;
}
.binding-ui-select.container > .row {
  margin-bottom: 10px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.white-page-content {
  margin-left: 45px;
  max-width: 900px;
}
.white-page-content * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.white-page-content *:before,
.white-page-content *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.white-page-content .wa-label {
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  vertical-align: top;
}
.white-page-content .form-control.description {
  height: 60px;
}
.white-page-content .wa-form-element {
  margin-top: 20px;
}
.white-page-content .wa-form-element textarea {
  max-width: 100%;
}
.white-page-content input.form-control {
  height: 30px;
}
.white-page-content .add-item,
.white-page-content .remove-item {
  display: inline-block;
  height: 29px;
  line-height: 29px;
  width: 29px;
  background-position: center center;
  background-repeat: no-repeat no-repeat;
  position: absolute;
  right: 37px;
  opacity: 0.7;
}
.white-page-content .add-item:hover,
.white-page-content .remove-item:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #f0f7fe;
  border: 1px solid #c9e1fc;
  border-radius: 100%;
}
.white-page-content .add-item {
  background-image: url('../images/adstream-select/add-item.png');
}
.white-page-content .remove-item {
  background-image: url('../images/adstream-select/remove-item.png');
}
.white-page-content .add-item,
.white-page-content .remove-item {
  height: 30px;
  width: 40px;
  float: right;
  position: relative;
  right: auto;
}
.edit-white-page .wp-name,
.new-white-page .wp-name,
.publish-white-page .wp-name {
  font-size: 15px;
  background-color: #e0e0e0;
  height: 35px;
  line-height: 35px;
  border-bottom: 1px solid #CCC;
  padding-left: 25px;
}
.edit-white-page .action-block,
.new-white-page .action-block,
.publish-white-page .action-block {
  margin-left: 45px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.edit-white-page .wp-commit-link,
.new-white-page .wp-commit-link,
.publish-white-page .wp-commit-link {
  font-weight: bold;
  font-size: 12px;
  color: #0082DC;
}
.edit-white-page .tv-commit-tree,
.new-white-page .tv-commit-tree,
.publish-white-page .tv-commit-tree {
  margin-left: 45px;
  max-width: 900px;
}
.edit-white-page .tv-commit-tree .tree-container,
.new-white-page .tv-commit-tree .tree-container,
.publish-white-page .tv-commit-tree .tree-container {
  margin-top: 15px;
}
.edit-white-page .tv-commit-tree .tree-container .bottom-line,
.new-white-page .tv-commit-tree .tree-container .bottom-line,
.publish-white-page .tv-commit-tree .tree-container .bottom-line {
  border-bottom: 0;
}
.edit-white-page .tv-commit-tree .tree-container .item-container,
.new-white-page .tv-commit-tree .tree-container .item-container,
.publish-white-page .tv-commit-tree .tree-container .item-container {
  position: relative;
}
.edit-white-page .tv-commit-tree .tree-container .item-container:hover,
.new-white-page .tv-commit-tree .tree-container .item-container:hover,
.publish-white-page .tv-commit-tree .tree-container .item-container:hover {
  background-color: #ffffff;
}
.wp-rule-set {
  margin-left: 45px;
  max-width: 900px;
  margin-top: 20px;
}
.wp-rule-set * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wp-rule-set *:before,
.wp-rule-set *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wp-rule-set .wp-rules-header {
  height: 45px;
  border-bottom: 1px solid #CCC;
  font-size: 16px;
}
.wp-rule-set .wp-rules-header .wa-rules-name {
  width: 100px;
  display: inline-block;
  height: 42px;
  line-height: 42px;
}
.wp-rule-set .wp-rules-header .wp-button-container {
  text-align: right;
  width: calc(100% - 105px);
  display: inline-block;
  height: 42px;
  line-height: 42px;
}
.wp-rule-set .wp-rules {
  border: 1px solid #CCC;
  margin-top: 20px;
  overflow: hidden;
}
.wp-rule-set .wp-rules .right-inner-addon {
  width: 250px;
  margin-left: 15px;
}
.wp-rule-set .wp-rules .right-inner-addon input {
  height: 30px;
}
.wp-rule-set .wp-rules .wp-triangle {
  display: inline-block;
  border: 7px solid transparent;
  position: absolute;
  left: 26px;
}
.wp-rule-set .wp-rules .wp-triangle.hover {
  cursor: pointer;
}
.wp-rule-set .wp-rules .wp-triangle.collapsed {
  border-left: 6px solid #666666;
  top: 11px;
}
.wp-rule-set .wp-rules .wp-triangle.expanded {
  top: 15px;
  border-top: 6px solid #666666;
}
.wp-rule-set .wp-rules-search {
  margin: 10px 0;
}
.wp-rule-set .wp-rules-list-header {
  height: 30px;
  line-height: 30px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background-color: #F5F5F5;
  padding-left: 30px;
  font-weight: bold;
}
.wp-rule-set .wp-rules-set-list {
  min-height: 35px;
  line-height: 35px;
}
.wp-rule-set .wp-rules-set-list > div {
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-rule-set .wp-rules-set-list > div.wp-rules-item-name {
  padding-left: 45px;
  position: relative;
}
.wp-rule-set .wp-rules-set-list > div.wp-rules-item-name > span {
  color: #0082DC;
  cursor: pointer;
}
.wp-rule-set .wp-rules-set-list:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
.wp-rule-set .wp-rules-set-list .wp-rules-container,
.wp-rule-set .wp-rules-set-list .wp-rules-spinner-container {
  position: relative;
  padding: 30px 55px;
  background-color: #C7C7C7;
  width: 100%;
  height: 100%;
}
.wp-rule-set .wp-rules-set-list .wp-rules-container:before,
.wp-rule-set .wp-rules-set-list .wp-rules-spinner-container:before,
.wp-rule-set .wp-rules-set-list .wp-rules-container:after,
.wp-rule-set .wp-rules-set-list .wp-rules-spinner-container:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  border: 15px solid transparent;
}
.wp-rule-set .wp-rules-set-list .wp-rules-container:after,
.wp-rule-set .wp-rules-set-list .wp-rules-spinner-container:after {
  border-top: 15px solid white;
  top: 0;
}
.wp-rule-set .wp-rules-set-list .wp-rules-spinner-container .spinner-item {
  background-color: #ffffff;
}
.wp-rule-set .wp-no-rules {
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.main.white-pages .wp-rules .right-inner-addon i {
  padding: 8px 12px;
}
.main.white-pages .wp-rules .right-inner-addon i.glyphicon-remove {
  padding: 8px 5px;
}
.main.white-pages .wp-rule-set .btn-new {
  background-image: none;
  padding-left: 12px;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.wp-rules-list {
  overflow: hidden;
  width: 100%;
  background-color: #ffffff;
}
.wp-rules-list * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wp-rules-list *:before,
.wp-rules-list *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wp-rules-list .rules-set-header {
  background-color: #F5F5F5;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-bottom: 1px solid #CCC;
}
.wp-rules-list .rule-name {
  padding-left: 30px;
}
.wp-rules-list .rule-set-item > div {
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-bottom: 1px solid #CCC;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-rules-list .rule-set-item .rule-mandatory {
  background-image: url('../images/check.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-rules-list .rule-set-item .fix-rule {
  background-image: url('../images/force.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-rules-list .rule-set-item .force-rule {
  background-image: url('../images/fix.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-rules-list .rule-set-item .fail-rule {
  background-image: url('../images/fail.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-rules-list .rule-set-item-container:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
.wp-rules-list .wp-rule-name {
  color: #0082DC;
  text-align: left !important;
  padding-left: 35px;
}
.custom-modal-content.add-rule {
  width: 650px;
}
.custom-modal-content.add-rule .form-control {
  height: 30px;
  padding: 6px 10px;
  display: inline-block;
}
.custom-modal-content.add-rule .label-input {
  width: 40%;
}
.custom-modal-content.add-rule .wp-action-block {
  display: inline-block;
  vertical-align: middle;
}
.custom-modal-content.add-rule .wp-values {
  display: inline-block;
}
.custom-modal-content.add-rule .wp-checkbox {
  width: 20px;
  height: 20px;
  margin: 5px;
}
.custom-modal-content.add-rule .wp-inline-label {
  display: inline-block;
  height: 30px;
  line-height: 30px;
}
.rule-match-type .form-control {
  display: inline-block;
  width: 100px;
}
.rule-match-type .wp-action-block {
  display: inline-block;
}

.ga-mandatory {
  color: #ff3636;
}
.content-box-model * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.content-box-model *:before,
.content-box-model *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.border-box-model * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.border-box-model *:before,
.border-box-model *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ga-position-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-control-mixin {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-mixin:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control-mixin::-ms-clear {
  display: none;
}
.main.white-pages {
  background-color: #FFF;
  min-width: 1170px;
  width: auto;
  min-height: 500px;
  margin: 0 15px;
  padding: 0;
  font-size: 14px;
  color: #202020;
  font-family: "HelveticaNeue";
  border: 1px solid #CCC;
}
.main.white-pages .arrow.asc:after {
  content: '▲';
  padding-left: 5px;
}
.main.white-pages .arrow.desc:after {
  content: '▼';
  padding-left: 5px;
}
.main.white-pages .btn-new {
  background-image: url('../images/add-user.png');
  background-position: 8px center;
  background-repeat: no-repeat;
  padding-left: 32px;
  border-radius: 0;
  background-color: #F5F5F5;
}
.main.white-pages .btn-link {
  color: #202020;
}
.main.white-pages .img-container {
  width: 35px;
  height: 35px;
  display: inline-block;
  opacity: 0.7;
}
.main.white-pages .img-container.pen {
  background-image: url('../images/pen.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.main.white-pages .img-container.basket {
  background-image: url('../images/basket.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.main.white-pages .img-container.add-item {
  background-image: url('../images/add-item.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.main.white-pages .img-container.copy {
  background-image: url('../images/copyt.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.main.white-pages .img-container:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  border-radius: 100%;
}
.main.white-pages .wp-mandatory {
  color: #ff3636;
}
.main.white-pages .assigner {
  width: 50%;
  margin-top: 16px;
}
.main.white-pages .assigner input {
  padding-right: 0;
}
.main.white-pages .right-inner-addon {
  position: relative;
}
.main.white-pages .right-inner-addon input {
  padding-right: 45px;
}
.main.white-pages .right-inner-addon i {
  position: absolute;
  right: 0;
  padding: 10px 12px;
}
.main.white-pages .right-inner-addon i.glyphicon-remove {
  cursor: pointer;
  margin: 0 7px 0 0;
  padding: 10px 5px;
  right: 20px;
  z-index: 1;
}
.main.white-pages .wa-header {
  font-size: 16px;
  height: 25px;
  line-height: 25px;
  margin-top: 15px;
  border-bottom: 1px solid #CCC;
}
.header.white-pages-header {
  background-color: #F5F5F5;
}
.header .underMenu.remove-height {
  height: 0;
}
.fixMinheight.white-pages-wrapper {
  background-color: #EEEEEE;
  min-height: calc(100% - 70px);
  margin-bottom: 20px;
  padding-bottom: 70px;
  margin-bottom: -40px;
}
.white-pages-list {
  padding: 30px 45px;
}
.white-pages-list * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.white-pages-list *:before,
.white-pages-list *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.white-pages-list .items-count {
  padding-top: 15px;
  font-size: 14px;
}
.white-pages-list .list {
  margin-top: 15px;
}
.white-pages-list .list .row {
  border-bottom: 1px solid #CCC;
}
.white-pages-list .list .row.item:hover {
  background-color: #e5e5e5;
}
.white-pages-list .list .row div {
  text-align: center;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.white-pages-list .list .row.header {
  height: 35px;
  border-bottom: 0;
}
.white-pages-list .list .row.header div {
  background-color: #F5F5F5;
  font-weight: bold;
}
.white-pages-list .list .row.header div.sortable:hover {
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none;
}
.white-pages-list .list .row .wp-edit-panel {
  padding: 0 10px;
}
.white-pages-list .form-control {
  height: 34px;
}
.wp-modal-input {
  height: 30px;
  width: 300px;
}
.white-pages-window .ga-number input[type="number"] {
  box-sizing: border-box;
  height: 30px;
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #CCC;
  border-radius: 0;
  background-color: #F5F5F5;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  padding: 0 12px;
}
.white-pages-window .ga-number input[type="number"]:focus {
  border-color: #66AFE9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.white-pages-window .ga-number input[type="number"]::-ms-clear {
  display: none;
}
.wp-loder-container {
  width: 100%;
  height: 32px;
  background-color: #FFF;
}
