/* ----- Photo + caption */
div.picture-caption {
	color: #ccc;
	float: left;
	font-family: "Lucida Grande", verdana, sans-serif;
	font-size: 11px;
	height: auto;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: auto;
}

div.picture-caption img {
	border: 0;
	margin: 0;
	padding: 0;
}

div.picture-caption a {
	text-decoration: none;
}
	
/* positioning with bottom & left so the height of the image doesn't need to be fixed */
div.caption-contain {
	bottom: 0px; /* distance from the bottom */
	height: auto;
	margin: 0; 
	padding: 0;
	position: absolute;
	right: 0px;
}
	
div.caption {
	padding: 10px 10px 10px 10px;
	position: relative;
	z-index: 3;
} /* so the text doesn't inherit transparency */

.caption-contain p.title {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 5px;
}

.caption-contain p.title a {
	color: #fff;
	text-decoration: none;
}

.caption-contain p {
	margin: 0 0 0 3px;<br />
	padding: 0;
}

div.transparency {
	background: #000;
	border: 0;
	filter:alpha(opacity=50);
	opacity: 0.5;
	-khtml-opacity: 0.5;
	-moz-opacity:0.5;
	height: 100%;
	position: absolute;
	right: 0px;
	width: 100%;
	z-index: 2;
}

/* Modifying "caption-contain" */
div.full-width {
	width: 100%;
}

div.caption-left {
	bottom: 20px;
	height: auto;
	left: 0px;
	margin: 0;
	padding: 0;
	position: absolute;
	right: auto;
}

div.text-right {
	text-align: right;
}
	
/* Adding margins so the samples aren't smooshed together */
div.picture-caption {
	/* margin: 20px; */
}

div.picture-left {
	float: left;
	margin-right: 15px;
}

div.picture-right {
	float: right;
	margin-left: 15px;
}