body { background: #222;
	font-family: arial, helvetica, serif;
}
#container
{
	color: silver;
	background-color: yellow;
	width: 765px;
	margin: auto;
}
#header
{
	top: 0;
	left: 0;
	background: teal;
}
#main
{
	padding: 0;
	font-size: 95%;
	line-height: 1.6em;
	clear: both;
}
#view
{
	float: left;
	background: green;
	width: 325px;
}
#maincontent
{
	float: right;
	background-color: orange;
	width: 440px;
	margin-left: 0px;
}
.comicsans {font-family:'Lucida Casual', 'Comic Sans MS';}
#nav
{
	background-color: #024;
	height: 3em;
}
#nav, #nav ul
{
	/* all lists */
	list-style: none;
	line-height: 1.5em;
	margin: auto;
}

#nav a {
	display: block;
	width: 30em;
}

#nav li
{
	/* all list items */
	float: left;
	width: 6em;
	/*width:120px; --- this was an error */
	/* width needed or else Opera goes nuts */

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: silver;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

h3{	color: #323;}
.copy {color: red}


