/* ComboBox */

.comboBoo {

}

.comboBoo-label	{ 
	line-height: 1em; 
	height: 1em; 
	display:block;
	padding:8px; 
	cursor:pointer; 
	background: #FFF url(images/arrowDown.gif) no-repeat 95% 50%; 
	border:1px solid #999;
}

a:hover.comboBoo-label, a:active.comboBoo-label, .comboBoo-label-active {
	color: #fff; 
	text-decoration: none;
	background-color: #444; 
}

/* List of choices */
ul.comboBoo-list {
	position: absolute; 
	margin: 0 0 0 0; 
	padding: 0; 
	list-style: none; 
	border: 0; 
	font-family: Verdana, Geneva; 
	z-index: 500;
	height: 80px;
	/* height:300px; */
	/* overflow:scroll; */
}

ul.comboBoo-list li {
	padding: 0 0 0 8px; 
	line-height: 20px; 
	height: 20px; 
	cursor: pointer; 
	font-weight: normal; 
	font-size: 11px; 
	background: #AAA;
	border-bottom:1px solid #999; 
}

ul.comboBoo-list li.choice-selected {
	background-color: #444; 
	color: #fff;
}
