/* ComboBox */
.comboBoo {
	border: 0;
	background-color: #000;
	color: #fff;
}
.comboBoo-label	{
	border: 1px solid #336699; 
	font-size: 12px; 
	line-height:15px; 
	color: #000;
	padding: 2px 22px 2px 3px; 
	position: absolute;
	overflow: hidden;	
	background: #fff url(../images/arrDown_2.gif) no-repeat right 8px;
	height: 18px;
	cursor: pointer;
}
a:hover.comboBoo-label, a:active.comboBoo-label	{
	background-color: #D6E0EB;
	color: #000;
	text-decoration: none;
}
ul.comboBoo-list {
	position: absolute; 
	margin: 30px 0 0 0; 
	padding: 0; 
	border: 1px solid #336699;
	list-style: none; 
	z-index: 500;
}
ul.comboBoo-list li {
	padding: 0 0 0 8px; 
	line-height: 25px;
	height: 25px;
	cursor: pointer;
	font-weight: normal;
	font-size: 11px;
	overflow-x: hidden;
	
	background: #fff;
	color: #000;
	margin: 0;
}
ul.comboBoo-list li.choice-selected {
	background-color: #336699;
	color: #fff;
}

