@charset "utf-8";
body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #0A0A0A;
	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: #FFFFFF;
}
p {
	margin: 2px;
	padding: 3px;
	color: #999999;
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
}

#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left;
	position: relative;
}
#header {
	padding: 20px 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. */
	border-color: #F9F4E7 #F9F4E7 #990000;
	border-bottom-style: none;
	position: relative;
	margin: 0px;
}
#header h1 {
	margin: 20px 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 */
	font: normal 48px Georgia, "Times New Roman", Times, serif;
	color: #990000;
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}
#footer {
	padding: 20 10px 0;
	border-color: #990000;
	border-top-style: double;
}
#container #header p {
}

#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: #999999;
	font: 10px Verdana, Arial, Helvetica, sans-serif;
}a:link, a:visited {
	text-decoration: none;
	color: #990000;
}
.navbar {
	border-style: double none;
	border-color: #990000;
	background: #1B1B1B;
}

a:hover, a:active, a:focus {
	text-decoration: none;
	color: #CCCCCC;
}
#container #header h1 {
	margin: 0px;
	padding: 0px;
}
#contactbox {
	position: absolute;
	top: 0px;
	width: 240px;
	left: 750px;
	height: 60px;
	line-height: normal;
	text-align: right;
	padding-top: 40px;
}
h3 {
	margin: 0px;
	padding: 0px 0px -5px;
	line-height: normal;
	color: #958489;
	font-style: italic;
}
