div.MD_wrapper{
	float:left; /* important */
	position:relative; /* important(so we can absolutely position the description div */ 
}

div.MD_description{
	position:absolute; /* absolute position (so we can position it where we want)*/
	bottom:40px; /* position will be on bottom */
	left:0px;
	width:100%;
	/* styling bellow */
	background-color:white;
	font-family: tahoma;
	font-size:15px;
	color:black;
	opacity:0.6; /* transparency */
	filter:alpha(opacity=60); /* IE transparency */
	font-weight: bold;
	text-align: center;
}

p.MD_description_content{
	padding:10px;
	margin:0px;
}