@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: #FFF;
	background-color: #340A0B;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
}
p   {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

h1  {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
h2   {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
h3 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
a:link, a:visited  {
	color: #CCCC99;
	text-decoration: underline;
}
a:hover {
	color: #FFFF66;
	text-decoration: underline;
}
#linkbox a:link, #linkbox a:visited, #footer a:link, #footer a:visited {
	text-decoration: none;
	color: #FFF;
}
#linkbox a:hover, #footer a:hover {
	text-decoration: none;
	color: #FFFF66;
	text-decoration: none;
}
#container {
	width: 1000px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #6c1313;
	background-image: url(../images_layout/container_bkgd.jpg);
	background-repeat: repeat-x;
	background-position: 246px;
	position:relative;
} 
#floatingtriangle {
	position: absolute;
	z-index: 200;
	height: 155px;
	width: 378px;
	top: 246px;
	right: 0px;
}

#header {
	background-image: url(../images_layout/header.jpg);
	background-repeat: no-repeat;
	height: 246px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: right;
	margin: 0px;
} 
#mainContent {
	width: 595px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 


#content_top {
	background-image: url(../images_layout/content_top.jpg);
	height: 29px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#content_body {
	background-image: url(../images_layout/content_bkgd.jpg);
	background-repeat: repeat-x;
	margin: 0px;
	background-color: #6D1313;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#content_bottom {
	background-image: url(../images_layout/content_bottom.jpg);
	background-repeat: no-repeat;
	height: 9px;
	margin: 0px;
	padding: 0px;
}

#linkbox {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 45px;
	padding-right: 88px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#linkbox_top {
	background-image: url(../images_layout/linkbox_top.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 29px;
}
#linkbox_body {
	background-image: url(../images_layout/linkbox_bkgd.jpg);
	background-repeat: repeat-x;
	margin: 0px;
	background-color: #6D1313;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: center;
}
#linkbox_body ul {
	list-style-type: none;
	display: inline;
}
#linkbox_body li {
	line-height: 120%;
	font-variant: small-caps;
}

#linkbox_bottom {
	background-image: url(../images_layout/linkbox_bottom.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 9px;
}
#footer {
	background-image: url(../images_layout/footer.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	height: 57px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 85%;
	padding: 0;
} 


#footer_body {
	margin-left: 240px;
	margin-right: 220px;
	text-align: center;
	padding-top: 7px;
	padding-bottom: 5px;
}
#footer_right {
	float: right;
	width: 190px;
	margin-right: 10px;
	text-align: center;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.emphasis {
	font-size: 120%;
	font-weight: bold;
}
.emphasis_smcaps {
	font-weight: bold;
	font-variant: small-caps;
}

.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;
}
.nomargin {
	margin: 0px;
	padding: 0px;
	height: 0px;
}

