/*
	CSS Watermark Effect on Images v 1.0
	created by: Martin Ivanov
	website: http://www.acidmartin.com or http://acidmartin.wemakesites.net/
	email: acid_martin@yahoo.com
*/

div.watermark
{
	background: #fefefe;
	float: left;
	position: relative;
	-moz-user-select: none;
}

div.watermark .text
{
	position: absolute;
	cursor: default;
	font: bold 10px Verdana, Arial, Sans-serif;
	color: White;
	margin: 4px;
	line-height: 12px;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
	opacity: .5;
	-moz-opacity: .5;
}

/* watermark text position */
.topleft .text
{
	/* default */
}

.topright .text
{
	right: 0;
}

.bottomleft .text
{
	bottom: 0;
}

.bottomright .text
{
	right: 0;
	bottom: 0;
}
/* end of watermark text position */

div.watermark img
{
	display: block;
}
