@charset "utf-8";
/* CSS Document */
        nav.Menu {
            	position: fixed;           
            	right: 0;
            	left : 0;
            	top : 0;
				z-index: 10000;
        }
        
        nav.Menu ul {
           		margine: 0;
            	padding: 0;
            	list-style: none;
        }
        
        nav.Menu ul ul{
            	box-shadow: 5px 5px 10px #000;
        }
        
        nav.Menu > ul{
            	position: relative;
            	float: left;
            
        }

        
        nav.Menu ul li{
            	position: relative;
            	float: left;
            	margin: 0;
           		padding: 0;
        }
        
        nav.Menu ul li ul{
            	display: none;
        }
        
        nav.Menu ul li:hover > ul{
            	display: block;
        }
        
        nav.Menu ul > li > ul{
           		position: absolute;
           		top: 48px;           
        }
        
        nav.Menu ul ul ul{            
            	border-left: solid 1px white;
            	top: 100%;
            	left: 100%;
            	margin-top: -48px;
        }      
        
        nav.Menu li > a {
            	position: relative;
            	float: left;
            	min-width: 200px;
            	height: 48px;
            	line-height:48px;
            	text-align: center;
            	background: none;
            	color: white;
            	cursor: pointer;
            	text-decoration: none;
        }

        nav.Menu ul ul li a{
            	border-bottom: solid 1px #000;
            	border-top: solid 1px #fff;
        }
       
        nav.Menu a:hover{
            	background: none;
            	color: #fff;
        }	
        
        nav.Menu ul ul li:last-child > a{
            	border-radius: 0 0 20px 20px;
        }
			
		section.content {	
				top: 12%;								
		}
        body{
            background-image: url("../img/sala_2.jpg");
            background-repeat: no-repeat;
            background-size: 100%;
        }