@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
*/
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;
	background-image: url(../images/upfeathers/upfeathers.png);
	background-repeat: repeat;
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
}
header {
	width: 98%;
	height: 150px;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	position: relative;
}
nav {
	height: 50px;
	width: 98%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	position: relative;
}
.btn {
	background-color: darkslateblue;
	width: 94px;
	height: 50px;
	cursor: pointer;
	float: left;
	-webkit-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	margin-right: 10px;
	background-image: url(../images/btns.png);
	overflow-y: hidden;
}
#allArticles {
	width: 100%;
	height: 600px;
	position: relative;
	overflow-x: hidden;
	opacity: 1;
}
#allArticlesWrapper {
	width: 9000px;
	height: 600px;
	position: relative;
	top: 0px;
	left: 0px;
}
article {
	width: 980px;
	height: 600px;
	float: left;
}
#article0 {
	color: black;
}
#article1 {
	background-image: url(../../DOF-flower.jpg);
	background-size: cover;
	color: seashell;
	opacity: 1;
}
#article2 {
	background-size: cover;
	background-image: url(../images/table.JPG);
}
#article3 {
	background-size: cover;
	background-image: url(../images/documentaryBackground.jpg);
}
#article4 {
	background-image: url(../images/experimentalbg.jpg);
	background-size: cover;
}
#article5 {
	background-image: url(../../project5/images/gallery/images/9.jpg);
	color: black;
	background-position: 0px -174px;
}
#article6 {
	background-image: url(../images/my-eye.jpg);
	background-size: cover;
}
#article7 {
	background-image: url(../images/Charlotte.jpg);
	background-size: cover;
}
#article8 {
	background-image: url(../images/leaves-and-water.jpg);
}
#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:1em;/*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;
}
#photo-of-self {
	position: relative;
	float: left;
	z-index: 10;
	background-size: cover;
	margin-right: 16px;
}
.infoBox {
	color: seashell;
	font-family: calligraffitti;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-align: left;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: black;
	opacity: 0.72;
	z-index: 9;
}
.projectTitle {
	font-family: cabin-sketch;
	font-style: normal;
	font-weight: 400;
	font-size: 500%;
	text-align: center;
	background-position: 0 0px;
	color: black;
}
.projectInfo {
	color: seashell;
	font-family: calligraffitti;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-align: left;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.webBtn {
	font-family: calligraffitti;
	font-style: normal;
	font-weight: 400;
	color: lightsteelblue;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align:center;
	cursor:pointer;
}
.webGraphic{
	position:absolute;
}
#webGraphic1{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic2{
	top: 72px;
	left: 256px;
	width: 300px;
	height: 100px;
}
#webGraphic3{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic4{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic5{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic6{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic7{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#webGraphic8{
	top:72px;
	left:256px;
	width:300px;
	height:100px;	
}
#projectInfo1 {
	color: black;
	background-color: white;
	opacity: 0.69;
}
#projectInfo2 {
	color: black;
	background-color: white;
	opacity: 0.69;
}
#projectInfo3 {
	background-color: black;
	opacity: 0.67;
}
#projectInfo4 {
	background-color: black;
	opacity: 0.7;
}
#projectInfo5 {
	background-color: black;
	opacity: 0.7;
}
#bgMusicBox {
	float: none;
	position: relative;
}
#projectTitle2 {
	color: seashell;
}
#projectTitle6 {
	color: seashell;
}
#projectTitle7 {
	background-color: white;
	opacity: 0.65;
}
#btn0 {
	background-position: 0px 0px;
}
#btn1 {
	background-position: -104px 0px;
}
#btn2 {
	background-position: -208px 0px;
}
#btn3 {
	background-position: -312px 0px;
}
#btn4 {
	background-position: -416px 0px;
}
#btn5 {
	background-position: -520px 0px;
}
#btn6 {
	background-position: -624px 0px;
}
#btn7 {
	background-position: -728px 0px;
}
#btn8 {
	background-position: -832px 0px;
}
