<ul>
  <ul>
    <ul>
      <li>/* this first section sets the background color....thats the color surround OUTSIDE</li>
      <li>your main table. The same with the fonts, this applies only to any text you place outside the</li>
      <li>main content table. Which will probably be nothing. The max-width is for Firefox, to let it know how wide you</li>
      <li>want your page to be. This will be the maximum width of your main content table.</li>
      <li>If you set it to perhaps 1050px, and view it on a 1024x768 monitor, it will appear full width. But to someone </li>
      <li>viewing on a 1200x1024 monitor, it will appear as 1050 wide, with your choice of a colored background either</li>
       <li>side, taking up the extra 150px. (75px each side)*/</li>
      
      <li>body {</li>
      <li>max-width: 1050px;</li>
      <li>background-color:#ffffff; </li>
      <li>font-family: Trebuchet MS, Arial, Verdana,  sans-serif;</li>
      <li>font-size: 93%; /*leave this...it sets the overall size of your fonts.*/</li>
      <li>color: #000;</li>
      <li>margin:auto;</li>
      <li>padding:0;</li>
      <li>text-align:center;</li>
      <li>}</li>
      
      <li>/* </li>
      <li>Notice the width:expression part? That's for internet explorer, which doesnt understand max-width commands.</li>
      <li>So this works WITH the max-width at the top of this page. If you change that to say 1250px, change it here</li>
      <li>to 1250px as well. Otherwise Those using IE wont get the width constraint....their page would expand indefinitely.</li>
      <li>Firefox will ignore this part, and IE will ignore the max-width part....you need both of them.</li>
      <li>BUT DONT TOUCH THIS PART BELOW UNLESS YOU HAVE READ THE PDF THAT EXPLAINS HOW, AND YOU ARE SURE YOU UNDERSTAND IT!!*/</li>
      
      <li>.max-width {</li>
      <li>width:expression(document.body.clientWidth > 1052? "1050px": "auto" );</li>
      <li>}</li>
      
      <li>/*the font size is 100% of the body font setting So while it says 100%, that is actually 100% of 93%. No need to touch this if you dont want to */</li>
      <li>table {</li>
      <li>font-size:100%; /*leave this font size, change the individual cells below, if the default size isnt to your liking*/</li>
      <li>color:inherit;</li>
      <li>margin-top: 0px;</li>
      <li>margin-right: 0px;</li>
      <li>margin-bottom: 0px;</li>
      <li>margin-left: 0px;</li>
      <li>}</li>
      
      
      <li>/*class to set thinner horizontal rule. Change color if you like.*/</li>
      <li>hr{</li>
      <li>border: 0;</li>
      <li>color:inherit;</li>
      <li>background-color: #999;</li>
      <li>height: 1px;</li>
      <li>width: 80%;</li>
      <li>text-align: center;</li>
      <li>}</li>
      
      
      
      <li>/* this is a custom class for using graphics as bullets.  Upload a custom graphic to your </li>
      <li>graphics library in the usual way. Then replace my URL</li>
      <li>with your own. Note there are no speech marks around the URL Change center to top, if you want bullets to line up with the top line of yr text*/</li>
       
      <li>ul {</li>
      <li>list-style-type: none;</li>
      <li>padding-left: 0;</li>
      <li>margin-left: 10px;</li>
      <li>}</li>
       
      <li>li.custom {</li>
      <li>background: url(http://www.love-of-roses.com/images/bullet2.gif) left center no-repeat; </li>
      <li>padding-left: 20px;</li>
      <li>margin-bottom: 10px;</li>
      
       <li>}</li>
       
      <li>/* this area below is for your  Link-text and headings. You can change the font type and size, the color of each of them</li>
      <li>as well as the a:hover, which is the text for a link, once the pointer passes over it*/</li>
      
      <li>a { font-family: Trebuchet MS, Arial, Verdana, sans-serif; </li>
      <li>font-size: 100%; color: #6D80B3; </li>
      <li>text-decoration: underline;</li>
      <li>}</li>
      
      <li>a:hover { font-family: Trebuchet MS, Arial, Verdana, sans-serif;</li>
       <li>font-size: 100%; </li>
       <li>background-color: #21264B;</li>
       <li>color: #9CC6DA;</li>
       <li>}</li>
      
      
      <li>h1 { font-family: Trebuchet MS, Arial, Verdana, sans-serif; font-size: 150%;  color: #21264B; text-align:center;}</li>
      <li>h2 { font-family: Trebuchet MS, Arial, Verdana, sans-serif; font-size: 116%;  color: #21264B; text-align:center;}</li>
      <li>h3 { font-family: Trebuchet MS, Arial, Verdana, sans-serif; font-size: 108%;  color: #21264B; text-align:center;}</li>
      
      
      <li>/* Below, is the background colors for your table cells. originally, they were on the actual page, so why</li>
      <li>move them to the stylesheet? Well, if you decide to do a site-wide color scheme change, you now change here, </li>
      <li>rather than on every page. A big improvement. Also, the less styling on the page, the better.</li>
      
      <li>Suppose you prefer to have a tiled image rather than a solid color?</li>
      <li>Replace the background-color:#fff;  with this, and upload your image to the graphics library....</li>
      <li>background-image: </li>
      <li>url('http://www.your-site.com/images/your-image.gif');</li>
      <li>background-repeat: repeat; */</li>
      
      <li>td.logo {</li>
      <li>background-color:#fff;</li>
      <li>font-size: 86%; </li>
      <li>}</li>
      
      <li>td.headerbg {</li>
      <li>background-color:#fff;</li>
       <li>font-size: 93%; </li>
      <li>}</li>
      
      <li>td.spacerbg {</li>
      <li>background-color:#fff;</li>
       <li>font-size: 93%;  </li>
      <li>}</li>
      
      <li>td.contentbg {</li>
      <li>background-color:#fff;</li>
      <li>border-left: 1px solid #6D80B3;</li>
      <li>border-right: 1px solid  #6D80B3;</li>
      <li>border-top: 1px solid  #6D80B3;</li>
      <li>border-bottom: 1px solid  #6D80B3;</li>
      <li>font-size: 93%; </li>
      <li>color:inherit;</li>
      <li>padding:10px;</li>
      <li>}</li>
      
      <li>td.rightbg {</li>
      <li>font-family: Trebuchet MS, Arial, Verdana, sans-serif;</li>
      <li>font-size: 86%;</li>
      <li>color:inherit;</li>
      <li>background-color:#fff; </li>
      <li>padding:5px;</li>
      <li>}</li>
      
      <li>td.leftbg {</li>
      <li>font-size: 86%;</li>
      <li>color:inherit;</li>
      <li>margin-left: 5px;</li>
      <li>background-color:#fff;</li>
      <li>padding:5px; </li>
      <li>}</li>
      
      <li>td.footerbg {</li>
      <li>font-size: 86%;</li>
      <li>color:inherit;</li>
      <li>background-color:#fff;</li>
      <li>padding:5px; </li>
      <li>}</li>
      
      <li>/* This is for the heading background color....your H1, H2, and H3 tags*/</li>
      <li>.hbg{</li>
      <li>background-color:#fff; </li>
      <li>color:#000;</li>
      <li>width: auto;</li>
      
      <li>}</li>
      
      <li>.nbg{</li>
      <li>background-color:#fff; </li>
      <li>color:#6D80B3;</li>
      <li>width: auto;</li>
      
      <li>}
      
      
      <li>/* information below is to remove the link styling for anchor links.</li>
      <li>Just leave this as it is....it works fine, and shouldn't be modified */</li>
      <li>a.jumplink{</li>
      <li>text-decoration: none;</li>
      <li>font-size: 100%; </li>
      <li>background-color: transparent;</li>
      <li>color: #000;</li>
      <li>}</li>
      
      <li>a:hover.jumplink  {</li>
      <li>text-decoration: none;</li>
      <li>font-size: 100%; </li>
      <li>background-color: transparent;</li>
      <li>color: #000;</li>
      <li>} </li>
      .ExtraNav {
font-family: trebuchet ms, 'Lucida Sans Unicode', 'Lucida Grande', Verdana, Arial, sans-serif;
}

.ExtraNav ul {
list-style-type: none;
padding: 0;
}

.ExtraNav ul li {
display: inline;
background-color: transparent;
text-align: center;
}

.ExtraNav a:link {
color: black;
text-decoration: none;
text-align: center;
padding: 0 4px;
}

.ExtraNav a:visited {
color: purple;
text-decoration: none;
}

.ExtraNav a:hover {
color: red;
background-color: #99ccff;
text-decoration: underline;
}
#Footer .ExtraNav {
margin: 12px auto;
background-color: transparent;
font-size: 85%;
text-align: center;
position: relative;
}
    </ul>
  </ul>
</ul>
