/* Sukerfish CSS Document */

        /* For more information on these menus look up "Suckerfish Menus" */
        
        #nav {
            float: left;
            width: 900px;   /* width of nav bar*/
            list-style: none;
            line-height: 1;
            background: #FFF;
            padding: 0;
            font-size: 10pt;
            border: 0px solid purple;     /* main, sub, subsub,*/
                                        /*controls main, only*/
            margin: 0px 0px 0px 0px;
        }
        
        
        #nav ul {
            float: left;
            width: 900px;   /* width of nav bar*/
            list-style: none;
            line-height: 1;
            background: #D5ECC2; 
            padding: 0;
            border: 2px solid #69b340;     /* main, sub, subsub,*/
                                        /*controls main, only*/
            margin: 0px 0px 0px 0px;
        }
        
        #nav a {
                font-family:Verdana;
                display: block;
                width: 75px;    /* main level only*/
                w\idth: 80px;
                color: #5d9637;             /*all the text -- the hover stuff overrides this*/
                text-decoration: none;      /*main, sub, subsub,*/
                padding: 0px 0px 0px 0px;        /* T R B L*/
        }
        
        #nav li {
                color: #69b340;             /*all the text -- the hover stuff overrides this*/
                font-family:Verdana;
                font-weight: bold;
                float: left;
                padding: 0px;
                width: 75px;   /*controls main, only -- spacing between main menu items*/
        }
        
        /* 
        CK I added the following individual classes for each item to more tightly control
        the spacing since there is limited space for all these menu items 
        */
        
        #nav li.w110 {
                width: 110px;   
        }
		
        #nav li.w109 {
                width: 109px;   
        }
        #nav li.w108 {
                width: 108px;   
        }
        #nav li.w133 {
                width: 133px;   
        }
        
        #nav li.w113 {
        		width: 113px;
        }
              
      
        
        
        #nav li ul {
            position: absolute;
            left: -999em;
            height: auto;
            width: 200px;  /* box for subs */
            w\idth: 175px;
            border-width: 0.15em;   /* subs, subsubs */
            margin: 0px 0px 0px 0px;        /* T R B L*/
            text-align:left;
        }
        
        #nav li li {
            padding-right: 1em;
            width: 165px;
        }
        
        #nav li ul.left li {
        	margin-right: -15px;
        	text-align: right;
        }
        
        #nav li ul a  {
                font-family:Verdana;
                font-size: .95em;
                font-weight: 600;
                width: 180px;        /* subs and subsubs -- approx box width minus left padding*/
                w\idth: 175px;
                padding:2px;
        }
        
        #nav li ul ul {
            margin: -1.75em 0 0 14em;
        }
        
        #nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
            left: -999em;
        }
        
        #nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
            left: auto;
        }
       
        #nav li:hover ul.left, #nav li.sfhover ul.left {
        	left: auto;
        	margin-left: -73px;
        }
        
        #nav li:hover, #nav li.sfhover {
            background: #69b340;
                           /* hover background color for all menu blocks */
            
        }
        
        #nav a:hover {       /* CK added not part of original styles */
          
            color:#FFF;   /* hover text color for all menu blocks */
 
        }

   
