/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.search_inactive{
	background:#ffffff;
	font-style: italic;
	font-size: 10px;
	color: #808080 !important;
	padding-top: 2px;
	height: 17px !important;
	padding-left: 5px;
	width: 162px !important;
}
/* on focus (when field is clicked on)  */
.search_active{
	background:#fff;
	color:#333;
}
/* with text (when field is inactive but contains user's input)  */
.search_text{
	border:2px #3c90a5 solid;
	background:#fff;
	color:#888;
}

.search_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#86BAC7;
	top:0;
	left:0;
}
.search_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
}
.search_suggestion li a{
	display:block;
	text-indent:5px;
	color:#fff;
	text-decoration: none;
}
.search_suggestion li.selected a{
	background:#3D91A5;
}

#searchSuggestion {
	margin-left:749px;
	margin-top:34px;
	position:absolute;
	z-index:99999;
}