* {
	margin: 0;
	list-style: none;
	padding: 0;
}
div.select-main {
/*	background-color: #e3e3e3;*/
	font-size: 14px;
	height: 60px;
	position: relative;
	width: 160px;
	right:180px;
	-webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

div.select-main.z-index {
	z-index: 10;
}

div.select-main.disabled {
	cursor: default;
	filter: alpha(opacity=50);
	opacity: 0.5;
	zoom: 1;
}

div.select-main.disabled div.select-set {
	cursor: default;
}

div.select-main.disabled div.select-arrow {
	cursor: default;
}

div.select-set {
	background-color: #fff;
	color: #ff4500;
	cursor: pointer;
	height: 55px;
	line-height: 55px;
	text-align: center;
	overflow: hidden;
	position: relative;
	padding: 0 35px 0 62px;
	width: 62px;
	z-index: 5;
	font-size: 18px;
}

div.select-arrow {
	border-top: 10px solid #ff4500;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	cursor: pointer;
	height: 0px;
	position: absolute;
	top: 26px;
	right: 10px;
	width: 0px;
	z-index: 7;
}

div.select-arrow.reverse {
	border-top: 7px solid transparent;
	border-bottom: 10px solid #ff4500;
	top: 16px;
}

div.select-block {
	background-color: #FFFFFF;
    border-left: 1px solid #2a84df;
    border-right: 1px solid #2a84df;
    border-bottom: 1px solid #2a84df;
    border-radius: 2px;
    right: 1px;
    line-height: 20px;
    position: absolute;
    top: 50px;
    width: 110px;
	text-align: center;
}

ul.select-list {
	cursor: pointer;
	margin: 15px 0 7px;
}

/* Scroll view */

ul.select-list::-webkit-scrollbar {
    width: 12px;
}

ul.select-list::-webkit-scrollbar-track {
    border-radius: 10px;
}

ul.select-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}

ul.select-list {
	scrollbar-face-color: #AEB1B1;
    scrollbar-shadow-color: #C7CACA;
    scrollbar-highlight-color: #CED1D1;
    scrollbar-3dlight-color: #CED1D1;
    scrollbar-darkshadow-color: #C7CACA;
    scrollbar-track-color: #CED1D1;
    scrollbar-arrow-color: #333;
}

/* End scroll view */

li.select-items {
	color: #333333;
	padding: 7px 15px;
}

li.select-items:hover,
li.select-items.active {
	/*background-color: #bacfe4;*/
	color: #ff4500;
	font-size: 18px;
	font-weight: 600;
}

/*www.198zone.com*/