 
  
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #95948A;
	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;
}
#container  {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header  { 
} 
#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 */
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	margin-top: 30px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
}
#mainContent  {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999999;
	margin-top: 30px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 30px;
} 
#footer  {
	background-color: #CFCAC2;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#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: 10px;
}
.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;
}
 
.text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #666666;
}
.tintBox {
	padding: 10px;
	background-color: #E3ECEE;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #406F9E;
	font-style: italic;
	line-height: 25px;
	font-weight: normal;
	text-align: center;
}
.caption {
	font: 13px Georgia, "Times New Roman", Times, serif;
	text-align: center;
	letter-spacing: 0.1em;
	color: #FFFFFF;
}
.sidebarText {
	font: italic 16px/19px Georgia, "Times New Roman", Times, serif;
	color: #584E43;
}
.quote {
	font: 18px/22px Verdana, Arial, Helvetica, sans-serif;
	color: #403C77;
}

/* This css is for the menu rollovers*/
 #navcontainer {
	margin-left: 10px;
}

 #navcontainer ul
 {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: Georgia, "Times New Roman", Times, serif;
 }

 #navcontainer li { margin: 0 0 1px 0; }

 #navcontainer a
 {
	display: block;
	width: 120px;
	color: #0E4B89;
	background-color: #DAD5CD;
	text-decoration: none;
	text-align: right;
	margin-bottom: 5px;
	font-size: 14px;
	letter-spacing: 0.05em;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 10px;
 }

 #navcontainer a:hover
 {
	color: #fff;
	background-color: #1D67A3;
	text-decoration: none;
 }

 #navcontainer ul ul li { margin: 0 0 1px 0; }

 #navcontainer ul ul a
 {
 display: block;
 padding: 5px 5px 5px 30px;
 width: 125px;
 color: #fff;
 background-color: #3B1402;
 text-decoration: none;
 }

 #navcontainer ul ul a:hover
 {
	color: #fff;
	background-color: #61584B;
	text-decoration: none;
 }
li {
	margin-bottom: 5px;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: #6E6B67;
	font-weight: normal;
	line-height: 27px;
	text-align: center;
}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #7E9AB2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #C9D5DF;
	text-align: center;
}
#containerDark {
	padding: 20px;
	background-color: #DAD5CD;
}
