.menu {
  padding:0; 
  margin:0; 
  list-style-type:none;
  white-space:nowrap;
  }
.menu li {
  float:left;
  min-width:100px;
  }
.menu a {
  position:relative;
  display:block; 
  text-decoration:none; 
  min-width:100px; 
  float:left; 
  }
* html .menu a {
  width:100px;
  }
.menu a span {
	display:block;
	color:#563B15;
	text-align:center;
	padding:4px 16px;
	cursor:pointer;
  }
* html .menu a span {
	width:100px;
	cursor:hand;
	w\idth:66px;
  }
.menu a b {
	display:block;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #563B15;
  }
.menu a em {
  display:none;
  }
.menu a:hover {
	background-color: #000;
  }
.menu a:hover span {
	color:#BBB;
  }
.menu a:hover em {
	display:block;
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-6px;
	border-top-width: 6px;
	border-right-width: 6px;
	border-bottom-width: 0;
	border-left-width: 6px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #563B15;
	border-right-color: #000;
	border-bottom-color: #563B15;
	border-left-color: #000;
  }
