/* CSS Document */

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: #000066;
	background-color: #999999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.oneColElsCtrHdr #container {
	width: 46em;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: thick solid #000066;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	background-color: #FFFFFF;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;

}
.oneColElsCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #FFFFFF;
	text-align: center;
} 
.oneColElsCtrHdr #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 */
}
.oneColElsCtrHdr #mainContent {
	padding: 0 20px;
	background-color: #FFFFFF;
}
.oneColElsCtrHdr #footer {
	padding: 0 15px;
	background-color: #000066;
	text-align: center;
	color: #FFFFFF;
} 
.oneColElsCtrHdr #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: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
td,th {
	color: #000066;
}
a {
	color: #FFFFFF;
	text-decoration: underline;
	}
a:visited {
	text-decoration: underline;
	}
a:hover, a:visited:hover {
	text-decoration: underline;
	color: #000066;
	background-color: #FFFFFF;
	}
.style2 {
	color: #FFFFFF;
}
a:focus {
	outline: none;
}
#panel {
	background: #fff000;
	text-align: center;
	height: 80px;
	display: none;
}
.slide {
	margin: 0;
	padding: 0;
	/* border-top: solid 1px #fff000; */
	background: url(images/btn-slide.gif) no-repeat center top;
}
.btn-slide {
	background: url(images/white-arrow.gif) no-repeat right -50px;
	text-align: center;
	width: 300px;
	height: 20px;
	padding: 2px 2px 0 0;
	margin: 0 auto;
	display: block;
	color: #999999;
	text-decoration: none;
	font-family: Helvetica, sans-serif;
	font-size: 100%;
}
.active {
	background-position: right 12px;
}
.attention {color: #FF0000}

