/*
ACCORDIAN MENU STYLES
*/

/* **************
    TOP MENU
*************** */
.arrowlistmenu{
	display:block;
	width: 180px;
	padding:210px 0 0 20px;
	margin:40px 0 0 0;
	background:url(/overkill_engineering_menu.gif) no-repeat top right;
	}

.arrowlistmenu .menuheader{ 
	font: 600 12px Arial;
	color: #fff;
	background: url(/menu_arrow.gif) no-repeat center left;
	text-transform: uppercase;
	padding: 1px 0 1px 10px;
	margin:5px 0;;
	cursor: hand;
	cursor: pointer;
	}
	
.arrowlistmenu a{
	font: bold 12px Arial;
	color: #FFF;
	display: block;
	padding: 1px 0 1px 10px;
	margin:5px 0;
	text-decoration: none;
	}
.arrowlistmenu a:visited{
	color: #FFF;
	}
.arrowlistmenu a:hover{ 
	color: #AAA;
	}
	
.arrowlistmenu .openheader{ /*TOP MENU ACTIVE*/
	background-image: url(/menu_arrow_down.gif);
	}
	
	
/* **************
    SUB MENU
*************** */

.arrowlistmenu ul{
	list-style-type: none;
	margin: 0 0 5px 0;
	padding: 0;
	}

.arrowlistmenu ul li{
	padding-bottom: 2px; /*bottom spacing between menu items*/
	}

/* sub0 */
.arrowlistmenu ul li .sub0menuheader{ /*CSS for Sub Menu HEADER*/
	background: url(/menu_arrow.gif) no-repeat center left; /*custom bullet list image*/
	color: #fff;
	font: bold 11px Arial;
	padding: 1px 0 1px 10px; /*header text is indented 10px*/
	margin-left: 10px;
	cursor: hand;
	cursor: pointer;
	}
.arrowlistmenu ul li .sub0categoryitems{
	margin-left: 10px;
	}

/* sub1 */
.arrowlistmenu ul li .sub1menuheader{ /*CSS for Sub Sub Menu HEADER*/
	background: url(/menu_arrow.gif) no-repeat center left; /*custom bullet list image*/
	color: #fff;
	font: bold 11px Arial;
	padding: 1px 0 1px 10px; /*header text is indented 10px*/
	margin-left: 20px;
	cursor: hand;
	cursor: pointer;
	}
.arrowlistmenu ul li .sub1categoryitems{
	margin-left: 20px;
	}

/* sub1 */
.arrowlistmenu ul li .sub2menuheader{ /*CSS for Sub Sub Menu HEADER*/
	background: url(/menu_arrow.gif) no-repeat center left; /*custom bullet list image*/
	color: #fff;
	font: bold 11px Arial;
	padding: 1px 0 1px 10px; /*header text is indented 10px*/
	margin-left: 20px;
	cursor: hand;
	cursor: pointer;
	}
.arrowlistmenu ul li .sub2categoryitems{
	margin-left: 20px;
	}

/* DEFINE TOP LEVEL LINKS */
.arrowlistmenu ul li a{
	color: #AAA;
	display: block;
	padding: 1px 0 1px 10px;
	margin: 0 0 0 10px;
	text-decoration: none;
	font-weight: bold;
	font-size: 11px;
	}
.arrowlistmenu ul li a:visited{
	color: #AAA;
	}
.arrowlistmenu ul li a:hover{ 
	color: #FFF;
	}

/* */
.arrowlistmenu ul li .openheader{ /*SUB MENU ACTIVE*/
	background-image: url(/menu_arrow_down.gif);
	}
	
