/* Core CSS. Do not edit unless your sure */
.easy-select-box{
	display:inline-block;
	position:relative;
}
.easy-select-box .esb-dropdown{
	position:absolute;
	top:100%;
	left:0;
	z-index:99;
	display:none;
}

/* Default Presentation CSS. You can edit appearance here or create a custom class below */
.easy-select-box{
	background:#fff;
	color:#333;
	padding:15px 10px;
	height:40px;
	width:200px !important;
	margin-bottom:10px;
	font-size:86%;
}
.easy-select-box .esb-displayer{
	background: url(../images/down.png) no-repeat 164px center;
	cursor:pointer;
}
.easy-select-box:hover .esb-displayer{
}
.esb-displayer:after {
	border-left: 1px solid #f7f7f7;
	content: " ";
	display: block;
	position: absolute;
	height: 40px;
	width: 40px;
	top: 0;
	right: 0;
}
.easy-select-box.disabled .esb-displayer,
.easy-select-box:hover.disabled .esb-displayer{
}
.easy-select-box .esb-dropdown{
	max-height:200px;
	overflow:auto;
	width:159px !important;
}
.easy-select-box .esb-dropdown .esb-item{
	padding:10px;
	background:#fff;
	cursor:default;
}
.easy-select-box .esb-dropdown .esb-item:hover{
	background:#ddd;
	color:#fff;
	text-decoration:none;
}

/* Custom Presentation CSS. You can edit appearance here */
.easy-select-box-nice{
	text-align:left;
	color:#0c2245;
	min-width:200px;
}
.easy-select-box-nice .esb-displayer{
	background: url(images/bg-select-2.png) no-repeat right 0;
	border-left:1px solid #cccccc;
	border-right:1px solid #cccccc;
	padding:0 5px;
	height:37px;
	line-height:37px;
	cursor: default;
	border-radius:10px;
}
.easy-select-box-nice:hover .esb-displayer{
	background-position: right -37px;
}
.easy-select-box-nice.disabled .esb-displayer,
.easy-select-box-nice:hover.disabled .esb-displayer{
	background-position: right -74px;
	color:#ccc;
}
.easy-select-box-nice .esb-dropdown{
	border:1px solid #cccccc;
	background:#FFFFFF;
}
.easy-select-box-nice .esb-dropdown .esb-item{
	padding:3px 5px;
	cursor:default;
}
.easy-select-box-nice .esb-dropdown .esb-item:hover{
	background:#3399ff;
	color:#FFFFFF;
}