html, body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px
}
.labels {
	color: black;
	background-color: #fafafa;
	font-family: Arial;
	font-size: 11px;
	text-align: center
}
a, img {
	border:none;
	outline:none
}
.label_own {
	color: black;
	background-color: #FEFEFE;
	font-family: Arial;
	font-size: 12px;
	text-align: center;
	/*width: 100%;*/
	border: 1px solid black
}
#panel {
	position: absolute;
	top: 5px;
	left: 40%;
	z-index: 5;
	background-color: #fff;
	padding: 0px;
	border: 0px solid #999;
}
#panel2 {
	position: absolute;
	top: 30px;
	left: 28%;
	z-index: 5;
	background-color: #fff;
	padding: 0px;
	border: 0px solid #999;
}

#panel3 {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 9;
	background-color: #fff;
	padding: 0px;
	border: 0px solid #999;
}

#panelLowLeft {
	position: absolute;
	bottom: 320px;
	left: 10px;
	z-index: 9;
	background-color: #fff;
	padding: 0px;
	border: 0px solid #999;
}
#logo {
	position: absolute;
	bottom: 20px;
	left: 44%;
	opacity: 1.0;
	z-index: 5;
	padding: 0px;
	border: 0px solid #999;
}
#logo2 {
	position: absolute;
	bottom: 0%;
	left: 43%;
	z-index: 4;
	opacity: 0.7;
	background-color: #fefefe;
	padding: 0px;
	border: 0px solid #999;
}

#legend {
	position: absolute;
	top: 60px;
	left: 60%;
	opacity: 1.0;
	z-index: 5;
	padding: 0px;
	border: 0px solid #999;
}

#styled-select select {
        width: 120px;
        height: 30px;
        text-indent: 15px;
				font-size: 14px;
				font-weight: none
}

input[type=button] {
        width:100%;
        height:30px;
	font-size: 12px;
        font-weight: bold;
}

@media screen and (max-width:1024px){
     input[type=button] {
	  font-size: 18px;
     }
     #dropbtn {
	font-size: 18px;
     }
}

/* Dropdown Button */
.dropbtn {
	background-color: #f1f1f1;
    width:120px;
    height:30px;
    font-size: 14px;
    font-weight: bold;
	padding: 0px;
	border: 1px solid #999;
}

/* 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: #86f786; 
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

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

/* 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: #3e8e41;}*/

