/*-----CSS Photoalbum designed by Darren Gash------*/

html, body {
	margin: 0;
	padding: 0;
}

Body {
	background-image: url(images/bg-image_2.gif);
	margin: 20px 0 20px 0;
	text-align: center;
}

#wrapper {
	width: 750px;
	text-align: left;
	margin: 0 auto;
}

#layout {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000;
	background-color: #9fcde8;
	float: left;

}

/*-------styling for general links----------*/

a {
	color: #1b3747;
	text-decoration: none;
	font-style: italic;
}

a:hover {
	text-decoration: underline;
}

/*--------styling for logo----------*/


#logo {
	background-color: #7fabc6;
	background-image: url(images/seafront_sculpture.jpg);
	width: 180px;
	height: 90px;
	float: left;
	margin: 0;
	padding: 0;
}

/*--------styling for masthead----------*/

#masthead {
	width: 570px;
	height: 90px;
	float: left;
	margin: 0;
	padding: 0;
	background: url("images/blue_gradient_reversed.gif") repeat-x top left;
	background-color: #7fabc6;
}

#masthead h1 {
	font-size: 140%;
	text-align: right;
	margin: 15px 30px 0 150px;
	line-height: 1.5em;
}

/*------styling for navigation bar-------*/

#navigation {
	background-color: #4E6A7A;
	width: 180px;
	height: 580px;
	float: left;

}

#navigation ul {
	list-style-type: none;
	margin: 0;
	/*different default paddings for browsers so declared here*/
	padding: 0;
}

#navigation ul li {
	border-bottom: 1px solid #aaa;
}

#navigation ul li a {
	color: #fff;
	/*declare normal font style here to override italic setting
	in general link declaration*/
	font-style: normal;
	text-decoration: none;
	/*set to transparent to let color of subnav background through. If subnav
	bg colour is changed, it will save doing it here too*/
	background-color: transparent;
	margin: 0;
	/*turns inline to block element so allows top and bottom padding*/
	display: block;
	padding: 0.8em 0 0.8em 1em;	
}

#navigation ul li a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #aa2b36;
}

/*---------------subnavigation styles-------------*/

ul#subnav {
	padding: 0;
	margin: 0;
	background-color: #C7B37F;
}

ul#subnav li {
	border-bottom: 0 none;
	
}

ul#subnav li a {
	padding: 0.4em 0 0.4em 20%;
	
	font-size: 95%;
	/* line height increased to close gap in ie pc*/
	line-height: 1.5em;
	margin: 0px;
	color: #1b3747;
	/*set to transparent to let color of subnav background through. If subnav
	bg colour is changed, it will save doing it here too*/
	background-color: transparent;
	}

ul#subnav li a:hover {
	color: #C7C7C7;
	background-color: #7A674E;
	}

/*------------styling for main content area-------*/

#content {
	background-color: #9fcde8;
	width: 570px;
	float: left;
}

/*--------styling for content headers--------*/

h2 {
	font-size: 120%;
	margin: 20px 30px 20px 20px;
	padding: 0.5em;
	background-color: #7fabc6;
	background-image: url(images/blue_gradient_reversed.gif);
	background-repeat: repeat-x;
	text-align: right;
}

/*-------styling for arrowhead used in breadcrumb links-----*/

.arrowhead {
	color: #4E6A7A;
	padding: 0 5px 0 5px;
}

/*-------------styling for paragraphs-------*/

p {
	line-height: 1.5em;
	padding-bottom: 1.5em;
	margin: 20px 30px 20px 20px;
	border-bottom: 1px solid #4E6A7A;
}

/*-----styling for thumbnails with dropshadows-------*/
	
#thumbnailbox {
	margin: 20px;
	padding: 0;
} 

.thumbnail {
	float: left;
	/*--fix for ie float bug--*/
	display: inline;
	margin: 0 0 20px 20px;
	background-color: #4E6A7A;
}

.thumbnail img {
	background-color: #fff; 
	border: 1px solid #a9a9a9;
	/*note - ie 5 and 5.5 can't have padding around a picture!!!*/
	padding: 3px;
	/*---drop shadow effect--*/
	position: relative;
	bottom: 3px;
	right: 3px;
	/*--end of drop shadow effect-*/
}

.caption {
	width: 108px;
	height: 29px;
	heig\ht: 25px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	padding-top: 4px;
	text-align: center;
	background-color: #9fcde8;
	
}

/*------styling for large pictures---------*/

#picturelinks {
	/*inline span set to block element so that bottom margin can be declared*/
	display: block;
	margin: 0 30px 10px 0;
	text-align: right;
	font-size: 95%;
}

#largepicture img {
	background-color: #fff;
	border: 1px solid #a9a9a9;
	padding: 4px;
	margin: 10px 0 0px 30px;
	background-color: #fff;
}

/*--declaration for picture descriptions to override normal paragraph styling-*/

p#description {
	text-align: right;
	border-bottom: 0 none;
}

/* i.e. fixes */

/*--fix for ie pc only \*/
* html #navigation ul li a {
	height: 1%;
}
/*--end of ie pc only fix*/

/*--the ie pc blues..thumbnail fix---\*/

* html .thumbnail img { 
bottom: 1px;
}
/*----*/