@charset "utf-8";
/* CSS Document */

#headerMenu {
	z-index: 50;
	position: fixed;
	width: 100%;
	top: 0;
}

/* Remove margins and padding from the list, and add a black background color */
ul.topnav,
ul.subnav {
    list-style-type: none;
    margin: 10px;
    padding: 0;
    overflow: hidden;
}
ul.topnav {
	z-index: 5;
}
ul.subnav {
	margin: -10px auto auto 90px;
	display: none;
	z-index: 10;
}

/* Float the list items side by side */
ul.topnav li {
	float: left;
}
ul.topnav li,
ul.subnav li {
	margin: 5px;
}

/* Style the links inside the list items */
ul.topnav li a,
ul.subnav li a {
    display: inline-block;
    color: #FFFFFF;
    padding: 0px 10px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
	line-height: 30px;
}
ul.topnav li a {
    text-align: center;
    background-color: #a9a9aa;
}
ul.topnav li.voce a {
	min-width: 50px;
}
ul.subnav li a {
	text-align: left;
    background-color: #848484;
	width: 200px;
}


/* Change background color of links on hover */
ul.topnav li a:hover,
ul.subnav li a:hover {
	background-color: #666666;
}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none; }


/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:680px) {
  ul.topnav li {
	  display: none;
	}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
  
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
  ul.topnav.responsive,
  ul.subnav.responsive {
	  position: relative; 
	}
	ul.subnav.responsive {
		margin-left: 10px;
		margin-top: -45px;
	}
  ul.topnav.responsive li.voce {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  ul.topnav.responsive li.voce a {
	margin: 5px 5px 0px 5px;
	max-width: 200px;
  }
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
	width:auto;
  }
}