body {
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #848484;
	background: #FFFFFF;
}

p {
	margin: 0px;
	padding: 0px;
}

img {
	margin: 0px;
	padding: 0px;
	border: none;
}

table {
	border-collapse:collapse;
}

table, th, td {
	border: 2px solid #848484;
}

/* menu */

#templatemo_menu {
	clear: both;
	width: 800px;
	
	font-size: 11px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
	background-color:#063855;
}

#templatemo_menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
}

#templatemo_menu ul li {
	float:left;
}

#templatemo_menu ul li .current {
	background-color:#12628b;
}

#templatemo_menu a:link,a:visited {
	display:block;
	width:120px;
	font-weight:bold;
	color:#FFFFFF;
	text-align:center;
	padding:4px;
	text-decoration:none;
	text-transform:uppercase;
}

#templatemo_menu a:hover,a:active {
	background-color:#12628b;
}

/* end of menu */

#templatemo_header {
	clear: both;
	width: 800px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}

#templatemo_body {
	clear: both;
	width: 800px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
	padding: 10px 0px;
	font-size: 14px;
	color: #848484;
}

#templatemo_scrbody {
	clear: both;
	width: 800px;
	height: 200px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
	padding: 10px 0px;
	font-size: 14px;
	color: #848484;
	overflow-y: scroll;
}

#templatemo_t1 {
	text-align: left;
}

#templatemo_body a {
	color: #848484;
	text-decoration: underline;
} 

#templatemo_body a:active, a:hover {
	text-decoration: none;
}

#templatemo_log {
	width: 800px;
	text-align: left;
	font-size: 11px;
	color: #000000;
	font-family: courier;
}

#templatemo_scrlog {
	width: 800px;
	height: 200px;
	text-align: left;
	font-size: 11px;
	color: #000000;
	font-family: courier;
	overflow-y: scroll;
}

#templatemo_footer {
	clear: both;
	width: 800px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}

#templatemo_footer a {
	color: #848484;
	text-decoration: underline;
}

input.control_label {
	width: 150px;
}

input.control_text {
	width: 50px;
	margin: 2px 10px;
}

input.control_url {
	width: 150px;
	margin: 2px 10px;
}

input.control_button {
	width: 75px;
}

table.control_subtable {
	text-align: right;
	padding: 5px;
	border: 0px;
	width: 100%;
}

td.control_cell {
	border: 0px;
}

td.control_cell_status{
	border: 0px;
	color: orange;
	text-align: center;
}
/*********************************
Intellizone Specific CSS
*********************************/
/*Don't show any of the "tables" by default*/
.Enablement, .Inpot, .Logic, .Outpot {display:none;}

/* Button (radio) Labels decoration*/
.elabels:hover, .ilabels:hover, .llabels:hover, .olabels:hover {background-color:#12628B;}
.elabels, .ilabels, .llabels, .olabels {
  display:inline-block;
  margin: 0 1% 1% 0;
  font-weight: bold;
  font-family: monospace;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  padding: .5rem;
  color: #FFFFFF;
  /*background: #063855;*/
  background: #C0C0C0;
  /*background: rgba(6, 56, 85, .5);*/
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

#Enablement1:checked ~ .elabels {background-color:#12628B;}
#Inpot1:checked ~ .ilabels {background-color:#12628B;}
#Logic1:checked ~ .llabels {background-color:#12628B;}
#Outpot1:checked ~ .olabels {background-color:#12628B;}

/*Labels cannot show by default*/
.wrap-collapsible, .wrap-collapsible1, .wrap-collapsible2, .wrap-collapsible3 {display:none;}

/*Labels can show if their radio box is "checked"*/
.Enablement:checked ~ .wrap-collapsible {display:block; margin:0 0 3% 0;}
.Inpot:checked ~ .wrap-collapsible2 {display:block;margin:0 0 3% 0;}
.Logic:checked ~ .wrap-collapsible1 {display:block;margin:0 0 3% 0;}
.Outpot:checked ~ .wrap-collapsible3 {display:block;margin:0 0 3% 0;}

/*Make the inside of the accordian dropdown*/
.collapsible-content .content-inner {
  background: rgba(192, 192, 192, .1);
  border-bottom: 1px solid rgba(192, 192, 192, .40);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem .1rem;
}

/*Hide the content by default (closed accordian)*/
.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

/*Height to display upon checking or toggle of box*/
.toggle:checked + .lbl-toggle + .collapsible-content {
  //max-height: 100vh;
  max-height:100%;
}

/*Toggle arrow direction*/
.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/*Causes the checkboxes of the accordions to not show but
does not affect the checkboxes in the tables*/
.toggle {display: none;}

/*Style of labels that get toggled*/
.lbl-toggle {
  display: block;
  font-weight: bold;
  font-family: monospace;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: left;
  padding: .6rem;
  color: #FFFFFF;
  background: #063855;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}
.lbl-toggle:hover {background-color: #C0C0C0;}
.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

