/* ------------- CSS Popup Image ------------- */
/* Source: http://www.websitecodetutorials.com/code/photo-galleries/css-popup-image.php */
* {
	font-family: 'Trebuchet MS', verdana, geneva, Arial, Helvetica, sans-serif;
}

.thumb {
	float:left; /* must be floated for same cross browser position of larger image */
	position:relative;
	margin:3px;
}
.thumb img { 
	border:1px solid #000;
	vertical-align:bottom;
}
.thumb:hover {
	border:0; /* IE6 needs this to show large image */
	z-index:1;
}
.thumb span { 
	position:fixed;
	visibility:hidden;
}
.thumb:hover span { 
	visibility:visible;
	top:25%;
	left:25%;
}

.thumb:hover span img {
	max-width:100%;
	max-height:100%;
}

table{
	border-collapse: collapse;
}

table td, table th {
    border: 1px solid gray;
}