@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: ASC;
	src: url("../fonts/ASC.eot"), /* EOT file for IE */  url("../fonts/ASC.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
	font-family: PM;
	src: url("../fonts/PM.eot"), /* EOT file for IE */  url("../fonts/PM.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
	font-family: QS;
	src: url("../fonts/QS.eot"), /* EOT file for IE */  url("../fonts/QS.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: QS;/*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: repeat;
	background-image: url(../images/bgimg.png);
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
}
header {
	height: 150px;
	width: 98%;
	background-color: #FD7F51;
	padding-right: 1%;
	padding-top: 1%;
	padding-left: 1%;
	padding-bottom: 1%;
	position: relative;
	font-family: PM;
	z-index: 900;
}
nav {
	height: 80px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-image: url(../images/navbgimg.png);
}
.btn {
	width: 100px;
	height: 50px;
	text-align: center;
	cursor: pointer;
	float: left;
	margin-right: 10px;
	font-family: ASC;
	z-index: 1000;
	color: #FFFFFF;
	font-size: x-large;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
#allArticles {
	width: 100%;
	height: 800px;
	position: relative;
	padding: 10px;
	z-index: 799;
	margin-top: 100px;
	margin-left: 0px;
	overflow: hidden;
}
#allArticlesWrapper {
	width: 100%;
	height: 6000px;
	top: 0px;
	left: 0px;
	position: relative;
	z-index:800;
}
article {
	width: 980px;
	height: 800px;
	position: relative;
	background-color: rgba(181,181,181,0.70);
}
#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: 3em;/*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-family: PM;
	font-size: 3em;
	color: #460087;
	position: absolute;
	text-align: center;
	left: 41px;
	top: 201px;
	z-index: 30;
}
#projectTitle0 {
	top: 25px;
	left: 297px;
	width: 500px;
	height: 163px;
}
#projectTitle1 {
	top: 46px;
	left: 150px;
	width: 300px;
	height: 100px;
}
#projectTitle2 {
	top: 18px;
	left: 219px;
	width: 300px;
	height: 100px;
}
#projectTitle3 {
	top: 29px;
	left: 222px;
	width: 300px;
	height: 100px;
}
#projectTitle4 {
	top: 23px;
	left: 255px;
	width: 300px;
	height: 100px;
}
#projectTitle5 {
	top: 64px;
	left: 153px;
	width: 300px;
	height: 100px;
}
#projectTitle6 {
	top: 68px;
	left: 63px;
	width: 300px;
	height: 100px;
}
#projectTitle7 {
	top: 253px;
	left: 205px;
	width: 300px;
	height: 100px;
}
#projectTitle8 {
	top: 258px;
	left: 165px;
	width: 300px;
	height: 100px;
}
.webGraphic {
	position: absolute;
	z-index: 20;
}
#webGraphic1 {
	top: 138px;
	left: 675px;
	width: 300px;
	height: 100px;
}
#webGraphic2 {
	top: 128px;
	left: 688px;
	width: 253px;
	height: 100px;
}
#webGraphic3 {
	top: 120px;
	left: 661px;
	width: 300px;
	height: 100px;
}
#webGraphic4 {
	top: 157px;
	left: 653px;
	width: 300px;
	height: 100px;
}
#webGraphic5 {
	top: 8px;
	left: 659px;
	width: 300px;
	height: 100px;
}
#webGraphic6 {
	top: 42px;
	left: 491px;
	width: 300px;
	height: 234px;
}
#webGraphic7 {
	top: 100px;
	left: 200px;
	width: 300px;
	height: 100px;
}
#webGraphic8 {
	top: 100px;
	left: 200px;
	width: 300px;
	height: 100px;
}
.webBtn {
	width: 150px;
	height: 50px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	z-index: 50;
}
#webBtn1 {
	top: 342px;
	left: 755px;
}
#webBtn2 {
	top: 324px;
	left: 744px;
}
#webBtn3 {
	top: 366px;
	left: 737px;
}
#webBtn4 {
	top: 370px;
	left: 733px;
}
#webBtn5 {
	top: 107px;
	left: 491px;
}
#webBtn6 {
	top: 306px;
	left: 642px;
}
#webBtn7 {
	top: 100px;
	left: 600px;
}
#webBtn8 {
	top: 100px;
	left: 600px;
}
.projectInfo {
	width: 586px;
	height: 300px;
	position: absolute;
	z-index: 40;
}
#projectInfo1 {
	top: 267px;
	left: 19px;
}
#projectInfo2 {
	top: 208px;
	left: 50px;
}
#projectInfo3 {
	top: 212px;
	left: 46px;
}
#projectInfo4 {
	top: 235px;
	left: 43px;
}
#projectInfo5 {
	top: 200px;
	left: 50px;
}
#projectInfo6 {
	top: 323px;
	left: 34px;
}
#projectInfo7 {
	top: 200px;
	left: 50px;
}
#projectInfo8 {
	top: 200px;
	left: 50px;
}
#article0 {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	padding-top: 10px;
	padding-left: 10px;
}
#article8 {
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
