@charset "UTF-8";
/* CSS Document */
/*Black, gray, white, and red Color Palette
#000000 - Black
#990000 - (no official name; dark red)
#333333 - Gray 20
#FFFFFF - White
#BBBBBB - (no official name; pale gray)
*/
body {
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
}
#wrapper {
	margin: 30px;
	padding: 10px;
	width: 1000px;
	height: auto;
	background-color: #500;
}
#header {
	padding: 10px;
	text-align: center;
	background-color: #333;
	border: 2px solid #000;
}
#header h1 {
	font-size: 3em;
	text-transform: uppercase;
}
ul>li {
	list-style: none;
	font-weight: bold;
	line-height: 200%;
	clear: both;
}
ul>li>ul>li {
	font-weight: normal;
	line-height: 125%;
	clear: none;
}
#navigation {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#navigation li {
	display: inline;
	padding: 4px;
	border: 1px solid #000;
	background-color: #333;
}
#navigation a {
	text-decoration: none;
}
#navigation a:link, #navigation a:visited {
	color: #BBB;
}
#navigation a:hover {
	color: #FFF;
	text-decoration: underline;
}
h2 {
	text-align: center;
	clear: both;
}
#nowPlaying img {
	float: left;
	padding-right: 5px;
}
blockquote {
	font-style: italic;
	font-size: 0.9em;
}
table {
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	background-color: #333;
	border: 1px solid #000;
}
th, td {
	padding: 5px;
}
#disclaimer {
	text-align: center;
	font-weight: bold;
	line-height: 200%;
	text-transform: uppercase;
	font-size: 0.7em;
}