<style type="text/css">

.gallerycontainer{
	position: relative;	/*Add a height attribute and set to largest image's height to prevent overlaying*/
	}

.thumbnail img{
	border: 1px solid white;
	margin: 10px 5px 5px 10px;
	}

.thumbnail:hover{
	background-color: transparent;
	}
	
.thumbnail:hover img{
	border: 1px solid blue;
	}
	
.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: tan;
	padding: 5px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
	}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: 50px; /*how far from the top */
	left: 250px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	}
	
body{
	background-color:blue;
 	padding:0;
	margin:0;
	overflow: hidden; /* gets rid of scroll bars */
	}	
	
#dolphincontainer{
	position:relative;
	height:45px;
	color:#E0E0E0;
	background:#143D55;
	width:100%;font-family:Helvetica,Arial,Verdana,sans-serif;
	}
	
#dolphinnav{
	position:relative;
	height:33px;
	font-size:12px;
	text-transform:uppercase;
	font-weight:bold;
	background:#fff url(images/dolphin_bg.gif) repeat-x bottom left;padding:0 0 0 20px;
	}
	
#dolphinnav ul{
	margin:0;
	padding:0;
	list-style-type:none;
	width:auto;
	float:left;
	}

#dolphinnav ul li{
	display:block;
	float:left;
	margin:0 1px;
	}
	
#dolphinnav ul li a{
	display:block;
	float:left;
	color:#EAF3F8;
	text-decoration:none;
	padding:0 0 0 20px;height:33px;
	}
	
#dolphinnav ul li a span{
	padding:12px 20px 0 0;
	height:21px;
	float:left;
	}
	
#dolphinnav ul li a:hover{
	color:#fff;
	background:transparent url(images/dolphin_bg-OVER.gif) repeat-x bottom left;
	}
	
#dolphinnav ul li a:hover span{
	display:block;
	width:auto;
	cursor:pointer;
	}
	
#dolphinnav ul li a.current,#dolphinnav ul li a.current:hover{
	color:#fff;
	background:#1D6893 url(images/dolphin_left-ON.gif) no-repeat top left;line-height:275%;
	}
	
#dolphinnav ul li a.current span{
	display:block;
	padding:0 20px 0 0;
	width:auto;
	background:#1D6893 url(images/dolphin_right-ON.gif) no-repeat top right;height:33px;
	}

</style>