<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.tzSelect{

	/* This is the container of the new select element */

	height:26px;
	display:inline-block;
	min-width:185px;
	position:relative;
}

.tzSelect .selectBox{
	position:absolute;

	height:100%;
	width:100%;

	/* Font settings */


	text-align:center;
	text-shadow:1px 1px 0 #EEEEEE;
	color:#666666;
	font-size: 1.4rem;
	font-size: 14px;
	padding-top: 4px;

	/* Using CSS3 multiple backgrounds and a fallback */

	background:url('/necfru/img/category/select_slice.png') repeat-x #ddd;
	background-image:url('/necfru/img/category/select_slice.png') ,url('/necfru/img/category/select_slice.png') ,url('/necfru/img/category/select_slice.png') ,url('/necfru/img/category/select_slice.png');
	background-position:0 -145px, 34px 0px, 100% -175px, 0 0;
	background-repeat: no-repeat, no-repeat, no-repeat, repeat-x;

	cursor:pointer;

	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

.tzSelect .selectBox:hover,
.tzSelect .selectBox.expanded{
	color:#3084c4;
}

.tzSelect .dropDown{
	position:absolute;
	top:30px;
	left:0;
	width:100%;
	list-style:none;
	z-index: 2;

	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;

	-moz-box-shadow:0 0 1px #111;
	-webkit-box-shadow:0 0 1px #111;
	box-shadow:0 0 1px #111;
}


.tzSelect li{
	height: 31px;
	cursor:pointer;
	position:relative;
	background-color:#FFF;
	border-bottom: #CCC 1px solid;
}

.tzSelect li:hover{
	background:#2c80bf;
	color:#fff;
	}

.tzSelect li span{
	left: 20px;
	position:absolute;
	top:7px;
}

.tzSelect li i{
	color:#999999;
	display:block;
	font-size:12px;
}
</pre></body></html>