/* -------------
 * Selects
 * ------------- */
 select {display:none;}
.SelectWrapper {
	width: 45px;
	position:relative;
	height: 20px;
	border:1px solid #ccc;
	/*-moz-border-radius: 5px;
	-0-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
	float:none;
	background:#fff;
}


.SelectWrapper div span {
	text-align:left;
	font-size: 12px;
	left: 2px;
	position: absolute;
	white-space: nowrap;
	height: 14px;/**/
	padding: 3px 5px;
	overflow: hidden;
	cursor:pointer;
	line-height:1.1em;
}

.SelectWrapper  a.SelectOpen {
	display: block;
	position: absolute;
	right: 0px;
	width: 20px;
	height: 20px;
	background: url(../images/select.png) no-repeat center bottom #e6e6e6;
	border-left: 1px solid #ccc;	
	/*-moz-border-radius: 0 4px 4px 0;
	-0-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;	*/
}

.SelectWrapper  a.SelectOpen:hover, .SelectWrapper  a.SelectOpen:active, .SelectWrapper  a.SelectOpen:focus {
	background: url(../images/select.png) no-repeat center top #f6f6f6;
}

.SelectWrapper ul {
	position: absolute;
	width: 43px;
	top: -1px;
	left: -1px;
	list-style: none;
	background-color: #fff;
	border: solid 1px #CCC;
	display: none;
	margin: 0px !important;
	padding: 0px;
	height: 150px;
	overflow: auto;
	overflow-y: auto;
	z-index:10;
	/*-moz-border-radius: 5px;
	-0-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
}

.SelectWrapper ul li {background:none !important; padding-left:0 !important;margin:0 !important;text-align:left;}

.SelectWrapper ul a {
	display: block;
	padding: 2px 5px 2px 7px;
	text-decoration: none;
	color:#333;
	font-size: 12px;
	transition:none;
	-moz-transition:none;
	-webkit-transition:none;
	-o-transition:none;	
}

.SelectWrapper ul a.selected {
	background: #e6e6e6;
	color: #333;
	/*-moz-border-radius: 2px;
	-0-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;		*/
}

.SelectWrapper ul a:hover, .SelectWrapper ul a.selected:hover {
	background: #069;
	color: #fff;
	/*-moz-border-radius: 2px;
	-0-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;	*/
}

/* -------------
 * Hidden - used to hide the original form elements
 * ------------- */
.Hidden {display: none;}