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


/* Dropdown Button */
.dropbtn {
    background-color: #000;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
	height:32px;
	font-family:Verdana, Geneva, sans-serif;
	border-radius:16px;
	
	-webkit-transition: background-color 0.2s ease-out;
  	-moz-transition: background-color 0.2s ease-out;
  	-o-transition: background-color 0.2s ease-out;
  	transition: background-color 0.2s ease-out;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #5f4573;
	outline:0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: fixed;
    display: inline-block;
	top: 8px;
	z-index: 999;
	width:88px;
	height:40px;
	font-family:Verdana, Geneva, sans-serif;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	font-family:Verdana, Geneva, sans-serif;
	border-radius:16px;
	
}

.dropdown_option {
	border-radius:16px;	
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	-webkit-transition: background-color 0.2s ease-out;
  	-moz-transition: background-color 0.2s ease-out;
  	-o-transition: background-color 0.2s ease-out;
  	transition: background-color 0.2s ease-out;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.wrapper {
  min-height: 100%;

  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -50px;
}
.footer,
.push {
  height: 50px;
}
.footer {
	background-color:#222;	
}