/* ######################################################################################################
** # "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: transparent; /*#efefef #b8b8b8 url("gfx/shiny_buttons/background.gif") repeat-x center right*/;
    border-top: 0px  #ccc solid; 
    border-bottom: 0px /*#36a7e8*/ #ccc solid;
    line-height: 0px;
}

#suche {
    width: 45%;		/* Einfassen der Floats im IE */
    float:right;         /* Einfassen der Floats in allen anderen Browsern */
    background: #fff/*#b8b8b8 url("gfx/shiny_buttons/background.gif") repeat-x center right*/;
    border-top: 0px  #ccc solid; 
    border-bottom: 0px /*#36a7e8*/ #ccc solid;
    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: 10px;  /* Abstand des ersten Buttons vom linken Rand (-2 Pixel für 3D-Schatten) über basemod.css anpassen */

    /*border-left: 1px #aaa solid; 
    border-right: 1px #fff solid;*/
	 border-left: 1px #fff 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.1em;
    line-height: 1em;
    list-style-type: none;
    /*border-left: 1px #fff solid;
    border-right: 1px #aaa solid;*/
	 border-left: 1px #fff solid;
    border-right: 1px #fff solid;
}

#nav_main ul li a {
    display:block;
    width: auto;
    font-size: 1.0em;
    font-weight: bold;
    background: transparent;
    text-decoration: none;
    color: #666;
    margin: 0;
    padding: 0.5em 0.4em 0.5em 0.4em;
}

#nav_main ul li a:hover {
    /*background: #eee;*/
	 background: transparent;
    color: #0080FF;
    text-decoration: none;
}

#nav_main ul li#current { 
    /*border-left: 1px #444 solid; 
    border-right: 1px #888 solid;*/
	 border-left: 1px #fff solid;
    border-right: 1px #fff solid;
    background: transparent /*url("gfx/shiny_buttons/background_active.gif") repeat-x center right*/;	
}

#nav_main ul li#current a,
#nav_main ul li#current a:hover {
    /*color: #000;*/
	 color: #0080FF;
	 
    background: transparent;
    text-decoration: none;
}

}