/**
 * Auto Complete
 * June 5, 2009
 * Corey Hart @ http://www.codenothing.com
 *
 * Auto Complete takes input from the user and runs a check through PHP to find what the user
 * is looking for. This test case runs a limited search on words that begin with the letter 'a'.
 */ 
#auto-complete {
	width: 100%;
	float: left;
}



#auto-complete ul {
	position: relative;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 100;
	width: 111px;
	background-color: #fff;
	overflow: auto;
	overflow-x: hidden;
	font-size: 11px;
	font-weight: bold;
	color: #999;
	max-height: 600px;
}

#auto-complete .searchRes {
	list-style-type: none;
	padding: 5px 5px 5px 20px;
	cursor: pointer;
	clear: both;
	padding-right: 15px;
	text-align: right;
}



#auto-complete .searchCat {
	list-style-type: none;
	margin: 0px;
	padding: 10px;
	clear: both;
	font-weight: bold;
	
}

#auto-complete .fieldName {
	color: #B1B1B1 !important;
}

#auto-complete .res {
	color: red;
}

#auto-complete .searchHeader {
	color: #000000;
}


#auto-complete .mainValue {
	font-size: 13px;
}

#auto-complete .mainValue:hover {
	text-decoration: underline;
}

#auto-complete .field {
	margin-top: 10px;
	margin-left: 20px;
}

#auto-complete .fieldName {
	color: #000000;
}

#auto-complete li.select .fieldName {
	color: #FFFFFF;
}

#auto-complete .searchRes.select {
	background-color: #2D0606;
	color: white;
}

#auto-complete input { 
	color: #AAA;
}
