@charset "UTF-8";
/* CSS Document for my Self-Portrait Website */
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */

header, section, footer, aside, nav, article, figure {
	/* [disabled]display: block; */
}
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	color: #000;
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
}
#centeringDiv {
	background-color: #FFF;
	height: 750px;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border: 3px none #000;
}

#header {
	position: absolute;
	width: 950px;
	height: 251px;
	z-index: 5;
	left: 27px;
	top: -34px;
	border: 3px solid #000;
}
#footer {
	position: absolute;
	width: 200px;
	height: 115px;
	z-index: 2;
	left: 795px;
	top: 629px;
	font-size: 9px;
	color: #FFF;
}

/*This block is for the container that holds
 all the smaller div containers for the each button.*/
 #allButtons {
	position: absolute;
	height: 289px;/*adjust to your specific needs*/
	width: 104px;/*adjust to your specific needs*/
	top: 257px;
	z-index: 500;
	left: 35px;
 }
 
/*This sets the width and height of each button image */
 .btnImg {
	width: 710px;/*adjust to your specific needs*/
	height: 190px;/*adjust to your specific needs*/
	cursor: pointer;
 }

 /*This sets the rollover effect by shifting 
 the hovered/clicked image UP to reveal the desired version */
 .btnImg:link {/*normal link without ever clicking on it*/
     margin-top: 0px;
 }
 .btnImg:hover {/*hover is when the mouse is hovering over the image, adjust as needed*/
	margin-top: -100px;/*negative shifts image UP, positive would shift image DOWN*/
 }

 /*This allows each div holding a sprite to position itself 
 to the right or bellow of the previous div.*/
 .btnDiv {
	width: 100px;
	height: 100px;
	overflow: hidden;/*hides the part of the image not in the div */
	float: left;/*allows the div to reposition to right or below */
	margin-top: -30px;
 }
#btnImg1 {
	margin-left: 0px;/*negative shifts image LEFT, positive would shift image RIGHT*/
}

 /*This block positions the images in particular divs 
in the right location to display the desired image.*/
 #btnImg2 {
	margin-left: -100px;/*negative shifts image LEFT, positive would shift image RIGHT*/
 }
 #btnImg3 {
	margin-left: -200px;
 }
 #btnImg4 {
	margin-left: -300px;
 }
 #btnImg5 {
	margin-left: -400px;
 }
 #btnImg6 {
	margin-left: -500px;
 }
 #btnImg7 {
	margin-left: -600px;
 }
.floatLeft {
	margin: 5px;
	padding: 5px;
	float: left;
	border: thin dotted #FFF;
}
.floatRight {
	margin: 5px;
	padding: 5px;
	float: right;
	border: thin dotted #FFF;
}
.centerContent {
	text-align: center;
	color: #000;
}
