@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: hl;
 src: url("../fonts/hl.eot") /* EOT file for IE */
	 url("../fonts/hl.ttf") /* TTF file for CSS3 browsers */
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
	display: block;
}
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-repeat: no-repeat;
	background-color: rgba(11,44,59,0.88);
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
}
header {
	height: 150px;
	width: 98%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	position: relative;
	background-image: url(../images/header.png);
}
nav {
	height: 30px;
	width: 98%;
	/* [disabled]background-color: #FFF2C1; */
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	position: relative;
}
.btn {
	width: 94px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	float: left;
	margin-right: 10px;
	font-family: amatic-sc;
	font-style: normal;
	font-weight: 400;
	position: relative;
	color: #B3B3B3;
	font-size: large;
}
#allArticles {
	width: 100%;
	background-color: #000000;
	height: 600px;
	position: relative;
	/* [disabled]overflow-x: hidden; */
	overflow: hidden;
}
#allArticlesWrapper {
	width: 9000px;
	height: 600px;
	position: relative;
	top: 0px;
	left: 0px;
	background-color: #000000;
}
article {
	width: 980px;
	height: 600px;
	position: relative;
	float: left;
}
#article0 {
	color: #E9E9E9;
	text-align: center;
	font-family: amatic-sc;
	font-style: normal;
	font-weight: 400;
	background-image: url(../images/article0_background.png);
}
#article1 {
	background-image: url(../images/article1_background.png);
	color: #000000;
}
#article2 {
	background-image: url(../images/article2_background.png);
	color: #0B0A0A;
}
#article3 {
	background-image: url(../images/article3_background.png);
	color: #CDCDCD;
}
#article4 {
	background-image: url(../images/article4_background.png);
	color: #CFCDCD;
}
#article5 {
	color: #000000;
	background-image: url(../images/article5_background.png);
}
#article6 {
	background-image: url(../images/article6_background.png);
	color: #000000;
}
#article7 {
	background-image: url(../images/article7_background.png);
	color: #D1CFCF;
}
#article8 {
	background-image: url(../images/article8_background.png);
	color: #CCCCCC;
}
#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: 3em;
	color: #DDDDDD;
	position: absolute;
	text-align: center;
	z-index: 20;
	font-family: amatic-sc;
	font-style: normal;
	font-weight: 400;
}
#projectTitle1 {
	top: 19px;
	left: 589px;
	width: 274px;
	height: 114px;
}
#projectTitle2 {
	top: 32px;
	left: 616px;
	width: 300px;
	height: 100px;
}
#projectTitle3 {
	top: 32px;
	left: 81px;
	width: 300px;
	height: 100px;
}
#projectTitle4 {
	top: 19px;
	left: 195px;
	width: 300px;
	height: 100px;
}
#projectTitle5 {
	top: 28px;
	left: 604px;
	width: 300px;
	height: 100px;
}
#projectTitle6 {
	top: 26px;
	left: 380px;
	width: 202px;
	height: 80px;
}
#projectTitle7 {
	top: 39px;
	left: 296px;
	width: 300px;
	height: 100px;
}
#projectTitle8 {
	top: 36px;
	left: 308px;
	width: 300px;
	height: 100px;
}
.webGraphic {
	position: absolute;
	z-index: 20;
	left: 197px;
	top: 139px;
	width: 200px;
	height: 197px;
}
#webGraphic1 {
	top: 34px;
	left: 185px;
	width: 250px;
	height: 219px;
}
#webGraphic2 {
	top: 36px;
	left: 59px;
	width: 235px;
	height: 191px;
}
#webGraphic3 {
	top: 29px;
	left: 512px;
	width: 189px;
	height: 173px;
}
#webGraphic4 {
	top: 48px;
	left: 70px;
	width: 194px;
	height: 223px;
}
#webGraphic5 {
	top: 48px;
	left: 70px;
	width: 194px;
	height: 223px;
}
#webGraphic6 {
	top: 161px;
	left: 354px;
	width: 210px;
	height: 196px;
}
#webGraphic7 {
	top: 172px;
	left: 324px;
	width: 194px;
	height: 223px;
}
#webGraphic8 {
	top: 48px;
	left: 70px;
	width: 194px;
	height: 223px;
}
.webBtn {
	width:150px;
	height:50px;
	text-align:center;
	cursor:pointer;
	position:absolute;
	z-index:50;
}
#webBtn1 {
	top: 280px;
	left: 229px;
}
#webBtn2 {
	top: 260px;
	left: 116px;
}
#webBtn3 {
	top: 246px;
	left: 563px;
}
#webBtn4 {
	top: 302px;
	left: 737px;
}
#webBtn5 {
	top: 361px;
	left: 84px;
}
#webBtn6 {
	top: 245px;
	left: 645px;
}
#webBtn7 {
	top: 500px;
	left: 600px;
}
#webBtn8 {
	top: 500px;
	left: 600px;
}
.projectinfo {
	width: 473px;
	height: 166px;
	position: absolute;
	z-index: 40;
	background-color: rgba(249,249,249,0.30);
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border-radius: 5px;
}
#projectinfo1 {
	top: 374px;
	left: 90px;
	color: #FFFFFF;
}
#projectinfo2 {
	top: 384px;
	left: 41px;
	color: #FFFFFF;
}
#projectinfo3 {
	top: 349px;
	left: 412px;
}
#projectinfo4 {
	top: 396px;
	left: 477px;
}
#projectinfo5 {
	top: 360px;
	left: 451px;
	color: #FFFFFF;
}
#projectinfo6 {
	top: 396px;
	left: 220px;
	color: #FFFFFF;
}
#projectinfo7 {
	top: 411px;
	left: 204px;
}#projectinfo8 {
	top: 416px;
	left: 219px;
}
