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


/* The Main layout of the Website */

html, body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-image: url('backgroundgradient.png');
	background-repeat: repeat-x;
	background-color: #3fb200;
}

#Wrapper {
	width: 100%;
	min-width: 780px;
	max-width: 900px;
	margin: 20px auto auto auto;
	padding: 5px;
}

#HeaderWrapper {
	width: 100%;
	height: 130px;
	background-image: url('background.png');
	background-repeat: repeat-x;
}

#HeaderContent {
	width: 100%;
	max-width: 900px;
	height: 130px;
	margin-left: auto;
	margin-right: auto;
}

#ContentBox1 {
	width: 100%;
	height: 100%;
	max-width: 600px;
	max-height: 110px;
	padding: 10px 10px 10px 10px;
	margin-left: 0px;
	margin-right: auto;
	border: 1px #000000 solid;
	background-color: #ffffff;	
}

#ContentBox2 {
	width:100%;
	height: 100%;
	max-width: 400px;
	max-height: 180px;
	padding: 10px 10px 10px 10px;
	margin-left: auto;
	margin-right: 0px;
	margin-top: 30px;
	border: 1px #000000 solid;
	background-color: #ffffff;
	float: right;	
}

#ContentBox3 {
	width: 100%;
	height: 100%;
	max-width: 250px;
	max-height: 325px;
	padding: 10px 10px 10px 10px;
	margin-left: 100px;
	margin-right: auto;
	margin-top: 50px;
	border: 1px #000000 solid;
	background-color: #ffffff;
	float: left;
}

#ContentBox4 {
	width: 100%;
	height: 100%;
	max-width: 300px;
	max-height: 350px;
	padding: 10px 10px 10px 10px;
	margin-left: auto;
	margin-right: 150px;
	margin-top: 50px;
	border: 1px #000000 solid;
	background-color: #ffffff;
	float: right;
}

#ContentBox5 {
	width: 100%;
	height: 100%;
	max-width: 300px;
	max-height: 300px;
	padding: 10px 10px 10px 10px;
	margin-left: 25px;
	margin-right: auto;
	margin-top: 50px;
	border: 1px #000000 solid;
	background-color: #ffffff;
	float: left;
}

#ContentBox6 {
	width: 100%;
	height: 100%;
	max-width: 500px;
	max-height: 300px;
	padding: 10px 10px 10px 10px;
	margin-left: 300px;
	margin-right: auto;
	margin-top: 50px;
	border: 1px #000000 solid;
	background-color: #ffffff;
	float: left;
}

#FirstFooterWrapper {
	width: 100%;
	margin-top: 100%;
	text-align: center;
	font-size: 10px;

}

/* End of main layout */





/* The styling of nav */

.NavWrapper {
	width: 50%;
	height: 40px;
	position: relative;
	float: right;
	margin-top: 80px;
}

.NavWrapper ul {
	list-style-type: none;
}

.NavWrapper ul li {
	display: inline;
	margin-right: 15px;
}

.NavWrapper ul li a{
	text-decoration: none;
	/*color: #be4801;*/
	color: #1f959c;
	font-size: 1.73em;
}

.NavWrapper ul li a:hover, .NavWrapper ul li a.selected {
	/*color: #fa8639;*/
	color: #12bac5;
}

/* The end of nav styling */






/* Other styling */

p {
	text-indent: 2em;
}

img.preview {
	padding: 15px;
	width: 200px;
	height: 150px;
	border: 1px;
	border-color: #000000;
	float: left;
}

