/* 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{
	width: 118px;
	color: #fff;
	font-size: 16px;
	padding: 10px;
	margin: 3px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: url(../img/enrollment/select_arrow.png) right 50% no-repeat #898888;
	background-size: 50px 100%;
	border-radius: 5px;
}
.easy-select-box:hover{
	background-image: url(../img/enrollment/select_arrow_on.png);
}
.input-small + .easy-select-box{
	width: 150px;
}
.input-medium + .easy-select-box{
	width: 300px;
}
.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: 1px solid #ddd;
	width: 116px;
	font-size: 14px;
	max-height: 200px;
	overflow: auto;
	background: #FFFFFF;
}
.easy-select-box .esb-dropdown .esb-item{
	padding: 3px;
	background: #FFFFFF;
	color: #0c2245;
	cursor:default;
}
.easy-select-box .esb-dropdown .esb-item:hover{
	background:#3399ff;
	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;
}