/* CSS for menu */
/**** start ****/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav a {
	display: block;
	text-decoration:none;
	color:#C5E0EB;
	/*width: 10em; this is replaced by #nav_weddings, etc below */
}
#nav a:hover {
	text-decoration:none;
}
#nav li { /* all list items */
	float: left;
	text-align:left;
	/*width: 10em; /* width needed or else Opera goes nuts */
}
#nav li ul { /* second-level lists */
	position: absolute;
	background: #423026;
	width: 10em;
	padding:3px;
	line-height:1.4em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 10em;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/**** end ****/
#nav_weddings, #nav_landscapes, #nav_business {display:block; postion:relative; width:105px; height:23px; top:0px;}
#nav_weddings {left:0px; text-indent:-9999px; background:url('images/nav.jpg') 0px 0px #423026;}
	#nav_weddings:hover {background-position:0px -23px;}
		#weddings_sub li {width:120px; background:#423026;}
		#weddings_sub li:hover {background:#725746;}

#nav_landscapes {left:105px; text-indent:-9999px; background:url('images/nav.jpg') -105px 0px  #423026;}
	#nav_landscapes:hover {background-position:-105px -23px;}
		#landscapes_sub li {width:150px; background:#423026;}
		#landscapes_sub li:hover {background:#725746;}
	
#nav_business {left:210px; text-indent:-9999px; background:url('images/nav.jpg') -210px 0px  #423026;}
	#nav_business:hover {background-position:-210px -23px;}
		#business_sub li {width:100px; background:#423026;}
		#business_sub li:hover {background:#725746;}
	