@charset "utf-8";
body {
	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: #006;
	background-color: #000;
	font-family: Rockwell, Arial, sans-serif;
}
a {
	color: #FFF;	
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 30px;
}
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 20px;
	background: #000;
}
#navigation {
	color: #FFF;
	background-color: #000;
	height: 35px;
	font-size: 90%;
}
#navigation li {
	font-size: 110%;
	text-align: center;
	width: 198px;
	height: 35px;
	float: left;
	border: 1px solid #7b0e0e;
}
#navigation li a {
	text-decoration: none;
	font-weight: bold;
	display: block;
}
#navigation li a:hover, #navigation li a:active, #navigation li a:focus {
	font-size: 110%;
	color: #F00;
	font-weight: bold;
}
.home #home a, .gallery #gallery a, .products #products a, .contact #contact a, .promo #promo a {
	color: #F00;
	font-size: 18px;
	font-weight: bold;
}
#mainContent {
	padding: 20px 20px 20px 60px;
	background-image: url(daimages/contentbg.gif);
	background-repeat: repeat-y;
	border: 10px solid #7b0e0e;
	font: 85% Rockwell, Arial, sans-serif;
}
#mainContent h1 {
	font: 26px "Lucida Calligraphy", "Lucida Sans", sans-serif;
	color: #003cff;
}
#mainContent  h2 {
	font: 18px "Lucida Calligraphy", "Lucida Sans", sans-serif;
	color: #003cff
}
#footer {
	padding: 0 25px;
	background-color: #000;
	border: 1px solid #7b0e0e;
	color: #FFF;
	text-align: center;
	font-size: 70%;
}
#footer a {
	text-decoration:none;
}
#footer a:hover, #footer a:active, #footer a:focus {
	color: #F00;
}
#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;
}
.noTop {
	margin-top: 0px;
}
