<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:34px;
	display:inline-block;
	min-width:250px;
	position:relative;
	
	/* Preloading the background image for the dropdown */
	background:url("../images/dropdown_slice.png") no-repeat -99999px;
	z-index:1;
}
.tzSelect .selectBox{
	position:absolute;
	
	height:29px;
	width: 460px;
	padding-left: 10px;	
	padding-top: 5px;
	/* Font settings */
	
	font-size: 110%;
	text-align:left;
	text-shadow:1px 1px 0 #EEEEEE;
	color:#444;

	/* Using CSS3 multiple backgrounds and a fallback */
	
	background:url('../images/select_slice.png') repeat-x #ddd;
	background-image:url('../images/select_slice.png'),url('../images/select_slice.png'),url('../images/select_slice.png'),url('../images/select_slice.png');
	background-position:0 -136px, right -204px, 50% -68px, 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{
	background-position:0 -170px, right -238px, 50% -102px, 0 -34px;
	color:#316200;
	text-shadow:1px 1px 0 #d3f8ac;
}

.tzSelect .dropDown{
	position:absolute;
	top:35px;
	left:0;
	width:470px;
	padding-bottom: 0;
	border:1px solid #bbb;
	border-width:0 1px 1px;
	list-style:none;
	
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	
	-moz-box-shadow:0 0 8px #aaa;
	-webkit-box-shadow:0 0 8px #aaa;
	box-shadow:0 0 8px #aaa; 
}
#main .content &gt; .inner .tzSelect .dropDown strong {color: #be2d12;}

.tzSelect li{
	height:40px;
	cursor:pointer;
	position:relative;
	padding: 0; margin: 0;
	padding-right: 100px;
	list-style: none;
	font-size: 110%;
	color: #000;
	/* Again, using CSS3 multiple backgrounds with a fallback */
	
	border-bottom: 1px dotted #666;
	background-color: #eee;
	/*background-image:url('../images/dropdown_slice.png'),url('../images/dropdown_slice.png'),url('../images/dropdown_slice.png');
	background-position: 50% -171px, 0 -85px, 0 0;
	background-repeat: no-repeat, no-repeat, repeat-x;*/
}

.tzSelect li:hover{
	background-color: #ccc;
	/*background-position: 50% -256px, 0 -85px, 0 0;*/
}

.tzSelect li span{	
	position:absolute;
	display: block;
	left: 10px;
	top: 12px;
	width: 100%;
	line-height: 14px;
	font-weight: bold;
}

.tzSelect li i{
	color:#999999;
	display:block;
	font-size:12px;
}

.tzSelect li img.no {
	right:2px;
	position:absolute;
	bottom:2px;
}
.tzSelect li a {	
	position:absolute;
	width: 38px;
	height: 37px;
	right:2px;
	top:2px;
	display: block; 
	background: url("../images/atr_lupa.png") 0 -3px no-repeat;
	/*background-position: 50% -256px, 0 -85px, 0 0;*/
}
#preview{
	position:absolute;
	border:1px solid #999;
	background:#fff;
	padding:4px; padding-bottom: 0;
	display:none;
	color:#fff;
	z-index: 99;
	-moz-box-shadow:0 0 4px #aaa;
	-webkit-box-shadow:0 0 4px #aaa;
	box-shadow:0 0 4px #aaa;
}</pre></body></html>