body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	border: 1 px;
	background-color: #005eab;
}

h1 { font-size: 24px; margin: 4px; }
h2 { font-size: 18px; margin: 4px; }
h3 { font-size: 16px; margin: 4px; }
h4 { font-size: 14px; margin: 4px; font-style: italic}
p  { font-size: 12px/75%; }
code  { font-size: larger; }


#header a:link    {font-weight: bold; color: #A7A400; }
#header a:visited {font-weight: bold; color: #FFFDDA; }
#header a:hover {font-weight: bold; color: yellow; }
#header a:focus {font-weight: bold; color: yellow; }
#header a:active {font-weight: bold; color: yellow; }

#header h1 { font-size: 24px; margin: 4px; }
#header h2 { font-size: 18px; margin: 4px; }
#header p  { font-size: 12px/75%; }

#container { 
	width: 1080px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
        font-family: "Arial", "Helvetica", sans-serif;
        color: white;
        background: #005eab;
	height: 140px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

#header a:link    {font-weight: bold; color: yellow; }
#header a:visited {font-weight: bold; color: yellow; }
#header a:hover {font-weight: bold; color: yellow; }
#header a:focus {font-weight: bold; color: yellow; }
#header a:active {font-weight: bold; color: yellow; }

#header h1 { font-size: 24px; margin: 4px; }
#header h2 { font-size: 18px; margin: 4px; }
#header p  { font-size: 12px/75%; }

#sideMenu {
        font-family: "Arial", "Helvetica", sans-serif;
	color: black;
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}


#sideMenu h1 { text-align: center;
                 font-size: 24px; 
                 margin: 5px; }

#sideMenu a { display: block;
                font-size: 16px;
                line-height: 1.25;
                padding-left: 5px;
                padding-right: 5px; }
#sideMenu a:link {font-weight: normal; color: black; }
#sideMenu a:visited {font-weight: normal; color: gray; }
#sideMenu a:hover, a:focus {font-weight: bold;
                   color: black; }
#sideMenu a.current { color: blue;
                        font-size: 110%;
                        line-height: 1.25; }

#sideMenu a.submenu { font-size: 12px; padding-left: 20px;
                        line-height: 1.25; }
                        
#sideMenu a.subcurrent { color: blue; font-size: 12px; padding-left: 20px;
                        line-height: 1.25; }
#sideMenu a.subsubmenu { font-size: 12px; padding-left: 40px;
                        line-height: 1.25; }

#vignetteBar {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	padding: 10px;
}

#mainContent {
    	font: 85% Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0;
	margin-right: 240px;
	margin-bottom: 0;
	margin-left: 240px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#footer { 
        font-family: "Arial", "Helvetica", sans-serif;
        color: yellow;
 	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #005eab;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.style1 {
	font-size: 100px
}
.vigtext    {font-size: 100%}
.vigtext75  {font-size:  75%}
.vigtext170 {font-size: 170%}
