
/* general text styling for web page*/
BODY, P, DIV, DL, UL, OL {
    font-size:  100%;
    font-family: Arial, Tahoma, Helvetica, sans-serif;
}

h1{ 
	font-family:  Arial, Tahoma, Helvetica, sans-serif;
	font-size: 150%;
	font-weight: bold; }
h2{ 
	font-family: "Times New Roman",Times,serif ; 
	font-size: 140%; 
	font-style:  italic;
	font-weight: bold; }
h3{ 
	font-family: "Times New Roman",Times,serif ;  
	font-size: 120%;
	font-weight: bold;}
h4{ 
	font-family:  Arial, Tahoma, Helvetica, sans-serif;
	font-size: 100%;
	font-style:  italic;
	font-weight: bold; }

h5{ 
	font-family: "Times New Roman",Times,serif ;  
	 margin-top: -10px;
	font-size: 80%;
	font-style:  italic;}

pre { font-family: monospace; }

BLOCKQUOTE {
 	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif; 
	font-size: 90%;	
	color: #000000;
	font-style: italic;
	padding:  3px ;
	}

.newquote {
    padding: 0.4em, 0.9em;
    margin: 2%, 4%;
    font-size: 85%;
}

TD {
 	font-family: Arial, Tahoma, Helvetica, sans-serif; 
	font-size: 95%;	
	color: #000000;
	}
 TH {
 	font-family: Arial, Tahoma, Helvetica, sans-serif; 
	font-size: 95%;	
	color: #000000;
	font-weight: bold;
	}

/* these are the font styles for the links that appear on the web page */
a:link {font: bold  arial; color: #008080; text-decoration: none;} 
a:active {font: bold  arial; color: #6D8269; text-decoration: none;}
a:visited {font: bold arial; color: #0000ff; text-decoration: none;}
a:hover {font: bold  arial; color: #AF0020; text-decoration: underline;}/*this one changes the mouseover or hover state of the link*/

.border
{
    /* this is used for all kinds of borders */
    /* be it for the whole page, or just the content section */
    border: solid 1px #6D8269;
}

.left
{
    /* floats the item to the left side of the page, and adds a margin */
    float: left;
}

.right
{
    /* floats the item to the right side of the page, and adds a margin */
    float: right;
}

.scroll
{
    /* this makes the element create scroll bars if the text is too long */
    /* to be displayed.  This is very similar to the effect created by */
    /* frames and iframes, but does not allow page transitions like frames do */
    overflow: auto;
}

.wrapper
{
    /* remove this to have the page load at full width */
    width: 760px;

}

.title
{
    /* this is the styling for the title.  Semantically, this should be an h1 */
	/* padding all four sides of the div in order top, right, bottom, left */
    background: #6D8269;  /*dark olive green*/
    color: #C7E1A7; /*light olive green*/
	font-family: Arial, Tahoma, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 36px;
	padding: 10px 20px 10px 20px;

}

.title2 
{
    color: #6D8269;  /*dark olive green*/
	font-family: Arial, Tahoma, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;

}
.titlemargin
{
	margin: 10px 0px 10px 0px;
}

.subtitle 
{
	color: #ffffff; /*white*/
	font-family: Arial, Tahoma, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 115%;
}

.content
{
    /* this describes the container of the content paragraphs. */
    padding: 0px 20px 0px 20px; /* keeps text off the borders */
	font-family: Arial, Tahoma, Helvetica, sans-serif;
    font-size: 95%;
    padding: 0px;
	margin: 0px;
}

.content.padleft
{
    /* this is to pad if there's a sidebar on the left */
    padding-left: 180px;
}

.content.padright
{
    /* this is to pad if there's a sidebar on the right */
    padding-right: 180px;
}

.sidebar
{
    width: 150px;
    background-color: #C7CFA7; /*yellow olive-green*/
    color: #C7CFA7;/*yellow olive-green*/
    font-weight: bold;
    padding: 10px 0 5px 0;
}

.sidebar2
{
    width: 150px;
 	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif; 
	font-size: 80%;	
	color: #000000; /*black*/
	font-style: italic;
    padding: 30px 0 5px 0;
}

.sidebaritem
{
    width: 127px;
    background-color: #C7E1A7; /*light olive green*/
    color: #6D8269;  /*dark olive green*/
    border: solid 1px #6D8269;  /*dark olive green*/
    font-size: 14px;
    padding: 2px;
    margin-bottom: 3px;
}

.sidebaritem.first
{
    margin-top: 10px;
}

.footer
{
	background-color: #C7CFA7; /*light olive green*/
	font-size: 80%;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	text-align: center;
}

.highlight {
	MARGIN: 10px; 
	BORDER: #008000 2px solid;
	font-size: 100%; 
	PADDING: 5px, 2px; 
	BACKGROUND-COLOR: #C0FFC0; /*light green*/
    width: 80%;
}