/* verticle menu bars */


/* take out default style, add new */
  div#navigation ul {
      list-style: none;
      margin: 0px;
      padding: 0px;
      position: absolute;
      border: 1px solid #000;
      border-bottom: none;
      background-color: #C8C8C8;
      width: 105px;
      font-size: 11px;
      font-family: Verdana, Arial, sans-serif;
   }

/* horiz lines below each main item */
   div#navigation ul.level1 li {
      position: relative;
      border-bottom: 1px solid #000;
   }


/* amount to shift right on hover  */
   div#navigation li.submenu:hover ul.level2 {
      display: block;
      left: 104px;
      top: 5px;
   }

/* kill drop down when not selected left out of example!!  */
   div#navigation ul ul {
      position: absolute;
      display: none;
      border-bottom: none;
   }



/* width of sub1 menu block when slected    */
   div#navigation ul#sub1 {
      width: 170px;
   }

/*  block size color for  all (<li> a)  */
/* padding = top right bot right */
   div#navigation li a {
      display: block;
      padding: 3px 0px 3px 3px;
      text-decoration: none;
      color:#00008b;
      font-weight:bold;
   }

/*  block size for  <li> duplicate of previous */
/* padding = top right bot right */
      div#navigation li  {
      display: block;
      padding: 3px 0px 3px 3px;
      text-decoration: none;
      color:#00008b;
      font-weight:bold;		
   }


/*  set where to wrap text in level one (a) */
   div#navigation ul.level1 a {
      width: 77px;   
   }

/* set where to wrap text in level two 3 less than width of block set above */
   div#navigation ul#sub1 a {
      width: 167px;
   }


/* flip color when mouse over li in first level */
 div#navigation li a:hover {
      color: #FFF;
      background-color: #00F;
   }

/* ----------------------------------*/

/* flip color when mouse over sub in first level */
 div#navigation li:hover {
      color: #FFF;
      background-color: #00F;
   }

/* padding = top right bot left */



div#mainText	{margin: 5px 5px 5px 110px;
	list-style-type: none;
	list-style: none;
        margin: 100px;
        padding: 10px;
        border: 1px solid #000;
        border-bottom: 1px solid #000;
        background-color: #000;
        text-decoration: none;
        font-size: 12px;
        font-family: Verdana, Arial, sans-serif;
                                  }


div#mainText UL{list-style-type: none}



#foot		{text-align:center;
		font-size:smaller;
		}
		
a		{text-decoration:none;
		color:#3179ac;
		font-weight:bold;
		display:block;
		}



