@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.photoAlbum #container {
	width: 965px;  
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 0;
	font-size: 14px;
} 
.photoAlbum #header {
	position:absolute;
	top: 0px;
	width: 965px;
	padding: 0;
	background-color: #003366;
} 
.photoAlbum #header h1 {
	font-size:18px;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.photoAlbum #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.photoAlbum #footer {
	position:absolute;
	top: 1130px;
	width: 965px;
	padding: 0;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 12px;
	background-color: #336699;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #003366;
	border-bottom-color: #003366;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	left: -2px;
}	 
.photoAlbum #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	color: #FFFFFF;
	font-weight: bold;	
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.photoAlbum img.thumbs {
	float:left;
	height:60px;
	width:60px;
	margin-right: 2px;
	margin-bottom: 2px;
	border: solid black 1px;
}
.photoAlbum #main {
	position:absolute;
	left:282px;
	top:403px;
	width:640px;
	height:640px;
	z-index:2;
}
.photoAlbum #thumbContainer {
	left:22px;
	top:402px;
	width:250px;
	height:430px;
	z-index:1;
	position:absolute;
}
.photoAlbum #photoHeader {
	position:absolute;
	left:379px;
	top:239px;
	width:295px;
	height:95px;
	z-index:3;
}
