@charset "utf-8";

html, body {
	height: 100%;	
}
body {
	font: 100%/1.4 Georgia, "Times New Roman", Times, serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-image:url(images/grey-texture-pale.png);
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h2, h3, h4, h5, h6, p {
	
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
wrapper
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 990px;
	background-color: #FFF;
	background-image:url(images/bg-col4.gif);
	background-repeat:repeat-y;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 30px;
	margin-bottom: 30px;

	
		/* Cross-browser drop shadow effect */
	-moz-box-shadow: 3px 3px 4px #333;
	-webkit-box-shadow: 3px 3px 4px #333;
	box-shadow: 3px 3px 4px #333;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333')";
	/* For IE 5.5 - 7 */
	/*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333');*/
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */

#banner  {
	/*width: 100%;*/
	margin: 0 0 0 0;

}

/* ~~ These are the columns for the layout. ~~ 


2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.


*/
.mainMenu {
	float: left;
	width: 170px;
	/*background: #EADCAE;*/
	padding-bottom: 40px;
}


.content {
	background-color: #FFF;
	padding: 10px 0;
	width: 580px;
	float: left;
}

iframe.ifromat {border:0;
}

p.cntcon { text-align: center;
}	

p.lftcon { text-align: left;
}

#story-head h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 36px;
	color: #666;
	letter-spacing: 1px;
	text-align: left;
	word-spacing: 1px;
	padding-top:0px;
	padding-left: 10px;
	font-weight: normal;
}

#story-head-smaller h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 32px;
	color: #666;
	letter-spacing: 1px;
	text-align: left;
	word-spacing: 1px;
	padding-top:0px;
	padding-left: 10px;
	font-weight: normal;
}

#story-head  {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 36px;
	color: #666;
	letter-spacing: 1px;
	text-align: left;
	word-spacing: 1px;
	padding-top:5px;
	padding-left: 10px;
	font-weight: normal;
}

#story-head-smaller  {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 32px;
	color: #666;
	letter-spacing: 1px;
	text-align: left;
	word-spacing: 1px;
	padding-top:5px;
	padding-left: 10px;
	font-weight: normal;
}


.story_text {
	font-family: Georgia, serif;
	font-size: 15px;
	line-height: 22px;
	color: #333;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 5px;
	padding-top: 25px;
	background-color: #FFF;
	text-align: left;

}

#story {
	width: 580px;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #FFF;
}




#sidebar {
	float: left;
	width: 225px;
	margin-right: 0px;

	/*padding: 10px 0;*/
	padding-bottom: 40px;
	padding-top:15px;
	padding-left: 0px;
	padding-right: 0px;
	min-height: 1050px;
	
/*	margin-left: 14px;
	* margin-left: 4px;*/
}


#sidebar_text {
	font-family: Georgia, serif;
	font-size: 15px;
	line-height: 18px;
	text-align:left;
	color: #333;
	
	padding-left: 10px;
	* padding-left: 0px;
	*+padding-left: 10px; /*IE7 revision July 2011 */
	padding-right: 0px;
	width: 220px;
	
}
.sidebar_image {
	border: none;
	float: left;
	padding-bottom: 0px;
	padding-top: 5px;
	padding-right: 10px;
}
.sidebar_hover {
	text-decoration: underline;
}





/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ The footer styles ~~ */
#footer {
	padding: 10px 0;
	background: #0695a6;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	height: 1%;
}

#footer_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	text-align: center;

}


/* ~~ Miscellaneous float/clear classes ~~ */
.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;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#about  {
	width: 100%; /*was 100% */
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px; /*was 13 px;*/

	text-align:right;
	
	padding-right: 0px;
	word-spacing: 1px;
	font-variant: small-caps;
	color: #fff; /* was 333 */
/*	font-style: normal;*/

	margin-top: -5px;
	* margin-top: -3px; /* IE6 only */

	padding-top: 3px;
	background-color: #0695a6; /* was ff9 */
	padding-bottom: 3px;
	

	border: 1px solid #784d33;
	border-top-width: 0px;
	border-left-width: 0px;
	border-right-width: 0px

}

#about li {
	display: inline;
	color: #fff; /*was 333 */
	text-decoration: none;
	list-style-type: none;
		font-weight: bold;
}
#about li a:link {
	color: #fff; /*was 333 */
	text-decoration: none;
	list-style-type: none;
}

#about li a:visited {
	color: #fff; /*was 333 */
	text-decoration: none;
	list-style-type: none;
}

#about li a:hover {
	color: #e1d796;
	text-decoration:none;
}

/*#about-padding  {
	width: 170px;
	padding-right: 0px;
	padding-top: 3px;
	background-color: #0695a6; 
	padding-bottom: 3px;
	float:left;
}*/

#path {
	background-color: #96F;
}


.refs {
	padding-bottom: 20px;
	list-style: none;
	left: 0px;
	text-indent: 0px;
	list-style: none;
	text-decoration: none;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}

.refs li {
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #363;
	letter-spacing: 1px;
	word-spacing: 1px;
	padding-left: 10px;
	padding-bottom:3px;
	list-style-image: none;
	list-style:none;
	text-align: left;
	background-position: left;
	list-style: none;
}

.refs li a:link {
	text-decoration: none;
	color: #363;	
}

.refs li a:visited {
	text-decoration: none;
	color: #363;
	font-style:italic;
	}

.refs li a:hover {
	color: #C60;	
	text-decoration: underline;
	}


#further_ref {  /* changed from class to id */
	letter-spacing:2px;
	color:#363;
	font-size: 24px;
	font-family: Georgia, serif;
	margin-top: 10px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 5;
	padding-left: 5px;
}

#scrollTimeline {
	/*border:1px solid black;*/
	width:580px;
	height:400px;
	overflow-y:hidden;
	overflow-x:scroll; 
	white-space: nowrap; 
	padding-left: 5px;

}

#prev-next {
	position: relative;
	height: 50px;
	width: 580px;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#prev {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 50px;
	width: 270px;
	text-align:left;
}

#next {
	position: absolute;
	left: 310px;
	top: 0px;
	height: 50px;
	width: 270px;
	text-align: right;
}



#trail {
	color:#000;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 13px;

	
	/*float: left;*/
	width: 550px;
	
	

	
/*		border: 1px solid #784d33;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-width: 0px;*/
	
}

#footer a:link {
	text-decoration: none;
	color: #fff;	
}

#footer a:visited {
	text-decoration: none;
	color: #fff;
	}

#footer a:hover {
	color: #e1d796;	
	text-decoration: none;
	}
	
.story_text.a:link {
	text-decoration: underline;
	color: #333;	
}

.story_text.a:visited {
	text-decoration: underline;
	color: #333;
	}

.story_text.a:hover {
	text-decoration: underline;
	color: #F00;
	}
	
#trail a:link {
	text-decoration: underline;
	color: #333;	
}

#trail a:visited {
	text-decoration: underline;
	color: #333;
	}

#trail a:hover {
	text-decoration: underline;
	color: #F00;
	}
	

span.first /* add bold? */
{
 float: left;
 font-family: Georgia,serif;
 font-size: 325%;
 line-height: 0.85em;
 margin-right: 0.03em;
 margin-bottom:-0.35em; /*was -0.25em */
}

.caption {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 14px;
	color: #333;
	text-decoration: none;
	text-align: justify;
}
  
.info{
    position:relative; /*this is the key*/
    z-index:24; 
	background-color:#ECE9BB;
    color:#000;
    text-decoration:none;
	padding: 3px 3px;
	}

a.info:link {
	text-decoration: none;
}	

a.info:visited {
	text-decoration: none;
}	


a.info:hover{
	z-index:25;
	background-color: #C9EAED;
	color: #333;
	text-decoration: none;
}

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
	padding: 5px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 150%;
    top:1.5em; 
	left:0em; /*was -6em */
	width:15em;
    border:1px solid #000;
    background-color:#ECE9BB; 
	color:#000;
    text-align: center;
	z-index:1000; 
	text-decoration: none;

	}

	.timer {
	font-size: 20px;
	
}

	.timer.a:link {
	text-decoration: underline;	
	}	
	
	.timer.a:visited {
	text-decoration: underline;	
	}
	
	.timer.a:hover {
	text-decoration: underline;	
	}
	
	.map {
		padding-right: 20px;
		padding-top: 10px;
		padding-bottom: 0px;	
		float: left;
		border:none;
	}
	
		.map2 {
		padding-left: 20px;
		padding-top: 10px;
		padding-bottom: 0px;	
		float: right;
		border:none;
	}
	
	
	#prev a {
	text-decoration: underline;
}
#next a {
	text-decoration: underline;
}
#story-head .timer {
	text-decoration: underline;
}

#story-head-smaller .timer {
	text-decoration: underline;
}
#sidebar_hover {
}

/*.videowrapper{margin-top: 40px;}*/

/* top right bottom left */
.videowrapper{margin: 0px 0px 0px 15px; }

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

