/* Dropdown control */
.selectBox-dropdown
{
/ / min-width: 100 px;
	-webkit-appearance: none !important;
	background: #fff;
	border: 2px solid #fff;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #000;
	cursor: default;
	display: inline-block;
	font-family: "Lato", arial, helvetica, sans !important;
	font-size: .75em;
	font-weight: 700;
	line-height: 1.3;
	outline: none;
	position: relative;
	text-align: left;
	text-decoration: none;
	vertical-align: middle;

}

.selectBox-dropdown:focus
{
	border: 2px solid #2980B9;
}

.selectBox-dropdown:focus .selectBox-arrow
{
/ / border: 1 px solid #2980B9;
}

.selectBox-dropdown.selectBox-menuShowing
{
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
}

.selectBox-dropdown .selectBox-label
{
	display: inline-block;
	font-family: "Lato", arial, helvetica, sans;
	font-weight: 700;
	overflow: hidden;
	padding: 1px 6px 0 6px;
	white-space: nowrap;
}

.selectBox-dropdown .selectBox-arrow
{
	background: url(/images/ez/jquery.selectBox-arrow.gif) 50% center no-repeat;
	border-left: solid 1px #A7FFFF;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 22px;
}

/* Dropdown menu */
.selectBox-dropdown-menu
{
	background: #FFF;
	-moz-box-shadow: 2px 2px 0 rgba(0, 0, 0, .8);
	-webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
	color: #000;
	font-family: 'Lato', arial, helvetica, sans-serif !important;
	font-weigth: bold;
	max-height: 200px;
	min-height: 1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	z-index: 99999;
}

/* Inline control */
.selectBox-inline
{
	background: #FFF;
	border: solid 1px #BBB;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	min-width: 150px;
	outline: none;
	overflow: auto;
}

.selectBox-inline:focus
{
	border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a
{
	cursor: default;
	display: block;
	font-family: "Lato", arial, helvetica, sans;
	font-size: 0.92em;
	font-weight: 700;
	list-style: none;
	margin: 0;
	padding: 0;
}

.selectBox-options li a
{
	background: 6px center no-repeat;
	line-height: 1.5;
	overflow: hidden;
	padding: 0 .5em;
	white-space: nowrap;
}

.selectBox-options li.selectBox-hover A
{
	background-color: #EEE;
}

.selectBox-options li.selectBox-disabled A
{
	background-color: transparent;
	color: #000;
}

.selectBox-options LI.selectBox-selected A
{
	background-color: #C8DEF4;
}

.selectBox-options .selectBox-optgroup
{
	background: #EEE;
	color: #666;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled
{
	color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow
{
	border-color: #666;
	filter: alpha(opacity=50);
	opacity: .5;
}

.selectBox-inline.selectBox-disabled
{
	color: #888 !important;
}


.selectBox-inline.selectBox-disabled .selectBox-options A
{
	background-color: transparent !important;
}