/* ================= */
li.normal { }

    /* Box model hack \*/
    * html #wrapper {
      width: 952px;
      w\idth: 952px;
      }
    /* */
    
    /* Box model hack \*/
    * html #wrapper {
      width: 952px;
      w\idth: 952px;
      }
    /* */
    
/*XXXXXXXXXXXX Primary top menusnav rules XXXXXXXXXXX*/
.menusnav 
{
     clear: both;
     float: left;
     width: 100%;
     position: absolute; bottom: 0px;
}
    
    .button 
    {
    	width: 130px;
    	height: 25px;
    	float: left;
        list-style: none;
    }
      
    .lastbutton {
    	width: 130px;
    	height: 25px;
    	float: left;
        font-size: 90%;
    	}

    .parent {position: relative;}
    /* this parent div does not provide "sticky hovering", but instead fixes a 
    strange bug in Op7. When an element serves as a hovered popup "parent" element, 
    that element must not also be floated or all heck breaks loose in Opera 7. 
    To prevent this, we have floated the top level list items, while nesting 
    hoverable parent divs inside that are then hovered to generate the dropdowns. 
    Thus the ugly (but interesting) Op7 bug is defeated. */
    	
    .floatfix {margin-right: -3px;}
    /* this fixes the IE 3px bug that is common in this type of float arrangement */ 
    
    /*XXXXXXXXXXXX Primary dropdown/flyout rules XXXXXXXXXXX*/
    
    .dropdown { /* rules for dropdown div */
    	width: 250px;
    	position: absolute;		
    	left: -3000px;
    	top: auto; /* puts dropdowns directly under top menusnav */
    	text-align: left; /* needed because IE misapplies text centering to boxes */	
    	}
    	
    .dropdown div {
    	width: 250px;
    	position: absolute;		
    	left: -3000px;
    	top: 0;  
    	text-align: left; /* needed because IE misapplies text centering to boxes */
    	}
    	
    /* The margins on the UL's replace the div paddings to create "sticky hovering"
    zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
    Unfortunately the BG fix is still needed, altho this method does eliminate
    possible box model problems */
    	
    .dropdown ul 
    { 
      width: 289px; /* tweaked so that dropdowns appear to "line up" with top links */
      margin: 0 30px 30px 30px; /* creates "sticky hovering" zones for dropdowns */
      border: 1px solid #750003; 
      } /* borders sides and top of the dropdowns and flyouts; links provide the bottom border */
    	
    .dropdown div ul {margin: 30px 30px 30px 0; border: 1px solid #347ca8;} /* creates "sticky hovering" zones for flyouts */
    	
    .four .dropdown ul {width: 290px;} /* modifies width for rightmost "visible" dropdown (tweak) */
    		
    .four .dropdown div ul {margin: 30px 0 30px 30px; position: relative;} /* rule reversal for "visible" right drop flyouts */
   
    /* .menusnav li { } */

    .menusnav a {
      display: block;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      /* padding: 5px 2px 5px 2px;  */
     /* padding: 2px; */
    }

    .four a {border-right: 0;} /* kills right border on last top link */
    	
    .boldbutton {
        font-weight: bold;
     }

    .menusnav ul ul a 
    { 
      font-weight: regular;
      text-align: left;
      border-right: 0; /* negates right border for dropdowns and flyouts */
    }
    	
    .menusnav ul a:hover 
    { 
      font-weight: regular;
      border-right: 0; /* negates right border for dropdowns and flyouts */
			text-decoration: underline;
    }
    	
    .dropdown li {
      position: relative; 
      vertical-align: bottom; /* IE5/win bugfix */
      border-bottom: 1px dashed #888888;
      }
    				
    .parent:hover {background-systemimages: url(systemimages/bgfix.gif);} 
    /* this hover calls a transparent GIF only to defeat the IE failed hover bug. Any 
    background change on hovering div.parent will make IE obey and display the dropdown.
    While the call itself will fix the bug, make sure you actually call a real systemimages 
    file so that your site error logs will not fill with failed systemimages calls. */
    				
    .parent:hover div.dropdown {left: -31px;} /* hover rule for dropdowns */ 
    /* extra pixel makes dropdowns "line up" with top links */ 
    
    .dropdown li:hover div { /* hover rule for flyouts */
    	left: 180px; /* this value controls the amount of flyout "overlap" */
    	top: -126px; /* this value controls the amount of flyout vertical offset */
    	}
    	
    .four li:hover div { /* reversed flyout rules for rightmost drop flyouts */
    	left: -210px; 
    	top: -26px;
    	}
    
    .menusnav div.mini-zone { /* special hover zone that covers the "danger corner" */
      padding: 0;
      width: 15px;
    	height: 15px;  
    	font-size: 1px;
    	left: -3000px;
    	bottom: -15px;
    	top: auto;	
    	}
    
    .menusnav .dropdown li:hover div.mini-zone { /* hover rule for mini-zones */
    	left: auto;
    	right: 8px;
    	top: auto;
    	}
    
    .menusnav .four li:hover div.mini-zone { /* reversed hover rule for rightmost drop mini-zones */
    	left: 8px;
    	}
   

    div.dropdown ul li a{ font-size: 75%; }


    /*XXXXXXXXXXX Primary dropdown backgrounds XXXXXXXXXX*/
    .one ul   { padding-left: 15px; }
    .two ul   { padding-left: 15px; }
    .three ul { padding-left: 15px; }
    .four ul  { padding-left: 15px; }

    /*XXXXXXXXXX z-index rules for top menusnav XXXXXXXXXXX*/
    .one {z-index: 10;}
    .two {z-index: 20;}
    .three {z-index: 30;}
    .four {z-index: 40;}
    .four:hover {z-index: 20;}

    div.aflyout ul { position: relative; bottom: 25px; }

    /* this last is a special trick that reverses the stacking order of the rightmost
    top link when it or its children are hovered. This, and the previous rules work
    together so that when a user is on the top link of any flyout, they can move 
    vertically to the top link directly above and not have the sticky hoivering zone
    on the flyout get in the way of hovering that top link. */
     
    /*XXXXXXXXXXX Special fixes XXXXXXXXXXX*/
    
    /* This is to hide the following from IE/Mac. \*/
    * html .button .dropdown li {
    height: 1%;
    margin-left: -16px;
    mar\gin-left: 0;
    }
    /* */
    
    * html .menusnav a
     {height: 1%;}
    
    /* The first 2 rules above fix "bullet region" problems in IE5.x/win, 
    and the 2nd is to make all links fully clickable. */    
    
    .brclear { /* Use a break with this class to clear float containers */
    clear:both;
    height:0;
    margin:0;
    font-size: 1px;
    line-height: 0;
    }
    
    /*\*/ /*/
    .menusnav .dropdown, .menusnav .dropdown div {width: 289px;}
    .menusnav .button .dropdown ul {margin: 0px;}
    .menusnav .dropdown, .menusnav .dropdown div {position: static;}
    .menusnav .dropdown ul {border: 0;}
    .mini-zone {display: none;}
    /* this rule block "dumbs down" the menusnav for IEmac */
    

.dropsy
{
 padding: 0; margin: 0 auto; list-style: none;  
}

.menulbl{
	margin-left: -10px;
}

ul.menulbl{
  list-style-type: none;
}

ul.body{
  list-style-type: square;
  margin-left: 4px;
  padding: 4px;
}


ul,ol{
  padding-left: 30px;
}

#subnav-col
{
 float: left; 
 width: 22%; 
 min-height: 40em;
 padding-top: 5px;
 padding-bottom: 5px;
 font-size: x-small;
}

a.sublistlink
{
      display: block;
      margin: 2px;
      padding-left: 8px; 
      padding-top: 5px; 
      padding-right: 5px; 
      padding-bottom: 5px; 
   /*   width: 17em; */
}

a.sublistlinklbl
{
      display: block;
      margin: 2px;
      padding-left: 0px; 
      padding-top: 5px; 
      padding-right: 5px; 
      padding-bottom: 5px; 
      /* width: 17em; */
      font-weight: bold;
}

a.chosenlink
{
      display: block;
      margin: 2px;
      padding-left: 8px; 
      padding-top: 5px; 
      padding-right: 5px; 
      padding-bottom: 5px; 
      font-weight: bold;
}

a.chosenlinklbl
{
      display: block;
      margin: 2px;
      padding-left: 0px; 
      padding-top: 5px; 
      padding-right: 5px; 
      padding-bottom: 5px; 
      font-weight: bold;
}

a.chosenlink:hover, .sublistlink:hover, .sublistlinklbl:hover
{
      display: block;
      margin: 2px;
}
