/*-- Common Style ----------------------- */
.autocomplete{
    cursor: pointer;
    border: 1px solid #999;
	font-family:  Verdana, Arial, Helvetica, Sans-Serif;
	color: #000;
}
/*items da listagem | items of the list*/
.autocomplete .normal
{
	border-top: 1px solid #999;
	padding:5px;
	background: #eee;
	text-align:left;
 }
/*selectedionado item | selected item*/
.autocomplete .selected{background: #ddf;}
/*caracteres que combinaram | characters that matched*/
.autocomplete .highlited
{
	font-weight: bold; 
	color: #008;
	
}

select, textarea, input{
	border: 1px solid #999;
	margin: 4px;
}
select:focus, select:hover, textarea:focus, textarea:hover, input:hover, input:focus{
	background: #eee;
}
