body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #cccccc;
	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;
	line-height: 150%;
}

h1 {
	color:#465FAB;
	font-size: 28px;
	margin-top: 30px;
	line-height: 100%;
}

h2 {
	color:#465FAB;
	font-size: 18px;
}

h3 {
	color:#465FAB;
	font-size: 14px;
}
table h1 {
	color:#465FAB;
	font-size: 28px;
	margin-top: 10px;
}


a:link {color: #26439B}     /* unvisited link */
a:visited {color: #26439B}  /* visited link */
a:hover {color: #AD9230}   /* mouse over link */
a:active {color: #AD9230}   /* selected link */

#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #FFFFFF;
	height: 200px;
} 

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
}

#sidebarText { 
	margin: 40px 0 0 0;
	float: left; /* since this element is floated, a width must be given */
	width: 180px; 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
}

#sidebarText h1 {
	color: #AD9230;
	font-size: 18px;
	margin-left: 10px;
	border-left-width: 20px;
	text-align: right;
	margin-top: 0px;
}

#mainContent { 
	margin: 30px 20px 0 180px; /* 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 #sidebar space when the content in #sidebar ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContentHome { 
	margin: 40px 200px 0px 180px; /* 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 #sidebar space when the content in #sidebar ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


#footer {
	background:#F0F0F0;
	border-style: solid;
	border-top-width: 12px;
	border-top-color: #8292c9;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 15px;
} 

#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-size: 10px;
	text-align: center;
}
#bottomMenu {
	background:#CCCCCC;
	font-size: 10px;
	text-align: center;
	height: 50px;
	margin-top: 10px;
}

