/* This style sheet was written by Community MX and was distributed freely for use with the free North Pole CSS positioning template.
The North Pole template is freely available from http://www.communitymx.com - This comment should remain intact though you are free to edit the style sheet as you see fit. */

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 */
	color: #383412;  /* 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: 994px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
	background-image: url(../images/bg.jpg);
	background-repeat: repeat;
}

/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}
#wrapper {
	width: 996px;/*sets the width for IE5.x's broken box model*/
	w\idth: 994px; /* sets the width of the wrapper for compliant browsers*/
	margin: 1px 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*/
	position: relative; /* important to position it relatively */
	background-image: url(../images/bg.jpg); /* prevents the image from tiling in our page, we do not want this image to repeat */
	background-repeat: repeat;	
}

#banner {
	position: relative; /* **PLEASE READ** ~ This property and value is not needed for your page to be rendered corectly in the browser - However, without it Dreamweaver allows the position of the leftcol div to ride up over the banner in design view. If that does not bother you you can safely delete this property and value pair. Alternatively you could implement a design time style sheet to position the div correctly for working in design view */
	background-image: url(../images/header.jpg);  /* sets the background image for the banner div*/
	background-repeat: no-repeat; /* prevents the bg image from repeating */
	/*height: 278px;*/
	padding-top: 213px;
	height: 64px;
	z-index: 600;	
}

#banner #navigation {
	display: inline;
	
}

#banner #navigation ul {
	border-top: 1px none #000; /* sets a border to the top of the ul */
	border-bottom: 1px none #000; /* sets a border to the bottom of the ul */
	list-style-type: none; /* removes the bullets from our list navigation */
	font-size: 110%; /* scales the font to 75% of the body font declaration*/
	display: inline;
	border-right-style: none;
	border-left-style: none;
	
}

#banner #navigation ul li { /*The 3 margin property/value pairs are a hack to make the links butt together in IE 5.01 */
	display: inline;
	background-image: none;
	
}

#banner #navigation a, 
#banner #navigation a:visited { /* use dual selectors if the properties and values are the same for each */
	color: #fff; /* changes the default text colour to white */
	display: block; /* required to make the links act like a button, having the full area "clickable" */
	display: inline;
	padding: 250px 6px 6px 6px; /* sets padding values to give the link text some "air" */
	text-decoration: none; /* removes the default underline */
	

}

/* using the \ escape character as in w\idth - see final property declaration in the selector above */
/* IE 5.01 and IE5.5 cannot read this selector. The escape character must not come immediately before the letters a,b,c,d,e or f. If it does it will be seen as a hex character and the hack will fail */

#banner #navigation a:hover, 
#banner #navigation a:focus { /* use dual selectors if the properties and values are the same for each */
	background-color: transparent; /* prevents the dark blue background colour from the "a" selector showing and ensures the snowman image is seen on hover and focus */
	color: #000; /* changes the hover and focus text to black */
}

#content { /* Begin laying out and styling the content div */
	width: 994px; /* sets the width of our content*/
	background-image: url(../images/content-bg.jpg);
	background-repeat: repeat-y;
	padding-top: 213px;
	margin-top: -213px;
	
	
}

#content p {
	font-size: 90%; /* set the font size for p, scaled from the body declaration */
	margin: 0px 26px 8px; /* set the margins for the p element */
	padding: 0 10px 0 0; /* zero off the padding */
	
}

#content a, #content a:visited {
	color: #036735
}

#content a:hover, #content a:focus {
	color: #3366FF}

.titleimages { /* used to set the "cold" title images */
	display: block; /* set to display block to ensure it has it's own line in the design */
	
}

#content ul {
	text-align: left;
	padding-left: 45px;
	margin-right: 45px;
	padding-bottom: 8px;
	font-size: 90%;
}

#content ol {
	text-align: left;
	padding-left: 45px;
	margin-right: 45px;
	padding-bottom: 8px;
	font-size: 90%;
}

#content td p {
	padding: 3px;
	margin: 3px;
}




#footer {  /* Begin laying out and styling the footer div */
	width: 994px;  /*Sets the footers width*/
	font-size: 90%;  /* sets the footer text size */
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	height: 53px;
	color: #FFFFFF;
	text-decoration: none;
}

#footer p {

padding: 0px 4px 4px 10px;  /* sets the padding values*/
margin: 0;  /*zeroes off the margins 
background-color: #006633;*/
}

#footer ul{
/*background-color: #036;provides a background colour for the links list*/
margin: 0;/*zeroes off the margins*/
padding: 4px 17px;/*add some air around the links*/
}

#footer li{
display: inline;/*set the list to display inline*/
}

#footer a {  /* Styles the links within the footer */
color: #fff;  /*sets the text to white*/
text-decoration: none;  /*keeps the underline*/
padding: 4px 17px;/*add some air around the links*/
}

#footer a:hover,
#footer a:focus {
text-decoration: underline;  /*removes the underline*/
}
h1 {
	font-family: "Cooper Black", Verdana, sans-serif;
	font-size: 28px;
	color: #036735;
	margin-left: 5px;
	margin-right: 25px;
	z-index: 400;
	padding: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
}
h3 {
	font-size: 130%;
	color: #004F00;
	font-family: "Trebuchet MS", Verdana, sans-serif;
	margin-left: 25px;
	margin-right: 25px;
	font-style: italic;
}
h2 {
	font-size: 120%;
	color: #B8A008;
	margin-left: 26px;
	margin-right: 25px;
	text-align: left;
}

td h2 {
	font-size: 120%;
	color: #B8A008;
	margin-left: 16px;
	margin-right: 15px;
	text-align: left;
}
h4 {
	font-size: 100%;
	color: #3E7484;
	margin-left: 15px;
}

hr {
	margin-left: 26px;
	margin-right: 25px;
}

img a {
	border: none;
}