@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
	background-image: url(images/graf-pbgtexture.jpg);
}
html, body {
height: 100%;
}
 #container {
	width: 869px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/graf-shadow.jpg);
	background-repeat: repeat-y;
	padding: 0 5px 0 0px;
} 
 #header {
	padding: 0 1px 0 8px;
} 
 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 15px 25px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 1em;
}
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#sidebar1 p {
	font-size: .8em;
}
#sidebar1 h1 {
	font-size: 1.0em;
	font-style: italic;
	color: #003366;
}

 #mainContent {
	margin: 0 0 0 240px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent p {
	font-size: .8em;
}
#mainContent h1 {
	font-size: 1.3em;
	color: #FF0000;
}

#mainContent h2 {
	font-size: 1.1em;
	font-style: italic;
	color: #F00;
}
#mainContent h3 {
	font-size: 1em;
	color: #FF0000;
}
#mainContent h4 {
	text-align: center;
	font-size: .8em;
}
#mainContent ul li ul li {
	font-size: 1em;
}

#mainContent tr {
	font-size: .8em;
}

 #footer {
	padding: 0 1px 0 0px;
	background-image: url(images/graf-footer.jpg);
} 
#footer2 a {
	color: #FFFFFF;
	text-decoration: underline;
}


#footer2 {
	padding: 0 10px;
	background-image: url(images/graf-pbgtexture2.jpg);
	margin: 0 auto;
	width: 850px;
	text-align: left;
	}
#footer2 p {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.6em;
}

#footer   p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.boldergreen {
	font-weight: bold;
	color: #000;
	text-align: center;
	font-size: 1.2em;
}
#mainContent a {
	font-weight: bolder;
	color: #006633;
	text-decoration: none;
}
#mainContent li {
	font-size: .8em;
}
IMG.centred {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5px;
	}
.centre {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5px;
	}
	
#mainContent table {
	font-size: .8em;
	}
#mainContent table tr td p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.5em;
}
#mainContent table tr td {
	font-size: 1.2em;
}

