/*
 REFERENCES:
  http://www.midwinter-dg.com/blog_demos/css3-animated-image-captions/
  http://dev.w3.org/html5/markup/figure.html
*/

.fancycaption {
	xxxwidth: auto;
	width: 90%;
	margin-top: 0;
	xxxfloat: left;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
}

.fancycaption h2 {
	font-weight: bold;
	font-size: 22px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancycaption figure {
	xxxfloat: left;
	display: inline-block;
	width: 300px;
	height: 200px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	overflow: hidden;
	position: relative;
	margin: 0px; /* default values have 1em and 40px margins! */
}

.fancycaption img {
	width: 300px;
	height: 200px;
	width: 95%;
	height: 95%;
	vertical-align: top;
	padding: 5px;
	border: 10px solid #021a40;
	border: 4px solid #333;
	background-color: #999;
	border-radius: 6px 6px 6px 6px;
	box-shadow: 1px 1px 3px 3px #888;
}

.fancycaption img:hover {
	box-shadow: 1px 1px 3px 3px #a66;
}

.fancycaption figcaption {
	position: absolute;
	width: 70%;
	left: 15%;
	xxxwidth: 300px;
	xxxheight: 200px;
	height: 70px;
	top: -60px;
	text-align: center;
	font-weight: bold;
	color: #ddd;
	background-color: #555;
	line-height: 30px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

	border-radius: 0 0 10px 10px;

	-moz-transition: top .2s;
	-webkit-transition: top .2s;
	-o-transition: top .2s;
	transition: top .2s;
}

.fancycaption .extratall figcaption {
	height: 105px;
	top: -95px;
}

.fancycaption .extraextratall figcaption {
	height: 130px;
	top: -120px;
}

.fancycaption figure:hover figcaption {
	top: 0px;
}

.fancycaption figure:active figcaption {
	top: 0px;
}
