﻿div.wrapper {
	position:relative; /* important(so we can absolutely position the description div */
	margin-bottom: 20px;
}
div.description {
	position:absolute; /* absolute position (so we can position it where we want)*/
	bottom:0px; /* position will be on bottom */
	left:0px;
	/* styling bellow */  
	background-color:black;
	font-family: 'tahoma';
	font-size:15px;
	color:white;
}
div.description_content {
	padding:10px;
}
