/* Note: The slash star combinations surround text that is to be          */
/*       marked a comment.  These just describe the CSS and are           */
/*       ignored by the browser.                                          */

body
{
	font: 11px Verdana, Arial, Geneva, sans-serif;
	background-color: #E6F0D2;
	margin-left: 5px;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}
/* these are the font styles for the links that appear on your web page */
a:link {font: bold 11px Verdana, Arial, Geneva, sans-serif; color: Teal; text-decoration: none;} 
a:active {
	font: bold 11px Verdana, Arial, Geneva, sans-serif;
	color: #FF6347;
	text-decoration: underline;
}
a:visited {font: bold 11px Verdana, Arial, Geneva, sans-serif; color: Teal; text-decoration: none;}
a:hover {
	font: bold 11px Verdana, Arial, Geneva, sans-serif;
	color: #FF6347;
	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 green;
}
table
{
   border: solid 1px green;
	background-color: #ffffff;
	font-size: 11px;
}
.text
{
   padding: 10px;
	background-color: #ffffff;
	font-size: 11px;
}
.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: 755px;
}

.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-color: #8FBC8F;
	background-image: url(images/bghome.jpg);
	color: #F0FFF0;
	font-family: Verdan, Arial, Geneva, sans-serif;
   font-weight: bold;
   font-size: 36px;
	height: 190px;
	padding: 20px 20px 10px 20px;
}

.title2 
{
    color: #5F9EA0;
	font-family: Verdana, Arial, Geneva, sans-serif;
    font-weight: bold;
    font-size: 18px;

}
.titlemargin
{
	margin: 10px 0px 10px 0px;
}

.subtitle 
{
	color: #000000;
	font-family: Verdana, Arial, Geneva, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.content
{
    /* this describes the container of the content paragraphs. */
    padding: 0px 20px 0px 20px; /* keeps text off the borders */
	font-family: Verdana, Arial, Geneva, sans-serif;
    font-size: 11px;
    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: 140px;
	 background-color: #F0FFF0;
    color: #5F9EA0;
    font-weight: normal 12px;
    padding: 10px 0px 5px 0px;

}

.sidebaritem
{
    width: 116px;
    background-color: #f0fff0;
    color: #5F9EA0;
    border: solid 1px green;
    font-size: 12px;
    padding: 2px;
    margin-bottom: 3px;

}
.horiz
{
    color: #4B1A95;
    font-weight: bold;
	width: 145px;
	float: left;
	text-align: center;
}
.horizstatic
{
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	background-color: #008000;
	width: 145px;
	float: left;
	text-align: center;
}
.static
{
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	background-color: #008000;
	text-align: center;
}
.sidebaritem.first
{
    margin-top: 10px;
}

.footer
{
	background-color: #f0fff0;
	font-size: 10px;
	font-family: Verdana, Arial, Geneva, sans-serif;
	text-align: center;
	padding: 15px;
}