/*-- format the body --*/
body {
padding-top: 0px; 
padding-right: 0px; 
padding-left: 0px; 
padding-bottom: 0px; 
margin: 0px; 
background-color: #ffffff;  /*-- sets the body background to white --*/
}

/*-- set the properties of the header and its background --*/
#header {
background-position: left top; 
left: 0px; 
background-image: url(../images/header_background.jpg);
overflow: hidden;
width: 100%; 
background-repeat: repeat-x;  /*-- repeats background horizontally --*/
position: absolute; 
top: 0px;  /*-- places header at very top of screen --*/
height: 115px;  /*-- set same height as header_background.jpg --*/
}

#header img {
border-right: medium none; 
border-top: medium none; 
border-left: medium none; 
border-bottom: medium none;
}

/*-- format the container for the global navigation buttons --*/
#globalnav {
	padding: 0 0 0 0;
	font-weight: normal; 
	font-size: 0.75em; 
	z-index: 2; 
	right: 5px;  
	position: absolute; 
	top: 71px;
	height: 17px; 
	background-color: #faf8bb;
}

#globalnav img {
	border: 0;
}

/*-- format the global nav links --*/
#globalnav a {
	color: #000099;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

#globalnav a:hover {
	color: #009900;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

#globalnav a.on {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

/*-- format the container for the left-hand nav --*/
#navcont {
border-right: 0px; 
border-top: 0px; 
border-left: 0px;
border-bottom: 0px;
left: 0px; 
width: 143px;  /*-- set the horizontal size of the left-hand nav container --*/
position: absolute; 
top: 117px;  /*-- set distance from top of screen --*/
}

/*-- use for QUIZ when the nav buttons are removed --*/
#navcont .hint {
padding-right: 8px; 
padding-left: 8px; 
padding-bottom: 8px;
padding-top: 8px;
border-top: #ffffff 1px solid; 
font-size: 70%;
margin-left: 14px; 
color: #666; 
font-family: arial, helvetica, sans-serif; 
background-color: #efefef;
}

/*-- format the elements in the left-hand nav container --*/
#nav {
padding-right: 0px; 
padding-bottom: 0px; 
margin: 0px; 
border-top: 0px;
border-right: 0px;
border-left: 0px; 
border-bottom: 0px; 
text-align: left;  /*-- set to align the buttons either left or right --*/
}

/*-- format the unordered list style of the left-hand nav --*/
#nav ul {
padding-top: 0px;
padding-right: 0px; 
padding-left: 0px; 
padding-bottom: 0px; 
margin: 0px; 
list-style-type: none;  /*-- none = no underline --*/
}

/*-- format the border around the nav buttons --*/
#nav ul li {
border-right: #b2a057 1px solid; 
border-bottom: #c3b477 2px solid;
border-top: #fff 1px solid; 
border-left: #fff 1px solid; 
padding-top: 0px; 
padding-right: 0px; 
padding-left: 0px; 
padding-bottom: 0px; 
margin: 1px; 
}

/*-- format the text links in the left-hand nav --*/
#nav ul li a {
padding-right: 6px; 
padding-left: 6px;
padding-bottom: 4px;
padding-top: 4px;
display: block; 
font-size: 90%;  /*-- set the size of the text links --*/
margin: 0px; 
color: #2439A1;  /*-- set the color of the text links --*/
line-height: 120%;  /*-- set the height of the nav buttons --*/
font-family: arial, helvetica, sans-serif; 
text-decoration: none;
}

/*-- format the "You Are Here" style of the left-hand nav --*/
#nav ul li a.navon {
font-weight: bold; 
color: #2439A1;
}

/*-- format the rollover style of the left-hand nav --*/
#nav ul li a:hover {
font-weight: bold; 
background-color: #E7D66B;  /*-- sets color of BUTTON, not text link --*/
}

/*-- format the footer --*/
#footer {
clear: both;  /*-- forces the footer to another line --*/
background-image: url(../images/footer_background.jpg); 
width: 100%; 
background-repeat: repeat-x; 
white-space: nowrap; 
height: 76px; 
background-color: #ffffff;
}

/*-- format the footer graphics (if any) --*/
#footer img {
padding-right: 0px; 
padding-left: 0px; 
padding-bottom: 0px; 
padding-top: 0px;
margin: 0px; 
text-align: center;
}

/*-- format the footer paragraph style and font characteristics --*/
#footer p {
font-size: 70%; 
margin: 4px; 
color: #999; 
font-family: arial, helvetica, sans-serif; 
background-color: #fff; 
text-align: center;
}

/*-- set the position of the main area to the right of the left-hand nav container --*/
#mainarea {
margin-left: 157px;
}

/*-- format the area for lesson title: page x of y and the back/next buttons --*/
.lessonname {
clear: both;  /*-- forces this area to another line --*/
border-top: #666666 1px solid;  /*-- creates a solid line above the elements --*/
display: block; 
font-size: 12px;  /*-- set the text size of lesson title: page x of y --*/
color: #666666; 
font-family: arial, helvetica, sans-serif;
}

/*-- format the position of the back/next buttons --*/
.lessonnav {
display: inline; 
float: right;  /*-- positions the buttons to the right of the screen --*/
width: 158px;  /*-- equivalent to the sum of the back and next button widths --*/
margin-right: 10px;  /*-- sets the right-hand margin --*/
}

/*-- format the back/next button graphics --*/
.lessonnav img {
border: 0;
display: inline; 

}

/*-- format the page area --*/
#pagearea {
position: absolute; 
top: 115px;  /*-- places the page area directly under the header --*/
left: 0px;  /*-- page area begins at the left-hand side of the screen --*/
background-image: url(../images/background.gif);  /*-- places a background image in the left-hand nav container --*/
width: 100%;  /*-- page area is full screen width --*/
background-repeat: repeat-y;  /*-- repeats the background vertically (down the left-hand nav container) --*/
}

/*-- use if no background is desired --*/
#pagearea_nobkgnd {
left: 0px; 
width: 100%; 
position: absolute; 
top: 115px;
}

/*-- format the content area within the main area, within the page area --*/
#content {
margin-right: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 100%; 
}

/*-- format Heading 1 --*/
#content h1 {
color: #003399;
}

/*-- format Heading 2 --*/
#content h2 {
font-size: 1.2em;
color:#336699;
}

/*-- format Heading 3 --*/
#content h3 {
font-size: 1em;
color: #999999;
}

.floatright {
float: right;
}

.floatleft {
float: left;
}

/*-- format Date --*/
#date {
font-size: 11px; 
right: 10px; 
color: #000; 
font-family: arial, helvetica, sans-serif; 
position: absolute; 
top: 3px;  /*-- distance from top of screen --*/
}

/*-- format Logo --*/
#logo {
z-index: 3; 
position: absolute;
right: 12px;  /*-- distance from right-hand side of screen --*/
top: 24px;  /*-- distance from top of screen --*/
}

/*-- format back to top --*/
.back {
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
text-align: left;
}

/*-- format FAQ answers --*/
.answer {
font-family: Arial, Helvetica, sans-serif;
font-weight:bold;
color:#003399;
}