/*CSS for Half Moon's Website*/

/*
Colors:
Red: rgb(167, 30, 34), A71E22
White: rgb(255, 255, 255) FFFFFF
Green; rgb(125, 155, 61) 7D9B3D
Amber: rgb(212, 135, 47) D4872F
Brown: rgb(146, 82, 10) 92520A
*/

html, body {
	margin: 0;
	padding: 0;
	background: rgb(1, 1, 1);	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	font-family: Arial, Helvetica, sans-serif;
}

#body {
	font: 100% Arial, Helvetica, sans-serif;
	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 */}

#container {
	background: rgb(255, 255, 255); /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: auto;
	margin-left: auto;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	width: 800px;
}

#header {
	color: #FFFFFF;
	clear: both;
	font-size: 75px;
	background: #000033 url(images/banner_back2.png);
	height: 200px;
	text-align: center;
	border-right: #FFFFFF;
}

/*	border: 2px solid rgb(50, 50, 50);
    background: rgb(255, 255, 255);
    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. */

#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: 0 0;
}

#navbar2 {
	height: 30px;
	width: 800px;
	background-image: url(images/nav_back.png);
	background-repeat: repeat-x;
	border: 0px none #FFFFFF;
}

#navbar2 ul {
    margin: 0px;
    padding: 0px;
    font: Arial, Helvetica, sans-serif;
    color: rgb(225, 225, 225);
    line-height: 30px;
    white-space: nowrap;
}

#navbar2 li {
    list-style-type: none;
    display: inline;
}

#navbar2 li a {
    text-decoration: none;
    padding: 5px 25px;
    color: rgb(200, 200, 200);
    font-weight: bold;
}

#navbar2 li a:link {
    color: rgb(225, 225, 225):
}

#navbar2 li a:visited {
    color: rgb(255, 255, 255);
}

#navbar2 li a:hover {
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-image: url(images/nav_back.png);
    background-repeat: repeat-x;
}

#tab {
	background-image:url(images/tab.png)
}

#mainContent {
	background: rgb(255, 255, 255);
	margin-right: 20px;
	margin-left: 20px;
	margin-bottom: 20px;
}

#footer {
	background: rgb(1,1,1);
	text-align: center;
	font-size: 36px;
	color: #FFFFFF;
}

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