@charset "UTF-8";
/* CSS Document */
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
	font-family: Constantine;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/Constantine.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/Constantine.eot)/*.eot for IE browsers*/	
}
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*/
	color: #FFFFFF;
	font-weight: bold;
}
body {/*these are the 5 basic CSS properties and values to start a website*/
	font-family: Constantine; /*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: 0;/*removes default edges*/
	padding: 0;/*removes default settings*/
	z-index: 0;/*stacking order - small numbers a below high numbers*/
	position:relative:
;
	background-image: url(../images/websiteBackground2.jpg);
	background-attachment: fixed;
}
#centeringDiv {
	width:980px;/*optimum width for both desktops, laptops, and tablets*/
	height:750px;/*optimum height for both desktops, laptops, and tablets*/
	margin:0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
	position:relative;/*all children divs inside centeringDiv take their (x,y) position from top left of centeringDiv*/	
	z-index:1;/*stacking order - small numbers a below high numbers*/
}
header {
	padding: 10px;
	width: calc(100%-20px);
	height: 150px;
	position: relative;
	background-attachment: fixed;
	background-image: url(url);
	font-weight: bold;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
	font-size: 3em;
}
nav {
	position: absolute;/*makes it draggable*/
	top: 36px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: -1px;/*the zero position is from the parent div with position: relative, change as needed*/
	width: 100%;/*change as needed*/
	height: 261px;/*change as needed*/
	z-index: 1000;/*stacking order, bigger numbers are on top*/
}
.btn {
	position: absolute;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	width: 99px;/*change as needed*/
	height: 37px;/*change as needed*/
	overflow: hidden;
}

.btn img:hover {
	cursor: pointer;
	margin-top: -103px;
}

#btn0 {
	top: 111px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 1px;/*the zero position is from the parent div with position: relative, change as needed*/
}
#btn1 {
	top: 79px;/*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*/
}
#btn2 {
	top: 112px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 198px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn2 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#btn3 {
	top: 79px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 297px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn4 {
	top: 112px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 399px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn4 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#btn5 {
	top: 78px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 497px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn5 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#btn6 {
	top: 111px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 595px;/*the zero position is from the parent div with position: relative, change as needed*/
	overflow: hidden;
}
#btn7 {
	top: 77px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 694px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn7 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#btn8 {
	top: 109px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 792px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn8 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#btn9 {
	top: 76px;/*the zero position is from the parent div with position: relative, change as needed*/
	left: 889px;/*the zero position is from the parent div with position: relative, change as needed*/
}

#btn9 img:hover {
	cursor: pointer;
	margin-top: -102px;
}

#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*/
}
article {/*used for the main content area*/
	position: absolute;
	width: 960px;
	height: 323px;
	padding: 10px;
	top: 227px;
	left: 0;
	z-index: 900;/*stacking order - below nav and .btn*/
	font-family: Constantine;
	font-size: 1em;
}
article h1 {
	font-family: Constantine;
	font-style: normal;
	font-weight: 40
}
article p {
	text-indent: 3em;/*an em is the size of a letter m*/
	color: #FFFFFF;
	font-weight: bold;
	font-size: 1.25em;
	text-align: left;
}
.photoAndText {
	position:relative;
	width:940px;
	height:auto;
	clear: both;
	margin-bottom: 10px;
}
.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: 3px solid #000000;/*styles the frame - adjust as desired*/
}
.frame p, figure p, figcaption p {/*for any paragraphs inside photo frames*/
	text-indent: 0px;
}
footer {
	position: absolute;
	text-align: center;
	width: 400px;
	height: 20px;
	padding: 5px;
	top: 72px;
	left: 472px;
	z-index: 800;/*stacking order - below article, nav, and .btn*/
}





.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;
	font-weight: lighter;
	font-size: small;
}
.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;
}

.webgemDate {
	font-size: 1.3em;
	font-weight: bold;
	float: left;
	width: 200px;
	height: 25px;	
}
