* html div.dropdown-list{
	height:     expression( this.scrollHeight > 250 -1 ? "250px" : "auto" );
}

div.dropdown-list{
    top:        0;
    left:       0;
	position:   absolute;
	border:     1px solid #bcb2b2;
	width:      200px;
	overflow:   auto;
	overflow-x: hidden;
	overflow-y: auto;
    max-height: 250px;
    background: white;
    outline:    none;
    background: white;
    padding:    10px;
    text-align: left;
    font-size:  14px;
	opacity: 0.97;
	-moz-opacity: 0.97;
    filter:alpha(opacity=97);
    z-index: 6000;
}

div.dropdown-list table{
	width:           100%;
	margin:          0;
	padding:         0;
	border-collapse: collapse;
	border-spacing:  0;
	empty-cells:     show;
}

	div.dropdown-list tr{
        cursor: pointer;
	}

	div.dropdown-list tr td{
	    font-size:     1em;
		padding:       3px 3px;
		border-bottom: 1px solid #ECECEC;

	}	

    div.dropdown-list tr td.checkbox{
        width:   20px;
		padding: 3px 0px;
    }

        div.dropdown-list tr td.checkbox input{

        }

        div.dropdown-list tr td span{
            display:  block;
    		margin:   2px 0px;        
		    padding:  2px;
        }

	    div.dropdown-list tr td span strong{
        	color:     #EE4611;
		    padding:   0px 1px;
		    font-size: 1.1em;
	    }	

	    div.dropdown-list tr.selected td{
		    background-color:      #F45D29;
		    color:                 white;		
	    }

	        div.dropdown-list tr.selected td strong{
            	color:   white;	
	        }

	    div.dropdown-list tr.highlighted td{
		    background-color:      #efebcd;
		    color:                 black;
	    }

	        div.dropdown-list tr.highlighted td strong{
            	color:   white;	
	        }





