@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: #000;
	background-color: #E1F0FF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-weight: normal;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0 10px 0 20px;
	background-color: #3962A4;
}
#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 */
}

#menubar{
width: 100%;
overflow: hidden;
}

#menubar ul{
	margin: 0;
	padding: 0;
	padding-left: 4px;
	list-style-type: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold;
}

#menubar li{
display: inline;
margin: 0;
}

#menubar li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*right divider between tabs*/
	color: #333; /*background of tabs (default state)*/
	background-color: #A2B5D5;
	border-top-width: 4px;
	border-right-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #FFF;
	border-right-color: white;
}

#menubar li a:hover, #menubar li.selected a{
	background-color: #3962A4;
	color: #FFF;
}

#headerimage {
	width: 99%;
	float: left;
	padding: 4px;
}
#headerimage .image-left {
	border: 2px ridge #333;
}

#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer {
	background-color: #A2B5D5;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #3962A4;
}
#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 */
	font-size: x-small;
	color: #666;
	text-align: center;
}

.image-right {
	float: right;
	margin-bottom: 8px;
	margin-left: 8px;
}
.image-left {
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
}
#mainContent h1 {
	color: #3961A6;
}
#mainContent h2 {
	color: #3961A6;
}

.img-shadow {
	float:right; /* Most major browsers other than IE supports transparent shadow. Newer release of IE should be able to support that. */
	background-image: url(trans-shadow.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.img-shadow img {
display: block; /* IE won't do well without this */
position: relative; /* Make the shadow's position relative to its image */
padding: 5px; /* This creates a border around the image */
background-color: #fff; /* Background color of the border created by the padding */
border: 1px solid #cecece; /* A 1 pixel greyish border is applied to the white border created by the padding */
margin: -6px 6px 6px -6px; /* Offset the image by certain pixels to reveal the shadow, as the shadows are 6 pixels wide, offset it by that amount to get a perfect shadow */
} 