header, section, article, aside, figure, figcaption, nav, footer {
	display:block;	
}
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
    font-family: titlefont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/titlefont.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: bodyfont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/bodyfont.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;
}
body {/*these are the 5 basic CSS properties and values to start a website*/
    
    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;
}
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);/*Path relative to CSS file, not relative to html file*/
	margin-top:50px;
}
#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: 300px;
	padding-top: 10px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	font-family: titlefont;
	color: rgba(255,255,255,1.00);
}
article {
	font-family: bodyfont;
	background-color: rgba(255,255,255,0.75);
	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;
}

#topBar{/*This is a fixed position bar along the top*/
   background-color: rgba(119,115,197,0.43);/*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;
}
.btn{
	margin-right:20px;
	 font-family: titlefont;
	 color: rgba(255,255,255,1.00);
}

.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float: left;
}
.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%;
}

.bio {
	width: 100%;
	height: auto;
	clear: both;
	margin-bottom: 10px;
}
.bio img {
	margin-right: 18px;
	margin-bottom: 20px;
}
.bioInt {
	margin-top: 21px;
}
footer {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 0.8em;
	font-family: bodyfont;
	clear: both;
}
