@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #1D1722;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 12px;
	background-color: #290014;
	background-image: url(../images/background.jpg);
	background-repeat: repeat-x;
}
.layout #container {
	width: 990px;
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
} 
.layout #header {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-right: 20px;
	margin-left: 20px;
} 
.layout #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
.layout #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB;
}

.layout #mainContent {
	margin-top: 30px;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 

.layout #toolbar {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #61565F;
	background-repeat: repeat-x;
	line-height: 21px;
	background-image: url(../images/toolbar.jpg);
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #6A5B6B;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #655765;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-bottom: 0px;
	margin-right: 20px;
	margin-left: 20px;
}

.layout #container #toolbar a {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #79657E;
	padding-right: 5px;
	padding-left: 5px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #8B7F91;
}

.layout #container #toolbar a:link {
	color: #FFFFFF;
	text-decoration: none;
	
}
.layout #container #toolbar a:visited {
	color: #FFFFFF;
	text-decoration: none;
	

}
.layout #container #toolbar a:hover {
	color: #FFCC33;
	text-decoration: none;
}
.layout #container #mainContent p {
	font-size: 12px;
	line-height: 18px;
}

.layout #container #header .contact {
	color: #60515E;
	font-size: 12px;
	font-weight: bold;
	padding: 0px;
	text-align: left;
	margin-top: 0px;
	float: right;
}

.layout #container #header h2 {
	color: #5D0331;
	font-size: 16px;
	font-weight: bold;
	padding: 0px;
	text-align: left;
	margin-top: 10px;
	font-style: italic;
	line-height: 16px;
	margin-bottom: 5px;
}

.layout #footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333333;
	color: #666666;
	font-size: 12px;
	line-height: 18px;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 30px;
	margin-right: 20px;
	margin-left: 20px;
} 
.layout #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 20px;
}
.layout #container #mainContent h3 {
	font-size: 14px;
	line-height: 25px;
	margin-top: 0px;
}

.layout #container #mainContent h2 {
	font-size: 18px;
	line-height: 24px;
	margin-top: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 20px;
	margin-bottom: 0px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}



#thumbnail
{
	display: block;
	width: 220px;
	height: 150px;
	background: url("../images/thumbnail_bg.jpg") no-repeat 0 0;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	color: #6C0B3C;
	text-align: center;
	line-height: 150%;
	margin-top: 0px;
	margin-left: 0px;
}
.illustration {
	background-color: #F5FAF6;
	border: 1px solid #CCCCCC;
	padding: 20px;
	margin-bottom: 10px;
}

#thumbnail span {
	width: 200px;
	position: relative;
	display: block;
	margin-right: 10px;
	margin-left: 10px;
}

a:link {
	color: #6A0539;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	color: #6B0538;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #FF9933;
	text-decoration: none;
	font-weight: bold;
}
#thumbnail img {
	margin-top: 20px;
}

#thumbnail:hover
{
	background-position: 0 -150px;
	color: #FFCC33;
}
.centreCol {
	margin-right: 210px;
	margin-left: 210px;
}
.layout #container #mainContent .formfield {
	background-color: #FFFFFF;
	border: 1px solid #8E8495;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #000000;
	padding: 2px;
}
.layout #container #mainContent .submit {
	font-size: 14px;
	color: #FFFFFF;
	background-color: #620735;
	padding: 3px;
	border: 2px solid #8A3B64;
}
.layout #container #mainContent table {
	background-color: #EDEDED;
	border: 1px solid #8E8495;
}
.layout #container #mainContent li {
	line-height: 150%;
	margin-left: 20px;
	list-style-image: url(../images/bullet2.gif);
}
.layout #container #mainContent .ticbox li {
	list-style-image: url(../images/tickbox.gif);
}
