/* Galeria Simples */
aside.gallery {
	margin:30px;
	padding:1px;
	height:375px;
	border:solid 1px #CCC;
	background:#FFF;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}
aside.gallery div.zoom {
	position:absolute;
	width:500px;
	height:inherit;
	background:#EEE;
	overflow:hidden;
}
aside.gallery div.zoom figure {
	position:absolute;
	margin:-100% 0 0 0;
	width:inherit;
	height:inherit;
	text-align:center;
	opacity:0;
	overflow:hidden;
}
aside.gallery div.zoom figure img { max-width:100%; max-height:100%; }
aside.gallery div.zoom figure figcaption {
	position:absolute;
	padding:5px;
	left:0;
	right:0;
	bottom:0;
	text-align:left;
	color:#FFF;
	background:#000;
	opacity:0;
}
aside.gallery div.zoom figure:hover figcaption { opacity:0.8; }
aside.gallery div.thumbs {
	float:right;
	width:380px;
	height:inherit;
	overflow-x:hidden;
	overflow-y:auto;
}
aside.gallery div.thumbs a {
	display:block;
	float:left;
	margin:5px;
	width:100px;
	height:75px;
	text-align:center;
	border:solid 1px #FFF;
	box-shadow:0 0 3px rgba(0,0,0,0.2);
	overflow:hidden;
}
aside.gallery div.thumbs a:hover { box-shadow:0 0 5px rgba(0,0,0,0.6); }
aside.gallery div.thumbs a img { margin-left:-15%; width:120%; }
aside.gallery div.thumbs a:hover img { width:150%; }