@charset "UTF-8";
/* CSS Document */
#nav {
	color: #402f1a;
	font-size: 12px;
	font-family: Arial, Helvetica, Geneva, SunSans-Regular, sans-serif;
	font-weight: bold;
	width:160px;  
	background-color: none;
}

/* begin Navigation button styles */

/* cancel out normal list styling so we can set button styles below */
#nav ul {
	list-style-type:none;
	margin:0px;
	padding:0px;
	text-indent:0px;
	background-color: none;
}
/* li items need height set separately from ul so li.nolink can be set to auto below */
#nav li {
	height:18px;
	line-height:18px;
}
/* need to set width of li to width of div minus padding-left (set below) */
#nav li {
	width:140px;
/*	border-bottom: 1px dotted grey;*/
}
/* width of indented items need to be reduced by indent amount */
#nav li ul li {
	width:140px;
}
/* style the category items to match first level list items */
#nav li.category {
	padding-left:40px;
	height:auto; /*must include to keep indented list from overlapping main list - duh */
	color:#000;
}
#nav ul li.category a {
margin-left: -40px;
/*border: 1px solid green;*/
}
/*IE needs xtra margin and padding set for the li */
* html #nav li ul li { 
	margin-left:-10px; 
	padding-left:10px;
}
/* end IE hack */

/* standard setup for rollover button links */
#nav li a,
#nav li ul li a {
color: #333;
	font-size: 11px;
	font-family: Arial, Helvetica, Geneva, SunSans-Regular, sans-serif;
	font-weight: bold;	
	text-decoration:none;
	display:block; /* makes full block clickable */
	height:100%;
	width:100%;
	padding-left:30px; /* sets left offset of non-indented items - use padding to make left margin clickable */
	/*border-top: 1px solid #fff;*/
}
#nav ul li.category ul li a {
	padding-left:0px; /* sets full indent for indented list items */
	font-weight: normal;
	margin-left: -40px;
	padding-left: 40px;
	width: 130px;
}
/* sets normal rollover colors */
#nav li a:link, 
#nav li a:visited {
color: #402f1a;
	background-color:none;
}
#nav li a:hover, 
#nav li a:active {
	color: #402f1a;
	background-color: #dda42e;
}
#nav ul li .down {
background-color: #e7d4a6;	
}
#nav ul li a .down.hover {
background-color: #e7d4a6;	
}
#nav ul li .closed {
display: none;	
}
.showSwitch {
	display: block;
}
.hideSwitch {
	display: none;
}



