/* 
Webauftritt HTL-Imst
	Version: 4
	Änderungen: Stefan Walch, Mario Hieber, Andreas Schmid
	Letzte Änderung: 06.01.2009

	Inhalt: Drop Down Navigation
*/

/*
Farben
	Hellgrau: #DCDCDC rgb(220,220,220)
	Blau: #0066CC rgb(0,102,204)
	Orange: #FF6600 rgb(255,102,0)
*/

#vpnavigation, #vpnavigation ul /* alle Listen */
{
	position: relative; 
	float: none; 
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
}

#vpnavigation ul /* alle Listen */
{
	margin-top: -0.05em;
}

#vpnavigation a 
{
	display: block;
	width: 14em;
	color: white;
}

#vpnavigation a:hover /*hover dazu */
{
	color: white;
}

#vpnavigation li /* alle Listenelemente */
{
	float: left;
	width: 14em;
	text-align: center;
}

#vpnavigation li ul /* Listen 2. Ebene */
{
	position: absolute;
	width: 14em;
	left: -999em; /* durch "left" außerhalb des sichtbaren Bereichs wird das gleiche erreicht wie durch "display: none", kann aber auch von Textbrowser angezeigt werden */
	background: #DCDCDC;
	z-index: 1000;
}

#vpnavigation li ul a /* Listen 2. Ebene nur Linkfarbe */
{
	color: #0066CC;
}
#vpnavigation li ul a:hover
{
	color: #FF6600;
}

#vpnavigation li a.daddy /* Listenelemente 1. Ebene mit Unterpunkten */
{
	background: url(../images/dropdown.gif) center right no-repeat;
}

#vpnavigation li li a.daddy /* Listenelemente mit Unterpunkten */
{
	background: none;
}

#vpnavigation li ul ul /* Listen 3. Ebene und weiter */
{
	margin: -1.75em 0 0 13em;
	background: #DCDCDC;
	display: none;
}

#vpnavigation li:hover ul ul, #vpnavigation li.sfhover ul ul 
{
	left: -999em;
}

#vpnavigation li:hover ul, #vpnavigation li li:hover ul, #vpnavigation li.sfhover ul, #vpnavigation li li.sfhover ul /* Listen, die unterhalb von "gehoverten" Menüpunkte liegen */
{
	left: auto;
}

#vpnavigation li.activepath /* Listenelemente, die im aktiven Pfad liegen */
{
	/*font-style: italic!important;*/
}

#vpnavigation li#active /* Listen zur aktuellen Kategorie */
{
	/*font-style: italic!important;*/
}
#vpnavigation li.activepath ul /* Listenelemente, die im aktiven Pfad liegen */
{
	/*font-style: italic!important;*/
}

#vpnavigation li#active ul /* Listen zur aktuellen Kategorie */
{
	/*font-style: italic!important;*/
}

