@charset "UTF-8";
/* CSS Document */

/*********************** General styling ************************/
body {
    margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
    background-color:#ccc;
}

/* take underlining & image borders off of links */
a {
  text-decoration: none;
}
a img {
  border: 0px;
}
a:hover {	
	text-decoration: underline;
}


/* for errors in mailing list signup */
.normal {
}
.error {
	color:#C00000; 
/*	font-weight: bold; */
}


/*********************** DIV descriptions ************************/

/* a wrapper to get a centered layout */
#page {
    width: 800px;
	height: 600px;
	background: url(images/background.jpg) no-repeat;
    margin-left: auto;
    margin-right: auto;
	position: relative; /* needed so contents are positioned relative to this container */
}


#page-inner {
	width: 628px;  /* Images are 628px wide */
	height: 600px;
    margin-left: auto;
    margin-right: auto;
	position: relative; /* needed so contents are positioned relative to this container */
}
	

/* the header */
#header {
	position: absolute; /* relative to page-inner */
	width: 100%;
	top: 28px;
	font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #3c362d;
}
#header a {
 color: #3c362d:
}
#header a:link,
#header a:visited {
 color: #3c362d;
}
#header a:hover {
 color: #ab2704;
}



/* the navigation bar */

#navbar {
  position: absolute; /* relative to page-inner */
  height: 23px;
  width: 100%;
  top: 120px;
  border: 0;
  background-color: #2232bc;
  text-transform: uppercase;
}
#navbar ul {
 margin: 0;
 padding: 0;
 font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif;
 font-size: 13pt;
 color: #ffffac;
 white-space: nowrap;
 text-align: center;
}
#navbar li {
 list-style-type: none;
 display: inline;
/*
 width: 19%;
 text-align: center;
*/
}
#navbar li a {
 padding: 0px 30px;     /* TODO: convert fixed spacing to fill the box */
 color: #ffffac;
}
#navbar li a:link,
#navbar li a:visited {
 color: #ffffac;
}
#navbar li a:hover {
 color: #fff;
 text-decoration: none;
}


/* the main content */

#main {
	position: absolute;  /* relative to page-inner */
	top: 152px;
	width: 100%;
	height: 420px;
/* border: 1px solid #666;  /* TEMPORARY */
}


/* optional left and right columns for the main content */
#main-left {
	width: 50%;
	float: left;
}

#main-right {
	width: 48%;
	float: right;
	overflow: auto;
	height: 420px;
	padding: 0 6px 0 0;  /* a little space in case we have a slider on SHOWS page */
}


/* site-specific colors */

.red { color: #ab2704; }
.green { color: #304400; }


/* MEDIA - page styles */

h2 {
	color: #68662c;  /* olive */
	font-size: 18px;
	font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif;
	font-weight: normal;
	border: 0;
	margin: 0;
	padding: 0;
}
/*
.media h2 {
	color: #68662c;  
	font-weight: bold;
	font-size: 14px;
	font-family: Helvetica, Arial, sans-serif;
	border: 0;
	margin: 0;
	padding: 0;
}
*/
.media ul {
	list-style-type: none;
	line-height: 1.5em;
	border: 0;
	padding: 0;
	margin: 0 0 2em 0;
	

}

.media a {
	font-variant: small-caps;
	color: #304400;  /* dark green */
	font-weight: bold;
	font-size: 14px;
	font-family: Helvetica, Arial, sans-serif;
}

/* CONTACT - mailing list signup form */
#signup {
	position: relative;
	top:  84px;
	margin-left: auto;
	margin-right: auto;
	align: center;
	text-align: center;
	color: #2232bc;
	background-color: #ffffac;
	font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif;
	font-size: 13pt;
	padding: 1em;
}

#signup a {
 font-weight: normal;
 color: #2232bc;
}
#signup a:link,
#signup a:visited {
 color: #2232bc;
}
#signup a:hover {
 color: #ab2704;
}



/* SHOWS page */
.event {
	border-top: 3px #555500 solid;
	margin-top: 1em;
}

.event-date {
	float: right;
 	font-size: 13pt;
	line-height: 1.154em;
	width: 2.5em;
	height: 2.5em;
	background-color: #555500;
	font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif; 
	font-variant: small-caps;
/*	font-weight: bold; */
	color: #ffffac;  /* light yellow */
	text-align: center;
	margin: 0 0 4px 4px;
}

.event-name {
	font-family: Impact, Arial Narrow, Arial, Helvetica, sans-serif;
 	font-size: 13pt;
	font-variant: small-caps;
	line-height: 1.154em;  /* use less space with small caps */
/*	font-weight: bold; */
	color: #555500;  /* dark olive */
}

.event-details {
/*	clear: both; */
	/* color: #555500;  /* dark olive */
	color: #304400;
}

.event-details a {
	color: #333366;	
}

/*
hr.event {
	color: #555500;
	background-color: #555500;
	margin: 1em 0 0 0;
	height: 3px;
	
}
*/