body  {
	font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
	font-size: 12px;
	background: #d6e1f1;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #1f2950;
}

#container/*container, contains all divs and content*/
{
width: 90%;
margin: 10px auto;/*setting the container to centre*/
background-color: #fff; /* background colour of div*/
color: #333333; /* colour of body text*/
/*border: 1px solid #1f2950;  one pixel grey border around the container div, that contains all content and other divs*/
line-height: 130%; /*for better readability, more leading*/
text-align: left; /* this overrides the text-align: center on the body element. */
}

#top /*header div, contains all divs and content*/
{
padding: 0 0 0 0;
background: url(../images/top.jpg) top repeat;
/*border-bottom: 1px solid #1f2950;*/


}

#top h1 /*sets all margins of the main heading within header div to 0 because bowsers interpret them differently*/
{
padding: 0;
margin: 0;

}


h1  /*sets all margins of the main heading within header div to 0 because bowsers interpret them differently*/
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 22px;
font-weight: bold;
color:#6d313a;
padding: 0;
margin: 0;
}

h2
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 20px;
font-weight: bold;
color:#5d8517;
padding: 0;
margin: 0;
}

h3 
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 18px;
font-weight: bold;
color:#006677;
padding: 0;
margin: 0;
}

h4
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 16px;
font-weight: bold;
color:#6d313a;
padding: 0;
margin: 0;
}

h5 
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 14px;
font-weight: bold;
color:#ea5e19;
padding: 0;
margin: 0;
}

h6
{
font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
font-size: 13px;
font-weight: bold;
color:#3e896b;
padding: 0;
margin: 0;
}




#leftnav /*this is floating the navigation div to the left hand side, a width has to be given*/
{

float: left;
width: 130px;
margin: 0;
padding: 1em; /*this makes sure the content is 1em away from the border of the div*/
}

#sidenav {
width: 140px;
margin: 0 0 0 0;
padding: 0;
list-style: none;
font-size: 100%;
}

#sidenav li {
margin: 0;
padding: 0 0 2px 0;
font-size: 100%;
}

#sidenav a {
display: block;
margin: 1px;
padding: 5px 0 8px 6px;
color: #fff;
text-decoration: none;
background: #6d313a;
font-size: 100%;
font-weight: normal;
}

#sidenav a:hover {
color: #fff;
background-color: #3e896b;
text-decoration: none;
}

a {
	font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;

	color: #333333;
}
a:visited {
	color: #333333;
}
a:hover {
	color: #3e896b;
}
a:active {
	color: #3e896b;
}
/*this determines the appearance of all main links in the document*/

#bullet li { list-style-type: circle; }


#content /*this is the main content div*/
{
margin-left: 165px;  /*it is 150px away from the left hand side, this makes sure that it won't wrap under the sidenav if the sidenav div is shorter than 
the content div*/
padding: 1em; /*this makes sure the content of this div is 1em away from the border of the content div, these are interpreted differently by each browser*/
}

.tableText {/*this determines the appearance of the footer text*/
	font-size: 12px;
	color: #ffffff;
	margin: 1px 10px 1px 15px;
	font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
	font-weight: bold;
	text-decoration: none;
	
}
.tableTextS {/*this determines the appearance of the footer text*/
	font-size: 12px;
	color: #333333;
	margin: 1px 10px 1px 15px;
	font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
	font-weight: normal;
	text-decoration: none;
	
}

#table {
margin: 0 16px 0 20px;
font-weight: normal;
color: #4D4D4D;
}

#footer
{
clear: both; /*this makes sure that the footer div is always underneath all other floated divs*/
margin: 0;
padding: 10px 0 10px 178px;
color: #1f2950;
background-color: #3e896b;
/*border-top: 1px solid #1f2950;this creates a 1 pixel border on the top edge of the footer div*/
}

.footerText {/*this determines the appearance of the footer text*/
	font-size: 10px;
	color: #1f2950
	font-family: "Helvetica Neue", Helvetica, Geneva, sans-serif;
	font-weight: normal;
	text-decoration: none;
	
}

#leftnav p { margin: 0 0 0 0; } /*This removes the space above content in the leftnav div*/
#content h2 { margin: 0 0 .5em 0; } /*This removes the space above content in the c div*/

.floatleft
{
float: left;
margin: 2px  15px 10px 0px ;
}