@charset "utf-8";
body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #52b7d7;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #183e8a;
	line-height:1.4em;
	background-image:url(images/page_bg.jpg);
	background-position:top;
	background-repeat:repeat-x;
}
#container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
}
#header {
	padding: 0;  /* this padding matches 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. */
}
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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-left:11px;
}
#mainContent {
	margin: 0 0 0 160px; /* the left margin on this div element creates the column down the left 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#bottom {
	padding: 0;
	height:10px;
	background-image:url(images/bottom.gif);
	background-repeat:no-repeat;
	background-position:bottom;
}
#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;
}
#footer {
	height:30px;
	width:760px;
	margin: 0 auto;
	font-size:10px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	padding-top:5px;
}
#footer a:link {
	color: #FFFFFF;
}
#footer a:visited {
	color: #007b9a;
}
#footer a:hover {
	color: #336699;
}
#footer a:active {
	color: #007b9a;
}

a:link {
	color: #007b9a;
}
a:visited {
	color: #007b9a;
}
a:hover {
	color: #336699;
}
a:active {
	color: #007b9a;
}

/*menu*/

.glossymenu {
	list-style-type: none;
	margin: 5px 0;
	padding: 0;
	width: 150px;
}
.glossymenu li a {
	background: url(images/nav_button.gif) no-repeat top left;
	font: bold 12px Tahoma, Arial, Helvetica, sans-serif;
	color: #003969;
	display: block;
	width: auto;
	height:20px;
	padding: 4px 0 0 0;
	padding-left: 10px;
	margin-bottom:2px;
	text-decoration: none;
}
* html .glossymenu li a { /*IE only. Actual menu width minus left padding of A element (10px) */
	width: 150px;
}
.glossymenu li a:active {
	color: white;
}
.glossymenu li a:hover {
	background-image:url(images/nav_button_over.gif);
}
/*content*/

h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	margin-top:3px;
}
h2 {
font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	margin-top:3px;
	color:#1e7cc1;
}

h3 {
font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#1e7cc1;
}
.form_text {
	font-size: 11px;
	line-height:normal;
}
.form_text td {
	font-size: 10px;
	line-height:normal;
}
input,textarea{
background:#FFFFFF !important;
border:#CCCCCC solid 1px;
font-size:11px;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding:1px;
margin:0px;
}

.forms{
background:#FFFFFF !important;
border:#CCCCCC solid 1px;
font-size:11px;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding:1px;
margin:0px;
}

hr {
	border: 0;
	color: #CCCCCC;
	background-color: #CCCCCC;
	height: 1px;
	width: 100%;
	text-align: left;
}
.images {
	border: 1px solid #CCCCCC;
	margin: 4px 10px 4px 7px;
	padding: 3px;
}


.table_bottom_border td{
border-bottom: 1px #F3F3F3 solid;
}


.table_bottom_border p{
margin:0px;
padding:0px;
}


.table_border td{
border: 1px #def2fb solid;
border-width: 1px 1px 0 0;
}

#table
{
    border-color: #def2fb;
    border-width: 0 0 1px 1px;
    border-style: solid;
}


.size10{
font-size:10px;
}

.size11{
font-size:11px;
}

.size12{
font-size:12px;
}

.size13{
font-size:13px;
}
.size14{
font-size:14px;
}
.size16{
font-size:16px;
}

.size18{
font-size:18px;
}

.yellow_bg{
background-image:url(images/yellow_bg.jpg);
background-repeat:repeat-x;
background-position:bottom;
}
