@charset "UTF-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: customName1;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/filename1.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: customName2;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/filename2.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/  url(../fonts/filename2.eot)/*.eot for IE browsers*/
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
	display: 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(255,255,255,1.00);/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;/*removes default settings*/
	z-index: 0;
	background-image: url(../images/camerabg.jpg);
	background-position: right -829px;
	background-repeat: no-repeat;
	background-color: #000000;
}
#centeringDiv {
	width: 980px;/*optimum width for both desktops, laptops, and tablets*/
	min-height: 850px;/*optimum height for both desktops, laptops, and tablets*/
	height:auto;
	margin: 0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
	position: relative;/*all children divs inside centeringDiv take their (x,y) position from top left of centeringDiv*/
	z-index: 1;/*stacking order - small numbers a below high numbers*/
	overflow:hidden;
}
#topBar {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #000000;
	z-index: 999;
}
nav {
	position: relative;/*makes it draggable*/
	top: 0px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 0px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 980px;/*change as needed*/
	height: 50px;/*change as needed*/
	z-index: 1000;/*stacking order, bigger numbers are on top*/
	margin:0 auto;
}

.btn {
	position: relative;/*makes it draggable*/
	text-align: left;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	width: auto;
	height: 50px;
	float: left;
	margin-right:40px;
	cursor: pointer;
	font-family: chelsea-market;
	font-style: normal;
	font-weight: 400;
	color: rgba(255,151,0,1.00);
	font-size: 1.4em;
}
#btn0 {
	margin-left: 146px;
}
#btn1 {
	position: static;
}
#btn2 {
}
#btn3 {
}
#btn4 {
}
#DUPLICATE-AND-CHANGE-MY-NAME {/*used for a draggable div*/
	position: absolute;/*makes it draggable*/
	top: 200px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 100px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 160px;/*change as needed*/
	height: 90px;/*change as needed*/
	background: rgba(255,226,0,1.00);/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
#allSections {
	position:relative;
	width:4000px;
	min-height:800px;
	height:auto;
	top:0;
	left:0;
	overflow:visible;
}
.section {/*used for the main content area*/
	position: relative;
	width: 980px;
	min-height: 800px;
	height:auto;
	z-index: 900;/*stacking order - below nav and .btn*/
	float:left;
	overflow:visible;
}
#section0 {

}
.article {
	position: relative;
	height: auto;
	overflow:visible;
}
.articleHeader {
	position: relative;
	height: 40px;
	width: 100%;
	text-align: center;
	font-size: 3em;
	font-family: chelsea-market;
	font-style: normal;
	font-weight: 400;
	color: #FFFFFF;
}
.articleContent {
	position: relative;
	min-height: 566px;
	height: auto;
	overflow: auto;
	width: calc(100%-10px);
	background-color: rgba(0,0,0,0.56);
	color: rgba(255,255,255,1.00);
	top: 40px;
	padding: 5px;
	overflow:visible;
}
article p {
	text-indent: 3em;/*an em is the size of a letter m*/
}
#article3,#articleContent3, #section3{
	min-height:900px;
	height:auto;
	overflow:visible;
}
.frame {/*this creates a frame around photo/text*/
	width: auto;/*fits the frame tightly around the photo/text*/
	height: auto;/*fits the frame tightly around the photo/text*/
	margin: 10px;/*separates the outer wrapping text away from the frame border*/
	padding: 5px;/*separates the inner photo/text away from the frame border*/
	text-align: center;/*centers any caption under/above the photo inside frame*/
	border: 1px dotted #000000;/*styles the frame - adjust as desired*/
}
.frame p, figure p, figcaption p {/*for any paragraphs inside photo frames*/
	text-indent: 0px;
}
footer {
	position: relative;
	text-align: center;
	width: calc(100%-10px);
	height: 20px;
	padding: 5px;
 font-size:0.8em  z-index:800;/*stacking order - below article, nav, and .btn*/
}

/*magizine stuff*/
.wrap {
	-webkit-shape-margin:0.2em;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:0.2em;
	-ms-shape-margin:0.2em;
	-o-shape-margin:0.2em;
	shape-margin:0.2em;
}
#Davemaglink {/*Repeat this blcok for all image you want text to wrap around*/
	-webkit-shape-outside: url("../images/Davemaglink.png");/*IMPORTANT!!!! - the URL path is relative to the CSS file, NOT the html file*/
	-moz-shape-outside: url("../images/Davemaglink.png");
	-ms-shape-outside: url("../images/Davemaglink.png");
	-o-shape-outside: url("../images/Davemaglink.png");
}
#articleContent1 a:link, #articleContent1 a:visited{
	color:#1D68AD;
}
#articleContent1 a:hover, #articleContent1 a:active{
	color: #EF8B07;
}
.floatLeft {/*positions an element on the left of parent div and have text wrap around it*/
	float: left;
}
.floatRight {/*positions an element on the right of parent div and have text wrap around it*/
	float: right;
}
.centerText {/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
	text-align: center;
}
.centerBox {/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
	margin: 0 auto;
	clear: both;
}
.clearFloats {/*apply to div tags - clears away and floating or text wrapping*/
	clear: both;
}
.roundedCorners10 {/*apply to img tags for rounded corners*/
	border-radius: 10px;
	-webkit-border-radius: 10px;/*webkit is for Chrome and Safari browsers*/
	-moz-border-radius: 10px;/*moz is for Firefox browsers*/
	-ms-border-radius: 10px;/*ms is for Internet Explorer browsers*/
	-o-border-radius: 10px;/*o is for Opera browsers*/
}
.roundedCorners15 {
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}
.roundedCorners20 {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.boxShadow5 {/*apply to div or img tags for shadows*/
	box-shadow: 5px 5px 5px #000000;
	-webkit-box-shadow: 5px 5px 5px #000000;
	-moz-box-shadow: 5px 5px 5px #000000;
	-ms-box-shadow: 5px 5px 5px #000000;
	-o-box-shadow: 5px 5px 5px #000000;
}
.boxShadow10 {
	box-shadow: 10px 10px 10px #000000;
	-webkit-box-shadow: 10px 10px 10px #000000;
	-moz-box-shadow: 10px 10px 10px #000000;
	-ms-box-shadow: 10px 10px 10px #000000;
	-o-box-shadow: 10px 10px 10px #000000;
}
.textShadow5 {/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
	text-shadow: 5px 5px 10px #000000;
	-webkit-text-shadow: 5px 5px 10px #000000;
	-moz-text-shadow: 5px 5px 10px #000000;
	-ms-text-shadow: 5px 5px 10px #000000;
	-o-text-shadow: 5px 5px 10px #000000;
}
.textShadow10 {
	text-shadow: 10px 10px 20px #000000;
	-webkit-text-shadow: 10px 10px 20px #000000;
	-moz-text-shadow: 10px 10px 20px #000000;
	-ms-text-shadow: 10px 10px 20px #000000;
	-o-text-shadow: 10px 10px 20px #000000;
}


/*photogallery stuff */
#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;
}
