@charset "utf-8";
/* CSS Document */

/********** Basic Styling (Required) ***********/

/* Body */
body {
	background-color: #7C2128; /*######## change me ########*/
}


/********** Advanced Styling (Optional) ***********/

/* Body */
body {
	background-repeat: repeat-y; /* no-repeat or repeat */
}

/* footer/copyright */
#footer,
#footer p,
#footer a,
#footer a:active,
#footer a:visited,
#footer a:link,
#footer a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: rgba( 0, 0, 0, 0.5 ); /* black, opacity 50% */
	color: rgba( 255, 255, 255, 0.5 ); /* white, opacity 50% */
}
/* cross-browser fixes */
/* ie8 - workaround for no rgba() support. */
.ie8 #footer,
.ie8 #footer p,
.ie8 .ie8 #footer a,
.ie8 #footer a:active,
.ie8 #footer a:visited,
.ie8 #footer a:link,
.ie8 #footer a:hover {
	color: #000; /* black */
	color: #fff; /* white */
}


