
/*Selects*/
.select-area {
	cursor:default;
	height:26px !important;
	background:url(../images/front_input_bg.png) repeat-x right top;
}
.select-area iframe {
	display: none;
	border: none;
}
.select-area .select-area-left {
	width:2px;
	height:26px;
	float:left;
	background:url(../images/front_input_bg_left.png) no-repeat left top;
}
.select-area .select-area-right {
	width:19px;
	height:26px;
	float:right;
	background:url(../images/sel_ico.gif) no-repeat right top;
}
.select-area-opened .select-area-right {
	background:url(../images/sel_ico.gif) no-repeat right top;
}
.select-area-opened iframe {
	display: block;
	position:absolute;
}
.select-area .select-area-center {
	color:#5b5b5b;
	height:23px;
	line-height:20px;
	overflow:hidden;
	white-space:nowrap;
	padding:3px 0 0 6px;
}
*html .select-area .select-area-center {padding:3px 0 0 0;}

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