@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: #666;
	font-family: "Century Gothic";
	font-size: 90%;
	background-repeat: repeat-y;
	line-height: 1.4;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100px; /* 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: #FFF;
	margin-top: 0px;
	list-style-position: inside;
	border: 2px none #CCC;
	padding-top: 15px;
	padding-right: 40px;
	padding-bottom: 0px;
	padding-left: 25px;
}
h1  {font-size: 150%;    }
h2  {
	font-size: 100%;
	line-height: normal;
	font-weight: bold;
	color: #339;
}
h3  {
	font-size: 100%;
}



#container {
	width: 996px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #FFF;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	list-style-position: inside;
	line-height: 18px;
	font-size: 120%;
}


.thrColFixHdr #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFF;
	margin-bottom: 1px;
} 
.thrColFixHdr #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;
	top: auto;
}
#footer {
	color: #CED8E1;
	border-top-width: 7px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #C5D3C6;
	border-bottom-color: #000;
	background-color: #B81F17;
} 
#footer p {
	margin: 0;
	padding: 5px;
	text-align: center;
	border-top-width: 10px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #897EA6;
	border-bottom-color: #897EA6;
}

.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.centre_image {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: center;
}
a {
	color: #8D7CA9;
	font-weight: bold;
}
a img {
	border: none;
}
a:visited {
   color: #666; 
}
a:hover, a:active, a:focus {
   text-decoration: none;
}
.large_logo_text {
	font-size: 175%;
	color: #B81F17;
	line-height: 100%;
}
.large_logo_text_2 {
	font-size: 175%;
	color: #EF4F46;
	line-height: 100%;
}


.large_grey_text {
	font-size: 175%;
	color: #666;
	line-height: 100%;
	font-weight: normal;
}

.red_title {
	color: #B81F17;
	font-size: 120%;
	font-weight: normal;
	line-height: 125%;
}
.darkgrey_heading {
	font-size: 135%;
	color: #666;
	font-weight: normal;
	line-height: 100%;
	font-family: "Century Gothic";
}
.scriptina_title {
	font-family: Scriptina;
	font-size: 230%;
	font-weight: bolder;
	line-height: 90%;
}
.red {
	color: #F00;
}

.rounded {
	-moz-border-radius-topleft:3ex;
  -moz-border-radius-topright:3ex;
  -moz-border-radius-bottomleft:3ex;
  -moz-border-radius-bottomright:3ex;
    -webkit-border-top-left-radius:3ex;
  -webkit-border-top-right-radius:3ex;
  -webkit-border-bottom-left-radius:3ex;
  -webkit-border-bottom-right-radius:3ex;
} 
