@charset "utf-8";
body  {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	background-color: #CDECFE;
	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(img/bground_grad2.jpg);
	background-repeat: repeat-x;
}
h1 {
	color: #0099FF;
	font-size:16px;
}
h2 {
	color: #333333;
	font-size:14px;
}
.subtitle {
	color: #0099FF;
	font-size:13px;
	font-weight:bold;
}

p {
	font-size:12px;
}
a:link {
	color: #0099FF;
	text-decoration:none;
}
a:hover {
	color: #01007F;
	text-decoration:none;
}
a:visited {
	color: #64C1FF;
	text-decoration:none;
}
.navLinks {
	color: #0099FF;
	font-size:12px;
	font-weight:bold;
}
.ulBlack {
	color: #000000;
	font-size:12px;
}

a:link .ulBlack {
	color: #000000;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}
a:hover .ulBlack {
	color: #0099FF;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}
a:visited .ulBlack {
	color: #666666;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}


.navText a:link {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 13px;
	font-weight: bolder;
	color: #000000;
	text-decoration:none
}
.navText a:hover {
	color: #0099FF;
	text-decoration:none
}

.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
}

.twoColFixRtHdr #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ECF8FF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	background: #ECF8FF;
	padding: 0 0px 0 0px;  /* 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. */
} 

.twoColFixRtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 195px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
	background-image: url(img/base01.3_r2_c22.jpg);
	height: 350px;
	background-color: #ECF8FF;
	background-repeat: no-repeat;
}
#nav {
	width: 133px;
	top: 100px;
	left: 30px;
	position: relative;
	height: 329px;
}
#supNav {
	width: 155px;
	top: 20px;
	left: 16px;
	position: relative;
	background-color: #FFFFFF;
	border: thin solid #666666;
	padding: 0px 5px 0px 5px;
}

.twoColFixRtHdr #mainContent {
	padding: 0px;
	width: 424px;
	height: auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 210px;
} 
.twoColFixRtHdr #rightBar {
	float: right; /* since this element is floated, a width must be given */
	width: 116x; /* 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 */
	background: #ECF8FF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
	top: 10px;
	margin: 0px;
}
.twoColFixRtHdr #footer {
	padding: 10px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ECF8FF;
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size:10px;
	width: 424px;
	margin-left: 210px;
} 
.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 0 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;
}
