/* Dropdown control */
.selectBox-dropdown {
	height: 30px;
	position: relative;
	border: solid 1px #eee;
	text-decoration: none;
	color: #000;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: inline-block;
	cursor: default;
}

.selectBox-dropdown:focus .selectBox-arrow {
	background-position: left bottom;
}

.selectBox-dropdown.selectBox-menuShowing {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.selectBox-dropdown .selectBox-label {
	height: 20px;
	padding: 8px 0 0 10px;
	display: block;
	font-family: 'UbuntuRegular', sans-serif;
	font-size: 11px;
	color: #000;
	width: 100%;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	background-image: url(button-drop-down.png);
	background-position: left top;
}
.selectBox-arrow:hover {
	background-position: left bottom;
}


/* Dropdown menu */

.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #eee; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	overflow: auto;
}
.selectBox-dropdown-menu  li:first-child {
	border-top: none;
}
.selectBox-dropdown-menu  li {
	border-top: 1px solid #eee;
	list-style: none;
	height: 30px;
}
.selectBox-dropdown-menu  li a {
	display: block;
	font-size: 11px;
	color: #888;
	height: 21px;
	padding: 9px 10px 0 10px;
}
.selectBox-dropdown-menu  li a:hover,
.selectBox-dropdown-menu  li a:focus,
.selectBox-dropdown-menu  li a:active {
	background-color: #f7f7f7;
	color: #4ec1db;
}