/* Zero margin and padding on all elements */
* {
  margin: 0;
  padding: 0;
}

body {
	background: #101010;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
}

#wrapper {
	top: 0;
	width: 1050px;
	position: relative;
	left: 50%;
	margin-left: -525px;
}

#header {
	height: 120px;
	background: url(../images/header.jpg) no-repeat;
}

#header h1 {
	display: none;
}

#menu {
	height: 80px;
	background: url(../images/menu.jpg) no-repeat;
}

#menu ul {
	list-style: none;
	padding-left: 88px;
}

#menu li {
	display: inline;
}

#menu a {
	display: block;
	float: left;
	padding: 22px 9px 25px 23px;
}

#content {
	height: 100%;
	padding: 10px 115px;
	background: url(../images/content.jpg) repeat-y;
}

#content h1 {
	padding-top: 30px;
	font-size: 25px;
	clear: left;
}

#content p {
	padding-bottom: 20px;
	font-size: 14px;
	line-height: 20px;
}

#content quote {
	font-style: italic;
}

#content img {
	float: left;
	border: 3px solid #333333;
	padding: 3px;
	margin: 0px 25px 25px 0px;
}

.hr {
	height: 5px;
	margin-top: 10px;
	margin-bottom: 30px;
	background: url(../images/separator.jpg) no-repeat center;
}

.hr hr {
	display: none;
}

#footer {
	clear: both;
	height: 68px;
	background: url(../images/footer.jpg) no-repeat left top;
}

#footer p {
	padding: 70px 115px 10px 115px;
	text-align: center;
}

a {
	font-weight: bold;
	color: #CCCCCC;
}

a:hover {
	text-decoration: none;
}