/* Apply CSS to any UL (Unorderd List) with the class name 'menu' */
.menu
{
	border: 0px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	width: 175px;
}
/* Collapse the List Item Tags */
.menu li { display: inline; }

/* VISITED */
.menu a, .menu a:visited
{
	color:  #ffffff;
	text-decoration: none;
	background-color: #333333;
	display: block;
	padding: 0px;
	border-style: none; border-top-width: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 1px
; font-family: Arial, Helvetica, sans-serif
}

/* Specify the rollover style for the links */
.menu a:hover
{
	color:  #333333;
	text-decoration: none;
	background-color: #ffffff;
	display: block;
	padding: 0px;
	border-style: solid; border-top-width: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 1px
; font-family: Arial, Helvetica, sans-serif
}
