body {font-size:1.1em; font-family:Arial, Verdana, sans-serif}
p    {text-align:left; text-indent:0.0em;}
li   {text-align:justify; text-indent:0.15em; margin-right:1.5em;}

h1  {
	color : #336699;
	font-size:3.0em;
}

h2  {
	color : #336699;
	font-size:2.5em;
}

h3  {
	color : #336699;
	font-size:2.0em;
	margin: 2.5em 0em 0em 0em;
	text-align:center;
}

/*	
	border-color: #666 #CCC #CCC #666;
	border: 2px solid;
*/

h4 {
	color : #336699;
	font-size: 1.75em;
	text-align: center;
}

h5 {
	color : #336699;
	font-size: 1.25em;
	text-align: center;
}

.this_page_link {
	margin: 0 0 6px 0;
	font-size:.66em;
}

table {
	font-size:1.0em;
	border:1;
	border-collapse: collapse;
	}
th    {font-weight: bold; color: #000066; background-color: #E0E0E0;}
th, td    {padding:0.5em;}

table, th, td {
  border: 1px solid black;
}

/* 
text-align: right;

*/

a:link, a:visited {
    font-size:1.2em;
    background-color:white;
    color: blue;
    padding: 2px 6px 2px 6px;
    text-decoration: none;
    display: inline-block;
}
a:hover, a:active {
	background-color:gray;
}

.data {
	color : red;
	font-family : Arial;
	font-size : 1.2em;
}

.emphasis {
	 font-weight: bold;
}

/* Non-proportional fonts: class="courier"; FixedSys not available   */
.fixed {
	color : navy;
	font-family : courier;
	font-size : 1.1em;
}

.indent {
	text-indent:-1.0em;
    margin-left:1.5em;
	margin-right:2.5em;
}

.comment {
	text-indent:-1.0em;
    margin-left:1.5em;
	margin-right:2.5em;
	color : navy;
	font-family : courier;
	font-size : 1.6em;
}

/* 
 Try new "flexbox" elements for HVAC "multi-bay" container
 flex-direction   row
 justify-content  space-around center
 align-items      stretch center
*/
.flex-container {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	background-color: white;
}
.flex-container > div {
	background-color: #f1f1f1;
	width: 358px;
	margin: 1px;
	text-align: left;
	line-height: 26px;
	font-size: 18px;
}

/* 
 The following are used with simple <div> elements for HVAC "multi-bay" container
*/
.bays-container {
	background-color: white;
	padding: 0px;
	border: none;
	margin: 0;
}
.bays {
	background-color: #f1f1f1;
	width: 348px;
	padding: 3px;
	border-top: 1px solid gray;
	margin: 0;
}

/* keep the column "cells" from wrapping in their 'row' div container */
.col_1, .col_2, .col_3, .col_4 {
	display: inline-block;
	margin-top: 1px;
	margin-bottom: 1px;
}
/* column width totals must be no more than .bays width */
.col_1 {
	width: 42px;
	margin-left: 0px;
	margin-right: 3px;
}
.col_2 {
	width: 80px;
	margin-left: 3px;
	margin-right: 3px;
}
.col_3 {
	width: 90px;
	margin-left: 3px;
	margin-right: 3px;
}
.col_4 {
	width: 90px;
	margin-left: 3px;
	margin-right: 0px;
}

.inline {
	display: inline;
}

/*
Use this 'temporary' debug class style to make CSS styling easier -- show div borders, etc.
*/
.debug {
	border: 1px solid;
	border-color: #666 #CCC #CCC #666;
}


/* Code to simulate LED's on HTML page:  see https://codepen.io/Balrog994/pen/nblrk    */
.green {
    background-image: -webkit-linear-gradient(top, #13fB04 0%, #58e343 50%, #ADED99 100%);
}
.orange {
    background-image: -webkit-linear-gradient(top, #f9a004 0%, #e0ac45 50%, #ead698 100%);
}

.red {
    background-image: -webkit-linear-gradient(top, #fb1304 0%, #e35843 50%, #edad99 100%);
}
.led {
    border-radius: 5px;
    width: 10px;
    height: 10px;
    box-shadow: 0px 0px 3px black;
    margin: 5px;
    zoom: 1.5;
}
.led:after {
    display: block;            
    content: '';
    margin-left: 1px;
    margin-right: 1px;
    width: 8px;
    height: 6px;
    -webkit-border-top-right-radius: 4px 3px;
    -webkit-border-top-left-radius: 4px 3px;
    -webkit-border-bottom-right-radius: 4px 3px;
    -webkit-border-bottom-left-radius: 4px 3px;
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
}
​