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

/* Default Presentation CSS. You can edit appearance here or create a custom class below */
.easy-select-box{
 width:100%!important;
	background: #fff;
  border:none;
  border-radius: 5px;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
  text-align:left;
  font-size:1.2em;
}


.type02 .easy-select-box{
 width:300px!important;
	background: #f3f3f3 url(../images/select_arrow.png) no-repeat right;
  border:solid 1px #dfdfdf;
  border-radius: 5px 0 0 5px!important;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
  text-align:left;
  font-size:1.2em;
}




.easy-select-box .esb-displayer{
	color:#0c2245;
	padding:20px 0 20px 10px;
	height:auto;
	line-height:1em;
	cursor:pointer;
}

.type02 .easy-select-box .esb-displayer{
	color:#0c2245;
	padding:10px 0 10px 10px;
	height:auto;
	line-height:1em;
	cursor:pointer;
}





.easy-select-box:hover .esb-displayer{
	background-position: 0 -18px;
	text-decoration:none;
}
.easy-select-box.disabled .esb-displayer,
.easy-select-box:hover.disabled .esb-displayer{
	background-position: 0 -36px;
}
.easy-select-box .esb-dropdown{
	border:none;
	min-width:260px;
 max-height:380px;
	overflow:auto;
	background:rgba(255,255,255,0.8);
 border-radius:0 0 10px 10px;
}
.easy-select-box .esb-dropdown .esb-item{
	padding:3px;
	color:#0c2245;
	cursor:default;
 box-sizing:border-box;
 padding:10px 0;
 text-align:center;
 cursor:pointer;
}
.easy-select-box .esb-dropdown .esb-item:hover{
	background:#62D5DB;
	color:#FFFFFF;
	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;
}
