/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)htmlis
available at http://www.cssplay.co.uk/menus/simple_vertical.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.

08.11.07 KH (flip-flop) Enhanced: Start[ID] {NAV_HORIZ_DD:ID}
http://www.phpwcms.de/forum/viewtopic.php?p=94688#94688
(http://www.phpwcms.de/forum/viewtopic.php?p=89743#89743)
=================================================================== */
/* Add a margin - for this demo only - and a relative position with a high z-index to make it appear over any element below */
/* margin hinzugefuegt - ausschließlich fuer diese demo - und ein "relative position" mit einem hohen z-index Wert um sicherzustellen dass das Menue ueber jedem nachfolgenden Element aufklappt. */

#menu_container {
   margin: 0;
   position: relative;
   width:100%;
   /* ORG 20px */
   z-index: 1000;
}
/* Get rid of the margin, padding and bullets in the unordered lists */
/* margin und padding auf 0, Aufzählungszeichen der unsortierten Liste unterdruecken */
#pmenu, #pmenu ul {
	margin:0;
	list-style-type: none;
	width:auto;
	padding: 0;
}
/* Set up the link size, color and borders */
#pmenu a, #pmenu a:visited {
	display:block;
	width:auto;
	font-size:19px;
	color:#fff;
	text-decoration:none;
	padding:8px 17px 0px 41px;
	font-family:bell; 
	font-weight:normal;
	background:url(../../images/ico-menu.png) no-repeat 18px 9px;
}


/* Set up the list items */

#pmenu li {
   float:left;
   display:block;
    width:auto;
}

/* Set up the sub level borders */
   #pmenu li ul li a{
   border-width: 0 1px 1px 1px;
   display:block;
   width:140px;
   text-align:left;
}


   #pmenu li ul li a:visited {
	border-width: 0 1px 1px 1px;
	display:block;
	width:140px;
	text-align:left;
}


/* For Non-IE browsers and IE7 */
#pmenu li:hover {
   position: relative;
}
/* Make the hovered list color persist */
/* Festlegen der Farbe fuer hover li */
#pmenu li:hover > a {
	color: #ffc;      /* ORG #c00; */
	background:url(../../images/hover-menu.png) no-repeat 18px 9px;
}


/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif (leer.gif) is for IE to work */
/* Einstellen der Unterebenenlisten mit einer absoluten Positionierung fuer die FlyOuts und dem "Ueberfahren-Abstand"
   Das transparente gif (leer.gif) ist fuer den IE gedacht */
#pmenu li ul {
   display: none;
}
/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
/* Fuer alle nicht-IE + IE7 wird die Unterebenenliste sichtbar bei einem Ueberfahren (hover) */
#pmenu li:hover > ul {
   display: block;
   position: absolute;
   top: -7px;         /* ORG -11px */
   left: 80px;
   padding:6px 30px 30px 30px; /* ORG padding: 10px */
   /*background:transparent url(../../img/article/leer.gif);*/
   width:140px;
   text-align:left;
}


/* Muda a cor do menu ativo e a fonte */
#pmenu li.act_path a{
	color: #ffc;      /* ORG #c00; */
	background:url(../../images/hover-menu.png) no-repeat 18px 9px;
}
