/**
* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
* 
* Copyright (c) 2009 Scott Darby
* 
* Requires: jQuery 1.3 or newer
* 
* Dual licensed under the MIT and GPL licenses.
*/

/**
* Hide lists on page load
---------------------------------------------------------*/

.stylish-select .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	width:330px;
	position:absolute;
	top:32px!important;
	left:0;
	z-index:2;
}

.stylish-select ul.newList {
	margin:0!important;
	padding:1px!important;
	list-style: none!important;
	color:#552a0b;
	background:#e2daba;
	border:1px solid #552a0b;
	overflow:auto;
	
	 border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.stylish-select ul.newList * {
	margin:0!important;
	padding:0!important;
}


.stylish-select ul.newList li {
	background: none!important;
}

.stylish-select ul.newList a {	
	text-decoration:none!important;
	display:block;
	padding:5px 15px!important;
	
	font-family: Arial;
  font-size:  14px;
  font-weight: bold;
  color: #552a0b!important;
}

.stylish-select .newListSelected {
	width:330px;
	color:#552a0b;
	height:31px;
	padding:0;
	float:left;
	background:url('../img/frontend/bg_select.png') no-repeat;
	
	margin: 9px 0 0 11px;
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	width:258px;
	overflow:hidden;
	height:16px;
	padding: 8px 57px 7px 15px;
	
	font-family: Arial;
  font-size:  14px;
  font-weight: bold;
  color: #552a0b;
}

.stylish-select ul.newList .hiLite {
	background:#552a0b!important;
	color:#e1e0e0!important;
}

.stylish-select ul.newList .newListHover {
	background:#efd563!important;
	color:#552a0b!important;
	cursor:default;
}

.stylish-select .newListDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListItemDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListOptionDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {
	/*background-position:0 -22px;
	cursor:default;*/
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
}