body {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0;
	background: #000 url(../images/splat.jpg) no-repeat top center fixed;
}

header, nav, article, footer, address {
	display: block;
}

#body-wrapper {
	width: 990px;
	margin: 10px auto;
	color: #fff;
	background: #333;
	-moz-border-radius-topleft: 28px;
	-webkit-border-top-left-radius: 28px;
	border-top-left-radius: 28px;
	-moz-border-radius-bottomright: 28px;
	-webkit-border-bottom-right-radius: 28px;
	border-bottom-right-radius: 28px;
	border: solid 1px #999;
}

.clearbox {
	height: 0px;
	font-size: 0px;
	clear: both;
}

/* header region */
header {
	height: 100px;
	padding: 10px;
	-moz-border-radius-topleft: 28px;
	-webkit-border-top-left-radius: 28px;
	border-top-left-radius: 28px;
	background: #666 url(../images/header-bg.png) repeat-x top left;
	background: -moz-linear-gradient(top, #999999, #666666);
	background: -webkit-gradient(linear, left top, left bottom, from(#999999), to(#666666));
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#999999', EndColorStr='#666666');
	text-shadow: 0 1px 0px rgba(255, 255, 255, 0.75);
}

header div#site-name {
	float: left;
	font-size: 56pt;
	margin-top: -12px;
	color: #333;
}

/* navigation region */
nav {
	background: #333 url(../images/nav-bg.png) repeat-x top left;
	background: -moz-linear-gradient(top, #454545, #333333);
	background: -webkit-gradient(linear, left top, left bottom, from(#454545), to(#333333));
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#454545', EndColorStr='#333333');
	padding: 5px;
	border-top: solid 1px #999;
	border-bottom: solid 1px #666;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

nav li {
	float: left;
	margin-right: 3px;
	padding: 3px 15px;
	font-size: 11pt;
	text-shadow: 0 1px 0px #666;
}

nav li:hover {
	text-shadow: 0 1px 0px #069;
}

nav li a:link, nav li a:active, nav li a:visited {
	color: #ccc;
	text-decoration: none;
}

nav li a:hover, nav li a:focus {
	color: #fff;
	text-decoration: none;
}

/* content region */
#content {
	padding: 5px 10px;
	min-height: 300px;
}

/* footer region */
footer {
	padding: 5px;
	-moz-border-radius-bottomright: 28px;
	-webkit-border-bottom-right-radius: 28px;
	border-bottom-right-radius: 28px;
	background-color: #333;
	text-align: center;
	border-top: solid 1px #666;
	font-size: 11pt;
}

