@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: Tall_Film;
 src: url("../fonts/Tall_Film.eot"), /* EOT file for IE */
		url("../fonts/Tall_Film.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: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;/*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: #555353;
	font-size: 100%;
}
#centeringDiv {
	width:980px;
	height:750px;
	margin:0 auto;
	position:relative;
	background-color:#8BF10A;	
}
header {
	height: 150px;
	width: 98%;
	padding-left: 1%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	position: relative;
	color: #010101;
	font-family: Tall_Film;
	font-size: 8em;
	text-align: center;
	background-color: #FAF9F9;
	-webkit-box-shadow: inset 0px 0px;
	box-shadow: inset 0px 0px;
}
nav {
	height: 550px;
	width: 100px;
	position: fixed;
	top: 50%;
	margin-top: -275px;
	z-index:500;
}
#photo-of-self {/*used for a draggable div*/
	position: absolute;/*makes it draggable*/
	width: 327px;/*change as needed*/
	height: 258px;/*change as needed*/
	left: 29px;
	top: 216px;
}
#infoBox0 {
	position: absolute;
	left: 408px;
	top: 215px;
	width: 542px;
}
.btn {
	width: 90px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	float: left;
	margin-right: 10px;
	margin-bottom: 20px;
	font-family: Tall_Film;
	position: relative;
	left: 0px;
	background-color: #F5DF06;
	font-size: xx-large;
}
.btntext {
	position:relative;
	left:0;	
}
#allArticles {
	width: 100%;
	background-color: #FCFAFA;
	height: 600px;
	position: relative;
	z-index: 100;
	overflow-x: hidden;
}
#allArticlesWrapper {
	width: 9000px;
	height: 600px;
	position: relative;
	top: 0px;
	left: 0px;
	background-color:#6A6868;
	z-index:101;
}
article {
	width: 980px;
	height: 600px;
	position: relative;
	float: left;
	z-index:102;
}
#article0 {
	background-color: #8F8C8C;
	color: #080707;
}
#article1 {
	background-color: #8F8C8C;
}
#article2 {
	background-color: #8F8C8C;
}
#article3 {
	background-color: #8F8C8C;
}
#article4 {
	background-color: #8F8C8C;
}
#article5 {
	background-color: #8F8C8C;
}
#article6 {
	background-color: #8F8C8C;
}
#article7 {
	background-color: #8F8C8C;
}
#article8 {
	background-color: #8F8C8C;
}
#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;
}
.projectTitle {
	font-size: 3.5em;
	color: #060606;
	position: absolute;
	text-align: center;
	z-index: 30;
	width: 931px;
	left: 31px;
	top: 55px;
	height: 87px;
	font-family: Tall_Film;
}
#projectTitle1 {
	top: 40px;
	left: 28px;
	width: 868px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle2 {
	top: 40px;
	left: 31px;
	width: 897px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle3 {
	top: 40px;
	left: 32px;
	width: 638px;
	height: 100px;
	text-decoration: underline;
	text-align: left;
}
#projectTitle4 {
	top: 40px;
	left: 37px;
	width: 589px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle5 {
	top: 41px;
	left: 44px;
	width: 622px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle6 {
	top: 41px;
	left: 37px;
	width: 632px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle7 {
	top: 41px;
	left: 33px;
	width: 613px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
#projectTitle8 {
	top: 40px;
	left: 30px;
	width: 619px;
	height: 100px;
	text-align: left;
	text-decoration: underline;
}
.webGraphic {
	position: absolute;
	z-index: 20;
	width: 349px;
	height: 227px;
	left: 43px;
	top: 218px;
}
#webGraphic1 {
	top: -99px;
	left: 33px;
	width: 350px;
	height: 192px;
}
#webGraphic2 {
	top: 80px;
	left: 132px;
	width: 300px;
	height: 100px;
}
#webGraphic3 {
	top: 215px;
	left: 33px;
	width: 300px;
	height: 100px;
}
#webGraphic4 {
	top: 218px;
	left: 36px;
	width: 300px;
	height: 100px;
}
#webGraphic5 {
	top: 213px;
	left: 22px;
	width: 300px;
	height: 100px;
}
#webGraphic6 {
	top: 217px;
	left: 36px;
	width: 300px;
	height: 100px;
}
#webGraphic7 {
	top: 218px;
	left: 36px;
	width: 300px;
	height: 100px;
}
#webGraphic8 {
	top: 216px;
	left: 31px;
	width: 300px;
	height: 100px;
}
.webBtn {
	width: 100px;
	height: 68px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	z-index: 50;
	overflow:hidden;
}
.webBtn img {
	margin-top:-68px;	
}
.webBtn img:hover {
	margin-top:8px;	
}
#webBtn1 {
	top: 519px;
	left: 836px;
}
#webBtn2 {
	top: 519px;
	left: 850px;
}
#webBtn3 {
	top: 526px;
	left: 828px;
}
#webBtn4 {
	top: 527px;
	left: 854px;
}
#webBtn5 {
	top: 527px;
	left: 853px;
}
#webBtn6 {
	top: 524px;
	left: 860px;
}
#webBtn7 {
	top: 524px;
	left: 862px;
}
#webBtn8 {
	top: 521px;
	left: 864px;
}
.projectInfo {
	width: 453px;
	height: 280px;
	position: absolute;
	z-index: 40;
	left: 29px;
	top: 217px;
}
#projectInfo1 {
	top: 200px;
	left: 413px;
}
#projectInfo2 {
	top: 218px;
	left: 399px;
}
#projectInfo3 {
	top: 217px;
	left: 414px;
}
#projectInfo4 {
	top: 216px;
	left: 417px;
}
#projectInfo5 {
	top: 215px;
	left: 429px;
}
#projectInfo6 {
	top: 216px;
	left: 528px;
}
#projectInfo7 {
	top: 216px;
	left: 507px;
}
#projectInfo8 {
	top: 217px;
	left: 503px;
}
#projectTitle0 {
	text-align: left;
	text-decoration: underline;
}
footer {
	width:100%;
	height:10px;
	padding:5px;
	text-align:center;
	font-size:0.8em;
	position:relative;
	color: #8F8C8C;
}
