@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Copse|Della+Respira|Mate:400,400i');

body,td,th {
	font-family: Mate, serif;
	color: #333;
	background: #eef6fd;
	font-size: 18px;
	margin: 0;
	padding: 0;
}
/* ~~ EndScripts ~~ */
/* ~~ 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;
}
h1, 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;
}
a img:visited {
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
p a:link {
		color:#069;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
p a:visited {
	color: #069;
	text-decoration: none;
}
p 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. */
	color: #3399cc;
	text-decoration: none;
}
.boldblue{
	font-weight: bold;
	color: #069;
}
.boldblue-csc{
	font-weight: bold;
	color: #069;
	font-variant: small-caps;
	font-size: 14px;
	line-height: 14px;
}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	margin-top: 0;
	
}

/* H E A D E R  ~
he 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~~ */
.header {
	color: #069;
	font-family:'Mate', serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
	text-align: justify;
	width: 100%;
	height: 143px;
	overflow: hidden;
	text-shadow: 2px 2px 2px #033;
	background-image: url(images/10x143headerbkgd.png);
	background-repeat: repeat-x;
}
.headerCAPS {
	font-style: normal;
	font-weight: bold;
	color: #09C;
	font-family:'Copse', serif;
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
	text-align: justify;
	overflow: hidden;
	}
#logo {
	position: absolute;
	margin-top: 19px;
	margin-left: 10%;
	height:150px;
	z-index: 1000;
}
.logo-wrapper{
	max-width:540px;
	height:auto;
	position: relative;
	display:block;
}
.logo-wrapper img {
	width:100% !important;
	height:auto;
	display:block;
}
.logo-wrapper img a {
	border: none;
}
.logo-wrapper a:visited {
	border: none;
}
/* ************* N A V I G A T I O N *************~~ */
.NavWrapper {
	position: relative;
	width: 100%;
	text-align: center;
	background: #003; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#003, #069); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#003, #069); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#003, #069); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#003, #069); /* Standard syntax (must be last) */
	z-index:1001;
}
.NavBox {
	width: 100%; max-width: 768px;
	margin: 0 auto 0 auto;
	text-align: left;
}
/******************* JOIN-CONTACT BOX *********************/
#join-contact {
	position: fixed; top: 0px; right: 0px; 
	width: 90px; 
	padding: 6px 0 6px 8px; 
	color: #94c7d4; 
	font-size: 10px; font-weight: 700; 
	text-decoration: none; 
	background-color: rgba(0, 48, 97, 0.6);
}

#join-contact a {
	color: #94c7d4;
	text-decoration: none;
}
#join-contact a:hover {
	color:#FC0;
}
	

/******************* SLIDESHOW *********************/
.slideshowContainer1 {
	width:100%;
	height: auto;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
.slideshowContainer{
	width:75%;
	height: auto;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
.erb-image-wrapper{
	max-width:100%;
	height:auto;
	position: relative;
	display:block;
	margin-top: 0;
	margin: 0 auto 0 auto;
	text-align: center;
}
.erb-image-wrapper img{
	width:100% !important;
	height:auto;
	display:block;
	text-align: center;
	
}
/******************* LAYOUT ********************

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.*/
.content {
	max-width: 1200px;
	margin: 0 auto 30px auto;
	padding-top: 20px;
	padding-right: 10%;
	padding-left: 10%;
	font-family:'Mate', serif;
}
.Full{
	width: 100%;
	margin-top: 30px;
	float: left;
}
.row{
width: 100%
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.Third{
	width: 32%; margin-right:1%;
	float: left;
}
.TwoThirds{
	width: 65%; margin-left: 1%; margin-right: 1%
	float: left;
}
.Half {
	width: 48%; margin-right: 2%;
	float:left;
}
.Quarter {
	width: 24%; margin-right: 1%;
	float:left;
}
.ThreeQuarter {
	width: 73%; margin-right:2%;
	float: left;
}

/* ~~------------ F E A T U R E S ------------~~ */
.sidebarRight{
	width: 480px;
	margin-left: 20px;
	float: right;
}
.sidebarRight img{
	width:100% !important;
	height:auto;
	display:block;
	text-align: center;
	
}
.sidebarLeft{
	width: 480px;
	margin-right: 20px;
	float: right;
}
.sidebarLeft{
	width:100% !important;
	height:auto;
	display:block;
	text-align: center;
	
}
.smallSidebar{
	width: 240px;
	float: right;
	margin-left: 10px;
}
.Smallitalic {
	font-size: 14px;
	font-style: italic;
}
.bluebar{
	width: 100%; margin: 0 auto 20px auto; 
	word-spacing:.25em; letter-spacing: .25em; 
	background-color:#069; color: #fff; 
	text-align: center; font-size: 14px; 
	padding: 6px 0 6px 0;
}
.blueborderbar{
	width: 100%; min-width: 320px; margin: 0 auto 20px auto; 
	word-spacing:.5em; letter-spacing: .5em; 
	color: #069; 
	text-align: center; font-size: 14px; 
	font-family: Copse, Georgia, serif; font-weight: 700;
	padding: 6px 0 6px 0;
	border-top:solid thin #069; border-bottom:solid thin #069;
}
.blueButton{
	width: 33%; min-width: 240px; margin: 0px auto 20px auto; 
	text-align: center; font-weight: 700; color: #fff;  
	background-color: #069; 
	font-family: Copse, Georgia, serif; font-weight: 700;
	font-variant: small-caps; 
	text-decoration: none; 
	padding: 5px;
	border-left: solid 5px #6cc; border-right: solid 5px #6cc;
}
.blueButton a:link{
	color: #fff; text-decoration: none;
}
.blueButton:hover{
	background-color:#006;
	color: #FFFFCC; text-decoration: none;
}


.VertAlign {display: table;}

.VertAlignChild {
    display: table-cell;
    vertical-align: middle;
}
/* ~~ B A S I C S  

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 footer ~~ */
.footer {
	padding: 10px 0;
	background: #6F7D94;
}

/* ~~ 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;
}
body {
	font-family: 'Mate', serif;
	background-image: url(images/300x2700HrtlndMap.png);
	background-repeat: no-repeat;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-position: 0px 173px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Copse, Georgia, serif; font-weight: 400;
}
h1 {
	color: #336699;
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 5px;
}
h2 {
	color: #336699;
	font-size: 24px;
}
h3 {
	color: #336699;
	font-weight: 400;
	font-size: 18px;
}
h4 {
	color: #000;
	font-weight: 700;
	font-size: 18px;
}
h5 {
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}
h6 {
	color: #495883;
	font-weight: 700;
	font-size: 24px;
}
/* for 768px or less */
@media screen and (max-width: 960px) {
	.Third{
		width: 48%;
		margin-right: 2%
		float:left;
	
}
/* for 768px or less */
@media screen and (max-width: 768px) {

}

/* for 480px or less */
@media screen and (max-width: 480px) {
body{
	font-size: 16px;
}
.container{
		width: 480px;
	}
.content{
			width: 476px;
			margin-left: 4px;
	}
#logo {
		margin-left: 2%;
	}
	.NavBox{
	max-width: 480px;
}
.Half {
	width: 100%; margin: 0; !important
}
.Third{
	width: 99%; !important
}
.TwoThirds{
	width: 100%;
	margin: 0 0 0 0;
}
.Quarter{
	width: 100%; margin: 0%;
}
.ThreeQuarter{
	width: 100%; margin: 0%;
}
.blueborderbar{
	width: 100%; min-width: 320px; margin: 0 auto 20px auto; 
	word-spacing: -.05em; letter-spacing: -.05em; 
	color: #069; 
	text-align: center; font-size: 12px;
}
.sidebarRight{
	width: 376px;
	margin: 0;
	float: left;
}
.sidebarLeft{
	width: 376px;
	margin: 0;
	float: left;
}
.smallSidebar{
	width: 100%;
	margin-left: 0;
	float: left;
}

#join-contact{
	width: 80px;
	font-size: 9px;
}
}
/* for 320px or less */
@media screen and (max-width: 320px) {
h1 { 
font-size: 27px; line-height:27px;
}

.NavBox{
	width: 320px;
}
.container{
		min-width: 320px;
}
.content{
		width: 314px;
		margin-left: 6px;
}
body {
	font: 14px 'Mate', Georgia, serif;
	line-height: 18px;
	background-image: none;
}
.header {
	height: 107px;
}
#logo {
	margin-left: 1%;
	height: 107px;
}
.content {
	padding-right: 3%;
	padding-left: 3%;
	background-image: none;
}
.sidebarRight{
	width: 310px;
	margin: 0 5px 0 5px;;
	float: left;
}
.sidebarLeft{
	width: 310px;
	margin: 0 5px 0 5px;;
	float: left;
}
.erb-image-wrapper{
	max-width: 320px;
	margin: 0;
}
}
