/*---------------------------------------*/
/*--             ArcanuM               --*/
/*---------------------------------------*/
/*-- Name:  nav.css                    --*/
/*-- Autor: Martin Oelke               --*/
/*-- Datum: 24.08.2013                 --*/
/*-- Zweck: Bestimmt das Aussehen der  --*/
/*--        Navigationsleiste          --*/
/*-- Aenderung:                        --*/
/*--                                   --*/
/*---------------------------------------*/

nav {
}
#nav_smart {
    position: absolute;
    height: 30px;
    width: 100%;
    top: 115px;
    z-index: 9999;
}
#nav_pc {
    position: fixed;
    height: 30px;
    width: 100%;
    top: 115px;
    z-index: 9999;
}

#nav {
    position: relative;
    margin-top: 0px;
    margin-left:auto;
    margin-right:auto;
    height: 30px;
    width: 910px;
    overflow: hidden;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    box-shadow: 0px 0px 20px 10px #cccccc;
    -moz-box-shadow: 0px 0px 20px 10px #cccccc;
    -webkit-box-shadow: 0px 0px 20px 10px #cccccc;
    z-index: 9999;    
}

#nav ul {
    float: left;
    width: 910px;
    height: 30px;
    opacity: 0.95;
    border-radius: 15px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#nav ul li {
    float: left;
    height: 30px;
}

#nav ul li a {
    font-size: medium;
    text-decoration: none;
    text-shadow: 0px 0px 0px #D06800;
    filter: dropshadow(color=#ffffff, offx= 0, offy=0);
    display: block;
    height: 30px;
    background-image: url("../images/riffel-black.png");
}
#nav ul li a.notactive {
    font-size: medium;
    text-decoration: none;
    text-shadow: 0px 0px 0px #999999;
    filter: dropshadow(color=#ffffff, offx= 0, offy=0);
    display: block;
    height: 30px;
    background-image: url("../images/riffel-black.png");
}


#nav ul li a {
    width: 130px;
}

#nav ul li:first-child a {
    -webkit-border-top-left-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}


#nav ul li:last-child a {
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomright: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

#nav ul li a:hover {
    box-shadow: inset 0 1px 0 #333333,inset 0 0 10px 0 #333333;
    text-shadow: 0 3px 3px #222222;
    background-image: url("../images/riffel-hell.png");
    color: #ffffff;
}
#nav ul li a:hover.nohover {
    box-shadow: inset 0 1px 0 #333333,inset 0 0 10px 0 #333333;
    text-shadow: 0px 0px 0px #D06800;
    background-image: url("../images/riffel-black.png");
    color: #D06800;    
}
#nav ul li a:hover.notactive {
    box-shadow: inset 0 1px 0 #333333,inset 0 0 10px 0 #333333;
    text-shadow: 0px 0px 0px #999999;
    background-image: url("../images/riffel-black.png");
    color: #999999;
}

#nav ul li a:active,
#nav ul li a.active {
    height: 30px;
    padding-top: 2px;
    box-shadow: inset 0 1px 0 #333333,inset 0 0 10px 0 #333333;
    background-image: url("../images/riffel-hell.png");
    color: #ffffff;
}

#nav ul li a span {
    border-left: 1px solid #999999;
    border-right: 1px solid #cccccc;
    height: 100%;
    display: block;
    width: 100%;
    padding-top: 4px;
    text-align: center;
    box-sizing: border-box;
}


#nav ul li:first-child a span { border-left: none }
#nav ul li:last-child a span { border-right: none }
