@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: projectFont;
	src: url("../fonts/SFNewRepublic.eot"), /* EOT file for IE */  url("../fonts/SFNewRepublic.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
	font-family: bodyFont;
	src: url("../fonts/OpenSans-Regular.eot"), /* EOT file for IE */  url("../fonts/OpenSans-Regular.ttf") /* TTF file for CSS3 browsers */
}

header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
	font-family: bodyFont;/*change this for your design*/
	font-size: 100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
	color: #015c84;/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;/*removes default settings*/
	background-color: #a8a69e;
	background-image: url(../images/background.png);
	height: 40px;
}
#centeringDiv {
	width: 980px;
	margin: 0 auto;
	position: relative;
}
#allArticles {
	width: 100%;
	height: 600px;
	z-index: 10;
}
header {
	width: 100%;
	height: 100px;
	position: relative;
	z-index: 41;
	text-align: center;
	font-size:5em;
	background-image:url(../images/backgroundH.png);
	background-repeat:no-repeat;
	background-position: left;
	background-color:#eee;
	box-shadow: 0px 0px 5px #403221;
	font-family:projectFont;
}

article {
	width: 980px;
	position: relative;
	background-color: #fff;
}

#photoOfSelf {
	position: absolute;/*makes it draggable*/
	top: 46px;/*the zero position is from the parent div with position: relative, change as needed*/
	right: 100px;/*the zero position is from the parent div with position: relative, change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
#photoOfSelf, img {
	width: 180px;/*change as needed*/
	height: 200px;/*change as needed*/
}
#musicBox {
	//width: 200px;/*change as needed*/
	//height: 26px;/*change as needed*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	position: absolute;
	top: 250px;
	left: 350px;
	font-size: .5em;
}
.contentBox {
	position: relative;
	top:0;
	left:0;
	width: 100%;
	height: 350px;
	box-shadow: 0px 0px 5px #403221;
	
}
.projectInfo {
	position: absolute;/*makes it draggable*/
	z-index: 100;/*stacking order, bigger numbers are on top*/
	width: 600px;/*change as needed*/
	height: 350px;
	margin: 20px 0px 0px 30px;
}
.projectTitle {
	position: relative;
	z-index: 40;
	left: 0px;
	top: 0px;
	text-align: center;
	font-size: 2em;
	width: 100%;
	height: 40px;
	color: #01364e;
	border-top-style: solid;
	border-top-width: 2px;
	background-image:url(../images/bGraphic.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 400px 0px;
	letter-spacing: 0px;
	background-color: #eee;
	border-color: #9E9E9E;
	box-shadow: 0px 0px 5px #403221;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
#projectTitle0 {
	z-index:39;
}
#projectTitle5 {
	z-index:38;
}
#projectTitle6 {
	z-index:37;
}
#projectTitle7 {
	z-index:36;
}
#projectTitle8 {
	z-index:35;
}
.webGraphic {
	position: absolute;
	top: 40px;
	right: 30px;
	z-index: 40;
	width: 250px;
	height: 150px;
	border: 1px #bb1c01;
}
.webBtn {
	position: absolute;
	z-index: 100;
	cursor: pointer;
	left: 450px;
	top: 230px;
}
.btnImg {
	width: 100px;
	height: 100px;
}
#footer {
	text-align: center;
	background-color: #eee;
	background-color: #c6c3b8;
	position: relative;
	box-shadow: 0px 0px 5px #403221;
}
#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;
}
