/* CSS Document */

/*This is the basic CSS for creating a horizontal navigation. */

#navcontainer ul {
list-style-tupe: none;
margin: 0;
padding: .2em;
}

#navcontainer ul li {
	list-style-tupe: none;
	display: inline; /* This (Block > Display > Inline) turns the navigation to horizontal. */
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}

#navcontainer ul li a {
	text-decoration: none;
	padding: .2em 1em; /*This pads the top and the bottom .2em and the left and right 1em, 
	respectively. */
	color:#CCCCCC;
	background-color:#003366;
}

#navcontainer ul li a:hover {
	color:#003366;
	background-color:#CCCCCC;
}

H2 { font-size: 24px; }
H3 { font-size: 20px; }
H4 { font-size: 16px; }
.I1 { margin-left:2%; }
.I2 { margin-left:4%; }
