/* CSS Styles for Graduation Website Redesign */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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: #002C75;
}

body,td,th {
	color: #002C75;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

a:link {
	color: #002C75;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: #002C75;
}

a:hover {
	text-decoration: underline;
}

a:active {
	text-decoration: none;
	color: #002C75;
}

.oneColLiqCtrHdr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	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. */
	color: #002C75;
	min-width: 800px;
}

.oneColLiqCtrHdr #header {
	background: #FFFFFF;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-top: 20px;
}

.oneColLiqCtrHdr #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 */
}

.oneColLiqCtrHdr #mainContent {
	background: #FFFFFF;
	float: right;
	width: 75%;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 25px;
	padding-left: 20px;
}

.oneColLiqCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#002c75;
} 

.oneColLiqCtrHdr #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 */
}

.oneColLiqCtrHdr #footertext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-bottom: 10px;
}

.oneColLiqCtrHdr #footertitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bolder;
}

.oneColLiqCtrHdr #date {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFF00;
	font-weight: bolder;
}

.oneColLiqCtrHdr #navtop {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	background-color: #002c75;
	width: 100%;
	height: 25px;
	padding-top: 10px;
}

.oneColLiqCtrHdr #leftnav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	float: left;
	background-color: 666666;
	height: 100%;
	width: 20%;
}

.oneColLiqCtrHdr #clear {
	clear: both;
}

.noFlicker{
	opacity: 0;
	filter: alpha(opacity=0);
}

<!-- [if IE]>-->
<style>
.oneColLiqCtrHdr #container {
	width:expression(this.offsetWidth>800?800.");
}
</style>
<!--<![endif]-->
