/*_____________________________________________________________
|
|   Quelltext zum Buch "Workshop HTML5 & CSS3"
|   Verlag:     dpunkt.verlag GmbH
|   Copyright:  2012 Stephan Heller <heller@h5c3.de>
|   Lizenz:     GNU General Public License
|   Verwendung der Quelltexte ausdrücklich gestattet und gewünscht!
|   Weitere Quelltexte finden Sie unter http://www.h5c3.de
|_______________________________________________________________ */

nav {
    background-color: #1a1111; /* #001eae; */
}

/***************************
* Inhalt
***************************/
#inhalt {
    margin-top: 25px;
    min-height: 150px;
    font-size: 12px; /* Schriftgröße wird für den IE benötigt - der IE erbt diese nicht korrekt */
}



/***************************
* Navigation
***************************/

/* headerstyle */
#headerstyle {
    padding-top: 10px;
}
#logo {
    float: right;
}
#headerstyle nav.meta-navigation {
    float: right;
}
#kopf-unten {
    margin-top: 15px;
}
#key-visual {
    float: left;
}
.float-ende {
    clear: both;
}

/* Haupt- und Inhaltsnavigation */
#navigation {
    float: right;
    padding: 15px;
    font-size: 16px; /* Schriftgröße wird für den IE benötigt - der IE erbt diese nicht korrekt */
} 
#navigation ul {
    list-style-type: none;
    margin: 0px;
    padding: 10px;
    min-height: 133px;
    width: 165px;
    background-color: red;
    line-height: 1em; /* Nicht im Buch, wird jedoch benötigt */
}
#navigation ul li a {
    display: block;
    text-transform: uppercase;
    margin-bottom: 3px;
    text-decoration: none;
    padding: 2px;
    -moz-transition: background-color 0.25s;
    -webkit-transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    -ms-transition: background-color 0.25s;
    transition: background-color 0.25s;
}

#navigation ul li a:hover,
#navigation ul li a:focus,
#navigation ul li a.auswahl {
    color: white;
    background-color: #1a4c65; /* #001eae; */
}

/* Meta- und Drucknavigation */
#footermenu-left,
.meta-navigation {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    background-color: #red; /* #green; */
}

#footermenu-left ul,
.meta-navigation ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
#footermenu-left ul {
    margin-left: 0px;
}
#footermenu-left ul li,
.meta-navigation ul li {
    float: left;
}

#footermenu-left ul li a, 
.meta-navigation ul li a {
    text-decoration: none;
    display: block;
    color: white;   
    border-left: 2px solid white;
    padding: 4px 5px 3px 5px;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
}
/* spezielle Angabe für Firefox - dieser stellt die Höhe der Listenpunkte leicht abweichend dar. */
#footermenu-left ul li a, 
.meta-navigation ul li a, x:-moz-broken {
    padding: 3px 5px 2px 5px;
}

#footermenu-left ul li a:hover,
#footermenu-left ul li a:focus,
#footermenu-left ul li a.auswahl,
.meta-navigation ul li a:hover,
.meta-navigation ul li a:focus,
.meta-navigation ul li a.auswahl {
    color: #1a4c65; /* #001eae; */
    background-color: #e0edff;
}
#footermenu-left ul li:first-child a,
.meta-navigation ul li:first-child a {
    border-left: 0px;
}

/***************************
* Fuß
***************************/
#footermenu, 
#headermenu{
    background-color: #1a4c65; /* #001eae; */
}
#footermenu,
#copyright {
    margin-top: 20px;
}
#footermenu-left {
    float: left;
}
#footerstyle nav.meta-navigation {
    float: right;
}
#copyright {
    padding: 0px;
	padding-left: 0px;
}
#copyright p {
    background-color: #bbb;
    margin-left: 300px;
    width: 500px;
    padding-left: 0px;
    font-size: 12px;     
	text-align: left;
}

#copyright a{
    color: #000;
    background-color: #fff; /* #001eae; */
	display: block;
    padding: 2px 3px 3px 5px;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

#copyright a:hover,
#copyright a:focus {
    color: #1a4c65; /* #001eae; */
    background-color: #e0edff;
	display: block;
    padding: 2px 3px 3px 5px;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
}