@charset "UTF-8";

body {
	padding: 0;
	color: #000;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #BDB9B0;
	height: 100%;
	margin:0 auto;
}

/* ~~ this fixed width container surrounds all other divs ~~ */
.container {
	width: 966px; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	background-color: #1A608D;;
	position: relative;
	padding: 0;
	margin:0 auto;
}

/* ------- content -------- */
.content {
	width: 776px;
	background-color: #EFE4C6;
	padding-right: 0;
	padding-left: 0;
	float:right;
	margin: 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 40px 15px 40px 40px;
	margin-top: 0;
}

.contentLeft {
	margin: 0;
	float: left;
	padding: 0;
}

.content h3 {
	color: #1A608D;
	line-height: 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 6px;
	font-weight: normal;
	font-size: 22px;
}

.content h2 {
	color: #87001b;
	font-style: italic;
	font-weight: normal;
	line-height: 100%;
	font-size: 36px;
	margin: 0 0 6px 0;
}

.content p img .right {
	float: right;
}

.content h1 {
	font-size: 44px;
	line-height: 95%;
	color: #87001b;
	font-weight: normal;
	padding-left: 40px;
	padding-top: 45px;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	display: block;
}

.content .story {
	width: 692px;
	padding: 20px 40px;
	display:table;
}

.story .green {
	width: 628px;
	display:block;
	background-color: #FFFFEF;
	border: thin solid #D2C7A9;
	padding: 30px;
}

.story .green h4 {
	margin-bottom:0;
}

/* ~~ 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;
	list-style-type: none;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0; /* 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. */
	padding: 0;
}

p {
	font-size: 13px;
	line-height: 1.6em;
	margin-bottom: 12px;
	color: #1A608D;
}

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;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFF;
	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: #FFF9E7;
	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;
	/* text-align: center; */
}

.sidebar1 {
	float: left;
	width: 190px;
	padding-bottom: 10px;
	color: #FFF;
	background-image: url(../images/bkg_blue.jpg);
	background-repeat: repeat;
	height: 100%;
	position: relative;
	z-index: 100;
}

.sidebar1 h1 {
	font-size: 22px;
	font-weight: lighter;
	text-align: center;
	color: #EFE4C6;
	line-height: 100%;
}

.sidebar1 a img {
	margin: 18px;
}

.sansHistSociety {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	font-style: normal;
}

/* ~~ 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 */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	letter-spacing: 0.05em;
	font-style: italic;
	font-weight: lighter;
	padding: 0;
	margin: 0;
	font-size: 18px;
}

ul.nav li {
	padding-left: 25px;
	line-height: 100%;
	display: block;
	background: url(../images/nav_diamond.png) no-repeat 23px 10px;
}

ul.nav a, ul.nav a:visited {
	padding: 5px 0 5px 19px;
	display: block;
	width: 134px;
	text-decoration: none;
}

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 */
	color: #FFF;
	background-color: #1A608D;
}

.nav2 li { /* nav below main nav in sidebar */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding-left: 24px;
	list-style-type: none;
	margin: 12px 0;
}

/* ~~ 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: 12px;
	padding-bottom: 6px;
}

.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: 12px;
	padding-bottom: 6px;
}

.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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0;
}

.leadP {
	font-size: 23px;
	color: #1A608D;
	width: 350px;
	margin-left: 40px;
	line-height: 115%;
}

.leadPTimeline {
	font-size: 15px;
	margin-left: 40px;
}

.wide {
	width: 100%;	
}

.italicHNoIndent {
	font-size: 36px;
	font-style: italic;
	color: #1A608D;
	margin: 0;
	line-height: 32px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-left: 0;
}

address {
	font-style: normal;
	color: rgba(26,96,141,1.00);
	line-height: 1.25;
	text-transform:uppercase;
	margin-bottom: 2em;
}	

/* ------ sidebar2 right -------     */

.sidebar2 img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.sidebar2 {
	width: 240px;
	padding-right: 20px;
	margin-left: 30px;
	margin-bottom: 40px;
	float: right;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #87001b;
}

.sidebar2 p {
	padding: 0;
	color: #8C965E;
}

.sidebar2 ul {
	margin:47px 0 0 0;
	padding:0 0 0 20px;
	border-style: none;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	border-bottom: 0;
}
.sidebar2 ul li a:link {
	color: #3089BF;
}

.sidebar2 ul li a:hover, .sidebar2 ul li a:visited {
	color: #1A608D;
}

.dateItalic {
	color: #87001b;
	font-size: 22px;
	font-style: italic;
	font-weight: normal;
}

.sidebar2 ul li .dateItalic {
	color:#1A608D;
	font-size: 11px;
	margin-left: -32px;
	font-style:normal;
}

.sidebar2 ul li {
	margin: 0 0 10px;
	padding:0;
	display:block;
	border-bottom: 1px solid #DBC9A2;
	color: #1A608D;
	line-height: 150%;
	padding-left: 32px;
}

#footer {
	clear: both;
	font-size: 9px;
	color:#1A608D;
	text-align: left;
	padding-left: 230px;
	padding-right: 100px;
	background-color: #FFF;
	padding-top: 10px;
}

.firstPsidebar {
	margin-top: 270px;
}

.sidebar2 ul li ul {
	margin: 0;
	padding: 0;
}

.sidebar2 ul ul {
	padding: 0;
	margin: 0;
}

#footer ul {
	height: 50px;
	margin: 0 auto;
}

.footerNav {
	margin-right: auto;
	margin-left: auto;
}

.footerNav ul li {
	float: left;
	padding-bottom: 20px;
	padding-right: 20px;
	margin: 0 auto;
}

.footerNav ul li a {
	color: #4776CF;
}

.home2column .columnLeft .quote p, .home2column .columnRight .quote p {
	font-style: normal;
	color: #87001B;
	font-size: 17px;
	text-indent: 25px;
}

.caption, figcaption, .photoCredit {
	font-size: 11px;
	font-family:Arial, Helvetica, sans-serif;
/*	clear:right;*/
	color: #1A608D;
	text-align: left;
	line-height: 16px;
}
figure {
	display:table;}
	
figcaption {
	display: table-caption;
	caption-side: bottom;
	margin-bottom: 12px;
}

figure.floatLeft {
	margin: 0 12px 6px 0;	
	float: left;
}
figure.floatRight {
	margin: 0 0 6px 12px;
	float: right;
}


.home2column .columnRight ul {
	background: #1A608D;
	padding: 12px;
}

.content .threeColumn ul {
	background: #1A608D;
	padding: 12px;
	margin: 12px;
}

.content .threeColumn ul {
	margin: 0;
	margin-top: 12px;
}

.content p a:link, .content p a:visited {
	color: #2893BA;
}

.content .backToTop {
	padding-left: 40px;
	font-family: Arial, Helvetica, sans-serif;
	clear: both;
}

.columnLeft .webCredits {
	font-size: 12px;
}

h4 {
	margin: 14px 0 0;
	color: #1A608D;
	font-size: 12px;
	font-variant: small-caps;
}

h4 a:link, h4 a:hover, h4 a:active, h4 a:visited {
	color: #3089BF;
	text-decoration: none;
	line-height: 1.3;
	font-weight:normal;
}

h3 a:link, h3 a:hover, h3 a:active, h3 a:visited {color: #3089BF;
	text-decoration: none;
	line-height: 1.3;
	font-weight:normal;}


.italicH {
	font-size: 36px;
	font-style: italic;
	color: #1A608D;
	margin: 0;
	line-height: 32px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-left: -15px;
}
.columnLeft .leadP {
	width:300px;
	margin-left:0;
	font-size: 20px;
	line-height:28px;
	margin-bottom:12px;
}

li a.button {
	text-align:center;
	color: #1A608D;
padding: 6px 12px;
border: 1px solid #999;
border-radius: 4px;
background-color: white;
box-sizing: border-box;
width: 100px;
margin: 2em auto;
font-size: 18px;
font-weight:bold;
}

.nav2 li.button {
	margin-top: 2em;	
}
 .menu-top ul {
	background: #1A608D;
	padding: 12px;
	margin: 12px;
	float: right;
}

.story .intro {
	font-size: 18px;
}
