/*Colour Listings:

Background #1d1113

Text #6c96b5

Headings: #d29d71

Accent: #631d28
*/
@charset "utf-8";
html{
	/*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 */
	
	font-family: "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	margin: 0;
	padding: 0;
	border:0;
	height:100%;
	max-height:100%;
	line-height: 1.4;	/* hide overflow:hidden from IE5/Mac */	/* \*/	/* */
}
body {
	background-color: #1d1113;
	margin: 0;
	padding: 0;
	border:0;
	height:100%;
	max-height:100%;
	color: #6c96b5;
	background: #1d1113 url(../images/background.png) repeat;
	
	scrollbar-base-color: #1d1113;
	scrollbar-arrow-color: #6c96b5;
	scrollbar-3dlight-color: #1d1113;
	scrollbar-darkshadow-color: #1d1113;
	scrollbar-face-color: #1d1113;
	scrollbar-highlight-color: #6c96b5;
	scrollbar-shadow-color: #6c96b5;
	scrollbar-track-color: #1d1113
}
.bgright {
	margin: 0px;
	background-image: url(../images/bg_right.png);
	background-repeat: repeat-y;
	background-position: right top;
}
.bgleft {
	margin: 0px;
	background-image: url(../images/bg_left.png);
	background-repeat: repeat-y;
	background-position: left top;
}
.box{
	scrollbar-base-color: #1d1113;
	scrollbar-arrow-color: #6c96b5;
	scrollbar-3dlight-color: #1d1113;
	scrollbar-darkshadow-color: #1d1113;
	scrollbar-face-color: #1d1113;
	scrollbar-highlight-color: #6c96b5;
	scrollbar-shadow-color: #6c96b5;
	scrollbar-track-color: #1d1113	;
	background:#1d1113; 
	overflow:auto;
	border: 1px solid #631d28;
	text-align:left;
	padding: 5px;
	margin: 10px auto;
}
.header {
	width: 100%;
	text-align:center;
	margin:auto;
	padding: 30px 5px 5px 5px;
	background-image: url(../images/border.png);
	background-repeat: repeat-x;
	background-position: center top;	
}
.container {
	width: 920px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */

}
.content {
	padding: 5px 0;
	text-align: center;
}
.caption {
	font-size: 9pt;	
}
.footer {
	width: 100%;
	text-align:center;
	margin:auto;
	padding: 5px 5px 30px 5px;
	background-image: url(../images/border.png);
	background-repeat: repeat-x;
	background-position: center bottom;	
}
h1 {
	font-size: 13pt;
	color: #d29d71;
	margin: 0px 0px 8px 0px;
	font-weight: bold;
	font-family: "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}
h2 {
	font-size: 12pt;
	color: #d29d71;
	margin:15px 0px 8px 0px;
	font-weight: bold;
	font-family: "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
}
h3 {
	font-size: 12pt;
	color: #d29d71;
	margin: 0px 0px 8px 0px;
	font-weight: normal;
	font-family: "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}

p {
	margin:0px 0px 7px 0px;
	text-indent: 30px;
}
img {
	border-color: #631d28;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: 1px;
	border-color: #631d28;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #d29d71;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #d29d71;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	color: #6c96b5;
}





.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}