<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.select-main {
	background-color: #fff;
	border: 1px solid #efefef;
	font-size: 13px;
	height: 26px;
	position: relative;
	-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: #9c9c9c;
	cursor: pointer;
	height: 26px;
	line-height: 26px;
	overflow: hidden;
	position: relative;
	padding: 0 0 0 10px;
	width: auto;
	z-index: 5;

}
div.select-arrow {
	cursor:pointer;position:absolute;right:0;top:0;z-index:6;width: 50px;height: 26px;line-height: 26px;text-align: center;
}

div.select-arrow.reverse {
	border-top: 7px solid transparent;
	border-bottom: 7px solid #d5d5d5;
	top: 10px;
}

div.select-block {
	background-color: #fff;
    border-left: 1px solid #efefef;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    left: -1px;
    line-height: 20px;
    position: absolute;
    bottom: 26px;
    width: 100%;
	z-index:12;
}

ul.select-list {
	cursor: pointer;
}

/* Scroll view */

ul.select-list::-webkit-scrollbar {
    width: 12px;
}

ul.select-list::-webkit-scrollbar-track {
}

ul.select-list::-webkit-scrollbar-thumb {
    -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: #666;
	padding: 0 0 0 10px;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #efefef;
}

li.select-items:hover,
li.select-items.active {
	background-color: #4e8fdb;
	color: #fff;
}

/*www.198zone.com*/</pre></body></html>