/* styles for image gallery */
#imageGallery { /* div containing entire gallery */
	/*height: 720px;*/
}
.galleryTable { /* table containing images */
	border: 0;
}

.galleryTable td { /* table containing images */
	border: 0;
	padding: 0 55px 55px 0;
	vertical-align: top;
	text-align: center;
	color: #001F59;
	font: italic bold 10px helvetica;
}

.thumbnail { /* div containing each thumbnail image */
	/*float: left;*/
}

.thumbnail img { /* gallery thumbnail images */
	border: 0;
	width: 142px;
}

.thumbLink img { /* links around thumbnail images */
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-opacity: 1;
}

.thumbLink:hover img { /* links around thumbnail images, hover effect */
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
-moz-opacity: .8;
border: 1px #000066;
}

.thumbLink:hover {
color: 1px #000066; /* Dummy definition to overcome IE bug */
}

#galleryLinks { /* div containing all gallery links */
	text-align: right;
	color: #001F59;
	font: bold 14px helvetica;
}

#galleryLinks a { /* each gallery link */
	margin-right: 8px;
	margin-bottom: 3px;
	color: #001F59;
	text-decoration: underline;
}

#galleryLinks a:hover { /* each gallery link, hover effect */
	color: #203564;
	text-decoration: none;
}

#galleryLinks a.current{ /* currently selected gallery link */
	text-decoration: none;
}

