/* Vertical menu *//*

/* The wrapper determines the width of the menu elements */
#menuwrapper { 
   width: 100%; 
}

/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0 0 1px 0; /* makes secondaries same height as mains on hover */
   width: 85%; /*width of all items. % is % of sidebar width*/
   margin-left: -1px;
}
#primary-nav ul { 
   position: absolute; 
   top: 0; 
   left: 100%; 
   display: none; 
}
#primary-nav li { 
   margin-bottom: -1px; 
   position: relative; 
}


/* Styling the basic appearance of the menu elements */
#primary-nav a { 
   display: block; 
   margin: 0px; 
   padding: .25em 0.8em; 
/*   color: #006699;
   background: transparent;  moved to switch.css */
/*   font-size:90%; moved to layout sheet under div#sidebar */
   font-weight:bold;
   text-decoration: none; 
   border: 0;
   min-height:1em; /* Fixes IE7 whitespace bug*/ 
}

/* sets background for all items. BG for secondary items is changed below. */
#primary-nav li, #primary-nav li.menuparent { 
/*   background-color: #ececec; */
   min-height:1em; /* Fixes IE7 bug*/
}


