body {
	background: white url(images/common/page_background.jpg) repeat-x;
	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: "Lucida Grande", Lucida, Verdana, sans-serif;
}

#container {
	width: 780px;
	/

* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 30px auto 0;
	

/* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #549eb6;
	text-align: left;
	background: url(images/common/cont_bg.jpg) repeat-y;
	position: relative;
}

#header {
	background: #DDDDDD url(images/common/apc_header2.jpg);
	padding: 0 10px 0 20px;
	height: 200px;
	border-bottom: 1px dotted #9bb6d2;
}

#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;
	text-indent: -9000px;
	color: black;
}

#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: #e0e8f0;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
}

#bottompic {
	position: absolute;
	bottom: 15px;
	right: 0;
	z-index: -10;
}

#sidemenu {
	margin-left: -20px;
	font-size: 14px;
}

#sidebar1 h1 {
	float: left;
	background: #e0e8f0;
	font-size: 18px;
	width: 195px;
	padding-top: 20px;
}

#sidebar1 h2 {
	float: left;
	background: #e0e8f0;
	width: 195px;
	margin-top: -10px;
	font: bold 18px Verdana, Arial, Helvetica, Geneva, sans-serif;
	color: #00728d;
	text-decoration: underline;
}

#sidebar1 p em {
	float: left;
	font: 10px Arial, Helvetica, Geneva, sans-serif;
	padding-right: 10px;
}

#mainContent {
	margin: 15px 0 0 250px;
	

/* 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: 0 20px;


/* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent h1 {
	margin-bottom: 0;
	margin-top: 0;
	margin-right: 0;
	font-size: 20px;
	color: #00728d;
}

#mainContent h2 {
	margin-bottom: 0;
	margin-top: 5px;
	margin-right: 0;
	font-size: 16px;
	color: #00728d;
}

#mainContent p {
	font-size: 12px;
	line-height: 20px;
	padding-bottom: 5px;
}

#mainContent ul {
	font-size: 12px;
	line-height: 20px;
	padding-bottom: 5px;
}

#mainContent ul.footnote {
	font-size: 10px;
	line-height: 16px;
	padding-bottom: 5px;
	list-style-image: none;
	list-style-type: none;
}

#footer {
	padding: 0 10px 0 20px;
	

/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #98d7dc;
	border-top: 1px dotted #9bb6d2;
}

#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;
	text-align: center;
	font-size: 10px;
	line-height: 12px;
}

#footer a:link {
	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;
	text-align: center;
	font-size: 10px;
	line-height: 12px;
	color: black;
	text-decoration: none;
}

#footer a:visited {
	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;
	text-align: center;
	font-size: 10px;
	line-height: 12px;
	color: black;
	font-weight: normal;
	font-style: normal;
}

#footer a:hover {
	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;
	text-align: center;
	font-size: 10px;
	line-height: 12px;
	color: red;
	text-decoration: underline;
}

.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;
}

p {
	font-size: 12px;
	line-height: 18px;
}