@charset "utf-8";
/* CSS Document */
.thumbnails {
	list-style-type: none;
	cursor: default;
}
.thumbnails li a {
	cursor: default;
}
.thumbnails a .preview
{
	display: none;
}
.thumbnails li {
	margin: 3px;
	padding: 5px;
	border: 1px solid #000;
	position: relative;
	float: left;
    border-color: #ddd #bbb #aaa #ccc;
	border-style: solid;
	border-width: 1px;
}
.thumbnails li a img {
	height: 75px;
	width: 100px;
	background: #fff;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	vertical-align: top;
	padding: 2px;
	display: block;
}
.thumbnails li a .preview {
	height: 150px;
	width: 200px;
	border-color: #000;
}
.thumbnails li a:hover .preview {
	position: absolute;
	left: -45px;
	top: -33px;
	z-index: 1;
	display: block;
}


