.navigation {
	height: 40px;
	background-image: url(../../images/nav-bg.gif);
	background-repeat: repeat-x;
	position: relative;
	
}

.navigation ul li {
	float: left;
	height: 20px;
}

.navigation ul li.home a {
	width: 50px;
	text-align: left;
	padding-left: 12px;
}

.navigation ul li.bedrooms a {
	width: 106px;	
}

.navigation ul li.special-offers a {
	width: 143px;	
}

.navigation ul li.weddings a {
	width: 108px;	
}

.navigation ul li.meetings a {
	width: 167px;	
}

.navigation ul li.location a {
	width: 98px;	
}

.navigation ul li.contact a {
	width: 85px;	
}

.navigation ul li.last a {
	border: none;	
}

.navigation ul li a {
	color: #00346b;
	text-transform: uppercase;
	font-weight: bold;
	height: 19px;
	line-height: 19px;
	border-right: 1px solid #FFF;
	text-align: center;
	float: left;
	white-space: nowrap;
}

.navigation ul li:hover, .navigation ul li.selected  {
	color: #FFF;
	background-color: #0386c4;
	text-decoration: none;
}

.navigation ul li:hover a, .navigation ul li.selected a  {
	color: #FFF;
	text-decoration: none;
}

.navigation ul ul {
	position: absolute;
	left: 0;
	bottom: 1px;
	height: 19px;
	display: none;
	background-color: #0386c4;
	width: 775px;
	text-align: center;
}

.navigation ul li:hover ul, .navigation ul li.selected ul {
	display: block;
}

.navigation ul ul li {
	background: none !important;	
}

.navigation ul ul li a {
	color: #fff;
	height: 19px;
	line-height: 19px;
	border: none;
	padding: 0 12px;
	width: auto !important;
}

.navigation ul ul li a:hover {
	text-decoration: underline;	
}







.navigation ul li {
 float: left;
 height: 20px;
}
 
.navigation ul li a {
 color: #00346b;
 text-transform: uppercase;
 font-weight: bold;
 height: 19px;
 line-height: 19px;
 border-right: 1px solid #FFF;
 text-align: center;
 float: left;
 white-space: nowrap;
 padding: 0 4px;
 text-align: center;
}
 
and for the subnavigation to be centered:

.navigation ul ul li {
 background: none !important;
 display: inline-block;
 float: none !important;
}
 
.navigation ul ul {
 text-align: center;
}











