﻿* { /* this will set padding and margins to 0 to ALL ELEMENTS */
	margin: 0;
	padding: 0;
}

html {
	font-family: Arial, Helvetica, sans-serif;
	color: #006600;
	color: black;  /* new 090325 */
	font-size: 72%; 
}

body { /* yes ... body is a tag too ;) */
	width: 800px;
	margin: 0 auto; /* this will center the site */
	text-align: center; /* you need need to center the site on old browsers */
	background-color: #660;
}

div {
	text-align: left;
	position:static;
	width: inherit;
	float:left;
	border: 0px olive groove; /* new 090325 */
}

p {
	line-height: 1.4em;
}

a {
	color: #006600;
	color: black;  /* new 090325 */
	text-decoration: underline;
}
a:visited {
	color: #006600;
	color: black;  /* new 090325 */
}
a:hover {
	color: #003300;
	color: olive;  /* new 090325 */
}
a:active {
	color: #CC3300;
}


/* STUFF FOR MAIN PAGES */
div#wrapper {
	width: 800px;
	background-color:white;
}

div#main { 
	position: absolute; 
	top: 184px;
	left: 0px;
	width: 800px; /* not inheriting in ie for some reason.  stupid IE! */
	background-color:white;
}

div#pagetitle {  /*banner TEXT for header, changes each page*/
	position: absolute;
	left: 2px; 
	top: 112px;
	padding: 6px;
	width: auto;
	z-index:500;
	font-family: "Times New Roman", Times, serif;
	color: white;
	font-size: 3.4em;
	background-color: transparent;
	white-space:nowrap;
}

/* EVENTS BOX ON RIGHT SIDE OF MAIN PAGES*/

div#eventlistwrapper {/* top-level div for upcoming events list box */
	float: left;
	width: 274px;
	top:0px;
	padding-top: 4px;
}

p#eventlistheading { /* Upcoming Events title box*/
	color: olive;
	font-size: 1.5em;
	font-weight:bold;
	height: 1.5em;
	text-align: center;
	display: block;
	margin-bottom: .1em;
	margin-top: .5em;
}

p#eventslocation { /* All events at...*/
	text-align: center;
	margin-bottom: .2em;
	margin-top: .1em;
}

div#eventslist { /* holder div for list of upcoming concerts */
	border-style: solid;
	border-width: 1px;
	max-height: 340px;
	width: 268px;
	padding: 4px 2px 4px 4px;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: scroll;
	margin-bottom: 2em;
}

div#eventslist ul {
	margin-bottom: .5em;
	border-bottom: 1px black solid;
	list-style: none;
	display: none;
}

div#eventslist li.eventname a { /* for event names in the xml events listsings*/
	font-size: 1em;
	font-weight: bold;
	white-space: normal;
	display: block;
	text-decoration: none;
	
}

div#eventslist li.date, 
div#eventslist li.time, 
div#eventslist li.tix,
div#eventslist li.loc { /* for event details in the xml events listsings*/
	font-size: .95em;
	display: inline;
	padding-right: 4px;
}

div#eventslist li.tix a { /* for event details in the xml events listsings*/
	font-size: .8em;
	float: right;
	text-decoration: none;
	text-transform:uppercase;
	display:inline-block;
}
	
div#eventslist li.loc {
	display:block;
}

/* show all events on home page, mag events on mag page, etc. */
body.home div#eventslist ul,
body.etown div#eventslist ul.etown,
body.mag div#eventslist ul.mag,
body.tix div#eventslist ul,
body.media div#eventslist ul {
	display: block;
}

/* hide location information on specific pages */
body.etown div#eventslist ul.etown li.loc, 
body.mag div#eventslist ul.mag li.loc {
	display: none;
}

/* NEWS PAGES (default, mag, etown, etc.) */
div#news {
	width: 520px;
	top: 0px;
	left: 0px;
}

div.newsdiv {
	padding: 4px 0 4px 2px;
	width: 510px;
	margin-right: 6px;
	margin-left: 2px;
}

div.newsimg {
	position: static;
	float:left;
	display: inline;
	width:auto;
	margin-right: 6px;
	margin-top: 2px;
}

img.newsvert {
	width: 80px;
	height: auto;
}

img.newshorz {
	height: 80px;
	width: auto;
}

.newstxt {
	margin: 0px;
	padding: 6px 6px 6px 0px;
	text-align: left
}

.newshead {
	font-weight: bold;
}

/* MISCELLANEOUS STUFF ON VARIOUS PAGES*/

#facebook { /* Facebook fan box*/
	text-align: center;
	margin-top: 6px;
	margin-bottom: 6px;
	width: 276px;
}

#donationbtn { /* Box with Add to Mail List and Donate Now buttons*/
	text-align: center;
	margin-top: 6px;
	margin-bottom: 6px;
	
}

img.ticketicon { /*little TIX icons that link to online sales*/
	border-width: 0px;
	width: 18px;
	height: auto;
	margin: 2px 0 0 0;
	display:inline;
}

div#sponsors {
	background-color: white;
	text-align: center;
	padding: inherit inherit 20px inherit;
}

div#sponsors img.sponsorlogo_small, div#sponsors img.sponsorlogo { /*sponsor logos in inc_sponsors.htm */
	width: auto;
	height: auto;
	max-width: 120px;
	max-height: 80px;
	border: 0px; 
	display: inline;
	margin: 4px;
}

img.sponsorlogo_small { /*sponsor logos in inc_sponsors.htm */
	max-width: 80px;
	max-height: 60px;
}

/* FOOTER */

#footer {
	position: relative;
	height: 16px;
/*	bottom: 0px; */
	left: 2px;
	z-index: 100;
	background-color: white;
	width: 798px;
	border-top: 2px #660 solid;	
}

#footer p {
	padding: 4px;
	font-size: .8em;
	text-align: center;
	padding: 0; 
	margin: 0;
	color: #660;
}

#footer p a {
	color: #660;
}
#footer p a:visited {
	color: #660;
}
#footer p a:hover {
	color: #660;
}