@charset "utf-8";
/* CSS Document */

/************************************************************************************
COLOUR PALETTE

******************
202122
******************

DARK BLUE
#263148

RED
#ca112d

OFF WHITE
#f0e8e3

PALE BLUE
#4a4f69

GREY
#998b98


*************************************************************************************/

@font-face {
    font-family: 'Bebas';
    src: url('../fonts/BebasNeue.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato-Reg.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'getvoip_grotesqueregular';
    src: url('../fonts/getvoip_grotesque-webfont.woff2') format('woff2'),
         url('../fonts/getvoip_grotesque-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'opensans';
  src: url('../fonts/OpenSans-CondLight-webfont.eot'); /* IE9 Compat Modes */
  src: url('../fonts/OpenSans-CondLight-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/OpenSans-CondLight-webfont.woff') format('woff'), /* Modern Browsers */
       url('../fonts/OpenSans-CondLight-webfont..ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/OpenSans-CondLight-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    font-weight: normal;
    font-style: normal;
}

body {
	margin: 0;
	background: url("../images/002_background_1788x1006px.png");
	background-position: center center;
	background-repeat:no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #eaeaea;
	color: #101e22;
	font-family: OpenSans;
	font-weight: normal;
	font-style: normal;
	font-size: large;
}

.interviewbold {
	color:#101e22;	
	font-family: OpenSans;
	font-weight: bold;
	font-style: normal;
	font-size:large;
}
.interviewrow {
	color:#101e22;	
	font-family: OpenSans;
	font-weight: bold;
	font-style: normal;
	font-size:large;
	background-color:#67535e;
}
.interviewquestion {
	color:#101e22;	
	font-family: OpenSans;
	font-weight: bold;
	font-style: normal;
	font-size:large;
	background-color:#5f3049;
}
.interviewanswer {
	color:#101e22;	
	font-family: OpenSans;
	font-weight:normal;
	font-style: italic;
	font-size:large;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Bebas;
    font-weight: normal;
    font-style: normal;
	margin-bottom:0px;
}
a:link {
	color: #101e22;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #101e22;
}
a:hover {
	text-decoration: underline;
	color: #eaeaea;
	background-color: #e2272a;
}
a:active {
	text-decoration: underline;
}
a.class2:link {
	color: #eaeaea;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
}
a.class2:visited {
	text-decoration: underline;
	color: #eaeaea;
	font-family: Arial, Helvetica, sans-serif;
}
a.class2:hover {
	text-decoration: underline;
	color: #eaeaea;
	font-family: Arial, Helvetica, sans-serif;
}
a.class2:active {
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
}
a.hovernone:link, a.class3:link, a.class3:active, a.class3:visited {
	color: #e9e9e9;
	background: none;
	text-decoration: none;
}
a.class3:hover {
	text-decoration: underline;
}


/************************************************************************************
NAV
*************************************************************************************/
/* comment */

nav{
  position: relative;
  z-index: 99;
  width: 100%;
  border-top: 1px solid #FF01FE;
  border-bottom: 1px solid #FF01FE;
  background: #0A0B60;
}
nav .wrapper{
  position: relative;
  max-width: 800px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: inline-flex;
  font-family: getvoip_grotesqueregular;
  text-transform: uppercase;
}
.nav-links li{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #FF01FE;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: absolute;
  background: #010041;
  width: 285px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 5px 0 5px 15px;
  font-size: 16px;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 96%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #010041;
  padding: 25px 0px 25px 35px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}


/************************************************************************************
ALL TABLES
*************************************************************************************/
/* Zebra striping */
table.standard {
	width: 100%;
	margin-bottom: 0px;
	border-collapse: collapse;
	text-align: left;
}
/* Zebra striping */
table.standard th { 
	color: #f0e8e3;
	background: #263148;
	text-align: left;
	padding: 2px 2px;
}
table.standard td { 
    padding: 2px 2px;
}
table.standard tr:nth-of-type(odd) { 
  color: #263148; 
  background: #e2e1e7; 
}
table.standard tr:nth-of-type(even) { 
  color: #263148; 
  background: #f1f1f3; 
}
table.standard tr:hover { 
	color: #f0e8e3;
	background: #263148;
}

/* horizontal quicklinks menu */

.quicklink {
	width:10.4%;
	float:left;
	text-align:center;
	padding:10px;
	overflow:auto;
	vertical-align:bottom;
	color: #f0e8e3; 
	background-color:#263148;
	font-size: 26px; 
	font-family: bebas; 
	font-weight: normal;
	font-style: normal;
	line-height:26px;
}

.quicklink:hover {
	color: inherit; 
	background-color:#ca112d;
}

.quicklink a:link {
	color: inherit; 
	background-color:#263148;
}
.quicklink a:visited {
	color: inherit; 
	background-color:#263148;
}
.quicklink a:hover {
	color: inherit; 
	background-color:#ca112d;
}
.quicklink a:active {
	color: inherit; 
	background-color:#263148;
}

/* header */

#headerclockwrapper {
	width:100%; 
	background-color: #010041;
	color: #fff;
	overflow: hidden; /* Hide scrollbars */
	margin:auto;
}

#headerclockcontainer {
	width:980px; 
	background-color:none; 
	overflow:auto; 
	margin:auto
}

.clockcontent {
	color: #fff;
	font-family: Courier New;
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:right; 
	text-align:right; 
	display: inline;
}

#headerlogowrapper {
	width:100%; 
	background-color:#0A0B60; 
	overflow: hidden; /* Hide scrollbars */
	margin:auto
}

#headerlogocontainer {
	width:980px; 
	background-color: none; 
	overflow: auto; 
	padding-top: 25px;
	padding-bottom: 25px;
	margin: auto;
	text-align: center; 
	font-family: Bebas;
    font-weight: normal;
    font-style: normal;
	font-size: 50px;
}

#headermenuwrapper {
	width:100%; 
	background-color:#263148; 
	overflow:auto; 
	margin:auto
}

#headermenucontainer {
	width:980px; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none; 
	overflow: auto; 
	margin: auto;
}

/************************************************************************************
TOP MENU
*************************************************************************************/
table.topmenu { 
	background-color: none; 
	text-align: center; 
	width: 960px; 
	color: #f0e8e3; 
	font-size: 22px; 
	font-family: bebas; 
	font-weight: normal;
	font-style: normal;
	margin: 0; 
	border-width: 0; 
	border-collapse:collapse;}

table.topmenu td:hover {color: #f0e8e3; background:#ca112d;}

table.topmenu a:link,
table.topmenu a:visited {color: #f0e8e3; background: none; text-decoration: underline; }
table.topmenu a:hover,
table.topmenu a:active {color: #f0e8e3; background: #ca112d; text-decoration: underline; }

/************************************************************************************
SUB TOP MENU
*************************************************************************************/

table.menu { 
	position:absolute; 
	visibility:hidden; 
	z-index:1000; 
	background:#263148; 
	text-align: center; 
	font-size: 18px; 
	font-family: bebas; 
	font-weight: normal;
	font-style: normal;
	margin: 0; 
	border-collapse:collapse;
}
table.menu th {
	color: #f0e8e3; 
	background:none; 
	text-align: center; 
	font-size: 18px; 
	font-family: bebas; 
	font-weight: normal;
	font-style: normal;
}
table.menu td { line-height: 16px; padding: 5px 10px; }

table.menu tr:hover {color: #f0e8e3; background: #ca112d;}

table.menu a:link,
table.menu a:visited {color: #f0e8e3; background: none; text-decoration: underline; }
table.menu a:hover,
table.menu a:active {color: #f0e8e3; background: #ca112d; text-decoration: underline; }

table.menuhead th {
	color: #f0e8e3; 
	background: none; 
	text-decoration: underline; 
}
table.menuhead a:hover {color: #f0e8e3; background: none; text-decoration: underline; }


/* all pages */

.titleblock {
	font-family: getvoip_grotesqueregular;
	text-align: left;
	font-weight: normal;
	font-style: normal;
	width: auto;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: #f0e8e3; 
	background-color: #263148;
	font-size: 22px;
	border-radius: 0px;
	text-transform: uppercase;
 	clear:both;
 }

.sub-titleblock {
	font-family: getvoip_grotesqueregular;
	font-weight: normal;
	font-style: normal;
	width: auto;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: #f0e8e3; 
	background-color: #263148;
	font-size: 16px;
	text-transform: uppercase;
}
.sub-titleleague {
	float:left;
	font-family: bebas;
	font-weight: normal;
	font-style: normal;
	width: auto;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: #1595a0; 
	background-color: #101e22;
	font-size: 16px;
}

.sub-titletabledate {
	font-family: OpenSans;
	font-weight: normal;
	font-style:italic;
	float:right;
}

.latestnewsheadline {
	text-align: left;
	font-family: getvoip_grotesqueregular;
	font-weight: normal;
	font-style: normal;
	font-size: 50px;
	line-height: 48px;
}

.middle-twitterfeeds {
	width:225px; 
	padding-left:0px; 
	padding-right:0px; 
	padding-bottom:10px; 
	background-color:none;
}

.rightcolumn {
	width:225px; 
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:left;
}

.rightcolumn-twitterfeeds {
	width:225px; 
	padding-left:0px; 
	padding-right:0px; 
	background-color:none;
}

.containerwrapper {
	width:980px; 
	padding-top: 10px; 
	background-color: none; 
	overflow:auto; 
	margin:auto
}

.container {
	width:auto; 
	padding-left:10px; 
	padding-right:10px; 
	background-color: none; 
	float:left;
}
.containerninesixty {
	width:960px; 
	padding-left:10px; 
	padding-right:10px; 
	text-align: center;
	background-color:none; 
	float:left;
}

.content {
	width:auto; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none;
}

/* homepage only blocks */

#leaguetablewrap {
	width:980px; 
	padding-top: 0px; 
	background-color:none; 
	overflow:auto; 
	margin:auto
}

#leaguetableblock {
	width:980px; 
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:left;
}

#leaguetabledata {
	float:left;
 	width:980px; 
	padding-left:0px; 
	padding-right:0px; 
	background-color:#eaeaea;
}

#submenu {
	width:205px; 
	padding-left:10px; 
	padding-right:10px; 
	padding-top:0px; 
	background-color: orange;
}

#latestnewsblock {
	width:470px; 
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:left;
}

#middle-column-quicklinks {
	margin:0px;
	padding-top:0px; 
	padding-left:10px; 
	padding-right:0px; 
	float:left; 
	width:225px; 
	background-color:none; 
}

#middle-column {
	width:225px; 
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:left;
}

#right-column {
	width:225px; 
	padding-left:10px; 
	padding-right:10px; 
	background-color:none; 
	float:left;
}

/* squad page blocks */

.squadplayers {
	width: 280px; 
	padding-left: 0px; 
	padding-right: 0px; 
	padding-top: 74px; 
	background-color: none; 
	float: left;
}

.squadplayers {
	width: 280px; 
	padding-left: 0px; 
	padding-right: 0px; 
	padding-top: 74px; 
	background-color: none; 
	float: left;
}

.squadpointsmenu {
	width: 260px;
	padding-left: 0px;
	padding-right: 20px;
	padding-top: 3px;
	padding-bottom: 2px;
	background-color: none;
	text-align: right;
}

.squadpointswrapper {
	width:410px; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none; 
	float:left;
}

.idtabsmenulist {
	display: inline; 
	list-style-type: none; 
	padding-right: 20px;
}

.squadpointsaugnov {
	width:25%; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none; 
	float:left;
}

.squadpointsdecfeb {
	width:33%; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none; 
	float:left;
}

.squadpointsmarmay {
	width:33%; 
	padding-left:0px; 
	padding-right:0px; 
	background-color: none; 
	float:left;
}

.squadpointstotal {
	width:25px; 
	padding-left:0px; 
	padding-right:0px; 
	padding-top:74px; 
	background-color: none; 
	float:left;
}

#navlist li
{
display: inline;
list-style-type: none;
padding-right: 20px;
}

/************************************************************************************
LEAGUE TABLE
*************************************************************************************/
table.leaguetable { 
	color: #263148; 
	font-family: 'Bebas', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 30px;
	text-align: center; 
	width: 980px; 
	margin-bottom: 0; 
	padding: 0; 
	border-collapse: collapse; }
/* Zebra striping */
table.leaguetable tr:nth-of-type(odd) { 
  color: #263148; 
  background: #e2e1e7; 
}
table.leaguetable tr:nth-of-type(even) { 
  color: #263148; 
  background: #f1f1f3; 
}
/* table rows 
table.leaguetable tr:nth-of-type(1) { 
  color: #eaeaea; 
  background: #234951; 
}
table.leaguetable tr:nth-of-type(2) { 
  color: #eaeaea; 
  background: #24626a; 
}
table.leaguetable tr:nth-of-type(3) { 
  color: #eaeaea; 
  background: #217b84; 
}*/
table.leaguetable tr:nth-of-type(4) { 
  border-bottom: dotted 1px;
  border-bottom-color: #263148;
}
table.leaguetable a:link,
table.leaguetable a:visited {color: inherit; background: none; text-decoration: none; }
table.leaguetable tr:hover, 
table.leaguetable a:hover,
table.leaguetable a:active {color: #eaeaea; background: #263148; text-decoration: underline; }

table.leaguetable th { color: #f0e8e3; background: #263148; font-family: getvoip_grotesqueregular;text-transform: uppercase; text-align: center; padding: 7px 5px 6px 5px; }
table.leaguetable th + th + th { text-align: left;}
table.leaguetable th + th + th + th  + th { text-align: center;}

table.leaguetable td { font-weight: bold; padding-top: 5px; padding-bottom: 5px; border: solid 0 #ccc; text-align: center; }
table.leaguetable td + td + td { font-style: normal; font-weight: normal; text-align: left; /* styles the third td */   
}
table.leaguetable td + td + td + td { font-style: italic; text-align: center; /* styles the fourth td */   
}
table.leaguetable td + td + td + td + td { font-style: italic; text-align: center; /* styles the fifth td */   
}
table.leaguetable td + td + td + td + td + td + td  + td  + td { font-style: normal; text-align: center; /* styles the sixth td */
}

/* titleblock */

.titleblock-getvoip {
	font-family: getvoip_grotesqueregular;
	text-align: left;
	width: auto;
	padding: 25px;
	color: #f0e8e3; 
	background-color: #0D3BFF;
	font-size: 28px;
	border-radius: 20px;
	text-transform: uppercase;
 	clear:both;
 }

	
/* titleblock league table */
	
.flex-container {
    display: flex;
    align-items: center;
	padding: 15px;
	background-color: #0D3BFF;
	border-radius: 10px;
	margin-bottom: 25px;
}

.flex-child {
    margin-right: 20px;
	font-family: Courier New;
	font-style: normal;
	font-weight: bold;
	text-align: right;
	padding-left: 25px;
	color: #f0e8e3; 
	font-size: 16px;
} 	

.flex-child:first-child {
    flex: 1;
	font-family: getvoip_grotesqueregular;
	text-align: left;
	padding-left: 25px;
	color: #f0e8e3; 
	font-size: 28px;
	text-transform: uppercase;
}  
	
.banner-box {
  display: flex;
  justify-content: center;
  margin: 0px;
}
.banner {
  text-align: center;
  width: auto; 
  padding: 0px;
  background: #5F85DB;
  color: #fff;
  font-weight: bold;
}

/************************************************************************************
EXPANDED LEAGUE TABLE
*************************************************************************************/
table.expleaguetable th + th + th { text-align: left; width:150px;}
table.expleaguetable th + th + th + th { text-align: center; width:auto;}

table.expleaguetable th {
	font-size: 12px!important;
}
table.expleaguetable td {
	width: 30px;
	font-weight: normal;
	font-style: normal;
}
table.expleaguetable td + td + td { font-size: medium; font-style: normal; font-weight: normal; text-align: left; width: 150px; /* styles the third td */   
}
table.expleaguetable td + td + td + td { text-align: center; width:auto; /* styles the fourth td */   
}

/************************************************************************************
SUPERCUP TABLE
*************************************************************************************/
table.supercup { 
	color: #f1f3f5; 
	font-family: Bebas;
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	text-align: center; 
	width: 100%; 
	margin-bottom: 0; 
	padding: 0; 
	border-collapse: collapse; 
}
/* Zebra striping */
table.supercup tr:nth-of-type(odd) { 
  background: #96DCD4; 
}
table.supercup tr:nth-of-type(even) { 
  background: #7ED5CD; 
}
table.supercup tr:nth-of-type(1) { 
  background: #20BCAD; 
}
table.supercup tr:hover {
	background: #193d58;
	color: #f1f3f5;
}
table.supercup a:link {color: #f1f3f5; background: none; text-decoration: underline; }
table.supercup a:visited {color: #f1f3f5; background: none; text-decoration: underline; }
table.supercup a:hover {color: #f1f3f5; background: #193d58; text-decoration: underline; }
table.supercup a:active {color: #f1f3f5; background: #193d58; text-decoration: underline; }

table.supercup th { background: #101e22; color: #eaeaea; font-size: medium; font-weight: bold; text-align: center; padding-top: 7px; padding-bottom: 6px; }
table.supercup th + th + th { text-align: left;}
table.supercup th + th + th + th { text-align: center;}

table.supercup td, th { font-weight: bold; padding: 0px; border: solid 0 #20BCAD; text-align: center; }
table.supercup td + td + td { font-weight: normal; text-align: left; /* styles the third td */   
}
table.supercup td + td + td + td { font-weight: normal; text-align: center; /* styles the third td */   
}

/************************************************************************************
SUPERCUP RESULTS
*************************************************************************************/
table.supercupresults { text-align: center; width: 715px; margin-bottom: 0; padding: 0; border-collapse: collapse; }
table.supercupresults th { width: 300px; color: #101e22; text-align: right; }
table.supercupresults th + th {font-size: 32px; color: #20BCAD; font-style: normal; text-align: center; }
table.supercupresults th + th  + th  + th  {color: #101e22; width: 300px; text-align: left; }

table.supercupresults td { width: 300px; color: #101e22; text-align: right; }
table.supercupresults td + td { color: #20BCAD;  text-align: center; }
table.supercupresults td + td  + td  + td  {color: #101e22; width: 300px; text-align: left; }

table.supercupresults tr:nth-of-type(odd) {
	color: #101e22; 
	font-size: small; 
	font-style: italic; 
	font-weight: normal; 
}
table.supercupresults tr:nth-of-type(even) {
	color: #101e22; 
	font-size: 32px; 
	font-style: normal; 
	font-weight: bold; 
}


/************************************************************************************
5ASIDE CUP TABLE
*************************************************************************************/
table.fiveaside { 
	font-family: Bebas;
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	text-align: center; 
	width: 100%; 
	margin-bottom: 0; 
	padding: 0; 
	border-collapse: collapse; 
}
table.fiveaside tr:nth-of-type(9) { 
  color: #101e22; 
  background: #bdc4c7; 
}
table.fiveaside tr:nth-of-type(10) { 
  color: #101e22; 
  background: #8e9b9f; 
}
table.fiveaside tr:nth-of-type(11) { 
  color: #101e22; 
  background: #bdc4c7; 
}
table.fiveaside tr:nth-of-type(12) { 
  color: #101e22; 
  background: #8e9b9f; 
}
table.fiveaside tr:nth-of-type(13) { 
  color: #101e22; 
  background: #bdc4c7; 
}
table.fiveaside tr:nth-of-type(14) { 
  color: #101e22; 
  background: #8e9b9f; 
}
table.fiveaside tr:nth-of-type(15) { 
  color: #101e22; 
  background: #bdc4c7; 
}
table.fiveaside th { font-size: medium; font-weight: bold; text-align: center; padding-top: 7px; padding-bottom: 6px; }
table.fiveaside th + th + th { text-align: left;}
table.fiveaside th + th + th + th { text-align: center;}

table.fiveaside td, th { font-size: medium; font-weight: bold; padding: 4px; border: solid 0 #ccc; text-align: center; }
table.fiveaside td + td + td { font-size: medium; font-weight: normal; text-align: left; /* styles the third td */   
}
table.fiveaside td + td + td + td { font-size: medium; font-weight: normal; text-align: center; /* styles the third td */   
}

/************************************************************************************
TRANSFERS TABLE
*************************************************************************************/
table.transfers {
	width: 960px;
	margin-bottom: 0px;
	border-collapse: collapse;
	text-align: left;
}
/* Zebra striping */
table.transfers th { 
  	background: #101e22; 
	color: #eaeaea;
	text-align: left;
	padding: 2px 2px;
}
table.transfers td { 
    padding: 2px 2px;
}
table.transfers tr:nth-of-type(1) { 
  background: #101e22; 
	color: #eaeaea;
}
/************************************************************************************
POOLPLAYERS TABLE
*************************************************************************************/
table.poolplayers {
	width: 100%;
	margin-bottom: 0px;
	border-collapse: collapse;
	text-align: left;
}
/* Zebra striping */
table.poolplayers th { 
	color: #eaeaea;
	background: #101e22;
	text-align: left;
	padding: 2px 2px;
}
table.poolplayers tr:nth-of-type(odd) { 
  color: #101e22; 
  background: #fbfbfb; 
}
table.poolplayers tr:nth-of-type(even) { 
  color: #101e22; 
  background: #f6f6f6; 
}
table.poolplayers tr:hover { 
	background: #101e22;
	color: #eaeaea;
}
table.poolplayers td { 
    padding: 2px 2px;
}

/************************************************************************************
AUCTION TABLE
*************************************************************************************/
table.auction {
	width: 100%;
	margin-bottom: 0px;
	border-collapse: collapse;
	text-align: left;
}
/* Zebra striping */
table.auction th { 
	background: #e16543;
	text-align: left;
	padding: 2px 2px;
}
table.auction tr:nth-of-type(odd) { background: #dbe2e9;}
table.auction tr:nth-of-type(even) { background: #c9d3de;}
table.auction tr:hover { 
	background: #f2eb77;
	color: #1e3e51;
}
table.auction td { 
    padding: 2px 2px;
}

/************************************************************************************
VIDIPRINTER TABLE
*************************************************************************************/
table.fwp4table {
	width: 960px;
	margin-bottom: 0px;
	border-collapse: collapse;
	text-align: left;
}
/* Zebra striping */
table.fwp4table th { 
	background: #e2272a;
	color: #eaeaea;
	text-align: left;
	padding: 5px 5px;
}
table.fwp4table tr:nth-of-type(odd) { 
  color: #101e22; 
  background: #fbfbfb; 
}
table.fwp4table tr:nth-of-type(even) { 
  color: #101e22; 
  background: #f6f6f6; 
}
table.fwp4table tr:hover { 
	background: #e2272a;
	color: #eaeaea;
}
table.fwp4table td { 
    padding: 5px 5px;
}

/************************************************************************************
SFPCUP TABLE
black #101e22
pink #e2272a
sfp cup yellow #f8ce4a

background: #bdc4c7; 
background: #8e9b9f; 


*************************************************************************************/
table.sfpcup { text-align: center; width: 100%; margin-bottom: 20px; padding: 0; border-collapse: collapse; background-color:none;}
/* Zebra striping */
table.sfpcup-a tr:nth-of-type(odd) { 
  color: #f0e8e3;
  background: #E74C3C; 
}
table.sfpcup-a tr:nth-of-type(even) { 
  color: #f0e8e3;
  background: #cf4436; 
}
table.sfpcup-b tr:nth-of-type(odd) { 
  color: #f0e8e3;
  background: #3498DB; 
}
table.sfpcup-b tr:nth-of-type(even) { 
  color: #f0e8e3;
  background: #2f89c5; 
}
table.sfpcup tr:nth-of-type(5) { 
  color: #263148;
  background: #bdc4c7; 
}
table.sfpcup tr:nth-of-type(6) { 
  color: #263148;
  background: #8e9b9f; 
}
table.sfpcup tr:nth-of-type(7) { 
  color: #263148;
  background: #bdc4c7; 
}
table.sfpcup tr:nth-of-type(8) { 
  color: #263148;
  background: #8e9b9f; 
}
table.sfpcup tr:hover {
  color: #f0e8e3;
  background: #263148;
}
table.sfpcup a:link {color: #eaeaea; background: none; text-decoration: underline; }
table.sfpcup a:visited {color: #eaeaea; background: none; text-decoration: underline; }
table.sfpcup a:hover {color: #eaeaea; background: #263148; text-decoration: underline; }
table.sfpcup a:active {color: #eaeaea; background: #263148; text-decoration: underline; }

table.sfpcup th { background: #101e22; color: #eaeaea; font-size: medium; font-weight: bold; text-align: center; padding-top: 7px; padding-bottom: 6px; }
table.sfpcup th + th + th { text-align: left;}
table.sfpcup th + th + th + th { text-align: center;}

table.sfpcup td, th { font-size: medium; font-weight: bold; padding: 0px; border: solid 0 #ccc; text-align: center; height:30px;}
table.sfpcup td + td + td { font-size: medium; font-weight: normal; text-align: left; /* styles the third td */   
}
table.sfpcup td + td + td + td { font-size: medium; font-weight: normal; text-align: center; width:18px; /* styles the third td */   
}

/************************************************************************************
SFPCUP RESULTS
*************************************************************************************/
table.sfpcupresultsdate { width:auto; }
table.sfpcupresultsdate th { font-size:24px; font-style: normal; font-weight: normal; text-align:center; }

table.sfpcupresults { text-align: center; width: 715px; margin-bottom: 0; padding: 0; border-collapse: collapse; }
table.sfpcupresults th { width: 150px; text-align: left; }
table.sfpcupresults th + th { text-align: center; }
table.sfpcupresults th + th  + th  + th  { width: 150px; text-align: left; }
table.sfpcupresults th + th + th + th + th  {text-align: center; }
table.sfpcupresults th + th + th + th + th + th { width: 150px; text-align: left; }
table.sfpcupresults th + th + th + th + th + th + th { text-align: center; }
table.sfpcupresults th + th + th + th + th + th + th  + th  + th { width: 150px; text-align: left; }

table.sfpcupresults td { width: 150px;  text-align: right; }
table.sfpcupresults td + td { width: 20px;  text-align: center; }
table.sfpcupresults td + td + td + td { width: 150px;  text-align: left; }
table.sfpcupresults td + td + td + td + td  { width: 35px;  text-align: center; }
table.sfpcupresults td + td + td + td + td + td { width: 150px; text-align: right; }
table.sfpcupresults td + td + td + td + td + td + td { width: 25px;  text-align: center; }
table.sfpcupresults td + td + td + td + td + td + td + td + td { width: 150px; text-align: left; }

table.sfpcupresults th {
}
table.sfpcupresults tr:nth-of-type(odd) {
	color: #101e22; 
	font-size: 32px; 
	font-weight: bold; 
}
table.sfpcupresults tr:nth-of-type(even) {
	color: #101e22; 
	font-size: small; 
	font-style: italic; 
	font-weight: bold; 
}

/************************************************************************************
HONOURS TABLE
*************************************************************************************/
table.honours {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	border-collapse: collapse;
	text-align: center;
	font-style: normal;
}
table.honours th {
	font-style: normal;
    padding: 5px 5px;
	text-align: center;

}
table.honours td {
	font-style: normal;
	padding: 5px 5px;
	color: #eaeaeaae6;
}
table.honours th, table.honours td {
	width: 60px;
}
table.honours th + th, table.honours td + td {
	width: 90px;
}
/* Zebra striping */
table.honours th { background: #82221f;}
table.honours tr:nth-of-type(odd) { background: #7c807a;}
table.honours tr:nth-of-type(even) { background: #828781;}
table.honours tr:nth-of-type(odd):hover { 
  background: #5b4953; 
}
table.honours tr:nth-of-type(even):hover { 
  background: #5b4953; 
}

/************************************************************************************
RECORDS ROOM TABLE
*************************************************************************************/
table.records th{
	font-weight: bold;
}
table.records td{
	font-weight: bold;
}
table.records th + th {
	font-weight: normal;
}
table.records td + td {
	font-weight: normal;
}

/************************************************************************************
HALL OF FAME TABLE
darkblue 1 #45383f
darkblue 2 #5b4953
darkblue 3 #67535e
darkblue 4 #705b65

*************************************************************************************/
.hofinvisable {
	opacity:0;
}
table.hof, table.hofhons {
	width:100%;
	border-collapse:collapse;
	cellspacing:0;
	cellpadding:0;
}
table.hof th, table.hof td, table.hofhons th, table.hofhons td {
	font-style: normal;
	font-weight: normal;
    padding: 5px 5px;
	text-align: left;
	color: #eaeaeaae6;
	width:20px;
}
table.hof th + th, table.hof td + td, table.hofhons th + th, table.hofhons td + td {
	text-align: left;
	width:300px;
}
table.hof th + th + th, table.hof td + td + td {
	text-align: center;
	width:auto;
}
table.hofhons th + th + th, table.hofhons td + td + td {
	text-align: center;
	width:60px;
}

table.hof tr:nth-of-type(1) { 
  font:32px Bebas;
}
table.hof tr:nth-of-type(2) { 
  font:32px Bebas;
}
table.hof tr:nth-of-type(3) { 
  font:32px Bebas;
}
table.hof tr:nth-of-type(4) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(5) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(6) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(7) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(8) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(9) { 
  font:24px Bebas;
}
table.hof tr:nth-of-type(10) { 
  font:24px Bebas;
}

table.hofhons tr:nth-of-type(1) { 
  font:32px Bebas;
}
table.hofhons tr:nth-of-type(2) { 
  font:32px Bebas;
}
table.hofhons tr:nth-of-type(3) { 
  font:32px Bebas;
}
table.hofhons tr:nth-of-type(4) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(5) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(6) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(7) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(8) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(9) { 
  font:24px Bebas;
}
table.hofhons tr:nth-of-type(10) { 
  font:24px Bebas;
}

/* Sortable tables */
table.sortable th {
	font-style: normal;
    font-weight: normal;
    cursor: default;
}
table.sortable td {
	font-style: normal;
    font-weight: normal;
    cursor: default;
}
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { 
    content: " \25B4\25BE" 
}
/* Unsortable first column */
table.sortable tbody {
    counter-reset: sortabletablescope;
	font-style: normal;
    padding: 5px 5px;
	text-align:center;
	color: #eaeaeaae6;
}
table.sortable thead tr::before {
    content: "";
    display: table-cell;
	background: #82221f;
	width:50px;
}
table.sortable tbody tr::before {
    content: counter(sortabletablescope);
    counter-increment: sortabletablescope;
    display: table-cell;
    padding: 5px 5px;
	width:50px;
}

/* hof nonsort*/

table.hof2 {
	width:100%;
	border-collapse:collapse;
	cellspacing:0;
	cellpadding:0;
}
table.hof2 th{
	font-style: normal;
    font-weight: normal;
    padding: 5px 5px;
	text-align: left;
	color: #eaeaeaae6;
	width:auto;
}
table.hof2 td{
	font-style: normal;
	padding: 5px 5px;
	text-align: left;
	color: #eaeaeaae6;
	width:auto;
}
table.hof2 th + th{
	text-align: center;
	width:65px;
}
table.hof2 td + td{
	text-align: center;
	width:65px;
}

/* Zebra striping */
table.hof2 tr:nth-of-type(odd) { background: #7c807a;}
table.hof2 tr:nth-of-type(even) { background: #828781;}
table.hof2 tr:nth-of-type(odd):hover { 
  background: #5b4953; 
}
table.hof2 tr:nth-of-type(even):hover { 
  background: #5b4953; 
}

/* nonSortable tables */
table.nonsortable td {
	font-style: normal;
    font-weight: normal;
}
/* Unsortable first column */
table.nonsortable tbody {
    counter-reset: sortabletablescope2 34;
	font-style: normal;
    padding: 5px 5px;
	text-align:center;
	color: #eaeaeaae6;
	width:50px;
}
table.nonsortable thead tr::before {
    content: "";
    display: table-cell;
	background: #7c807a;
}
table.nonsortable tbody tr::before {
    content: counter(sortabletablescope2);
    counter-increment: sortabletablescope2;
    display: table-cell;
    padding: 5px 5px;
	width:50px;
}

/* ManagerOfTheMonth */
table.motm th {
	text-align:left;
	font:24px Bebas;
}
table.motm td {
	text-align:left;
	font:24px Bebas;
}
.myButton, .myButton:visited, .myButton:link {
	background-color:#263148;
	display:inline-block;
	cursor:pointer;
	color:#f0e8e3;
	font-family:bebas;
	font-size:22px;
	padding:10px 20px;
	text-decoration:none;
	border-radius: 10px;
}
.myButton:hover {
	background-color:#ca112d;
	color:#f0e8e3;
}
.myButton:active {
	position:relative;
	top:1px;
	background-color:#263148;
	color:#f0e8e3;
}

/* titleblock league table */
	
.flex-container {
	margin: 10px;
    display: flex;
    align-items: center;
	padding: 15px;
	background-color: #ca112d;
	border-radius: 10px;
	margin-top: 0px;
	margin-bottom: 25px;
}

.flex-child {
    margin-right: 20px;
	font-family: Courier New;
	font-style: normal;
	font-weight: bold;
	text-align: right;
	padding-left: 25px;
	color: #f0e8e3; 
	font-size: 16px;
} 	

.flex-child:first-child {
    flex: 1;
	font-family: getvoip_grotesqueregular;
	text-align: left;
	padding-left: 25px;
	color: #f0e8e3; 
	font-size: 28px;
	text-transform: uppercase;
}  
	
.banner-box {
  display: flex;
  justify-content: center;
  margin: 0px;
}
.banner {
  text-align: center;
  width: auto; 
  padding: 0px;
  background: #5F85DB;
  color: #fff;
  font-weight: bold;
	}

/* quick links test league table */
	
.flex-container-2 {
    display: flex;
    align-items: center;
	padding: 5px 15px;
	background-color: none;
	margin-top: 0px;
	margin-bottom: 0px;
	justify-content: center;
}

.flex-child-2 {
	background-color: #ca112d;
	border-radius: 20px;
	font-family: getvoip_grotesqueregular;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	color: #f0e8e3; 
	font-size: 16px;
	margin: 15px;
    width: 16.6667%;
	
} 	

/* USEFUL INFORMATION */

.flex-container-1 {
  display: flex;
  flex-wrap: nowrap;
  background-color: none;
}

.flex-container-1 > div {
  background-color:none;
  width: 16.6667%;
  margin: 10px;
  text-align: center;
  line-height: normal;
  font-size: 30px;
}

.responsive-roundel {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 50%;
  padding: 15px 30px;
}	

.responsive-roundel a:hover, a:active, a:link, a:visited {
  background: none;
  color: none;
}	

.nobackground {
	background-color: inherit;
}

/* FOOTER */

#footerwrapper {
	width:100%; 
	background-color: #263148;
	overflow:auto; 
	margin:auto
}

.footercontainer {
	width:980px; 
	background-color: none; 
	overflow: auto; 
	padding-top: 25px;
	padding-bottom: 25px;
	margin: auto;
	text-align: center; 
}

	.footer-item-1 {
	float: left;
	width: 440px;
	color: #e9e9e9;
	font-family: getvoip_grotesqueregular;
	text-align: left;
	padding : 10px;
/*	background: #f4f4f4;
	border: #ccc solid 2px; */
	margin: 10px;
	border-radius: 10px;
	}
	.footer-item-2 {
	float: left;
	width: 440px;
	color: #e9e9e9;
	font-family: getvoip_grotesqueregular;
	text-align: right;
	padding : 10px;
/*	background: #f4f4f4;
	border: #ccc solid 2px; */
	margin: 10px;
	border-radius: 10px;
	}
	.footer-item-3 {
	width: 940px;
	color: #e9e9e9;
	font-family: getvoip_grotesqueregular;
	text-align: left;
	padding : 10px;
/*	background: #f4f4f4;
    border: #ccc solid 2px; */
	margin: 10px;
	border-radius: 10px;
		}
