@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*/
	color: rgba(251,251,251,1.00);
}
body:after {/*This will load the photos but not display them so viewers won't have a delay when viewing the next photo*/
   content: url(../images/book1.jpg) url(../images/book2.jpg) url(../images/book3.jpg)
   url(../images/book4.jpg) url(../images/book5.jpg) url(../images/book6.jpg)
   url(../images/book7.jpg) url(../images/book8.jpg) url(../images/book9.jpg)
   url(../images/book10.jpg) url(../images/book11.jpg) url(../images/book12.jpg)
   url(../images/book13.jpg) url(../images/book14.jpg) url(../images/book15.jpg)
   url(../images/book16.jpg)  url(../images/bookbackcover.jpg);
   display: none;
}
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: 0;/*removes default edges*/
	padding: 0;
	/* [disabled]background-size: cover; */
	background-image: url(../images/background3.png);
	background-position: center 0%;
	background-repeat: no-repeat;
	background-color: rgba(66,33,10,1.00);
}
#centeringDiv {
	width: 980px;
	height: auto;
	margin: 0 auto;
	position: relative;
}
header {
	width: 100%;
	height: 150px;
	font-size: 2em;
	text-align: center;
	position: relative;
}
nav {
	width: 800px;
	height: 50px;
	position: relative;
	margin-left: auto;/*this centers the div inside the parent div of centeringDiv*/
	margin-right: auto;/*an alternative method is margin:0 auto where the 0 is for top and bottom and the auto applies to left and right*/
}
.btn {
	width: 160px;
	height: 110px;
	float: left;/*this makes the divs line up horizontally not the default vertically*/
	overflow: hidden;/*this hides anything outside or beyond the dimensions of width and height*/
	cursor:pointer;
}
.btn img:hover {
	margin-top: -109px;
}
#btn1 {
	/* [disabled]margin-left: 25px; */
}
#btn2 {
}
#btn1 img {
	margin-left: 0px;
}
#btn2 img {
	margin-left: -160px;/*this shifts the image to the LEFT where the negative is for shifting LEFT*/
}
#btn3 img {
	margin-left: -320px;
}
#btn4 img {
	margin-left: -480px;
}
#btn5 img {
	margin-left: -640px;
}
article {
	position: relative;
	clear: both;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	width: 970px;
	height: auto;
	overflow:auto;
}
footer {
	position: relative;
	clear: both;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	width: 970px;
	height: 20px;
	font-size: 0.75em;
	text-align: right;
}
#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:3em;/*an em is the size of a letter m*/
}
#Tabs1 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;
}
.firstLetter {
	color:rgba(22,83,22,1.00);
	font-weight: 400;
	font-size: 2em;
	font-family:kranky;
	font-style: normal;
}
.quotedText1 {
	color: rgba(213,197,48,1.00);
	font-style: italic;
	font-weight: bold;
}
#background {
	width: 2000px;
	background-image: url(../images/background3.png);
	z-index: 1;
	position: absolute;
	left: -33px;
	top: 41px;
	height: 1554px;
}
a:link, a:visited { 
color: rgba(115,25,26,1.00);
text-decoration:none;bold
}
a:Hover, a:active { 
color:rgba(45,102,43,1.00) ;
text-decoration:Underline
}
musicBox {
	width: 200px;
	height: 40px;
	position: absolute;
}
adobe {
	position: absolute;
}
