/* GregoryHurcomb.com MAIN CSS */

/* Main Layout */

body {
	text-align: center;
  	background: #000;
  	font-size: 0.75em;
	  font: arial, helvetica, verdana;
		font-weight: bold;
}

a:link		{color:#aaa;}
a:visited	{color:#aaa;}
a:hover		{color:#ccc;}
a:active	{color:#000;background-color:#ccc;}

#logo {
	width: 500px;
	height: 57px;
	margin: 30% 0 0 25%;
	border: 0; 
}

#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
line-height: 2;
}

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

#nav li { /* all list items */
float: left;
width: 8.25em; /* width needed or else Opera goes nuts */
}

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

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

#content {
clear: left;
color: #ccc;
}
