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

.tzSelect{
	
	/* This is the container of the new select element */
	
	height:34px;
	display:inline-block;
	max-width:293px;
	min-width:293px;
	position:relative;
	margin:5px;
	
	/* Preloading the background image for the dropdown */
	background:url("img/dropdown_slice.png") no-repeat -99999px;
	border:1px solid #656565;
	margin: 10px 0 0 0;
}

.tzSelect .selectBox{
	
	height:100%;
	width:100%;
	
	/* Font settings */
	
	font-family:Georgia,serif;
	font-size:12px;
	text-align:left;
	color:#656565;

	/* Using CSS3 multiple backgrounds and a fallback */
	
	background: #fff url('img/select_slice.png') no-repeat;
  background-position: right -204px;
	
	cursor:pointer;
	font-weight:normal;
}

.tzSelect .selectBox span{
  float: left;
  width: 90%;
  margin-left: 5px;
  -moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	font-weight:normal;
}

.tzSelect .selectBox:hover,
.tzSelect .selectBox.expanded{
	background-position: right -238px;
}

.tzSelect .dropDown{
	position:absolute;
	top:40px;
	left:0;
	width:100%;
	border:1px solid #32333b;
	list-style:none;
	z-index:1000;
	
	-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;
}

.tzSelect li{
	background-color:#FFF;
	cursor:pointer;
	padding:6px;
	text-align:center;
}

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


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


.tzSelect .hasDetails{
	border-width: 0 1px 1px;
  margin: 0px 0 0 -1px;
  border: 1px solid #656565;
  width: 293px;
  max-height: 250px;
  overflow: auto;
}

.tzSelect .hasDetails li{
	min-height: 22px;
  position: relative;
  padding: 5px 5px 0 5px;
  text-align: left;
  font-family: Georgia,serif;
  color: #656565;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  border-bottom:1px solid #efefef;
}

.tzSelect .hasDetails li:last-child{
  border-bottom:0;
}

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

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

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

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