/* AutoComplete List Styles */
    /* Container for the list options */
        .list
        {
            width: 150px;
            position: absolute;
            top: 19px;
		left: 0;
            border: 1px #CCC solid;
        }
        
        /* Hide link underline */
        .list a
        {
            text-decoration: none;
        }
        
    /* Normal Option */
        .listOption
        {
            background: #FFFFFF;
            color: #2a56b3;
            padding: 3px 0 3px 3px;
            font-family: verdana, sans-serif;
            font-size: 12px;
            cursor: default;
            width: 147px;
        }

    /* Hover Option */    
        .listOptionHighlighted
        {
            background: #e0ebfb;
            color: #2a56b3;
            padding: 3px 0 3px 3px;
            font-family: verdana, sans-serif;
            font-size: 12px;
            cursor: pointer;
            width: 147;
        }

/* Other control styles */
    /* Textbox style */
        .queryBox
        {
            position: inherit;
            border: 1px solid #CCC; 
			background: #fff url(../images/input.gif) repeat-x top left; 
			width: 150px;
        }
   
/* Container for the entire control */
    .autoCompleteWrapper
    {
        position: relative;
        display: inline;
    }