@charset "utf-8";

/* default link styles */
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   background-color: inherit; 
   color:#009933;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #009933;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color:#000000;
}

/* HEADINGS */

div#content h1 {
	color: #137422;
	font-size: 1.5em; 
	text-align: left; 
	padding-left: 0em;
    padding-top:5px;
	padding-bottom: 12px;
    margin: 0 0 0 0;
}

div#content h2 {
	color:#005714;
	font-size:1.2em;
	text-align:justify;
	font-weight:normal;
	line-height:1.5em;
    margin: 0 0 0 0;
}

div#content h3 {
	color:#005714;
	font-size:1.2em;
	font-weight:normal;
	text-align:left;
	line-height:1.5em;
    margin: 0 0 0 0;
}

div#breaker {
	width:560px;
	border-top:1px dotted #666666;
}

div#sub-breaker {
	width:260px;
	border-top:1px dotted #666666;
}

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 2em;
   padding: 0;
}


