@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	/*	background: #7dc864 url(img/body-bg.jpg) repeat-x; */
	background: #FFFFFF url(/img/body-bg.jpg) repeat-x fixed bottom;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px 0px 10px 0px;
	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;
}
h1 {
	font-size: 18pt;
	color: #0C3D91;
}
h2 {
	font-size: 14pt; 
	color: #0C3D91;
}
h3 {
	font-size: 12pt;
	color: #0C3D91;	
}
h4 {
	font-size: 10pt;
	margin: 10px 0px 3px 0px; 
}

p {
	font-size: 10pt;
	margin: 2px 0px 7px 0px; 
}

a, a:link { 
	color: #0c3d91;
	text-decoration: none;
}
a:visited { }
a:hover { 
	text-decoration: underline;
}
a:active { } 
a img {border: none; } 

#main { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 990px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 30px auto; /* the auto margins (in conjunction with a width) center the page */
/*	padding: 20px 10px 10px 10px; */
	border: none;
/*	border: 1px #00FF00 solid; */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	z-index: 1000;
}
.boxFullWidth {
	position: relative;
	width: 990px;
	margin: 25px auto 30px auto;
/*	padding: 20px 10px 10px 10px; */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
}
.contentArea {
 	margin: 0px 10px 0px 20px; 
	background: #f5f5ff;
	padding: 0px; 
	font-size: 10pt; 
	min-height: 1px;	
	height: auto !important;
	height: 1px;	
}
#header { 
	height: 5px;
} 
#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 */
}
.topbar {
	position: absolute;
	top: -13px;
	left: 0px;
	width: 100%;
	height: 13px;
	background: url(img/shadow-top.png) no-repeat;
	padding: 0px;
}
.bottombar {
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(img/shadow-bottom.png) no-repeat;
	padding: 0px;
}

.leftbar {
	position: absolute;
	top: 0px;
	left: 0;
	width: 20px; /* 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: 100%;
	background: url(img/shadow-left.png) repeat-y;
}
.rightbar {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 10px; /* 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: 100%;
	background: url(img/shadow-right.png) repeat-y;
	/* left: 996px; */
}
.rightCol {
	float: right; /* since this element is floated, a width must be given */
	width: 243px; /* 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 */
	padding: 0px;
}
.rightCol a {
	border: none;
	padding: 0px;
}
.navigation {
	margin: 0px;
	padding: 0px;
	list-style:none;
}
.navigation li {
	display: inline;
	padding: 0px;
	margin: 0px;
}
.navigation li a {
	border: none;
	padding: 0px;
	margin: 0px;
}
.navigation li img {
	border: none;
	margin: 0px;
	padding: 0px;
}

#mainContent {
	/* margin: 0px 243px 0px 249px; */
/* 	margin: 0px 9px 0px 306px; */
margin-left: 306px;

/*	width: 600px; */
	padding: 0px; 
	font-size: 10pt; 
/*	min-height: 270px; */
	min-height: 538px;
	height: auto !important;
	height: 538px;
/*	border: 1px #0000FF solid; */
}

#logo {
	position: absolute;
	top: 0px;
	left: 9px;
	width: 296px;
	height: 538px;
	padding: 0px;
	overflow:hidden;
}
/*
#logo {
	position: absolute;
	top: -40px;
	left: -99px;
	width: 330px;
	height: 360px;
	padding: 0px;
	overflow:hidden;
}*/
#logo img {
	padding: 0px;
	margin: 0px;
	border: none;
}

#footer { 
	text-align:center;
	font-size: 8pt;
} 
#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;
}

label {
float: left;
width: 197px;

margin-right: 3px;
text-align:right;
}
.inputText {
	width: 200px;
	margin-bottom: 5px;
	text-align:left;
}
.textareaField {
	width: 200px;
	margin-bottom: 5px;
	text-align:left;
}
input, textarea {
	border:1px solid #ddd;
	-moz-border-radius:0.4em;
	-khtml-border-radius:0.4em;
}

textarea {
width: 250px;
height: 150px;
}

.boxes {
width: 1em;
}

#submitbutton {
margin-left: 120px;
margin-top: 5px;
width: 90px;
}

br {
clear: left;
}
.clearRight {
clear: right;
}
.w8em {
	width: 8em;
	float:left;
}
.w10em {
	width: 10em;
	float:left;
}
.w20em {
	width: 20em;
	float:left;
}