/* CSS Document */

/* Derived from Chapter 10.8 Creating Drop-Down Navigation Menus, Example 10-3 menus.css style sheet, 

	JavaScript & DHTML Cookbook by Danny Goodman Copyright 2003 O'Reilly & Associates. ISBN: 0-596-00467-2"

*/

 

.menuWrapper {

              position:absolute; 

              width:133px; 

              background-color:#C2D8C7; 

              visibility:hidden; 

              border-style:solid; 

              border-width:1px; 

              border-color:#333333 #333333 #333333 #333333;

              display:block;

              padding:3px; 

             }

.menuItem    {

              cursor:pointer; 

              font-size:12px; 

              font-family:Verdana, Arial, Helvetica, sans-serif; 

              border-bottom:1px solid #505050; 

              border-top:1px solid #FFFFDE;

              padding-left:10px; 

              color:black; 

              background-color:#D3E0C2; 

              text-decoration:none; 

              position:absolute; 

              left:0px; 

              width:130px; 

              height:1.4em;

              display:block;

              line-height:1.4em

             }

.menuItemOn  {

              cursor:pointer; 

              font-size:12px; 

              font-family:Verdana, Arial, Helvetica, sans-serif; 

              border-bottom:1px solid #505050; 

              border-top:1px solid #FFFFDE;

              padding-left:10px; 

              color:#005900; 

              background-color:#FFFFDE; 

              text-decoration:underline; 

              position:absolute; 

              left:0px; 

              width:130px; 

              height:1.4em;

              display:block;

              line-height:1.4em

             }


