.selectbox {
	width:100%;
	padding: 0px;
	vertical-align: middle;
	cursor: pointer;
}
.selectbox .select {
	margin-left: -42px;
	display:block;
	width:100%;
	height:31px;
	padding:0px 32px 0px 10px;
	border:1px solid #b2b2b2;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	-webkit-box-shadow: inset 0px 0px 1px 1px #fff;
	   -moz-box-shadow: inset 0px 0px 1px 1px #fff;
			box-shadow: inset 0px 0px 1px 1px #fff;
	font: 15px/2 'Trebuchet MS', 'sans-serif';
	color: #353535;
	background:#fff url('../images/input.png') top left repeat-x;
}
/*.selectbox .select:hover {
	background-color: #E6E6E6;
	background-position: 0 -10px;
}*/
.selectbox .select:active {
	background: #e1e6ed;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
}
.selectbox.focused .select {
	border: 1px solid #5794BF;
}
.selectbox .select .text {
	padding:0px;
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.selectbox .trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
}
.selectbox .trigger .arrow {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 31px;
	height: 31px;
	background: url('../images/arrow.png') 0px 0px no-repeat;
}
/*.selectbox:hover .arrow {
	opacity: 1;
	filter: alpha(opacity=100);
}*/
.selectbox .dropdown {
	top: 37px;
	left:-42px;
	width: 100%;
	margin: 0px;
	padding: 4px 21px;
	background: #FFF;
	border: 1px solid #b2b2b2;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	font: 14px/18px Arial, Tahoma, sans-serif;
}
.selectbox ul {
	margin: 0px;
	padding: 0px;
	}
.selectbox li {
	width:100%;
	margin:0px -28px 0px -24px!important;
	padding: 5px 32px 6px 14px;
	color: #231F20;
	list-style:none!important;
}
.selectbox li.selected {
	background: #aaa;
	color: #FFF;
}
.selectbox li:hover {
	background: #08C;
	color: #FFF;
}
.selectbox li.disabled {
	color: #AAA;
}
.selectbox li.disabled:hover {
	background: none;
}