@charset "utf-8";

#menu {
	height: auto !important;
	line-height: 14px;
	text-align: left !important
	background: yellow;
	font-size: 90%;
	
	
	border-top-width: 2px;
	border-top-style: double;
	border-top-color: black;
	color: yellow;
	float: left;
	width: 100%;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

#banner {
	background: black;
	border-bottom-color: yellow;
	border-bottom-style: double;
	border-bottom-width: 2px;
	border-top-color: yellow;
	border-top-style: solid;
	border-top-width: 1px;
	color: white;
	}
	
#container { 
	width: 98%;  /* this will create a container 80% of the browser width */
	background: #fffacd;
	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. */
	color: black;
} 
#header { 
	background: black; 
	padding: 0 0px;  /* 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. */
	color: yellow;
} 
#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 */
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: black;
	border-top-style: double;
	border-top-color: yellow;
	border-top-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: yellow;
	border-bottom-width: 1px;
	color: yellow;
} 
#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: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
	font-size: .8em;
	font-style: italic;
	color: yellow;
	background: black;
	text-align: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
