/* CSS DEFINITIONEN FÜR DropMenu SNIPPET UM UNTEREBENEN EIN/AUSZUBLENDEN */
/* http://modxcms.com/forums/index.php/topic,3682.0.html */
/* Modifiziert nach  "Eric Meyer's Simple Separators" */

#menu { margin-top:45px; padding-top:0; }

#menu ul.topnav {
}

#menu  li {
list-style-type:square;
padding: 0.25em;
}

#menu  li a { text-decoration: none; }

/* color & style for root level active folder
-----------------------------------------------*/
#menu li.here, #menu li.here a { /* this sets the color of the active menu parent. */
	color:#C10000;
	text-decoration: none;
}

/*  turn off level 2 folders (sub menu items) */
.subdiv ul {
    display: none;
}

/* show the items in the level 2 folder path when you are there*/
li.here .subdiv ul {
   display: block;
   margin:0 0 0 20px;
   padding-left:0;
}

/* color & Style for level 2 active folder
-----------------------------------------------*/
.subdiv ul li a {/* An item in the 2nd level list, not currently selected */
	color:#000 !important; 
	text-decoration: none;
	/* these items are black in the 2nd level list */
}

.subdiv ul li.here a { /* The ACTIVE item in the 2nd level list */
	color:#C10000 !important;
	text-decoration: none;
	/* these items are orange in the 2nd level list */
}

/*  turn off level 3 folders (sub menu items of sub menus) */
#menu ul li ul li ul li {
    display: none;
}

/* show the items in the level 3 folder path when you are there*/
#menu li.here ul li.here ul li {
   display: block;
   margin:0;
}
/* color & Style for level 3 active folder
-----------------------------------------------*/
#menu li.here li.here ul li a { /* An item in the 3rd level list, not currently selected */
	color:#000; 
	text-decoration: none;
	/* these items are black in the 3rd level list */
}
#menu li.here li.here li.here a { /* The ACTIVE item in the 3rd level list */
	color:#C10000; /* these items are orange in the 3rd level list */
}
