
*{
	box-sizing: border-box;
}

/* Menu */
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: teal;
}

.menu li {
    float: left;
	font-size:21px;
}

.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 8px 20px;
    text-decoration: none;
}

.menu li a.active{
	background-color: white;
	color: teal;
}

.menu li a:hover {
    background-color: lightskyblue;
}

em
{
	font-style: normal;
	font-weight: bold;
	background-color: rgb(190, 255, 190);
	color: green;
}

table
{
	font-family: arial, sans-serif;
	font-size: 11pt;
	border-collapse: collapse;
	width: 100%;
}

td, th 
{
	border: 1px solid gray;
	text-align: center;
	padding: 1px;
}

td#Desc
{
	text-align: left;
}

table#FeaturesTable td
{
	border: 0px;
	text-align: left;
	font-size: 13pt;
}

th 
{
	background-color:#93cddd;
}

tfoot td
{
	font-weight: bold;
	color:white;
	background-color:teal;
}

tr:nth-child(even) 
{
	background-color: #dbeef4;
}

tr:nth-child(odd) 
{
	background-color: white;
}

table#SpecTable td, table#SpecTable th
{
	border: 2px solid #4bacc6;
	text-align: center;
}

table#embedded {
	font-size: 10pt;
	border-collapse: collapse;
	text-align: left;
	border: 0px;
	width: 100%;
}
table#embedded th, table#embedded td{
	border: 1px solid #dbebf0;
}
table#embedded tr:nth-child(even) 
{
	background-color: #e7f4f8;
}

h1 
{
	font-family: arial, sans-serif;
	font-size: 22pt;
}
  
h2 
{
	font-family: arial, sans-serif;
	font-size: 16pt;
	font-style: italic;
}

acronym   
{
	font-weight: bold; color: NAVY;
}

acronym#warn
{
	font-style: normal;
	font-weight: bold;
	background-color: yellow;
	color: darkgoldenrod;
}

acronym#err
{
	font-style: normal;
	font-weight: bold;
	background-color: lightsalmon;
	color: darkred;
}

#Head
{
	margin: 0px auto;
	margin-top: 20px;
}

.tooltip 
{
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}

.tooltip .tooltiptext 
{
	visibility: hidden;
/*	width: 120px;*/
	background-color: #cdc;
/*	color: #fff;*/
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.5s;
}

.tooltip:hover .tooltiptext 
{
	visibility: visible;
	opacity: 1;
}

p#Purpose
{
	font-family: arial, sans-serif;
    text-align: justify;
	text-indent: 20px;
	font-size: 13pt;
}

p#ModuleDesc
{
	font-size:15pt;
	font-weight: bold;
	color: black;
}

select#ModSelection
{
	background-color: lavender;
}

select#ModSelection:hover {
    background-color: azure;
}
