#Header{
  width: 100%;
  background-color: #7b91a4;
  color: #e0e0e0;
  font-size: 200%;
  height: 70px;
}
#KNXGW{
   padding-top: 15px;
   padding-left: 45px;
   font-size: 100%;
   vertical-align: middle;
   float: left;
}
#HIMG{
    float: left;
    padding-left: 20px;
}
.LANIMG{
    padding-top: 20px;
    float: left;
    padding-left: 10px;
}
.title {
   margin-top: 0;
   margin-bottom: 0;
   padding-top: 0.3em;
   padding-bottom: .3em;
   background-color:#e0e0e0;
   color: #e0e0e0}

.nav {
   height: 50px}
.navhere {
    height: 50px;
    background-color: #676767}
th {
  text-align: left;}
body {
   color: black;
   background-position: left top;
   background-color:#e0e0e0;
   font-family: arial, helvetica;
   font-size: 11pt;}
.main {
   margin-left: 20em;}
h1 {
   color:#e0e0e0;
   font-size: 210%;
   margin-top: 0;
   padding-top: 1.0em;
   padding-bottom: .6em;
}
h2, h3 {
   color:#7b91a4;
   margin-bottom: 0.5em;}
p {
   margin-top: .2em;}
body>p {
   margin-left: 20px;}
p.summary {
   text-align: justify;}
img {
   border: none;
   color: black}

div.leftside {
   position: absolute;
   top: 80px;
   left: 20px;
   margin-top: 10px;
   margin-right: 2em;
   width: 16em;
   padding-bottom: 0;
   background-color:#a7a6a6;
   font-size: 100%;
   text-align: center;}
div.leftside ul {
   margin: 0px 0px 0px 0px;
   padding: 10px 0px 10px 0px;}
div.hidden {
 display: none;}
a { color: #e0e0e0; text-decoration: none;}
a:visited {color: #e0e0e0;}
a:active {color: #e5e4e4;}

a.SCLINK { color: #000000; text-decoration: underline;}
a.SCLINK:visited {color: #7b91a4;}

table {
  	border: 0px #000;
  	border-spacing: 0;
	td, th {
	   padding-right: 0px;
	}
}
td, th {
  color: #000;
  padding: 10px 0px;
  padding-right: 10px;
}
ul{list-style-type: none;}
input{ border: 1px solid #000;}
input:focus{ border: 1px solid #a7a7a7;}
input[readonly]{background-color: #e5e4e4;}
input[type=number]{-moz-appearance: textfield;}
table.mt tr:nth-child(even) {background: #d5dce2;}
table.mt {border-width: 1px;border-spacing:0px ;border-style: solid;border-color: #e5e4e4;border-collapse: collapse;background-color: transparent;}
table.mt th {border-width: 1px;padding: 1px;border-style: solid;border-color: #e5e4e4;white-space: normal; background-color: #a7a6a6;text-align:left;}

.demo-container {
	box-sizing: border-box;
	width: 95%;
	height: 450px;
	padding: 20px 15px 15px 15px;
	margin: 15px auto 30px auto;
	border: 1px solid #ddd;
	background: #fff;
	background: linear-gradient(#f6f6f6 0, #fff 50px);
	background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.demo-placeholder {
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1.2em;
}

a.tooltip {
    position: relative;
    text-decoration: none;
  }
a.tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 80%;
    background: #7b91a4;
    padding: 5px 15px;
    color: #e0e0e0;;
    -webkit-border-radius: 5px;
    -moz-border-radius   : 5px;
    border-radius        : 5px;
    white-space: nowrap;
    opacity: 0;
     /* At time of this creation, only Fx4 doing pseduo transitions */
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
  }
a.tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid #7b91a4;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    /* At time of this creation, only Fx4 doing pseduo transitions */
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
    opacity: 0;
    left: 40%;
    bottom: 90%;
  }
a.tooltip:hover:after {
    bottom: 100%;
  }
a.tooltip:hover:before {
    bottom: 70%;
  }
a.tooltip:hover:after, a:hover:before {
    opacity: 1;
  }