div.suggestions {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid ButtonShadow;    
    background-color: Window;
    position: absolute;   
	/*overflow: -moz-scrollbars-vertical;	
	overflow-x: hidden;
	overflow-y: scroll;    
*/
	overflow: auto;
	margin-left: 1px;
	/* Hide the suggestions list behind the rest of the page elements by default */	
	z-index: -900;
	display: none;	
	top: 0px;
	left: 0px;
}

iframe.suggestions 
{
	/* Hide the iframe behind the rest of the page elements by default */
	z-index: -1000;
	position: absolute;
	border: none;
	display: none;
	
	/* Equal to the margin-left of the suggestions div */
	margin-left: 1px;
	
	/* Equal to twice the width of the suggestion div border */
	padding-bottom: 2px;
	padding-right: 2px;	
}

div.suggestions div {
    cursor: default;
    padding: 0px 3px;
    font-size: 1.1em;  
    color:#333333;  
}

div.suggestions div span
{
	color: #554433;
	/*font-style:italic;*/
}

div.suggestions div.current {
    background-color: Highlight;
    color: HighlightText;
}
div.suggestions div.current span 
{
	color: HighlightText;
}

/* Safari 3.0 does not propertly support HighlightText */
@media screen and (-webkit-min-device-pixel-ratio:0) {

	div.suggestions div.current {
		background-color: #E4DED0;
		color: #000000;
	}
	div.suggestions div.current span 
	{
		color: #000000;
	}
}

div.suggestions div.separator
{
	height: 1px;
	margin: 0px;
	margin: 0px; 
}

/* Add a margin to the separator on IE7 */
*:first-child+html div.separator 
{ 
	margin-bottom: 8px;
}

div.suggestions div.separator hr
{
	color: #E4DED0;
	background-color:#E4DED0;
	height:1px;
	border:none;
}
