
body
{
    font: 20px arial;
}
/* these are the font styles for the links that appear on your web page */
a:link {font: bold 13px arial; color: #99724C; text-decoration: none;} 
a:active {font: bold 13px arial; color: #99724C; text-decoration: none;}
a:visited {font: bold 13px arial; color: #5675A5; text-decoration: none;}
a:hover {font: bold 13px arial; color: #F20B31; 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 5px #99724C;
}

.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;
}


.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: #5675A5;
    color: #D9E1ED;
	border: solid 4px #D9E1ED;;
	font-face: Arial;
    font-weight: bold;
    font-size: 36px;
	  padding: 15px 10px 15px 10px;
}

.title2 
{
    color: #5675A5;
	font-face: Arial;
    font-weight: bold;
    font-size: 24px;

}
.titlemargin
{
	margin: 10px 0px 10px 0px;
}

.subtitle 
{
	color: #D9E1ED;
	font-face: Arial;
    font-weight: bold;
    font-size: 20px;
}

.content
{
    /* this describes the container of the content paragraphs. */
    padding: 15px 25px 15px 25px; /* keeps text off the borders */
	font-face: Arial;
    font-size: 14px;
    padding: 0px;
	margin: 0px;
}

.content.padleft
{
    /* this is to pad if there's a sidebar on the left */
    padding-left: 200px;
}

.content.padright
{
    /* this is to pad if there's a sidebar on the right */
    padding-right: 200px;
}

.sidebar
{
    width: 175px;
    height: 398px; /* remove this to allow different-sized sidebars */
    background-color: #99724C;
    color: #D9E1ED;
    font-weight: bold;
  padding: 20px 20px 5px 20px;

}

.sidebaritem
{
    width: 125px;
    background-color: #CFE0F9;
    color: #5675A5;
    border: solid 3px #5675A5;
    font-size: 14px;
    padding: 3px;
    margin-bottom: 4px;

}
.horiz
{
    color: #5675A5;
    font-weight: bold;
	width: 124px;
	float: left;
	text-align: center;
}

.sidebaritem.first
{
    margin-top: 20px;
}

.footer
{
	 background-color: #D9E1ED;
     color: #5675A5;
	border: solid 4px #5675A5;
	font-face: Arial;
    font-weight: bold;
    font-size: 14px;
	text-align: center;
}