
/* CSS for round corners */

body {background-color: #9facea;
margin: 10px auto;
font-family: Arial, Helvetica, sans-serif;
} 

/* the code for the rounded corners is here */

#container {
	border: dashed red 3px;
	/* you can turn the border off or change it */
	-moz-border-radius:20px 20px;
	-webkit-border-radius:20px 20px;
	border-radius:20px 20px;
	
	background-color: #666;
	height: 630px;
	width: 425px;
	margin: 10px auto;
	background-image: url(../images/6488mpoppy.jpg);
	color: #fff;
	text-align: center;
}

#container p {padding: 0px 15px;
text-align: left;}

/* the background rgba - Red Green Blue Alpha - tells the browser to make a transparent background */

#seethru {background: rgba(255, 255, 255, 0.5);
	border-style: none;
	-moz-border-radius:20px 20px;
	-webkit-border-radius:20px 20px;
	border-radius:20px 20px;);
	height: 170px;
	width: 374px;
	position: absolute;
	top: 450px;
	left: 50%;
	margin-left: -187px;
	color: #2d3a74;
	}
#seethru p {padding: 0 10px;
	text-align: left;}

a {color: #2d3a74;
	text-align: center;}
