@charset "UTF-8";
body  {
	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 */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 88%;
	background-color: #FFFFFF;
	background-image: url(images/background1.gif);
	background-repeat: repeat-x;
	background-position: left top;
}
.small {font-size: small;}
.xsmall {font-size: x-small;}
h1 {
	font-size: 2.8em;
	font-weight: normal;
	color:#009900;
	font-family: Georgia, "Times New Roman", Times, serif;}
h2 {
	font-size: 1.8em;
	color: #FFFFFF;
	background-color: #009900;
	margin: 0em;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0.3em;
	padding-left: 0.3em;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #006600;
}
h3 {
	font-size: 1.2em;
	color: #009900;
}
h4 {font-size: 1.0em; color: #333333;}
.spacerHalf {margin-top: -0.5em;}
.spacerFull {margin-top: -1em;}

a:link {color:#0066CC; font-weight:bold;}
a:visited {color:#002288; font-weight:bold;}
a:hover, a:focus, a:active {color:#DDDDFF; background:#000000;}

.twoColumn #container {
	width: 700px;  /* using 100px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColumn #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".twoColumn #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColumn #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	left: 100px;
	clip: rect(auto,auto,auto,100px);
	margin-left: 0px;
	text-align: right;
	color: #666666;
}
#sectionNav h3 {
	margin-bottom: -0.1em;
	font-size: 1.5em;
}
.offleft {
	margin-left: -9000px;
	position: absolute;
}

.twoColumn #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 170px;
	padding-top: 20px;
} 
.twoColumn #footer {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-left: 50px;
	background-color: #FFFFFF;
	border: thin solid #CCCCCC;
	margin-right: 20px;
} 
.twoColumn #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 */
}

/* 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: 6px 0 10px 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 6px 10px 10px 0;
}
.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;
}
#sectionNav  ul {
	margin: 0px;
	padding: 0px;
}
#sectionNav li {
	background-image: none;
	margin: 0.2em;
	padding: 0px;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DDDDDD;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
#sectionNav a {
	display: block;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	font-size: small;
	color: #666666;
	text-decoration: none;
}
#sectionNav a:hover, #sectionNav a:focus, #sectionNav a:active {
	color: #FFFFFF;
	background-color: #009900;
}
#mainContent ul {
	list-style-type: square;
	margin-left: 0.5em;
	padding-left: 0.5em;
}
#mainContent li {
	margin-top: 0.3em;
}
#orderedList ol {
	list-style-type: decimal;
	margin-top: -0.5em;
}
.warningColor {
	color: #FF66FF;
	font-weight: bold;
}
.red { color: #933; }
.green {color:#006600;}.footnote {
	font-style: italic;
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #CCCCCC;
	font-size: small;
}
