@charset "utf-8";
/*	These styles turn the UL into a menu */

#quickLinks {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}
/*	Remove UL margins, padding and image */
#quickLinks ul {
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
}
/* Set the anchors to block elements, remove link underline and set line height */
#quickLinks ul a {
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	text-decoration: none;
	display: block;
	min-height: 2em;
	/* IE6 height = min-heigh hack */
	height:auto!important;
	height: 2em;
	/* end hack */
	line-height: 2em;
	padding-left: 12px;
	padding-right: 10px;
}
/*	Create the hover effect */
#quickLinks ul a:hover {
	color: #FFFFFF;
	background-color: #000000;
}