@charset "utf-8";

body {

	font-family: Times, Times New Roman, serif;
	font-size: 13px;
	font-weight: normal;

	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;

}



#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;

	text-align: left;

	position: relative;

}



#header {

	background: #FFFFFF;

	padding-left: 83px;

}

#container .overhang {

	position: absolute;

	left: 0px;

	top: 0px;

}



#mainContent {

	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

	background: #FFFFFF;

}

.pod {

	border: 4px solid #333367;

	top: 60px;

	float: left;

	height: 300px;

	width: 535px;

	position: relative;

	margin: 0px 0px 60px;

}

.pod1 {

	float: left;

	height: 300px;

	width: 230px;

	position: relative;

	top: 60px;

	border-top: 4px solid #333367;

	border-right: 4px solid #333367;

	border-bottom: 4px solid #333367;

	border-left: 3px solid #333367;

	margin-bottom: 60px;

}

.pod2 {

	float: left;

	width: 500px;

	position: relative;

	margin: 20px 0px;

	left: 137px;

	padding: 5px;

	border: 3px ridge #000;

}





#footer {

	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

	background:#FFCB65;

}



#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 */

	text-align: center;

}

a:link {

	color: #000;

	text-align: center;

}

a:visited {

	color: #09F;

	text-align: center;

}

a:hover, a:active, a:focus {

	color: #00F;

	text-decoration: none;

	text-align: center;

}

