﻿/*
** Gallery.css
** Css rules for laying out the 6x2 gallery
*/

div.GalleryThumbs
{
}

div.GalleryThumbs img
{
	border-left:solid 1px #fff;
	border-top:solid 1px #fff;
	cursor: pointer;
	/*border:solid 1px red;*/
}

div.GalleryThumbs img.last
{
	border-left:solid 1px #fff;
	border-right:solid 1px #fff;
	border-top:solid 1px #fff;
	border-bottom:solid 1px #fff;
	/*border:solid 1px red;*/
}





table.gallery td.mainImage
{
	width: 420px;
	height: 350px;
	padding-right: 4px;
}
table.gallery td.mainImage img
{
	display: block;
	width: 420px;
	height: 350px;
	overflow: hidden;
}
table.gallery td.thumbnail
{
	width: 67px;
	height: 55px;
	padding-right: 4px;
	padding-bottom: 4px;
}
table.gallery tr.last td.thumbnail
{
	padding-bottom: 0;
}
table.gallery td.thumbnail img
{
	display: block;
	width: 67px;
	height: 55px;
	overflow: hidden;
	cursor: pointer;
}

