@charset "UTF-8";
/* CSS Document */
/*
Here are some commonly used CSS class selectors which 
-can applied to multiple elements on a page
-can be applied in and combination
*/
@font-face {
 font-family: pageTitleFont;
 src: url("../fonts/cuteCartoon.eot"), /* EOT file for IE */
 		url("../fonts/cuteCartoon.ttf") /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: btnFont;
 src: url("../fonts/btnFont.eot"), /* EOT file for IE */
		url("../fonts/btnFont.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: projectTitleFont;
 src: url("../fonts/projectTitle.eot"), /* EOT file for IE */
		 url("../fonts/projectTitle.ttf") /* TTF file for CSS3 browsers */
}

@font-face {
 font-family: pagey;
 src: url("../fonts/school.eot"), /* EOT file for IE */
		 url("../fonts/school.ttf") /* TTF file for CSS3 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(0,0,0,1.00);/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;
	position: relative;
	background-image: url(../images/bgNow.jpg);
	background-size: cover;
}
#pageTitle{
	font-family: pageTitleFont;
	font-style: normal;
	font-size: 4em;
	position: absolute;
	z-index: 109;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px;
	text-align: center;
	width: 980px;
	align-content: center;
}
#centeringDiv {
	width: 980px;
	height: 1131px;
	margin: 0 auto;
	position: relative;
	background-image: url(../images/tileable_wood_texture_02_by_ftourini-d3k1vk9.jpg);
}
header {
	width: 100%;
	height: 150px;
	/* [disabled]background-color:#A89674; */
	z-index: 20;
	position: relative;
}
nav {
	height: 25px;
	width: 98%;
	/* [disabled]background-color: #00FF2D; */
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	padding-top: 102px;
	background-position: 0% 0%;
	background-size: cover;
}
.btn {
	font-family: btnFont;
	width: 95px;
	height: 25px;
	text-align: center;
	/* [disabled]background-color: #FFFC00; */
	cursor: pointer;
	float: left;
	position: relative;
	margin-right: 19px;
	color: #05264C;
	margin-top: 28px;
}
#allArticles {
	width: 100%;
	height: 919px;
	position: relative;
	z-index: 10;
	overflow: hidden;
	margin-right: 175px;
}
#allArticlesWrapper {
	height: 899px;
	width: 12691px;
	position: relative;
	top: 0px;
	left: 0px;
}
article {
	width: 980px;
	height: 982px;
	position: relative;
	float: left;
	margin-right: 420px;
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,1.00) 6.43%,rgba(255,255,255,1.00) 68.09%,rgba(255,255,255,0.00) 96.99%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,1.00) 6.43%,rgba(255,255,255,1.00) 68.09%,rgba(255,255,255,0.00) 96.99%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,1.00) 6.43%,rgba(255,255,255,1.00) 68.09%,rgba(255,255,255,0.00) 96.99%);
	background-image: linear-gradient(180deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,1.00) 6.43%,rgba(255,255,255,1.00) 68.09%,rgba(255,255,255,0.00) 96.99%);
	margin-top: 26px;
}
#article0 {
}
#article1 {
}
#article2 {
}
#article3 {
}
#article4 {
}
#article5 {
}
#article6 {
}
#article7 {
}
#article8 {
}
#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*/
}
p {
	text-indent:1.5em;/*an em is the size of a letter m*/
}
.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*/
}
.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;
}
#photoOfSelf{
	position: absolute;/*makes it draggable*/
	top: 62px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 561px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 370px;/*change as needed*/
	height: 534px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	border: 6px dotted rgba(151,223,237,1.00);
	border-spacing: 20px 32px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-right: 7px;
}

#musicBox{
	position: absolute;/*makes it draggable*/
	top: 60px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 119px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 300px;/*change as needed*/
	height: 31px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	border: 6px dotted rgba(151,223,237,1.00);
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.projectInfo{
	position: absolute;/*makes it draggable*/
	/* [disabled]background-color: rgba(255,226,0,1.00); */
	z-index: 41;
	top: 420px;
	font-family: amatic-sc;
	width: 780px;
	padding-right: 100px;
	padding-left: 100px;
	text-align: center;
	letter-spacing: 0pt;
	word-spacing: 5px;
	font-size: 1.5em;
}
#projectInfo0 {
	top: 144px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 29px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 500px;/*change as needed*/
	height: 460px;
	font-family: amatic-sc;
	text-align: center;
	padding-left: 0px;
}

#projectInfo1 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo2 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo3 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo4 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo5 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo6 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo7 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}
#projectInfo8 {
	top: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 13px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 460px;/*change as needed*/
}


.projectTitle {
	font-family: pageTitleFont;
	font-size: 4 em;
	z-index: 40;
	width: 400px;
	font-size: 5em;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 33px;
}

#projectTitle1 {
	left: 526px;
	position: absolute;
	top: 230px;
	z-index: 150;
}
#projectTitle2 {
	color: rgba(255,255,255,0.82);
	top: 171px;
	position: absolute;
	z-index: 150;
	left: 65px;
}
#projectTitle3 {
	top: 208px;
	position: absolute;
	left: 354px;
	z-index: 150;
}
#projectTitle4 {
	position: absolute;
	top: 239px;
	z-index: 150;
	left: 556px;
	color: rgba(255,255,255,0.82);
}
#projectTitle5 {
	position: absolute;
	z-index: 149;
	top: 138px;
	left: -62px;
}
#projectTitle6 {
	position: absolute;
	z-index: 149;
	top: 227px;
	left: 4px;
}
#projectTitle7 {
	position: absolute;
	z-index: 149;
	top: 235px;
	left: 475px;
}
#projectTitle8 {
	position: absolute;
	z-index: 149;
	top: 247px;
	left: -49px;
	color: rgba(219,219,219,1.00);
}

.webGraphic {
	position: absolute;
	z-index: 40;
	border: 6px dotted rgba(151,223,237,1.00);
	width: 930px;
	left: 0px;
	margin-left: 14px;
	height: 320px;
	padding-left: 10px;
	padding-top: 10px;
	top: 63px;
	cursor: pointer;
}
#webGraphic1 {
	top: 63px;
	cursor: pointer;
}
#webGraphic2 {
	cursor: pointer;
}
#webGraphic3 {
	cursor: pointer;
}
#webGraphic4 {
	cursor: pointer;
}
#webGraphic5 {
	cursor: pointer;
}
#webGraphic6 {
	cursor: pointer;
}
#webGraphic7 {
	cursor: pointer;
}
#webGraphic8 {
	cursor: pointer;x;
}

.webBtn {
	position: absolute;
	z-index: 100;
	width: 150px;
	height: 25px;
	text-align: center;
	cursor: pointer;
	top: -740px;
	visibility: hidden;
}

#webBtn1 {
	top: 600px;
	left: 700px;
}
#webBtn2 {
	top: 600px;
	left: 700px;
}
#webBtn3 {
	top: 600px;
	left: 700px;
}
#webBtn4 {
	top: 600px;
	left: 700px;
}
#webBtn5 {
	top: 600px;
	left: 700px;
}
#webBtn6 {
	top: 600px;
	left: 700px;
}
#webBtn7 {
	top: 600px;
	left: 700px;
}
#webBtn8 {
	top: 600px;
	left: 700px;
}
#btn3 {
	width: 112px;
	padding-top: 6px;
}
#btn1 {
	width: 66px;
}
#btn0 {
	width: 83px;
	padding-top: 6px;
}
#btn4 {
	width: 120px;
	padding-top: 6px;
}
#btn5 {
	width: 68px;
	padding-top: 6px;
}
#btn6 {
	width: 57px;
}
#btn7 {
	width: 92px;
}
#btn8 {
	width: 83px;
	padding-top: 6px;
}
#footer {
	width: 100%;
	z-index: 200;
	position: fixed;
	bottom: 0px;
	font-style: italic;
	font-size: 10px;
	text-align: right;
	background-color: rgba(151,223,237,1.00);
	opacity: 0.64;
}
#projectinfo1 {
	font-family: amatic-sc;
}
