/* Navigation menu.  */
#access{
	background:url("../images/bg-menu-2col-1deg.png") no-repeat; /* Image is tear strip that bg the toplevel menu */
	display:block;
	float:left;
	min-height:88px;
	margin:0px 0 0 0;  /* top32px ? ? ? */
	padding:0;
	width:708px;
}
/* Navigation menu - wide version. */
.attachment #access{
	background:url("../images/bg-menu-1col.png") no-repeat; /* Image is an elongated version of access */
	width:1000px;
}
#access ul{
	font:15px Verdana, Helvetica, Arial, sans-serif;
	list-style:none;
	margin:35px 0 0 15px;
/*
	margin:20px 0 0 15px;
Rotates the ul tag by 1 degree so it fits into the wonky tear strip 
	-webkit-transform:rotate(1deg);
	-moz-transform:rotate(1deg);
*/
}
#access li{
	float:left;
	position:relative;
}
#access a{
	color:#261a11;
	display:block;
	font-weight:bold;
	line-height:3;
	padding:0 13px 5px; /* 0 left13 5 0 */
	text-decoration:none;
}
#access ul ul{
	box-shadow: 5px 5px 5px #888888;
	display:none;
	float:left;
	position:absolute;
	top:25px;
	left:0;
	margin:20px 0 0 0px;
	-webkit-transform:none;
	-moz-transform:none;
	min-width:180px;
}
#access ul ul ul{
	left:100%;
	top:0;
	margin:-5px 0 0 -20px;

}
#access ul ul a{
	background:#e8e0c8;
	border:1px solid #dfce8c;
	color:#000;
	line-height:1;
	margin:0;
	padding:15px;
	min-width:180px;
	height:auto;
}

/* Top level li menu mouse hover */
#access li:hover > a{
	color:#d8471d;
	background:url("../images/menu-selected.gif") no-repeat;
}
#access ul ul li:hover > a{
	color:#d8471d;
	background:#e8e0c8;
	background-position:0 0;
}
#access ul ul a:hover{background:#d4cfc6;}
#access ul li:hover > ul{
	background:#e2dbd1;
	display:block;
}

/* Top level anchor tag which is the current selected page */
#access .current_page_item a{
	color:#d8471d;
	background:url("../images/menu-selected.gif") no-repeat;
}
#access li.current_page_item ul ul li a,
#access li.current_page_item ul li a{background:#e8e0c8;}
