/**
 * Name: booNavigation.css
 * Date:Sun 16 Feb 2014
 * Author: Noemi Losada Estrella <info@noemilosada.com>
 * Creative Commons License <http://creativecommons.org/licenses/by-sa/3.0/>
 */

/** General
================================================== */




.wrapper {
    margin: 50px auto;
    width: 960px;
}

ul li {
    list-style-type: none;
}

a {
    color: #333;
    text-decoration: none;
}

/** Navigation theme
================================================== */
.booNavigation {
    position: relative;
    
}

.booNavigation li.navItem {
    background-color: #004EA0;
    border-top: 5px solid #3664fa;
    padding: 5px 20px;
    float: left;
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    height: 42px;


}

.booNavigation li.navItem:hover {
    
    background-color: rgb(21, 114, 235);
    border-color: rgb(162, 211, 252);
    cursor: pointer;
    
}

.booNavigation li.navItem > a {

    color: rgb(255, 255, 255);
    
    
}

.booNavigation li.navItem .navContent {
    background-color: rgb(255, 255, 255);
    left: 0;
    position: absolute;
    top: 42px;
    width: 100%;
    z-index: 999;
}

.booNavigation .navContent > li {
    color: rgb(14, 154, 235);
    float: left;
    padding: 10px;
    width: 30%;
}

.booNavigation .navContent ul li a {
    color: rgb(4, 20, 71);
    display: block;
    padding: 10px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.booNavigation .navContent ul li a:hover {
    background-color: rgb(206, 219, 253);
    padding-left: 20px;
}

/** Navigation examples
================================================== */
.nav-example {
    clear: left;
}
