@charset "utf-8";
/* CSS Document */
.boxgrid { 
	width: 375px; 
	height: 250px; 
	margin: 1em; 
	float: left; 
	overflow: hidden; 
	position: relative;
	border-radius: 1em;
	cursor: pointer;
}
.boxgrid img { 
	border-radius: 1em;
	position: absolute; 
}
.boxcaption { 
	float: right; 
	position: absolute;
	top: 250px;
	left: 0px;
	background-color: #555; /* For Older Browsers */
    background-color: rgba(0,0,0,0.7);
	height: 250px; 
	width: 100%;
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
}
.caption .boxcaption,
.captionfull .boxcaption {
	top: 250px;
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
}
.boxcaption h2 {
	font-size: 1.2em;
}
.boxcaption p {
	margin: .5em 1.5em;
	font-size: .8em;
}
