@charset "utf-8";
/* CSS Document */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	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: #666633;
}
.oneColLiqCtrHdr #container {
	width: 100%;  /* this will create a container 100% of the browser width */
	height: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColLiqCtrHdr #header {
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
	text-align: right;
	font: impact;
	color: #FFFFFF;
/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you 
	
	may want to remove the padding. */
}
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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #666633;
}

h2 {
	margin: 0px; /* 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-right: 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 24px;
	color: #666633;
	display: block;
	text-align: right;
}

.oneColLiqCtrHdr #footer {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #666633;
	font: Arial, Helvetica, sans-serif;
	font-size: 14px;
} 
.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-top: 15px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.headerfooter-left {
	background: url(images/grey_bar_left.png) top left #cccccc no-repeat;
	width: 100%;
}

.headerfooter-right {
	background: url(images/grey_bar_right.png) bottom right no-repeat;
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 0px;
	padding-bottom: 0px; 
}

.large-link, .large-link-lighter, .large-link-lightest, .large-link-selected {
	height: 120px;
	width: 120px;
}

.large-link{
	background: url(images/large_link_background.png) 0 0 no-repeat;
}

.large-link-lighter{
	background: url(images/large_link_background2.png) 0 0 no-repeat;
}

.large-link-lightest{
	background: url(images/large_link_background3.png) 0 0 no-repeat;
}

.large-link-selected{
	background: url(images/large_link_selected.png) 0 0 no-repeat;
}

.large-link-image {
	height: 90px;
	width: 94px;
	margin-top: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
	margin-right: 11px;
}

#intro_paragraph{
	width: 300px;
	font: Arial, Helvetica, sans-serif;
	font-size: 14px;
	position: relative;
	left: 300px;
	top: 30px;
}

img {
	border-style: none;
}
a:link {
	color: #6666ff;
	text-decoration: none;
}
a:visited {
	color: #333366;
	text-decoration: none;
}
a:hover {
	color: #999966;
	text-decoration: none;
}