<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
#NAVBAR{
    list-style-type:none;
    margin:auto;
    padding:0;
    }   
#NAVBAR li{/*Top Level of Nav Bar*/
	color: black;
    float:left;
	list-style: none;
    padding-right:8px;
	background-color:white;
    }   
#NAVBAR a  {/*All links in Nav Bar*/
    display:block;
    width:85px;
    font-size:15px;
	color:black;
	font-weight:bold;
    }
#NAVBAR a:hover{
	color:white;
	background-color:red;
}
#NAVBAR li a {
	display: block;
	padding: 3px 8px;
	text-decoration: none;
		}
#NAVBAR li ul { /*Drop down menus*/
	display: none; 
	width: 7em; /* Width to help Opera out */
	background-color:white;
	}
#NAVBAR li:hover ul {/*Drop down menu spacing*/
	display: block;
	position: absolute;
	margin: 0;/*Space Between Top level and Drop down*/
	padding: 1px;/*Space Between Drop down links and Menu border*/
	}
#NAVBAR li:hover li {
	float: none; }
#NAVBAR li:hover li a {
	background-color:red;
	border-bottom: 1px solid #fff;
	color: white; }
#NAVBAR li li a:hover {
	background-color: #8db3ff;
	}