/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 22, 2020, 4:56:01 AM
    Author     : Christopher
*/

@font-face {
	    font-family: 'consolasregular';
            font-size: 200%;
            src: 
                url('.fonts/consolas-webfont.woff2') format('woff2'),
                url('.fonts/consolas-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
           }

body {
    font-size: 150%;
    background: #000000;
    font: normal .8em "consolasregular";
    text-transform: uppercase;
    color: #00AA00;
    }
	
#boxbg {
	background: #ccc;
	width: 66%;
	margin: 0 auto;
	position: relative;
	left: .5em;
	top: .5em;
	}
	
#box {
	border: 1px solid #cdcdcd;
	background: #fff;
	padding: 1em 2em;
	position: relative;
	top: -.5em;
	left: -.5em;
	}
	
h1 {
	margin: 0;
	padding: 0 0 .2em 0;
	border-bottom: 1px solid #cdcdcd;
	}
	
.list-desc { font-weight: bold; }
.ul { list-style-type: square; }
.blue { color: #0b0080; }
.red {color: #ba0000; }
.green { color: #00aa00; }
.orange { color: #cc9933; }

table.faction { float:left; margin-left:10px; }
table.property { float:right; margin-left:10px; }
table.stock { float:left; margin-left:10px; }
table.merit { float:right; margin-left:10px; }
table.education { float:left; margin-left:10px; }
table.enhancer { float:right; margin-left:10px; }
ul li { display: inline; margin-top: 0; }

 /* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #ffff66;
  color: #00aa00;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.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;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
} 