@charset "utf-8";

/******************************************************************************** 
* Body Formatting
*********************************************************************************/
body  {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; 
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. */
	color: #000000;
	background-color:#006633;
}

p {
	margin:0px 0px 15px 0px;
}

/******************************************************************************** 
* Headings
*********************************************************************************/
h1{
	font-size: 120%;
	margin:0px 0px 15px 0px;
	padding: 0;
}

h2{
	font-size: 110%;
	margin:0px 0px 15px 0px;
	padding: 0;
}

h3{
	font-size: 100%;
	margin:0px 0px 15px 0px;
	padding: 0;
}

h4{
	font-size: 90%;
	margin:0px 0px 15px 0px;
	padding: 0;
}

h5{
	font-size: 90%;
	margin:0px 0px 15px 0px;
	padding: 0;
}
h6{
	font-size: 90%;
	margin:0px 0px 15px 0px;
	padding: 0;
}

/******************************************************************************** 
* Default Anchors
*********************************************************************************/
a{
	color: #000000;
}

a:link{
	color: #000000;
}

a:visited{
	color: #000000;
}

a:hover{
	color: #000000;
}

a img {
	border:none;
}

/******************************************************************************** 
* Default unordered list
*********************************************************************************/
ul {
	list-style:circle;
}

li {
	margin-bottom:5px;
}

/******************************************************************************** 
* Main Navigation positioned under the header
*********************************************************************************/
#globalNav{
	font-size:80%;
	color: #84b220;				/* color and background the same to hide link separators */
	background-color:#84b220;
	text-align:center;
	margin: 0px;
	padding: 2px 10px;
}

#globalNav a {
	margin: 0 25px;				/* separate the anchors on the navigation bar */
}

/******************************************************************************** 
* link styles for any #leftsidebar menus that are built from unordered lists
*********************************************************************************/
#leftSidebar ul {
	list-style:none;
	margin: 0;
	padding: 0;
}

#leftSidebar li {
	margin: 0;
	padding: 0;
}

#leftSidebar ul a:link, #leftSidebar ul a:visited {
	display: block;
}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#leftSidebar li {
border-bottom: 1px solid #EEE;
}

/* fix for browsers that don't need the hack */
html>body #leftSidebar li {
border-bottom: none;
}

/******************************************************************************** 
* styling for menus that appear in the leftsidebar
*********************************************************************************/
.sideMenu{
	float: left;
	padding: 0px;
	width:160px;
	font-size: 80%;
	margin-top: 15px;
}

.sideMenu ul{
	background-color:#95c331;
}

.sideMenu p.menuHeader{
	font-size:110%;
	height:20px;
	margin:0;
	padding: 5px 0px 2px 10px;
	color:#ffffff;
	background-color:#2d7631;
	border-bottom: 1px solid #ffffff;
	font-weight:bold;
}

.sideMenu a {
	display: block;
	border-bottom: 0px solid #ffffff;
	padding: 2px 0px 2px 10px;
}

.sideMenu a:hover{
		background-color: #a6d442;
}

/******************************************************************************** 
* structural divs
*********************************************************************************/
#container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #ffffff;
	padding: 0 10px 10px 10px;
} 

#header {
	height: 60px;
	background-image: url(../images/structure/header.jpg);
} 

#header #accessibilityLinks {
	font-size:60%;
	color:#84b220;
	text-align: right;
	margin-right: 0px;
	margin-top: 0px;
}

#header #accessibilityLinks a{
	color:#84b220;
}

#leftSidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; 
	background: #ffffff;
	padding: 0px;
}

#mainContent {
	margin: 15px 0 0 180px; 
	padding: 0 20px 0px 0px; 
	font-size: 95%;
} 

#footer {
	margin: 15px 0px 0px 0px;
	padding: 0px 15px;
	background-color:#84b220;
	width: 730px;
} 

/******************************************************************************** 
* text classes
*********************************************************************************/
.bold {
	font-weight: bold;
}

.italic {
	font-style:italic;
}

.centre {
	text-align: center;
}

/******************************************************************************** 
* float classes
*********************************************************************************/
.floatRight { 
	float: right;
	margin-left: 8px;
}

.floatLeft { 
	float: left;
	margin-right: 8px;
}

/*
.clearFloat { 
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}
*/

.forceNewLine { 
	clear: both;
	padding:0px;
	margin:0px;
}

.imageCaption {
	font-size:80%;
	text-align:center;
	font-weight:bold;
	margin-bottom:5px;
}

#footer p {
	font-size: 70%;
	text-align: center;
	margin:0px;
	padding: 5px 0px;
}

