/* CSS Document */
body {
	font-family:Arial, Helvetica, sans-serif;
	width: 780px;
	margin: auto;
	padding: auto;
	behavior: url(/csshover.htc);
}

/*  HORIZONTAL NAV BAR - STARTS */

#navAbout  {
	display: block;
	width:150px;
	height: auto;
	margin-left: 347px;
	position: absolute;
	margin-top: 159px;
}

#navSpecials { 
	display: block;
	width:150px;
	height: auto; 
	margin-left: 438Px; 
	position: absolute; 
	margin-top: 159px; 
}

#navBooking  { 
	display: block; 
	width:150px;
	height: auto; 
	margin-left: 530px; 
	position: absolute; 
	margin-top: 159px; 
}

#navContact  { 
	display: block; 
	width:150px;
	height: auto; 
	margin-left: 690px; 
	position: absolute; 
	margin-top: 159px; 
}


/* the horizontal menu starts here */
div#listmenu {
	/*width:116px;  makes the div full width */
	float:left;
	/*border-top:1px solid #069;	 draws line on top edge of div */
	/*border-bottom:1px solid #069;	  draws line on bottom edge of div */
	font-size:11px;	/* SET FONT-SIZE HERE */
	/*background-color:#CCF;  colors the div */
	margin-top:0px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
div#listmenu ul {
	margin:0px 0px 0px 0px;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
	padding: 2px 0px 2px 0px;
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	/*background-color:#698b6e; /*sets the background of the menu items */
	padding: 0px; 

	/*border-right:1px solid #069;  creates dividing lines between the li elements */
	}
div#listmenu li:first-child {
	/*border-left:1px solid #069; the first vertial line on the menu */
	}

div#listmenu li:hover { 
	/*background-color:#345439; /*sets the background of the menu items */
	padding:0px; 
	}
div#listmenu a {
	display:block;
	font-weight:bold;
	/*font-style:italic;*/
	padding:1px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#585254;	/* sets the type color */
	
	}
div#listmenu a:hover {
	color:#D37339;
	text-decoration:underline;
	}
	
	
/* the menu ends here */
/* the drop-down starts here */


div#listmenu ul li ul {
	margin:0;
	margin-top:-1px;
	padding:1px;
	background-color:#E8D59D;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:149px; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	/*border-right:0;  stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	/*left:-1px; /*aligns the drop exactly under the menu */
	border: 1px solid #785A1E;

	}
div#listmenu ul li ul li {
	width:100%;  /*makes the list items fill the list container (ul) */
	/*border-left:1px solid #069;   three sides of each drop-down item */
	border-bottom: 1px solid #785A1E;
	padding: 2px; 



	/*border-right:1px solid #069; */}

div#listmenu ul li ul li:hover {
	background-color:#D37339;
	padding: 2px
}


div#listmenu ul li ul li a:hover  {
	color:#ffffff;
}	

div#listmenu ul li ul li a {padding:1px .5em;}
div#listmenu ul li ul li:first-child {
	 /*border-top:1px solid #069;the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
/*body div#listmenu ul li ul li ul  {
	position:absolute; 
	visibility:hidden; /* same effect as display:none in this situation */
	/*top:-1px; */
/*	left:10em; */
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here*/
div#listmenu ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */


/* LEFT NAV BAR - START */
/* big fonts - start */
#leftNavBig ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-top:10px;
}
#leftNavBig li 
{ 
	margin: 0 0 0 0;
	padding: 0 0 0 0; 
}
#leftNavBig a
{
	display: block;
	color: #F1eBD3;
	background-color: #705223 ;
	width: 157px;
	padding: 2px 0px 2px 15px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:bold;
	margin: 0px;
	text-decoration: underline;
	border: 1px solid #705223;

}
#leftNavBig a:hover
{
	background-color: #F1eBD3;
	color: #705223;
	text-decoration:underline;
}
/* end big fonts */



#leftnav, #leftnav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 174px;
	}
	
	#leftnav li { /* all list items */
		position : relative;
		float : left;
		margin-bottom : -1px;
		width: 174px;

	}
	
	#leftnav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 174px;
		margin-top : -18px;
	}
	

	
	#leftnav li a {
		width: 147px;
		display : block;
		/*background-color: #705223 ;*/
		color : #F1eBD3;
		font-weight : bold;
		text-decoration : none;
		font-size:11px;
		padding: 1px 0px 1px 25px;
		border: 1px solid #705223;		
	}
	
	#leftnav li a:hover {
		color : #705223;
		background-color : #F1eBD3;
		text-decoration:underline;
	}

	#leftnav li ul li a {
	background-color:#705223;
	border-color:#a28e6b;
	border-left-style:solid;
	border-left-width:2px;
	width: 115px;
	padding: 1px 0px 1px 10px;
}


	#leftnav li:hover ul ul, #leftnav li:hover ul ul ul, #leftnav li.sfhover ul ul, #leftnav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#leftnav li:hover ul, #leftnav li li:hover ul, #leftnav li li li:hover ul, #leftnav li.sfhover ul, #leftnav li li.sfhover ul, #leftnav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	
