﻿/*AutoComplete flyout */

.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 : 75px;
    text-align : left; 
    list-style-type : none;
    font-weight: normal;
    padding: 0;
    width: 200px!important;
}

/* AutoComplete highlighted item */

.autocomplete_highlightedListItem
{
	font-weight: bold;
	background-color: #D7EBFF;
	color: black;
	padding: 1px;
	cursor: pointer;
}

/* AutoComplete item */

.autocomplete_listItem 
{
	background-color : window;
	color : windowtext;
	padding : 1px;
}