0@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
*/
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*/
}
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(255,255,255,1.00);/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;
	background-position: left 0%;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,1.00);
}
nav {
	display:block;
	height:50px;
	width:800px;
	margin:0 auto;
	top:0px;
	position:relative;
}

.btn {/*adjust as needed for all buttons*/
	width: 150px;
	height: 50px;
	float: left;
	cursor: pointer;
	margin-left: 10px;
	overflow: hidden;
}
.btn:hover img {
	margin-top: -50px;
}
.btn img{
	margin-top:0px;
}
#btn1 img{
	margin-left: 0px;
}
#btn2 img{
	margin-left: -150px;
}
#btn3 img{
	margin-left: -300px;
}
#btn4 img{
	margin-left: -450px;
}
#btn5 img{
	margin-left: -600px;
}
#allArticles {
	height: 600px;
	width: 980px;
	overflow: hidden;/*Necessary to hide non-visible articles*/
	position: relative;
	clear: both;/*ensures articles start below anything above, not to the side*/
}
#allArticlesWrapper {
	position: absolute;
	z-index: 100;
	height: 600px;/*should be total height of 1 article including padding and margin*/
	width: 5000px;/*total width of ALL individual articles including padding and margin*/
	left: 0px;
	top: 0px;
}
article {
	margin: 10px;
	height: 580px;
	width: 960px;
	position: relative;
	float: left;/*positions all articles side by side*/
}
#article5{
	overflow:scroll;	
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
	background-image: url(../images/background.png);
}
#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:0em;/*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;
}




















*:focus {
	outline:0;
}
#galleryBox {
	position:absolute;
	height:650px;
	color:#000;
	width:100%;
	top:0px;
	left:0px;
}
#galleryHeader {
	position:absolute;
	width:100%;
	height:30px;
	z-index:400;
	left: 0;
	top: 0px;
	text-align: center;
	display: block;
	padding-top: 20px;
}
#photoFrame {
	position: absolute;
	z-index: 400;
	left: 205px;
	top: 80px;
	padding: 5px;
	border: dotted 1px #FFF;
	text-align: center;
	width: 663px;
	height: 500px;
}
#photoBox {
	position: relative;
	z-index: 500;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}
#photoBox img {
	position: absolute;
	top: 0px;
	left: 0px;
}
#captionBox {
	position: relative;
	padding: 10px;
	font-size:0.8em;
	z-index: 500;
}
.thumbnailImage {
	float: left;
	border-width: 1px;
	border-style: solid;
	border-color: #F00;
	padding: 1px;
}
#thumbnailFrame {
	position:absolute;
	width:155px;
	height:493px;
	z-index:400;
	left: 7px;
	top: 80px;
	cursor: pointer;
}
