body {
	/*behaviour: url(includes/csshover.htc);*/
}

div#nav-cat {

     margin-top: 5px;
	 padding-top: 10px;

     background-color: #444;

     width: 98%;

     margin-left: auto;

     margin-right: auto;

     font-weight: bold;

     font-size: 1em;
	 border-right: 4px solid #000;
	 border-top: 6px solid #9a9a9a;
}

div#nav-cat ul {

     margin: 0em; 

     padding: 0em; 

     width: 100%;  

     z-index: 1000;

     line-height: 20px;
     background-color: #990000;
}



div#nav-cat ul.level2 {background-color: #ffffff;}

div#nav-cat ul.level3 {background-color: #ffffff;}

div#nav-cat ul.level4 {background-color: #ffffff;}

div#nav-cat ul.level5 {background-color: #ffffff;}

div#nav-cat ul.level6 {background-color: #ffffff;}



div#nav-cat li {

     z-index: 1; 

     position: relative;

     list-style: none;

     margin: 0;

     text-align: left;
     padding-bottom: 4px;
		
     padding-left: 6px;

     background-color: #444;
	 border-bottom: 1px dotted #777;

/*Sets background of Menu items that DO NOT have sub-menu's SYSTEM WIDE!!! */

}



div#nav-cat li li {

    margin-left: 0em;/* This puts space between menu and sub-menu, recommend to leave at 0 unless you have over-lapping problems. */

    background-color: #444;

    padding-left: 6px;	

    font-size: 11px;

    color: #ff0000; text-align: left;    

 /* sets the background of submenu ,WITHOUT submenus, when menu is HOVERED */

}


div#nav-cat li:hover {background-color: #ED3432;/* red;*/} /* sets the HOVER background of any MENU item that DO NOT have submenu items */



div#nav-cat li.submenu {

	background-color: #444;

} 

/* sets the background of any menu items that DO have submenu items */



div#nav-cat li.submenu:hover {background-color: #ED3432;/* red;*/} /*sets the HOVER background of any menu item that DOES have submenu items */





div#nav-cat li a {background-color: transparent; /*<---This will set the background color of the WHOLE MENU, EVERY LEVEL, SYSTEM WIDE!!! If you want different colors, DON'T CHANGE THIS!!! */

    display: block;

    padding: 0.25em 0 0.3em 0;

    text-decoration: none; 

    width: 100%;

    color: #dedede;

    background-color: #444;
	font-size: 11px;

 /* sets the font color of the menu, SYSTEM WIDE!! In order to over-ride the font colors for the menu, and have different 

    colors for each level, such as font color changing when you hover, you need to remove any MENU colors  referred to in your

    stylesheet.css, as they over-ride this stylesheet! (includes/templates/YOUR_TEMPLATE/css/stylesheet.css) */

}



div#nav-cat li a:hover {

	color: #ffff00;

	background-color: #ED3432;/* #000088;*/

}

 

div#nav-cat ul ul {

    position: absolute; top: 0; left: 100%;

    display: none; z-index: 1000;

    border: 4px solid #990000;

    border-bottom: 1px solid #990000;

}



div#nav-cat ul.level1 li.submenu:hover ul.level2, 

div#nav-cat ul.level2 li.submenu:hover ul.level3,

div#nav-cat ul.level3 li.submenu:hover ul.level4,

div#nav-cat ul.level4 li.submenu:hover ul.level5,

div#nav-cat ul.level5 li.submenu:hover ul.level6 {

        display:block;

}

/*

div#nav-cat ul.level3 li.submenu:hover ul.level4 { height: 120px; width: 250px;}

*/