/*
Stylish Select 0.3 - jQuery plugin to replace a select drop down box with a stylable unordered list
http://scottdarby.com/

Copyright (c) 2009 Scott Darby

Requires: jQuery 1.3

Licensed under the GPL license:
http://www.gnu.org/licenses/gpl.html
*/


/*==================================
remove default focus style
====================================*/
:focus
{
    outline: none;
}

.js ul.newList
{
    left: -9999px;
}

/*==================================
Custom Select box
====================================*/
ul.newList *
{
    margin: 0;
    padding: 0;
}
ul.newList
{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #191919;
    width: 247px;    
    background: #ECEAE6;
    position: absolute;
    border: 1px solid #fff;    
    top: 23px;
    left: 0;    
    overflow: auto;
    z-index: 9999;
}

.newListSelected
{
    width: 239px;
    height:17px;
    float:left;
    color: #FFF; 
    font-size: 0.687em; /* 11px */  
    padding: 2px 0px 1px 8px;
    background-image: url(/images/bg_selectbox.gif);
    background-position: 0px 0px;
    background-repeat:no-repeat;
    display:inline-block;
}

ul.newList li
{
    padding: 3px 8px;
    font-size:1em;
}
.selectedTxt
{
    width: 239px;
    overflow: hidden;
    height: 16px;
    padding: 0px;
}

.hiLite
{
    background: #78C0DE/*0065A48*/ !important;
    color: #fff !important;
}
.newListHover
{
    background: #ffffff !important;
    color: #191919 !important;
    cursor: default;
}

.newListSelHover, .newListSelFocus
{
    cursor: default;
}

#horizontal_form ul.newList
{
    width:179px;
}

#horizontal_form .newListSelected
{
    width:171px;
    background-image: url(/images/bg_selectbox_medium.gif);
}

#horizontal_form .selectedTxt
{
    width: 171px;
    overflow: hidden;
    height: 22px;
    padding: 0px 0px 0px 0px;
}

#footer_horizontal_form .newListSelected
{
    background-image: url(/images/bg_selectbox_small_home.gif);
    width:168px;
}

#footer_horizontal_form ul.newList, #footer_horizontal_form .newListSelected,  #footer_horizontal_form .selectedTxt
{
    width:168px;
}
