@charset "utf-8";
body  {
	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;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 120%;
}
#container  {
	width: 800px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 628px;
	background-color: #FFFFFF;
	background-image: url(../images/backgrnd.jpg);
	background-repeat: no-repeat;
	margin: 0;
	background-position: 132px 92px;
	position: relative;
	z-index: 4;
} 
#header  {
	background-color: #FFFFFF;
	background-image: url(../images/my_anatomy_academy.jpg);
	height: 93px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 125px;
	left: 0px;
	top: 0px;
	position: absolute;
	width: 780px;
} 
#skull  {
	background-image: url(../images/skull.jpg);
	background-position: left top;
	height: 93px;
	width: 123px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	top: 0px;
	bottom: 0px;
}
#header  h1  {
	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 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1  {
	background-color: #FFFFFF;
	height: 535px;
	width: 125px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	clear: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 8px;
	text-align: right;
	padding: 0px;
	position: absolute;
	left: 0px;
	top: 93px;
}
#mainContent  {
	padding: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: none;
	background-color: #FFFFFF;
	position: absolute;
	top: 93px;
	width: 667px;
	height: 535px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	z-index: 2;
	clear: both;
	left: 133px;
	background-image: url(../images/backgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
} 
#footer  {
	background-color: #FFFFFF;
	height: auto;
	margin: 0px;
	top: 628px;
	padding: 0;
	position: absolute;
	left: 11px;
	width: 789px;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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: 8px;
}
.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;
}

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
	color: #FFFFFF;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}

#navButton {
	width: 125px;
	padding-left: 0px;
	padding-top: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFFFFF;
	float: right;
	top: 0px;
	margin: 0px;
	clip: rect(auto,auto,auto,5px);
}

#pgInfo {
	margin-top: 0px;
	margin-left: 0px;
	width: 667px;
	margin-right: 0px;
	padding: 0px;
	height: 535px;
	background-color: #FFFFFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: right;
	z-index: 1;
	visibility: visible;
}
