/* Things without padding */
body, #navigationBar ul, #navigationBar li a, 
.section, #content, #innerContent, #innerContent
{
	margin: 0px;
	padding: 0px;
}

body
{
	width: 100%;
	height: 100%;
	background: white;
	overflow: hidden;
	font-family: "Century Gothic", "Avant Garde", sans-serif;
	color: white;
	min-width: 800px;
}

#navigationBar
{
	position: absolute;
	z-index: 10;
	top: 0px;
	left: 0px;
	
	width: 100%;
	min-width: 1024px;
	
	height: 64px;
	color: white;

	overflow: hidden;
	margin: 0px;
	padding: 0px;
}

#navigationBar ul
{
	list-style: none;
	position: absolute;
	top: 24px;
	width: 100%;
}

#navigationBar li a
{
	float: right;
	text-decoration: none;
	color: #777777;
	display: block;
	text-align: center;
	width: 11em;
	font-size: 1em;
	font-variant: small-caps;
	top: 0px;
	position: relative;
}

#navigationBar li a:link, #navigationBar li a:active, #navigationBar li a:visited
{
	color: #777777;	
	font-weight: bold;
	border-bottom: 3px hidden #777777;
	height: 35px;
	line-height: 35px;
}

#navigationBar li a:hover
{
	color: white;
	font-weight: bold;
	height: 35px;
	line-height: 35px;
	
}

#navigationBar li a:hover#NewsLink
{
	border-bottom: 3px solid red;
}

#navigationBar li a:hover#AboutLink
{
	border-bottom: 3px solid #33FF33;
}

#navigationBar li a:hover#ProjectsLink
{
	border-bottom: 3px solid yellow;
}

#navigationBar li a:hover#ContactLink
{
	border-bottom: 3px solid #00FFFF;
}

#navigationBar li a:hover#BlogLink
{
	border-bottom: 3px solid white;
}

#content a:link, #content a:active, #content a:visited
{
	text-decoration: none;
}

#content a:hover
{
	text-decoration: underline;
}

#navigationBackground
{
	position: absolute;
	z-index: 5;
	top: 0px;
	left: 0px;
	
	width: 100%;
	min-width: 1024px;
	
	margin: 0px;
	padding: 0px;
	
	height: 64px;
	background: black url(nonpareil.png) no-repeat;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#content
{
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	float: left;
}

#innerContent
{
	position: relative;
	background: white url(background.png);
	width: 18000px;
	overflow: visible;
	float: left;
	min-height: 100%;
}

#copyright
{
	position: absolute;
	z-index: 20;
	bottom: 0px;
	right: 35%;
	background: black;
	opacity: 0.4;
	filter: alpha(opacity=40);
	color: white;
	font-size: 0.8em;
	font-variant: small-caps;
	width: 30%;
	height: 32px;
	text-align: center;
	line-height: 28px;
	min-width: 400px;
}

/* Sections */

.section
{
	/* min-height: 320px; */
	background: black;
	position: relative;
	float: left;
	/*top: 80px;*/
	/*bottom: 0px;*/
	padding: 5px;
	margin: 80px 0px 66px 0px;
}

.section h1
{
	width: 100%;
	height: 64px;
	line-height: 64px;
	color: white;
}

.section p
{
	color: white;
}

.section ul, .section li
{
	margin-top: 1px;
	margin-bottom: 1px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#News
{
	left: 100px;
}

#News h1
{
	border-bottom: 5px solid red;
}

#News a:link, #News a:active, #News a:visited, #News a:hover
{
	color: red;
}

#About
{
	left: 2075px;
}

#About h1
{
	border-bottom: 5px solid #33FF33;
}

#About a:link, #About a:active, #About a:visited, #About a:hover
{
	color: #33FF33;
}

#Projects
{
	left: 4051px;
}

#Projects h1
{
	border-bottom: 5px solid yellow;
}

#Projects a:link, #Projects a:active, #Projects a:visited, #Projects a:hover
{
	color: yellow;
}

#Contact
{
	left:  6027px;
}

#Contact h1
{
	border-bottom: 5px solid #00FFFF;
}

#Contact a:link, #Contact a:active, #Contact a:visited, #Contact a:hover
{
	color: #00FFFF;
}

#ContactText
{
	margin: 1px;
	padding: 2px 15px 3px 15px;
	display: block;
}

.ContactLine
{
	width: 100%;
	line-height: 1.3em;
	display: block;
	float: left;
	padding-top: 5px;
	padding-bottom: 5px;
}

.ContactLine label
{
	width: 25%;
	display: block;
	float: left;
	color: white;
}

.ContactLine input, .ContactLine textarea
{
	width: 74%;
	display: block;
	float: left;
	line-height: 1.3em;
	font-size: 1.2em;
	font-family: verdana, arial;
	font-weight: 100;
}

.ButtonLine
{
	width: 100%;
	line-height: 1.3em;
	display: block;
	float: left;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}

.ButtonLine input
{
	padding: 5px;
	margin: 3px;
	width: 64px;
}

.NewsPost
{
	border: 1px inset black;
	background: black;
	padding: 5px;
}