/**
* 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
---------------------------------------------------------*/


/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	position:absolute;
	top:34px!important;
	left:0;
	width: 96%;
	z-index:2;
	height:auto!important;
        background-color: #fff;
		border:2px solid #9e260e;
        -webkit-border-radius: 5px 5px 5px 5px;
            -moz-border-radius: 5px 5px 5px 5px;
            border-radius: 5px 5px 5px 5px;
            behavior: url(includes/PIE.htc);
}
.stylish-select ul.newList li{
    float: left !important;
    margin: 0 !important;
    width: 100% !important; }
.stylish-select ul.newList {
	margin:0;
	padding:0;
	height:auto!important;
	list-style:none;
	color:#000;
	overflow:auto;
        -webkit-border-radius: 0px 0px 5px 5px;
            -moz-border-radius: 0px 0px 5px 5px;
            border-radius: 0px 0px 5px 5px;
            position: relative;
            behavior: url(includes/PIE.htc);
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	color: #4c4c4c;
    font-family: 'arial';
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
	padding:7px 12px;
	float:left;
	width:100%;
	font-weight: bold!important;
	
	
}
.stylish-select ul.newList a:hover{
color: #4c4c4c;
background:#f1dbd6;
text-decoration:none;
border-top:2px solid #9e260e;
	border-bottom:2px solid #9e260e;
}

.stylish-select .newListSelected {
    background: url("../images/select-bg.png") no-repeat scroll 0 0 transparent;
    color: #f1dbd6;
    float: left;
    font-family: arial;
    font-size: 13px;
    font-weight: 400;
    height: 36px;
    line-height: 16px;
    margin: 0;
    padding: 7px 0 7px 10px;
    text-align: left;
    width: 74%;
	font-weight: bold!important;
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	color: #4c4c4c;
  font-family: arial;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
	font-weight: bold;
}

.stylish-select .hiLite {
	background:#f1dbd6;
	color:#4c4c4c!important;
       font: 13px!important;
        font-weight: bold!important;
        font-family: arial;
}

.stylish-select .newListHover {
	color: #5d5e5e;
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.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:url(../images/select-bg.png) no-repeat;
	cursor:pointer;
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
}
.first_select{
    clear: both;
    display: block;
}
