﻿/* CSS layout */
html {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 22px;
  }
}body {
	margin: 30px 10px 30px 20px;
	padding: 0;
	background-image: url('../images/backgrounds/bg.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	background-attachment: fixed;
	font-family: "Futura Bk BT", Helvetica, Verdana, sans-serif, Arial;
	font-size: medium;
	font-weight: lighter;
	color: #99ccff;
}
img {
	display: inline-block;
	border: 0 none;
	max-width: 100%;
	height: auto;
}
a img {
	border: 0 none;
}
figure {
	margin-left: 0;
}
figcaption {
	max-width: 900px;
	color: rgba(222, 222, 222, 0.6);
}
.caption750 {
	max-width: 750px;
	color: rgba(222, 222, 222, 0.6);
}
table {
	border-style: none;
	padding: 0 333x 33px 33px;
	width: 100%;
}
td {
	padding-left: 33px;
	padding-right: 33px;
}
.TranslucentBlackBackground {
	background-image: url('../images/backgrounds/bg-table.png');
}
.TranslucentBlackBottomCell {
	background-image: url('../images/backgrounds/bg_table_gradient_flip.png');
}
#content {
	top: 44px;
	margin-left: 15%;
	margin-right: 10%;
	padding: 20px;
}
#left_col {
	float: left;
	z-index: 10;
	top: 25px;
	width: 15%;
	position: fixed;
	padding: 0px;
	background: transparent;
}
p {
	font-size: large;
	font-weight: bolder;
	letter-spacing: 1px;
}
h1 {
	color: #99ccff;
	font-size: 150%;
	letter-spacing: 3px;
	text-align: left;
	text-shadow: 4px 4px 7px black;
}
h2 {
    margin-top:2em;
	color: rgba(255, 204, 0, 0.9);
	font-weight: lighter;
	font-size: 135%;
	text-shadow: 4px 4px 7px black;
}
h3 {
	font-weight: 600;
	font-size: 95%;
}
h4 {
	color: inherit;
	font-weight: lighter;
	font-size: 90%;
	letter-spacing: 2px;
}
h5 {
	font-weight: normal;
	font-size: 85%;
	text-shadow: 4px 4px 7px black;
}
h6 {
	color: #ffffff;
	font-weight: lighter;
	font-size: 70%;
	text-shadow: 4px 4px 7px black;
}
a:link {
	color: #ffffff;
	text-decoration: none;
	text-align: center;
}
a:visited {
	color: #c0c0c0;
	text-decoration: none;
}
a:hover {
	color: #99ccff;
	border-bottom: 2px dotted #99ccff;
	text-decoration: none;
	background-color: #0066ff;
}
a:active {
	color: #cccccc;
	text-decoration: none;
}
.rotate {
	-webkit-transition-duration: 22s;
	-moz-transition-duration: 22s;
	-o-transition-duration: 22s;
	transition-duration: 22s;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
	overflow: hidden;
}
.rotate:hover {
	-webkit-transform: rotate(99deg) translate(2200px) scale(.01, 25);
	-moz-transform: rotate(99deg) translate(2200px) scale(.01, 25);
	-o-transform: rotate(99deg) translate(2200px) scale(.01, 25);
}
table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: auto;
  width: 100%;
}