*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
}
	
html {
  height: 100%;
}
	
body {
  font-family: 'Titillium Web', sans-serif;
  background-color: #666;
background-image: url("http://mofleagues.com/pictures/mofbg2020.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
  position: relative;
  margin: 0;
  padding-bottom: 4rem;
	min-height: 100vh;
	font-size: 14px;
}

span { 
	display:block; margin-top: 0.05em; margin-bottom: 0.4em;  margin-left: 0px; margin-right: -5px; width: 110px; float:left; height:1.5px;}


.line{
    width: 1175px;
}

.line2 {
    width: 350px;
}

.line3 {
    width: 720px;
}


.color-1{
    background: red; width: 200px; 
}
.color-2{
    background: #cccccc; width: 950px; 
}
.color-3{
    background: #444444;
}
.color-4{
    background: #444444;
}
.color-5{
    background: #444444;
}
.color-6{
    background: #444444;
}
.color-7{
    background: #444444;
}
.color-8{
    background: #444444;
}
.color-9{
    background: #444444;
}
.color-10{
    background: #444444;
}

.color-11{
    background: red; width: 100px; 
}
.color-12{
    background: #cccccc; width: 235px; 
}

.color-13{
    background: red; width: 300px; 
}
.color-14{
    background: #cccccc; width: 420px; 
}

h2 {
font-size: 21px;
line-height: 1px;
	color: #171717;
}

h3 {
font-size: 18px;
	font-weight: bold;
line-height: 1px;
	color: #171717;
}

h4 {
font-size: 14px;
	font-weight: bold;
line-height: 1px;
	color: #171717;
}

h5 {
font-size: 25px;
	font-weight: bold;
	color: #3A3A3A;
	line-height: 35px;
	margin-top: -0.8px;
	margin-bottom: 8px;
	letter-spacing: -0.04em; 
	opacity: 0.9;
}

h6 {
font-size: 20px;
	font-weight: bold;
	color: #3A3A3A;
		display: inline-block;
  margin: 5px 10px 0px 0px;
}

h7 {
font-size: 14px;
	font-weight: bold;
	font-style: italic;
	color: #909090;
			display: inline-block;
  margin: 0px 20px 0px 0px;
}

.stats {
  margin: 0px 20px 0px 10px;
}

.one { font-style: bold; }
.two { font-style: italic; }

.copyright {
	font-size: 11px;
	font-weight: normal;
}

.columntext {
font-size: 11px;
	font-weight: bold;
display: flex;
opacity: 0.7;
}

.columnheader {
font-size: 18px;
display: flex;
font-weight: bold;
color: black;
	margin-top: -3px;
}

.hrgray {
       display: block;
       position: relative;
       padding: 10px 0 10px 0;
       margin: 10px 0 10px 0;
       height: 0;
       width: 100%;
       max-height: 1;
       font-size: 1px;
       line-height: 0;
	   border: none;
	   border-top: 1px solid #ccc;
	   opacity: 0.4;
    }

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #D50A0A; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	font-size: 15;
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
	}

<!--
        function makeArray() {
          for (i = 0; i < makeArray.arguments.length; i++)
            this[i] = makeArray.arguments[i];
        }

        function getFullYear(d) {
          var y = d.getYear();
          if (y < 1000) {
            y += 1900
          };
          return y;
        }

        var days = new makeArray("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
        var months = new makeArray("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

        function format_time(t) {
            var Day = t.getDay();
            var Date = t.getDate();
            var Month = t.getMonth();
            var Year = getFullYear(t);
            timeString = "";
            timeString += days[Day];
            timeString += " ";
            timeString += months[Month];
            timeString += " ";
            timeString += Date;
            timeString += ", ";
            timeString += Year;
            return timeString;
          }
// -->

        m = new Date(document.lastModified);
        d = new Date();
        $(function() {
          $('.timestamp').html(format_time(m))
        });

.timestamp-wrap { font-size : 22px; font-family : 'Open Sans'; }
.timestamp { color: green; }
