/*------------------------------ Common styles for all pages -----------------------------------------*/
@charset "utf-8";
body {
	background: #66ccFF;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.author {
	font-weight: bold;
}
.navhead {
	font-size: 14px;
	font-weight: bold;
	color: 505748;
}
.caption {
	font-style: italic;
}
#footer {
	background-color: #3399FF;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#footer p {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
a {
	color: #FFFF00;
	text-decoration: underline; 
	font-weight: bold;
}
td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#header {
	padding: 10px 10px 0 10px;  /* 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. */
	background-color: #66ccFF;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
h1 {
	font-weight: bold;
	color: #FFFF00;
	font-size: 24px;
}
h3 {
	font-size: 16px;
	font-weight: bold;
}
h2 {
	font-size: 20px;
	font-weight: bold;
	color: #FFFF00;
}

#header img#bannerRight {
	margin-left:30px; /* this creates space between the two banner images*/
}

.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;
}


/*------------------------------ Styles for the 1-column standard pages -----------------------------------------*/
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #66ccFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #navigation {
	padding: 5px;
	border-bottom: 1px solid #000; /*create a solid line across the bottom of the navigation container spanning the entire column*/
	margin-bottom: 25px;
	}
	
.oneColFixCtrHdr #navigation ul {
	margin-left: 0;
	padding-left: 0;
	display: inline; /* removes the vertical space normally accompanying a list and places it into the flow of the rest of the document */
	} 

.oneColFixCtrHdr #navigation ul li {
	margin-left: 0;
	margin-bottom: 0;
	padding: 2px 15px 5px;
	border: 1px solid #000; /*create a solid line around each individual list item*/
	list-style: none; /*eliminate the bullet, box, circle, etc. that normally preceeds a list item */
	display: inline; /* turn the normal vertically positioned list items into horizontal items in line with the rest of the document text */
	background-color: #3399FF;
	}
		
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #66ccFF;
}
.oneColFixCtrHdr #container #navigation li.currentTab {
	background-color: #66ccFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.oneColFixCtrHdr #container #navigation {
	font-weight: bold;
}
