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*/
	font-family: indie-flower;
	font-size:20px;
}
.btn {
	font-family: indie-flower;
	font-style: normal;
	font-weight: 400;
	color: #fff;
	font-size: 1.5em;
	margin: 0 40px;
	-webkit-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}
#section1 {
	margin-top:50px;
	background-image: url(../images/backgrounds/bg1.jpg);/*Path relative to CSS file, not relative to html file*/
}
#section2 {
	background-image: url(../images/backgrounds/bg2.jpg);
}
#section3 {
	background-image: url(../images/backgrounds/bg3.jpg);
}
#section4 {
	background-image: url(../images/backgrounds/bg4.jpg);
}
#section5 {
	background-image: url(../images/backgrounds/bg5.jpg);
}
header {
	width: 100%;
	height: 600px;
	padding-top: 10px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	font-family: indie-flower;
}
article {
	background-color: rgba(255,255,255,0.85);
	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: calc(100vh - 300px);
}
.centeringDiv {
	padding: 10px;
	max-width: 960px;
	width: 100%;
	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;
	background-image: url(url);
}

#topBar{/*This is a fixed position bar along the top*/
	background-color: rgba(112,112,112,1.00);/*0.5 makes the bar 50% transparent*/
	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*/
}
#topBarCentering{
   width:1000px;
   height:50px;
   margin:0 auto;/*this centers this box*/
   position:relative;
   z-index:99999;
   -webkit-display:flex;
   display:flex;
   justify-content:center;
   flex-wrap:no-wrap;
}
.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;
}
#magThumb {/*Repeat this blcok for all image you want text to wrap around*/
	-webkit-shape-outside: url("../images/magazineThumbnail.png");/*IMPORTANT!!!! - the URL path is relative to the CSS file, NOT the html file*/
	-moz-shape-outside: url("../images/magazineThumbnail.png");
	-ms-shape-outside: url("../images/magazineThumbnail.png");
	-o-shape-outside: url("../images/magazineThumbnail.png");
    shape-outside: url("../images/magazineThumbnail.png");
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*same width as video itself*/
	max-height:480px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}
.btn:hover {
	color: rgba(58,201,181,1);
}
#thumbnails {
    width:800px;
    height:800px;
    position:relative;
    top:0;
    margin:20px auto;
}
.btnBox {/*container for each thumbanil*/
	float: left;/*allows for reshuffling depending upon window size*/
	position: relative;
	overflow: hidden;
	background-image: url(../images/btnBoxBackground.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.btnBox, .btnBox figure img {
    width:200px;
    height:200px;
}
.btnBox figure  img{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 40;
	cursor: pointer;
}
.btnHolder {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 50;
}
.boxHeader {
	text-align: center;
	font-weight: bold;
	font-size: 1.5em;
	margin-top: 15px;
	margin-bottom: 10px;
}
.boxText {
	width: 80%;
	height: 50%;
	margin:0 auto;
	font-size: 0.9em;
}
.btnView {
	width: 50%;
	margin: 10px auto;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	background-color: #000000;
	padding: 5px;
	color: #FFFF00;
}
.btnView a:link, .btnView a:visited {
	color: #FFFF00;/*text link color and when visited*/
	text-decoration: none;
}
.btnView a:hover, .btnView a:active {
	color: #FF6666;/*text hover color and when active or as mouse is pressed down*/
	text-decoration: none;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*same width as video itself*/
	max-height:480px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}