/* CSS Document */

/* Hi Vince: Organize your style sheet by sections like this:
1) Body, HTML tag, font declarations and things that will be reused
2) styles for ID's of individual table cells & divs in order from top to bottom
3) Put anything controlling rollovers or active/hover states in another section
4) Styles for individual images, etc, misc
Seperate each section with some kind of comment like this */

body, html {
	margin: 0px;
	height: 100%;
	width: 100%; /* Will make your content fill to fit the entire browser window */
	background-color: #000000; /* Sets the background color for every page */
}

table, td, img {
	border: none;
	marginleft: auto;
	marginright: auto;
	background-color: #ffd666;
}

td {
	vertical-align: top;
}

p {
	margin-left: 10px;
	margin-right: 10px;
	font-family: Arial, Helvetica, sans-serif;
 	color: #000000;
	font-size: 12px;
	text-align: left;
}

/* Sections */

#container {
	width: 600px;
	height: 300px;
	align: center;
}

#logo {
	background-color: #6ebee7;
}

#navigationrow {
	background-color: #996600;
	width: 600px;
	height: 25px;
	vertical-align: middle;
}

#content {
	margin-top: 10px; /* this is the amount of space between the nav row and your content */
}

/* Hover States */

.navlink {
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
}

.navlink:hover {
	color: #339900;
}

.spacer {
	margin-right: 20px; /* Use This To Control Amount Of Space Between Nav Links */
}
