/* Based on style7.css practice sheet */

/*Blue border on left with navigation on left */

/*Problem with floating Nav Bar and br clear=all means that you can get a break after nav bar. Made nav bar absolute position instead but this means footer won't work on short pages*/

/*Don't care about short pages so commented out some of the properties put in just for that*/

/*As nav bar is absolute can use h2 clear left to separate paras instead of using ><br clear="all" />. Before this would have moved the first para down*/

/* white line appears on 'about us' after going to bottom of page */
/* seems to be to do with using h2 with clear left so having to take this out and put the br's back in - doh!*/

/*Back to br and all looks OK :0) */ 

/*dates don't scale in firefox - but this is same on live site - no can do*/

/* hyphens don't show up - apart from one on about us page!!!! same on live - just cut and pasted that one everywhere - don't know what was wrong b4*/

/* Footer top set at 38 instead of 35 so that Forum entry in nav bar is visible in IE 6 as I can't get the ul to squash together in IE 6 */


		body {
			font: 80% arial, helvetica, sans-serif;
			background: #8A9DAE ;
			margin: 0;
		}
		a:link, a:visited {
			color: #00c;
		}
		a:hover, a:active {
			color: red;
		}
		#header {
			background: #091176 url(gallery/pictures/D-622_at_sea.jpg) no-repeat center right;
			height: 11em;
		}
		#header p.contact {
			color: #eee;
			text-align: left;
			line-height: 2em;
			margin-left: 20px;
		}
		#header a {
			color: #fff;
		}
		#header a:visited {
			color: #ccc;
		}
		#header a:hover {
			background: #069;
    }
		.logo {
			float: left;
			border: 0;
			height: 11em;
			width: 14em;
		}
		.news-marquee {
			height:40px;
			border-width:0;
		}
		h1 {
			color: #ccc;
			padding: 0.4em 0 0 0em;
			/*margin-bottom: 0;  don't think req'd now we use header for coloured background*/
			margin-top: 0; /* needed for Firefox */
		}
		h2 {
			clear: left;
		} 
		h3 {
			clear: left;
		} 
		table {
			border-style: none;
		}
		tr {
			border-style: none;
		}
		td {
			border-style: none;
		}

		#navigation {
			position: absolute;
			left: 0;
			top: 11em;
			width: 14em;
			height: 60em; /*commented out so br clear=all can be used with floating nav bar - but now nav bar is absolute*/
		        background: #091176; /*only needed for short pages. had a problem in IE when removed and using h2 to separate paras but ok using br. But decided to put back as like to have a longer bar on left*/
		      /*margin-bottom: 1em;    needed for Firefox to move footer down a bit on short pages - don't think it helps now nav is absolute */
		}
		
		#navigation ul {
			color: white;
			margin: 1em 1em 1em 1em;
			list-style: none;
			padding: 0; /* required for Firefox to position list */
		}	
		#navigation ul a {
			color: white;
			text-decoration: none;
			display: block;
			background: #091176;
			padding: 0.2em 0.5em;
			margin: 0 1em 1px 1em;
		}
		#navigation a:visited {
			color: #ccc;
		}
		#navigation a:hover {
			background: #069;
    }
		#navigation p.sponsor {
			color: #eee;
			text-align: left;
			margin: 0 0 1em 1em;
  		line-height: 2em;
		}
		#navigation img.embeded {
			float: center;
			margin: 0 0 1em 2em;
			height: 6em;
		}		
		#scrollblog {
			height: 1000px;
			overflow: auto;
			border: 1px solid #666;
			padding: 8px;
		}
		#sidebar {
			float: right;
			width: 204px;
			padding: 2px 0 0 0;
		}
		#sidebar p {
			margin: 1em 1em 1em 1em;
		}
		#content {
			padding: 1em 1em 2em 3em;
			border-left: 14em solid #091176;
			/*margin-bottom: 1em;  needed when footer p margin set 0*/	
		}
		#content p.rightimage {
			clear: left;
		}
		#content p.leftimage {
			clear: right;
		}
		#content img.leftembed {
			float: left;
			margin: 0 2em 1em 0;
			height: 11em;
		}
		#content img.rightembed {
			float: right;
			margin: 0 0 1em 2em;
			height: 11em;
		}
		#content .standaloneimage {
			margin-top: 2em;
			text-align: center;
		}
		#content dl {
			margin-left: 5em;
		}
		#content dt {
			font-size: 1em;
			font-weight: bold;
			line-height: 1.2em;
			margin: 1em 0 0 0;
		}

		#content dd {
			font-size: 1.1em;
			font-weight: normal;
			line-height: 1.2em;
			margin: 0 0 0 1em;
		}	
		#gallery {
			margin-top: 3em;
			text-align: center;
		}
		#gallery img {
			margin-bottom: 2em;
			height: 5em;
		}
/*set CSS for SPAN tag surrounding each image in slideshow*/
		.seqslidestyle{
			margin-right: 15px;
		}
		#secondnav {
			margin-top: 9em;
 		}
		#secondnav ul {
			list-style: none;
			margin: 0;
		}	
 		#secondnav ul li {
			display: inline;
			padding: 0 1em;
		}
		#copyright {
			position: absolute;
			left: 0;
			top: 90em;
			width: 14em;
			height: 12em; 
		        background: #091176; 
		}		        
		#copyright p.copyright {
			color: #eee;
			text-align: center;
			line-height: 2em;
		}	
