.customStyleSelectBox {
/* Styles For Your Select Box */
	border:solid 1px #000;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	
	background-image: url(../images/gradientBtn/roundGradientBtnBg.png);
	background-repeat: repeat-x;
	
	padding: 0px 8px 0px 12px;
			
	margin-bottom: 5px;
	
	font-family: Arial, sans-serif;
 	font-weight: normal;
	white-space: nowrap;
	height: 20px;
	line-height: 20px;
	        
	/* rounded corners */
	   -moz-border-radius: 12px; 
	-webkit-border-radius: 12px; 
	        border-radius: 12px; 
	        
}

.customStyleSelectBox.changed {
/* You can use this if you want a different style after user has made a selection */

}

/* on the next line we add a down arrow on the right to indicate that it is a select box */
.customStyleSelectBoxInner {
	background:url(../images/dropdown-arrow.gif) no-repeat center right;
	height: 20px;
	padding-right: 8px; 
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.customStyleSelectBox.errorBorder {
/* on errors */
	background: none;
	background-color: #ee0000;
	border-color: #ee0000;
}