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

body {
	font-family: Arial, Helvetica, sans-serif;
	background: #FFF;
	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: #545454;
	font-size:12px;
	font-weight: normal;
}
#container {
	width: 800px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	padding: 0 16px 0 16px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-weight: normal;
}



/*Below is for the footer class and the left and right id's of that class */
.footer {
	color: #999;
	font-size: 10px;
}
.footer .left {
	text-align: left;
	width: 300px;
	float: left;
}
.footer .right {
	text-align: right;
	width: 300px;
	float: right;

}
.footer ul {
	margin: 4px  4px 4px 4px;
	padding: 0;
}
.footer li {
	display: inline;
	list-style-type: none;
	padding: 2px 14px 8px 14px;
}
.footer a:link {
	text-decoration: none;
	color: #999;
	font-weight:normal;
}
.footer a:visited {
	text-decoration: none;
	color: #999;
	font-weight:normal;
}
.footer a:hover {
	text-decoration: underline;
	color: #999;
	font-weight:normal;
}
/*END of the footer class and the left and right id's of that class */





#menu {
	/* width: 100%; */
	margin: 0 auto;
	padding: 0;
	border: 0;
	text-align: center;
	color: #007500;
	font-family: ‘Arial Narrow’, sans-serif;
	font-size: 12px;
	font-weight: bold;
}
a {     /* unvisited link */
	color: #007500;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: underline;	
	font-weight: bold;
}
#menu a {
	font-family: ‘Arial Narrow’, Helvetica, sans-serif;
	text-decoration: none;
}    
a:visited {color:#007500;}  /* visited link */
a:hover {color:#09C;}  /* mouse over link */
a:active {color:#007500;}  /* selected link */
#menu ul {
	margin: 0 0 6px 0;
	padding: 0;
}
#menu li {
	display: inline;
	list-style-type: none;
	padding: 2px 10px 8px 10px;
}
h1 {
	color: #007500;
	font-size:20px;
	font-weight: bolder;
	margin: 0 auto;
	padding: 8px 0 4px 0;
	font-family: "Arial Black", Gadget, sans-serif;
}
h2 {
	color: #007500;
	font-size:16px;	
	font-weight: bold;
	margin: 0 auto;
	padding: 4px 0 4px 0;
}
h3, h3 a, h3 a:visited {
	color: #666;
	margin-bottom: 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}
h3 a:hover {
	color:#09C;	
}
p {
	margin: 0 auto;
	padding: 2px 0 4px 0;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}

.entry {
	color: #666666;	
	font-family: Arial, Helvetica, sans-serif;
}

.entry_date {
	font-size: 11px;
	margin-bottom: 16px;
	color: #999999;
}

.read_link a {
	color:#999;
	text-decoration: none;
	font-weight: normal;
	font-size: 12px;
}
.read_link a:visited {
	color:#999;
}
.read_link a:hover {
	color:#09C;
	text-decoration: underline;
}


.left_indent {
	padding-left: 24px;	
}