/* transparent text on background image */

div.image{
	background: url(../images/main.jpg) top left no-repeat;
	height: 253px;
}

div.transparent{
	width: 210px;
	height: 180px;
	margin: 0px 5px 5px 5px;
	padding-top: 30px;
	/* for IE */
	filter:alpha(opacity=50);
	/* CSS3 standard */
	opacity:0.8;
	/* for Mozilla */
	-moz-opacity:0.8;
	overflow: hidden;
	z-index:99;
}

div.transparent p{
	margin: 5px;
	padding: 5px;
	font-size: 1em;
	color: #000;
	font-weight:bold;
}