.pb {
	font-family: Segoe UI, Helvetica, sans-serif;
	font-size: 11pt;
	color: orange;
	background-image: url(./images/background.jpg);
}

a:hover {
  background-color: blue;
}

.menuPanel {
	width: auto;
 	padding: 1px;
	color: black;
	display: none;
}
.infoPanel {
	width: 750px;
 	padding: 10px;
	background: orange;
	border: 2px solid blue;
	border-radius: 5px;
	color: black;
	display: block;
	z-index: 1;
}
.menuItem {
	width: 10%;
	height: 30px;
	display: inline-block;
	background: '';
	border: 1px solid black;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
	font-family: Segoe UI;
	font-size: 11px;
}
.menuItem:hover {
	background: white;
	border: 1px solid blue;
	border-radius: 5px;
	cursor: pointer;
}
.submenuItem {
	width: 100px;
	height: 20px;
	display: inline-block;
	background: lightgrey;
	border: 1px solid black;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
	font-family: Segoe UI;
	font-size: 11px;
}
.submenuItem:hover {
	background: white;
	border: 1px solid red;
	border-radius: 5px;
	cursor: pointer;
}
.menuButton {
	padding: 5px;
	height: 35px; 
	z-index: 1;
	cursor: pointer;
}
.menuButton:hover {
	background: lightgreen;
	border: 1px solid red;
	border-radius: 5px;
	cursor: pointer;
}
