/* ================================================================ 
CSS MENU
=================================================================== 
sportmedizin-rot: #b01116
sportmedizin-orange: #f58220
sportmedizin-gelb: #fdb813
*/

#cssmenu {
   display:none;
}

/* remove all the bullets, borders and padding from the default list styling */
#cssmenu ul {
    display:none;

}

#cssmenu ul ul {
    display:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

#cssmenu li {
    display:none;
}

/* style the links for the top level */
#cssmenu a, #cssmenu a:visited {
    display:none;
}

/* 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 {
	display:none;
}

/* 2. Level hover */
#cssmenu ul ul a.drop:hover
{
	display:none;
}

#cssmenu ul ul :hover > a.drop {
   display:none;
}

/* 3. Level */
#cssmenu ul ul ul a, #cssmenu ul ul ul a:visited {
	display:none;
}

/* 3. Level hover */
#cssmenu ul ul ul a:hover {
	display:none;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#cssmenu ul ul {
	display:none;
}

/* another hack for IE5.5 */
* html #cssmenu ul ul {
    top:23px;
    t\op:24px;
}

/* position the third level flyout menu */
#cssmenu ul ul ul{
	display:none;
}

/* position the third level flyout menu for a left flyout */
#cssmenu ul ul ul.left {
	display:none;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#cssmenu table {
	display:none;
}

/* style the second level links */
#cssmenu ul ul a, #cssmenu ul ul a:visited
{
	display:none;
}

* html #cssmenu ul ul a{
    width:174px;
    w\idth:154px;
}

/* style the top level hover */
#cssmenu a:hover, #cssmenu ul ul a:hover
{
	display:none;
}

#cssmenu :hover > a, #cssmenu ul ul :hover > a {
	display:none;
}

/* make the second level visible when hover on first level list OR link */
#cssmenu ul li:hover ul,
#cssmenu ul a:hover ul{
	display:none;
}

/* keep the third level hidden when you hover on first level list OR link */
#cssmenu ul :hover ul ul{
	display:none;
}

/* make the third level visible when you hover over second level list OR link */
#cssmenu ul :hover ul :hover ul{ 
	display:none;
}