@charset "utf-8";
body  {
	font: 100% Trebuchet MS, Verdana, Helvetica, sans-serif;
	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 */
	background: #0090d0;
}

.twoColFixLtHdr #container { 
	width: 900px;  /* using 20px less than a full 920px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #0090d0;
	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. */
} 
.twoColFixLtHdr #header { 
	background: #cadceb url(../Images/TreatOA_logo.gif) no-repeat; 
	padding: 0 10px 0 10px;  /* 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. */
	height: 142px;
	overflow-y:hidden;
	overflow-x:hidden; 
} 
.twoColFixLtHdr #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: 76px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: right;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100%;  /* 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: #cadceb; /*  the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 4px 0px 8px;
	margin-top: 0px;
}
	
	
.twoColFixLtHdr #mainContent { 
	margin: 0px 0px 0px 0px; /* 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: 0px 8px 0px 8px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #ffffff;
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e3e2df;
	margin-top: 0px;
	font-weight:bold; 
} 
.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 */
}
.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;
}
.smaller { /* the smaller font on a webpage */
	font-size: 80%;
}
.smallest { /* the smallest font on a webpage */
	font-size: 60%;
}

p {
	font-size: 0.875em;
	font-weight: normal;
}

.ul_c { /* collapsible list formatting */
	list-style: square;
	text-align: left;
	margin: 0;
	padding: 0;
	font-size: 1em;
}

.ul { /*list formatting */
	list-style: circle;
	text-align:left;
	margin: 0;
	padding: 0;
}

a.nov {
	color: #000000;
	text-decoration: none;
}

a.special {
	color: #CC3333;
	text-decoration: none;
}


a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #030888;
}

a {
	color: #0033CC;
	text-decoration: underline;
}

h1 {
	font-size: 1.6em;
	font-weight: bold;
	padding: 2px;
	margin-bottom: 10px;
	margin-top: 10px;
}

h2 {
	font-size: 1.1em;
	font-weight: bold;
	padding: 2px;
	margin-bottom: 10px;
	margin-top: 10px;
}

h3 {
	font-size: 1em;
	font-weight: bold;
}

h4 {
	font-size: 1em;
	color: #030888;
}
h5 {
	font-size: 1em;
	color: #FFFFFF;
}


div#buttonTOA {
margin-left: 14px;
}
div#buttonTOA ul {
margin: 0px;
padding: 0px;
line-height: 30px;
}
div#buttonTOA li {
list-style-type: none;
height: 30px;
width: 125px;
margin: 10px;
text-align:center;
}
div#buttonTOA li a {
text-decoration: none;
height: 100%;
width: 100%;
display: block;
background-color: #030886;
border-style: solid;
border-bottom-color: #010222;
border-right-color: #020555;
border-left-color: #3e42a2;
border-top-color: #6e71b9;
}
div#buttonTOA li a:link {
color: #FFFFFF;
font-weight: bold;
background-color: #030886;
border-style: solid;
border-bottom-color: #010222;
border-right-color: #020555;
border-left-color: #3e42a2;
border-top-color: #6e71b9;
}
div#buttonTOA li a:visited {
color: #FFFFFF;
font-weight: normal;
background-color: #030886;
border-style: solid;
border-bottom-color: #010222;
border-right-color: #020555;
border-left-color: #3e42a2;
border-top-color: #6e71b9;
}
div#buttonTOA li a:hover {
font-weight: bold;
color: #FFFFFF;
background-color: #002855;
border-style: solid;
border-bottom-color: #001227;
border-right-color: #001a36;
border-left-color: #193d66;
border-top-color: #637b97;
}
div#buttonTOA li a:active {
font-weight: bold;
color: #FFFFFF;
background-color: #002855;
border-style: solid;
border-bottom-color: #001227;
border-right-color: #001a36;
border-left-color: #193d66;
border-top-color: #637b97;
} 

#mainContent label {
	float: left;
	width: 150px;
	margin-right: 1em;
	text-align: right;
	padding: 0.2em;
	margin: 0;
}


/* Round corner styles ------------------------------------------------------------- */

.HeaderWrapper {
	margin: 6px 0px 0px 0px;
	width: 900px;
	float: left;
}

.HeaderBox {
	width: 100%;
	padding: 0px 0px 0px 0px;
}


.SidebarWrapper {
	margin: 6px 0px 0px 0px;
	width: 194px;
	float: left;
}

.SidebarBox {
	width: 100%;
	padding: 0px 0px 0px 0px;
	overflow-y:hidden;
	overflow-x:hidden;
}


.MenuBoxWrapper {
	margin-top: 4px;
	margin-bottom: 4px;
	margin-left: 5px;
	margin-right: 0px;
	width: 170px;
}

.MenuBox {
	width: 100%;
	padding: 0px 0px 0px 0px;
}


.MainContentWrapper {
	margin: 6px 0px 6px 0px;
	width: 698px;
	float: right;
}

.MainContentBox {
	width: 100%;
	padding: 0px 0px 0px 0px;
}



/* Rounded corners ------------------------------------------------------------- */

.roundcorners{display:block}
.roundcorners *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#FFFFFF}
.roundcorners1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #e0ebf3;
  border-right:1px solid #e0ebf3;
  background:#f1f6fa}
.roundcorners2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #cfdfed;
  border-right:1px solid #cfdfed;
  background:#f4f8fb}
.roundcorners3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #f4f8fb;
  border-right:1px solid #f4f8fb;}
.roundcorners4{
  border-left:1px solid #e0ebf3;
  border-right:1px solid #e0ebf3}
.roundcorners5{
  border-left:1px solid #f1f6fa;
  border-right:1px solid #f1f6fa}
.roundcornersfg{
  background:#FFFFFF;
  width:100%;
  overflow:auto;}

.roundcornersA{display:block}
.roundcornersA *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#CADCEB}
.roundcorners1A{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #56b0db;
  border-right:1px solid #56b0db;
  background:#97c9e4}
.roundcorners2A{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #1497d2;
  border-right:1px solid #1497d2;
  background:#a3cde5}
.roundcorners3A{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #a3cde5;
  border-right:1px solid #a3cde5;}
.roundcorners4A{
  border-left:1px solid #56b0db;
  border-right:1px solid #56b0db}
.roundcorners5{
  border-left:1px solid #97c9e4;
  border-right:1px solid #97c9e4}
.roundcornersfgA{
  background:#CADCEB;
  width:100%;
  overflow:auto;}
  
  .roundcornersB{display:block}
  .roundcornersB *{
    display:block;
    height:1px;
    overflow:hidden;
    font-size:.01em;
    background:#FFFFFF}
  .roundcorners1B{
    margin-left:3px;
    margin-right:3px;
    padding-left:1px;
    padding-right:1px;
    border-left:1px solid #6dbfe4;
    border-right:1px solid #6dbfe4;
    background:#bfe3f3}
  .roundcorners2B{
    margin-left:1px;
    margin-right:1px;
    padding-right:1px;
    padding-left:1px;
    border-left:1px solid #199bd4;
    border-right:1px solid #199bd4;
    background:#cee9f6}
  .roundcorners3B{
    margin-left:1px;
    margin-right:1px;
    border-left:1px solid #cee9f6;
    border-right:1px solid #cee9f6;}
  .roundcorners4B{
    border-left:1px solid #6dbfe4;
    border-right:1px solid #6dbfe4}
  .roundcorners5B{
    border-left:1px solid #bfe3f3;
    border-right:1px solid #bfe3f3}
  .roundcornersfgB{
    background:#FFFFFF;
    width:100%;
    overflow:auto;}
