body, html { width: 100%; height: 100%; }
body { padding: 0; margin: 0; }

div#combobox_overlay { 
/*	required	*/	
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	
/*	layout	*/
}
div.combobox_container {
/*	required	*/
/*	z-index: 1; */
	position: absolute;
/*	layout	*/
}
input.combobox_input {
/*	layout	*/
/*	z-index: 1;	*/
	position: absolute;
	width: 270px;
	height: 20px;
	padding: 0 18px 0 4px;
	border: 4px solid #9E9E9E;
	margin-top:0px;
}
a.combobox_button {
/*	layout	*/
/*	z-index: 1;	*/
	position:absolute;
	width:24px;
	display: block;
	left: 276px;
	top: 0px;
	text-decoration: none;
}
a.combobox_button div{
	height: 28px;
	width: 24px;
	background:url(/img/grey_down_arrow.gif) no-repeat center center;
}
ul.combobox_summary {
/*	required	*/	
	overflow-x: hidden;
	overflow-y: auto;
/*	layout	*/
	z-index: 200;
	position: absolute;
	background-color: white;
	border-top: none;
	list-style: none;
	width:288px;
	padding: 5px;
	border:1px solid #e1e1e1;
	margin-top: 27px;	
}
ul.combobox_summary li {
/*	layout	*/	
	display: block;
	margin: 0;
	list-style-type: circle;
	background-image: none;
	border-top: 1px dashed #e1e1e1;
	font-weight: bold;
	padding: 2px;	
}
ul.combobox_summary li a {
/*	layout	*/	
	padding: 0;
	margin: 0;
	display: block;
	text-decoration: none;
	font-weight: normal; 
	color:#333;
	background:#FFF;
}
ul.combobox_summary li a:hover {
	background-color: #eeeeee;
	text-decoration: none;
}

