/* Look and feel of select box */
.selectbox { 
	margin: 0;
	padding: 0 10px;
	color: #999;
	line-height: 40px;
	min-width: 250px;
	height: 40px; 
	text-align:left;
	font-weight: bold;
	background: url(/img/format/marca-selects.png) no-repeat 95% 50%; 
	cursor: pointer; 
	border: 5px solid #d9d9d9; 
}


div.selectbox-wrapper { 
	position: absolute;
	z-index: 1; 
	width: 100%;
	max-height: 300px;
	margin: 0;
	color: #0099FF;
	background: #eee;
	padding: 0 5px; 
	text-align: left; 
	overflow: auto; 
}

/*Drop down list styles*/
div.selectbox-wrapper ul { 
	list-style: none; 
	width: 100%; 
	margin: 0; 
	padding: 0 0 15px; 
}

/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
	background-color: #EAF2FB; 
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
	background-color: #CDD8E4; 
}

/* Drop down list items style*/
div.selectbox-wrapper ul li { 
	list-style: none; 
	display: block; 
	padding: 5px 15px; 
	cursor: pointer; 
}