/* suggest */
* html .ui-autocomplete {
    width:1px;
}
.ui-autocomplete {
    position:absolute;	/* Never change this one */
    /*width:250px;	/* Width of box */
    /*height:220px;	 Height of box */
    /*height:210px;	/* Height of box */
    overflow:hidden;/* Scrolling features */
    border:1px solid #000;	/* Dark green border */
    border-top:none;
    background-color:#eee;	/* White background color */

    opacity: .9;
    filter: alpha(opacity=90);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";

    text-align:left;
    font-size:12px;
    z-index:100;
}
.ui-menu-item {	/* General rule for both .optionDiv and .optionDivSelected */
    margin:0px;
    padding:0px;
}
.ui-menu-item a {
    text-decoration: none;
    display: block;
    padding: 2px .4em;
    font-size:12px;
    font-weight:normal;
    color:#666;
    cursor:pointer;
}
.ui-state-focus { /* Selected item in the list */
    background-color:#bbb;
    color:#000;
}
.ui-helper-hidden-accessible
{
    display: none;
}