
* { /* default for entire site*/
	margin: 0;
	padding: 0;
}

body {
	background: #A17461 url(../images/img01.jpg) repeat-x;
	/*Background colour is brown. This wouldn't matter since image is opaque except for small area at bottom not covered by image.*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #DFFFFF; /*changed from #B1C0C7 to make text colour brighter*/
}

form {
}

input, textarea {
	font: normal 1em Arial, Helvetica, sans-serif;
}

input.text {
}

input.button {
}

h1, h2, h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}

concertH1{
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #9E9D89;
}

h1 {
	letter-spacing: -.05em;
	font-size: 2.2em;
}

h2 {
	margin-top: 1em;
	letter-spacing: -.05em;
	font-size: 1.4em;
}

h3 {
	margin-top: 1em;
}

p, ul, ol {
	margin-top: 1em;
	line-height: 160%;
}

ul {
	list-style: disc; /*Changed from none*/
}

ul li {

}

ol {
	margin-left: 1em;
	list-style-position: inside;
}

blockquote {
	margin-left: 1em;
	padding-left: .75em;
/*	border-left: 1px solid #9E9D89;  Removed */
}

a {
	color: #FFFFFF;
	text-decoration: underline; /*This added to replace default of underline*/
}

a:hover {
	text-decoration: underline; /*Changed from none*/
}

img {
	border: 4px solid #000000;
	}



/* Page */

#page {
	width: 852px;
	margin: 0 auto; /*Means 0 top and bottom, auto left/right, so centres horizontally - affected by HTML type declarationt*/
	background: url(../images/img03.jpg); /*852x1 Defaults to repeat. This is horiz bar, with gradated shades of black/brown*/
}

#pagebg {
	/*Image (852x202)  fills space below img03*/
	background: url(../images/img06.jpg) no-repeat left bottom; /*Gives more uniformly dark area at bottom of page*/
}

/* Content */

#content {
	float: left;
	width: 474px; /*This is inner width for text. Outer width including padding is 474+20+46 = 520*/
	padding: 26px 20px 20px 46px; /*top right bottom left*/
	background: url(../images/img04.jpg) no-repeat; /*540x506 Left side of frame*/
}

.post {
}

.post .title {
	padding-top: 20px;
	text-align: center;
}

.post .title a {
	text-decoration: none;
}

.post .title a:hover {
	text-decoration: underline;
}

.post .meta {
	margin: 0;
	padding-bottom: 10px;
	border-bottom: 1px dashed #748AAF;
	text-align: center;
	text-transform: uppercase;
	color: #0BEFFF; /*Changed from 849AC1 to get lighter colour for clock text*/
}

.post .meta a {
	text-decoration: none;
	color: #B1C0C7;
}

.post .meta a:hover {
	text-decoration: underline;
}

.members a { /* This and next to highlight links on Members' page*/
	color: #FFFF77; /* yellow */
	text-decoration: underline
}

.members a:visited {
	color: #999955; /* faint yellow */
}

/* Sidebar */

/*#sidebar {
	float: right;
	width: 240px;
	padding: 26px 46px 20px 26px;
	background: url(../images/img05.jpg) no-repeat;
}*/

#sidebar {
	float: right;
	width: 240px;
	padding: 0px 46px 20px 26px;
	background: url(../images/img05.jpg) no-repeat;
}

#sidebar ul {
	padding: 0;
	list-style: none;
}

#sidebar li {
	margin-bottom: 1em; /*Changed from 3em*/
	padding: 0;
}

#sidebar li ul {
}

#sidebar li li {
	margin: 0;
	padding: 5px 10px;
	border-bottom: 1px dotted #748AAF;
}

#sidebar h2 {
	margin: 0;
	padding-bottom: .5em;
	border-bottom: 1px solid #748AAF;
	text-align: center;
}

#sidebar a {
	text-decoration: none;
}

#sidebar a:hover {
	text-decoration: underline;
}

/* Footer */

#footer {
	width: 852px;
	margin: 0 auto;
	padding: 15px 0;
	background: url(../images/img07.jpg) no-repeat;
	text-align: center;
}

#footer p {
	margin: 0;
	font-size: 0.9em; /*Changed from .8em*/
	color: #DFB3AD; /*Changed from CFA39D*/
}

#footer a { /*Not used*/
	color: #DFB3AD; /*Changed from CFA39D*/
}