/*
 * Vertical Menu, with JavaScript, i.e. the drop down menu
 *
 *
 */
DIV.JSMenuV
{
   background: #FFDB4A;                /* A little lighter than standard MAB Orange */
	border: 1px solid black;                 /* Strong border on drop down menu           */
	padding: 0em;                            /* Explicitly set for browser compat.        */
   visibility: hidden;                      /* Visibility is initially switched off and  */
   position: absolute;                      /* position to top left (0,0) because this   */
   top: 0px;                                /* div is finally positioned with Javascript */
   left: 0px;                               /* after a JSMenuH is selected               */
}
DIV.JSMenuV A.JSMenuVItem
{
    color: gray;                            /* With hover, highlights the selection      */           
    display: block;                         /* This gives a vertical layout              */
    padding-left: 1em;                      /* Padding around each item is useful for    */
    padding-bottom: 0.2em;                  /* properly laying out each item.            */
    padding-right: 1em;                     /*                                           */
    padding-top: 0.2em;                     /*                                           */
    text-decoration: none;                  /* We'll make active links underline         */
    white-space: nowrap;                    /* Don't wrap whitespace                     */
}
DIV.JSMenuV A.JSMenuVItem:hover
{
    color: black;                           /* Make the current hovered item stand out   */
    text-decoration: underline;             /* from the other items                      */ 
}
DIV.JSMenuV DIV.JSMenuVSep
{
    border-top: 1px solid black;            /* A menu separator line                     */
}
DIV.JSMenuV SPAN.Break {
	 height: 0px;                            /* This is the same as the class settings    */
	 left: 0px;                              /* for Invisible. Basically, we don't want   */
	 overflow: hidden;                       /* to see the break characters when we are   */
    position: absolute;                     /* using CSS to control layout               */
	 top: 0px;                               /*                                           */
	 width: 0px;                             /*                                           */
    visibility: hidden;                     /*                                           */
}
