@charset "UTF-8";
/* CSS Document */

body  {
	font-family:"Courier New", Courier, monospace;
	color: #000;
	background-color:#efd9b0;
	background-image:url(images/bg2.jpg);
	background-position: center;
	background-repeat:repeat-y;
	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 */
}

#container { 
	width: 900px;  /* this will create a container 80% of the browser width */
	background-color: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:18px;
	margin-bottom:10px;
	border: #D3CA98 2px solid;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {margin-top:8px;
	margin-bottom:6px;
	background-color: #FFF; 
	text-align:center;
} 


.offleft {position:absolute;
	left:-999px;}

#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 */
}


/* Tips for leftcol:

1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 

2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#leftcol p" rule.

*/

h1 {color:#333;
	font-size:26px;
	font-family:"Courier New", Courier, monospace;
	font-variant:small-caps;	}
	
h2 {color:#333;
	font-size:22px;
	font-family:"Courier New", Courier, monospace;
	font-variant:small-caps;	}
	
h3 {color:#333;
	font-size:18px;
	font-family:"Courier New", Courier, monospace;
	font-weight:bold;
	font-variant:small-caps;	
	padding-left: 5px;}
	
h4 {color:#333;
	font-size:14px;
	font-family:"Courier New", Courier, monospace;}
	
.floatleft {float:left;
	padding:20px 4px 0 0;
	}	
	
.floatright {float:right;
	padding:20px 10px 0 4px;
	}	
	
.imgborder {border:2px solid #000;
	margin:8px;}	
	
.bold {font-weight:bold;}	

#leftcol {
	float: left; 
	width: 380px; /* since this element is floated, a width must be given */
	background-color: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 24px 20px; /* top and bottom padding create visual space within this div  */
	font-size:small;
}

#leftcol p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

#leftcol .indent {margin-top:5px;
	margin-left:130px;}
	
#leftcol .center {margin-left:28%;
	margin-bottom:-12px;}	


/* Tips for rightcol:

1. The space between the rightcol and leftcol is created with the left margin on the rightcol div.  No matter how much content the leftcol div contains, the column space will remain. You can remove this left margin if you want the #rightcol div's text to fill the #leftcol space when the content in #leftcol ends.

2. Be aware it is possible to cause float drop (the dropping of the non-floated rightcol area below the sidebar) if an element wider than it can contain is placed within the rightcol div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the rightcol div. You should be aware of this limitation - especially if the client is adding content with Contribute.

3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the rightcol "hasLayout." This may help avoid several IE-specific bugs.

*/

#rightcol { 
	margin: 0 24px 0 0; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	float:right;
	padding:20px;
	width: 400px; /* since this element is floated, a width must be given */
	border: 1px solid;
	border-color: #CCC #999 #999 #CCC;
	background-image:url(images/rightbg2.jpg);
	background-position:center;
	background-repeat:repeat-y;
} 

#rightcol p {
		font:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size: small;
}

#logo { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
	float:none;
} 

#logo 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 ; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: small;
	font:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

#full { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
	float:none;
	font: medium Verdana, Arial, Helvetica, sans-serif;
} 

#full 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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: medium Verdana, Arial, Helvetica, sans-serif;
}

#full td {
	font-size: medium;
}


#footer { 
	display:block;
	margin-top:8px;
	padding: 10px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/footbg.gif);
	background-position:top center;
	background-repeat:no-repeat;
} 

#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	color:#039;
}


/* Miscellaneous classes for reuse */

.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;
}


a:link {
	color: #369;
	text-decoration: underline;
}


a:visited {
	color: #c33;
	text-decoration: underline;
}

a:hover {
	color: #2b351c;
	text-decoration: none;
}

p.thick_black_line { font-size: 45px; line-height: 40px; margin: 0px; color: #000000; } 
