@charset "UTF-8";
body {
	margin: 0px;
	padding: 0px;
	color: #FFFFFF;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 100%;
	background-image: -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 64.04% , rgba(0,0,0,1.00)),color-stop( 86.48% , rgba(108,95,0,1.00)),color-stop( 93.36% , rgba(172,138,0,1.00)),color-stop( 100% , rgba(255,173,0,1.00)));
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,1.00) 64.04%,rgba(108,95,0,1.00) 86.48%,rgba(172,138,0,1.00) 93.36%,rgba(255,173,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,1.00) 64.04%,rgba(108,95,0,1.00) 86.48%,rgba(172,138,0,1.00) 93.36%,rgba(255,173,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,1.00) 64.04%,rgba(108,95,0,1.00) 86.48%,rgba(172,138,0,1.00) 93.36%,rgba(255,173,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(0,0,0,1.00) 64.04%,rgba(108,95,0,1.00) 86.48%,rgba(172,138,0,1.00) 93.36%,rgba(255,173,0,1.00) 100%);
}
#centeringDiv {
	width: 980px;
	margin: 0px auto;
	position: relative;
}

#topSpacer {
	width: 100%;
	height: 500px;
	position: relative;
}
#mainContent {
	position: relative;
	width: 700px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	background-color: rgba(0,0,0,0.3);
	font-family: 'Questrial', sans-serif;
}
header {
	width: 900px;
	height: 100px;
	position: absolute;
	top: 324px;
	left: 41px;
	z-index: 12;
	color: #FFFFFF;
	text-align: center;
}
#musicBox {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0px;
	left: 0px;
}
nav {
	width: 980px;
	height: 500px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
	background-position: left top;
}
.btn {
	position: absolute;
	width: 84px;
	overflow: hidden;
	left: -2px;
	top: -4px;
}
#btn1 {
	top: 87px;
	left: 61px;
	z-index: 10;
	height: 105px;
}
#btn1 img:hover{
	margin-top: -110px;
}
#btn2 {
	top: 99px;
	left: 145px;
	height: 114px;
}
#btn2 img:hover{
	margin-top: -116px;
}
#btn3 {
	top: 90px;
	left: 227px;
	height: 115px;
}
#btn3 img:hover{
	margin-top: -116px;
}
#btn4 {
	top: 135px;
	left: 319px;
	height: 109px;
}
#btn4 img:hover{
	margin-top: -116px;
}
#btn5 {
	top: 102px;
	left: 408px;
	height: 110px;
}
#btn5 img:hover{
	margin-top: -116px;
}
#btn6 {
	top: 112px;
	left: 492px;
	height:112px;
}
#btn6 img:hover{
	margin-top: -112px;
}
#btn7 {
	top: 112px;
	left: 588px;
	height: 107px;
}
#btn7 img:hover{
	margin-top: -110px;
}
#btn8 {
	top: 89px;
	left: 684px;
	height: 115px;
}
#btn8 img:hover{
	margin-top: -117px;
}
#btn9 {
	top: 105px;
	left: 760px;
	height: 109px;
}
#btn9 img:hover{
	margin-top: -111px;
}
#btn10 {
	top: 87px;
	left: 852px;
	height: 116px;
}
#btn10 img:hover{
	margin-top: -117px;
}
footer {
	position: relative;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	font-size: 0.8em;
	text-align: center;
}
/*
Here are some commonly used CSS class selectors which 
-can applied to multiple elements on a page
-can be applied in and combination
*/
p {
	text-indent:3em;
}
.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-right: auto;
	margin-left: 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;
}

#poemBox {
	width: 700px;
}
#videoBox {
	width: 480px;
}
h1 {
	color: #FFFFCC;
	font-style: normal;
	font-weight: 400;
	font-family: arvo;
}
#wires {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 500px;
	background-image: url(../images/background.png);
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 0;
}
