/* Author: Simon Hendy
 * Copyright  2005
 * www.shendy.co.uk
 */

/* Main style for the body of the page. */
body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: white;
	color: black;
	position: relative;
	padding: 0;
	margin: 0;
}					

/* Links - all black on white, no bold or anything like that */
a:link, a:visited, a:focus, a:hover, a:active {
	color: black;
/*	background-color: white;  taken out as it screwed up the lightbox software for some reason*/
	text-decoration: none;
}


/*                         HEADER DEFINITION                                */
/* ************************************************************************ */

/* Sets up the style for header that appears right at the top of the page.  */
div.banner {
	position: absolute;
	width: auto;
	top: 0em;
	right: 0em;
	bottom: auto;
	left: 8em;
}

/* Header text */
div.banner h1 {
	font-weight: normal;
	font-size: xx-large;
}	


/* ************************************************************************ */
/*                           FOOTER DEFINITION                              */
/* ************************************************************************ */

/* For the copyright message */
div.footer {
	text-align:center;
	font-size: smaller;
	padding-top: 1em;
}

/* ************************************************************************ */
/*                           GALLERY DEFINITION                             */
/* ************************************************************************ */

/* Each image floats alongside the previous one. */
div.gallery {
	float: left;
 	min-width: 105px;
	padding: 1.0em;
	height: auto;
	display: inline;
}

/* The caption for each image
	Not currently used.
div.gallery p {
	text-align: left;
	float: none;
} */

/* stop the border around each image */
div.gallery img {
	padding: 0;
	border: 1px solid;
	border-color: black;
	vertical-align: middle;
	margin: 0.25em; 
}

/* stop any colour around the images */
div.gallery a:focus, div.gallery a:hover, div.gallery a:active {
	background-color: white;
}


div.content {
	padding-left: 8em;
	padding-right: 10%;
}

div.contentmain {
	padding-left: 8em;
	padding-right: 10%;
	padding-top: 4em;
}

/* Make sure the fieldset legends come out in black */
div.content legend {
	color: black;
}

div.text {
	padding-left: 8em;
}

