/*
---

description: A plugin for enabling autocomplete of a text input or textarea.

authors:
 - Fábio Miranda Costa

license: MIT-style license

...
*/

.ma-container{
	border: 1px solid #ccc;
	background-color: #fff;
	position: absolute;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
}

.ma-container ul{
	padding:0px;
	margin:0px;
	list-style: none;
	overflow: hidden;
	width: 100%;
}

.ma-container li{
	padding: 2px 5px;
	line-height: 16px;
	cursor: pointer;
	float: left;
	width: 100%;
	overflow: hidden;
}

.ma-container .ma-hover{
	color: #fff;
	background-color: #2728A6 !important;
}

.ma-container .ma-odd{}

.ma-container .ma-even{
	background-color: #efefef;
}

.ma-loading{
	background-color: #fafba4;
}

.ma-selected{
	background-color: #ffffff;
}

