@charset "UTF-8";
body  {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.9em;
	background-image: url(../brickpics/bricks.jpg);
	background-repeat: no-repeat;
	background-color: #000000;
	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: #ffffff;
}
body em {
	color: #F00;
	font-style: normal;
}
body a {
	text-decoration: none;
	color: #69C;
}
body h4, h5 {
	font-weight: normal;
}
body img {
	border: none;
}
.container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.header {
	padding: 0 50px 50px 20px;
} 
.header h3 {
	color: #ffffff;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.05em;
	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 */
}
.sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	color: #ff0000;
	background: #000000;
/*	background-image: url(../brickpics/sidebarbg.png); */
	padding: 10px 10px 10px 20px;
}
.sidebar p a {
	font-size: 1.05em;
	color: #69C;
}
.sidebar h1 {
	text-align: left;
	font-size: 1.05em;
	color: #FFF;
}
.sbtitle a {
	color: #F00;
	text-decoration: none;
	font-size: 1.05em;
}
.sbdate a {
	color: #F00;
	text-decoration: none;
	font-size: 0.85em;
}
#iekludge3 {
	font-size: 0.8em;
	text-decoration: none;
}
.mailinglist a {
	color: #69C;
	text-decoration: none;
}
.sidebar input {
	size: 80px;
	border: 1px solid red;
	font-size: 1.05em;
}
#activeshows {
	display: none;
}
.content { 
	margin: 0 0 0 0;
	padding: 0.5px 50px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #990000;
}
.staticdiv {
	width: 625px;
	margin: 0 270px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #content div's text to fill the #sidebar space when the content in #sidebar ends. */
	display: block;
	background-color: black;
	padding: 15px 25px 15px 25px;
	color: #FFF;
}
.staticdiv h3 {
	color: #FFF;
}
.staticdiv th {
	background-color: #600;
	padding: 10px 0 10px 0;
	color: #CCC;
	font-size: 0.8em;
	padding-left: 10px;
}
.staticdiv th a {
	color: #FFF;
}
.staticdiv td {
	border: 2px solid #600;
/*	padding: 5px; */
}
.staticdiv td a {
	color: #FFF;
	font-size: 0.9em;
}
.preview {
	margin: 0 270px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #content div's text to fill the #sidebar space when the content in #sidebar ends. */
	display: block;
	background-image: url(../brickpics/poster.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding: 20px 25px 20px 25px;
	text-align: center;
	height: 700px; /* min-height */
}
.preview h1 {
	text-transform: uppercase;
}
.preview h2, h3 {
	color: #333;
}
.preview a {
	color: #990000;
}
.preview img {
	border: none;
}
.detail {
/*	width: 1000px;   using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 0 0 0;
	display: block;
	background-color: #000;
	padding: 10px;
	color: #FFF;
}
.detail h3 {
	color: #FFF;
}
.detail td {
	font-size: 0.9em;
	border: 2px solid #600;
	padding: 5px;
}
.detail th {
	background-color: #600;
	color: #000;
	padding-left: 10px;
	text-align: left;
}
.pressy p {
	font-family: "Garamond", "Times New Roman", Times, serif;
	font-size: 1.05em;
}
.footer {
	margin-top: 35px;
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #000;
} 
.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 */
	text-align: right;
	color: #FFF;
}
.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;
}
#sddm { /* here begins the css for the navigation menus */
	margin: 0;
	padding: 0;
	z-index: 30;
}
#sddm li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 192px;
	text-align: left;
}
#sddm li a
{
	display: block;
	margin: 0 1px 0 0;
	padding: 4px 10px;
	background: #000;
	color: #F00;
	text-decoration: none;
	font-size: 1.05em;
	font-weight: bold;
	text-transform: uppercase;
}

#sddm li a:hover {
	background: #990000;
	color: #FFF;
}

#sddm div {
	position: absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: #000;
	font-weight: normal;
	border: 1px solid #333333;
}

	#sddm div a	{
		position: relative;
		display: block;
		margin: 0;
		padding: 5px 10px;
		width: 189px; /* min-width */
		white-space: nowrap;
		text-align: left;
		text-decoration: none;
		background: #000;
		color: #F00;
		font-weight: normal;
	}
	
		#sddm div a:hover {
			background: #990000;
			color: #FFF;
			font-weight: normal;
		}
