/*
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 : 10/04/2015, 14:47:25
    Author     : Renato Benkendorf
*/

.menu,
.menu ul,
.menu ul li,
.menu ul li a {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.menu {
    width: auto;
    height: 38px;
    text-align: center;
    margin-top: 30px;    
    float: right;
}
.menu:before {
    content: ''; 
    display: block;
}
.menu:after {
    content: '';
    display: table;
    clear: both;
}

.menu ul {
    list-style-type: none;
    display: block;
    font-size: 14px;
    font-family: 'open_sansregular';
    margin: 0;
    padding: 0;
}
.menu ul:before {
    content: '';
    display: block;
}
.menu ul:after {
    content: '';
    display: table;
    clear: both;
}
.menu li {

    position: relative;
    display: inline-table;
    float: left;
    margin: 0;
    padding-right: 15px;
}
.menu li .element-menu{
    color: rgb(115, 128, 153);
    text-decoration: none;
    padding: 10px;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}

.menu > ul > li.has-sub {
    padding-right: 25px;
}

.menu > ul > li.has-sub::after {
    position: absolute;
    top: 21px;
    right: 10px;
    width: 4px;
    height: 4px;
}

.menu li .element-menu2{
    color: white;
    text-decoration: none;
    padding: 10px;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}

.menu li .element-menu:hover {
    color: white;
}

#menu-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #ff0000;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out; 
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    visibility: hidden;
}

.menu #menu-button{
    display: none;
}

