
/* This is the background image */
#bg {
	width: 400px;
	height: 300px;
	background: url(leaf.gif) repeat;
	border: 2px solid black;
	}
	
/* This is the transparent box */


.transbox3 {
	width: 499px;
	background-color: #ffffff;
	border: 1px solid black;
	filter:alpha(opacity=90);
	opacity: 0.9;
	-moz-opacity:0.9;
	}
	
.transbox {
	width: 100%;
	background-color: #ffffff;
	border: 1px solid black;
	filter:alpha(opacity=90);
	opacity: 0.9;
	-moz-opacity:0.9;
	}
	
.transboximg {
	width: 100%;
	background-color: #000000;
	border: 1px solid black;
	filter:alpha(opacity=100);
	opacity: 1;
	-moz-opacity:1;
	}
	
	.transboxlong {
	width: 100%;
	background-color: #fff;
	border: 1px solid black;
	filter:alpha(opacity=90);
	opacity: 0.9;
	-moz-opacity:0.9;
	}
	
/* This is the container which set text to solid color.
position: relative used for IE */	
#transbox div {
	padding: 20px;
	font-weight: bold;
	color: #000;
	filter:alpha(opacity=100);
	opacity: 1;
	-moz-opacity:1;
	position: relative;
	}