
/* LAYOUT STYLES */
@charset "utf-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #FFF;
	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: #333;}
	
.layout #wrapper {
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	width:700px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:30px;
	background-color:#FFF;}
	
.layout #contentbox a:link, a:visited { 
	color:#666666;
	text-decoration:underline;
	font-weight:normal;} 
	
.layout #container { 
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-bottom: 1px solid #FFF;
	text-align: left;} /* this overrides the text-align: center on the body element. */ 
	
.layout #banner { 
	height:239px;
	width:700px;
	border:0px;
	background-image:url(images/banner_placeholder.jpg);} 

.layout #navBarRight{
	display:none;}
	
.layout #contentbox { 
	color:#333333;
	float:left;
	width:700px;
	min-height:450px;
	height:auto !important;
	height:450px;
	background-image:url(images/contentbox_bgrnd.gif);
	background-repeat:repeat-y;
	text-align:left;} 
	
/* LEFT COLUMN STYLES */
.layout #rightnav {
	color:#013066;
	font-family:  Arial, Helvetica, sans-serif;
	float: right; 
	padding: 70px 10px 10px 10px;
	margin: 0px;	
	width: 140px;
	display:none;}


/* CONTENT BOX STYLES */
.layout #mainContent { 
	padding: 50px 5px 15px 45px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:450px;
	background-color:#FFF;} 
	
.layout #mainContent h1 { 
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#00A3E4;
	padding-top:10px;
	margin-bottom:10px;} 
	
.layout #mainContent h2 { 
	font-family: Helvetica, Arial, sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#666;
	margin-top:30px;} 
	
.layout #mainContent h3 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#666;} 

.layout #mainContent ul{
	list-style:disc;}
	
.layout #mainContent li{
	margin-left:-25px;}

.layout #mainContent ul ul{
	list-style:square;}

.layout #mainContent .homepage {
	font-size:14px;
	color:#013066;
	line-height:20px;}
	
/**** TABLE STYLES *****/

.layout #mainContent table { 
	margin-top:20px;}

.layout #mainContent th { 
	background-color:#EEE;
	color:#00a3e4;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-align:left;
	vertical-align:top;
	padding:5px;
	border-top:5px #FFF solid;
	border-bottom:1px solid #CCC;
	border-right:2px solid #FFF;}

.layout #mainContent td {
	background-color:#E4E4E4;
	color:#013066;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-align:left;
	vertical-align:top;
	padding:5px;
	border-top:5px #FFF solid;
	border-bottom:1px solid #CCC;
}

ul.MenuBarHorizontal {
	display:none;}

/*** RIGHT NAV STYLES ****/


.layout #photoBox {
	display:none;
	width:120px;
	border-top:#013066 1px solid;
	color:#013066;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	padding:5px 0px 0px 0px;
	margin-left:10px;
	margin-top:20px;
	margin-bottom:0px;}

.layout #photoBox p{
	margin:0px;}

/* FOOTER STYLES */
.layout #footer { 
	background:#e1f3fd; 
	width:100%;} 

.layout #footer_text { 
	padding: 5px 10px 5px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:left;} 
	
.layout #footer a:link, a:visited { 
	color:#666666;
	text-decoration:underline;
	font-weight:normal;} 


/* EXTRA STYLES */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;}
	
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;}
	
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;}
