body {	
	/* default font */
	font-family: garamond, georgia, serif;
	font-size: 15pt;
	font-weight: normal;
	line-height: 1.33em; /* line height is ~ 20 pts */
	background-color: #D2691E;
}

* { behavior: url(iepngfix.htc); }

/* a container for all page elements. Allows us to
   center the content in the browser window. */
#Container {
	width: 600px;
	
	/* correctly used by Firefox etc. to center the container div. We've included a DOCTYPE
	   declaration in our HTML to force IE6 to work in strict mode, and this also works there. */
	margin: 3em auto;
	
	/* override the central alignment in the container */	
	text-align: left;
}

/* the page header used to show the text COBA FYNN. This
   styling overrides it with a nicely rendered image. */
#BandName {
	background-image: url("images/logotrans.png");
	background-repeat: no-repeat;
	width: 600px;
	height: 97px;
	overflow: hidden;
	text-indent: -100em;
	padding-bottom: 10px;
	border-bottom: 2px solid black;
	margin-bottom: 7px;
}

/* navigation links at the top of the page */
#Navigation {	
	height: 39px;
	width: 600px;
	padding-top: 5px;
	margin: 0em auto;
	border-bottom: 2px solid black;
}

#Navigation a {	
	display: block;
	float: left;
	background-repeat: no-repeat;	
	overflow: hidden;
	text-indent: -100em;
	margin-left: 7px;
	border: 0px;
	padding: 0px;
}

#Navigation #News {
	background-image: url("images/news.png");
	width: 76px;
	height: 22px;
	margin-right:15px;
}

#Navigation #Gigs {
	background-image: url("images/gigs.png");
	width: 64px;
	height: 22px;
	margin-right:15px;
}

#Navigation #Music {	
	background-image: url("images/music.png");	
	width: 86px;
	height: 22px;
	margin-right:15px;
}

#Navigation #Pictures {
	background-image: url("images/pictures.png");
	width: 141px;
	height: 22px;
	margin-right:15px;
}

#Navigation #Contact {
	background-image: url("images/contact.png");
	width: 128px;
	height: 22px;
}

/* a div enclosing all posts */
#Posts {
	clear: both;
}

/* the date shown to group posts */
.DateHeader {
	display: none;
}

/* The entire post */
.Post {
	text-align: justify;
	border-top: 2px solid black;
}

/* The post footer, consisting of the date, byline and permalink */
.Post .Footer {
	text-align: right;
	margin: 0.5em 0;
}

/* prepend the words "New date!" */
span.NewDate:before {
	content: "New date! ";
}