/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.1
*/

/* styles for entire widget */ 
#hd-search .yui-ac {
	position:relative;
	font-size:100%; 
}

/* styles for input field */ 
#hd-search .yui-ac-input {

}

/* styles for results container */ 
#hd-search .yui-ac-container {
	position: absolute;
	/*
	top: 1.6em;
	width: 100%;
	*/
}

/* styles for header/body/footer wrapper within container */ 
#hd-search .yui-ac-content {
	position: absolute;
	width: 80%;
	border: 1px solid #BFBFBB;
	background: white;
	overflow: hidden;
	z-index: 9050;
	padding: 4px;
}

/* styles for container shadow */ 
#hd-search .yui-ac-shadow {
	position: absolute;
	margin: .3em;
	width: 100%;
	background: #000;
	-moz-opacity: 0.10;
	opacity: .10;
	filter: alpha(opacity=10);
	z-index: 9049;
}

/* styles for results list */ 
#hd-search .yui-ac-content ul {
	margin: 0;
	padding: 0;
	width: 100%;	
}

/* styles for result item */ 
#hd-search .yui-ac-content li {
	margin: 0px;
	padding: 0px;
	cursor: default;
	list-style-type: none;	
	text-align: left;
	font-size: 10px;
}

/* styles for prehighlighted result item */ 
#hd-search .yui-ac-content li.yui-ac-prehighlight {
	background: #f5f5f5;
}

/* styles for highlighted result item */
#hd-search .yui-ac-content li.yui-ac-highlight {
	text-decoration: underline;
	cursor: pointer;
}