@CHARSET "ISO-8859-1";

.dropdown{
	float:left;
	margin:0;
}
.dropdown dd,.dropdown dt,.dropdown ul {
	margin: 0px;
	padding: 0px;
}

.dropdown dd {
	position: relative;
}

.dropdown a,.dropdown a:visited {
	color: #666;
	text-decoration: none;
	outline: none;
	font-weight: normal;
}

.dropdown a:hover {
	color: #666;
}

.dropdown dt a:hover {
	color: #666;
	border: 1px solid #D0D6DD;
}

/** How will the dropdown look **/
.dropdown dt a {
	background: white url(arrow.gif)
		no-repeat scroll right top;
	display: block;
	border:1px solid white;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	-opera-border-radius:8px;
	-khtml-border-radius:8px;
	border-radius:8px;
	width:158px;
	padding: 2px 38px 2px 5px;
}

.dropdown.error dt a {
	border-color:#CC3300;
}

.dropdown dt a span {
	cursor: pointer;
	display: block;
}

.dropdown dd ul {
	background: white none repeat scroll 0 0;
	border:1px solid #D7E2F3;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	-opera-border-radius:8px;
	-khtml-border-radius:8px;
	color: #666;
	display: none;
	left: 0px;
	padding: 5px 0px;
	position: absolute;
	top: 2px;
	width: auto;
	min-width: 170px;
	list-style: none;
	max-height: 14em;
	overflow: auto;
}

.dropdown span.value {
	display: none;
}

.dropdown dd ul li a {
	display: block;
	padding:0 5px;
}

.dropdown dd ul li a:hover,  .dropdown dd ul li a.selected{
	background-color: #D7E2F3;
}
.dropdown-disabled  dt a{
	background-color: #DDD;
	background-image:none;
}
.dropdown-disabled a:hover, .dropdown-disabled dt a:hover{
	border:1px solid #D7E2F3;
	cursor: default;	
}
