/* CSS Document */

/* A narrow horizontal container that centers its content */
#navigationblock {
background: #000000;
padding: 2px;
text-align: center;
}

/* "navigation ul" styles turn an UL into a horizontal navigational bar */
#navigationblock ul {
display: inline;
font-size: 12px;
margin: 0; /* removes indent IE and Opera */
padding: 0; /* removes indent Mozilla and NN7 */
} 

/* border-left adds a "|" seperator between links */
#navigationblock ul li {
border-left: 2px solid #cc9700;
display: inline; /* sets orientation across the containing element */
list-style: none; /* turns off display of bullet */
}

/* border-left removes the "|" seperator for the first link */
#navigationblock ul li.first {
border-left: none;
}

/* Adds padding and link color */
#navigationblock a {
color: #cc9700;
padding: 0.2em 0.5em;
}

/* Changes the background color when the link is hovered */
#navigationblock li a:hover {
background: #404040;
text-decoration: none;
}

body {
	background-color: #000000;
}

H1 {color: cc9700;}
H2 {color: cc9700;}
H3 {color: cc9700;}
H4 {color: cc9700;}
H5 {color: cc9700;}
H6 {color: cc9700;}

td, th {
	color: #cc9700;
}

A:link {color: ffff00}
A:active {color: white}
A:visited {color: b8860b}
