/* From: http://jquery.bassistance.de/accordion/ */

/* Outermost List */
#navigation {
	background:#FAB717 url(/images/bgrounds/left-menu.gif) repeat-y;
	width:100%;
}

/* All Inner Lists */
#navigation UL {
	text-indent:0px;
}

/* All List Items */
#navigation LI {
	list-style:none outside none; 
	list-style-type:none;
	display:block;
	width:100%;
	overflow:hidden;
}

/* Top-level Menu Items */
#navigation LI.top {
	margin-bottom:2px;
}

/* Default Links */
#navigation A {
	padding:1px 0 1px 0;
	display:block;
	width:100%;
	font-size:12px; 
	text-decoration:none;
	border:0px solid #F00;
}

#navigation A:hover {
	color:#000;
	background-color:#E66C24;
}

/* Submenu (Second-level) Items */
#navigation LI LI A {
	font-size:12px; 
	border-bottom:1px solid #FCB815;
}

#navigation LI LI A.last {
	border-bottom:none;
}

#navigation LI LI A:hover {
	color:#FFF;
	background-color:#E66C24;
}

/* Top-level Menu Categories */
#navigation A.head {
	height:22px;
	padding-top:7px;
	font-size:12px;
	background-color:#FAB717;
	font-weight:bold;
	text-transform:uppercase;
}

#navigation A.head:hover {
	background:transparent url(/images/bgrounds/left-menu-top-level-selected.gif) repeat-y;
	
}

/* Sub-categories within a main category */
#navigation A.subheading {
	font-weight:bold; 
	margin-top:10px; 
	text-transform:uppercase;
}

/* Currently Expanded Top-level Item */
#navigation A.selected {
	background:transparent url(/images/bgrounds/left-menu-top-level-selected.gif) repeat-y 0 0 ;
}

/* Currently Selected Menu (Sub)Item */
#navigation A.current {
	color:#FFF;
	background-color:#E66C24;
}

