div.mask_wrapper {
	position:relative; /* important(so we can absolutely position the description div */
}
div.mask_area {
	position:absolute; /* absolute position (so we can position it where we want) */
	top:0; /* position will be on bottom */
	left:1px;
	padding: 0 0 0 0;
	display:none; /* hide it */
	/* styling bellow */
	background-color:black;
	font-family: 'tahoma';
	font-size:15px;
	color:white;
}
div.mask_area_detail {
	position:absolute; /* absolute position (so we can position it where we want) */
	top:0; /* position will be on bottom */
	left:0;
	padding: 0 0 0 0;
	display:none; /* hide it */
	/* styling bellow */
	background-color:black;
	font-family: 'tahoma';
	font-size:15px;
	color:white;
}
div.mask_content {
	padding: 0;
	margin: 0;
}
