@charset "utf-8";
/* copy of linklist.css in which to try out the fix to the IE pixy-rollover issue 
described in http://blog.rd2inc.com/archives/2005/01/19/image-replacement-with-css-based-rollovers/
*/

/* override user-agent stylesheet settings */
/** {
    margin: 0;
	padding: 0;
}*/

/* override default browser styles, per http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* end of override default browser styles section */

body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background-color: #DDDDDD;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

img {
    border: 0; /*Avoid blue border around image links*/
}

a   {
    outline:none; /*Turn off Firefox browser link outlines*/
}

/* Next three entries added to give drop shadow */
#container-centering {
    margin: 0 auto; /*Centers container in browser window*/
	width: 780px;
}

#container-wrapper {
    background: url(Images/containerDropShadow.gif) no-repeat bottom right;
	clear: right;
	float: left;
}

#container-wrapper #container {
    margin: 0px 5px 5px 5px;
	padding: 0px 5px 5px 5px;
}
/* End of drop shadow entries */

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #dbf1d1;
	/* margin: 0 auto;  the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header { 
    float: left;
	height: 190px; 
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-top: 14px;
	padding-left: 14px;
	padding-bottom: 14px;
	font-size: 100%;
}

#header h1#MastheadGraphic1 a {
	background: url(Images/ExhibitionCottagesWebPageDesign_03.jpg) center center no-repeat;
	width: 154px;
	height: 162px;
	display: block;
	text-indent: -5000px;
}

#header h1#MastheadGraphic2 a {
	background: url(Images/ExhibitionCottagesWebPageDesign_05.gif) center center no-repeat;
	width: 320px;
	height: 162px;
	display: block;
	text-indent: -5000px;
}

#header h1#MastheadGraphic3 a {
    background: url(Images/ExhibitionCottagesWebPageDesign.jpg) center center no-repeat;
	width: 246px;
	height: 162px;
	display: block;
    text-indent: -5000px;
}
	
.ExhibitionCottagesGroup #mainContent {
/*  	background-color: #f4f9ed;
*/}

.Pictures #mainContent {
  	background-color: #dbf1d1;
}

.Links #mainContent ul {
	list-style-type: none;
	margin-top: 25px;
	padding: 1px;
	margin-left: 50px;
}

.Links #mainContent li {
	padding: 0px 0px 20px 18px;
	color: #000000;
	font-weight: bold;
}

.Links #mainContent a:link, a:visited {
	text-decoration: none;
	color: #006633;
}

.Links #mainContent a:hover {
	text-decoration: underline;
	color: #000000;
}

.Links #mainContent ul h1 {
	margin-bottom: 25px;
}

#mainContent {
	width: 565px;
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
}

#mainContent h1 {
	font-size: 30px;
	font-variant: small-caps;
	color: #5A723B;
	font-weight: bold;
	margin-bottom: 20px;
}

#mainContent ul h1 {
	margin-bottom: 35px;
}

#mainContent h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

#mainContent p {
	margin-bottom: 10px;
	font-weight: normal;
}

#footer { 
	clear: both;
	margin: 6em 0 0 0;
} 

#footer p {
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	margin: 0;
	padding: 20px 0 20px 150px;
}

#MastheadGraphic1 {
	float: left;
}

#MastheadGraphic2 {
	float: left;
}

#MastheadGraphic3 {
	float: left;
}

#sidebar1 {
	float: left;
	width: 155px;
	padding-top: 0px;
	padding-right: 14px;
	padding-left: 14px;
}

#sidebar1 h2 {
	margin-top: 0px;
    margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/*
The following sets of rules fix an IE pixy-rollover issue  - see this link for more details: http://blog.rd2inc.com/archives/2005/01/19/image-replacement-with-css-based-rollovers
*/

ul#primary-nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* omitting the following rule does not appear to cause any problems, should probably
comment it after more testing */

ul#primary-nav li {
	float: left;
	display: inline;
	list-style-type: none;
	width: 150px;
	margin-bottom: 14px;
	border: solid 1px;
	border-color: #94bf49;
}

ul#primary-nav {
    float: left;
}

ul#primary-nav li
{
	height: 80px;
	float: left;
}

ul#primary-nav li h2,
ul#primary-nav li h2 a
{
    display: block;
    width: 100%;
    height: 100%;
}

ul#primary-nav li h2 span
{
    display: block;
    text-indent: -5000px;
}

/* Pictures button
*/
ul#primary-nav li#Pictures h2,
ul#primary-nav li#Pictures h2 a#current-page
{
    background: url(Images/ButtonPixyPictures.gif) -150px 0 no-repeat; /* On state image */
}

ul#primary-nav li#Pictures h2 a
{
    background: url(Images/ButtonPixyPictures.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#Pictures h2 a:hover
{
    background-image: none;
}

/* Pictures button
*/
ul#primary-nav li#CottageHistories h2,
ul#primary-nav li#CottageHistories h2 a#current-page
{
    background: url(Images/ButtonPixyCottageHistories.gif) -150px 0 no-repeat; /* On state image */
}

ul#primary-nav li#CottageHistories h2 a
{
    background: url(Images/ButtonPixyCottageHistories.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#CottageHistories h2 a:hover
{
    background-image: none;
}

/* Exploring on Foot button
*/
ul#primary-nav li#ExploringOnFoot h2,
ul#primary-nav li#ExploringOnFoot h2 a#current-page
{
    background: url(Images/ButtonPixyExploringOnFoot.gif) -150px 0 no-repeat; /* On state image */
}

ul#primary-nav li#ExploringOnFoot h2 a
{
    background: url(Images/ButtonPixyExploringOnFoot.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#ExploringOnFoot h2 a:hover
{
    background-image: none;
}

/* Exhibition Cottages Group button
*/
ul#primary-nav li#ExhibitionCottagesGroup h2,
ul#primary-nav li#ExhibitionCottagesGroup h2 a#current-page
{
    background: url(Images/ButtonPixyExhibitionCottagesGroup.gif) -150px 0 no-repeat; /* On state image */
}

ul#primary-nav li#ExhibitionCottagesGroup h2 a
{
    background: url(Images/ButtonPixyExhibitionCottagesGroup.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#ExhibitionCottagesGroup h2 a:hover
{
    background-image: none;
}

/* More Information button
*/
ul#primary-nav li#MoreInformation h2,
ul#primary-nav li#MoreInformation h2 a#current-page
{
    background: url(Images/ButtonPixyMoreInformation.gif) -150px 0 no-repeat; /* On state image */
}

ul#primary-nav li#MoreInformation h2 a
{
    background: url(Images/ButtonPixyMoreInformation.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#MoreInformation h2 a:hover
{
    background-image: none;
}

/* Links button
*/
ul#primary-nav li#Links h2,
ul#primary-nav li#Links h2 a#current-page
{
    background: url(Images/ButtonPixyLinks.gif) -152px 0 no-repeat; /* On state image */
}

ul#primary-nav li#Links h2 a
{
    background: url(Images/ButtonPixyLinks.gif) top left no-repeat; /* Off state image */
}

ul#primary-nav li#Links h2 a:hover
{
    background-image: none;
}
#header h1 a {
	border: 1px solid;
	border-color: #D5EDB3;
}
/* Plaque motif and copyright */
#sidebar1 img#Plaque1905 {
	width: 152px;
	height: 152px;
	float: left;
	padding-top: 1em;
	padding-left: 0.1em;
}
#sidebar1 #Plaque1905 {
	width: 152px;
	height: 25px;
	float: left;
	padding-top: 1em;
}
#sidebar1 #Plaque1905 p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.65em;
	padding-left: 2em;
	padding-top: 0.5em;
}
/* Page-specific overrides */
.ExhibitionCottagesGroup #mainContent li {
	font-weight: bold;
}
.ExploringOnFoot #mainContent {
	padding: 0 0;
	width:   585px;
	border: 1px solid;
	border-color: #D6D6D6;
}
.MoreInformation #mainContent img {
	float: right;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 15px;
}
.MoreInformation #mainContent {
	width: 577px;
}
.MoreInformation #mainContent h3#emailAddress  {
	background:url(Images/emailAddress.gif) no-repeat;
	float: left;
	width: 220px;
	height: 50px;
	text-indent: -5000px;
	/* Tiny font prevents IE6 displaying spurious characters from the heading on LHS of page */
	font-size: 0.01em;
}
/* End of page-specific overrides */
.ExhibitionCottagesGroup #historiesMainContent {
	float: left;
	width: 584px;
}
#mainContent h2 {
	font-size: 2.5em;
	font-style: normal;
	line-height: normal;
	font-variant: small-caps;
	color: #5A723B;
	text-align: center;
}
