   <!-- Scroll to top -->
.myButton {
	-moz-box-shadow: 0px 10px 14px -7px #276873;
	-webkit-box-shadow: 0px 10px 14px -7px #276873;
	box-shadow: 0px 10px 14px -7px #276873;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
	background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
	background-color:#599bb3;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:13px 32px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
	background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
	background-color:#408c99;
}
.myButton:active {
	position:relative;
	top:1px;
}
   
   .parent {
    margin: 0 auto;
    width: 100%;
    text-align: left;
   }
   div.video {
    width: 300px;
    margin: 5px;
    padding: 5px;
    border: 1px solid #0000ff;
    display:inline-block;
	text-align: center;
   }
   div.desc {
    font-weight: normal;
    width: 120px;
    margin: 5px;
   }
   .flowplayer {
  background-color: #bbb; /* background-color triggers poster setup */
}
/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

<!-- Contact Form -->
* {
    box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

/* Style the container/contact section */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
    float: left;
    margin-top: 6px;
    padding: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

div.video_container {
    width: 60% !important;
    margin: 10px;
    padding: 10px;
    border: 1px solid #0000ff;
    display:inline-block;
  text-align: center;
   }
   
/* Player parent DIV  */
.play-parent {
	width:100%;  /* width depends on your layout and needs  */
	position:relative;
	overflow:hidden;
}
/* Semi-transparent DIV element to cover entire player */
.div-over {
	background:rgba(0,0,0,0.5);
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	z-index:99;
	display:none;
	overflow:hidden;
}
/* Centered DIV element for our banner ad */
.overlay {
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	display:inline-block;
}
/* Close button */
.over-close {
    width: 28px;
    height: 28px;
	line-height:28px;
	text-align:center;
	font-size:18px;
	font-family: sans-serif;
    position: absolute;
	top:10px;
	right:10px;
	background:#fff;
	cursor:pointer;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
}
.div-over .no-click {
	pointer-events:none;
}
.div-over .no-click:before, .div-over .no-click:after {
	border-width:0;
}
.over-close:after {
    content: '';
    height: 16px;
    border-left: 2px solid #222;
    position: absolute;
    transform: rotate(45deg);
    left: 13px;
	top:6px;
}

.over-close:before {
    content: '';
    height: 16px;
    border-left: 2px solid #222;
    position: absolute;
    transform: rotate(-45deg);
    left: 13px;
	top:6px;
}
.fullsize {
	width:100%; height:100%;position:relative;
}
.container {
	width:100%;
	max-width:860px;
	margin:0 auto;
	margin-top:25px;
	font-size:14px;
	text-align:left;
	line-height:1.7em;
	margin-bottom:80px;
	padding:0 10px;
}
.container .mark {
	color:#128DEB;
}
.container .comment {
	color:#009900;
}
.container .info {

	text-align:center;
}
.container .warn {
	padding:8px;
	border:solid 1px #cc0000;
}
video {
	width:100%!important;
	height:100%!important;
}
.media-parent {
	width: 100%;
    position: relative;
    padding-top: 56.25%;
    height: auto;
    margin-top: 15px;
}
.media-child {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: none!important;
    min-height: 0!important;
    max-width: 100%;
    width: 100%;
}
ul {
	display: table;
    line-height: 2em;
    margin: 40px auto;
	font-size:16px;
}

.footer {
    width: 100%;
    line-height:35px;
    cursor: pointer;
    background-color: #000000;
	text-align:center;
	color:#a5a5a5;
	font-family:Arial,sans-serif;
	font-size:12px;
	z-index:111;
	position:fixed;
	bottom:0;
}
.footer a {
	color:#ffff!important; 
	text-decoration:none;
}
.footer-light {
	background: #e5e5e5;
	border-top: solid 1px #fff;
	color: #333333;
}
.footer-light a {
	color:#990000!important; 
}
pre {
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    white-space: pre\9;
    background: #e9e9e9;
    border: 1px solid #fff;
    color: #700;
    font-size: 12px;
    line-height: 1.5em;
    margin: 10px 0;
    padding: 5px 20px;
    text-align: left;
    -moz-tab-size:    4; /* Firefox 4+ */
    -o-tab-size:      4; /* Opera 11.5 & 12.1 only */
    tab-size:         4; /* Chrome 21+, Safari 6.1+, Opera 15+ */
}
#player_one, #player_1, #player_2  {
	width:100%; 
}
.explain {
	padding: 15px;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.7em;
}
.button {
	border-radius: .1875rem;
    -border-border-radius: .1875rem;
    -moz-border-radius: .1875rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: Arial,sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    padding: 10px 14px;
    text-align: center;
    transition: 150ms ease-in-out;
    transition-property: background-color,color;
    white-space: nowrap;
    word-spacing: normal;
    -webkit-font-smoothing: subpixel-antialiased;
	cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
	outline:none;
    background-color: #303f53;
    color: #fff;
}
.button:hover {
    background: #bdc3c7;
    color: #000;
}
}
.autotable {
	margin:20px auto;
	display:table;
	font-weight:bold;
}
.events {
	min-height: 25px;
    display: table;
    margin: 0 auto;
}
.events span {
	padding: 2px 5px;
    border: solid 1px #666;
    margin: 0 3px;
}
.live-stream {
	text-align:center; 
	margin-top:10px;
}
.live-stream select {
	font-size:15px;
	padding: 8px 4px;
	border: solid 1px #999;
	-webkit-border-radius:6px;
	border-radius:6px;
}
.live-warn {
    background: #cc0000;
    color: #fff;
    display: table;
    margin: 10px auto;
    padding: 0 6px;
}
.tracker {
   width:100%;
   min-height:100px;
   background:#222;
   color:#fff;
   padding:12px;
   margin-top:10px;
   text-align:left;
 }