* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
  background-color: MidnightBlue;
  color:white;
  padding: 70px;
  text-align: center;
}

/* 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 three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 11px;
}

/* Left and right column */
.column.left {
  width: 78%;
  background-color: DarkTurquoise;
  padding:0px 0px 0px 0px;
  margin:0px 0px;
}

/* Middle column */
.column.right {
  width: 22%;
  background-color: none;
  padding:20px 20px 20px 20px;
  color:navy;
  font-family: arial;
  font-size: 14px;  
  font-weight: normal;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
  .column {
    width: 100%;
  }  
  
}

.footer {
  background-color: DeepSkyBlue;
  margin:0px 0px 0px 0px;
  color: navy;
  padding: 30px;
  text-align: center;
}

.footerBottom {
  background-color: DarkTurquoise;
  margin:0px 0px 0px 0px;
  color: navy;
  padding: 10px;
  text-align: center;
}

.footerBottomOuter {
  background-color: DarkTurquoise;
  color: navy;
  padding-top: 1px;
  padding-right: 5px;
  text-align: right;
  font-family: arial;
  font-size: 12px;  
  font-weight: bold;
}

.h1footerBottom {
    color: navy;
    font-family: Ethnocentric;
    font-size: 20px;  
    font-weight: bold; 
    text-align: center; 
    padding: 5px;     
}


.footerFixed {
/*    position: fixed; */
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: white;
   text-align: center;
}

/* Login text */
input[type=text] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 11px 19px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

h1.headerAppName {
    color: #ff0000;
    font-family: Infinium Guardian;
    font-size: 50px;  
    font-weight: bold; 
    text-align: center; 
    padding: 0px;
	margin: 0;     
}

/* ===== Style for Login pad ===== */

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 30px 20px 20px 20px;
  font-family: arial;
  font-size: 16px;
}

.col-25 {
  float: left;
  width: 28%;
  margin-top: 5px;
}

.col-75 {
  float: left;
  width: 72%;
  margin-top: 5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.error {
    color: red; font-weight: bold;
}

.dataUpdateMsg {
	font-family: arial;
	font-size: 14px;	
	text-align: center;
	color: red;
}