body {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000; /* black as default background*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000; /* Black as default font colour*/
}

h1, h2, h3 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #000000; /* Dark */
}

h1 { font-size: 2em; }

h2 { font-size: 1.8em; }

h3 { font-size: 1.6em; }

p, ul, ol {
	margin-top: 0;
	line-height: 150%;
}

ul, ol {
}

a {
	text-decoration: none;
	color: #B94E0E; /* orange */
}

a:hover {
	text-decoration: underline
}

/* wrapper - this is "around" header including nav bar*/
#wrapper {
	margin: 0 auto;
	padding: 0;
	}

/* Header */
#header {
	width: 960px;
	height: 260px;
	margin: 0 auto;
	background: url(/stylesheets/images/wherry.jpg) no-repeat left top; /* default in case java does not load */
/* this could have fixed words on it? */
}

/* nav */
#nav {
	width: 960px;
	height: 35px;
	line-height: 300%;
	margin: 0 auto;
	padding: 0px 0px 10px 0px;  /* this adds depth to nav bar */
	background: #992323;  /* deep red */
	color: #FFFFFF;   /* white font for main menu text */
	font-size: 14px;
	text-align: center; /* puts main nav bar list centrally across page */
	list-style: none;
}

#nav li { /* first level menu */
	float: left;  /* this makes list go across nav bar */
	width: 7em; /* this is spacing of menu bar headings */ /* first menu not have this */
}

#nav ul { /* drop-down first level */
	list-style: none;
}
 
#nav li ul { /* second-level lists - this is the drop-downs */
	padding: 0px 0px 5px 10px;  /* this is spacing around the drop-down*/
	position: absolute;
	background: #992323;
	text-align: left;
	word-wrap: normal;
	width: 12em;  /* this sets width of drop-down area */
	left: -999em; /* this apparentlty hides the menu */
}

#nav a {
	display: block;
	width: 12em;  /* this needs to be same width as #nav li ul as it sets text area within*/
	padding: 5px 0px 5px 0px;
	font-weight: bolder;
	color: #FFFFFF; /* white */
	border: none;
}

#nav a:hover {
	text-decoration: underline;	
	background: #B42626;
} 

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav a:hover, #nav .current_page_item a {
}

#nav .current_page_item a {
	padding-left: 0;
}

/* Page */
#page {
width: 960px;
	margin: 0 auto;
	background: #FFFFCC; /* cream in case image doesn't load */
	background: url("/stylesheets/images/mainbacktwotone.jpg") repeat-y left top;
	padding: 0;
}


/* Content */
#content {
	float: left;
	width: 650px;
	padding: 10px 10px 10px 10px;
}

.post {
}

.post .title {
	height: 10px;
	padding: 12px 0 0 10px;
	letter-spacing: -.5px;
	color: #181818;
}

.post .title a {
	color: #181818;
	border: none;
}

.post .meta {
	margin-top: -10px;
	padding-bottom: 5px;
	padding-left: 20px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: italic;
}

.post .meta a {
}

.post .entry {
	text-align: justify;
	margin-bottom: 25px;
	padding: 30px 20px 10px 20px;
        color: #181818;  /* very dark */
}

.links {
	display: block;
	width: 130px;
	margin: 20px 0px;
	padding: 5px;
/*	background: #A03128;*/
	border-left: 20px solid #ffffff; /* black*/
	text-align: center;
	text-transform: uppercase;
	font-size: 10px;
	color: #FFFFFF; /* black */
}

/* Sidebar */
#sidebar {
	float: right;
	width: 280px;
	padding: 10px 5px 10px 5px;
	color: #787878; /* grey */
}

#sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#sidebar li {
	margin: 0;
	padding: 0;
}

#sidebar li ul {
	margin: 0px 5px;
	padding-bottom: 30px;
}

#sidebar h2 {
	height: 38px;
	padding: 0px 0 0 0px;
	letter-spacing: -.5px;
	color: #181818; /* very dark */
}

#sidebar p {
	margin: 0 0px;
	padding: 0px 5px 5px 5px;
	text-align: justify;
}

/* Footer */
#footer {
	width: 960px;
	height: 30px;
	margin: 0 auto;
	padding: 0px 0 15px 0;
 	background: #992323;
	color: #FFDBD9;  /* blue-grey - font colour for footer text */
}

/* not currently using this, but might regarding copyright */
#footer p {
	margin: 0;
	padding-top: 15px;
	line-height: normal;
	font-size: 9px;
	text-transform: uppercase;
	text-align: center;
}

/* not currently using this, but might regarding copyright */
#footer a { 
}

.mceContentBody { 
	background-image: none; 
	background-color: White; /* SnippetMaster editor bg color */
	color: Black;
} 