@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: projectTitleFont;
 src: url("../fonts/projectTitles.eot"), /* EOT file for IE */
		url("../fonts/projectTitles.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: bodyFont;
 font-size:14px;
 src: url("../fonts/bodyFont.eot"), /* EOT file for IE */
		url("../fonts/bodyFont.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;/*removes default settings*/
	position: relative;
	background-image: url(../background.png);
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
}
header {
	width: 100%;
	/* [disabled]height: 150px; */
	background-color: #A89674;
	z-index: 20;
	position: relative;
}
nav {
	/* [disabled]height: 25px; */
	width: 98%;
	background-color: #00FF2D;
	/* [disabled]padding-top: 1%; */
	/* [disabled]padding-right: 1%; */
	/* [disabled]padding-bottom: 1%; */
	/* [disabled]padding-left: 1%; */
}
.btn {
	width: 95px;
	height: 25px;
	text-align: center;
	background-color: #FFFC00;
	cursor: pointer;
	float: left;
	margin-right: 10px;
	top: 200px;
	position: relative;
}
#allArticles {
	width: 100%;
	height: 900px;
	position: relative;
	/* [disabled]background-color: #FFFFFF; */
	z-index: 10;
	overflow-x: hidden;
	overflow-y: hidden;
	font-family: bodyFont;
}
#allArticlesWrapper {
	height: 600px;
	width: 10000px;
	/* [disabled]background-color: #027499; */
	position: relative;
	top: 0px;
	left: 0px;
}
article {
	width: 980px;
	height: 820px;
	position: relative;
	float: left;
}
#article0 {
	background-color: rgba(235,235,235,0.95);
}
#article1 {
	background-color: rgba(235,235,235,0.95);
}
#article2 {
	background-color: rgba(235,235,235,0.95);
}
#article3 {
	background-color: rgba(235,235,235,0.95);
}
#article4 {
	background-color: rgba(235,235,235,0.95);
}
#article5 {
	background-color: rgba(235,235,235,0.95);
}
#article6 {
	background-color: rgba(235,235,235,0.95);
}
#article7 {
	background-color: rgba(235,235,235,0.95);
}
#article8 {
	background-color: rgba(235,235,235,0.95);
}
#article9 {
	background-color: rgba(235,235,235,0.95);
}
footer {
	position: absolute;
	background-color: rgba(235,235,235,0.95);
	top: 820px;
	width: 488px;
	height: 28px;
	text-align: center;
	padding-top: 10px;
	left: 220px;
}
#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:0em;/*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: 39px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 749px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 195px;/*change as needed*/
	height: 176px;/*change as needed*/
	background: rgba(255,226,0,1.00);/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
#musicBox {
	position: absolute;/*makes it draggable*/
	top: 484px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 339px;/*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 {
	position: absolute;/*makes it draggable*/
	z-index: 10;/*stacking order, bigger numbers are on top*/
	top: 531px;
}
#projectInfo0 {
	top: 519px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 20px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 943px;/*change as needed*/
	height: 298px;/*change as needed*/
	font-size: 20px;
}
#projectInfo1 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo2 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo3 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo4 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo5 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo6 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo7 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#projectInfo8 {
	top: 215px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 300px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 635px;/*change as needed*/
	height: 175px;/*change as needed*/
}
#textHeader {
	top: -132px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 134px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 722px;/*change as needed*/
	height: 224px;/*change as needed*/
}
.projectTitle {
	position:absolute;
	z-index:40;	
	text-align:center;
	font-size:10em;
	font-family: projectTitleFont;
}
#projectTitle1 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle2 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle3 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle4 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle5 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle6 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle7 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle8 {
	width: 980px;
	height: 140px;
	top: 20px;
}
#projectTitle9 {
	width: 980px;
	height: 140px;
	top: 20px;
}
.webGraphic {
	position:absolute;
	z-index:40;	
}
#webGraphic1 {
	width: 180px;
	height: 180px;
	top: 210px;
	left: 65px;
	background-image: url(../images/button1.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#webGraphic2 {
	width: 180px;
	height: 180px;
	top: 210px;
	left: 65px;
	background-image: url(../images/button2.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#webGraphic3 {
	width: 180px;
	height: 180px;
	top: 210px;
	left: 65px;
	background-image: url(../images/button3.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#webGraphic4 {
	width: 180px;
	height: 180px;
	top: 210px;
	left: 65px;
	background-image: url(../images/button4.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#webGraphic5 {
	width: 200px;
	height: 200px;
	top: 210px;
	left: 45px;
}
#webGraphic6 {
	width: 200px;
	height: 200px;
	top: 210px;
	left: 45px;
}
#webGraphic7 {
	width: 200px;
	height: 200px;
	top: 210px;
	left: 45px;
}
#webGraphic8 {
	width: 200px;
	height: 200px;
	top: 210px;
	left: 45px;
}
#webGraphic9 {
	width: 200px;
	height: 200px;
	top: 210px;
	left: 45px;
}
.webBtn {
	position: absolute;
	z-index: 100;
	width: 300px;
	height: 25px;
	text-align: center;
	cursor: pointer;
	background-color: rgba(255,255,255,1.00);
}
#webBtn1 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn2 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn3 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn4 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn5 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn6 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn7 {
	top: 405px;
	left: 315px;
	width: 300px;
}
#webBtn8 {
	top: 405px;
	left: 315px;
	width: 300px;
}	
#btn10 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 250px;
	background-image: url(../images/button10.jpg);
}
#btn2 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 100px;
	top: 25px;
	background-image: url(../images/button1.jpg);
	opacity:0.5;
}
#btn3 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 25px;
	background-image: url(../images/button2.jpg);
	opacity:0.5;
}
#btn4 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 680px;
	top: 25px;
	background-image: url(../images/button3.jpg);
	opacity:0.5;
}
#btn5 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 100px;
	top: 250px;
	background-image: url(../images/button4.jpg);
	opacity:0.5;
}
#btn9 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 250px;
	background-image: url(../images/button0.jpg);
	opacity:0.5;
}
#btn6 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 680px;
	top: 250px;
	background-image: url(../images/button5.jpg);
	opacity:0.5;
}
#btn7 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 100px;
	top: 475px;
	background-image: url(../images/button6.jpg);
	opacity:0.5;
}
#btn8 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 475px;
	background-image: url(../images/button7.jpg);
	opacity:0.5;
}
#btn9 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 680px;
	top: 475px;
	background-image: url(../images/button8.jpg);
	opacity:0.5;
}
#btn0 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 250px;
	background-image: url(../images/button9.jpg);
}
#btn0 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 250px;
	background-image: url(../images/button9.jpg);
}
#btn01 {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 390px;
	top: 483px;
	background-image: url(../images/button9.jpg);
}
#textHeader {
	width: 700px;
	height: 100px;
	position: absolute;	
}
#me {
	position: absolute;
	z-index: 100;
	left: 51px;
	top: 213px;
}
#buttonText {
	position: absolute;
	left: 25px;
	top: 730px;
	width: 930px;
	text-align: center;
}
