@charset "UTF-8";
/* CSS Document */

 /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure, figcaption {
     display: block;
}
body {
	padding: 5px;
	color: #000000;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 100%;
	background-image: url(../images/background.png), -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 36.76% , rgba(0,197,255,1.00)),color-stop( 100% , rgba(255,255,255,1.00)));
	background-image: url(../images/background.png), -webkit-linear-gradient(270deg,rgba(0,197,255,1.00) 36.76%,rgba(255,255,255,1.00) 100%);
	background-image: url(../images/background.png), -moz-linear-gradient(270deg,rgba(0,197,255,1.00) 36.76%,rgba(255,255,255,1.00) 100%);
	background-image: url(../images/background.png), -o-linear-gradient(270deg,rgba(0,197,255,1.00) 36.76%,rgba(255,255,255,1.00) 100%);
	background-image: url(../images/background.png), linear-gradient(180deg,rgba(0,197,255,1.00) 36.76%,rgba(255,255,255,1.00) 100%);
	margin: 0px;
}
#centeringDiv {
	width: 980px;
	height: auto;
	margin: 0px auto;
	position: relative;
}
#topSpacer {
	width: 100%;
	position: relative;
	height: 290px;
}
#mainContent {
	position: relative;
	width: 700px;
	height: auto;
	padding: 5px;
	z-index: 900;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
	background-color: rgba(255,204,255,0.5);
	margin-left: 135px;
	margin-top: 0px;
}
header {
	width: 980px;
	height: 250px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-image: url(../images/header_home.png);
}
#musicBox {
	width: 980px;
	height: auto;
	margin: 0px auto;
	position: relative;
}

nav {
	width: 980px;
	height: auto;
	position: absolute;
	width: 0%;
	width: 980px;
	top: 250px;
	left: 0px;
}

#btnsleft {
	width: 100px;
	height: 500px;
	position: relative;
	float: left;
}

#btnsright {
	width: 100px;
	height: 500px;
	position: relative;
	float: right;
}

.btn {
	position: absolute;
	width: 100px;
	height: 100px;
	overflow: hidden;
	right: 0px;
}

.btn img:hover {
	margin-top: -100px;
}

#btn1, #btn6 {
	top: 0px;
}

#btn2, #btn7 {
	top: 100px;
	
}

#btn3, #btn8 {
	top: 200px;
}

#btn4, #btn9 {
	top: 300px;
	
}

#btn5, #btn10 {
	top: 400px;
	
}

footer {
	position: relative;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 5px 0;
	font-size: 0.8em;
	text-align: center;
}
.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;
	margin-bottom:10px;
}
.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;
	margin-bottom:15px;
}
.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;
}
h1 {
	color: #FFFFFF;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
	font-weight: 700;
}
h2 {
	color: #FFFFFF;
}
