/* CSS Document */
/* note that absolute positioning is necessary due to horizontal navigation bar mechanics */
body {
	margin: 0 auto;
	background-color: #ccc;
	width: 675px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 16px;
	color: #666;
}

img {
	border: 0;
}

.galleryImg {
	position: absolute;		/* work-in-progress for background "picture loading" text */
	z-index: 70;
	top: 7%;
	left: 7%; 
	height: 320px;
	width: 320px;
	background-color: #fff;
	background-repeat: no-repeat;
}

/*
#loadingText {
	position: absolute;
	z-index: 75;
	left: 150px;
	top: 150px;
}
*/

#mainContent, #mainContentPrivacy { 
	background-color: #fff;
	border: 1px solid black;
	position: relative;
	margin-top: 2%;
	width: 675px;
	height: 675px;
}

#mainContentPrivacy {
	margin-bottom: 2%;
	height: 1735px;
}

#header {
	position: absolute;
	z-index: 100;
	height: 10em;	
	width: 100%;
	border-color: red;
}

#header div {
	position: absolute;
	height: 8em;
}

#header #leftHeader, #mainBody #leftBody {
	position: absolute;
	float: left;
	width: 18em;
}

#header #rightHeader, #mainBody #rightBody {
	position: absolute;
	left: 18em;
	width: 24.8em;
}

/* #mainBody #rightBody should be redefined to account for the left padding */

#leftHeader {
	text-align: center;
	padding-top: 2.8em;
}

#rightHeader {
	padding-top: 2.1em;
}

/* note the z-index and absolute positioning of the other page element.  prevents the horizontal menu from pushing
 * content defined below it from getting pushed futher down */

#mainBody {
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 10em;
}

#mainBody #leftBody {
	height: 27.2em;
}

#mainBody #rightBody {
	height: 27.2em;
}

#mainBody #rightBody #homePagePhoto {
	position: relative;
	top: 1.96em;
	left: 1.96em; 
	height: 320px;
	width: 320px;
	background-color: #fff;
	background-image: url(../assets/jpgFiles/wed/homePagePhoto.jpg); 
	background-repeat: no-repeat;
}
