#image
{
	border: black 2px solid;
	position: relative;
	top: 0;
	left: 0;
width: 300px;
height: auto;	
z-index: 1;
}

#image img
{
	padding: 0;
	width: 100%;
}

figcaption
{
	text-align: center;
	padding: 60px 0px 60px 0;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: inherit;
	opacity: 0;
	background-color: rgb(0,0,0,0.5);
	color: white;

}
#image:hover figcaption
{
	opacity: 1;
}