/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
th,td
{
font-family:arial;color:black;font-size:14px;
padding:3px;
}
h3
{
padding: 0px;
margin: 5px;
font-family:arial;color:black;font-size:32px;
}
img
{
padding: 0px;
margin: 0px;
vertical-align:text-bottom;
}
u 
{    
border-bottom: 1px dotted #000;
text-decoration: none;
}
a
{    
text-decoration: none;
}

caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset {
	/*so things don't run into each other*/
	margin-bottom:1em;
}

#mainwrapper {
	font: 10pt normal Arial, sans-serif;
	height: auto;
	text-align: center;
	width: auto;
}

/* Image Box Style */
#mainwrapper .box {
	height: 380px;
	position: relative;
	overflow: hidden;
	width: 525px;
}
#mainwrapper .box img {
	cursor: pointer;
	position: absolute;
	left: 0;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}

/* Caption Common Style */
#mainwrapper .box .caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	color: #fff;
	z-index: 100;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
		transition: all 300ms ease-out;
	left: 0;
}

/** Caption 1: Simple **/
#mainwrapper .box .simple-caption {
	height: 400px;
	width: 520px;
	display: block;
	bottom: -382px;
	text-align: left;
	padding: 5px 5px 5px 5px;
}

/** Simple Caption :hover Behaviour **/
#mainwrapper .box:hover .simple-caption {
	-moz-transform: translateY(-93%);
	-o-transform: translateY(-93%);
	-webkit-transform: translateY(-93%);
	opacity: 1;
	transform: translateY(-93%);
}

#mainwrapper .box:hover .scale-caption h3, #mainwrapper .box:hover .scale-caption p {
	-moz-transform: translateX(200px);
	-o-transform: translateX(200px);
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
}