.head{
text-align: center;
position: relative;
top:-10px;  /*início -10px com o adiar passou a -260px*/
}

.att{
text-align: left;
left: 20px;
position: relative;
top:50px;
}

.foot{
position: absolute;
bottom:0px; 
}

/* Indicação do Menu de Navegação */
.tooltip{
   	display: inline;
    position: relative;
}
		
.tooltip:hover:after{
    background: #A82582;
    background: rgba(168,37,130,.7);
    border-radius: 5px;
    top: 26px;
    color: #FFFFFF;
	font-family: Arial, serif;
    right: 20%;
    padding: 15px 15px;
    position: absolute;
    z-index: 98;
    width: 180px;
}
		
.tooltip:hover:before{
	border-style: solid;
	border-color: transparent transparent #A82582 transparent;
    border-width: 8px 8px 8px 8px;
    top: 10px;
    content: "";
	bottom: 100%;
    left: 50%;
    position: absolute;
    z-index: 99;
}

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #A82582; /* Black*/
	opacity:0.8;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 50px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #FFFFFF;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #FFE700;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    left: -25px;
    font-size: 36px;
    margin-left: 25px;
}

/*-------------------------------------------*/
/* Dropdown Button */
.dropbtn {
    background-color: #A82582;
    color: white;
    padding: 8px 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #C800BC;
    min-width: 130px; /* inicialmente 160px */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    font-size: 16px;	
    padding: 4px 32px; /* inicialmente 12px 32px */
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
/*.dropdown-content a:hover {background-color: #f1f1f1}*/

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #FFE700;
}
/*-------------------------------------------*/

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
