/*
 * MenuH
 *
 */ 
#MenuH {	
	position: absolute;                      /* ContentFirst is set so we position this abs  */
	left: 10em;                              /* Position in EM, so the design scales         */ 
	top: 7em;                                /* a little above the work area (at 8em)        */
	white-space: nowrap;                     /*                                              */
   width: 40em;                             /* If we spec white-space we need a width       */
}
#MenuH A.MenuHItem {
	display: block;                          /* Items are blocks to allow better layout      */
	float: left;                             /* stack horizontally                           */ 
	border: none;                            /*                                              */
	padding: 0em;                            /*                                              */ 
	margin: 0em;                             /*                                              */ 
   color: gray;                             /*                                              */ 
	text-decoration: none;	                 /*                                              */  
   margin-left: 0em;                        /* Margins set in EMs to make sure menu scales  */
	margin-right: 1em;                       /*  properly in different browsers              */
}
#MenuH A.MenuHItem:hover {
	color: black;                            /* Highlights hovered item                      */  
	text-decoration: underline;              /*                                              */  
}
#MenuH A.MenuHSelected {
	display: block;                          /* Almost exactly the same as JSMenuItem        */  
	float: left;                             /*                                              */  
	border: none;                            /*                                              */  
	padding: 0em;                            /*                                              */  
	margin: 0em;                             /*                                              */    
	color: black;                            /* Except the selected item is black            */    
	text-decoration: none;	                 /*                                              */  
   margin-left: 0px;                        /*                                              */  
	margin-right: 1em;                       /*                                              */  
	font-weight: bolder;                     /* and bolder                                   */  
}
#MenuH A.MenuHSelected:hover {
	text-decoration: underline;              /* Consistant with the unselected item          */
}
#MenuH 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;                     /*                                           */
}