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

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*/
	text-align: center;
}
body {/*these are the 5 basic CSS properties and values to start a website*/
	font-family: Verdana, sans-serif;/*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-right: auto;
	margin-left: auto;/*removes default edges*/
	padding: 0;/*removes default settings*/
	background-image: url(../images/Background-Big.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 0px;
	left: auto;
	right: auto;
	background-position: center top;
	position: static;
}
#centeringDiv {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	position: relative;
}
nav {
	width: 1000px;
	height: 40px;
	position: static;
}
header {
	width: 980px;
	height: 100px;
	padding: 10px 5px 5px;
	background-color: rgba(40,40,40,0.67);
	position: relative;
	font-family: codystar;
	font-style: normal;
	font-weight: 400;
	font-size: 65px;
	text-align: center;
	color: white;
}
.btn {
	width: 130px;
	height: 20px;
	padding: 10px;
	float: left;
	text-align: center;
	position: static;
	left: -19px;
	top: 585px;
	margin-top: 0px;
}
#btn1   {
	width: 80px;
	height: 180px;
	overflow-x: hidden;
	margin-left: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
	overflow-y: hidden;
}
#btn2   {
	width: 145px;
	height: 150px;
	margin-top: 30px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn3   {
	width: 145px;
	height: 150px;
	margin-top: 30px;
	overflow-x: hidden;
	position: static;
	overflow-y: hidden;
	margin-left: -20px;
}
#btn4 {
	width: 145px;
	height: 150px;
	margin-top: 30px;
	overflow-x: hidden;
	overflow-y: hidden;
	margin-left: -20px;
}
#btn6 {
	width: 170px;
	height: 135px;
	margin-top: 40px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn5 {
	width: 145px;
	height: 150px;
	margin-top: 30px;
	overflow-x: hidden;
	overflow-y: hidden;
	margin-left: -20px;
}
#btn1 a img:hover {
	margin-left: -89px;
}
#btn2 a img:hover {
	margin-left: -198px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn3 a img:hover {
	margin-left: -198px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn4 a img:hover {
	margin-left: -198px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn5 a img:hover {
	margin-left: -198px;
	overflow-x: hidden;
	overflow-y: hidden;
}
#btn6 a img:hover {
	margin-left: -201px;
	overflow-x: hidden;
	overflow-y: hidden;
}
article {
	width: 980px;
	height: auto;
	padding: 10px;
	margin: 0;
	position: relative;
	background-color: rgba(255,255,255,0.65);
	clear: both;
}
footer {
	font-size: 0.7em;
	text-align: center;
	padding: 25px;
	position: relative;
	background-image: url(../images/footer.png);
	bottom: auto;
	top: auto;
	left: auto;
	right: auto;
}
#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-color: rgba(248,255,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*/
	text-align: left;
	text-transform: none;
	font-size: large;
}
.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;
	text-align: center;
}
.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;
}
.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;
}
.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;
}
