/*
 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
{
	z-index:9999;
    left: -9999px;
}

/*==================================
 red curvy example
 ====================================*/
ul.newList *
{
    margin: 0;
    padding: 0;
	z-index: 9999;
}

ul.newList
{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #333333;
    background: #fff;
    position: absolute;
    border: 1px solid #333333;
    top: 22px;
    left: 0;
	overflow: auto;
	max-height: 300px;
	z-index: 9999;
}

.newListSelected
{
	margin: 0 5px;
    
    color: #333333;
    padding: 5px 0 0 10px;
    float: left;
	cursor: pointer !important;
	z-index: 1000;
	cursor: default;
    background: url(../img/gfx_selectArrow01.png) white right no-repeat !important;
}

.Search01Form01 .newListSelected
{
	margin: 1px 5px;
    width: 110px;
    color: #333333;
    padding: 5px 0px 0 6px;
    float: left;
	cursor: pointer !important;
    background: url(../img/gfx_selectArrow01.png) white right no-repeat !important;
}

.Search01Form02 .newListSelected
{
	margin: 1px 5px;
    width: 225px;
    color: #333333;
    padding: 5px 0px 0 6px;
    float: left;
	cursor: pointer !important;
    background: url(../img/gfx_selectArrow01.png) white right no-repeat !important;
}

.newListSelected span
{
    display: block;
	white-space: nowrap;
}

ul.newList li
{
    padding: 5px 8px;
	white-space: nowrap;
	z-index: 9999;
}

.selectedTxt
{
    width: auto;
    overflow: hidden;
    height: 12px;
    padding: 0 25px 0 0;
	white-space:nowrap;
	margin: 0 0 4px 0;
}

.hiLite
{
	width: auto;
    background: #650101 !important;
    color: white !important;
}

.newListHover
{
    background: #ccc !important;
    color: r0 !important;
    cursor: default;
}

.newListSelHover, .newListSelFocus
{
    background-position: 0 -22px;
    cursor: default;
}

.newListOptionTitle
{
    font-weight: bold;
}

.newListOptionTitle ul
{
    margin: 3px 0 0;
}

.newListOptionTitle li
{
    font-weight: normal;
    border-left: 1px solid #ccc;
}
