
/*Selects*/
.select-area {
	cursor:default;
	height:44px;
	background:url(../images/select-bg.gif) repeat-x right top;
}
.select-area .select-area-left {
	width:2px;
	height:44px;
	float:left;
	background:url(../images/select-left.gif) no-repeat left top;
}
.select-area .select-area-right {
	width:44px;
	height:44px;
	float:right;
	background:url(../images/select-right.gif) no-repeat right top;
	cursor:pointer;
}
.select-area-opened .select-area-right {
	background:url(../images/select-right-opened.gif) no-repeat right top;
}
.select-area .select-area-center {
	color:#000;
	height:44px;
	font-family: Verdana, Geneva, sans-serif;
	font-size:18px;
	line-height:44px;
	overflow:hidden;
	white-space:nowrap;
	text-indent:5px;
}

/*Selects options*/
.select-options-invisible, .select-options-visible {
	position:absolute;
	background:#fff;
	z-index:20;
	border:1px solid #6f7074;
	overflow:auto;
	margin:0 !important;
}
.select-options-invisible {
	display:none;
}
.select-options-visible {
	cursor:default;
	display:block;
	list-style-type:none;
}
.select-options-visible li {
	margin:0;
	cursor:pointer;
}
.select-options-visible li.select-option-hovered {
	background-color:#D2F0F4;
}
.select-options-visible li.select-option-selected {
	background-color:#496AC5;
	color:#fff;
}