@charset "UTF-8";
/* CSS Document */
body {
	font: 12px Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image:url(images/iaprtbkrnd.gif);
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*background-color:rgba(206, 206, 206, 0.6);*/
}
#header {
	text-align:center;
}
#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 */
}
#navigation {
}
#navigation ul {
	margin:10px 0;
	padding:0;
}
#navigation ul li {
	display:inline;
}
#navigation a {
	background-image:url("images/nav_btn_bg.jpg");
	background-repeat:repeat-x;
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
	padding:5px 10px;
	text-decoration:none;
}
#navigation a:hover {
	background-image:url("images/nav_btn_bg_hover.jpg");
}
#subnav ul {
	margin:10px;
	padding:0;
}
#subnav ul li {
	display:inline;
	line-height:30px;
	padding:5px;
}
#subnav a {
	background-image:url("images/sub_nav_bg.jpg");
	background-repeat:repeat-x;
	color:#000000;
	font-size:11px;
	font-weight:bold;
	padding:5px 15px;
	text-decoration:none;
}
#subnav a:hover {
	background-image:url("images/sub_nav_bg_hover.jpg");
}
#sidebarL {
	float:left;
	width:190px;
}
#sidebarR {
	float:right;
	width:190px;
}
.mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:360px;
	margin-left:190px;
}
.noside {
	margin:0;
	width:auto;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:10px;
	border-top:1px solid #666666;
}
#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 */
	font-style:italic;
}
#sidebarL a h1 {
	text-decoration:none;
	font-size:14px;
	text-align:right;
	background-image:url(images/sidebar_h1_bg.jpg);
	background-repeat:repeat-y;
	background-position:right top;
	padding:7px 15px;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
}
#sidebarL a h1:hover {
	background-image:url(images/sidebar_h1_bg_hover.jpg);
}
#sidebarR a h1 {
	text-decoration:none;
	font-size:14px;
	text-align:left;
	background-image:url(images/sidebarR_h1_bg.jpg);
	background-repeat:repeat-y;
	background-position:right top;
	padding:7px 15px;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
}
#sidebarR a h1:hover {
	background-image:url(images/sidebarR_h1_bg_hover.jpg);
}
#sidebarL, #sidebarR {
	text-align:center;
	font-weight:bold;
}
#sidebarL a, #sidebarR a, #sidebarR h1, #sidebarL {
}
#sidebarL h1 a, #sidebarR h1 a {
	text-decoration:none;
}
a {
	color:#000000;
}
h2 {
	color:#000080;
}
#sidebarL h2, #sidebarR h2 {
	background-color:#000080;
	color:#FFFFFF;
	display:block;
}
#sidebarL h4 {
	color:#000080;
	margin:0;
	padding:0;
	margin-top:10px;
}
#sidebarL p {
	margin:0;
	padding:0;
}
#preloader {
	display:none;
}
.errors {

}