/*
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: p0TitleFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/p0TitleFont.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/p0TitleFont.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: p0BtnFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/p0ContentFont.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/p0ContentFont.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/p0BtnFont.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/p0BtnFont.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;
	background-image: url(../images/background3.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#centeringDiv {
	width: 980px;/*optimum width for both desktops, laptops, and tablets*/
	height: 850px;/*optimum height for both desktops, laptops, and tablets*/
	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*/
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(69,170,203,0.60) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(69,170,203,0.60) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(69,170,203,0.60) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(69,170,203,0.60) 100%);
}
header {
	padding: 10px;
	font-family: p0TitleFont;
	width: 100%;
	height: 150px;
	position: relative;/*all children divs inside header take their (x,y) position from top left of header*/
	}
nav {
	position: relative;
	width: 100%;/*change as needed*/
	height: 100px;/*change as needed*/
	z-index: 1000;/*stacking order, bigger numbers are on top*/
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	justify-content: center;
}
.btn {
	position: relative;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	font-family: p0BtnFont;
	margin:auto;
	width:auto;
	font-size: 103%;
	height: 32px;
	cursor: pointer;
}
section {/*used for the main content area*/
	position:relative;
	width:100%;
	min-height:600px;
	height:auto;
	z-index:899;/*stacking order - below nav and .btn and article*/	
}
#allArticlesWrapper{
	position: relative;
	height: 600px;
	width: 10000px;
}
article {/*used for the main content area*/
	position:relative;
	width:980px;
	float:left;
	min-height:600px;
	height:auto;
	padding:10px;
	z-index:900;/*stacking order - below nav and .btn but above section*/	
}
article p {
	text-indent:3em;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
footer {
	clear:both;/*clears away and floating or text wrapping*/
	position:relative;
	text-align:right;
	font-size:0.8em;
	width:100%;
	line-height:1.2em;/*This will help to vertically center the text */
	height:auto;
	z-index:800;/*stacking order - below article, nav, and .btn*/		
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
.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: 3px 10px 10px 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 {text-indent: 0px;}/*for any paragraphs inside photo frames*/
.floatLeft {	float: left;}/*positions an element on the left of parent div and have text wrap around it*/
.floatRight {float: right;}/*positions an element on the right of parent div and have text wrap around it*/
.centerText {text-align: center;}/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
.centerBox {	margin:0 auto;clear: both;}/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
.clearFloats {clear: both;}/*apply to div tags - clears away and floating or text wrapping*/
.roundedCorners10 {border-radius: 10px;}/*apply to img tags for rounded corners*/
.roundedCorners15 {border-radius: 15px;}
.roundedCorners20 {border-radius: 20px;}
.boxShadow5 {box-shadow: 5px 5px 5px #000000;}/*apply to div or img tags for shadows*/
.boxShadow10 {box-shadow: 10px 10px 10px #000000;}
.textShadow5 {text-shadow: 5px 5px 10px #000000;}/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
.textShadow10 {text-shadow: 10px 10px 20px #000000;}


#article1{
	height: 700px;
}
#article2{
}
#article3{
}
#article4{
}
#article5{
}
.articleTitle {
	width: 100%;
	font-family: p0TitleFont;
	text-align: center;
	font-size: 2em;
	height: 75px;
	letter-spacing: 16px;
	z-index: 10;
	position: absolute;
	top: 3px;
	left: -1px;
}
.webLink {
	width: 203px;
	padding: 5px;
	height: 210px;
	position: absolute;
	right: 76px;
	bottom: -88px;
	font-family: p0BtnFont;
	font-size: 25px;
	overflow: hidden;
}
#webLink5 {
	/* [disabled]position: relative; */
	/* [disabled]float: left; */
	width: 168px;
	height: 169px;
	right: 76px;
	bottom: -88px;
}
#webLink2 img {
	margin-left: -204px;
	padding-right: 0px;
}
#webLink3 img {
	margin-left: -400px;
}
#webLink4 img  {
	margin-left: -600px;
}
#webLink5 img {
	padding-right: 0px;
	margin-top: 10px;
	height: auto;
	width: 771px;
}
#webLink6 img {
	margin-left: -200px;
}
#webLink7 img {
	margin-left: -403px;
}
#webLink8 img {
	margin-left: -602px;
}
#webLink9 img  {
	margin-left: -800px;
}
.articleGraphic {
	position: absolute;
	left: 0px;
	width: 100%;
	z-index: 9;
	cursor: pointer;
	height: 300px;
	top: 0px;
}
.articleContent {
	width: 100%;
	padding: 10px;
	height: 200px;
	position: absolute;
	top: 305px;
	left: 0px;
	font-family: p0ContentFont;
}
#photoOfSelf{
	width:auto;
	height:auto;
	margin:5px;
	border-radius:40px;
	overflow:hidden;
	float:left;
}
#articleContent1{
	height: 400px;
	top: 12px;
}
#musicBox{
	width: 350px;
	height: 27px;
	position: absolute;
	left: 64px;
	z-index: 1000000000;
	background-color: #FF0004;
	top: 646px;
}
#articleGraphic2{
	background-image:url(../images/article1b.jpg);	
}
#articleGraphic3{
	background-image:url(../images/article2b.jpg);	
}
#articleGraphic4{
	background-image:url(../images/article3b.jpg);	
}
#articleGraphic5{
	background-image:url(../images/article4b.jpg);	
}
#articleGraphic6{
	background-image:url(../images/article5b.jpg);	
}
#articleGraphic7{
	background-image:url(../images/article6b.jpeg);	
}
#articleGraphic8{
	background-image:url(../images/article7b.jpg);	
}
#articleGraphic9{
	background-image:url(../images/article8b.jpg);	
}
#articleGraphic10{
	background-image:url(../images/article9b.jpg);	
}
#coverAll {
	width: 100%;
	background-color: #fff;
	position:absolute;
	top:-100%;/*gets it out of the way so designing real content is easier*/
	left:0;
	display:flex;/*REQUIRED*/
	align-content:center;/*REQUIRED vertical centering*/
	justify-content:center;/*REQUIRED horizontal centering*/
	z-index:20000;/*ensures to be on top of everything*/
}
#nameBox {
	width: 900px;
	height: 300px;
	margin: auto;/*REQUIRED*/
	font-size: 4em;
	cursor: pointer;
	z-index: 20001;
	text-align: center;
	background-image: url(../images/house.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position:relative;
}
