@CHARSET "UTF-8";
.select-holder{
	background-color: #20CDDA;
	border: 0;
	font-weight: normal;
	height: 30px;
	position: relative;
}
.select-holder:focus .select-selector{
	
}
.select-selector{
	display: block;
	height: 30px;
	left: 0;
	line-height: 30px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 15px;
	top: 0;
	width: 100%;
}
.select-selector:link, .select-selector:visited, .select-selector:hover{
	color: #FFF;
	outline: none;
	font-family: 'proxima_nova_rgbold';
	letter-spacing: 1.5px;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
}
.select-toggle{
	background: url(../images/select-icons.png) 0 -116px no-repeat;
	display: block;
	height: 30px;
	outline: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
}
.select-toggle:hover{
	background: url(../images/select-icons.png) 0 -167px no-repeat;
}
.select-toggleOpen{
	background: url(../images/select-icons.png) 0 -16px no-repeat;
}
.select-toggleOpen:hover{
	background: url(../images/select-icons.png) 0 -66px no-repeat;
}
.HolderDisabled{
	background-color: #3C3C3C;
}
.HolderDisabled .select-holder{
	
}
.HolderDisabled .select-toggle{
	
}
.select-options{
	background-color: #FFF;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0 15px;
	position: absolute;
	top: 30px;
	width: 100%;
	z-index: 1;
	border: 0px;
	overflow-y: auto;
	border: 1px solid #CCC;
	-moz-box-shadow: 0px 3px 3px #9e9e9d;
	-webkit-box-shadow: 0px 3px 3px #9e9e9d;
	box-shadow: 0px 3px 3px #9e9e9d;
}
.select-options li{
	padding: 10px 0;
	border-bottom: 1px solid #20CDDA;
}
.select-options a{
	display: block;
	outline: none;
	padding: 7px 0 7px 3px;
}
.select-options a:link, .select-options a:visited{
	color: #9E9E9D;
	text-decoration: none;
	font-size: 14px;
}
.select-options a:hover,
.select-options a:focus,
.select-options a.select-focus{
	color: #20CDDA;
}
.select-options li.last a{
	border-bottom: none;
}
.select-options .select-disabled{
	color: #999;
	display: block;
	padding: 7px 0 7px 3px;
}
.select-options .select-group{
	color: #20CDDA;
	display: block;
	font-weight: bold;
	padding: 7px 0 7px 3px;
}
.select-options .select-sub{
	padding-left: 17px;
}
.select-options li:first-child {
	display: none;
}