body {
    color: black;
    font-family: helvetica;
    text-align: center;
    font-size: 18px
}   

h1[type="HAV"] {
    color: white;
    font-family: helvetica;	
	text-shadow: none;
	text-align: left;
    font-size: 200%;
	border: 5px;
}

h1[type="Noise"] {
    color: white;
    font-family: helvetica;	
	text-shadow: none;
	text-align: left;
    font-size: 200%;
	border: 5px;
}

/* selected link (in pop-up modal box)*/

.HAVselection {
	position: relative;
	font-size: 100%; 
	border-style: none;
	border-width: 2px;
	border-color: darkblue;
	color: lightgray;
	width: 340pt;   
	padding: 0 0 0 0;
	max-width: 100%; 
	box-sizing: border-box;
	margin: 0;
}

.HAVselectfirstitem {
	background-color: darkblue; 
	font-weight: bold;
	padding: 3px;
}

.HAVselectionitem {
	background-color: maroon; 
	padding: 3px;
}


.HAVselection :hover {
  color: white;
}

/* Hav information (in pop-up modal box)*/

.HAVpopuptitle {
	font-size: 100%;
	text-decoration: underline;
	font-weight: bold;
	color: white;
	padding: 2px 2px;
	line-height: 1.6;
}
.HAVinfolist {
	font-size: 80%;
	color: white;
	padding: 2px 2px;
	line-height: 1.6;
}


/* Input */

input[type="text"] {
    min-width: 260px;
    height: 30px;
    border-radius: 0px;
    font-family: helvetica;
    font-size: 12pt;
    text-align: center;
    margin: 0px;
    float: inherit;
}
    
	/*number inputs*/
input[type="number"] {
    min-width: 80px;
    height: 30px;
    font-size: 12pt;
    font-family: helvetica;
    border-radius: 0px;
    text-align: center;
    margin: 0px;
    float: inherit;
}

    /*time inputs*/
input[type="time"] {
    min-width: 100px;
    height: 30px;
    font-family: helvetica;
    border-radius: 0px;
    font-size: 14pt;
    text-align: center;
    margin: 0px;
    float: inherit;
}
input:hover{
    background-color: lightyellow;
	color: black;
}

output {
    display: block;
    border: 1px solid #DDDDDD;
    border-radius: 0px;
    min-width: 40px;
    height: 30px;
    margin: 3px;
    padding: 0px;
    font-family: helvetica;
    font-size: 14pt;
    text-align: center;
    vertical-align: middle;
    padding-top: 10px;
    background-color: lightyellow;
    color: #000000;
    float: inherit;
}


img[type="lookupico"]{
	border-color: white;
	float: left;
	width: 25px;
	padding: 0px 3px 0px 0px;
}

img[type="lookupico"]:hover{
	border-color: white;
	float: left;
	width: 28px;
	padding: 0px 0px;
}

.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-family: helvetica;
    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;}

button {
	border-radius: 5px; 
	background-color: white;
	border-color: black;
	color: black;
	padding: 5px 10px 5px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 110%;
	margin: 4px 2px 4px,2px;
	cursor: pointer;
}

button:hover[type="HAV"], .button:focus[type="HAV"]  {
    background-color: darkred;
	color: white;
	
}

button:hover[type="Noise"], .button:focus[type="Noise"] {
    background-color: darkblue;
	color: white;
	
}


/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: black;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: #f44336;
}

/* Add padding and center-align text to the container */
.container {
  padding: 16px;
  text-align: center;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: darkred; /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: darkred; /*#fefefe;*/
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width:460px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}