#logo{
    position: absolute;
    right:10px;
    bottom: 10px;
}
body{
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-family: "Lucida Grande", "Helvetica Nueue", Arial, sans-serif;
}
melodia{
    margin: 0;
    padding: 0;
    font-size: 25px; 
    font-weight: 900;
    font-family: "Lucida Grande", "Helvetica Nueue", Arial, sans-serif;
}

nav {
    background-color: rgba(255,255,255,0.7);
    color: rgb(255,255,255);
    display: block;
	width: 785px;
    top: 100px;
    margin: 0;
    font-size: 24px;
    overflow: hidden;
}

nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
nav ul li {
    margin: 0;
    display: inline-block;
    list-style-type: none;
    transition: all 0.2s;
}

nav > ul > li > a {
    color: rgb(0,0,0);
    display: block;
    line-height: 2em;
    padding: 0.5em 0.8em;
    text-decoration: none;

}

nav li > ul{
    display : none;
    margin-top:1px;
    background-color: rgba(40, 0, 90, 0.2);

}

nav li > ul li{
    display: block;
}

nav  li > ul li a {
    color: rgb(255,255,255);
    display: block;
    line-height: 2em;
    padding: 0.5em 2em;
    text-decoration: none;
}

nav li:hover {
    background-color: rgb(0,255,0);
    color: rgb(155,155,155);
}
nav li:hover > ul{
    position:absolute;
    display : block;
}
nav li > ul > li ul  {
    display: none;
    background-color: rgba(40, 0, 90, 0.2);
}
nav li > ul > li:hover > ul  {
    position:absolute;
    display : block;
    margin-left:100%;
    margin-top:-3em;
}

nav ul > li.sub{
    background: url(ic_keyboard_arrow_down_white_18dp.png) right center no-repeat;
}

nav ul > li.sub li.sub{
    background: url(ic_keyboard_arrow_right_white_18dp.png) right center no-repeat;
}

