
.styledrop{
	position: relative;
	width: 152px;
	z-index: 999;
	-moz-appearance: none;
	-moz-outline: none;
	-webkit-appearance: none;
	-webkit-outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	border: none;
	}
	
	.styledrop:focus, .styledrop div:focus{
		outline:none;
		}
		
	.styledrop_label{
		padding: 0 0 0 8px;
		line-height: 30px;
		font-size: 13px;
		cursor: pointer;
		color: #fff;
		background: #7a8ab6 url(../images/icon-arrow-white.png) no-repeat;
		background-position: 130px 10px; 
		border: 1px solid #485585;
		}
	
	.styledrop_options{
		display: none;
		position: absolute;
		overflow-y: auto;
		overflow-x: hidden;
		max-height: 250px;
		width: 150px;
		border: 1px solid #b7b7b7;
		}
	
	.styledrop_list{
		background: #f2f4f8;
		}
		.styledrop_list_item{
			width: 142px;
			padding: 0 0 0 8px;
			border: none;
			font-size: 13px;
			color: #333;
			line-height: 30px;
			display: block;
			cursor: pointer;
			}
		.styledrop_list_item:hover, .styledrop_list_item.selected{
			background: #7a8ab6;
			}

.styledrop.disabled{
	pointer-events: none;
	opacity: 0.5;
	}			