/* SelectBox styles */
.ui-selectBox {
	position: relative;
	width: 52px !important; /* 188px + 35px (padding-right) + 2px (for borders) == 225px wide */
	text-decoration: none;
	color: #fff;
	outline: none;
	vertical-align: middle;
	background: #007ac3;
	padding-right: 35px;
	display: inline-block;
	cursor: default;
	float: left;
	margin-top: 2px;
	cursor: pointer;
}
.ui-selectBox:hover {color: #fff !important;}

.ui-selectBox-label {
	width: 100%;
	padding: 6px 4px 4px 6px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-transform: uppercase;
	font-size: 11px;
		text-align:right;
	font-family:"Avenir LT W01 45 Book";
}

.ui-selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 14px;
	height: 100%;
	background: url(../images/bg_radius.png) left 7px no-repeat;
}

/* Dropdown styles */
#ui-selectBox-dropdown {
	max-height: 200px;
	background: #007ac3;
	margin-top: -1px;
	overflow: auto;
	color: #fff !important;
	text-transform: uppercase;
	font-family:"Avenir LT W01 45 Book";
	font-size: 11px;
}

#ui-selectBox-dropdown UL,
#ui-selectBox-dropdown UL LI {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

#ui-selectBox-dropdown UL LI {
	white-space: nowrap;
	overflow: hidden;
	padding: 6px 0 4px 6px;
	display: block;
	cursor: pointer;
}

#ui-selectBox-dropdown .ui-selectBox-current {
	background-color: #0077c1;
}

/* The following can be removed if you already have a jQuery UI theme loaded */
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
