/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	height:40px;
	width:760px;
	margin:0px;
	padding:0px;
	font-family:Arial, Helvetica, sans-serif;
	
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

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 list items ---*/	
	display:block;
	padding:0px;
	margin:0px;
}

div#listmenu ul 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 list items ---*/	
	display:block;
	line-height:13px;
	text-align:center;
	padding-top:5px;
	padding-left:18px;
	padding-right:18px;
	border-right:1px solid #4e1607;
	height:35px;
}

div#listmenu ul li:hover
{
	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 list items ---*/	
	display:block;
	line-height:13px;
	text-align:center;
	height:35px;
	background-color:#eae7dd;
}

div#listmenu ul li a, div#listmenu ul li a:visited
{
	color:#4e1607;
	font-weight:normal;
	text-decoration:none;
	font-size:11px;
}

div#listmenu ul li a:hover, div#listmenu ul li a:hover
{
	color:#4e1607;
	font-weight:normal;
	text-decoration:none;
	font-size:11px;
}



/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#4e1607;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:0px;
	font-size:11px;
	font-weight:normal;
	text-align:left;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#4e1607;
	font-weight:normal;
	font-size:11px;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:40px;
	padding:0px;
	background-color:#eae7dd;
	z-index:99;
	text-align:left;
}


div#listmenu ul li ul.about
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:125px;
	padding:0px;
	margin-top:0px;
	
}

div#listmenu ul li ul.wedding
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top:0px;	
}

div#listmenu ul li ul.events
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top:0px;	
}

div#listmenu ul li ul.galas
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top:0px;	
}

div#listmenu ul li ul.contact
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:85px;
	padding:0px;
	margin-top:0px;	
}

div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	padding:4px;
	margin:0px;
	height:16px;
	background:none;
	background-image:none;
	background-color:#eae7dd;
	border-top:1px solid #d8d3b5;
}


div#listmenu ul li ul li:hover {
	background-color:#d8d3b5;
	padding:4px;
	height:16px;
}


/*---------------  FLY OUTS  -----------------*/


/*Left menu*/

body div#leftNav ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}
div#leftNav /*--- Menu List Container ---*/
{
	width:175px;
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px;
	margin:0px 0px 0px 0px;
	margin-top:25px;
}

div#leftNav ul
{
	margin:0px;
	padding:0px 0px;
	font-size:12px;
}

div#leftNav 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 list items ---*/
	padding:0px 0px 0px 0px ;
	margin:0px;
	width:175px;
	display:block;
	border-bottom:1px solid #b0a98f;
	padding-bottom:3px;
	padding-top:2px;
	text-align:right;
}


div#leftNav ul li a, div#leftNav ul li a:visited 
{
	display: block;
	margin:0px;
	text-decoration:none;
	color:#4e1607;
	font-weight:normal;
	padding-right:10px;
	background-color:none;
	font-size:11px;
	width:165px;
}

div#leftNav ul li a:hover, div#leftNav ul li a:active	{
	
	color:#fff;
	text-decoration:none;
	font-weight:normal;
	padding-right:10px;
	font-size:11px;
	width:165px;
	background-color:#4e1607;
}


div#leftNav ul li:hover ul
{
	display:block; /*--- Displays appropriate drop down menu ---*/
}



