@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700);
 body{
margin: 0;
padding: 0;
font-family: 'PT Sans', sans-serif;
font-weight: 700;
 }



#menu{
height: 35px;
background: #00007B;
position: relative;
} 

#menu .menup{
margin: 0 auto;
}

#menu li{
float:left;
position:relative;
padding: 6px 0;
margin: 0;
list-style: none;
} 

#menu li a{
color:#ffffff;
font-size:16px;
padding: 10px 30px;
/* text-shadow: 0px -1px 0px #000; */
text-decoration: none;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.navbar-header {
    display: flex;
    align-items: center;
    height:100%;
    width: 100%;
    justify-content: space-between;
}
.navbar-brand {
    height: auto;
}
/*ocultamos el dropdown*/
#menu li > ul {
    display: none;
    position: absolute;
    background: #00007B;
    padding: 0;
    z-index: 2;
    opacity: 0.8;
}

#menu li > ul li{
padding:0;
margin:1px 0;
list-style: none;
} 

#menu li > ul li:first-child, #menu li:hover > ul li:last-child{
padding:0;
margin:0 0;
}

/*le damos el color blanco al enlance del submenu y el background negro */    
#menu li:hover > a{
color:#fff;
background-color: #424242;
width: 120px; 
} 

#menu li > ul li a{
width: 170px;
margin: 0 0 0 5px;
display:block;
color: #fff;
} 

/* Con esto mantenemos el codigo submenu activo */
#menu li:hover > ul{
display:block;
width: 150px;
top: 35px;
 }

/* #menu .divider{
border-right: 1px solid #BCBCBC;
height: 23px;
} */
#menu .dropdown::after{
content:"";
position: absolute;
top: 15px;
left: 88px;
width:0px;
height:0px;
border-style: hidden;
border-width: 4.3px;
border-bottom-width:0px;
border-color: #BCBCBC transparent transparent transparent;
}

#menu li:hover::after{
border-color: #fff transparent transparent transparent;
}

hr{
margin: 0;
padding: 0;
width: 80%;
position: relative;
border-color: rgba(189, 189, 189, 0.6);
left: 10px;
}

#menu .dropdown span{
height: 15px;
width: 3px;
position: absolute;
top: 6px;
left: 5px;
}