.customSelect-wrapper
{
	height:38px;
    position: relative;
}

.customSelect { 
	position: relative;			
	float: left;
	cursor: pointer;
	color: #909090; /*#34aae1;*/
	font-weight: bold;
}

.customSelect ,
.customSelect .selectList .selectListOuterWrap
{
	padding: 0px 2px 4px 2px;
	background: #f7f7f7;  
	box-shadow: 0px 1px 1px 0px #c5c5c5;
	-moz-box-shadow: 0px 1px 1px 0px #c5c5c5;
	-webkit-box-shadow: 0px 1px 1px 0px #c5c5c5;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.customSelect-wrapper .customDropdown
{
	display: none;
}

.customSelect .selectValueWrap
{
	background:white;
	padding:10px 18px 6px 11px;
	font-size: 11px;
}

.customSelect .selectedValue 
{
	min-width: 140px;
	min-height: 18px;
	color: #34aae1;
}

.customSelect .selectList {
	z-index: 100;
	position: absolute;
	left: -999em;
	top: -999em;
	margin: 0;
	width: 100%;
}

.customSelect.select-open .selectList {
	left: 0 ;
	top: 0 ;
}
.customSelect .selectList dl {
	background: #fff;	
}
.customSelect .selectList dl.defaultScrollbar {
	overflow-x: hidden;
	overflow-y: scroll;	
}
.customSelect dl, .customSelect dd {
	margin: 0;
}
.customSelect dd {
	zoom: 1;
	cursor: pointer;
	min-height:37px;
	line-height: 37px;
	vertical-align: middle;
	border-bottom: 1px solid #f7f7f7;
	padding: 2px 10px 2px 8px;
	font-weight: normal; 
}

.customSelect .selectList dd.hovered
{
	background-color: #f7f7f7;
}
.customSelect .selectList dd.selected {
	color:#34aae1;
}

.customSelect dt {
	font-weight: bold;
	font-style: italic;
	padding: 2px 10px 2px 6px;
}	
.hasJS select.custom {
	position: absolute;
	left: -999em;
}

.customSelect.disabled .selectedValue {
	border: 1px solid #ccc;
	color: #ccc;
	cursor: default; 
}
 
.customSelect .selectValueWrap .caret {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 10px;
	cursor: pointer;
	background:url('../images/arrow-select.png') no-repeat;
	width:7px;
	height:4px;
} 
.customSelect-wrapper .searchWrp {
    position: absolute;
    display: none;
    top: -38px; left: -1px;
    border-top: 1px solid #d4d4d4;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #d4d4d4;
    padding: 5px;
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #f7f7f7 50%, #f9f9f9 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(50%,#f7f7f7), color-stop(100%,#f9f9f9)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#f7f7f7 50%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f9f9f9 0%,#f7f7f7 50%,#f9f9f9 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#f7f7f7 50%,#f9f9f9 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f9f9f9 0%,#f7f7f7 50%,#f9f9f9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
}
.customSelect-wrapper .searchWrp input {
    width: 181px !important;
    font-size: 12px;
}