/*
 * Vertical menu
 *
 */
#MenuV P.MenuVItem {
   background-color: #535A95;
   border-bottom: 1px solid silver;
   border-left: 1px solid silver;
   color: white;
   margin: 0;
	margin-bottom: 0em;
	margin-top: 0em;
}
 
#MenuV P.Text {
   margin-top: 1em;
} 
#MenuV A.MenuVItem {
   color: gray;                             /* 'Pushes' the item back                       */
   display: block;                          /* So we use the box model                      */
	font-size: 1.1em;
	margin: 0em;                             /* Reset margins                                */
	margin-left: 0.25em;
   text-decoration: none;                   /*  hovered over.                               */
   white-space: normal;                     /* Wrap menu items                              */
}

#MenuV A.MenuVItem:hover {
	color: black;                            /* Menu items are 'brought forward' when they   */
   text-decoration: underline;              /*  they are hovered over.                      */
}
#MenuV A.MenuVSelected {
   color: black;                            /* Bring the link forward                       */  
   display: block;                          /* Rest all like MenuVItem                      */
	font-size: 1.1em;
	margin: 0em;                             /*                                              */
	margin-left: 0.25em;
   text-decoration: none;                   /* Except we bring this forward too             */
   white-space: normal;                     /*                                              */
 }
#MenuV A.MenuVSelected:hover {
	color: black;                            /* Menu items are 'brought forward' when they   */
   text-decoration: underline;              /*  they are hovered over.                      */
 }
#MenuV Div.MenuVSep {
 }
#MenuV 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;                     /*                                           */
}
