/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : nav_shinybuttons.css
**  Funktion    : Formatierung der Hauptnavigation: Button-Navigation "Shiny Buttons"
**
*/

@media all
{

/* ######################################################################################################
** ### Hauptnavigation: "Shiny Buttons" von Dirk Jesse ##################################################
** ######################################################################################################
*/

#nav_main {
    width: 100%;		/* Einfassen der Floats im IE */
    float:left;         /* Einfassen der Floats in allen anderen Browsern */
    background: #b8b8b8 url("/images/checker.gif") repeat-x center right;
    border-top: 1px #ff0033 solid; 
    border-bottom: 1px #ff0033 solid;
	margin-bottom: 1em;
    line-height: 0px;
}

#nav_main ul {
    float:left;
    display:inline;		/* Fix für IE Doubled Float Margin Bug    */ 
    margin:0;			/* Standard-Listendefinition zurücksetzen */
    padding: 0;
    margin-left: 50px;  /* Abstand des ersten Buttons vom linken Rand (-2 Pixel für 3D-Schatten) über basemod.css anpassen */

    border-left: 1px #ff0033 solid; 
    border-right: 1px #fff solid;
}

#nav_main ul li {
    float: left;
    display:inline;     /* Fix für IE Doubled Float Margin Bug    */ 
    margin: 0;
    padding: 0;
    font-size: 1.0em;
    line-height: 1em;
    list-style-type: none;
    border-left: 1px #fff solid;
    border-right: 1px #ff0033 solid;
}

#nav_main ul li a,
#nav_main ul li span {
    display:block;
    width: auto;
    font-size: 1em;
    background: transparent;
    text-decoration: none;
    color: #000;
    margin: 0;
    padding: 0.5em 0.8em 0.5em 0.8em;
}

#nav_main ul li a:hover {
    background: #fff;
    color: #cc0033;
    text-decoration: none;
}

#nav_main ul li#current { 
    border-left: 1px #ccc solid; 
    border-right: 1px #cc0033 solid;
	background: #ff0033;
}

#nav_main ul li#current a,
#nav_main ul li#current span,
#nav_main ul li#current a:hover {
    color: #fff;	
    background: transparent;
    text-decoration: none;
}

}