/**
	sexy-combo 2.1.3 : http://code.google.com/p/sexy-combo/
	
	This is the base structure, a skin css file is also needed
*/

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


/*text input*/
.combo input {
    position: absolute;
    margin: 0 0 0 0;
    font:normal 12px tahoma, arial, helvetica, sans-serif;
    color:#444444;
    padding:1px 3px;
    background:#fff url(/inc3/css/sexy-combo/skins/custom/sexy-input-bg.jpg) repeat-x 0 0;
    border:1px solid #000000;
    height: 20px;
    line-height: 20px;
    vertical-align:middle; 
    left: 0px;
    top: 0px; 
    width: 187px;  
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
   /* behavior:url(/inc3/js/border-radius.htc);     */
}


div.custom_amarillo input {
    border: 1px solid #FFD300;
   /* background-color: #ffffff;  */
    background:#ffffff;
    height: 16px;  
  /*  behavior:url(/inc3/js/border-radius.htc); */
}

div.custom_blanco input {
    border: 1px solid #ffffff;
   /* background-color: #FFD300; */
    background:#FFD300 ;
    height: 16px;  
  /*  behavior:url(/inc3/js/border-radius.htc); */
}
    

/*icon*/
.combo div.icon {
    position:absolute;
    width:24px;
    height:20px;
    border: 0;
    background:transparent url(/inc3/css/sexy-combo/skins/custom/arrow.jpg) no-repeat 0 0;
    cursor:pointer;
    border-bottom: 1px solid #B5B8C8;
    top:0px;
    left: 170px; 
}

div.custom_amarillo div.icon {
    width:17px;
    height:18px;
    border: 0;
    background:transparent url(/inc3/css/sexy-combo/skins/custom/flecha_combo.gif) no-repeat 0 0;
    cursor:pointer;
    border: 1px solid #FFD300;
    top:0px;
    left: 170px;     
    -moz-border-radius-bottomright: 6px 6px;
     border-bottom-right-radius: 6px 6px;
     -moz-border-radius-topright: 6px 6px;
     border-top-right-radius: 6px 6px;
     behavior:url(/inc3/js/border-radius.htc); 
}
div.custom_blanco div.icon {
    width:17px;
    height:18px;
    border: 0;
    background:transparent url(/inc3/css/sexy-combo/skins/custom/flecha_combo.gif) no-repeat 0 0;
    cursor:pointer;
    border: 1px solid #ffffff;
    top:0px;
    left: 170px; 
    -moz-border-radius-bottomright: 6px 6px;
     border-bottom-right-radius: 6px 6px;
     -moz-border-radius-topright: 6px 6px;
     border-top-right-radius: 6px 6px;
     behavior:url(/inc3/js/border-radius.htc); 
}     

/*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;
    
    left: 0px;
    top: 24px;
    border: 1px solid #000000;
    border-top: 0;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    width: 205px;
    bottom: auto;
    
}

/*"drop-up" list wrapper*/
.combo div.list-wrapper-up {
    top: auto;
    bottom: 24px;
    border: 1px solid #000000;
    border-bottom: 0;  
}

/*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;
    font:normal 12px tahoma, arial, helvetica, sans-serif;
    color:#444444;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;
}

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


.combo .visible {
    display: block;
}

.combo .invisible {
    display: none;
}

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



            
                 