/* CSS Document */ body  { font: 100%  Arial, 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 */ color: #000000; background-image: url(back.gif); } .thrColFixHdr #container {  width: 960px;  /* 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 */ border: 0px solid #000000; text-align: left; /* this overrides the text-align: center on the body element. */ background-image: url(side-back.gif); border: 1px solid #111B74; }  .thrColFixHdr #header { font: Verdana, Geneva, sans-serif; background: #fff;  padding: 0 10px 0 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. */ }  .thrColFixHdr #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 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ color: #242dc8; font-size:42px; font-weight:normal; } .thrColFixHdr #header p { 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: 0 0 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ font-size: 10px; } .thrColFixHdr #sidebar1 { float: left; /* since this element is floated, a width must be given */ width: 170px; /* 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 0px 0px 0px; /* padding keeps the content of the div away from the edges */ } .thrColFixHdr #sidebar2 { float: right; /* since this element is floated, a width must be given */ width: 170px; /* 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 0px 0px 0px; /* padding keeps the content of the div away from the edges */ } .thrColFixHdr #mainContent { margin-top: 10px; margin-right: 180px; margin-bottom: 0; margin-left: 180px; padding-top: 20px; padding-right: 5px; padding-bottom: 0; padding-left: 5px; }  .thrColFixHdr #footer {  border-top: 1px solid #111b74; margin: 10px 0 0 0; padding: 5px 2px 0px 2px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ background: #FFF; height:58px; }  .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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */ font-size: 8pt; } .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: 0px; } .floatrt { /* 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; text-align:right; } .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; } #topbuttons { height: 80px; padding: 0px 0px 0px 0px; } ul#s2Nav { margin: 0; padding: 0; list-style: none; width: 170px; font-family: Arial, Helvetica, sans-serif; color: #000000; font-size: 11px; } #s2Nav a { color: #000; border-bottom: 1px solid #111b74; border-left: 1px solid #111b74; display: block; background-color: #ebebeb; padding: 3px; } #s2Nav a:hover { text-decoration:none; background-color: #96cbff; color: #000; } /* IE Fixes */ /* remove annoying gaps */ #s2Nav li {	 display: inline;  } /* force hover on entire width of  link */ * html #s2Nav a { height: 1px; } .indentmenu{ padding: 0; font-weight:bold; font:Verdana, Geneva, sans-serif; width: 960px; /*leave this value as is in most cases*/ overflow: hidden; } .indentmenu ul{ margin: 8px 0 0 0; padding: 0 0 0 170px; float: left; width: 790px; border-top: 1px solid #000C6A; border-bottom: 1px solid #000C6A;  background: black url(butt-up.jpg) center center repeat-x; } .indentmenu ul li{ display: inline; } .indentmenu ul li a{ float: left; color: white; /*text color*/ font-size:13px; padding: 3px 15px; text-decoration: none; border-left: 1px solid #000C6A; } .indentmenu ul li a:visited{ color: white; } .indentmenu ul li a:hover, .indentmenu ul li .current{ color: white;  padding-top: 4px; padding-bottom: 2px; background: black url(butt-ov.jpg) center center repeat-x; } 
