/* CSS Document */

.suggestions {
	z-index:10000;
	height:1px;
	}
	
.suggestions ul {
	margin: 0px;
	padding: 0px;
	height: 180px;
	overflow-x:hidden;
	overflow-y:auto;
	width:170px;
}



.suggestions li {

	width: 170px;
	position: relative;
	font-family: Arial;
	background-color: #333333;
	padding: 3px 2px;
	font-size: 11px;
	list-style-type: none;
	display:block;

}

.suggestions li a:hover {
	background-color: #3d3d3d;
	color: #FFF;
	display:block;
}

.suggestions a:link, .suggestions a:active, .suggestions a:visited {

	text-decoration: none;
	color: #6EADE7;

}

#links {

	position: absolute;
	left: 20px;
	top: 150px;
	z-index: -1;

}

