﻿/* sets 0 margin and 0 padding on everything */
* { 
	margin: 0; 
	padding: 0; 
}

/* The main positioning of the layout */
/* ********************************** */
html, body {
	height: 100%;
	background: #177ef4 url('background.jpg') no-repeat;

	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	
}

#Wrapper{
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 25px;
}

#WrapperTop {
	width: 800px;
	height: 100px;
	position: relative;
	background-image: url('topheader.png');
}

#WrapperCenter {
	width: 800px;
	position: relative;
}

#WrapperBottom {
	width: 800px;
	height: 100px;
	position: relative;
	background-image: url('bottomheader.png');
}

#Content {
	width: 698px;
	min-height: 600px;
	position: relative;
	background: white;
	border-left: 1px solid black;
	border-right: 1px solid black;
	padding-left: 50px;
	padding-right: 50px;
	overflow: hidden;
}

#Announce {
	width: 580px;
	float: right;
	padding: 0px;
}

#InnerContent {
	width: 515px;
	float: right;
	padding: 0px;
}

#Menu {
	width: 90px;
	position: relative;
	float: left;
	padding-left: 0px;
	padding-top: 30px;
	z-index: 999;
}

#Logo {
	width: 170px;
	position: relative;
}

.img {
	margin-left: auto;
	margin-right: auto;
}

/* The individual styling of elements */
/* ********************************* */

/* This is the nav styling */

ul {
	padding-top: 5px;
	list-style-type: none;
	text-align: left;
}

a.nav:link, a.nav:visited {
	color: #646464;
	text-decoration: none;
	font-weight: bold;
}


a.nav:hover, a.nav:active {
	color: #e73c3c;
}

a.current:link, a.current:visited {
	color: #e73c3c;
	text-decoration: none;
	font-weight: bold;
}

li.nav:hover {
	color: #e73c3c;
}

/* The end of the nav styling */

/* The other styling */
/* ******************************** */

.center {
	text-align: center;
	position: relative;
}

.image {
	margin-left: 75px;

}

p {
	text-indent: 13px;
}

.style1 {
	text-decoration: underline;
}
.style2 {
	text-align: center;
	text-decoration: underline;
}






