body {
background-color: white;
}

p {
font-family: verdana;
font-size: 16px;
}

h1 {
color: grey;
}

h2 {
color: red;
}

h3 {
color: green;
}

h4 {
color: blue;
}

h5 {
color: brown;
}


#headerimage{
font-family: comic sans ms;
text-align: center;
margin-bottom: 0px;
margin-right: 0px;
border-style: none;
}

#topnav{
text-align: center;
margin-left: 20%
}

#leftsidebar{
text-align: left;
text-indent: 10px;
float: left;
margin-top: 0%;
margin-right: 1%;
margin-bottom: 50%;
border-style: groove;
background-color: white;
}

#rightsidebar{
text-align: left;
text-indent: 10px;
float: right;
margin-top: 0%;
margin-left: 1%;
margin-bottom: 50%;
border-style: groove;
background-color: white;
}

/* Comment here */


#maincontent{
text-align: left;
text-indent: 5px;
float: center;
margin-left: 25%;
margin-right: 25%;
/*margin-right: 27px;*/
margin-top: 0%;
margin-bottom: 10px;
border-style: dashed;
padding: 13px;
background-color: white;
}

#footer{
text-align: center;
margin-left: 0%;
background-color: white;
}


/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#nav {
font-weight: bold;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 230px;
	border-bottom: 1px solid #ccc;
	}
ul li {
	position: relative;
	}
li ul {
	position: absolute;
	left: 230px;
	top: 0;
	display: none;
	}
ul li a {
	display: block;
	text-decoration: none;
	color: green;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

li:hover ul, li.over ul { 
	display: block; }

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace»
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
