.custom-combobox{
	width: 170px;
	position: relative;
	background: #4a90e2;
	color: white;
	font-size: 14px;
	line-height: 1em;
	border-radius: 5px;
	display: inline-block;
}
.cs-select{
	position:relative;
}
.cs-dropdown{
	width: 100%;
	height: 200px;
	position: absolute;
	z-index: 999;
  	overflow: auto;
  	border: 1px solid #ccc;
}
.cs-option, .cs-selected{
	color: white;
	padding: 10px 14px;
	display:block;	
	text-decoration: none;
	outline: none;
}
.cs-option{
	background-color: white;
	color: #5c5c5c;
}
.cs-option:first-child{
		border-radius: 5px 5px 0 0;
}
.cs-option:last-child{
		border-radius: 0 0 5px 5px;
}
.cs-option:hover, .cs-hilighted{
	background-color: gray;
	color: white;
}
.cs-right {
	position: absolute;
	background: url('../images/drop-down-arrow.png') no-repeat;
	width: 11px;
	height: 6px;
	right: 15px;
	top: 14px;
	cursor: pointer;
}