﻿/*AutoComplete flyout */

.autocomplete_completionListElement 
{  
	margin : 0px!important;
	background-color : white;
	color : windowtext;
	border : buttonshadow;
	border-color: #e2e3ea;
	border-width : 1px;
	border-style : solid;
	cursor : pointer;
	overflow : auto;
	height : 200px;
    text-align : left; 
    list-style-type : none;
    font-family: Arial;
    font-size: 11px;
    padding: 0px;
    width: auto;
    float: left;
    position:absolute;
    list-style: none;
}

/* AutoComplete highlighted item */

.autocomplete_highlightedListItem
{
	background-color: #ffff99;
	color: black;
	padding: 1px;
	padding-left:20px;
}

/* AutoComplete item */

.autocomplete_listItem 
{
	color : windowtext;
	padding : 1px;
	padding-left:20px;
}