/*
 * Javascript MenuH
 *
 */
#JSMenuH {	
	position: absolute;                      /* ContentFirst is set so we position this abs  */
	left: 11em;                               /* Position in EM, so the design scales         */ 
	top: 9em;                                /* a little above the work area (at 8em)        */
	white-space: nowrap;                     /*                                              */
	background-color: white;
}
#JSMenuH A.JSMenuHItem {
	display: block;                          /* Items are blocks to allow better layout      */
	float: left;                             /* stack horizontally                           */ 
	border: none;                            /*                                              */
	padding: 0em;                            /*                                              */ 
	margin: 0em;                             /*                                              */ 
   color: grey;                             /*                                              */ 
	text-decoration: none;	                 /*                                              */  
   margin-left: 0em;                        /* Margins set in EMs to make sure menu scales  */
	margin-right: 1em;                       /*  properly in different browsers              */
}
#JSMenuH A.JSMenuHItem:hover {
	color: black;                            /* Highlights hovered item                      */  
	text-decoration: underline;              /*                                              */  
}
#JSMenuH A.JSMenuHSelected {
	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: 20px;                      /*                                              */  
	font-weight: bolder;                     /* and bolder                                   */  
}
#JSMenuH A.JSMenuHSelected:hover {
	text-decoration: underline;              /* Consistant with the unselected item          */
}
#JSMenuH SPAN.Break {
   display: inline;                         /* Does not display break character in IE or    */
   float: left;                             /*  Firefox. Could stand more looking at.       */ 
}