@charset "UTF-8";
@font-face {
    font-family: "mplus-1p";
    src: url('fonts/mplus-1p-regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "mplus-1p";
    src: url('fonts/mplus-1p-black.ttf');
    font-weight: bold;
    font-style: bold;
}
@font-face {
    font-family: "din_alternate";
    src: url('fonts/din_alternate_bold-webfont.ttf'),
         url('fonts/din_alternate_bold-webfont.woff2') format('woff2'),
         url('fonts/din_alternate_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "din_alternate";
    src: url('fonts/din_condensed_bold-webfont.ttf'),
         url('fonts/din_condensed_bold-webfont.woff2') format('woff2'),
         url('fonts/din_condensed_bold-webfont.woff') format('woff');
    font-weight: bold;
}

body {
  font-family: "mplus-1p";
  margin: 0;
  padding: 0;
  background-color:#050505;
  color: #DDDDDD;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, 
  it's best practices to zero padding and margin on lists. 
  For consistency, you can either specify the amounts you want here, 
  or on the list items (LI, DT, DD) they contain. 
  Remember that what you do here will cascade to the .nav list unless 
  you write a more specific selector. */
    /* font: "mplus-1p"; */
    font-family: "din_alternate";
    font-weight: normal;
    font-size: 18px;
	padding: 0;
    padding-left: 30px;
    padding-bottom: 20px;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: "din_alternate";
	margin-top: 0;	 /* removing the top margin gets around an issue where 
  margins can escape from their containing div. The remaining bottom margin 
  will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements 
  within the divs, instead of the divs themselves, gets rid of any box model 
  math. A nested div with side padding can also be used as an alternate method. */
}

h1, h2, h3, h4, h5, h6 {
    padding-bottom: 0px;
    margin-bottom: 5px;
    padding-top: 25px;
}

h1 {
	font-size: 36px;
	color: #09BAEE;
}

h2 {
	font-size: 30px;
    text-decoration: underline;
}

h3 {
    font-size: 24px;
    margin-top: 15px;
}

h4 {
    font-size: 21px;
    margin-top: 15px;
}

p {
    font-size: 18px;
}

b {
    font-size: 22px;
}

a img { /* this selector removes the default blue border displayed in some 
  browsers around an image when it is surrounded by a link */
	border: none;
}
    
/* ~~ Styling for your site's links must remain in this order - including 
 * the group of selectors that create the hover effect. ~~ */
a:link {
	color: #09BAEE;
    border-bottom: none;
}

a:visited {
	color: #2CA5D3;
    border-bottom: none;
}

a:hover {
    text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard 
  navigator the same hover experience as the person using a mouse. */
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 882px;
	background-color: #202020;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    padding-left: 15px;
}

.banner {
	height: 350px;
	border-bottom: 2px solid #333333;
	font-size: 125px;
	padding-top: 36 px;
	padding-left: 95px;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final 
  element following the last floated div (within the #container) if the overflow:hidden 
  on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.content {
	padding: 10px;
}

.error {
  color: #F00;
}

.fltlft { /* this class can be used to float an element left in your page. 
  The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.fltrt {  /* this class can be used to float an element right in your page. 
  The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.footer {
    font-weight: bold;
	padding-top: 50px;
	font-size: 15px;
	color: #999;
	line-height: 4px;
}

.header {
	height: 100px;
}

.navbar {
    font-family: "din_alternate";
	font-size: 24px;
	display:inline-block;
    overflow: hidden;
    position: fixed;
    top: 0px;
    z-index: 100;
    margin-left: -18px;
}

.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100;
}

.sticky + .content {
    padding-top: 0px;
}

.postHead {
    font-family: "din_alternate";
	text-align: left;
    font-size: 75px;
    padding-bottom: 20px;
    padding-left: 15px;
    background: -webkit-linear-gradient(#09BAEE, #2CA5D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.playing {
	max-height: 400px;
	width: 450px;
	text-align: center;
}

.slideshow {
	width: 900px;
	height: 400px;
	overflow:hidden;
}

.splishSplashBar {
	height: 100px;
}

.splishSplashPic {
	height: 500px;
	border-bottom: 2px solid #333333;
}

.waller {
	height: 180px;
	border-bottom: 2px solid #333333;
	font-size: 125px;
	padding-top: 36 px;
	padding-left: 95px;
	background-image: url(../images/banner.png)
}

.tag {
    height: 30px;
    background: #09BAEE;
    border-radius: 7px 20px 20px 20px;
    color: #050505;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: middle;
}

.splash_page_links {
    background-color: rgba(50, 50, 50, 0.5); 
    padding-top: 20px; 
    padding-bottom: 5px;
}

.box__file {
    background-color: gray;
    outline: 2px dashed white;
    outline-offset: -7px;
    display: block;
    padding-top: 20px;
    padding-left: 15px;
    margin-top: -100px;
    min-height: 900px;
    width: 200px;
}

.hover_img a
{
    position:relative;
}
.hover_img a span
{
    position: absolute;
    display: none;
    z-index: 99;
}
.hover_img a:hover span
{
    display: block;
}

.yui3-slideshow-content {
	position: relative;
}
.yui3-slideshow-content img {
	position: absolute;
}

td.scroll div {
	background-color: #000000;
	width: 450px;
	height: 400px;
	overflow: scroll;
}

td.hidden div {
	background-color:#000000;
	width: 450px;
	height: 400px;
	overflow: hidden;
}
/* CSS Document */

