/* SelectBox styles */
.ui-selectBox {
	position: relative;
	min-width: 108px; /* 188px + 35px (padding-right) + 2px (for borders) == 225px wide */
	border: solid 1px #d9d9d9;
	border-right: solid 1px #d9d9d9;
	text-decoration: none;
	color: #454545;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
}


.ui-selectBox:hover,
.ui-selectBox-focus,
.ui-selectBox:hover .ui-selectBox-arrow,
.ui-selectBox-focus .ui-selectBox-arrow {
	border-color: #40B5E2;
	/*box-shadow:0 0 5px #40B5E2;*/

}

.ui-selectBox-label {
	width: 100%;
	padding: 1em;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
	line-height: 2px;
}

.ui-selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 100%;
	background: url(../img/select_arrows.gif) 50% center no-repeat;
	border-left: solid 1px #d9d9d9;
}

/* Dropdown styles */
#ui-selectBox-dropdown {
	max-height: 200px;
	border: solid 1px #BBB;
	background: #FFF;
	margin-top: -1px;
	overflow: auto;
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

#ui-selectBox-dropdown UL,
#ui-selectBox-dropdown UL LI {
	list-style: none;
	padding: 0;
	margin: 0;
}

#ui-selectBox-dropdown UL LI {
	white-space: nowrap;
	overflow: hidden;
	/* padding: .5em .6em .5em 4px; */
	padding:10px 10px; /* select box */
	display: block;
	cursor: default;
}


#ui-selectBox-dropdown.ui-selectBox-hasOptgroups .ui-selectBox-option {
	padding-left: 20px;
	background-position: 14px center;
}

#ui-selectBox-dropdown .ui-selectBox-current {
	background-color: #C8DEF4;
}

a.ui-selectBox{ background-color:#ffffff;}