/*wrapper of all elements*/
div.combo {
    position:relative;
    left: 0px;
    top: 0px;
    white-space: nowrap;
    height: 18px;
    border: 0;
    margin: 0;
    padding: 0;   
}


/*text input*/
.combo input {
    position: absolute;

    margin: 0 0 0 0;
    padding:1px 3px;
    border:1px solid #809EB8;
    height: 16px;
    line-height:16px;
    vertical-align:middle; 
    left: 0px;
    top: 0px;     
}


/*icon*/
.combo div.icon {
    position:absolute;

    width:15px;
    height:18px;
    border: 0;
    background:transparent url(c_images/DropArrow.gif) no-repeat 0 0em;
    cursor:pointer;
    border-bottom: 1px solid #809EB8;
    border-top: 1px solid #809EB8;
    border-right: 1px solid #809EB8;
    top:0px;    
}


/*list wrapper*/
.combo div.list-wrapper {
    position: absolute;
    overflow: hidden;
    /*we should set height and max-height explicitly*/
    height: 200px; 
    max-height: 200px;
    /*should be always at the top*/
    z-index: 99999;
    text-align:left;

    left: 0px;
    top: 18px;
    border-top: 1px solid #ffffff;
    border: 1px solid #809EB8;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;    
    bottom: auto;
}

/*"drop-up" list wrapper*/
.combo div.list-wrapper-up 
{
    top: auto;
    bottom: 21px;

}

/*dropdown list*/
.combo ul 
{
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 200px;
	
}

/*dropdown list item*/
.combo  li {
    height: 20px;
    padding: 0;
    padding-left: 5px;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;

}

/*active (hovered) list item*/
.combo li.active 
{
	background-color: #809EB8;
	}


.combo .visible {
    display: block;
}

.combo .invisible {
    display: none;
}

/*used when emptyText config opt is set. Applied to text input*/
.combo input.empty 
{
  color: gray;
}




 
