@charset "utf-8";
body {/* set everything to zero for a good cross-browser starting point */
	margin: 0; /* zeroes the margins on the body */
	padding: 0; /* zeroes the padding on the body ** Opera carries a default padding and requires this zeroing */
	border: 0; /* zeroes off any existing border */
	background-color: #DEDCA0; /* sets the body background colour */
	color: #000000; /* set the default text color */
	text-align: center; /* Hack to centre the wrapper in IE5.x pc */
	font-family: Verdana, Arial, Helvetica, sans-serif; /* set the default fonts */
	font-size: 100.01%; /* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
	min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
}

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

/* Needed to hold link to main content in compliance with Section 508, rule o. */
#skipnav {
	position: absolute;
	top: 0; /* Places the div at the top of body. */
	left: 0; /* Places the div at the left side of body. */
	margin-left: -1000px; 
}

#header {
	background: #AD1215;
	padding: 0;  /* 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. */
	margin-top: -10px;
	margin-bottom: 10px;
}

#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 */
}

#meetings {
	color: #DEDCA0;
	font-style: italic;
	font-weight: bold;
}

#times {
	text-align: right;
	color: #DEDCA0;
	font-style: italic;
	font-weight: bold;
}

#contentwrapper {
	margin-top: -30px;
}

#mainNav {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #DEDCA0;
	margin-top: 10px;
}

#nav1 nav2 {
	border: 0;
	width: 100px;
	background-color: #DEDCA0;
}

#nav1 ul {
}

#nav1 li {
	list-style:none;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #666;
}

#nav1 li a {
	display: block;
	text-decoration: none;
	background-color: #DEDCA0;
	color: #000;
	background-repeat: no-repeat;
	margin-left: -25px;
	height: 26px;
	text-align: left;
	font-size: .75em;
	font-weight: bold;
	font-style: italic;
	padding-top: 6px;
	background-image: url(../images/mfngNavButtonUp.gif);
	padding-left: 14px;
}

#nav1 li a:hover {
	background-color: #DEDCA0;
	background-image: url(../images/mfngNavButtonOver.gif);
	background-repeat: no-repeat;
	color: #DEDCA0;
}

#nav2 ul {
	padding: 0;
	margin: 0;
}

#nav2 li {
	list-style:none;
	border-bottom: 1px solid #666;
}

#nav2 li a {
	display: block;
	text-decoration: none;
	padding: 4px;
	background-color: #fb7008;
	font-size: 0.9em;
	color: #000;
}

#nav2 li a:hover {
	background-color: #ffb109;
}

#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: center;
}

#maincontent h1 {
	text-align: center;
}

#slinks ul {
	text-decoration: line-through;
}

#slinks li {
	text-decoration: none;
	list-style-type: none;
}

#slinks li a {
	display: block;
	text-decoration: underline;
	text-align: left;
	list-style-type: none;
	list-style-image: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#footer {
	padding: 0 10px 0 20px;
	font-size: 0.7em;
	background-color: #0DA1F9;
	color: #600002;
}

#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 */
	color: #600002;
}

.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 wrapper that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#mainContent p {
	text-align: left;
	font-weight: normal;
}

#bod a {
		font-size: 0.8em;
}