.customSelect {
	float: left;
	position: relative;
	display: block;
	top: 18px;
}

.customSelect em {
	background: transparent url(/img/common/select-background.png) no-repeat right top;
	border: 1px solid #ddd;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 0px 5px 0px 5px;
	width: 400px;
	height: 23px;
	line-height: 23px;
	font-family: "proxima-nova", Helvetica, Arial, sans-serif;
	font-size: 10pt;
	font-style: normal;
	font-weight: bold;
	text-transform: none;
}

.customSelect em.dimmedLabel {
	color: #bbb;
	font-weight: normal;
}

.customSelect ul {
	background-color: #fff;
	border: 1px solid #ccc;
	line-height: normal;
	display: none;
	left: 0;
	max-height: 152px;
	overflow-y: auto;
	overflow-x: hidden;
	position: absolute;
	top: 24px;
	width: 410px;
	z-index: 100;
}

.customSelect ul.alignRight {
	left: auto;
	right: 0;
}

.selectActive {
	z-index: 1;
}

.selectActive ul {
	display: block;
}

.customSelect ul li {
	font-size: 9pt;
	cursor: default;
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 3px 5px 3px 5px;
	width: 400px;
	font-style: normal;
	font-weight: normal;
	text-transform: none;
}

.customSelect ul li.hover, .customSelect ul li:hover {
	background-color: #ccc;
	color: #555;
}

