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

.tzSelect{

	/* This is the container of the new select element */

	height:34px;
	display:inline-block;
	min-width:200px;
	position:relative;
	margin:5px;
    width: 250px!important;

	/* Preloading the background image for the dropdown */
	background:url("../images/edit/dropdown_slice.png") no-repeat -99999px;
}

.tzSelect .selectBox{
	position:absolute;

	height:100%;
	width:100%;

	/* Font settings */

	font:13px/34px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align:center;
	text-shadow:1px 1px 0 #EEEEEE;
	color:#666666;

	/* Using CSS3 multiple backgrounds and a fallback */

	background:url('../images/edit/select_slice.png') repeat-x #ddd;
	background-image:url('../images/edit/select_slice.png'),url('../images/edit/select_slice.png'),url('../images/edit/select_slice.png'),url('../images/edit/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:#2c5667;
	text-shadow:1px 1px 0 #9bc2d0;
}

.tzSelect .dropDown{
    padding-left: 0px;
	position:absolute;
	top:40px;
	left:0;
	width:200%;
	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:#222;
	cursor:pointer;
	padding:6px;
	text-align:center;
}

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


/*-----------------------------------------------------
*	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;
    width: 50%;
    float: left;

	/* Again, using CSS3 multiple backgrounds with a fallback */
    background-color: #fff;
    border: 1px solid #333;
	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: 126px;
    position: absolute;
    top: 27px;
    width: 50%;
}

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

.tzSelect .hasDetails li img{
    left: 5px;
    position: absolute;
    top: 13px;
    width: 46%;
}
