@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: headerFont;
 src: url("../fonts/Market_Deco.eot"), /* EOT file for IE */
 		url("../fonts/Market_Deco.ttf")/* TTF file for CSS3 browsers */
}
@font-face {
font-family: bodyFont;
 src: url("../fonts/Walkway.eot"), /* EOT file for IE */
 		url("../fonts/Walkway.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: bodyFont;/*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*/
	background-color: #CCFFCC;
}
#centeringDiv {
	width: 980px;
	height: 730px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
}
nav {
	height: 600px;
	width: 400px;
	position: fixed;
	left: -50px;
	top:150px;
}
.btn {
	width: 200px;
	height: 30px;
	text-align: right;
	background-color: #1CCC48;
	cursor: pointer;
	margin: 10px;
	z-index: 1001;
	font-size: 1.3em;
	padding-right: 10px;
	position: relative;
}
#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:3em;/*an em is the size of a letter m*/
	z-index:10;
}
.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;
}
header {
	width: 100%;
	height: 150px;
	z-index: 1000;
	position: relative;
}
#headerTitle {
	position:relative;
	top:-30px;
	left:200px;	
}
.headerTitleCharacter {
	font-size: 7em;
	float: left;
	position: relative;
	top: 36px;
	left: 0;
	font-family: headerFont;
}
#headerTitleCharacter1, #headerTitleCharacter3, #headerTitleCharacter6, #headerTitleCharacter7, #headerTitleCharacter10, #headerTitleCharacter12    {
	z-index:2000;
}
#headerTitleCharacter2, #headerTitleCharacter4, #headerTitleCharacter5, #headerTitleCharacter8, #headerTitleCharacter9, #headerTitleCharacter11, #headerTitleCharacter13     {
	z-index:1500;
}
#sword {
	z-index: 1800;
	width: 980px;
	height: 114px;
	position: absolute;
	top: 20px;
	background-image: url(../images/sword.png);
	left: 0px;
}
#allArticles {
	width: 100%;
	height: 600px;
	position: relative;	
	overflow: hidden;
}
#allArticlesWrapper {
	height: 6000px;
	width: 980px;
	background-color: #7AEE92;
	position: relative;
	top: 0px;
	left: 0px;
	z-index:900;
}
article {
	width: 980px;
	height: 600px;
	position: relative;
	background-color: #72CC8C;
}
#article0 {
}
#article1 {
}
#article2 {
}
#article3 {
}
#article4 {
}
#article5 {
}
#article6 {
}
#article7 {
}
#article8 {
}
#article9 {
}
#photoOfSelf {
	position: absolute;/*makes it draggable*/
	top: 144px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 784px;/*change as needed*/
	height: 335px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	margin-top: -135px;
	left: 103px;
}
#musicBox {
	position: absolute;/*makes it draggable*/
	top: 365px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 589px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 200px;/*change as needed*/
	height: 54px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
.projectinfo {
	font-size:1.3em;
	position: absolute;/*makes it draggable*/
	z-index: 10;/*stacking order, bigger numbers are on top*/
}
#projectinfo0 {
	font-size:1.1em;
	top: 35px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 96px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
	margin-top: 326px;
}
#projectinfo1 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo2 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo3 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo4 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo5 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo6 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo7 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo8 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo9 {
	top: 30px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 65px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 786px;/*change as needed*/
	height: 400px;/*change as needed*/
}
.projectTitle {
	position:absolute;
	z-index:40;	
	text-align:center;
	font-size:3em;
	font-family:headerFont;
}
#projectTitle1 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle2 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle3 {
	width: 200px;
	height: 25px;
	top: 120px;
	left: 164px;
}
#projectTitle4 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle5 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle6 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle7 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle8 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
#projectTitle9 {
	width: 200px;
	height: 25px;
	top: 100px;
	left: 300px;
}
.webGraphic {
	position:absolute;
	z-index:40	
}
#webGraphic1 {
	width: 200px;
	height: 141px;
	top: 420px;
	left: 390px;
}
#webGraphic2 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic3 {
	width: 200px;
	height: 25px;
	top: 425px;
	left: 290px;
}
#webGraphic4 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic5 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic6 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic7 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic8 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
#webGraphic9 {
	width: 200px;
	height: 25px;
	top: 420px;
	left: 390px;
}
.webBtn {
	position:absolute;
	z-index:100;	
	width:150px;
	height:25px;
	text-align:center;
	cursor:pointer;
}
#webBtn1 {
	top: 360px;
	left: 415px;
}
#webBtn2 {
	top: 360px;
	left: 415px;
}
#webBtn3 {
	top: 360px;
	left: 415px;
}
#webBtn4 {
	top: 360px;
	left: 415px;
}
#webBtn5 {
	top: 475px;
	left: 385px;
}
#webBtn6 {
	top: 360px;
	left: 415px;
}
#webBtn7 {
	top: 360px;
	left: 415px;
}
#webBtn8 {
	top: 360px;
	left: 415px;
}
#footer {
	text-align: center;
	position: fixed;
	bottom: 0px;
	z-index: 3000;
	background-color: #A2E7A4;
	width: 100%;
}
