﻿/* GREENPRINTS */
.body {
	font-family:Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-weight: bold;
	font-size: large;
	margin-top: 0px;
	margin-left: 0px;
	padding:0px;
	height:100%;
    background: black; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(0deg,rgba(0,0,0,0),rgba(9,9,9,1)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(0deg,rgba(0,0,0,0),rgba(9,9,9,1)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(0deg,rgba(0,0,0,0),rgba(9,9,9,1)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(0deg,rgba(0,0,0,0),rgba(9,9,9,1)); /* Standard syntax */
}
#a {
	color:#EAC117;
	text-shadow: 3px 3px 5px #000000;
	text-decoration: none;
 }
hr {
	border-bottom: olive 1px solid; border-left: olive 1px solid; width: 66%; height: 4px; color: #00ff00; border-top: olive 1px solid; border-right: olive 1px solid
}
.footer {
	position:absolute;
	bottom:0%;
}
/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.glow {
   display: inline-block;
	color: rgba(236, 216, 114, 0.7);
	text-shadow: 2px 2px 2px #000000;
	padding:2px;	
   vertical-align: middle;
	border: 1px;
	bordercolor: white;
	border-radius: 5px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 1px 1px 1px rgba(252, 223, 255, 0.3);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}
.glow:hover, .hvr-glow:focus, .hvr-glow:active {
    box-shadow: 0 0 4px rgba(252, 223, 255, 0.5);
	 color: rgba(252, 223, 255, 0.5);
	 text-shadow: 2px 2px 2px #000000;
	 font-weight: bold;
	 border-radius: 5px;
}
/* DivTable */
.divTable{
	display: table;
	left:0px;
	border: 1px;
	bordercolor: white;
}
.divTableRow {
	display: table-row;
	border: 1px;
	bordercolor: white;
}
.divTableCell {
	display: inline-block;
	background-color:transparent;
	opacity: .6;
	font-family:Arial;
	font-size: medium;
	font-weight:bold;
	color:#eac117;
	border:2px;
	border-color:#ff0000;
	border-radius: 5px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-top: 0px;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
.divTableCell:hover, .divTableCell:focus, .divTableCell:active { 
    box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.8);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.divTableBody {
}