#topBar{/*This is a fixed position bar along the top*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;/*makes this bar as wide as the browser*/
	height: auto;
	z-index: 99998;/*places bar top most so it's always clickable*/
	background-color: rgba(255,255,255,0.75);
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: p5font;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/p5font.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
    url(../fonts/filename1.eot);/*.eot for IE browsers*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: p0title;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/p0title.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
    url(../fonts/filename2.eot);/*.eot for IE browsers*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: eightOne;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/EightOne.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
    url(../fonts/filename2.eot);/*.eot for IE browsers*/ 
}
* {
    box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
}
html, body {
    width:100%;
    min-height:100%;
    height:auto;
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
    display:block;
    /*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
    font-family: Verdana, sans-serif;/*change this for your design*/
    font-size:100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
    color:rgba(0,0,0,1.00);/*main text color, default black, change as needed*/    
    margin:0;/*removes default edges*/
    padding:0;/*removes default settings*/
    z-index:0;/*stacking order - small numbers a below high numbers*/
    position:relative;
}
#topBarCentering{
   width:1000px;
   height:75px;
   margin:0 auto;/*this centers this box*/
   position:relative;
   z-index:99999;
}
#centeringDiv {
   margin-top:50px;/*lowers centeringDiv so that it's not behind and covered up by the topBar*/
}
.btn {
	cursor: pointer;
	position: relative;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	float: left;
	margin-left: 100px;
	margin-bottom: 0px;
	font-family: p0title;
	font-size: 1.15em;
	top: 20px;
	color: #fff;
	background: #007994;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border: 4px solid #007994;
	height: 40px;
	padding-left: 2px;
	padding-right: 2px;
	padding-top: 5px;
}
.btn:hover {
	background: transparent;
	color: #007994;
}
 	header, section, article, aside, figure, figcaption, nav, footer {
	display:block;	
}
section {
	width: 100%;
	background-size: cover;/*This makes the image proportionally resize itself to cover the width of the screen*/
	background-origin: content-box;/*VERY IMPORTANT - this sets where the background begins to be visible*/
	background-attachment: fixed;/*VERY IMPORTANT - this makes the image NOT scroll with the content*/
	background-repeat: no-repeat;/*Not needed if your image is tall enough*/
	
}
#section1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	margin-top: 75px;
}
#section2 {
	background-image: url(../images/backgrounds/bg2.jpg);
}
#section3 {
	background-image: url(../images/backgrounds/bg3.jpg);
	height: vh;
}
#section4 {
	background-image: url(../images/backgrounds/bg4.jpg);
}
#section5 {
	background-image: url(../images/backgrounds/bg5.jpg);
}
header {
	width: 100%;
	height: 170px;
	padding-top: 75px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
}
article {
	background-color: rgba(45,121,148,0.97);
	height: auto;/*Allows this area to be vertically ELASTIC with non-floated content*/
	width: 100%;
	position: relative;
	overflow: auto;/*Allows this area to be vertically ELASTIC with floated content*/
	min-height: 700px;
	font-family: p5font;
	font-size: 12px;
}
.centeringDiv {
	padding-top: 20px;
	padding-right: 130px;
	padding-left: 130px;
	padding-bottom: 5px;
	maxWidth: 960px;
	min-height: 300px;
	height: auto;/*Allows this area to be vertically ELASTIC*/
	margin: 0 auto;/*This centers the content on the browser*/
	position: relative;
	z-index: 200;
	width: 100%;
}    
.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float: right;
}
.floatLeft {/*YOU MAY ALREADY HAVE THIS so don't copy this in such a case*/
	float:left;
}


.wrap {
	-webkit-shape-margin:0.2rem;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:0.2rem;/*rem stands for root em - you are changing the size relative to the size of 1em of the body (root) css instead of relative to the font-size of the parent container*/
	-ms-shape-margin:0.2rem;
	-o-shape-margin:0.2rem;
	shape-margin:0.2rem;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width: 480px;/*same width as video itself*/
	width: 100%;
	margin-top: 15px;
	margin-right: 15px;
	margin-left: auto;
	margin-bottom: 0;/*centers the video*/
	float: left;
	border-color: rgba(77,201,235,1);
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:480px;/*same width as video itself*/
	max-height:360px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}

.headerText{
	width: 400px;
	height: 100px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.75);
	font-family: p0title;
	font-size: 1em;
	}
*:focus {
	outline:0;
}
* {
	box-sizing:border-box;
}
#introPhoto{
	height: 500px;
	width: 100%;
	padding-left: 15px;
	padding-top: 15px;
	}
#introTitle{
	text-align: center;
	background-color: #c1f6e5;
	width: 100%;
	float: none;
	}
.articleText {
	background-color: rgba(255,255,255,0.75);
	padding: 20px;
	border-radius: 20px;
	height: auto
	}
