@font-face {
    font-family: Tactic-Sans-Regular;
    src: url(../fonts/tacticsans-reg-webfont.woff2);
}

* { font-family: "Tactic-Sans-Regular", "Trebuchet MS", "Arial", sans-serif; }


/* Page-global elements. */
label, select {
    display: inline-block;
    vertical-align: middle;
}

/* The main "top" block of the page. */
.parameterBlock {
    position: relative;
    left: -5px
    top: 0px;			
    text-align: center;
}	

/* Table Styles */
table {
    position: relative;
    top: 30px;    
    border: 2px solid black;
    border-collapse: collapse;
    text-align: center;
    margin: auto;
}

th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;			
}

th { 
    background-color: #ccc;
    border-width: 1px 1px 1px 1px;
}

tr:nth-child(even) { background-color: #eee; }
tr:nth-child(odd) { background-color: #fff; }

/* Granular Styles */
#powerRequirements {
    width:650px;
    margin-left: auto;
    margin-right: auto;
}

#title { 
    font-size:18px;
    border-bottom-style: hidden;
}

#manufacturerModel {
    font-size:20px;
    border-bottom-style:hidden;           
}

#subTitle { 
    font-size: 14px;
    border-top-style: hidden;
    border-bottom-style: solid;
    border: 2px solid black;
}

#header { font-size:16px; }

#subHeader { 
    font-size:12px;
    border: 2px solid black;
    border-top-style: none;	
    
}

#required {
    border-top-style: none;
    border-bottom-style:none;    
    background-color: #ddebf7;
}

#caveat {
    font-size:12px;
    text-align: center;
    border-top-style: solid;
    border: 2px solid black;
}

#buttons { text-align: center; }

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}