* {   
    font-family: Tahoma, Verdana, Arial;
    font-size: 12px;
}

body {
	margin-left: 30px;
	margin-right: 30px;
	background-color: "White";
}

img {
	border: none;
}

a:link { 
	color: #333; 
	text-decoration: none;
}
a:visited {	
	color: #666; 
	text-decoration: none;
}
a:active { 
	color: #4FA600; 
	text-decoration: none;
}
a:hover { 
	color: #4FA600; 
	text-decoration: none;
}

.smaller {
	font-size: smaller;
}

.x-small {
	font-size: x-small;
}

.xx-small {
	font-size: xx-small;
}

/******************************************************************************
 * Top Navigation Panel
 ******************************************************************************/

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

/******************************************************************************
 * Side Navigation Panel
 ******************************************************************************/
.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
}

.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #2196F3;
    display: block;
}

.sidenav a:hover {
    color: #064579;
}

.main {
    margin-left: 0px; /* Same width as the sidebar + left position in px */
    font-size: 28px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

/******************************************************************************
 * Warning/Errors Tables
 ******************************************************************************/
 
table {
	border-collapse: collapse;
	border-left: solid white 1px; /* for IE (no :FIRST-CHILD) */
	border-top: solid #62BD19 1px; 
	border-bottom: solid #CCC 1px;
	width: 100%;
}

th {
	background-color: #F5F5F5;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 5px;
	text-align: middle;
	height: 30px;
    background-color: #4CAF50;
    color: white;
}

thead th {
	border-bottom: solid #CCC 1px;
	border-left: solid #CCC 1px;
}

td {
	border-left: solid #CCC 1px;
	padding-left: 5px;
	padding-right: 5px;
	height: 30px;
}

/* for Firefox */
td:FIRST-CHILD {
	border-left: none;
}
th:FIRST-CHILD {
	border-left: none;
}

th.bl, td.bl {
	border-left: solid #CCC 1px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}
	
tr:HOVER {
	background-color: #F7F1F2;
}

/* Horizontal lines */

tr.title th, tr.title td {
	border-top: solid #CCC 1px;
}

tr.bottomborder th, tr.bottomborder td {
	border-bottom: solid #CCC 1px; 
}

tr.topborder th, tr.topborder td {
    border-top: solid #CCC 1px; 
}

/* No Border */

table.noborder {
	border: none;
}
table.noborder tr:HOVER {
	background: none;
}
table.noborder td {
	border: none;
}

/******************************************************************************
 * Headings
 ******************************************************************************/
 
h1 {
	color: #666666;
	padding-top: 12px;
}

h2 {
    color: #666666;
    padding-top: 12px;
}

/******************************************************************************
 * Alignment
 ******************************************************************************/
.l {
	text-align: left;
}
.r {
	text-align: right;
}
.c {
	text-align: center;
}

/******************************************************************************
* Errors & warnings
*******************************************************************************/

.error {
	background-color: #FF8080;
	color: white;
}

.errorBox {
	background-color: #FF8080;
	color: white;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 10px;
	border-width: 2px;
	border-color: red;
	border-style: solid;
	display: block;
}

.warningBox {
	background-color: #FFFF80;
	color: black;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 10px;
	border-width: 2px;
	border-color: #A4A400;
	border-style: solid;
	display: block;
}


/******************************************************************************
* NDEC Views
*******************************************************************************/

.ndec-error {               
  background-color: Tomato;    
}                           
.ndec-warning {             
  background-color: yellow; 
}                           
.ndec-ok {                  
  background-color: #80FF80;
}                           


/******************************************************************************
* Tab buttons
*******************************************************************************/

/* 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;
}