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

header, section, article, figure, figcaption, aside, footer, nav {
	display: block;
}
body {
	margin: 0px;
	padding: 0px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	color: #FFFFFF;
	font-size: 100%;
	background-position:top center;
	background-image: url(../images/nyskyline.jpg);
	background-repeat:no-repeat;
	background-color:rgba(0, 0, 0, 1)
}
#centeringDiv {
	width: 980px;
	height: auto;
	min-height:600px;
	margin: 0px auto;
	position: relative;
	background-color:rgba(1, 1, 1, 0.5)
}
header {
	position: absolute;
	width: 900px;
	height: 78px;
	font-family: allura;
	color: #CC3300;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	font-size: 1.5em;
	top: 44px;
	left: 30px;
}
#musicBox {
	position: absolute;
	margin-top: 0px;
	margin-left: 0px;
	width: 260px;
	height: 38px;
	left: 233px;
	top: -6px;
}
nav {
	position: absolute;
	top: -110px;
	left: 0;
}
.btn {
	position: absolute;
	width: 100px;
	height: 100px;
	overflow: hidden;
	color: #FFFFFF;
}
.btn img:hover{
	margin-top:-100px;	
}
#btn1 {
	top: 204px;
	left: 5px;
}
#btn2 {
	top: 309px;
	left: 6px;
}
#btn3 {
	top: 415px;
	left: 6px;
}
#btn4 {
	top: 521px;
	left: 6px;
}
#btn5 {
	top: 206px;
	left: 877px;
}
#btn6 {
	top: 631px;
	left: 7px;
}
#btn7 {
	top: 313px;
	left: 879px;
}
#btn8 {
	top: 634px;
	left: 883px;
}
#btn9 {
	top: 529px;
	left: 881px;
}
#btn10 {
	top: 421px;
	left: 880px;
}
#mainContent {
	padding: 5px;
	width: 700px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	font-size: medium;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
#topSpacer {
	width: 100%;
	height: 150px;
	position: relative;
}
footer {
	position: relative;
	width: 400px;
	height: 26px;
	margin:0 auto;
	font-size: 0.8em;
	left: 0px;
	top: 0px;
}

/*
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;
}
h1 {
	color: #CC0000;
	font-family: allura;
	font-style: normal;
	font-weight: 400;
}
.webgemcaption {
	font-size: 0.9em;
}
a:link, a:visited {
	color: #990033;
}
a:hover, a:active {
	color: #CC0000;
}
