@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #660000;
	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;
	font-size: 1em;
}
a {
	color: #525e92;
	text-decoration: none;
}
a:hover {
	color: #660000;
	text-decoration: underline;
}
img {
	border: 0px;
}
table td {
	vertical-align: top;
}
table th {
	font-style:italic;
	color: #925252;
	font-size: 1em;
}
#GridView1 {
	/*width: 150%;
	background: #000000; */
}
.tablelines td {
	border-bottom: 1px solid #a1a7be;
}
.twoColHybLtHdr #container { 
	width: 98%;  /* this will create a container 90% of the browser width */
	background-color: #ddd8c8;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColHybLtHdr #headerbg { 
	background: url(/resources/interface/header-bg.gif) #ddd8c8 right top repeat-x;
	position: relative;
} 
.twoColHybLtHdr #header { 
	background: url(/resources/interface/logo.jpg) left top no-repeat;
	overflow: hidden;
	position: relative;
	height: 170px;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColHybLtHdr #topmenu {
	background-color: #925252;
	border-top: 8px solid #660000;
	color: #FFFFFF;
	position: relative;
	clear: both;
	height: 1.5em;	
}
.twoColHybLtHdr #topmenu a {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 0.9em;
	text-decoration: none;
	padding: 3px 10px;
	display: block;
	float: left;
	position: relative;
}
.twoColHybLtHdr #topmenu a:hover {
	color: #660000;
	background-color: #ddd8c8;
}
.twoColHybLtHdr #header h1 {
	color: #660000;
	position: absolute;
	bottom: 40px;
	font-size: 1.8em;
	z-index: 20;
	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: 0px 0px 0px 180px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColHybLtHdr #header h1 span {
	font-size: 0.6em;
}
.twoColHybLtHdr #header img {
	position: absolute;
	top: 0px;
	right: 0px;
}
#locationcontainer { 
	position: relative;
}
.navheader { 
	float: left;
	width: 13em;
}
.subheader { 
	background: #f1f0ea;
	border-bottom: 8px solid #a1a7be;
}
.subheader h1 { 
	font-variant: small-caps;
	color: #525e92;
	height: 1em;
	font-size: 0.9em;
	padding: 5px 10px 10px 10px;
	margin: 0px;
}
.navheader h1 { 
	background: #525e92;
	font-variant: small-caps;
	color: #FFFFFF;
	height: 1em;
	font-size: 0.9em;
	padding: 5px 10px 10px 10px;
	border-bottom: 8px solid #660000;
	margin: 0px;
	width: 12em;
}

.navheader h1 span.small { 
	font-size: 0.8em;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/

.twoColHybLtHdr #sidebar1 {
	float: left; 
	width: 12em; /* since this element is floated, a width must be given */
	background: #fefefe url(/resources/interface/nav-bg.jpg) left top repeat-y;  /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 0px 0px; /* top and bottom padding create visual space within this div  */
	position: relative;
	overflow: hidden;
}
.twoColHybLtHdr #sidebar1 h2 { 
	color: #525e92;
	border-bottom: 3px solid #a1a7be;
	background-color: #f1f0ea;
	padding: 3px 10px;
	font-variant: small-caps;
	font-size: 1em;
}
.twoColHybLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.twoColHybLtHdr #sidebar1 a {
	color: #660000;
	font-weight: bold;
	font-size: 0.9em;
	text-decoration: none;
	padding: 3px 10px 3px 10px;
	display: block;
	position: relative;
}
.twoColHybLtHdr #sidebar1 a:hover {
	border-left: 8px solid #a1a7be;
	background-color: #f1f0ea;
}
.twoColHybLtHdr #sidebar1 .side-linkimages a {
	color: #660000;
	font-weight: bold;
	font-size: 0.9em;
	text-decoration: none;
	padding: 0px;
	margin: 0px;
	display: block;
	position: relative;
}
.twoColHybLtHdr #sidebar1 .side-linkimages a:hover {
	border-left: 0px solid #a1a7be;
	background-color: #f1f0ea;
}
.twoColHybLtHdr #sidebar1 h2 a {
	color: #525e92;
	padding: 0px;
	font-size: 1em;
}
.twoColHybLtHdr #sidebar1 h2 a:hover {
	border-left: 0px solid #a1a7be;
	color: #925252;
	text-decoration: none;
}
.current-page {
	border-left: 8px solid #925252;
	background-color: #f1f0ea;
}
.linebreak {
	border-bottom: 1px solid #660000;
	height: 10px;
	line-height: 1px;
}
.navbg-home, .navbg-about, .navbg-involved, .navbg-inductees, .navbg-links, .navbg-museum, .navbg-programs, .navbg-events {
	padding-top: 15px;
	position: relative;
	width: 220px;
}
.navbg-home {
	background: url(/resources/interface/side-nav/nav-image01.jpg) bottom left no-repeat;
	height: 522px;
}
.navbg-events {
	background: url(/resources/interface/side-nav/nav-image09.jpg) bottom left no-repeat;
	height: 450px;
}
.navbg-news {
	background: url(/resources/interface/side-nav/nav-image06.jpg) bottom left no-repeat;
	height: 492px;
}
.navbg-about {
	background: url(/resources/interface/side-nav/nav-image04.jpg) bottom left no-repeat;
	height: 700px;
}
.navbg-involved {
	background: url(/resources/interface/side-nav/nav-image10.jpg) bottom left no-repeat;
	height: 450px;
}
.navbg-inductees {
	background: url(/resources/interface/side-nav/nav-image02.jpg) bottom left no-repeat;
	height: 531px;
}
.navbg-links {
	background: url(/resources/interface/side-nav/nav-image05.jpg) bottom left no-repeat;
	height: 491px;
}
.navbg-museum {
	background: url(/resources/interface/side-nav/nav-image11.jpg) bottom left no-repeat;
	height: 407px;
}
.navbg-programs {
	background: url(/resources/interface/side-nav/nav-image07.jpg) bottom left no-repeat;
	height: 700px;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent { 
	margin: 0 20px 0 13em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	position: relative;
	padding-top: 15px;
} 
.twoColHybLtHdr #mainContent h2 { 
	color: #525e92;
	border-bottom: 1px solid #a1a7be;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
	margin: 0px;
	font-variant: small-caps;
	font-size: 1em;
}
.twoColHybLtHdr #mainContent h2 a {
	color: #525e92;
	text-decoration: none;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
}
.twoColHybLtHdr #mainContent h2 a:hover {
	color: #660000;
	text-decoration: none;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */

}
.twoColHybLtHdr #mainContent span.h2-behaviour { /* asp dot net is creating span tags instead of h2 tags so this class make a span tag behave like an h2 tag */
    color: #525e92;
    border-bottom: 1px solid #a1a7be;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
    margin: 0px;
    font-variant: small-caps;
    font-size: 1em;
    display: block;
    font-weight:bold;
}
.twoColHybLtHdr #mainContent span.h2-behaviour a {
	color: #525e92;
	text-decoration: none;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
}
.twoColHybLtHdr #mainContent span.h2-behaviour a:hover {
	color: #660000;
	text-decoration: none;
	padding: 3px 0px 3px 3px; /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */

}
.twoColHybLtHdr #mainContent span.p-behaviour { /* asp dot net is creating span tags instead of p tags so this class make a span tag behave like an h2 tag */
	color: #000000;
    margin: 17px -10px 17px 10px;  /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
    padding: 0px;
    font-size: 1em;
    display: block;
}
.twoColHybLtHdr #mainContent span.p-behaviour a { /* asp dot net is creating span tags instead of p tags so this class make a span tag behave like an h2 tag */
	color: #000000;
    margin: 17px 0px 17px 10px;  /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
    padding: 0px;
}
.twoColHybLtHdr #mainContent span.p-behaviour a:hover { /* asp dot net is creating span tags instead of p tags so this class make a span tag behave like an h2 tag */
	color: #000000;
    margin: 17px 0px 17px 10px;  /* We had to remove the right hand side padding because it was interfering with the Profile Image when viewed in IE7 */
    padding: 0px;
}
.twoColHybLtHdr #mainContent h3 {
	font-style:italic;
	color: #925252;
	padding: 3px;
	border-bottom: 1px solid #bf8e8e;
	font-size: 1em;
}
.twoColHybLtHdr #mainContent h3 a {
	color: #925252;
	text-decoration: none;
}
.twoColHybLtHdr #mainContent h3 a:hover {
	color: #525e92;
	text-decoration: none;
}
#eventshome {  /*keeps the events on the home page in order */
	position: absolute;
	top: 125px;
	width: 53%;
}
#eventshome h3 {  /* makes sure that floated images don't float over title on the home page for events */
	clear:right;
}
#newstype h3 {  /* makes sure that floated images don't float over title on the Archive Page and all other news pages */
	clear:right;
}
#newshome {  /*keeps the news on the home page in order */
	text-align: left;
	position: relative;
}
#newshome .fltrt-block {  /*makes sure that foated images have a background colour that matches the news area on the home page */
	float: right;
	margin-left: 8px;
	margin-bottom: 8px;
	z-index: 90;
	background-color: #FFFFFF;
	padding: 10px 0px 10px 10px;
	position: relative;
}
#newshome .photoborder {  /*makes sure that foated images have a custom background colour on the main news area on the home page */
	border: 1px solid #925252;
	background-color: #d7dae8;
	padding: 5px;
	text-align: center;
}
#homebanner {
	text-align: center;
	position: absolute;
	top: 25px;
	width: 53%;
}
.twoColHybLtHdr #mainContent p {
	margin-left: 10px;
}
.twoColHybLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ddd8c8 url(/resources/interface/footer-bg.gif) bottom repeat-x;
	border-top: 0px solid #DDDDDD;
} 
.twoColHybLtHdr #footer p {
	color: #8f7d4a;
	font-size: 0.6em;
	text-align: center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/* Miscellaneous classes for reuse */
.smallprint {
	font-size: 0.7em;	
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-bottom: 8px;
	position: relative;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
	position: relative;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.fltrt-block { 
	float: right;
	margin-left: 8px;
	margin-bottom: 8px;
	z-index: 90;
	background-color: #ddd8c8;
	padding: 10px 0px 10px 10px;
	position: relative;
}
.photoborder { 
	border: 1px solid #925252;
	background-color: #FFFFFF;
	padding: 5px;
	text-align: center;
}
.border { 
	border: 1px solid #925252;
	background-color: #FFFFFF;
	padding: 5px;
}
.picturenavclear {
	position:relative;
	width: 100%;
	clear:right;
	display:table;
	border-bottom: solid 1px #bf8e8e;
}
.date {
	color: #666666;
	font-variant: small-caps;
	font-size: 0.8em;
}
.caption {
	padding-top: 5px;
	font-variant: small-caps;
	font-size: 0.9em;
}
a.caption, .caption-link {
	color: #525e92;
	font-weight: normal;
	font-variant: small-caps;
	text-decoration: none;
	cursor: pointer;
}
a:hover.caption, .caption-linkhover {
	color: #660000;
	font-weight: normal;
	font-variant: small-caps;
	text-decoration: underline;
	cursor: pointer;
}
.visible {
	display: block;
}
.invisible {
	display: none;
}