@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #112233;
	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; /* centers container in IE 5* browsers. Text is then set to the left aligned default in the #container */
	color: #000000;
}
#container { 
	width: 950px; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #335577;
	padding: 0 10px 0 20px;  /* 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. */
} 
#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: 25px 0 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	color: #FFF;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* the actual width of this div will include the padding and border in addition to the width */
/*	background: #7A7655; */
	background: #558866;
	padding:10px 13px 15px 12px;
	text-align: left;
}
#container #sidebar1 p {
	font-size: 0.8em;
	color: #FFF;
}
#sidebar1 a:link {
	color: #FF3;
	text-decoration: none;
}
#sidebar1 a:hover {
	color: #00F;
	text-decoration: underline;
}
#sidebar1 a:visited {
	color: #6F3;
	text-decoration: none;
}

#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
/*	background-color: #DDDDCC; */
	background-color: #FFF;
	color: #000;
} 
#container #mainContent h5 {
	padding-left: 50px;
	padding-right: 50px;
	color: #555;
}
#container #mainContent h6 {
	color: #777;
}
#container #mainContent h4 {
	padding: 0 80px 0 80px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #000;
}
#container #mainContent a:visited {
	color: #0FF;
	text-decoration: none;
}

