@charset "utf-8";
#background {
	background-image: url(Newsletter_Contents/Graphics/fadedown.jpg);
	background-repeat: no-repeat;
	padding-top: 20px;
}

/*This is where the magic happens!*/
div.box {
	/*Any properties you'd want the box to have.*/
     /*Would probably be position, dimension type stuff.*/
     /*Though personally I would have a div outside this
       to control the dimensions.*/
    border: 1px solid #000000;
	position: relative;
	width: 500px;
	min-height: 600px;
}


div.box_background {
	background-color: white;
	background-position: center;
	height: 100%;
	filter:alpha(opacity=85); /* IE's opacity*/
	left: 0px;
	opacity: 0.85;
	position: absolute;
	width: 100%;
	z-index: 99;
}


div.box_contents {
	background-color:transparent;
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 101;
	text-align: left;
}
div.box_contents #go_back_upper {
	top: -50px;
	position: relative;
}
div .box_contents h2 {
	color: #666666;
	margin-left: 0px;
	padding-left: 70px;
}
div .box_contents #title_icon {
	float: left;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 5px;
}
