/*basic elements*/

/* orange background for all pages */
BODY { 
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:0.8em; 
	background:#cc3300;
	text-align:center; /*for IE browsers to center the main block element http://www.webcredible.co.uk/user-friendly-resources/css/css-tricks.shtml*/
	}

/* table header for music page */
th {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:0.8em;
	font-weight:bold;
	}

td {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:0.8em;
	}

/* h1 setting for pages that use it */	
h1 {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:1.2em;
	font-weight:bold;
	text-decoration:underline;
	text-align:center;
	}

/* h2 setting for pages that use it */	
h2 {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:1em;
	font-weight:bold;
	text-decoration:underline;
	}

/* visited links */
a:visited {
	color:#CC0000;
	}

/* specific divs*/

/* white bground, set at 800px to accomodate older browsers/screens */
#main {
	background:#ffffff;
	font-family: Lucida Sans, arial, sans-serif; 
	width: 800px;
	text-align:left; /*for non-IE browsers to realign text to the left after the center command in body css above*/
	margin: 0 auto /*to center the main block element in non-iE browsers*/
	}

/* when column set up not being used on gallery page */
#info {
	background:#ffffff;
	padding:2%;
	text-align:center;
	}

/* when column set up not being used on workshop bookings page */
#leftinfo {
	background:#ffffff;
	padding:2%;
	text-align:left;
	}
	
/* far left hand column */
#first {
	position:relative;
	background:#ffffff;
	float:left;
	width:33%;
	margin 0;
	padding: 0;
	}

/* second column */
#second {
	position:relative;
	background:#ffffff;
	float:left;
	width: 65%;
	padding-right:0.5em;
	padding-top:0.5em;
	}

/* settings for nav bar */
#menu {
	background:#000000;
	font-family: Lucida Sans, arial, sans-serif; 
	width: 800px;
	}

/* settings for test nav bar */
#navcontainer ul {
	padding: 0;
	margin: 0;
	background-color: #000000;
	color: #E45E6E;
	float: left;
	width: 100%;
	font-family: Lucida Sans, arial, sans-serif;
	font-weight:bold;
	text-align: left;
	}

#navcontainer ul li { display: inline; }

#navcontainer ul li a {
	padding: 0.2em 1em;
	background-color: #000000;
	color: #E45E6E;
	text-decoration: none;
	float: left;
	text-align: left;
	border-right: 1px solid #ffffff;
	}

#navcontainer ul li a:hover  {
	color: #FF0000;
	}

/* footer */
#footer {
	clear:both;
	background:#ffffff;
	font-size:0.7em;
	text-align:center;
	width:800px;
	padding-bottom:0.5em;
	padding-top:0.5em;
	}

/* classes */
/* inset box and texts for 'announcements' */
.sidebox {
	width:200px;
	float:center;
	border-style:ridge;
	border-color:red;
	border-width: 2px;
	padding: 6px;
	margin: 10px;
	}

.sidetext {
	padding: 6px;
	margin: 10px;
	}

/* bold red text for emphasis */
.boldred {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:1em; 
	font-weight:bold;
	color:#ff0000;
	}

/* boxes for elsewhere on page */
.box {
	border-style:groove;
	border-color:red;
	border-width: 2px;
	padding: 6px;
	margin-top:2%;
	text-align: left;
	}
	
.boxtwo {
	border-style:groove;
	border-color:red;
	border-width: 2px;
	padding: 6px;
	margin-top: 2%;
	text-align: left;
	}

/* to remove white space at top & bottom of certain elements */
.nospace {
	margin-top:0;
	margin-bottom:0;
	padding-top:0;
	padding-bottom:0;
	}

/* specific classes for nav bar links */	
.nav a:active {
	font-family: papyrus, arial, sans-serif;
	text-decoration:none;
	color:#00cc00; 
	font-size:1.5em;
	font-weight:bold;
	text-align:center;
	}
	
.nav a:link {
	font-family: papyrus, arial, sans-serif;
	text-decoration:none; 
	color:#E45E6E;
	font-size:1.5em;
	font-weight:bold;
	text-align:center;
	}
	
.nav a:visited {
	font-family: papyrus, arial, sans-serif;
	text-decoration:none; 
	color:#E45E6E;
	font-size:1.5em;
	font-weight:bold;
	text-align:center;
	}
	
.nav a:hover {
	font-family: papyrus, arial, sans-serif;
	text-decoration:none; 
	color:#FF0000;
	font-size:1.5em;
	font-weight:bold;
	text-align:center;
	}

/* photo credits */
.credit {
	font-size:0.7em;
	margin: 10px;
	}

/* text separator for links page */
.separate {
	font-family: Lucida Sans, arial, sans-serif; 
	font-size:1.2em; 
	font-weight:bold;
	text-align:center;
	}
	
	
	

