/* ================================================================ 
CSS MENU
=================================================================== 
sportmedizin-rot: #b01116
sportmedizin-orange: #f58220
sportmedizin-gelb: #fdb813
*/

#cssmenu {
    width: 700px;
    font-size:0.85em;
    position:relative;
    z-index:10000;
}

/* remove all the bullets, borders and padding from the default list styling */
#cssmenu ul {
    padding:0;
    margin:0;
    list-style-type:none;
}

#cssmenu ul ul {
    width:175px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

#cssmenu li {
    float:left;
    width:175px;
    position:relative;
}

/* style the links for the top level */
#cssmenu a, #cssmenu a:visited {
    display:block;
    font-family: Verdana;  
    font-size:11px;
    text-decoration:none; 
    color:#fff; 
    width:164px; 
    height:22px; 
    border:1px solid #fff; 
    border-width:1px 1px 0 0; 
    background:#b01116; /*rot*/
    padding-left:10px; 
    line-height:21px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #cssmenu a, * html #cssmenu a:visited {
    width:175px;
    w\idth:164px;
}

/* 2. Level */
#cssmenu ul ul a.drop, #cssmenu ul ul a.drop:visited {
background:#f58220 url(../../graphics/drop.gif) bottom right no-repeat;
}

/* 2. Level hover */
#cssmenu ul ul a.drop:hover
{
	background: url(../../graphics/drop.gif) #f58220 no-repeat right bottom;
	color: #000;
}

#cssmenu ul ul :hover > a.drop {
    background:#f58220 url(../../graphics/drop.gif) bottom right no-repeat;
    color: #000;
}

/* 3. Level */
#cssmenu ul ul ul a, #cssmenu ul ul ul a:visited {
    background:#fdb813;
}

/* 3. Level hover */
#cssmenu ul ul ul a:hover {
    background:#ffffff;
    color: #000; 
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#cssmenu ul ul {
    visibility:hidden;
    position:absolute;
    height:0;
    top:23px;
    left:0; 
    width:175px;
}

/* another hack for IE5.5 */
* html #cssmenu ul ul {
    top:23px;
    t\op:24px;
}

/* position the third level flyout menu */
#cssmenu ul ul ul{
    left:175px; 
    top:0;
    width:174px;
}

/* position the third level flyout menu for a left flyout */
#cssmenu ul ul ul.left {
    left:-174px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#cssmenu table {
        position:absolute; top:0; left:0;
}

/* style the second level links */
#cssmenu ul ul a, #cssmenu ul ul a:visited
{
	padding-right: 10px;
	padding-left: 10px;
	background: #f58220;
	padding-bottom: 5px;
	width: 154px;
	color: #000;
	line-height: 1em;
	padding-top: 5px;
	height: auto;
}

* html #cssmenu ul ul a{
    width:174px;
    w\idth:154px;
}

/* style the top level hover */
#cssmenu a:hover, #cssmenu ul ul a:hover
{
	background: #fdb813;
	color: #000;
}

#cssmenu :hover > a, #cssmenu ul ul :hover > a {
    color:#000;
    background:#fdb813;
}

/* make the second level visible when hover on first level list OR link */
#cssmenu ul li:hover ul,
#cssmenu ul a:hover ul{
    visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
#cssmenu ul :hover ul ul{
    visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#cssmenu ul :hover ul :hover ul{ 
    visibility:visible;
}