@charset "utf-8";
/* CSS Document */

body {
	font: 100% Helvetica, Verdana, Arial, sans-serif;
	background: #4897c5 url(images/bg.jpg) repeat-x;
	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 */
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

a:link {text-decoration: underline; font-weight: bold;} /* color: #1f4f72; */
a:visited {text-decoration: underline; color: #0000aa;}
a:hover {text-decoration: underline; color: #0000aa;}	
a:active {text-decoration: underline; color: #4691bd;}

.oneColElsCtrHdr hr {
	margin: 20px 0px 20px 15px;
	height: 2px;
	background: #1f4f72;
	border: none;
	width: 95%;
}
.oneColElsCtrHdr #container {
	width: 50em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #e0faff;
	background-image: url(images/footer.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	color: #3777a1;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #11364c;
	border-top: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	height: 11em;
	background-image: url(images/header.jpg);
} 
.oneColElsCtrHdr #nav_container {
	position: relative;
	height: 56px;
	color: #E0E0E0;
	background: #143D55;
	width: 100%;
}
.oneColElsCtrHdr #nav {
	position: relative;
	height: 33px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	background: #e0faff url(images/nav/nav_bg.gif) repeat-x bottom left;
	padding: 0 0 0 20px;
}
* html .oneColElsCtrHdr #nav {
	background: url(images/nav/nav_bg.gif) repeat-x;
	background-position: 0% 11%;
}
.oneColElsCtrHdr #nav div {
	float: right;
	text-align: right;
	padding: 5px 10px;
	text-transform: none;
	font-weight: normal;
	color: #fff;
	line-height: 2.2em;
}
.oneColElsCtrHdr #nav div p {
	margin: 0;
}
.oneColElsCtrHdr #nav div a:link {
	color: #fff;
}
.oneColElsCtrHdr #nav div a:hover {
	color: #efefef;
}
.oneColElsCtrHdr #nav ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: auto;
	float: left;
}
.oneColElsCtrHdr #nav ul li {
	display: block;
	float: left;
	margin: 0 1px;
}
.oneColElsCtrHdr #nav ul li a {
	display: block;
	float: left;
	color: #EAF3F8;
	text-decoration: none;
	padding: 0 0 0 20px;
	height: 33px;
}
.oneColElsCtrHdr #nav ul li a span {
	padding: 12px 20px 0 0;
	height: 21px;
	float: left;
}
.oneColElsCtrHdr #nav ul li a:hover {
	color: #fff;
	background: transparent url(images/nav/nav_bg-OVER.gif) repeat-x bottom left;
}
.oneColElsCtrHdr #nav ul li a:hover span {
	display: block;
	width: auto;
	cursor: pointer;
}
.oneColElsCtrHdr #nav ul li a.current, #nav ul li a.current:hover {
	color: #fff;
	background: #1D6893 url(images/nav/nav_left-ON.gif) no-repeat top left;
	line-height: 275%;
}
* html .oneColElsCtrHdr #nav ul li a.current {
	background: #1D6893 url(images/nav/nav_left-ON_2.gif) no-repeat top left;
}
* html .oneColElsCtrHdr #nav ul li a.current:hover {
	background: #1D6893 url(images/nav/nav_left-ON_2.gif) no-repeat top left;
}
.oneColElsCtrHdr #nav ul li a.current span {
	display: block;
	padding: 0 20px 0 0;
	width: auto;
	background: #1D6893 url(images/nav/nav_right-ON.gif) no-repeat top right;
	height: 33px;
}
* html .oneColElsCtrHdr #nav ul li a.current span {
	background: #1D6893 url(images/nav/nav_right-ON_2.gif) no-repeat top right;
}
.oneColElsCtrHdr #mainContent {
	padding: 2em; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top: 1em;
	min-height: 17em;
}
.oneColElsCtrHdr #mainContent h2 {
	color: #225679;
}
.oneColElsCtrHdr #mainContent p {
	padding-left: 1em;
}
.oneColElsCtrHdr #mainContent #policies div, #contact div {
	padding-left: 20px;
}
.oneColElsCtrHdr #mainContent #refund {
	margin-left: 30px;
}
.oneColElsCtrHdr #mainContent #policies div {
	padding-bottom: 5px;
}
.oneColElsCtrHdr #mainContent #policies ul {
	padding-bottom: 20px;
}
.oneColElsCtrHdr #mainContent #contact table {
	margin-left: 15px;
	margin-bottom: 20px;
}
.oneColElsCtrHdr #mainContent #contact table td {
	vertical-align: top;
	text-align: left;
	width: 150px;
}
.oneColElsCtrHdr #mainContent #contact table #address {
	width: 300px;
}
.oneColElsCtrHdr #mainContent #faq div div {
	padding-left: 20px;
}
.oneColElsCtrHdr #mainContent #faq p, #policies p, #overview p {
	width: 93%;
}
.oneColElsCtrHdr #mainContent #faq table {
	margin-left: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 95%;
	border-width: thin;
}
.oneColElsCtrHdr #mainContent #faq #small_table {
	margin-left: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 64%;
	border-width: thin;
}
.oneColElsCtrHdr #mainContent #faq table td {
	text-align: center;
	width: 100px;
}
.oneColElsCtrHdr #mainContent #faq table #title {
	font-weight: bold;
}
/*.oneColElsCtrHdr #mainContent #faq a:link { 		FAQ links 
	color: #3777a1;
	font-weight: normal;
}*/
.oneColElsCtrHdr #mainContent #faq span {
	color: #225679;
}
.oneColElsCtrHdr #mainContent #faq span span {
	font-style: oblique;
}
.oneColElsCtrHdr #mainContent #faq #link {
	text-align: center;
}
/*.oneColElsCtrHdr #mainContent #faq span a:link {		"back to top"
	color: #225679;
}*/
.oneColElsCtrHdr #mainContent #faq #title a:link, #title a:hover, #title a:active {
	color: #225679;
	text-decoration: none;
}
.oneColElsCtrHdr #mainContent ul, ol {
	padding-left: 50px;
}
.oneColElsCtrHdr #mainContent span {
	font-weight: bold;
}
.oneColElsCtrHdr #footer {
	padding: 50px 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
	font-size: 95%;
	color: #225679;
} 
.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: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.oneColElsCtrHdr #footer p span {
	font-size: 75%;
}
.oneColElsCtrHdr #footer div {
	margin-bottom: 5px;
	font-weight: bold;
}
.oneColElsCtrHdr #footer img {
	margin-bottom: 5px;
}
.oneColElsCtrHdr #bottom_nav {
	padding: 10px;
	margin-bottom: 30px;
	font-weight: bold; 
	font-size: 90%;
	color: #11364c;
	/*text-transform: uppercase;*/
}
.oneColElsCtrHdr #bottom_nav a:link, #bottom_nav a:hover, #bottom_nav a:active, #bottom_nav a:visited {
	text-decoration: none;
	color: #143d55;
}