/* Dropdown control */
.selectBox-dropdown {
	width: 210px; /* width = (desired width) - padding-right */
	padding-right: 20px;
	padding-left: 5px;
	position: relative;
	border-top: solid 1px #cdcdcd;
	border-left: solid 1px #cdcdcd;
	border-right: solid 1px #e9e9e9;
	border-bottom: solid 1px #e9e9e9;
	line-height: 20px;
	text-decoration: none;
	color: #666;
	outline: none;
	vertical-align: middle;
	background: #fff;
	font-size:12px;
	display: inline-block;
	cursor: default;
}

.topSearchSel { margin:14px 8px;width:75px;border:none;color:#7b7b83;height:30px;text-indent:2px;line-height:1.5;}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #9bb1cf;
}

.topSearchSel:focus,
.topSearchSel:focus .selectBox-arrow { background-color:#e5f2fc;color:#333; }

.selectBox-dropdown.selectBox-menuShowing {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
	width: 100%;
	padding:0px 0 2px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-align:left;
	color:#666;
}
.topSearchSel .selectBox-label {
	padding:8px;
	
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top:0px;
	right: 0;
	width: 25px;
	height: 100%;
	background: url("../../img/arrow_select.gif") center no-repeat;
	
}

.topSearchSel .selectBox-arrow { background: url("../images/common/arrow_select_top.gif") center no-repeat; }


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #cacaca; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	font-size:12px; 
	overflow: auto;
	color:#666;
}


.topSearchSel-dropdown-menu {
	width:125px;margin:0;padding:0;
	max-height:300px;
	padding-bottom:10px;
	margin-top:-3px;
	border:none;
	background:url("../images/common/topSearchSel_dropdownBg.gif") 0 bottom no-repeat;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	overflow:hidden;
	overflow-y:auto;
	color:#666;
	
}

/* Inline control */
.selectBox-inline {
	width: 250px;
	outline: none;
	border: solid 1px #a5a5a5;
	background: #FFF;
	/*font-size:10px; */
	display: inline-block;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	overflow: auto;
	color:#666;
	
}

.selectBox-inline ul{border:0 !important}
.selectBox-inline ul li{border:0 !important;padding:0 !important}



/* Options */
selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	color:#666;
}

.selectBox-options LI A {
	line-height: 2.0;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
	color:#666;
	
}

.selectBox-options LI.selectBox-hover A {
	background-color: #e5f2fc;
	color:#666;
}

.selectBox-options LI.selectBox-disabled A {
	color: #666;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #95bef4;
	color:#fff; 
}

.topSearchSel-dropdown-menu LI { margin:0 5px ; }
.topSearchSel-dropdown-menu LI A { margin:3px; }
.topSearchSel-dropdown-menu LI:first-child { margin:0;padding:10px 5px 0 5px;background-image:url("../images/common/topSearchSel_dropdownBgTop.gif");background-repeat:no-repeat; }

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}


/* Disabled state */
.selectBox.selectBox-disabled {
	color: #666 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
	color: #666 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
	background-color: transparent !important;
}