/**
* 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:100%;
    position:absolute;
    top:22px;
    left:0;
    z-index:99;
}
.select_box .SSContainerDivWrapper {
    margin:0;
    padding:0;
    width:158px;
    position:absolute;
    top:22px;
    left:0;
    z-index:2;
}
.bottom_form .SSContainerDivWrapper{
    width: 100px;
}
.stylish-select ul.newList {
    margin:0;
    padding:0;
    list-style:none;
    color:#000;
    background:#fff;
    border:1px solid #ccc;
    overflow:auto;
}

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


.stylish-select ul.newList a {
    color: #333;
    text-decoration:none;
    display:block;
    padding:3px 8px;
    font:12px/14px 'Helvetica65MediumRegular',Arial,Helvetica,sans-serif;
}
.select_box ul.newList a {
    text-transform: none !important;
    color: #777;
    font: 12px/14px 'Helvetica65MediumRegular',Arial,Helvetica,sans-serif;
    text-decoration:none;
    width: 142px;
    padding:3px 8px;
}
.select_box ul.newList li {
    padding: 0 !important;
}
.stylish-select .newListSelected {
    width:304px;
    color:#000;
    height:30px;
    padding:0px 0 0 5px;
    float:left;
	background:url(../images/select-arrow.png) no-repeat right 12px;
}


.select_box .newListSelected {
    width:154px;
    color:#000;
    height:30px;
    padding:0 0 0 6px;
    float:left;
    background: url(../images/select_bg01.gif) no-repeat;
}

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

.stylish-select .selectedTxt {
    width:282px;
    overflow:hidden;
    height:22px;
    color: #333;
    font: 12px/14px 'Helvetica65MediumRegular',Arial,Helvetica,sans-serif;
    padding:9px 23px 0 0;
}
.select_box .selectedTxt {
    width:130px;
    overflow:hidden;
    height:32px;
    color: #777;
    font: 12px/14px 'Helvetica65MediumRegular',Arial,Helvetica,sans-serif;
    padding:8px 23px 0 0;
}
.bottom_form .selectedTxt{
    width: 70px;
}
.stylish-select .hiLite {
    background:#666!important;
    color:#fff!important;
 text-shadow:1px 1px 2px #333; -moz-text-shadow:1px 1px 2px #333; -webkit-text-shadow:1px 1px 2px #000; -o-text-shadow:1px 1px 2px #000;
}


.stylish-select a:hover.hiLite{
	background:#666!important;
	color:#fff!important;
	}
	
.stylish-select .newListHover {
    background:#ccc!important;
    color:#000!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;
}