/*-------------------------------
*	Default dropdown styles
--------------------------------*/
*{ margin:0; padding:0;}
body { font:11px Arial; color:#666; background:#ddd;}

.tzSelect{
	
	/* This is the container of the new select element */
	
	height:16px;
	display:inline-block;
	min-width:33px;
	position:relative;
	margin:5px;
	
	/* Preloading the background image for the dropdown */
	background:url("img/dropdown_slice.png") no-repeat -99999px;
}

.tzSelect .selectBox{
	position:absolute;
	border:1px solid #666;

	height:100%;
	width:100%;
	
	/* Font settings */
	
	font:11px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align:left;
	color:#666666;
	background:url(../images/right_an.jpg) right no-repeat;

	/* 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;*/
	
	cursor:pointer;
}

.tzSelect .selectBox:hover,
.tzSelect .selectBox.expanded{
	/*background-position:0 -170px, right -238px, 50% -102px, 0 -34px;*/
	color:#333;
}

.tzSelect .dropDown{
	position:absolute;
	top:16px;
	left:0;
	width:100%;
	border:1px solid #32333b;
	list-style:none;
	z-index:1000;
	
}
.tzSelect ul{ background:#FFF; }

.tzSelect li{
	color:000;
	background-color:#fff;
	cursor:pointer;
	padding:1px;
	text-align:left;
}

.tzSelect li:hover{
	background-color:#292929;
	color:#FFF;
}

#page{ font-size:11px; }
.name{ float:left;}
.regularSelect{ color:#333; float:left;}

.name span{ color:#F00;}
.bd{ height:30px; }
.bd li{ float:left; margin-right:5px;} 
.cart a:hover{ text-decoration:none; }