.menu {
	display:table;
	padding:0;
	list-style-type:none;
	white-space:nowrap;
	border:0px solid #06a;

  }
* html .menu {
  display:inline-block;  /* for IE only */
  width:1px;             /* IE will expand to fit menu width */
  padding:0 2px;         /* fix bug in IE for border spacing */
  }  
.menu li {
  display:table-cell;    /* ignored by IE */
  }
* html .menu li {
  display:inline;        /* for IE only */
  }
.menu a, .menu a:visited {
  display:block;         /* for all browsers except IE */
  padding:2px 8px;
  color:#000; 
  background:#FFFDD7;
  border:1px solid #666666; /* add a 1px white border around items */ 
  	border-right-color:#666666;
	border-right-style: solid;
	border-right-width: 1px;
	border-left-color: #666666;
	border-left-style: solid;
	border-left-width: 1px;
	border-top-color: #666666;
	border-top-style: solid;
	border-top-width: 1px;
  
  text-decoration:none;
  }
* html .menu a, * html .menu a:visited {
  display:inline-block;  /* for IE only */ 
  margin:0 -2px;         /* to correct an IE border width bug */  
  }
.menu a:hover {
	color:#fff;
	background:#AC6D04;
  }

.centered {margin:0 auto;}

