@IMPORT url("/boxes.css"); /* all the round boxes are in here */
@IMPORT url("/style-common.css"); /* common styles, these are standard styles that are used often, not site specific */


body {
	font-size: small;
	font-family: arial, tahoma, verdana, sans-serif;
	text-align: center;
	color: #242424;
	background:#474A4D url(/images/background.jpg) no-repeat top center;
}

.roundbox {
	color: black;
	padding: 20px;
	text-align: left;
	background-color: #FFFFFF;
	filter: alpha(opacity=90); /* internet explorer */
	-khtml-opacity: 0.9;      /* khtml, old safari */
	-moz-opacity: 0.9;       /* mozilla, netscape */
	opacity: 0.9;           /* fx, safari, opera */
	 
	border: 3px solid #A06243;

	/* Do rounding (native in Firefox and Safari) */
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

