/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
}
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	background-image: url('../images/graphics/bg.jpg');
	text-align: center;
	top-margin: 0;
}
/* 	LINKS  */

a {
	font-weight: bold;
	line-height: 1.3;
	color: #672121;
	list-style: none;
}
a:hover {
	color: #657b35;
	text-decoration: underline;
}


/* 	HEADERS  */
h1 {
	color: #002953;
	font-size: 1.0em;
	padding: 0px;
	margin-bottom: 0.25em;
}
h2 {
	font-size: 1.0em;
	color: #3764A6;
	padding: 0px;
	margin-bottom: 0.25em;
	text-align: center

}
h3 {
	font-size: 1.1em;
	color: #333399;
	text-align: center;
	line-height: 1.4em;
	margin-bottom: 0.75em;
	margin-top: .5em;
}
h4 {
	font-size: 85%;
	color: #002953;
	text-align: left;
	line-height: 1em;
	margin-top: .5em;
	margin-bottom: .5em;
}

h6 {
	background-color: #3764A6;
	color: #ffffff;
	font-size: 80%;
	margin-bottom: .05em;
	
}
p {
	font-size: 80%;
	}
	
	
.contenthead {
letter-spacing: 0.003em;
}

ul {
	text-align: left;
	list-style-type: none;
	line-height: 2em;
}
#innerlist ul {
	font-size: 11px;
	line-height: 1.6em;
}
#innerlist li li {
	font-size: 10px;
	line-height: 1.1em;
	margin-left: 25px;
}

/* 	LAYOUT  */

#wrap {
	background: #ffffff;
	width: 820px;
	margin-top: 0.25em;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	border-left: 2px solid #852C2C;
	border-right: 2px solid #852C2C;
	border-top: 2px solid #852C2C;
	border-bottom: 2px solid #852C2C;
}

#content-wrap {
	margin: 0;
	padding:0;
	background: #ffffff;
}
#header {
	width: 820px;
	height: 190px;
	margin-left: 0px;
	background: url('../images/graphics/header.jpg');
	position:relative;
	width: 100%
}	

#main{
	float: right;
	width: 560px;
	border-left: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	background-color: #ffffff; 
	color: #333333;
	margin-right: 5px;
}

#rightbar {
	width: 5px;
}

#content {
		margin-left: 3px;
		font: normal;
		
}
.contenthead {
letter-spacing: 0.003em;

}
.tablelist {	
	font-size: 11px;
	line-height: 1.2em;
}

#content li {
	letter-spacing: 0em;
	margin-left: 25px;
	list-style: none; 
}

#leftcol {
	width: 232px;
	background: #ffffff;
	font-size: 75%

}

#leftnav {
	width: 230px;
	border-top: 1px solid #bab8c8;
	border-bottom: 1px solid #bab8c8;
	border-left: 1px solid #bab8c8;
	border-right: 1px solid #bab8c8;
	margin-left: 3px;
	padding-left: 2px;
	background: #ffffff;
	font-weight: bold;
	float: left;
	color: #672121;
}
#leftnav a {
	font-weight: bold;
	line-height: 1.3;
	color: #672121;
	list-style: none;
}

#leftnav a:link {
	text-decoration: none;
}

#leftnav a:visited {
	color: #672121;
	text-decoration: none;
}

#leftnav a:hover {
	color: #657b35;
	text-decoration: underline;
}

#leftnav li {
	color: #672121;
	font-weight: bold;
}
#leftnav ul ul {
	margin-right: 5px;
	margin-bottom: 0.5em;
	margin-left: 5px;
	text-align: right;
	font-size: .9em;
	padding-left: 3px;
	list-style: none;
}

#sectionhead {
	width: 232px;
	margin-top: 15px;
	margin-left: 3px;
	border-top: 1px solid #bab8c8;
	border-bottom: 1px solid #bab8c8;
	border-left: 1px solid #bab8c8;
	border-right: 1px solid #bab8c8;
	background: #002953;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
}	
#leftinfo {
	width: 230px;
	border-top: 1px solid #bab8c8;
	border-bottom: 1px solid #bab8c8;
	border-left: 1px solid #bab8c8;
	border-right: 1px solid #bab8c8;
	margin-left: 3px;
	padding-left: 3px;
	font-size: 90%;
	font-weight: normal;
	color: #333333;
}
#footer {
	width: 820px;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	border-top: 2px solid #852C2C;
	background: #002953;
}
#space {
}
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-table;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
.centeredBox {
	margin-right: 65px;
	margin-left: 65px;
}


