/* ^^^^^ IF YOU'RE USING TRELLIAN, YOU NEED TO CLICK THE SOURCE BUTTON TO SEE THIS FILE PROPERLY. ^^^^^ */

@charset "utf-8";

/* This is a comment. It has no effect. You can delete these. */
/* This is the Cascading Style Sheet (or "CSS") file. All the colours, fonts, and other styles are stored in here. */
/* You don't need to do anything here. If you like, you can change this style sheet, and see what happens. */

/* An easy thing to change is the colours. */
/* Colours are written in the format #123456. The first two numbers are how much red is in the colour, the second two are how much green there is, and the third two are how much blue there is. */
/* The least amount is 00, and the most is FF. So #FF0000 would be red, #00FF00 would be green, and #FF00FF would be purple. (#000000 is black). */



body {
	background-color: #990000;
	font-family: Arial;
	font-size: 12pt;
	}

a {
	font-weight: bold;
	}

h1 {
	margin-bottom: 24px;
	font-size: 24pt;
	font-weight: bold;
}

h2 {
	font: bold 12pt;
	margin-top: 56px;
}

.main-box {
	padding: 20px;
	border: 3px solid #168DAF;
	margin: auto;
	width: 900px;
	background-color: #FFFFFF;
	line-height: 150%;
}

.page-title {
	font-size: 56pt;
	font-weight: bold;
	text-align: left;
	clear: both;
	margin-top: 76px;
	margin-bottom: 76px;
	letter-spacing: -4px;
}

.link-box {
	padding: 10px;
	float: right;
	width: 200px;
	background-color: #FDFFD5;
	border: 3px solid #DEEA00;
	line-height: 70%;
	margin: 10px;
}

img {
	/*border: 1px solid;*/
	margin: 5px;
	float: left; /* This makes your images move to the left of the screen, with text wrapping around the right hand side. You may remove this line. */
}

.footer {
	font-size: 8pt;
	font-weight: bold;
	text-align: center;
}

.footer a {
	color: #000;
}
