/* 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; /* sets the body background colour */
	min-width: 770px; /* 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-y;
	background-position: center;
}

#wrapper {
   width: 772px;/*sets the width for IE5.x's broken box model*/
	w\idth: 770px; /* sets the width of the wrapper for compliant browsers*/
	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*/
	position: relative; /* important to position it relatively */
	background-image: url(../images/back.jpg); /* sets the path to the wrapper's bg image*/
	background-position: center; /* uses two % values to place the image 2% from the left and 93% from the wrappers top left hand corner */
	background-repeat: repeat-y; /* prevents the image from tiling in our page, we do not want this image to repeat */
	text-align: left; /* Realigns the text to the left after the IE hack in the body rule */
}

#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: 127px;/* set a height for the banner to allow all the bg image to be seen, no text resizing in this element to worry about */
}

#content { /* Begin laying out and styling the content div */
	width: 560px; /* sets the width of our content*/
	margin-left: 150px; /* this left margin clears the leftcol div and allows our content div to become a second column */
	margin-bottom: 0px; /* sets a padding clearance on the bottom of the div*/
}

#leftcol { /* Begin laying out the leftcol div */
	float: left; /* Floats the div to the left to make a column */
	width: 150px; /* sets a width for the div - Imperative for IE mac */
	margin-top: 1px;
}

#leftcol #navigation {
	line-height: 100%; /* helps out IE 5.01 PC */
	width: 150px; /*uses keywords to place the image at the bottom left of the div */
	margin-top: 2px;
}

#leftcol #navigation ul {
	margin: 0; /* zeroes off the margins */
	padding: 0; /* zeroes off the padding */
	font-size: 75%; /* scales the font to 75% of the body font declaration*/
}

#leftcol #navigation ul li { /*The 3 margin property/value pairs are a hack to make the links butt together in IE 5.01 */
	padding: 0; /* zeroes off the padding */
	margin: 0; /* zeroes off the margins */
	margin: /**/ 0 0 -3px 0; /* This takes 3px off the bottom margin in IE 5.01 - IE 5.5 cannot read this hack so stays with the 0 value from the last margin property */
	ma\rgin: 0; /* repeats the image vertically, no need to position it as top left is the default and that is where we want the image begin tiling from */
	
}

#leftcol #navigation a, 
#leftcol #navigation a:visited { /* use dual selectors if the properties and values are the same for each */
	w\idth: 150px; /* resets the width for IE6 and compliant browsers */
}

/* 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 */

#leftcol #navigation a:hover, 
#leftcol #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 */
	border-bottom: 1px solid #fff; /* changes the bottom border to white to give the hover state an indented look */
	color: #000; /* changes the hover and focus text to black */
}

#footer {  /* Begin laying out and styling the footer div */
	width: 770px;  /*sets the top border to define the beginning of the footer*/
	font-size: 9px;  /* aligns the text to the right*/
	margin-top: 20px;  /* Adds a margin to the top of the footer*/
	clear: left;  /*clears any floats to the left - our leftcol div in this instance*/
	background-image: url(../images/footer.jpg);
	height: 67px;
	font-weight: bold;
}

#footer p {
	padding: 15px 20px 4px;  /* sets the padding values*/
	margin: 0;  /*zeroes off the margins */
	text-align: center;
	font-weight: bold;
}

#footer a {  /* Styles the links within the footer */
	color: #EC6409;  /*sets the text to white*/
	text-decoration: underline;  /*keeps the underline*/
	text-align: center;
	font-size: 9px;
}

#footer a:hover,
#footer a:focus {
	text-decoration: none;  /*removes the underline*/
	color: #CC0000;
	text-align: center;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: normal;
	font-variant: normal;
	text-decoration: none;
	letter-spacing: normal;
}

.maintext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.boldtext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0200CA;
}
.redtext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #CC0000;
	text-transform: uppercase;

}
.smalltext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.smalltext2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #070099;
}
h1{
	font: italic bold 17px Verdana, Arial, Helvetica, sans-serif;
	color: #C91B03;
	margin: 0px;
	padding: 0px;
	text-align: right;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F8AF07;
}
ol {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #030341;
}
ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000093;
	padding-left: 5px;
	line-height: 170%;
	list-style-type: square;
}

h2{
 font: bold 14px Verdana, Arial, Helvetica, sans-serif;
 color: #FF6600;
 margin: 0px;
 padding: 0px;
}

h3{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FF9900;
	margin: 0px;
	padding: 0px;
	border-top: 1px solid #FFFF00;
}

h4{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	font-weight: bold;
}
#tablelines {
	border: 1px solid #FFCC33;
}
a:link {
	color: #0066FF;
}
a:visited {
	color: #0066FF;
}
a:hover {
	color: #FF0000;
}
a:active {
	color: #0066FF;;
}
