﻿@charset "utf-8";
/* CSS Document */

/* 图片鼠标滑过放大*/
.gallerycontainer{position: relative;}
.thumbnail img{border: 2px solid white;margin: 0 5px 0px 0; z-index:1000;}
.thumbnail:hover{
	text-decoration: none;
}
.thumbnail:hover img{
	border: 2px solid #CCCCCC;
	text-decoration: none;
	overflow: visible;
	z-index: 1000;
}
.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #B2B2B2;
	visibility: hidden;
	color: #000000;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 3px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 0;
	text-decoration: none;z-index:1000;
}
.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	left: auto; /*position where enlarged image should offset horizontally */
	z-index: 1000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}
