/* CSS Document */

* {
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

html {
	background-color: #242424;
}

body {
	background-image: url(images/background.png);
	background-position: center;
	background-repeat: repeat-y;
	height: 100%;
}

#header {
	height: 185px;
	width: 100%;
	background-image: url(images/top-bar.png);
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	top:0;
	left: 0;
	z-index: 120;
	border-top: 2px solid #e99e22;
}


#footer {
	height: 183px;
	width: 100%;
	background-image: url(images/footer2.png);
	background-position: center;
	background-repeat: no-repeat;
	margin-top: -100px;
	position: fixed;
	bottom: 0;
	z-index: 120;
	margin: 0 auto;
	border-bottom: 2px solid #e99e22;
}

#nav {
	width: 850px;
	margin: 0 auto;
	text-align: right;
}

#wrapper {
	width: 1000px;
	margin: 2px auto;
	background-color: #000;
}

#content {
	width: 850px;
	margin-left: 75px;
	margin-right: 75px;
	margin-top: -70px;
	color: white;
}

.padded {
	padding: 10px;
}

td {
	vertical-align: top;
	width: 250px;
	padding: 10px;
}


a img {
	border: none;
	margin: 5px;
}

dl {
	padding: 10px;
}

dt {
	font-size: 120%;
	padding-bottom: 10px;	
}

dd {
	font-size: 100%;
	padding-bottom: 20px;
	padding-left: 10px;	
}