﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the Menu control adapter is enabled. */
/* These rules correspond to the "pure CSS menu" technique that have been evolving over the past several years. */ 
/* See WhitePaper.aspx for details. */

* { margin: 0; padding: 0; }

ul.AspNet-Menu 
{
    position: relative;
    
    z-index:1;
  
   
   
    
}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;
     
    

}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
  
    
   
}

ul.AspNet-Menu li a:hover
{
    background-image:url('../Images/Fallschirmsprung.at-menubackground-hover1.png');  
  
    font-weight:bold;
   
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
    color:white;
   
    padding:0px 6px 0px 6px;
    border-right: solid 1px #2b2b2b;
    font-size:15px;
  line-height:30px;
    
}

ul.AspNet-Menu-Leaf li a
{
    font-size:12px;
    color:Black;
}


ul.AspNet-Menu ul
{
    position: absolute;
    display: none;    
     
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul ul,
ul.AspNet-Menu li:hover ul ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul ul
{
    display: none;
   
    
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul,
ul.AspNet-Menu li li:hover ul,
ul.AspNet-Menu li li li:hover ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li li.AspNet-Menu-Hover ul
{
    display: block;
   
 
}
.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a
{
    font-size:12px;
    left:10px;
    background-color:#37609a;
    border:none;
    width:150px;
    color:White;
    font-weight:lighter;
    border-bottom:dotted 1px white;
    border-left:solid 1px black;
    padding: 5px 5px 5px 5px;
    line-height:12px;
    
}
.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf  a:hover
{
    background-color:#ba0000;
    background-image:none;
    color:white;
    font-weight:lighter;
  
    
}



/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. This allows us to force the top tier of the menu to layout */
/* horizontally, whereas all subsequent tiers of the menu lay out vertically. */

.AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float: left;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: none;
}

