@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background: #999999;
	background-image: url(images/water001.jpg);
	background-color: #999999;
}
a:link {
	color: #003366;
	text-decoration: none;
}
a:visited {
	color: #003366;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
}




.navtop {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/navtop.gif);
	color: #003366;
	font-style: normal;
	height: 22px;
	font-size: 12px;
	text-align: center;
}

.navtopsm {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/navtopsm.gif);
	color: #003366;
	font-style: normal;
	height: 22px;
	font-size: 12px;
	text-align: center;
}
.navbot {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/navbot.gif);
	color: #003366;
	font-style: normal;
	height: 22px;
	font-size: 12px;
	text-align: center;
}
.fishnfins #poplinks {text-align:center}
.fishnfins #poplinks a img {height:0 ; width: 0; border-width: 0;}
.fishnfins #poplinks a:hover img {
	position: absolute;
	top: 198px;
	height: 190px;
	width: 320px;
	border: 1px;
	left: 5px;
}
.fishnfins #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: RGB(236,236,235);
	margin: 0 auto;
	text-align: left;
	border-left: 1px solid #000000;
	border-right: 1px  solid #000000;
	border-bottom: 1px solid #000000;
} 
.fishnfins #header {
	background: #ececeb;
	padding: 5px 10px 0px 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. */
	height: 105px;
} 
.fishnfins #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 */
}
.fishnfins #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ececeb; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 15px 0px;
	height: 600px;
}
.fishnfins #mainContent {
	margin: 0 0 0 160px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left;
	font-size: 0.9em;
} 
.fishnfins #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
	font-size: 10px;
} 
.fishnfins #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 issue */
}
.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: 8px;
}
.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;
}


#navbar {
	width: 160px;
	font-weight: bold;
	font-size: 1.2em;
} 

#navbar ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
/*#navbar a, #navbar h2 {*/
#navbar a {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/nav.gif);
	color: #003366;
	font-style: normal;
	/*	height: 22px;*/
	font-size: 12px;
	display: block;
	/*border-width: 1px;*/
/*border-style: solid;*/
border-color: #ccc #888 #555 #bbb;
	/*margin: 0px;*/
padding: 2px 3px;
	text-decoration: none;
	overflow:auto
}

/*#navbar h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}*/

/*#navbar a {
	color: #003366;
	background-image: url(images/nav2.gif);
	text-decoration: none;
}*/

#navbar a:hover {
	color: #FF0000;
/*background-image: url(images/nav2.gif);*/
}

#navbar li {
	/* make the list elements a containing block for the nested lists */
position: relative;
	background-image: url(images/nav.gif);
/*background-image: url(images/nav.gif);*/
} 

#navbar ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

div#navbar ul ul ul,
div#navbar ul ul li:hover ul ul
{display: none;}

div#navbar ul ul li:hover ul,
div#navbar ul ul ul li:hover ul
{display: block;}

/*[if IE]>
<style type="text/css" media="screen">
body {
behavior: url(csshover.htc);
font-size: 100%;
}*/

#navbar ul li {float: left; width: 100%;}
#navbar ul li a {height: 1%;} 

#navbar a, #menu h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif;
}
/*</style>
<![endif]*/
.maintext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.5;
}

#listfont {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.5;
}