/*********************************************
				Combo Box CSS
/*********************************************/
.clsComboBox,.clsComboBoxOver,.clsComboBoxDisabled{
	white-space: nowrap;
	border:0px solid red;
}

.clsComboBoxArrow{background:url(../img/arrow-down.gif) no-repeat center;}

.clsComboBoxArrow,
.clsComboBoxOver .clsComboBoxArrow,
.clsComboBoxDisabled .clsComboBoxArrow{
	border:1px solid #E0E0E0;
	background-color: #FFFFFF;
	padding:0px 5px 0px 5px;
	cursor: default;
	border-left:none;
}
.clsComboBoxOver .clsComboBoxArrow{
	border-color: #E0E0E0;
	background-color: #FFFFFF;
}
.clsComboBoxText,
.clsComboBoxOver .clsComboBoxText,
.clsComboBoxDisabled .clsComboBoxText{
	font-family: Arial;
	color: #11A0F3;
	background-color: #FFFFFF;
	border:1px solid #E0E0E0;
	border-right: none;
	height: 100%;
	cursor: default;
	padding: 0px 3px 0px 3px;
}
.clsComboBoxOver .clsComboBoxText{
	border:1px solid #E0E0E0;
	border-right: none;
	background: #FFFFFF;
}
.clsComboBoxDisabled .clsComboBoxText{
	color: #999999;
	font-weight: normal;
}
.clsOptionList
{
	display:none;
	
	/*position:fixed;
	position:relative;
	right:0px;*/
	position:absolute;
	
	z-index:9999999;
	border: 1px solid #E0E0E0;
	background: #FFFFFF;
	cursor: default;
	white-space: nowrap;
	border-top:none;
	max-height:300px;
	min-width:130%;
	
	overflow-y:auto;
	overflow-x:hidden;
	
	scrollbar-base-color: #f8f8f8;
	scrollbar-arrow-color: #11a0f3;
	scrollbar-track-color: #fbfbfb;

	scrollbar-shadow-color: #fbfbfb;
	scrollbar-lightshadow-color: #d7dbdd;
	scrollbar-darkshadow-color: #d7dbdd;

	scrollbar-highlight-color: white;
	scrollbar-3dlight-color: #d7dbdd;
}
.clsOptionList table
{
	/*position:relative;*/
}

.clsOptionList__old
{
	width:auto;
	display:none;
	border: 1px solid #E0E0E0;
	background: #FFFFFF;
	cursor: default;
	white-space: nowrap;
	position:absolute;
	border-top:none;
	z-index:9999999;
}
.clsOptionList tr:first-child .clsOptionListItem, .clsOptionList tr:first-child .clsOptionListItemOver{
	border-top:none;
}
.clsOptionListItem, .clsOptionListItemOver{
	width: 100%;
	color: #11A0F3;
	font-size: 12px;
	font-family: Arial;
	padding: 3px 20px 3px 5px;
	border-top: 1px dotted #8A8A8A;
}
.clsOptionListItemOver{
	background-color: #EFF3F5;
}

/*********************************************
				Combo Box CSS
/*********************************************/

