@charset "UFT-8";
/* CSS Document */
/*
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: headerAndButtons;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/talldark.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
    url(../fonts/talldark.eot);/*.eot for IE browsers*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: BasicText;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/steelfish.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
    url(../fonts/steelfish.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: headerAndButtons;/*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;
}


#topBar{/*This is a fixed position bar along the top*/
background-color: rgba(38,38,38,.90);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;/*makes this bar as wide as the browser*/
	height: auto;
	z-index: 99998;
}
#topBarCentering{
   background-color: rgba(38,38,38,.90);
   width:100%;
   height:50px;
   margin:0 auto;/*this centers this box*/
   position:relative;
   z-index:99999;
}
section {
	width: 100%;
	background-size: contain;/*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-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);
}
header {
	width: 100%;
	height: 100vh;
	padding-top: 10px;
	font-size: 7em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	font-family: headerAndButtons;
	color: rgba(186,186,186,1.00);
}
#header2 {
	color: rgba(184,184,184,1.00);
}
#header3 {
	color: rgba(60,60,60,1.00);
}
#header4 {
	color: rgba(66,66,66,1.00);
}
article {
	background-color: rgba(214,214,214,1.00);
	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: 100vh;
	font-family:BasicText;
	font-size:2em;
}
.btn {
	position: relative;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	float: left;
	padding-top:15px;
	margin-right: 30px;
	cursor: pointer;
	font-family: headerAndButtons;
	margin-left: 0px;
	left: 32px;
	font-size: 2em;
	color: rgba(166,166,166,1.00);
	font-weight: normal;
}

.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;
}
.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%;
}




#thumbnails {
    width:200px;
    height:200px;
    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: rgba(174,174,174,1.00);
}
.btnView a:link, .btnView a:visited {
	color: rgba(174,174,174,1.00);/*text link color and when visited*/
	text-decoration: none;
}
.btnView a:hover, .btnView a:active {
	color: rgba(41,75,106,1.00);/*text hover color and when active or as mouse is pressed down*/
	text-decoration: none;
}
