/* CSS for the autocomplete search menu */

#autoCompleteMenu {
    position: absolute;
    display: none;
    width: 300px;
    overflow: auto;
}

#autoCompleteMenuBk {
    z-index: 500000;
    position: relative;
    width: 296px;
    padding:2px;
    background-color: black;
    /* Set transparancy for all browsers */
    filter:alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    /* END Set transparancy for all browsers */
   
}

#autoCompleteItemCont {
    width:294px;
    margin:0 auto 0 auto;
    z-index:500001;
}

#autoCompleteItemCont li {
    font-size:11px;
    font-weight: bold;
    color:white;
    margin-left:20px;
    padding:2px;
    margin:2px;
    list-style: none;
    z-index: 30001;
    filter:alpha(opacity=100);
    -moz-opacity:1.0;
    -khtml-opacity: 1.0;
    opacity: 1.0;
}

#autoCompleteItemCont a {
    text-decoration: none;
    font-weight: bold;
    color:white;
}

#autoCompleteItemCont li:hover {
    background-color: #d08032;
    /* Set transparancy for all browsers */
    z-index: 30001;
    filter:alpha(opacity=100);
    -moz-opacity:1.0;
    -khtml-opacity: 1.0;
    opacity: 1.0;
    /* END Set transparancy for all browsers */
}
