@charset "UTF-8";
body {
	font: 83.5% Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #2c1d22;
 /* fallback */ background-color: #2c1d22; /* Safari 4-5, Chrome 1-9 */ background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#efdfe0), to(#2c1d22)); /* Safari 5.1, Chrome 10+ */ background: -webkit-linear-gradient(top, #2c1d22, #efdfe0); /* Firefox 3.6+ */ background: -moz-linear-gradient(top, #2c1d22, #efdfe0); /* IE 10 */ background: -ms-linear-gradient(top, #2c1d22, #efdfe0); /* Opera 11.10+ */ background: -o-linear-gradient(top, #2c1d22, #efdfe0); }


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {
	font-size: 180%;
	font-weight: normal;
	color: #46060b;
}
h2 {
	font-size: 110%;
	color: #46060b;
}
a img, a { 
	border: none;
	outline: none;
}

a {
	text-decoration: underline;
}

a:link {
	color: #42413C;
}
a:visited {
	color: #6E6C64;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
}

.container {
	width: 1000px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.header {
	background: #fff;
	border: 1px solid #666;
}
.sidebar1 {
	background-color: #efdfe0;
	float: right;
	width: 200px;
}
.sidebar1 h2 {
	margin: 10px 0;
}
.content {
	padding: 20px 0 10px 10px;
	width: 790px;
	float: right;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { 
	background: #a02c00;
	color: #fff;
	padding: 5px 5px 5px 15px;
	display: block; 
	width: 180px;  
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background: #46060b;
}

/* ~~ Subscribe Form ~~ */
#subForm {
	padding-left: 10px;
}
span.label,span.spacer,span.multiple span {width:100px;float:left;} 
span.multiple {float:left;} 
input {width: 150px;}
.button {
	width: 80px;
	margin: 10px 0px 15px 0px;}
div.clear {clear:both;padding-top:5px;} 

/* ~~ News ~~ */
#shows {
	color: #fff;
	background-color: #a02c00;
	padding: 10px 0px;
}
#shows a {
	color: #fff;
	text-decoration: underline;
}

/* ~~ The footer ~~ */
.footer {
	color: #fff;
	text-align: center;
	padding: 10px 0;
	background-color: #43060b;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
.footer a {
	color: #fff;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
