/*
This design was created to be very simple and easy to edit for beginners. This is achieved by comments spread throughout the HTML file and the CSS that indicate where different parts of the design's code are located. If you have any questions, email me at toxicityj@gmail.com or head over to http://www.zilladesigns.net 
*/



/*BODY*/
body {
	background-color:#FFF;
	font-family: arial, sans-serif;
	color:#000;
	}
	
a {
	color: #279EFF;
	text-decoration: none;
	}
	
a:hover {
	color:#FF0000;
	text-decoration: underline;
	}

/*CONTAINER STYLES*/

#main {
	width: 900px;
	margin: auto;
	}
	
#header {
	background-image: url();
	width: 100%;
	height: 65px;
	font-family: Arial sans-serif;
	text-align: center;
	}

#left {
	width: 300px;
	float: left;
	padding: 5px;
	border: 1px #325878 solid;
	}
	
#right {
	width: 550px;
	float: right;
	margin: 0px;
	padding: 10px;
	border: 1px #325878 solid;
	}
	
#footer {
	width: 900px;
	float: right;
	margin: auto;
	}

/*TEXT STYLES*/

h1 {
	color: #FF0000;
	font-size: 35px;
	}
	
h2 {
	color: #FF0000;
	font-size: 24px;
	text-decoration: none;
	padding-left: 5px;
	margin: 0px;
	}
	
h3 {
	color: #FF0000;
	font-size: 24px;
	padding-left: 5px;
	margin: 0px;
	}
	
p {
	text-align: justify;
	}
	
.image {
	padding: 5px;
	margin: 10px;
	border: 1px solid #000;
	}
	
.imageleft {
	float: left;
	padding: 5px;
	margin: 10px;
	border: 1px solid #000;
	}