@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: titleFont;
 src: url("../fonts/titleFont.eot"), /* EOT file for IE */
 		url("../fonts/titleFont.ttf")
}
@font-face {
 font-family: bodyFont;
 src: url("../fonts/bodyFont.eot"),
 		url("../fonts/bodyFont.ttf") /* EOT file for IE */
}


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*/
	background-color: #000000;
	background-image:url(../images/bg.jpg);
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
}
header {
	width: 100%;
	height: 100px;
	position: absolute;
}
.btn {
	width: 94px;
	height: 35px;
	text-align: center;
	cursor: pointer;
	float: left;
	margin-right: 10px;
	font-family:titleFont;
	font-size:24pt;
	background-color:rgba(255,255,255,0.4);
}
#allArticles {
	width: 100%;
	height: 600px;
	position: relative;
	top:100px;
	overflow:hidden;
	font-family:bodyFont;
}
#allArticlesWrapper {
	height: 600px;
	width: 9000px;
	position: relative;
	top: 20px;
	left: 0px;
}
article {
	width: 980px;
	height: 600px;
	position: relative;
	float: left;
}
#article0{

}
#article1{

}
#article2{

}
#article3{

}
#article4{

}
#article5{

}
#article6{

}
#article7{

}
#article8{

}
nav {
	height: 25px;
	width: 98%;
	padding-top: 6%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
}
footer {
	font-family:bodyFont;
	width:100%;
	text-align:center;
	font-size:12px;
}
#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: -508px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: -643px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 950px;/*change as needed*/
	height: 309px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	background-image: url(../images/mepic.jpg); 
	font-family:titleFont;
	color:white;
	font-size:200pt;

  	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
#photoOfSelf:hover {
  -webkit-filter: grayscale(100%);
  cursor: crosshair;
}

#musicBox {
	position: absolute;/*makes it draggable*/
	top: 530px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 658px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 193px;/*change as needed*/
	height: 26px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
.projectInfo {
	position: absolute;/*makes it draggable*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	top: 331px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 16px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 943px;/*change as needed*/
	height: 234px;/*change as needed*/
}

#projectInfo0 {
	
}

#projectInfo1 {

}
#projectInfo2 {

}
#projectInfo3 {

}
#projectInfo4 {

}
#projectInfo5 {

}
#projectInfo6 {

}
#projectInfo7 {

}
#projectInfo8 {

}

.projectTitle {
	position: absolute;
	z-index:40;	
	text-align:center;
	font-size:36pt;
	font-family: titleFont;
	display:none;
}
#projectTitle1 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}
#projectTitle2 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle3 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle4 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle5 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle6 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle7 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}

#projectTitle8 {
	width: 316px;
	height: 50px;
	top: 357px;
	left: 214px;
}
.webGraphic {
	position:absolute;	
	z-index:40;
	top: 20px;
	left:20px;
	width: 950px;/*change as needed*/
	height: 309px;/*change as needed*/
	background-image: url(../images/peonies3.jpg);
	font-family:titleFont;
	text-align:center;
	font-size:200pt;
	cursor:crosshair;
	
	  	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
.webGraphic:hover {
  -webkit-filter: grayscale(100%);
}


#webGraphic1 {
	background-image: url(../images/diptych.jpg);
}

#webGraphic2 {
	color:white;
	background-image: url(../images/char.jpg);
}

#webGraphic3 {
	background-image: url(../images/fabmo1.jpg);
}

#webGraphic4 {
	background-image: url(../images/exp.jpg);
}
#webGraphic5 {
	background-image: url(../images/profileimg.jpg);
	color:white;
}
#webGraphic6 {
	background-image: url(../images/musicvideo3.jpg);
	color:black;	
}
#webGraphic7 {
	background-image: url(../images/narrative2.jpg);
	color:black;	
}
#webGraphic8 {
	background-image: url(../images/portfolio.jpg);	
}
/*
#webGraphic5 {
	width: 200px;
	height: 200px;
	top: 20px;
	left: 20px;
}
#webGraphic6 {
	width: 200px;
	height: 200px;
	top: 20px;
	left: 20px;
}
#webGraphic7 {
	width: 200px;
	height: 200px;
	top: 20px;
	left: 20px;
}
#webGraphic8 {
	width: 200px;
	height: 200px;
	top: 20px;
	left: 20px;
}
*/
.webBtn {
	position:absolute;
	z-index:100;	
	width:100px;
	height:100px;
	font-family:titleFont;
	font-size:36pt;
	top:500px;
	left:400px;
	text-align:center;
	text-decoration:none;
	cursor:crosshair;
}
.webBtn:after {
    content: '';
    display: block;
    border-bottom: 1px solid black;
    width: 0;
    -webkit-transition: 0.5s ease;
            transition: 0.5s ease;
}
.webBtn:hover:after { width: 100%; }
#webBtn1 {

}
#webBtn2 {

}
#webBtn3 {

}
#webBtn4 {

}
#webBtn5 {

}
#webBtn6 {

}
#webBtn7 {

}
#webBtn8 {

}
