/* Work around for centre menu  */
#navi {
	margin: 42px 0 0;
	overflow: hidden;
}
/* Default formatting */
#navi ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
#navi ul li {
	position: relative;
	float: left;
	height: 160px;
	z-index: 10;
}
#navi ul ul {
	position: absolute;
	z-index: 500;
}
#navi ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}
#navi ul li.last ul li {
	float: right;
	text-align: right;
}
div#navi ul ul,
div#navi ul li:hover ul ul,
div#navi ul ul li:hover ul ul {
	display: none;
}

div#navi ul li:hover ul,
div#navi ul ul li:hover ul,
div#navi ul ul ul li:hover ul {
	display: block;
}

/* Default menu item formatting */
#navi ul li a {
	height: 120px;
	padding: 0;
	display: block;
	margin: 0 12px;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
}
#navi ul li.about a {
	width: 53px;
	background: url('../images/menu-items.png') no-repeat 0 34px;
}
#navi ul li.facilities a {
	width: 69px;
	background: url('../images/menu-items.png') no-repeat -53px 34px;
}
#navi ul li.services a {
	width: 73px;
	background: url('../images/menu-items.png') no-repeat -122px 34px;
}
#navi ul li.location a {
	width: 83px;
	background: url('../images/menu-items.png') no-repeat -195px bottom;
}
#navi ul li.gallery a {
	width: 67px;
	background: url('../images/menu-items.png') no-repeat -278px bottom;
}
#navi ul li.contact a {
	width: 43px;
	background: url('../images/menu-items.png') no-repeat -345px 44px;
}

/* Hover formatting */
#navi ul li:hover a {
}
#navi ul li:hover {
}

/* Dropdown formatting */
#navi ul li ul li, #navi ul li ul li:hover ul li {
	background: red;
	width: 200px;
	height: 20px;
}
#navi ul li ul li a, #navi ul li ul li:hover ul li a {
	color: #FFF;
	padding: 0 12px;
}

/* Dropdown hover formatting */
#navi ul li ul li:hover, #navi ul li ul li ul li:hover {
	background: green;
}
#navi ul li.current_page_item {
	background: url('../images/up-arrow.png') no-repeat center bottom;
}