/* 
    Document   : navigation
    Created on : 04.09.2014, 22:02:17
    Author     : Björn Böhnke
    Description:
        Purpose of the stylesheet follows.
*/

.nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 20px;
    float: left;
}

.nav ul li {
    display: inline-block;
    font-size: 22px;
    margin-right: 20px;
    
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    
    cursor: pointer;
}

.nav ul li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #444;
    -webkit-transition: all 0.2s ease-in-out; /* Firefox */
    -moz-transition: all 0.2s ease-in-out; /* WebKit */
    -o-transition: all 0.2s ease-in-out; /* Opera */
    transition: all 0.2s ease-in-out; /* Standard */
}

.active {
    background-color: rgba(0, 0, 0, 0.1);
}

#pic-nav ul li {
    font-size: 16px;
}