@charset "utf-8";
@media all {
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #183E51  url(images/blue_water_bg2.jpg);
	background-position: top;
   background-repeat: repeat-x;
   margin: 0; /* 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 can be reset to the left aligned default in the #container selector */
	color: #000000;
}

a { text-decoration: none;  color: #03F;}
a:visited {text-decoration: none; color:blue;}
a:hover { text-decoration: underline; color:blue;}
#container { 
	width: 900px;  /* container width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* overrides the text-align: center on the body element to account for IE5 */
} 
 #header {  height: 250px;
	background: #334F65 url(images/logo.jpg); 
} 
 #header h1 {
	text-align:center;
	font-size:44px;
	color:#ffffff;
	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: 2px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
 #header h3 {
	text-align: right;
	margin: 12px;
	font-size:24px;
	color:#ffffff; }

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the " #sidebar1 p" rule.
*/
 #sidebar1 {
	float: left; 
	width: 216px; /* since this element is floated, a width must be given */
	background: #C0D0C9 url(images/side_bar.gif); /* the background colo/graphic will be displayed for the length of the content in the column, but no further, so add pics or BR's to lengthen sidebar */
	padding: 8px 10px; /* top and bottom padding create visual space within this div */
}
 #sidebar1 h3,  #sidebar1 p {
	margin-left: 6px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 8px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. 
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
 #mainContent {
  	margin: 14px 18px 14px 244px; /* the left margin will look best if you match the padding amount to the header and footer and needs to include the left sidebar width of 216px, which is why the left margin is set so high. */
  	
} 

/* Controls colors and behaviour for footer area with text links */
 #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
 #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 issues */
}
#footer a { text-decoration:none; color: #006600; }
#footer a:visited { text-decoration:none; color: #006600; }
#footer a:hover {text-decoration: underline; color: blue;}

.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;
}

/* This list class controls the menu items in the left sidebar and adds the arrow graphic beside them */
ul.lister {margin:8px; padding:8px; }
ul.lister li
	{
		 list-style-image: url("images/arrow.gif"); 
		font-size: 24px;
		vertical-align:middle;
		line-height:64px;
		margin-left: 0px;
}
	
ul.lister li a { text-decoration:none; color: #006600; }
ul.lister li a:visited { text-decoration:none; color: #006600; }
ul.lister li a:hover  { color: blue; text-decoration: underline; }

/* Controls the top menu section under the logo - the splitter graphic is between each menu item for separation */
#menu { background: #323232 url("images/menu_bg.gif"); height:44px; padding-top:2px; padding-left:54px;}
#menu_list {width:828px; margin:0;}
#menu a { display:block; float:left; color:#EDEDED; font-size:16px; text-transform:uppercase; font-weight:bold; text-decoration:none; margin:0 24px; padding-top:13px;}
#menu a:hover{padding-top:15px;
								color: #ffdd33;}
.splitter { display:block; float:left;}
.picsmall {padding-left: 6px; padding-right: 6px; }

/* Controls separate Contact page if going with single column page */
#contact  { text-align:center;  padding-left: 120px; padding-right: 120px;}

#wx_module_5010 {
	float: right;
	border: thin solid #334F65;
}
.tableWrap {
	background-color: #FFF;
	border: thin solid #336;
}
.tableWrapAlt {
	border: thin solid #336;
	background-color: #DDD;
}

.img_float_right {
	float: right;
	padding-right: 6px;
	padding-left: 6px;
}
.video_border {
	border: thin solid #336;
}
}
@media print {
body  {font-size: 12pt;  color: black;  }
#container  {  width: 7in; height: 10in; }
#header { display: none; }
#sidebar1  { display: none; }
#mainContent  { margin: 1in 0in 0in 0in; }
#menu { display: none;}
}
