/* horizontal menu * /
/* changed line-height: 30px to 20px */
#menu { 
	line-height: 30px; 
	background: #d49248; 
	text-align: center;  
	margin: 0px 0 10px; /* change top margin from 10px to 0px */
	padding: 0; 
	z-index: 77; 
	width: 100%; /* 99% */ 
	height: 30px; 
	clear: both; 
	border: double 4px #ccc 
}

#menu ul {
	margin: 0 auto;

	padding:0;
	list-style: none;
}

#menu li {
	display: inline;
}
/* fs 1 to 0.6 */
/* padding 8px 12px to 4px 6px */
#menu a { 
  color: #fff;
   font-size: 0.9em; /* 1em */ 
   font-family: sans-serif;
   font-variant: small-caps;
   font-weight: 900;
   text-decoration: none;
   padding: 4px 4px;
   border: 0
}
#menu a:hover, 
#menu a:active,
#menu li.current_page_item a:link,
#menu li.current_page_item a:visited,
#menu li.current_page_item a:hover,
#menu li.current_page_item a:active
{
	background:#453322; / *456 */
	color:#fff;
	border:1;
}

