/**
	sexy-combo 2.1.3 : http://code.google.com/p/sexy-combo/
	
	This is the base structure, a skin css file is also needed
*/


/*text input*/
.combo input {
    position: absolute;
}


/*icon*/
.combo div.icon {
    position:absolute;
    display: none; }


/*list wrapper*/
.combo div.list-wrapper {
    position: absolute;
    overflow: hidden;
    /*we should set height and max-height explicitly*/
    height: 2000px;
    max-height: 2000px;
    /*should be always at the top*/
    z-index: 99999; }

/*dropdown list item*/
.combo  li { height: 17px; }

.combo .visible { display: block; }

.combo .invisible { display: none; }





/**
	sexy-combo 2.1.3 : http://code.google.com/p/sexy-combo/

	This is the default skin.
*/

div.sexy {
    white-space: nowrap;
    height: 21px;
    border: 0;
    margin: 0;
    padding: 0;
    width: 146px; 
}

div.sexy input {
    margin: 0 0 0 0;
    padding: 1px 10px;
    background: transparent url(../img/combo-bg.png) repeat-x 0 0;
    border: 0;
    height: 18px;
    line-height:18px;
    vertical-align:middle;
    left: 0px;
    top: 0px;
    width: 127px;
    font-size: 1.09em;
    font-weight: bold;
    color: #78797b; }
div.sexy input:focus { outline: none; }


div.sexy div.icon {
    width:17px;
    height:21px;
    border: 0;
    cursor:pointer;
    border-bottom: 1px solid #B5B8C8;
    top:0px;
    left: 129px; }


div.sexy div.list-wrapper {
    left: 0px;
    top: 21px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    width: 146px;
    bottom: auto; }

div.sexy div.list-wrapper-up {
    top: auto;
    bottom: 21px; }

div.sexy ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* height: 200px; */

    position:relative;
    z-index: 1000; 
}


div.sexy  li {
    position:relative;
    z-index: 1000;
    padding: 3px 0 0 10px;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0; 
}

div.sexy li.active {
    background-color: rgb(223, 232, 246);
}

/*for IE*/
div.sexy a, div.sexy a:visited, div.sexy a:active {
    display: block;
	width: 100%;
	width: 146px;
	text-decoration: none;
	color: #000000;
    cursor: pointer;
    margin: 0;
	height: 20px; }

div.sexy input.empty { color: gray; }

a.to-highlight:hover { background-color: rgb(223, 232, 246); }
 

