* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    padding: 10px;
    background: #f1f1f1;
}

/* Header/Blog Title */
.header {
    padding-top: 10px;
    padding-right: 30px;
    padding-left: 25px;
    padding-bottom: 3px;
    text-align: left;
	background-image: url(../img/header.jpg);
	background-color: white;
	background-position: 50% 58%;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	color: white;
    /*background: white;*/
}

.header h1 {
    font-size: 40px;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #f1f1f1;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    width: 100%;
    padding: 10px;
}

/* Small image */
.smallimg {
    width: 25%
    padding: 10px;
}

/* Image Decorum */
img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
/*    width: 150px; 8? */
}

/* Image Link Decorum */
img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.graphimg {
	border: 0px;
	padding: 0px;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
	width: 100%;
	padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
	float: none;
	width: 100%;
    }
}

.graphtable {
	border-collapse: collapse;
	border: 0px;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	background-color: white;
}

.graphtd {
	background-color: white;
	vertical-align: top;
}

table {
    border-collapse: collapse;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
}
table, th, td {
    border: 1px solid #ddd;
}
th {
    /*background-color: #055F9B;*/
    padding-top: 4px;
    padding-bottom: 1px;
    font: bold 15px/1.5 Helvetica, Arial, sans-serif;
    /* color: #fff; */
	color: black;
    text-align: center;
	/*border: none;*/
}
td {
    font: 14px/1.0 Helvetica, Arial, sans-serif;
    padding: 4px;
    text-align: center;
	border: 1px solid #ddd;
}
td.pwr_off {
	color: white;
	background-color: red;
}
td.pwr_error {
	color: black;
	background-color: gold;
}
td.pwr_on {
	color: green;
	background-color: PaleGreen;
}
td.time_good {
	font-weight: normal;
	color: green;
}
td.na {
	color: gray;
	font-weight: normal;
}
tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* Style the close button */
.topright {
  float: right;
  cursor: pointer;
  font-size: 28px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
    color: black;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  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;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}