@charset "utf-8";
/* CSS Document */

body  {
	font: 100.01% Arial, Helvetica, sans-serif;
	background: #ffffff;
	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;
}

#body-rule {  /* modified for ie6 and ie7 */
	background-image: url(../images/horiz-repeat-bar2.jpg);
	background-repeat: repeat-x;
	height:10px;
	background-position: left top;
	position:relative;
	top: 170px;
}


.myframe {
    background-color:#ffffff;
    border:0px solid #ffffff;
    width: 110px;
    height:240px;
}


/* three column layout */

.thrColFixHdr #container { 
	width: 1008px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff;
	margin: 10px 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. */
} 
.thrColFixHdr #header { 
    display:block;
    position:relative;
	top:0;
	left:0;
	background: #ffffff;
	width: 1008px; 
	height: 534px;
} 
.thrColFixHdr #header #nav-container {
    position:relative;
	top: 0;
	left: 0;
	width: 1008px;
	height: 374px;
	vertical-align: top;
}
.thrColFixHdr #header #nav-container #left-nav {
	display:block;
	position:relative;
	top: 0;
	left: 0;
	width: 360px;
	height: 374px;
	vertical-align: top;
}
.thrColFixHdr #header #nav-container #center-pic {
	position:absolute;
	top: 0;
	left: 360px;
	width: 330px;
	height: 374px;
	vertical-align: top;
}
.thrColFixHdr #header #nav-container #right-nav {
	display:block;
	position:absolute;
	top: 0;
	left: 690px;
	width: 318px;
	height: 374px;
	vertical-align: top;
}

.thrColFixHdr #container #content-container {  /* modified for ie7 */
	position: relative;
	top: -1px;
	left: 0;
	width: 1008px;
	background-image: url(../images/3-col-bg-for-type.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.thrColFixHdr #container #content-container #sidebar1 {  /* modified for ie7 */ /* total width of sidebar1 is 360px which includes the stated width plus left and right padding */
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 20px 10px 15px 150px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #container #content-container #sidebar1 h1 {
    font-size:13px;
}
.thrColFixHdr #container #content-container #sidebar1 p {
    font-size:11px;
}

.thrColFixHdr #container #content-container #sidebar2 {  /* modified for ie7 */ /* total width of sidebar2 is 318px which includes the stated width plus left and right padding */
	float: right; /* since this element is floated, a width must be given */
	width: 208px; /* 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: 20px 95px 15px 15px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #container #content-container #sidebar2 h1 {
    font-size:13px;
}
.thrColFixHdr #container #content-container #sidebar2 p {
    font-size:11px;
}

.thrColFixHdr #container #content-container #mainContent {  /* modified for ie7 */ /* total width of mainContent is 330px which is defined by the left and right margins */
	margin: 0px 318px 0 360px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #container #content-container #mainContent h1 {
    font-size:16px;
}
.thrColFixHdr #container #content-container #mainContent h2 {
    font-size:14px;
}
.thrColFixHdr #container #content-container #mainContent h3 {
    font-size:12px;
}
.thrColFixHdr #container #content-container #mainContent h3 a:link{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.thrColFixHdr #container #content-container #mainContent h3 a:visited{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.thrColFixHdr #container #content-container #mainContent h3 a:hover{
	color:#ff9900; /* gold */
	text-decoration: none;
}

.thrColFixHdr #container #content-container #mainContent p {
    font-size:12px;
}

.thrColFixHdr #container #content-container #mainContent p a:link {
    color:#00559D;  /* blue */
	text-decoration:none
}
.thrColFixHdr #container #content-container #mainContent p a:visited {
    color:#00559D;  /* blue */
	text-decoration:none;
}
.thrColFixHdr #container #content-container #mainContent p a:hover {
    color:#ff9900; /* gold */
	text-decoration:none;
}

.thrColFixHdr #container #content-container #mainContent ul { 
    margin: 0;
	padding: 0 0 0 15px;
	text-indent: 0px;
}
.thrColFixHdr #container #content-container #mainContent ul li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.thrColFixHdr #container #content-container #mainContent ol {  
    margin: 0;
	padding: 0 0 0 18px;
	text-indent: 0px;
}
.thrColFixHdr #container #content-container #mainContent ol li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.thrColFixHdr #container #content-container #mainContent img.right{ 
	float:right;
	margin: 0 5px 10px 10px;
	border: 1px solid #00559D;  /* blue */
} 
.thrColFixHdr #container #content-container #mainContent img.left{ 
	float:left;
	margin: 0 10px 10px 0;
	border: 1px solid #00559D;  /* blue */
}


.thrColFixHdr #footer {
	display:block;
	position:relative;
	top:0;
	left:0;
	width: 1008px;
	height: 100px;
	font-size: 10px;
	background-color: #ffffff;
}
.thrColFixHdr #footer #footer-rule {
    margin: 0 90px 0 135px;
	background-image: url(../images/horiz-repeat-bar2.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height:10px;
}
.thrColFixHdr #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-size:10px;
}
.thrColFixHdr #footer div#footer-nav {  
    position:absolute;
	top:0;
	left:0;
}
.thrColFixHdr #footer div#footer-nav ul#footer-nav-content-upper { /* width plus padding gives the actual width */
    float:left;
    margin: 0;
	padding: 15px 0 0 153px;
	width: 858px;
}
.thrColFixHdr #footer div#footer-nav ul#footer-nav-content-upper li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.thrColFixHdr #footer div#footer-nav ul#footer-nav-content-lower {  /* width plus padding gives the actual width */
	float:left;
	margin: 0;
	padding: 10px 0 10px 153px;
	width: 858px;
}
.thrColFixHdr #footer div#footer-nav ul#footer-nav-content-lower li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.thrColFixHdr #footer div#footer-nav ul li a:link {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.thrColFixHdr #footer div#footer-nav ul li a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.thrColFixHdr #footer div#footer-nav ul li a:hover {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.thrColFixHdr #footer div#copy {  
    position:absolute;
    top: 40px;
	left: 153px;
	color:#00559D;  /* blue */
	padding-top: 10px;
}
.thrColFixHdr #footer div#copy span#credit {
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 0px;
}
.thrColFixHdr #footer div#copy span#credit a:link {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.thrColFixHdr #footer div#copy span#credit a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.thrColFixHdr #footer div#copy span#credit a:hover {
	color:#00559D;  /* blue */
	text-decoration: none;
}


/* two column layout */

.twoColFixLtHdr #container { 
	width: 1008px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px 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. */
} 
.twoColFixLtHdr #header { 
    display:block;
    position:relative;
	top:0;
	left:0;
	background: #ffffff;
	width: 1008px; 
	height: 534px;
} 
.twoColFixLtHdr #header #nav-container {
    position:relative;
	top: 0;
	left: 0;
	width: 1008px;
	height: 374px;
	vertical-align: top;
}
.twoColFixLtHdr #header #nav-container #left-nav {
	display:block;
	position:relative;
	top: 0;
	left: 0;
	width: 360px;
	height: 374px;
	vertical-align: top;
}
.twoColFixLtHdr #header #nav-container #center-pic {
	position:absolute;
	top: 0;
	left: 360px;
	width: 330px;
	height: 374px;
	vertical-align: top;
}
.twoColFixLtHdr #header #nav-container #right-nav {
	display:block;
	position:absolute;
	top: 0;
	left: 690px;
	width: 318px;
	height: 374px;
	vertical-align: top;
}

.twoColFixLtHdr #container #content-container {  /* modified for ie7 */
	position: relative;
	top: -1px;
	left: 0;
	width: 1008px;
	background-image: url(../images/2-col-bg-for-type.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;	
}

.twoColFixLtHdr #container #content-container #sidebar2 {  /* modified for ie7 */ /* total width of sidebar2 is 318px which includes the stated width plus left and right padding */
	float: right; /* since this element is floated, a width must be given */
	width: 205px; /* 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: 20px 98px 15px 15px; /* padding keeps the content of the div away from the edges */
}
.twoColFixLtHdr #container #content-container #sidebar2 h1 {
    font-size:13px;
}
.twoColFixLtHdr #container #content-container #sidebar2 h1.books a {
	text-decoration:none;
	color:#00559D;  /* blue */
}
.twoColFixLtHdr #container #content-container #sidebar2 p {
    font-size:11px;
}
.twoColFixLtHdr #container #content-container #sidebar2 p.amazon a {
	text-decoration:none;
	color:#00559D;  /* blue */
}
.twoColFixLtHdr #container #content-container #mainContent {  /* modified for ie7 */ /* total width of mainContent is 330px which is defined by the left and right margins */
	margin: 0px 318px 0 135px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 15px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #container #content-container #mainContent h1 {
    font-size:16px;
}
.twoColFixLtHdr #container #content-container #mainContent h2 {
    font-size:14px;
}
.twoColFixLtHdr #container #content-container #mainContent h3 {
    font-size:12px;
}
.twoColFixLtHdr #container #content-container #mainContent h3 a:link{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.twoColFixLtHdr #container #content-container #mainContent h3 a:visited{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.twoColFixLtHdr #container #content-container #mainContent h3 a:hover{
	color:#ff9900; /* gold */
	text-decoration: none;
}

.twoColFixLtHdr #container #content-container #mainContent p {
    font-size:12px;
}

.twoColFixLtHdr #container #content-container #mainContent p a:link {
    color:#00559D;  /* blue */
	text-decoration:none
}
.twoColFixLtHdr #container #content-container #mainContent p a:visited {
    color:#00559D;  /* blue */
	text-decoration:none;
}
.twoColFixLtHdr #container #content-container #mainContent p a:hover {
    color:#ff9900; /* gold */
	text-decoration:none;
}


.twoColFixLtHdr #container #content-container #mainContent p.agenda {  /* modified for ie6 and ie7 */
    font-size:11px;
	background-color: #89c5eb;  /* light blue */
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 4px 0 4px 4px;
	width: 514px;	
}
.twoColFixLtHdr #container #content-container #mainContent p.agenda a:link {
    color:#000000;  /* black */
	text-decoration:none;
}
.twoColFixLtHdr #container #content-container #mainContent p.agenda a:visited {
    color:#000000;  /* black */
	text-decoration:none;
}
.twoColFixLtHdr #container #content-container #mainContent p.agenda a:hover {  /* modified for ie6 and ie7 */
    color:#ffffff;  /* white */
	text-decoration:none;
	background-color: #00004f;  /* dark blue */
	padding: 4px 360px 4px 4px;
	margin: 0 0 0 -4px;
}



.twoColFixLtHdr #container #content-container #mainContent ul { 
    margin: 0;
	padding: 0 0 0 15px;
	text-indent: 0px;
}
.twoColFixLtHdr #container #content-container #mainContent ul li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.twoColFixLtHdr #container #content-container #mainContent ul li a:link {
    color:#00559D;  /* blue */
	text-decoration:none
}
.twoColFixLtHdr #container #content-container #mainContent ul li a:visited {
    color:#00559D;  /* blue */
	text-decoration:none;
}
.twoColFixLtHdr #container #content-container #mainContent ul li a:hover {
    color:#ff9900; /* gold */
	text-decoration:none;
}


.twoColFixLtHdr #container #content-container #mainContent ol {  
    margin: 0;
	padding: 0 0 0 18px;
	text-indent: 0px;
}
.twoColFixLtHdr #container #content-container #mainContent ol li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.twoColFixLtHdr #container #content-container #mainContent img.right{ 
	float:right;
	margin: 0 5px 10px 10px;
	border: 1px solid #00559D;  /* blue */
} 
.twoColFixLtHdr #container #content-container #mainContent img.left{ 
	float:left;
	margin: 0 10px 10px 0;
	border: 1px solid #00559D;  /* blue */
}


.twoColFixLtHdr #footer { 
    display:block;
    position:relative;
	top:0;
	left:0;
	background: #ffffff;
	width: 1008px; 
	height: 100px;
	font-size: 10px;
}
.twoColFixLtHdr #footer #footer-rule {
    margin: 0 90px 0 135px;
	background-image: url(../images/horiz-repeat-bar2.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height:10px;
}
.twoColFixLtHdr #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-size:10px;
}
.twoColFixLtHdr #footer div#footer-nav {  
    position:absolute;
	top:0;
	left:0;
}
.twoColFixLtHdr #footer div#footer-nav ul#footer-nav-content-upper { /* width plus padding gives the actual width */
    float:left;
    margin: 0;
	padding: 15px 0 0 153px;
	width: 858px;
}
.twoColFixLtHdr #footer div#footer-nav ul#footer-nav-content-upper li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.twoColFixLtHdr #footer div#footer-nav ul#footer-nav-content-lower {  /* width plus padding gives the actual width */
	float:left;
	margin: 0;
	padding: 10px 0 10px 153px;
	width: 858px;
}
.twoColFixLtHdr #footer div#footer-nav ul#footer-nav-content-lower li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.twoColFixLtHdr #footer div#footer-nav ul li a:link {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.twoColFixLtHdr #footer div#footer-nav ul li a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.twoColFixLtHdr #footer div#footer-nav ul li a:hover {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.twoColFixLtHdr #footer div#copy {  
    position:absolute;
    top: 40px;
	left: 153px;
	color:#00559D;  /* blue */
	padding-top: 10px;
}
.twoColFixLtHdr #footer div#copy span#credit {
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 0px;
}
.twoColFixLtHdr #footer div#copy span#credit a:link {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.twoColFixLtHdr #footer div#copy span#credit a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.twoColFixLtHdr #footer div#copy span#credit a:hover {
	color:#00559D;  /* blue */
	text-decoration: none;
}

.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;
}



/* one column layout */

.oneColFixCtrHdr #container { 
	width: 1008px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px 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. */
} 
.oneColFixCtrHdr #header { 
    display:block;
    position:relative;
	top:0;
	left:0;
	background: #ffffff;
	width: 1008px; 
	height: 534px;
} 
.oneColFixCtrHdr #header #nav-container {
    position:relative;
	top: 0;
	left: 0;
	width: 1008px;
	height: 374px;
	vertical-align: top;
}
.oneColFixCtrHdr #header #nav-container #left-nav {
	display:block;
	position:relative;
	top: 0;
	left: 0;
	width: 360px;
	height: 374px;
	vertical-align: top;
}
.oneColFixCtrHdr #header #nav-container #center-pic {
	position:absolute;
	top: 0;
	left: 360px;
	width: 330px;
	height: 374px;
	vertical-align: top;
}
.oneColFixCtrHdr #header #nav-container #right-nav {
	display:block;
	position:absolute;
	top: 0;
	left: 690px;
	width: 318px;
	height: 374px;
	vertical-align: top;
}

.oneColFixCtrHdr #container #content-container {  /* modified for ie7 */
	position: relative;
	top: -1px;
	left: 0;
	width: 1008px;
	background-image: url(../images/1-col-bg-for-type.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;	
}

.oneColFixCtrHdr #container #content-container #mainContent {  /* modified for ie7 */ /* total width of mainContent is 330px which is defined by the left and right margins */
	margin: 0px 90px 0 135px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 15px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.oneColFixCtrHdr #container #content-container #mainContent h1 {
    font-size:16px;
}
.oneColFixCtrHdr #container #content-container #mainContent h2 {
    font-size:14px;
}
.oneColFixCtrHdr #container #content-container #mainContent h3 {
    font-size:12px;
}
.oneColFixCtrHdr #container #content-container #mainContent h3 a:link{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.oneColFixCtrHdr #container #content-container #mainContent h3 a:visited{
    color:#00559D;  /* blue */
	text-decoration: none;
}
.oneColFixCtrHdr #container #content-container #mainContent h3 a:hover{
	color:#ff9900; /* gold */
	text-decoration: none;
}

.oneColFixCtrHdr #container #content-container #mainContent p {
    font-size:12px;
}

.oneColFixCtrHdr #container #content-container #mainContent ul { 
    margin: 0;
	padding: 0 0 0 15px;
	text-indent: 0px;
}
.oneColFixCtrHdr #container #content-container #mainContent ul li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.oneColFixCtrHdr #container #content-container #mainContent ol {  
    margin: 0;
	padding: 0 0 0 18px;
	text-indent: 0px;
}
.oneColFixCtrHdr #container #content-container #mainContent ol li { 
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	font-size:12px;
}

.oneColFixCtrHdr #container #content-container #mainContent img.right{ 
	float:right;
	margin: 0 5px 10px 10px;
	border: 1px solid #00559D;  /* blue */
} 
.oneColFixCtrHdr #container #content-container #mainContent img.left{ 
	float:left;
	margin: 0 10px 10px 0;
	border: 1px solid #00559D;  /* blue */
}

.oneColFixCtrHdr #footer { 
    display:block;
    position:relative;
	top:0;
	left:0;
	background: #ffffff;
	width: 1008px; 
	height: 100px;
	font-size: 10px;
}
.oneColFixCtrHdr #footer #footer-rule {
    margin: 0 90px 0 135px;
	background-image: url(../images/horiz-repeat-bar2.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height:10px;
}
.oneColFixCtrHdr #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-size:10px;
}
.oneColFixCtrHdr #footer div#footer-nav {  
    position:absolute;
	top:0;
	left:0;
}
.oneColFixCtrHdr #footer div#footer-nav ul#footer-nav-content-upper { /* width plus padding gives the actual width */
    float:left;
    margin: 0;
	padding: 15px 0 0 153px;
	width: 858px;
}
.oneColFixCtrHdr #footer div#footer-nav ul#footer-nav-content-upper li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.oneColFixCtrHdr #footer div#footer-nav ul#footer-nav-content-lower {  /* width plus padding gives the actual width */
	float:left;
	margin: 0;
	padding: 10px 0 10px 153px;
	width: 858px;
}
.oneColFixCtrHdr #footer div#footer-nav ul#footer-nav-content-lower li {
	list-style-type: none;
	float:left;
	margin-right: 12px;
}
.oneColFixCtrHdr #footer div#footer-nav ul li a:link {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.oneColFixCtrHdr #footer div#footer-nav ul li a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.oneColFixCtrHdr #footer div#footer-nav ul li a:hover {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.oneColFixCtrHdr #footer div#copy {  
    position:absolute;
    top: 40px;
	left: 153px;
	color:#00559D;  /* blue */
	padding-top: 10px;
}
.oneColFixCtrHdr #footer div#copy span#credit {
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 0px;
}
.oneColFixCtrHdr #footer div#copy span#credit a:link {
	color:#ff9900; /* gold */
	text-decoration: none;
}
.oneColFixCtrHdr #footer div#copy span#credit a:visited {
	color:#00559D;  /* blue */
	text-decoration: none;
}
.oneColFixCtrHdr #footer div#copy span#credit a:hover {
	color:#00559D;  /* blue */
	text-decoration: none;
}

.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;
}

/* contact form */	
legend {
    color:#00559D;  /* blue */
}
fieldset {   /* exception for ie6 and ie7 */

}

.twoColFixLtHdr #container #content-container #mainContent #content table {
    margin: 0 0 0 7px;
	width: 100%;
}

.sectionLabels {
    text-align: left;
	font-size: 12px;
}

.formLabels {
    text-align: right;
	font-size: 12px;
}
label {
	font-size: 12px;
}

.formLabels-checkbox {
	text-align: left;
	font-size: 12px;
	padding-right: 50px;	
}

.formInput {
    color: #333333;
	padding-top: 2px;
	padding-left: 3px;
	font-size: 12px;
	background-color: #ffff99;	/* yellow */
}
.formInputLists {
    color: #333333;
	width: 25px;
	background-color: #ffff99;	/* yellow */
}
textarea {
	font-size: 12px;
}

.color {
	background-color: #ffff99;; /* yellow */
	padding-top: 2px;
	padding-left: 3px;
	font-size: 12px;
}
