/* denne version er skrabet i forhold til den, der er taget fra bogen. 
Men den virker tilsyneladende godt nok. */




ul.horizontal, ul.horizontal li, ul.horizontal ul {
  list-style-type: none;  /* ellers kommer der bullets i Firefox og Opera */
  margin: 0;  /* undgår indryk i IE6, IE7, Firefox, Opera */
  padding: 0px;
}

/* kun den yderste ul: */
ul.horizontal {
  position: absolute;
  left: 235px; 
  top: 192px;  /* tager højde for margin-top på li'er */
  z-index: 2000;
}
/* alle li'er i hele træet: */
ul.horizontal li {
  float: left;
  margin-top: 3px;  /* måske fjernes igen? */
}
/* alle ul'er undtagen den yderste: */
ul.horizontal ul {
  z-index: 2020;
  position: absolute;
  left: -100em;
}
/* alle li'er undtagen på øverste niveau: */
ul.horizontal ul li {
  float: none;		/* nu skal de ikke mere ved siden af hinanden */
}

ul.horizontal a, ul.horizontal a:visited {  /* link mangler her sammenlignet med vertical.css */
  display: block;
  cursor: pointer;
  cursor: hand;
  padding: 4px;
  font-size: 0.75em; 
  font-weight: bold;
  width: 232px;
  letter-spacing: 0.1em; 
  text-decoration: none;
  margin-left: 10px;
}

/* a på niveau 2 overskrives */
ul.horizontal li li a, ul.horizontal li li a:visited {  
	font-size: 0.75em; 
	font-weight: normal;
}

ul.horizontal a:hover, 
ul.horizontal a:focus, 
ul.horizontal a:active,
ul.horizontal a.rollover:link, 
ul.horizontal a.rollover:visited {
	
}		




