div.combo {
    position:relative;
    left: 0px;
    top: 0px;
}

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

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

/*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;
}

/*"drop-up" list wrapper*/
.combo div.list-wrapper-up {}

/*dropdown list*/
.combo ul {}

/*dropdown list item*/
.combo  li {
    height: 20px;
}

/*active (hovered) list item*/
.combo li.active {}

.combo .visible {
    display: block;
}

.combo .invisible {
    display: none;
}

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

div.default {
    white-space: nowrap;
    height: 21px;
    border: 0;
    margin: 0;
    padding: 0;
    width: 146px;
}

div.default input {
    margin: 0 0 0 0;
    font:normal 11px Arial,Helvetica,sans-serif;
	color:#676767;
    padding:1px 3px 0 7px;
	background:url("http://commoncdn.entrata.com/images/property_display/limited/form_elements/input/input_left.gif") no-repeat scroll left top transparent;
    border:0px;
    height: 22px;
    line-height:18px;
    vertical-align:middle; 
    left: 0px;
    top: 0px; 
    width: 138px;
	z-index:1;
}

div.default div.icon {
    width:31px;
    height:21px;
    border: 0;
    background:transparent url("http://commoncdn.entrata.com/images/property_display/limited/form_elements/select_right.gif") no-repeat 0 0;
    cursor:pointer;
    top:0px;
    left: 128px;
	z-index:0;
}

div.default div.list-wrapper {
    left: 0px;
    top: 21px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    width: 158px;
    bottom: auto;
}

div.default div.list-wrapper-up {
    top: auto;
    bottom: 21px;
}

div.default ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 200px;
}


div.default  li {
    padding: 0;
    padding-left: 5px;
    font:normal 11px Arial,Helvetica,sans-serif;
	color:#676767;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;
}

div.default li.active {
    background-color: rgb(223, 232, 246);
}

/*for IE*/
div.default a, div.default a:visited, div.default a:active {
    display: block;
	width: 100%;
	width: 146px;
	text-decoration: none;
    font:normal 14px  tahoma, arial, helvetica, sans-serif;
	color: #000000;
    cursor: pointer;
    margin: 0;	
	height: 20px;
}

div.default input.empty {
    color: gray;
}

a.to-highlight:hover {
    background-color: rgb(223, 232, 246);
}