	.menu {
		display: table; /* ignored by IE */
		padding: 0;
		list-style-type: none;
		white-space: nowrap; /* keep text on one line */
		position: relative;
		left: 180px;
	}

	* 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 */
		color: #000;
		background: transparent; /*
		border-left: 1px solid White;
		border-bottom: 1px solid White;
	add a 1px white border around items */
		text-decoration: none;
		width: 105px;
		height: 15px;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 3px;
	}
	* 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:#B36B00;
		background: #FFE6BF;
	}

	.lefted {margin:0 auto 0 0;}
	.centered {margin:0 auto;	}
	.righted {margin:0 0 0 auto;}
