/*	
css
*/

.gallery {
	cursor: default;
	list-style: none;
}
.gallery a {
	cursor: default;
}
.gallery a .preview {
	display: none;
}
.gallery a:hover .preview {
	display: block;
	position: absolute;
	top: -33px;  /*   -33   */
	left: -45px;  /*   -45   */
	z-index: 1;
}
.gallery img {
	background: #fff; 
	/*	*/	
	
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	padding: 2px;
	vertical-align: top;
	width: 200px;  /*	scale down to 50% or 200 x 150*/
	height: 150px;
}
.gallery li {
	background: #eee;
	/*	*/	
	border-color: #ddd #bbb #aaa #ccc;     /*	 put a frame around the gallery images  */
	border-style: solid;
	border-width: 1px;
	color: inherit;
	display: inline;
	float: left;
	margin: 3px;
	padding: 5px;
	position: relative;
}
.gallery .preview {
	border-color: #000;  /*	 frame around the previewed image  */
	width: 400px;
	height: 300px;
}
