div#menu
{
/*	position:fixed;*/
	top:7em;
	z-index:100;
    width:14em;
    float:left;
}

ul.menu 
{
	list-style-type: none; /* remove the bullets */
	margin: 0; /* remove the automatic margin that some browsers use for the text-indent. */
	padding: 0; /* remove the automatic padding that other browsers use for the text-indent. */
	float: left;
	border-top: 1px white solid;
	border-left: 1px white solid;
	border-right: 1px black solid;
	border-bottom: 1px black solid;
    -webkit-box-shadow: 5px 5px 15px #111111;
    -moz-box-shadow: 5px 5px 15px #111111;
    box-shadow: 5px 5px 15px #111111;
}

ul.menu a, ul.menu a:visited, ul.menu a:active
{
	text-decoration:none; /* remove the default underline from the links */
	display:block; /* make each link into a block so that hovering over any area of the link will cause a change of background color */
	text-indent:5px; /* move the link text 5px to the right */
	color:#000; /* make the text color white */
	padding: 0.5em;
	height: 1.3em;
}

ul.menu li a:hover 
{
	background: url(/images/hover.png) repeat-x;
	background-color: #aaa;	
}

ul.menu li
{
	background: url(/images/menu.png) repeat-x;
	width:13em;
/*  font-size: 1.2em;*/
	background-color: #ddd;
}


