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


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


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


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

/*dropdown list*/
#search_tab_content #ANY_searchForm .combo ul {}

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

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


#search_tab_content #ANY_searchForm .combo .visible {
    display: block;
}

#search_tab_content #ANY_searchForm .combo .invisible {
    display: none;
}

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

/* my skin to this plugin */
#search_tab_content #ANY_searchForm div.custom {
    white-space: nowrap;
    height: 21px;
    border: 0;
    margin: 0;
    padding: 0;
    width: 60px;
    float: left;
    position: relative; 
    left: 8px; 
    top: 3px;
}

#search_tab_content #ANY_searchForm div.custom input {
    margin: 0 0 0 0;
    font:normal 12px tahoma, arial, helvetica, sans-serif;
    padding:1px 3px;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #B5B8C8;
    height: 18px;
    line-height:18px;
    vertical-align:middle; 
    left: 0px;
    top: 0px; 
    width: 40px;  
}

#search_tab_content #ANY_searchForm div.custom div.icon {
    width:13px;
    height:16px;
    border-width: 1px 1px 1px 0;
    background:transparent url(../images/trigger.gif) no-repeat 0 0;
    cursor:pointer;
    border-style: solid;
    border-color: #B5B8C8;
    top:0px;
    left: 40px; 
}


#search_tab_content #ANY_searchForm div.custom div.list-wrapper {
    left: 0px;
    top: 21px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    width: 54px;
    bottom: auto;
}

#search_tab_content #ANY_searchForm div.custom div.list-wrapper-up {
    top: auto;
    bottom: 21px;
}

#search_tab_content #ANY_searchForm div.custom ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 200px;
}


#search_tab_content #ANY_searchForm div.custom  li {
    padding: 0;
    padding-left: 2px;
    font:normal 14px tahoma, arial, helvetica, sans-serif;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;
}

#search_tab_content #ANY_searchForm div.custom li.active {
    background-color: rgb(223, 232, 246);
}

/*for IE*/
#search_tab_content #ANY_searchForm div.custom a, div.custom a:visited, div.custom a:active {
    display: block;
	width: 100%;
	width: 54px;
	text-decoration: none;
    font:normal 14px  tahoma, arial, helvetica, sans-serif;
	color: #000000;
    cursor: pointer;
    margin: 0;	
	height: 20px;
}

#search_tab_content #ANY_searchForm div.custom input.empty {
    color: gray;
}

#search_tab_content #ANY_searchForm a.to-highlight:hover {
    background-color: rgb(223, 232, 246);
}

#search_tab_content #ANY_searchForm input.error + input + div.icon {
	border-color: red;
}

#search_tab_content #ANY_searchForm div.custom input.error {
	border-color: red;
}

#search_tab_content #ANY_searchForm div.custom input {
	height: 14px;
}