/*-------------------------------
*	Default dropdown styles
--------------------------------*/

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

.tzSelect .selectBox{
	position:absolute;
	
	height:100%;
	width:100%;
	
	/* Font settings */
	
	font:13px/27px "宋体";
	text-align:left;
	color:#666666;

	/* Using CSS3 multiple backgrounds and a fallback */
	
	background:url('img/select_slice.png') repeat-x #ddd;
	background-image:url('img/select_slice.png'),url('img/select_slice.png'),url('img/select_slice.png'),url('img/select_slice.png');
	background-position:0 -136px, right -204px, 50% -68px, 0 0;
	background-repeat: no-repeat, no-repeat, no-repeat, repeat-x;
	background-image:url('img/selectbg.png')\9;
	cursor:pointer;
	
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
.tzSelect .selectBox span{ padding-left:10px;}
.tzSelect .selectBox:hover,
.tzSelect .selectBox.expanded{
	/*background-position:0 -164px, right -231px, 50% -102px, 0 -27px;*/
	color:#333;
	text-shadow:1px 1px 0 #ccc;
	box-shadow: 0px 0px 4px rgba(200, 200, 200, 0.5);
}

.tzSelect .dropDown{
	position:absolute;
	top:27px;
	left:0;
	background-color:#FFF;
	width:100%;
	border:1px solid #d3d3d5;
	list-style:none;
	z-index:1000;
	max-height:200px;
	overflow-y:auto;
	
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	
	-moz-box-shadow: 0px 0px 4px rgba(200, 200, 200, 0.5);
	-webkit-box-shadow: 0px 0px 4px rgba(200, 200, 200, 0.5);
	box-shadow: 0px 0px 4px rgba(200, 200, 200, 0.5);
}

.tzSelect li{
	cursor:pointer;
	line-height:25px;
	text-align:center;
}

.tzSelect li:hover{
	background-color:#f2f2f2;
}


/*-----------------------------------------------------
*	Additional styles for the apple product dropdown
------------------------------------------------------*/


.tzSelect .hasDetails{
	border-width:0 1px 1px;
}

.tzSelect .hasDetails li{
	height:85px;
	position:relative;
	padding:0;
	text-align:left;
	
	/* 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;
}

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

.tzSelect .hasDetails li span{
	left:88px;
	position:absolute;
	top:27px;
}

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

.tzSelect .hasDetails li img{
	left:9px;
	position:absolute;
	top:13px;
}