.wrapper{
	display:block;
	width:130px;
	margin-top:9px;
	margin-left:45px;
	margin-right:2px;

}
/*wrapper of all elements*/
.wrapper div.combo {
    position:relative;
    left: 0px;
    top: 0px;
}


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


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


/*list wrapper*/
.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*/
.wrapper .combo div.list-wrapper-up {}

/*dropdown list*/
.wrapper .combo ul {}

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

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


.wrapper .combo .visible {
    display: block;
}

.wrapper .combo .invisible {
    display: none;
}

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

/* change are here */
div.custom {
    white-space: nowrap;
    height: 24px;
    border: 0;
    margin: 0;
    padding: 0;
    width: 146px;
}

div.custom input {
	background-position:right;
    margin: 0 0 0 0;
    font:normal 11px verdana;
	color:#999999;
    padding:3px 3px;
	padding-right:23px;
    border:0px;
    height: 16px;
    line-height: 20px;
    vertical-align:middle; 
    left: 0px;
    top: 0px; 
    width: 105px;  
}

div.custom div.icon {
    width:10px;
    height:5px;
    border: 0;
    background:transparent url(../style/5c_arrow_btm.gif) no-repeat;	
    cursor:pointer;
   /* border-bottom: 1px solid #B5B8C8;*/
    top:7px;
    left: 115px; 

}

div.custom div.list-wrapper {
    left: 0px;
    top: 24px;
    border: 1px solid #000000;
	border-top: 0;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    min-width: 95px;
    bottom: auto;
	padding-left:5px;
}
* html div.custom div.list-wrapper {
    min-width: 95px;
	width: auto;
	width: 95px;
}
div.custom div.list-wrapper-up {
    top: auto;
    bottom: 24px;
    border: 1px solid #000000;
	border-bottom: 0;	
}

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


div.custom  li {
	border:1px solid red;
    padding: 0;
    padding-left: 0px;
    font:normal 14px tahoma, arial, helvetica, sans-serif;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;
}

div.custom li.active {
    /*background-color: rgb(160, 169, 194);*/
}

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


 
