/* Hide lists on page load */
.stylish-select .SSContainerDivWrapper {
    left:-9999px;
}

/* Container */
.stylish-select .SSContainerDivWrapper {
    padding:0;
    width:100%;
    position:absolute;
    top:22px;
    left:0;
    z-index:11;
    border: 1px solid #a5a8a9;
    border-top: none;
    overflow: hidden;

}

/* UL */
.stylish-select ul.newList {
    margin:0;
    padding:0;
    list-style:none;
    color:#737373;
    background: #ffffff;
    border:none;
    outline: none;
    overflow:auto;
    font-family: 'Gisha',sans-serif;
    font-size: 11px;
   
}
.stylish-select ul.newList * {
    margin:0;
    list-style:none;
}
.stylish-select ul.newList a {
    color: #737373;
    text-decoration:none;
    display:block;
    padding: 8px 10px;
}
.stylish-select ul.newList li a:focus {
    -moz-outline-style: none;
}
.stylish-select ul.newList li:nth-child(2n+1) {
    background: #f3f3f3;
}

/* Default fake select container style*/
.stylish-select .newListSelected {
    min-width: 265px;
    color: #737373;
    min-height: 30px;
    padding: 0;
    background: url(images/select_icon.png) no-repeat 100% 3px;
    display: inline-block;
    text-align: left;
    
}
.stylish-select .selectedTxt {
    width:100%;
    overflow:hidden;
    height: 30px;
    padding: 5px 40px 5px 15px;
    border: 1px solid #a5a8a9;
    font: normal 11px/20px 'Gisha',sans-serif;
}
.newListSelClick .selectedTxt {
    border-bottom-color: #cdcdcd;
}
/* Option Highlight */
.stylish-select .highLite {
    /*background:#eeeeee!important;
    color:#000!important;*/
}

/* Option Hover */
.stylish-select .newListHover {
    background:#e8bcdd!important;
    color:#ffffff!important;
    cursor:default;
}

/* Disabled */
.stylish-select .newListDisabled {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
}
.stylish-select .newListItemDisabled {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
}
.stylish-select .newListOptionDisabled {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
}

/* select Hover, Focus */
.stylish-select .newListSelHover, .stylish-select .newListSelFocus {
  /*  background: url(images/select_icon.png) no-repeat 100% -73px;
    cursor:default;*/
}

/* select onClick */
.stylish-select .newListSelClick{
     background: url(images/select_icon.png) no-repeat 100% -73px;
    cursor:default;
}

/* Optgroup */
.stylish-select .newListOptionTitle {
    font-weight:bold;
    text-indent:5px;
}
.stylish-select .newListOptionTitle ul {
    margin:0;
    padding:0;
}
.stylish-select .newListOptionTitle li {}

/* Fix div display: none */
.SSContainerDivWrapper {
    max-height: 300px !important;
    height: auto!important;
}
ul.newList {
    max-height: 300px!important;
    height: auto!important;
}