@charset "utf-8";
/* General styles */
body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background-color: #d0d0d0;
	min-width:600px;		/* Minimum width of layout - remove line if not required */
	/* The min-width property does not work in old versions of Internet Explorer */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
a:link, a:visited {
	color: #0000DD;
}
a:hover {
	color: #F74A00;
}
h1 {
	margin:0;
}
h2, h3 {
	line-height: 140%;
}
h1 {
	font-size: 20px;
	color: #0000C6;
}
h2 {
	font-size: 18px;
	color: #3060FE;
}
h3 {
	font-size: 16px;
	color: #004488;
}
h4 {
	font-size: 14px;
	color: #FF6600;
}
p, li {
	line-height: 140%;
}
/* Header styles */
#layout {
	background-color: #FFFFFF;
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #555;
}
#header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #F8F8F8;
	clear:both;
	width: 960px;
	height: 90px;
	margin-left:auto;
	margin-right:auto;
	border-bottom: 1px solid #555;
	background-image: url(img/hdrbkg2.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#header a:link, #header a:visited {
	color: #004488;
}
#header a:hover {
	color: #F74A00;
}
.header-lbox-wrap {
	float:left;
	padding: 15px 0 0 0;
}
.header-lbox {
    width: 470px;
}
.header-rbox-wrap {
	float:left;
	width:489px;
	margin-left:1px;
}
.header-rbox-top {
	height: 30px;
	padding:10px 5px 0 0;
	color: #004488;
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight: bold;
}
.header-rbox-bot {
	height: 50px;
	color: #fff;
}
#topnav {
	width: 960px;
	height: 25px;
	margin-left:auto;
	margin-right:auto;
	padding-top: 6px;
	font-size: 14px;
	text-align: center;
	background-color: #405F91;
	background-image: url(img/hdr001.gif);
	background-repeat: repeat-x;
	color: #f0f0f0;
}
#topnav a:link, #topnav a:visited {
	padding-left: 5px;
	padding-right: 5px;
	font-size: 14px;
	font-weight: bold;
	color: #f7f7f7;
	text-decoration: none;
}
#topnav a:hover {
	color: #FFFF66;
	text-decoration: underline;
}
.sidenav {
	background-color: #FBFBF9;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 160px;
	padding: 0px;
	margin: auto;
	text-align: left;
}
.navbox-content {
	width: 150px;
	padding: 0px;
	margin: auto;
	text-align: left;
}
.navbox-top {
	background-image: url(img/navbox1_02.gif);
	background-repeat: no-repeat;
	width: 142px;
	height: 16px;
	font-size: 12px;
	padding: 4px;
}
.navbox-bottom {
	background-image: url(img/navbox1_05.gif);
	background-repeat: no-repeat;
	width: 142px;
	height: 5px;
	padding: 4px;
}
.navbox-content ul {
	background-image: url(img/navbox1_04.gif);
	background-repeat: repeat-y;
	margin: 0;
	padding: 0;
	line-height: 14px;
	list-style-type: none;
}
.navbox-content li {
	margin-left: 4px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #6b7ab3;
}
.navbox-content a {
	display: block;
	width: 100%;
	padding: 12px 0px 4px 0px;
	margin-left: 0px;
	font-weight: bold;
	text-decoration: none;
}
.navbox-content a:link, .navbox-content a:active, .navbox-content a:visited {
	color: #000;
}
.navbox-content a:hover {
	color: #FF6600;
}
/* column container */
	.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:960px;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
	.colright, .colmid, .colleft {
	float:left;
	width:960px;			/* width of page */
	position:relative;
}
.col1, .col2, .col3 {
	float:left;
	position:relative;
	padding:5px 0 5px 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}

/* 3 Column settings */
	.threecol {
	background-color: #fff;
}
.threecol .colmid {
	right:220px;			/* width of the right column */
	background:#fff;		/* center column background colour */
}
.threecol .colleft {
	right:580px;				/* width of the middle column */
	background-color: #F9F9F7;	/* left column background colour */
}
.threecol .col1 {
	width:570px;		/* width of center column content (column width minus padding on either side) */
	left:965px;			/* 100% plus left padding of center column */
}
.threecol .col2 {
	width:160px;			/* Width of left column content (column width minus padding on either side) */
	left:230px;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:210px;			/* Width of right column content (column width minus padding on either side) */
	left:810px;			/* Please make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
	padding: 5px;
}
/* 2 Column settings */
.twocol {
	background:#fff;
}
.twocol .colmid {
	right:0px;			/* start of the left column */
	background:#fff;		/* center column background colour */
}
.twocol .colleft {
	right:800px;				/* width of the middle column */
	background-color: #F9F9F7;	/* left column background colour */
}
.twocol .col1 {
	width:790px;		/* width of center column content (column width minus padding on either side) */
	left:965px;
}
.twocol .col2 {
	width:160px;			/* Width of left column content (column width minus padding on either side) */
	left:10px;			/* left column start pos. plus (center column left and right padding) */
}
/* Footer styles */
.footer {
	clear:both;
	width:960px;
	margin-left:auto;
	margin-right:auto;
	border-top: solid #000000 1px;
	padding: 6px 0px 6px 0px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #303030;
}
.smalltxt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.tinytxt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}
.blue1 {
	color: #000BFA;
}
.blue2 {
	color: #000099;
}
.red {
	color: #C20106;
}
.orange {
	color: #F47A00;
}
.indent {
	margin-left: 16px;
}
