/*
Version: 3.4.2 Timestamp: Mon Aug 12 15:04:12 PDT 2013
*/
.select-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select-container,
.select-drop,
.select-search,
.select-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 !important; /* webkit */
     -moz-box-sizing: border-box !important; /* firefox */
          box-sizing: border-box !important; /* css3 */
}
.select-container .select-choice, input:not([type]), input[type="color"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="url"], input[type="text"], textarea {
    margin: 0px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    color: #444;
    text-decoration: none;
    font-family:inherit;
    font-size:inherit;

    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%);
    background-image: -o-linear-gradient(bottom, #eee 0%, #fff 50%);
    background-image: -ms-linear-gradient(top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
textarea {
    overflow: auto;
}


.select-container .select-choice, input:not([type]), input[type="color"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="url"], input[type="text"] {
    height: 34px;
	 -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    vertical-align: middle !important;
    padding: 0 0 0 8px;
    white-space: nowrap;
}

.select-container .select-choice {
    display: block;
    line-height: 26px;
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select-container.select-drop-above .select-choice {
    border-bottom-color: #aaa;

    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%);
    background-image: -o-linear-gradient(bottom, #eee 0%, #fff 90%);
    background-image: -ms-linear-gradient(top, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #eee 0%, #fff 90%);
}

.select-container.select-allowclear .select-choice .select-chosen {
    margin-right: 42px;
}

.select-container .select-choice > .select-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.select-container .select-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select-container.select-allowclear .select-choice abbr {
    display: inline-block;
}

.select-container .select-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select-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;
    opacity: 0;
    filter: alpha(opacity=0);
}

.select-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select-drop-auto-width {
    width: auto;
}

.select-drop-auto-width .select-search {
    padding-top: 4px;
}

.select-drop.select-drop-above {
    margin-top: 1px;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select-drop-active {
    border: 1px solid #5897fb;
}

.select-container .select-choice .select-arrow {
    text-align:center;
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;

    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%);
    background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
    background-image: -ms-linear-gradient(top, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

.select-container .select-choice .select-arrow b {
    width: 100%;
    height: 100%;
}

.select-arrow-up {
    display:none;
}

.select-arrow-down {
    display:block;
}

.select-dropdown-open .select-arrow-down {
    display:none;
}

.select-dropdown-open .select-arrow-up {
    display:block;
}

.select-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;

    border-bottom: 1px solid #5897fb;
}


.select-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-size: 1em;

    border: solid 0 !important;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background:none !important;

}

.select-drop.select-drop-above .select-search input {
    margin-top: 4px;
}

.select-search input.select-active {
    background: #fff url('select-spinner.gif') no-repeat 100%;
    background: url('select-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select-spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, #fff 85%, #eee 99%);
    background: url('select-spinner.gif') no-repeat 100%, -ms-linear-gradient(top, #fff 85%, #eee 99%);
    background: url('select-spinner.gif') no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select-container-active .select-choice,
.select-container-active .select-choices {
    border: 1px solid #5897fb;
    outline: none;
}

.select-dropdown-open .select-choice {
    border-bottom-color: transparent;

    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%);
    background-image: -o-linear-gradient(bottom, #fff 0%, #eee 50%);
    background-image: -ms-linear-gradient(top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}


.select-dropdown-open.select-drop-above .select-choice,
.select-dropdown-open.select-drop-above .select-choices {
    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%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -ms-linear-gradient(bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select-dropdown-open .select-choice .select-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}

/* results */
.select-results {
    max-height: 419px;
    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);
}

.select-results ul.select-result-sub {
    margin: 0;
    padding-left: 0;
}

.select-results ul.select-result-sub > li .select-result-label { padding-left: 20px }
.select-results ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 40px }
.select-results ul.select-result-sub ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 60px }
.select-results ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 80px }
.select-results ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 100px }
.select-results ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 110px }
.select-results ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub ul.select-result-sub > li .select-result-label { padding-left: 120px }

.select-results li {
    list-style: none;
    display: list-item;
    background-image: none;
    padding-right:15px;
}

.select-results li.select-result-with-children > .select-result-label {
    font-weight: bold;
}

.select-results .select-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;
    white-space:nowrap;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select-results .select-highlighted {
    background: #3875d7;
    color: #fff;
}

.select-results li em {
    background: #feffde;
    font-style: normal;
}

.select-results .select-highlighted em {
    background: transparent;
}

.select-results .select-highlighted ul {
    background: #fff;
    color: #000;
}


.select-results .select-no-results,
.select-results .select-searching,
.select-results .select-selection-limit {
    opacity: 0.3;
    padding:5px;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select-results .select-disabled.select-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select-results .select-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select-results .select-selected {
    display: none;
}

.select-more-results.select-active {
    background: #f4f4f4 url('select-spinner.gif') no-repeat 100%;
}

.select-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select-container.select-container-disabled .select-choice {
    background-color: #f4f4f4;
    background-image: none;
    cursor: default;
}

.select-container.select-container-disabled .select-choice .select-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select-container.select-container-disabled .select-choice abbr {
    display: none;
}


/* multiselect */

.select-container-multi .select-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: -o-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -ms-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select-locked {
  padding: 3px 5px 3px 5px !important;
}

.select-container-multi .select-choices {
    min-height: 26px;
}

.select-container-multi.select-container-active .select-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);
}
.select-container-multi .select-choices li {
    float: left;
    list-style: none;
}
.select-container-multi .select-choices .select-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select-container-multi .select-choices .select-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select-container-multi .select-choices .select-search-field input.select-active {
    background: #fff url('select-spinner.gif') no-repeat 100% !important;
}

.select-default {
    color: #999 !important;
}

.select-container-multi .select-choices .select-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;
       -khtml-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: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select-container-multi .select-choices .select-search-choice .select-chosen {
    cursor: default;
}
.select-container-multi .select-choices .select-search-choice-focus {
     background: #d4d4d4;
 }

.select-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: right top no-repeat;
}

.select-container-multi .select-search-choice-close {
    left: 3px;
}

.select-container-multi .select-choices .select-search-choice .select-search-choice-close:hover {
    background-position: right -11px;
}
.select-container-multi .select-choices .select-search-choice-focus .select-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select-container-multi.select-container-disabled .select-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select-container-multi.select-container-disabled .select-choices .select-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select-container-multi.select-container-disabled .select-choices .select-search-choice .select-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select-result-selectable .select-match,
.select-result-unselectable .select-match {
    text-decoration: underline;
}

.select-offscreen, .select-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;
}

.select-display-none {
    display: none;
}

.select-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: 144dpi)  {
    .select-search input, .select-search-choice-close, .select-container .select-choice abbr, .select-container .select-choice .select-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }
    .select-search input {
        background-position: 100% -21px !important;
    }
}



.select-ico {
    width:16px;
    max-height:16px;
    vertical-align:middle;
    margin-right:5px;
    display:inline-block;
    zoom:1;
    margin-top:-3px;
}



.select-drop-active{
    width: auto !important;
    max-width: 630px !important;
}


.select-th .select-th {
    max-height:64px;
    display:inline-block;
    zoom:1;
    padding:3px;
}

.select-th-frame {
    width:100px;
    height:64px;
    overflow:hidden;
    display: table-cell;
    text-align:center;
    vertical-align: middle
}

.select-th .select-th-el {
    text-align:center;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
}

.select-th .select-result {
    float:left;
    width:100px;
    height:104px;
    font-size:0.8em;
    overflow:hidden;
    display:inline-block;
    zoom:1;
    padding:0px;
}

.select-th .select-result-with-children {
    display: block;
    width: inherit;
    float: none;
    height: inherit;
    font-size: 1em;
    text-align: left;
    vertical-align:middle;
}

.select-th .select-result-with-children div div {
    text-align: left;
}

.select-th .select-result-with-children img {
    height: 48px;
    vertical-align: middle;
    padding:0;
    margin:0;
}

.select-th .select-result-with-children br {
    display:none;
}