/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
  height: 100%
}
ul{
	line-height:150%
}

.defaultFormat {
  /* Add a black text color to all elements inside the .bgimg container */
  color: black;
  /* Add a font */
  font-family: "Arial", Arial, sans-serif;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

.bgimg {
  /* Background image */
  background-image: url('https://onlinetools.npsb.la/onlinetools/npsbformsbackground.png');
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
 }

/* Top-of-page links */
.topcenter {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 400px;
	height: auto;
	background-color: #e1f5fe;
	top:10px;
	text-align:center;
	font-size:20px;
	border-radius: 100px;
}

/* Center text blocks*/
.middle {
  display: block;
  margin-left: auto;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: auto;
  text-align: center;
  background-color: #e1f5fe;
  width: 700px;
  height: auto;
  padding: 35px;
  border: 10px groove #0091ea;
  border-radius: 100px;

}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}

/* Style the top heading */
.Heading-Style1 {
	margin: 10px;
	text-align: left;
}

/*Janky way to do spacing between divs*/
.spacing {
	position: relative;
	width: 0px;
	height: 150px;
}

.spacingsmall {
		position: relative;
		width: 0px;
		height: 10px;
}

/* Position text in the bottom-center */
.bottom {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 385px;
	height: 15px;
	background-color: #e1f5fe;
	bottom:10px;
	text-align:bottom-center;
	font-size:15px;
}

/*verification can*/

.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
