/*
---

description: A plugin for enabling autocomplete of a text input or textarea.

authors:
 - Fábio Miranda Costa

license: MIT-style license

...
*/

.ma-container{
	color: #000;
	border: 1px solid #333;
	background-color: #fff;
	position: absolute;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	/*newdata*/
	z-index: 400; /*altrimenti ho problemi quando è interno a un mavDialog (che ha z-index = 300)*/
	/*newdata*/
	
}
.ma-container ul{
	list-style: none;
	overflow: hidden;
	width: 100%;
	   margin:0; /*newdata: aggiunto*/
	   padding:0; /*newdata: aggiunto*/
}
.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: #921506 !important;
}
.ma-container .ma-odd{
}
.ma-container .ma-even{
	background-color: #efefef;
}
.ma-loading{
	background-color: #fafba4;
}
.ma-selected{
	background-color: #ccfda8;
}