/*Overall rules*/

 
 .pad{padding: 5px;}
 
 /*Set base rules for <li>*/
 li{padding:0;margin:0;border-bottom: 1px dotted #666;}
 
 /*The outer <ul> has a border, which encompasses the entire menu*/
 ul{padding:0;margin:0;border: 0px solid #eee;}
 

 /*Rules for the top level of menu*/
 ul li{margin:2; padding:1; display:block; background: #fff; } 
 ul li a{display:block; color:#005E7F; font-size:12px; text-decoration:none; font-weight:bolder;}
 ul li a:hover{ background: #ddd;}
  
 /*Stop the second level from inheriting the border*/
 ul ul{border: none;} 
 
 /*Rules for the second menu level*/
 ul ul li{ background: #fff;}
 ul ul li a{padding-left: 10px; font-size:10px; color:#137A9F;} 
 ul ul li a:hover{background: #ddd;}
 ul ul li div.pad{color: red}
 
 /*Rules for the third level*/
 ul ul ul li{ background: #fff;}
 ul ul ul li a{padding-left: 10px; font-size:10px; color: #4DADCF;} 
 ul ul ul li a:hover{background: #ddd;}
 ul ul ul li div.pad{color: red}
 
 /*Rules for the fourth level*/
 ul ul ul li{ background: #fff;}
 ul ul ul li a{padding-left: 10px;} 
 ul ul ul li a:hover{background: #ddd;}
 ul ul ul li div.pad{color: red}
 
 /*Rules for the fifth level*/
 ul ul ul ul li{ background: #fff;}
 ul ul ul ul li a{padding-left: 10px;} 
 ul ul ul ul li a:hover{background: #ddd;}
 ul ul ul ul li div.pad{color: red}
 
 /*Rules for the sixth and subsequent levels*/
 ul ul ul ul ul li{ background: #fff;}
 ul ul ul ul ul li a{padding-left: 10px;} 
 ul ul ul ul ul li a:hover{background: #ddd;}
 ul ul ul ul ul li div.pad{color: red}
 
 li.hide ul{
    display: none;
 }
 li.show ul{
    display: visible;
 }
 
 #menuRoot{
  float:left;
  width:190px;
  margin-right:1em;
 }
 
 #content{
  float:left;
  width:50%;
 }
 
 s-body{font-size: 0.8em;font-family: Arial, Helvetica, Sans-Serif;}
 #content a{color: #fff;text-decoration: none;display:block;padding: 3px;}
 #content a:hover{text-decoration: underline;}
 
 
 #debug{
  clear:left;
 }

 #about{
  width:100%;
  margin-top:3em;
  float:left;
 }

 #about a{
  display: inline;
  font-weight: bold;
 }