@charset "utf-8";
/* Default attributes of combobox */
.comboBox-style {
	border:1px solid #7F9DB9;
	padding:1px 20px 1px 1px;
	background:#ffffff url(./images/combobox/select_btn.gif) no-repeat right center;
	font:12px/16px dotum;
	color:#666666;
	height:16px;
	/* only in IE, hiding button image happens because of exceeded text
	 * you can use 'css expression' like this, but we recommend to modify 'width attribute' if possible
	 *
	text-overflow:ellipsis;
	#background-position:expression((this.offsetWidth-19)+"px center");
	_background-position:expression((this.offsetWidth-19)+"px center");
	 */
}
/* hover overriding attributes of combobox */
.comboBox-style:hover, /* all browser except under IE6 */
.comboBox-style-hover  /* for under IE6 */
{
	background:url(./images/combobox/select_btn.gif) no-repeat right center;
}
/* Default attributes of disabled combobox */
.comboBox-disabled {
	border:1px solid #C9C7BA;
	padding:1px 20px 1px 1px;
	background:#ffffff url(./images/combobox/drop3.png) no-repeat right center;
	font:12px/16px dotum;
	font-weight:bold;
	color:##ACA899;
	height:16px;
	/* only in IE, hiding button image happens because of exceeded text
	 * you can use 'css expression' like this, but we recommend to modify 'width attribute' if possible
	 *
	text-overflow:ellipsis;
	#background-position:expression((this.offsetWidth-19)+"px center");
	_background-position:expression((this.offsetWidth-19)+"px center");
	 */
}

/* Default attributes of comboBox popup list */
.comboBox-popup {
	border:1px solid #e3e3e3;
	overflow-x:auto;
	overflow-y:auto;
	font:12px/16px dotum;
	color:#666666;
	background-color: #ffffff;
	cursor:default;
}
/* Default attributes of comboBox popup list items */
.comboBox-item {
	padding-left:5px;
	padding-right:1px;
	padding-top:1px;
	padding-bottom:1px;
	
}
/* Default attributes of comboBox popup list over items */
.comboBox-item:hover,  /* all browser except under IE6 */
.comboBox-item-hover   /* for under IE6 */
{
	background-color: #BBCEFD;
}
/* Default attributes of comboBox popup list selected items */
.comboBox-item-selected {
	background-color: #D6F0FF;
	padding-left:5px;
	padding-right:1px;
	padding-top:1px;
	padding-bottom:1px;
}