/* the horizontal menu starts here */
div#listmenu {
    position: absolute;
	left: 350px;
		top: 75px;
		width: 580px;
	height: 20px;		
	padding: 0 0 0 0px;	
	border: 0px;
	border-top:0px solid white;	/* draws line on top edge of div */
	border-bottom:0px solid white;	 /* draws line on bottom edge of div */
	font-size: 10px;	
	}
div#listmenu ul {margin:0 0 0 0px;/* indents ul from edge of container */
    padding: 5px;
    }
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	list-style-type:none;	/* removes the bullet off each list item */
	border-right:0px solid #069; /* creates dividing lines between the li elements */
	}
div#listmenu li:first-child {
	border-left:0px solid #069; /*the first vertical line on the menu */
	}
div#listmenu li:hover { 
	background-color:#2ee63b; /*sets the background of the menu items */
	}
div#listmenu a {
	padding: 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color: white;	/* sets the type color */
	}
div#listmenu a:hover {
	color: red;
	}
/* the horizontal menu ends here */