.dhx_combo_img{
	position:absolute;
	top:0px;
	right:0px;
	width:17px;
	height:20px;
}

.dhx_combo_option_img{
	position:relative;
	top:1px;
	margin-left:2px;
	left:0px;
	width:18px; height:18px;
}


.dhx_combo_input{
	color:#333333;
	font-family: Arial;
	font-size: 9pt;
	border:0px;
	/* padding:2px 2px 2px 2px; */
        padding:0px;
	position:absolute;
	top:0px;
}
.dhx_combo_box{
	position:relative;
	text-align:left;
	border:1px solid #444;
	height:20px;
	_height:22px;
	overflow:hidden;
    background-color: white;
}
.dhx_combo_list{
   position:absolute;
   z-index:30;
   overflow-y:auto;
   overflow-x:hidden;
   border:1px solid #444;
   height:170px;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size: 8pt;
   background-color: white;
}

.dhx_combo_list div{
	cursor:pointer;
	padding:2px 2px 2px 2px;
	background-color: expression(
	this.onmouseover = function() { this.className += ' rollover'; },
	this.onmouseout = function() { this.className = this.className.replace('rollover', ''); });
}
.dhx_selected_option{
	background-color:#666666;
	color:white;
}

.rollover {
 background-color: #cccccc;
}

.dhx_combo_list div:hover {
background-color:#cccccc;
cursor:pointer;
}