/* Elements */
ul, li, dt, dd{ 
	margin: 0;
	padding: 0;
}



input[type=text]:focus, textarea:focus{
	background: #E5E5E5;
	color:#000;
	cursor: text;
}

input[type="password"]:focus{
	background: #E5E5E5;
	color:#000;
	cursor: text;
}

label{
	cursor: pointer;
}





/* Search result suggestions */
#search-result-suggestions{
	position: absolute;
	left: 0;
	top: 0;
	width: 189px;
	background: #E5E5E5;
	border: 1px solid #484256;
	display: none;
	z-index: 3000;
	margin: 0;
	padding: 0;
	
}

#search-results ul{
	list-style: none;
	margin-bottom: 0;
}

#search-results a{
	display: block;
	margin: 0;
	padding: 2px 0;
	font: normal 7pt Verdana, Geneva, Arial, Helvetica, sans-serif;
	
}

#search-results a.selected{
	color: #FFF;
	background: #484256;
}

