.drop-down {
	position: relative;
/*	width: 200px; */
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	vertical-align: middle;
	cursor: pointer;
	background-color: #8FD7FF;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	-moz-transition: all 0.4s 0.01s ease;
 	-o-transition: all 0.4s 0.01s ease;
 	-webkit-transition: all 0.4s 0.01s ease;
}

.drop-down:active{
	color:#fff;	
	background-image:none;
	outline:0;
}
.drop-down:hover,.drop-down:focus{
	color:#333;
	background-color:#00B4CB;
	text-decoration:none;
}

.drop-down span {
	overflow: hidden;
	margin-left: 5px;
}

.drop-down .arrow-down {
	position: absolute;
	right: 10px;
	top: 12px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #AAA;
}

.drop-down-ul {
	padding: 0px;
	margin: 5px 3px;
	list-style: none;
/*	width: 218px;	*/
	background: #8FD7FF;
	position: absolute;
	left: 0;
	top: 10px;
	z-index: 2;
}

.drop-down-ul li {
	height: 24px;
	line-height: 24px;
	overflow: hidden;
	cursor: pointer;
	padding: 0 10px;
	font-size: 14px;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}

.drop-down-ul li:last-child {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	border-bottom: 1px solid #EEEEEE;
}

.drop-down-ul li:hover {
	background: #00B4CB;
}
