@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: projectTitleFont;
 src: url("../fonts/projectTitles.eot"), /* EOT file for IE */
		url("../fonts/projectTitles.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: cumulus;
 src: url("../fonts/cumulus.eot"), /* EOT file for IE */
		url("../fonts/cumulus.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: projectTitleFont;/*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: #FFFFFF;
	position: relative;
	background-image: url(../images/checkerboard.jpg);
	background-repeat: repeat;
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
}
header {
	width: 100%;
	height: 300px;
}
nav {
	height: 25px;
	width: 98%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
}
.btn {
	width: 100px;
	height: 150px;
	text-align: center;
	background-color: black;
	cursor: pointer;
	float: left;
	margin-right: -5px;
	font-size: 1.5em;
	font-family: cumulus;
	z-index: 10000;
	color: white;
	border-radius: 7px;
	font-style: normal;
	font-variant: small-caps;
	line-height: 279px;
	text-indent: -61px;
	-webkit-box-shadow: -5px -4px;
	box-shadow: -5px -4px;
}
#btn0 {
	text-indent: -1px;
}
#allArticles {
	width: 100%;
	position: relative;
	height: 600px;
}
#allArticlesWrapper {
	height: 600px;
	width: 10000px;
	position: relative;
	top: 0px;
	left: 0px;
}
article {
	width: 780px;
	height: 176px;
	position: relative;
	float: left;
	margin-right: 100px;
	margin-left: 100px;
	border-radius: 3px;
	background-color: black;
	color: white;	
}
#article0 {
}
#article1 {
}
#article2 {
}
#article3 {
}
#article4 {
}
#article5 {
}
#article6 {
}
#article7 {
}
#article8 {
}
#article9 {
}

#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;
}
#photoOfSelf {
	position: absolute;/*makes it draggable*/
	top: 169px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 601px;/*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*/
}
#musicBox {
	position: absolute;/*makes it draggable*/
	top: 121px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 204px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 200px;/*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: 10;
	left: 10px;
}
#projectinfo0 {
	width: 780px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo1 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 74px;
}
#projectinfo2 {
	top: 12px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo3 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo4 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo5 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo6 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}#projectinfo7 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}#projectinfo8 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
#projectinfo9 {
	top: 50px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 700px;/*change as needed*/
	height: 400px;/*change as needed*/
}
.projectTitle {
	z-index: 40;
	font-size: 3em;
	font-family: projectTitleFont;
	position: absolute;
	background-color: white;
	color: black;
}
#projectTitle1 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle2 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle3 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle4 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle5 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle6 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle7 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle8 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
#projectTitle9 {
	width: 450px;
	height: 50px;
	top: -25px;
	left: 346px;
	-webkit-box-shadow: 7px -11px;
	box-shadow: 7px -11px;
	text-align: center;
	font-variant: small-caps;
	line-height: 60px;
}
.webGraphic {
	position: abolute;
	z-index: 40;
}
#webGraphic1 {
	top: 102px;
	left: 275px;
	position: absolute;
	background-image: url(../images/pokerp1.png);
	background-repeat: no-repeat;
	width: 200px;
	height: 200px;
}
#webGraphic2 {
	width: 200px;
	height: 200px;
	top: 55px;
	left: 275px;
	background-image: url(../images/pokerp2.png);
	background-repeat: no-repeat;
	position: absolute;
}

#webGraphic3 {
	width: 200px;
	height: 200px;
	top: 105px;
	left: 275px;
	position: absolute;
	background-image: url(../images/pokerp3.png);
}

#webGraphic4 {
	width: 200px;
	height: 200px;
	top: 96px;
	left: 275px;
	background-image: url(../images/pokerp4.png);
	position: absolute;
}

#webGraphic5 {
	width: 600px;
	height: 300px;
	top: -1px;
	left: 131px;
}

#webGraphic6 {
	width: 600px;
	height: 300px;
	top: -1px;
	left: 131px;
}
#webGraphic7 {
	width: 600px;
	height: 300px;
	top: -1px;
	left: 131px;
}

#webGraphic8 {
	width: 600px;
	height: 300px;
	top: -1px;
	left: 131px;
}
#webGraphic9 {
	width: 600px;
	height: 300px;
	top: -1px;
	left: 131px;
}
.webBtn {
	position: absolute;
	z-index: 231;
	width: 464px;
	height: 35px;
	text-align: center;
	cursor: pointer;
	color: white;
	font-family: advent-pro;
	font-style: normal;
	font-weight: 100;
}
#webBtn1 {
	top: 143px;
	left: 150px;
}
#webBtn2 {
	top: 600px;
	left: 700px;
}
#webBtn3 {
	top: 600px;
	left: 700px;
}#webBtn4 {
	top: 600px;
	left: 700px;
}#webBtn5 {
	top: 600px;
	left: 700px;
}#webBtn6 {
	top: 600px;
	left: 700px;
}#webBtn7 {
	top: 600px;
	left: 700px;
}#webBtn8 {
	top: 600px;
	left: 700px;
}#webBtn9 {
	top: 600px;
	left: 700px;
}
#btn9 {
}
footer {
	text-align: center;
}
