/* 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 */
	background-color: #000; /* sets the body background colour */
	color: #fff;  /* set the default text color */
	text-align: left; /* Hack to centre the wrapper in IE5.x pc */
	font-family: "Arial Narrow","Bell Gothic Std Light", Verdana, Arial, Helvetica, sans-serif; /* set the default fonts */
	font-size: 17px; /* 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: 1001px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
	font-weight: lighter;
}

#wrapper {
   width: 1001px;/*sets the width for IE5.x's broken box model*/
	w\idth: 1001px; /* 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/wrapper.jpg); /* sets the path to the wrapper's bg image*/
	background-position: bottom; /* uses two % values to place the image 2% from the left and 93% from the wrappers top left hand corner */
	background-repeat: no-repeat; /* prevents the image from tiling in our page, we do not want this image to repeat */
	background-color: #000; /* sets the wrappers background color */
	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: 221px;/* set a height for the banner to allow all the bg image to be seen, no text resizing in this element to worry about */
	z-index: 500;	
}

#nav {
	margin-top: -40px;
	position: relative;
	z-index: 600;
}

#content { /* Begin laying out and styling the content div */
	width: 747px; /* sets the width of our content*/
	background-image: url(../images/content-bg-right.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	position: relative;
	padding-right: 254px;
	margin-top: 40px;
	z-index: 400;	
}

#content p {
	font-size: 100%; /* set the font size for p, scaled from the body declaration */
	margin: 0px 6px 10px 6px; /* set the margins for the p element */
	padding: 0; /* zero off the padding */
	font-weight: lighter;
}

#content a {
	color: #AACEDF;
	font-weight: bold;
}

#content a:hover {
	color: #dcca8d;
	font-style: italic;
	text-decoration: none;
}

.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 */
	margin-top: 25px; /* set a margin to the top */
}


#footer {  /* Begin laying out and styling the footer div */
	background-color: #000000;  /*sets a background colour for the footer*/
	width: 1001px;  /*Sets the footers width*/
	font-size: 85%;  /* sets the footer text size */
	text-align: left;  /* aligns the text to the right*/
	clear: left;  /*clears any floats to the left - our leftcol div in this instance*/
	height: 50px;
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 150px;

	color: #dcca8d;
}

#footer p {
/*padding: 4px 4px 4px 10px;   sets the padding values*/
	margin-left: 150px;
}

/*#footer ul{
background-color: #036;provides a background colour for the links list*/
/*margin: 0;zeroes off the margins*/
/*padding: 4px;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: underline;  /*keeps the underline
}*/

#footer a:hover,
#footer a:focus {
	text-decoration: none;  /*removes the underline*/
}

H1 {
	font-family: "Lucida Calligraphy", Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: #dcca8d;
	font-weight: lighter;
}

H2 {
	font-family: "Arial Narrow", "Bell Gothic Std Light", Verdana, Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #C5DDE9;
	font-weight: bold;
	font-style: italic;
	margin-left: 30px;
}

H3 {
	font-family: "Lucida Calligraphy", Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #dcca8d;
	font-weight: lighter;
}

p.quote-text {
	font-size: 15px;
}

hr {
	padding-right: 250px;
	color: #C5DDE9;
	width: 400px;
	line-height: 0.5px;
	text-align: left;
}

img {
	border:#FFFFFF
}

img a:visited {
	border:#C5DDE9;
}