html {
	background: #369 url(images/bg_lowerright.jpg) no-repeat fixed right bottom;
}
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: transparent url(images/bg_upperleft.jpg) no-repeat fixed left top;
	margin: 0 0 24px 0;
	padding: 0;
	text-align: center;
	color: #333;
}
.twoColFixLtHdr #container { 
	width: 900px;
	background: #FFFFFF;
	margin: 0 auto;
	border: 1px solid #66c;
	border-top: 0;
	text-align: left;
} 
.twoColFixLtHdr #header { 
	background: #ffffff; 
	padding: 0;
} 
.twoColFixLtHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 8px 40px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#369 url(images/bg_footer.jpg) no-repeat center center;
	color: #444444;
	text-align: center;
	font-size: .9em;
	border-top: 1px solid #66c;
} 
.twoColFixLtHdr #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 */
}
.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;
}
.twoColFixLtHdr #mainContent p {
	margin: 1em 36px;
}
.twoColFixLtHdr #mainContent ol {
	margin: 1em 36px;
}
.twoColFixLtHdr #mainContent ul {
	margin: 1em 36px;
}
#sidebar1 #sidebarnote {
	width: 170px;
	text-align: left;
	background: gold;
	color: #333;
	font-size: 11px;
	margin: 2em 4px 2em 0;
	padding: 6px 4px;
	border: 1px solid gray;
	clear: both;
}
.twoColFixLtHdr #mainContent ul li { 
	list-style-image: url(images/bullet_sq_6ff.gif); 
	}
.caption {
	font-size: 90%;
	font-style: italic;
}
.smaller {
	font-size: 90%;
	}
.larger {
	font-size: 110%;
}
.highlightgray {
	color: #393939;
	}
.highlightorange {
	color: #f90;
	}
.highlightgreen {
	color: #330;
}
.highlightlime {
	color: #6f0;
}
.highlightmaroon {
	color: #900;
}
.hilightbox {
	background: #ffc; 
	padding: 4px 6px 4px 6px; 
	border-top: 2px dotted #630; 
	border-right: 2px dotted #630; 
	margin-top: 1em; 
	margin-bottom:1em;
	}

a:link {
	color: blue;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: magenta;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: red;
	font-weight: bold;
	text-decoration: underline;
}
a:active {
	color: blue;
	font-weight: bold;
	text-decoration: none;
}
#nav {
	width: 170px;
	float: left;
	margin: 0 0 2em 4px;
	padding: 0px 4px 4px 0;
	background-color: white;
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	}
#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}
#nav li {
	border: 1px #330 solid;
	padding: 0px;
	margin: 2px 0;
	}

#nav li a {
	color: #336;
	background: #ccf;
	display: block;
	text-decoration: none;
	padding: 3px;
	}
#nav li a:hover	{
	color: #e8e8e8;
	text-decoration: none;
	background: #369 url(images/bg_nav.jpg) repeat-y center top;
	}
#nav #announcement {
	margin-top: 10px;
	width: 160px;
	padding: 6px;
	background: #9ff;
	border: 1px solid #333;
	text-align: center;
	font-weight: bold;
	line-height: 150%;
	}
