@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #9E9DBA;
	background-image:url(images/bg_main.gif);
	background-repeat:repeat;
	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: #000000;
	font-size:12px;
	min-height:1px;
}

img {
	border: none;
}

/* ---------------------------
Layout Sections
 ----------------------------*/
.twoColFixRtHdr #container { 
	width: 976px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #57568C;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #57568C;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background:#FFFFFF url(images/bg_address.gif) top right no-repeat;
	padding: 0 0 0 0;  /* this padding should match 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. */
	border-bottom: 2px solid #57568C;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #rightbox {
	float: right; /* since this element is floated, a width must be given */
	width: 453px; /* 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 */
	height:336px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0;
	padding: 9px 9px;
	border:8px solid #7A79A5;
	overflow:auto;
	font-size:12px;
}
.twoColFixRtHdr #rightbox1 {
	float: right; /* since this element is floated, a width must be given */
	width: 453px; /* 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 */
	height:336px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0;
	padding: 9px 9px;
	border:8px solid #7A79A5;
	overflow:auto;
	font-size:12px;
}
.twoColFixRtHdr #rightboxframe {
	width: 453px; /* 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 */
	height:336px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin:0;
	padding:0;
	border:none;
	overflow:hidden;
	font-size:12px;
}
.twoColFixRtHdr #rightboxframecontent {
	float: right; /* since this element is floated, a width must be given */
	width: 453px; /* 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 */
	height:336px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin:0;
	padding:0;
	border:0;
	overflow:auto;
	font-size:12px;
}

.twoColFixRtHdr #leftbox { 
	width:453px;
	height:336px;
	background: #FFFFFF; 
	margin: 0 493px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 9px 9px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border:8px solid #A4A2C2;
	overflow:auto;
	font-size:12px;
	position:absolute;
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF url(images/bg_hdr.gif) repeat-y;
	font-size: 10px;
}
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

/* ---------------------------
Main Menu
 ----------------------------*/
#mainmenu {
	 width:615px; 
	 height:32px; 
	 list-style:none; 
	 float:left; 
	 margin:0; 
	 padding:0;
	 display:inline;
}
#mainmenu li {
	float: right;
	display:inline;
	width: 123px;
	text-align:center;
}
#mainmenu a {
	background-color:#333275;
	text-decoration:none;
	color:#FFFFFF;
	display:block;
	padding:6px 0px 6px 0px;
	margin:0 1px 0 0;
	font-size:13px;
	text-transform:uppercase;
	height:20px;
}
#mainmenu a:hover {
	background-color:#F9DF2A;
	color:#333275;
}

/* ---------------------------
Submenu
 ----------------------------*/
#submenu {
	 width:976px; 
	 height:24px; 
	 list-style:none; 
	 float:left; 
	 margin:0; 
	 padding:0;
	 background-color:#57568C;
}
#submenu li {
	float: left;
	display:inline;
	width:15em;
	text-align:center;
	vertical-align:baseline;
}
#submenu a {
	background-color:#F9DF2A;
	text-decoration:none;
	color:#333275;
	display:block;
	padding:6px 14px 6px 14px;
	margin:0 1px 0 0;
	font-size:10px;
	text-transform:uppercase;
	height:14px;
}
#submenu a:hover {
	background-color:#FFFFFF;
	color:#333275;
}
/* ---------------------------
Footer Menu
 ----------------------------*/
#footer ul.menu { 
	list-style:none; 
	margin:0; 
	padding:0;
	display:inline;
	float:right;
}
#footer #menu li {
	display:inline;
}
#footer #menu li a {
	text-decoration:none;
	color:#333275;
	margin:0 3px 0 3px;
	padding:0 3px 0 3px;
	font-size:10px;
	width: 700px;
	height:14px;
	text-decoration:none;
}
#footer #menu a:hover {
	background-color:#FFFFFF;
	color:#333275;
	text-decoration:none;
}

/* ---------------------------
LEFTBOX and RIGHTBOX for home page
 ----------------------------*/

#imagebar {
	background-color:#DCDEDD;
	margin: 8px;
	padding: 5px;
	font-size:12px;
	float:left;
	min-height:100px;
	vertical-align:middle;
	}
#leftbox #imagebar p, #rightbox #imagebar p, #rightboxframecontent #imagebar p {
	padding: 0 9px 9px 9px;
	font-family:'Arial Narrow', Arial, Helvetica, sans-serif;
}
#rightbox h1, #leftbox h1, #rightboxframecontent h1 {
	font-size: 12px;
	margin: 0;
	padding: 0;
}
#leftbox p, #rightbox p,  #rightboxframecontent p {
	margin:8px;
}

/* ---------------------------
 PAGEBOX for site interior 
 ----------------------------*/

.twoColFixRtHdr #pagebox {
	width:709px; 
	background: #FFFFFF url(images/bg_logo.gif) top right no-repeat; 
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10pt 100pt; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height:350px;
}

.twoColFixRtHdr #pagebox h1 {
	font-size:22px;
	font-weight:bold;
}
.twoColFixRtHdr #pagebox h2 {
	font-size:16px;
	font-weight:bold;
}

.twoColFixRtHdr #pagebox ul.inline {
	list-style:none;
	margin: 0;
	padding: 0;
}
.twoColFixRtHdr #pagebox ul.inline li {
	padding: 5px 0 5px 0;
}

#grid td {
	background-color:#FFFFFF;
	font-size:12px;
	padding: 5px 5px;
}
#grid th {
	background-color:#DCDEDD;
	text-align:center;
	vertical-align:top;
}

.download {
	background-color: #FFFFCC;
	color:#000066;
	border:#9999FF solid 1px;
	padding:5px;
	font-size:12px;
	margin:-5px 0 5px 30px;
}
