@charset "utf-8";
/* CSS Document */
/* Set the border and shadow around the slideshow */
.borderandshadowstyle {
	/* shadow for Firefox */
//	-moz-box-shadow: 5px 5px 8px #818181;

	/* shadow for Safari and Chrome */
//	-webkit-box-shadow: 5px 5px 8px #818181;

	/* shadow for Opera */
//	box-shadow: 5px 5px 5px #818181;

	/* border for all browsers */
	border-style:solid;
	border-width:0px;
	border-color:white;
}

/* Set the attributes of the messagebox */
.messageboxstyle {
	background-color:black;
	opacity:0.5; /* Set the opacity for Firefox, Opera and Chrome (value may range from 0 - 1) */
	filter:alpha(opacity=50); /* Set the opacity for Internet Explorer (value may range from 1 - 100) */
	padding:2px;
}

/* Set the position of the messagebox */
.messagealignstyle {
	vertical-align:bottom; /* Set the vertical position (top or middle or bottom) */
	text-align:right; /* Set the gorizontal position (left or center or right) */
}

/* Set the font-attributes */
a.messagefontstyle {
	font-family:Arial;
	font-size:20pt;
	color:burgundy;
	text-decoration:none;
	padding-right:5px;
}

