@charset "utf-8";
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;
}
.twoColFixRtHdr #container { 
	width: 780px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background-color:#FC9; 
	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. */
} 

.twoColFixRtHdr #header h1 {
	margin: 0;
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixRtHdr #header h3 {
	text-align: center; 
	width:25em; 
	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 */
	font: 1.4em "Times New Roman", arial, sans-serif; 
	font-style: italic;
	text-align:center; 
	line-height: 1.2em;
	padding-bottom: .5em;
	}

/* the horizontal menu starts here */
div#listmenu * {
	z-index: 10;
	}

div#listmenu {
	width:100%; 						/* makes the div full width */
	float:left; 						/*makes the div enclose the list */
	border-top: 2px solid #C1494F;		/* draws line on top edge of div */
	border-bottom: 2px solid #C1494F;	/* draws line on bottom edge of div */
	font-size:.9em;						/* Sets font size */
	background-color: #FFFFFF; 				/* colors the div */
	}
	
div#listmenu ul {
	margin:0 0 0 48px;					/* indents ul from edge of container */
	}
	
div#listmenu li {
	float:left;							/* causes the list to align horizontally instead of stack */
	position:relative; 					/* positioning context for the absolutely positioned drop-down */
	list-style-type:none;				/* removes the bullet off each list item */
	background-color: #FFFFFF; 			/*sets the background of the menu items */
	}
	
div#listmenu li:hover { 
	background-color: #947F8A; 				/*sets the background of the menu items */
	color: #FFFFFF;
	}
	
div#listmenu a {
	display: block;
	padding: 0 12px;					/*creates space each side of menu item's text */
	text-decoration: none;	 			/* removes the underlining of the link */
	color: #65271A;						/* sets the type color */
	}
	
div#listmenu a:hover {
	color: #FFFFFF;
	background-color: #947F8A; 		
	}
						/* the horizontal menu ends here */
						
						/* the drop-down starts here */
div#listmenu ul li ul {
	margin: 0;
	position:absolute; 			/* positions the drop-down ul in relation to its relatively positioned li parent */
	width:9em; 					/*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	margin-left: -40px; 			/*aligns the drop exactly under the menu */
	font-size: 1em;
	}
	
div#listmenu ul li ul li {
	width:100%; 						/* makes the list items fill the list container (ul) */
	border-left:1px solid #CE996F; 		/*  three sides of each drop-down item */
	border-bottom:1px solid #CE996F;
	border-right:1px solid #CE996F;
	}
	
div#listmenu ul li ul li:first-child {
	border-top:1px solid #CE996F; 		/*the top edge of the dropdown */
	}
									/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {
	display:none;
	} 								/* conceals the drop-down when menu not hovered */
	
div#listmenu ul li:hover ul {
	display:block;
	} 								/* shows the drop-down when the menu is hovered */

div#listmenu ul li ul li:hover ul {
	visibility:visible;
	font-weight: bold;
	}

.twoColFixRtHdr #sidebar1 {
	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-color:#FC9; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 12px;
	font-size: .8em;
	line-height: 1.5em; 
}

.twoColFixRtHdr #sidebar1 h3 {
	text-align:center;
}

.twoColFixRtHdr #mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-indent: 2em;
	line-height: 1.5em; 
} 

.twoColFixRtHdr #mainContent ul { 
	list-style-position: inside;
	marign-left: 0; padding-left: 0;
	}

.twoColFixRtHdr #mainContent ul li { 
	marign-left: 0; padding-left: 0;
	}


div#footer {
	width: 780px; 
	font-size: 0.75em; 
	padding-bottom: 4px; 
	padding-top: 4px; 
	background-color:#FC9;
	border-top: 2px solid #C1494F;		/* draws line on top edge of div */
	}
	
div#footer ul {
	margin:0 0 0 300px;			/* indents ul from edge of container */
	}
	
div#footer li {
	display: inline; 
	}
	
div#footer li:unknown {
	border-left: 0px
	}
	
div#footer ul li a {
	text-decoration: none;
	color: #947F8A;
	}
	
div#footer ul li a:hover {
	color: #FFFFFF;
	background-color: #FC9;
	}
	
div#footer ul li a:visited {
	text-decoration: none;
	}

.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;
}
.left-float {
    float: left;
    margin: 0 10px 5px 10px;
}

.right-float {
    float: right;
    margin: 0 10px 5px 10px;
}
