﻿/*
	CSS for QuickSearch Control
*/

.QuickSearch_Container
{
	margin: 0px 0px 0px 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	width: 650px;
	padding: 1px 5px 1px 7px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.QuickSearch_Header
{
	background-image: url(../images/QuickSearch/q_header.gif);
}

.QuickSearch_Element
{
	background-image: url(../images/QuickSearch/side_lines.gif);
}

.QuickSearch_Footer
{
	background-image: url(../images/QuickSearch/q_footer.gif);
}

.QuickSearch_autocomplete_completionListElement 
{  
	visibility : hidden;
	margin : 0px!important;
	background-color : white;
	color : windowtext;
	border : buttonshadow;
	border-width : 1px;
	border-style : solid;
	cursor : 'default';
	overflow : auto;
	height : 200px;
    text-align : left; 
    list-style-type : none;
}

/* AutoComplete highlighted item */

.QuickSearch_autocomplete_highlightedListItem
{
	background-color: #ffff99;
	color: black;
	padding: 1px;
}

/* AutoComplete item */

.QuickSearch_autocomplete_listItem 
{
	background-color : window;
	color : windowtext;
	padding : 1px;
}
