.tzSelect{
	
	/* This is the container of the new select element */
	height:34px;
	display:inline-block;
	min-width:200px;
	position:relative;
	
	/* Preloading the background image for the dropdown */
	background:url("../img/dropdown_slice1.png") no-repeat -99999px;
}

.tzSelect .selectBox{
	position: absolute;
	height: 100%;
	width: 100%;
	/* Font settings */
	
	font-size: 18px;
	font-weight: bold;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-weight: normal;
    text-decoration: underline;
	
	text-align: center;
	
	color: #333;
	/* Using CSS3 multiple backgrounds and a fallback */
	
	background: url('../img/select_slice1.png') repeat-x #ddd;
	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;
	background-image: url('../img/select_slice1.png') ,url('../img/select_slice1.png') ,url('../img/select_slice1.png') ,url('../img/select_slice1.png');
	border: thin solid #D2C9C9;
	-webkit-box-shadow: 3px 3px 3px 0px;
	box-shadow: 3px 3px 3px 0px;
}

.tzSelect .selectBox:hover,
.tzSelect .selectBox.expanded{
	background-position:0 -170px, right -238px, 50% -102px, 0 -34px;
	color:#2c5667;
	text-shadow:1px 1px 0 #9bc2d0;
}

.tzSelect .dropDown{
	position:absolute;
	top:40px;
	left:0;
	width:100%;
	border:1px solid #32333b;
	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 4px #111;
	-webkit-box-shadow:0 0 4px #111;
	box-shadow:0 0 4px #111;
	overflow: scroll;
	height: 400px;
	z-index:40;
}


.tzSelect li{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height:87px;
	cursor:pointer;
	position:relative;
	color:#FFF;		/* txt colour */
	font-size:11px;
	
	/* Again, using CSS3 multiple backgrounds with a fallback */
	
	background:url('../img/dropdown_slice.png') repeat-x #222;
	background-image:url('../img/dropdown_slice.png') ,url('../img/dropdown_slice.png') ,url('../img/dropdown_slice.png');
	background-position: 50% -171px, 0 -85px, 0 0;
	background-repeat: no-repeat, no-repeat, repeat-x;
	z-index:2;
}

.tzSelect li:hover{
	background-position: 50% -256px, 0 -85px, 0 0;
}

.tzSelect li span{
	left:88px;
	position:absolute;
	top:27px;
	z-index:3;
}

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

.tzSelect li img{
	padding-top:0px;
	left:9px;
	position:absolute;
	top:13px;
}

.tzSelect ul{
	padding: 0;
}

