/* CSS Document */

div.wrapper{
	float:left; /* important */
	position:relative; /* important(so we can absolutely position the description div */ 
	display:block;
}
div.description{
	position:absolute; /* absolute position (so we can position it where we want)*/
	bottom:0px; /* position will be on bottom */
	left:0px;
	width:100%;
	/* styling bellow */
	background-color:black;
	color:white;
	opacity:0.7; /* transparency */
	filter:alpha(opacity=70); /* IE transparency */
}

a.description_content{
	color:#FFFFFF;
	text-decoration:none;
}

#s9 img { display: none }
#s9 img.first { display: block }

