/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jul 19, 2016, 2:40:36 PM
    Author     : ygonzalez
*/

.navMenu{
    width: 100%;
}

.navMenu ul li{
    display: inline-block;
    padding: 8px;
    background: #575856;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: background 1s;
    -o-transition: background 1s;
    -moz-transition: background 1s;
    -ms-transition: background 1s;
    transition: background 1s;
}

.navMenu ul li:hover{
    background: #50a3c9;
    color: #fff;
}

.navMenu ul li.selected{
    background: #0089cc;
    color: #fff;
}

.navMenu + .menuDiv{
    float: left;
    width: 100%;
    border: 2px solid #0089cc;
    padding: 20px;
}
