body {/* set everything to zero for a good cross-browser starting point */
	margin: 0;/*zeroes the margins on the body*/
	padding: 0;/*zeroes the padding on the body ** Opera carries a default padding and requires this zeroing*/
	border: 0;/*zeroes off any existing border*/
	background-color: #9DE6F8;/*sets the body background colour*/
	color: #000; /*set the default text color */
	text-align: center; /* Hack to centre the wrapper in IE5.x pc */
	font-family: Verdana, Arial, Helvetica, sans-serif;/*set the default fonts */
	font-size: 100.01%;/* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
	min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
}

#wrapper {
	margin: 5px auto;/* centers the wrapper first value - 5px is applied to the top and bottom margins, auto sets the excess space on the view port evenly to the left and right*/
	width: 760px; /* sets the width of the wrapper */
	position: relative; /* important to position it relatively */
	background-color: #9DE6F8;/* sets the wrappers background color*/
	border: 5px solid #FF6600;/* sets a border to all 4 sides */
	text-align: left;/* Realigns the text to the left after the IE hack in the body rule */
	background-image: url(../i/background.jpg);
}
#top h1, #top h2 {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 105%;
}
#top p {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 70%;
	font-weight: bold;
}

#content {
	clear: both;
}
#content p {
	margin: 0;
	padding: 5px 20px;
	text-align: justify;
	font-size: 70%;
	font-weight: normal;
}



#footer {
	clear: both;
	margin: 30px 10px 10px 10px;
	font-size: 60%;
}
#contact, #footerLinks {
	text-align: center;
}

#sitemap {
	text-align: center;
	padding: 15px;
}

#copyright {
	width: 30%;
	float: left;
	padding: 15px;
}
#credits {
	width: 30%;
	float: right;
	text-align: right;
	padding: 15px;
}


.clearIt {
	clear: both;
}
a {
	color: #000;
}
a:hover {
	text-decoration: none;
}

h1, h2 {
	padding: 5px 20px 0 20px;
}
h3 {
	font-size: 90%;
	padding: 5px 20px 0 20px;
}
