@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #08090E;
}
.quoter {
	font-weight: bold;
	color: #1E2D37;
	text-align: right;
}
.body1 #sidebar1 .quoter{
	color: #789C33;
	text-align: right;
	font-style: italic;
	font-weight: normal;
}


h1{
	font-size: 14px;
	font-weight: bold;
	color: #7D151B;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #303F1B;
}
h2{
	font-size: 11px;
	font-weight: bold;
	color: #51573B;
	text-decoration: underline;
	margin-bottom: -10px;
}
#shows img {
	padding-right: 15px;
}

h3{
	font-size: 12px;
	font-weight: bold;
	color: #789C43;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #303F1B;
	margin-bottom: -5px;
}
h4 {
	font-size: 9px;
	font-weight: bold;
}

.body1 #header {
	background-image: url(images/top_bar.jpg);
	height: 180px;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	font-size: 12px;
	font-weight: bold;
	color: #89A8BE;
} 
.body1 #header a:link{
	font-size: 12px;
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #header a:visited{
	font-size: 12px;
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #header a:hover{
	font-size: 12px;
	font-weight: bold;
	color: #89A8BE;
	text-decoration: none;
	padding-left: 10px;
}

.body1 #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #89A8BE;
} 
.body1 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.body1 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	background-color: #400B0E;
	color: #89A8BE;
	padding: 15px;
}
.body1 #sidebar1 strong{
	color: #789C43;
}
.body1 #sidebar1 a:link{
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #sidebar1 a:visited{
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #sidebar1 a:hover{
	font-weight: bold;
	color: #89A8BE;
	text-decoration: underline;
}
.body1 #mainContent {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
} 
.body1 #mainContent a:link{
	font-weight: bold;
	color: #400B0E;
	text-decoration: underline;
}
.body1 #mainContent a:visited{
	font-weight: bold;
	color: #400B0E;
	text-decoration: underline;
}
.body1 #mainContent a:hover{
	font-weight: bold;
	color: #7D151B;
	text-decoration: none;
}
.body1 #footer {
	padding: 0 10px 0 20px;
	color: #89A8BE;
	background-color: #400B0E;
} 
.body1 #footer a:link{
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #footer a:visited{
	font-weight: bold;
	color: #789C43;
	text-decoration: none;
}
.body1 #footer a:hover{
	font-weight: bold;
	color: #89A8BE;
	text-decoration: underline;
}
.body1 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.body1 #container #sidebar1 p strong {
	text-align: right;
}

