/**
* 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:290px;
    position:absolute;
    top:22px;
    left:0;
    z-index:2;
}

.stylish-select ul.newList {
    margin:0;
    width: 100%;
    float: left;
    padding:0;
    list-style:none;
    color:#000;
    background:#e8e8e8!important;
    overflow:auto;
    z-index: 9999;
}

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


.stylish-select ul.newList a {
    color: #000;
    text-decoration:none;
    display:block;
    padding:3px 8px;
}

.stylish-select .newListSelected {
    width:285px;
    color:#000;
    height:19px;
    padding:3px 0 0 6px;
    float:left;
    background:url(../images/../images/select-bg.png) no-repeat;
}

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

.stylish-select .selectedTxt {
    width:258px;
    overflow:hidden;
    height:16px;
    padding:0 23px 0 0;
}

.stylish-select .hiLite {
    background:#650101!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;
}

/****************************************************************************************/
.stylish-select  .newListSelected{padding: 0 0 0 1%; margin: 0 0 0 1.5%; width: 11%; background: #fff; height: 40px; border: 1px solid #fff; z-index: 999;cursor: pointer; position: relative;}
.stylish-select  .newListSelHover {background-position: right 97% 13px;}
.stylish-select  .selectedTxt{font: 22px/40px 'Trebuchet MS'; color: #636363; height: 40px; padding: 0 23% 0 0; width: 77%;cursor: pointer; background: url(../images/down-arrow.gif) no-repeat 95% center;}
.stylish-select  .SSContainerDivWrapper{width: 100%; background: #e8e8e8!important; overflow: hidden;}
.stylish-select  .hiLite{background: #8399da !important; color: #fff !important;}
.stylish-select  .newListHover{background: #cbd3ea !important; color: #fff !important;}
.stylish-select  ul.newList li {width: 100%; padding: 0;}
.stylish-select  ul.newList a{font: 22px/40px 'Trebuchet MS'; color: #777777; width: 94%; float: left; padding: 3px 3%;}

/********************/
.stylish-select  .contactUs .newListSelected{padding: 0 0 0 2%; margin: 0; width: 70%; background: #fff; height: 25px; border: 1px solid #fff; z-index: 999;cursor: pointer; position: relative;}
.stylish-select  .contactUs .newListSelHover {background-position: right 97% 13px;}
.stylish-select  .contactUs .selectedTxt{font: 14px/25px 'Trebuchet MS'; color: #636363; height: 25px; padding: 0 23% 0 0; width: 77%;cursor: pointer; background: url(../images/down-arrow.gif) no-repeat 95% center;}
.stylish-select  .contactUs .SSContainerDivWrapper{width: 100%; background: #e8e8e8!important; overflow: hidden;}
.stylish-select  .contactUs .hiLite{background: #8399da !important; color: #fff !important;}
.stylish-select  .contactUs .newListHover{background: #cbd3ea !important; color: #fff !important;}
.stylish-select  .contactUs ul.newList li {width: 100%; padding: 0;}
.stylish-select  .contactUs ul.newList a{font: 14px/25px 'Trebuchet MS'; color: #777777; width: 94%; float: left; padding: 3px 3%;}





