
/* 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: 16px arial;
}
/* these are the font styles for the links that appear on your web page */
a:link {font: bold 13px arial; color: #6D8269; text-decoration: none;} 
a:active {font: bold 13px arial; color: #6D8269; text-decoration: none;}
a:visited {font: bold 13px arial; color: #6D8269; text-decoration: none;}
a:hover {font: bold 13px 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: 742px;
	margin-left: 3px;
}

.indent
{
    /* to indent */
	font-style:italic;
    text-indent: 80px;
}
.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: #6D8269;
    color: #C7E1A7;
	font-style: Arial;
    font-weight: bold;
    font-size: 32px;
	padding: 10px 20px 2px 20px;
}
.title1
{
    /* 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: #6D8269;
    color: #C7E1A7;
	font-style: Arial;
    font-weight: bold;
    font-size: 24px;
	padding: 0px 20px 10px 20px;
}

.title2 
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 18px;

}
.title3
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 14px;

}
.title4
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 12px;
}
.title5
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 12px;
	margin-bottom: 10px;
	margin-top:10px;
}

.title6
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 12px;
	margin-bottom: 0px;
	margin-top: 10px;
	margin-left:40px;
}

.title7
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 12px;
	margin-bottom: 0px;
	}

.title8
{
	margin-top: 5px;
	margin-bottom: 0px;
}

.indentpar
{
  	font-style: Arial;
    font-size: 12px;
	margin-bottom: 0px;
	margin-top: 7px;
	margin-left:40px;
}

.profiletitle
{
    color: #6D8269;
	font-style: Arial;
    font-weight: bold;
    font-size: 18px;
	text-align: center;
}

.titlemargin
{
	margin: 0px 0px 0px 0px;
}

.subtitle 
{
	color: #ffffff;
	font-style: Arial;
    font-weight: bold;
    font-size: 14px;
}

.scaps
{
	font-size:11px;
	font-variant: caps;
}

.titlesmcaps
{
	font-size:28px;
	font-variant:small-caps;
}

.content
{
    /* this describes the container of the content paragraphs. */
    padding: 0px 20px 0px 20px; /* keeps text off the borders */
	font-style: Arial;
    font-size: 12px;
    padding: 0px;
	margin: 0px;
}

.content.padleft
{
    /* this is to pad if there's a sidebar on the left */
    padding-left: 170px;
}

.content.padright
{
    /* this is to pad if there's a sidebar on the right */
    padding-right: 180px;
}

.sidebar
{
    width: 150px;
    height: 680px; /* remove this to allow different-sized sidebars */
    background-color: #C7CFA7;
    color: #C7CFA7;
    font-weight: bold;
    padding: 10px 0px 5px 0px;
}

.sidebaritem
{
    width: 130px;
    background-color: #C7E1A7;
    color: #6D8269;
    border: solid 1px #6D8269;
    font-size: 14px;
    padding: 2px;
    margin-bottom: 3px;

}
.horiz
{
    color: #4B1A95;
    font-weight: bold;
	width: 124px;
	float: left;
	text-align: center;
}

.sidebaritem.first
{
    margin-top: 10px;
}

.centermail
{
text-align:center;
}

.footer
{
	background-color: #C7CFA7;
	font-size: 10px;
	font-style: arial;
	text-align: center;

}