/* Apply CSS to any UL (Unorderd List) with the class name 'menu' */
.menu
{
	border: 1px solid black;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	width: 200px;
}
/* Collapse the List Item Tags */
.menu li { display: inline; }

/* Make the links block elements and give them padding and some style */
.menu a, .menu a:visited
{
	color:  black;
	font: bold 11px Verdana;
	text-decoration: none;
	background-color: #ffe;
	display: block;
	padding: 2px;
	border-left	: 10px solid #ffe;
}

/* Specify the rollover style for the links */
.menu a:hover
{
	border-left	: 10px solid red;
	background-color: yellow;
	color: red;
}
