@charset "utf-8";
/* CSS Document */
html {  box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

html, body {height: 100%; margin: 0px; padding: 0px;}
html {overflow: -moz-scrollbars-vertical; overflow-y: scroll;}

:root {
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans-serif:Verdana, Geneva, sans-serif;
  --base-color: #1c1f33;
  --base-bkgrd:#191934;  
  --gold:#d9bd13;
  --black:#000000;  
  --westend:#003366;
  --eastend:#af0202;
  --denim:#D5DCFF;
  --embolden: font-weight:800;
}

/*----- Overall PAGE Layout (Fixed header and footer with scalable body) ------*/
body { 
	display: grid; 
	grid-template-rows: 60px 1fr minmax(25px, auto); 
	min-height: 100vh; 
	row-gap: 0;
	font-family:var(--sans-serif);
	font-size: 0.9rem;
	font-size: clamp(0.8rem, 0.88rem + 0.09999999999999998vw, .9rem);
}

.no-select{
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	-ms-user-select:none;
	-webkit-touch-callout:none;
}

header { grid-column: 1 / -1; grid-row: 1; position:fixed; top:0; left:0; width:100%; background-color:#000; border-top:5px solid var(--gold); color:#fff; min-height:60px; z-index:1}
main { grid-column: 1 / -1; grid-row: 2;}
footer { grid-column: 1 / -1; grid-row: 3;}

.max1600{max-width:1600px; margin:20px auto}
.txt-black {color:#000}
.txt-white {color:#fff}
.txt-centered {text-align: center}

.txt-westend{color:var(--westend)}
.txt-eastend{color:var(--eastend)}

.filop {background-color: #CFC; margin:0; width:100%; min-width:310px; min-height:30px}

details > summary { background-color: #fdb; cursor: pointer; padding: .5rem 1rem;}
details > summary > * { display: inline; }

/* PSUEDO LOGO (toon1892.com) */
.toon,
.d1892 { font-family:var(--font-serif); font-weight:bold }
.toon {color:#d9bd13;}
.d1892{color:#6CF;}
#logo{position: absolute; top: 20px; left:15px; z-index:100; font-size:clamp(16px, 2vw, 22px); max-width:49%; font-family:var(--serif)}
.tagline{display:none}

main section:first-of-type { position:relative; top:0; width:100%; height:auto; min-height:100px; padding:10px}; margin-bottom:32px;}

.main section:first-of-type{
	/*margin-top:60px;*/
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.main section:first-of-type div {display:inline-block; max-width:33%; padding:0 4rem}
.main section:first-of-type img { max-width:350px; height:auto}

.main section:first-of-type h1 {
	max-width: fit-content;
	margin: 0 auto;
}

/*main section:nth-of-type(even) {width:90%; max-width:1600px; padding:0 1rem; margin:20px auto;}
main section:nth-of-type(odd) {min:100%; padding:0 15px; margin:20px auto;}
main section article {width:90%; max-width:1600px; margin:3rem auto;}*/

.img-small{ max-height:150px}
.img-small-100{ max-height:100px; margin-top:1em}
.noshow{display:none}
.subtime{display:inline-block;min-width:20px; padding:6px;margin-right:1rem;background-color:#FFC}
article h1 {padding:3rem 0 2rem 0}

.multi-column {  column-gap: 4em; column-rule: 1px solid #999; column-fill: balance; column-width: max(400px);}
.multi-column p:not(:first-of-type) { text-indent:3rem; }

.contoured {border: 1px #999 solid; border-radius: 10px}
.intpad1rem{padding: 1rem}
.intpad2rem{padding: 2rem}
.txt-article {text-align: justify; background-color: #CCF;padding: 1rem}
/*--------------- FORM ---------------*/
.required {vertical-align: baseline; color: #f00; font-size: 10px;}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
	background-color: #FFC; 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=text]:focus, input[type=text]:active, textarea:focus, textarea:active {
    background-color: #BDE5F8;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	margin-bottom:10px;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #45a049;
}

label{font-weight:bold;}
span.lblLabel {
	font-weight:normal;font-style:italic; text-align:left
}
/*--------------- END FORM ---------------*/


/*psuedo fieldset */
.pfs{
	border:1px solid #999;
	border-radius: 5px;
	padding:10px;
	width:auto;
	margin-bottom:1rem;
}

.pfs-title {
	display:block;
	padding:4px 0 0 6px; /*15px 5px 10px*/
	color:#666;
	width:50px;
	font-size:0.8em
}
.pfstitle {
	display:block;
	margin-top:-20px;
	background-color:#fff;
	border:1px solid #999;
	border-radius: 3px;
	color:#00f;
	max-width:60px;
	padding:0 0 0 10px
}

#indexhero,
#pagehero {
	background-repeat:no-repeat; 
	background-size:cover;
	background-position:left;
	min-width:100%;
	min-height:400px;
	padding:1rem;
	text-align:center;
}
#indexhero div{width:100%; margin:0 auto}
.main-header {
  display: flex;
  justify-content: space-between;
  margin:10px 0 20px 0;
  height: auto; min-height:60px;
}

/*#indexhero .hero {padding:2rem; font-weight:800;;text-align:center; min-height:350px}
#indexhero .hero-box{background: rgba(0, 0, 0, .15); padding:10px; max-width:550px; margin:0 auto}
#indexhero .hero h1 {font-size: clamp(2rem, 1.2958rem + 2.2535vw, 4rem)}
#indexhero .hero h2 { font-family:var(--sans-serif); font-size: clamp(1rem, 1.2958rem + 2.2535vw, 2rem); color:#006}*/

.main-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-auto-rows: 94px;
  grid-gap: 20px;
  margin-bottom: 1.5rem;
}

.overviewcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: #CCC;
}

.main-cards {
  column-count: 1;
  column-gap: 20px;
 /* margin: 20px;*/
}

.bordered {border:1px solid #666}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height:auto;
 /* background-color: #82bef6;
  margin-bottom: 20px;
  padding: 24px;*/
  -webkit-column-break-inside: avoid;
  box-sizing: border-box;
}

.card-head {
	font-weight:600;
	color:#333;
}
.card-body {
	font-size:1.5rem;
	padding:10px;
}

.card-nopad {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  -webkit-column-break-inside: avoid;
  break-inside:avoid-column;
  padding: 0;
  box-sizing: border-box;
}

.flexed_row {display: flex; flex-direction: row;}

.flexbox_sb { display: flex; justify-content: space-between }
.flexbox_top { display: block }
.flexbox_sb >* { margin:4px 0 0 0; padding:0 }

.btn-prev {
    background-image: url(../images/icons/previous.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: .25rem .25rem .25rem 1.5rem;
}
.btn-next {
    background-image: url(../images/icons/next.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: .25rem 1.5rem .25rem .25rem;
}

#menu img { display:inline; width:4rem; height:auto; margin-right:5px}

.txt-centred {text-align: center}
.txt-justified {text-align:justify}
.txt-right {text-align:right}
.txt-left {text-align:left}
.txt-small {font-size:80%}
.embolden { font-weight: 800 }
.txt-shadowed-light {text-shadow: 2px 2px #fff}
.txt-shadowed-dark {text-shadow: 2px 2px #000}

.main .recentlyadded {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.content-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.grid-container-2col {
  /*** User input values.  */
  --grid-layout-gap: 2rem;
  --grid-column-count: 2;
  --grid-item--min-width: 300px;

  /*** Calculated values. */
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
  grid-gap: var(--grid-layout-gap);
}

.grid-container-3col {
  /*** User input values.  */
  --grid-layout-gap: 0;
  --grid-column-count: 3;
  --grid-item--min-width: 400px;

  /*** Calculated values. */
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
  grid-gap: var(--grid-layout-gap);
}

.grid40-20-40{
	display: grid;
	grid-template-columns: 40% 18% 40%;
	grid-gap: 1%;
}

.grid-3-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-start-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.flex-end-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}


q, blockquote { quotes: "\201C" "\201D" "\2018" "\2019"; }
blockquote { margin:25px; font-style:italic }
q span {font-style:italic;}

.dblbordered { border: 2px solid transparent; outline: 3px solid var(--base-color); box-shadow: inset 0 0 0 1px var(--base-color); padding:4px; background-color:transparent }

.shadowed {
	box-shadow: 3px 3px 5px #818181;
	-webkit-box-shadow: 3px 3px 5px #818181;
	-moz-box-shadow: 3px 3px 5px #818181;
	filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=3, offY=3, positive=true);
}

.shadowed_10 {
	-webkit-box-shadow: 10px 10px 10px 5px rgba(153,153,153,1);
	-moz-box-shadow: 10px 10px 10px 5px rgba(153,153,153,1);
	box-shadow: 10px 10px 10px 5px rgba(153,153,153,1);
}

p {font-size: clamp(0.875rem, 0.8022rem + 0.291vw, 1rem);line-height:1.5; margin:10px 0}
p:nth-of-type(n+2) { text-indent:3rem;}
.multi-column p .noindent, p.noindent { text-indent:0 }
.noindent { text-indent:0 }

#intro > p {margin-bottom:2rem}
#players,
#games {margin-top:4rem; background-color:var(--denim);}


h1, .psuedo-h1 {font-size: clamp(1.5rem, 1.3277rem + 0.5602vw, 2rem);}
h2, .psuedo-h2 {font-size: clamp(1.25rem, 1.0777rem + 0.5602vw, 1.75rem);}
h3, .psuedo-h3 {font-size: clamp(1rem, 0.8277rem + 0.5602vw, 1.5rem)}
h4, .psuedo-h4 {font-size: clamp(0.85rem, 0.7972rem + 0.169vw, 1rem);line-height:1.75; font-weight:600}
.psuedo-h2 {color:#009}

h4.block_title { display: flex;
	flex-direction: row;
	justify-content: space-between; margin-bottom:1em; background-color:#191934; color:antiquewhite; padding:1rem}
	
h5.block-title { width:80%; letter-spacing:3px; text-align:center; color:#fff; border-bottom:1px solid #fff; margin:0.5rem auto 1rem auto}	
	
.grandtitle {font-size: clamp(2rem, 1.6479rem + 1.1268vw, 3rem);}
/*NOTE BOXES*/
.info, .success, .warning, .error, .validation {
    margin: .5rem 0;
}
.warning { color: #000; background-color: #E0CD66; padding:10px; margin:5px 0 15px 0; border:1px #f00 solid;font-size:0.9rem; }

main h1, main h2, main h3 {margin:0 0 0 10px;}
main h1{color:var(--westend);}
main h1 span{color:var(--eastend)}
main h2{color:var(--eastend)}/*font-size: calc(1.5rem + 1.75vw);*/
main h3{font-size: calc(1rem + 1.1vw);}

main .recentlyadded h2 {
    display: block;
    font-weight: 600;
    margin: 0;
    padding: 20px 0;
    font-size: 30px;
    text-align: center;
    width: 100%;
    color: #000099;
    border-bottom: 1px solid #000099;
}

main .recentlyadded a {text-decoration:none}

main section:not(:first-of-type) {
    max-width: 90%;
    font-family: var(--sans-serif);
    line-height: 1.5;
	margin:2rem auto;
}

.latestgames {
    padding: 1em;
}
.post-classic {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 600;
}

post-classic-figure {
    display: block;
    overflow: hidden;
}
.post-classic-figure img {
    width: 4rem;
    height: auto;
    transition: all .3s;
    margin-right: 10px;
    margin-top: 10px;
}

#hero .content{width:90%; margin:0 auto; padding-top:20px}
#hero h1, #hero h2, #hero h3, #hero h4 {margin: 0 auto 1rem auto; text-align:center}
#hero h1 {color:var(--westend);font-weight:var(--embolden)}
#hero h2 {font-size: calc(2.425rem + 2.1vw);font-weight:var(--embolden)}
#hero h2, #hero h3 {color:var(--eastend); font-weight:var(--embolden)}

.hr75 {width:75%;margin:0.5rem auto}
.hr75-1rem {width:75%;margin:1rem auto}


.grid-container-3col {
  /*** User input values.  */
  --grid-layout-gap: 2rem;
  --grid-column-count: 3;
  --grid-item--min-width: 300px;

  /*** Calculated values. */
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
  grid-gap: var(--grid-layout-gap);
}

.grid-container {
  /*** User input values.  */
  --grid-layout-gap: 10px;
  --grid-column-count: 2;
  --grid-item--min-width: 300px;

  /*** Calculated values. */
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
  grid-gap: var(--grid-layout-gap);
}

.titles_grid-container{
	display:grid;
	grid-template-columns: 80% 1fr;	
}

.midshade { font-family:var(--sans-serif);color:#fff; background: rgba(0,0,0, 0.5); margin:0.5em;padding:0.5em}
main .midshade { font-family:var(--sans-serif);color:#fff; background: rgba(0,0,0, 0.5); margin:0.5em 0.5em 0 0;width:370px;height:200px}
		
.numbers { font-size:3em; font-weight:bold; display:block; text-align:center; }/* text-shadow: 2px 2px #000000;*/
.numbertxt { display:block; text-align:center;font-size:1em; }
		
				
.hilite_black{ background-color:var(--black); color:var(--gold); padding:20px; text-align:center; margin-bottom:1rem}
.hilite_black a{color:var(--gold); text-decoration:none}
.hilite_black a:hover{color:#fff; text-decoration:underline}

.light{color:#fff}
		
		
.flex-grid { display: flex; width:100%}
.flex-grid .col { flex: 1;  white-space: nowrap}
.flex-grid .col:last-of-type { align-self: end;}
.col { padding: 20px; border-right:2px #fff solid; text-align:center;}
.col:last-of-type{border-right: none}

@media (max-width: 500px) {
.main h1, .main h2{text-align:center}
.titles_grid-container{
	grid-template-columns: 400px;
	align-content: center;
	text-align:center;
	width:100%;
	margin:0 auto;
}
	.flex-grid {
		 width:80%;
		 margin: 0 auto;
		/*display: block;*/
		.col { width: 80%; }
	}
}

@media (max-width: 700px) {
main section:first-of-type{
	top:0;
}
.main section:first-of-type{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items:center;
}

.grid40-20-40{
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1%;
}

.grid-3-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
}
/*=========< FOOTER STYLES >========================================================================================================================*/
footer article {padding:10px; font-family:var(--sans-serif); background-color:#333; color:antiquewhite}
footer h3 {font-size:1rem;}

.copyright{font-size:12px;background-color:#000; padding:5px;display: flex;  -webkit-flex-flow: row wrap; flex-flow: row wrap;justify-content: space-between; color:#fff}
.copyright img {height:16px; width: auto; margin:0 5px 0 0; float:right; padding-right:5px;}
.minigal img {width:60px;height:auto}

.quicklinks a { display:inline-block; color:#fff; text-decoration:none; width:100%; height:100%; padding:5px }
.quicklinks a:before {content: "\00BB \0020"; padding-right: 8px; color: #fff;}
.quicklinks a:hover,.quicklinks a:focus, .quicklinks a:active { color: #FF0; background-color:#000 }
.quicklinks {list-style: none; padding: 0; margin: 0;}
.quicklinks li {padding:5px 0 5px 16px; border-bottom:1px solid #666;}
.quicklinks li:last-child {border-bottom: none;}

.psuedolink:hover { cursor:pointer; background-color:#000; color:var(--gold)}

.btn-bar{display:flex;flex-flow: row wrap;margin:10px auto 10px auto; justify-content:center;}
.btn-category {font-family:var(--sans-serif);display:inline-block; margin: 0 2px; padding:8px 16px; color: #fff; font-size: 1rem; border-radius:4px; white-space:nowrap; text-align:center;text-decoration:none; margin-bottom:1em}
.btn-category:hover {background-color:#000; color:var(--gold)}
.bck-eastend {background-color:var(--eastend)}
.bck-westend {background-color:var(--westend)}
.bck-denim {background-color:var(--denim)}
.bck-black {background-color:#000; color:var(--gold)}

.btn-donate a {display:inline-block;background-color:#000; color:var(--gold); margin-right:20px}
.btn-donate a:hover {background-color:var(--gold); color:#000; margin-right:10px}

figure { width:90%; margin:0 auto; text-align:center;}
figcaption {margin:1rem; font-size: clamp(0.85rem, 0.7972rem + 0.169vw, 1rem); line-height:1.4;}
figcaption a {text-decoration:none; font-weight:600; font-size: inherit}
figcaption a:hover {background-color:var(--color-dark); color:var(--color-gold) }

/*===== STYLE STRAPLINE =====*/
.strapline {
    padding: 3px 0;
    border-top: 2px black solid;
    border-bottom: 2px black solid;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 3rem;
}
.strapline div {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    border-top: 1px black solid;
    border-bottom: 1px black solid;
}

.strapline div span {
    width: auto;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}

.credits {
    background-color: #ededed;
    color: #5B5B5B;
    padding: 6px 10px;
    margin: 20px 0 10px 0;
    font-size: 0.85rem;
}

.cats { display:block;
	/*width:100%; height:100%;*/
	min-width:100px;min-height:25px;
	background-color: #f2f2f2;
	border:1px solid #bfbfbf;
	text-align:center;
	padding:4px 20px
}
.cats:hover {
	background:#000;
	color:#5aba59;
	cursor:pointer;
}
.cats.btn-active {
    background-color: #666; color:var(--paper); font-weight:bold;cursor: default;pointer-events:none; text-decoration:none;
}


.subgrid_othernotes h3 { background-color:var(--base-bkgrd); color:#fff; padding:10px; font-weight:bold; font-variant:small-caps; letter-spacing:3px; margin:0 0 0.75em 0 }
.subgrid_othernotes h4, .othernotes h4 { background-color:#191934; color: #fff; margin:0;  padding: 10px; font-weight:bold; font-variant:small-caps; letter-spacing:3px }
.subgrid_othernotes div p, .othernotes div p, .othernotes ul {padding:0 20px}
.subgrid_othernotes div:nth-of-type(odd), .othernotes div:nth-of-type(odd) { background-image:radial-gradient(circle, #b6fcb6, #c6e38b) }
.subgrid_othernotes div:nth-of-type(even), .othernotes div:nth-of-type(even) { background-image:radial-gradient(circle, #deeff4,#d6ebf2 ) }

.othernotes {margin-top:1.5rem}
.othernotes:nth-of-type(odd) { background-image:radial-gradient(circle, #b6fcb6, #c6e38b) }
.othernotes:nth-of-type(even) { background-image:radial-gradient(circle, #deeff4,#d6ebf2 ) }
.othernotes h4 { background-color:var(--base-bkgrd); color: #faebd7; margin:0;  padding: 10px; font-weight:bold; font-variant:small-caps; letter-spacing:3px }
.othernotes p {padding: 15px 20px}

.cell_1 {background-image: linear-gradient(to bottom right, #DFF2BF, #ffffff); font-weight:600}
.cell_2 {background-image: linear-gradient(to bottom right, #BDE5F8, #ffffff); font-weight:600}
.cell_3 {background-image: linear-gradient(to bottom right, #ffb2b2, #ffffff); font-weight:600}
.cell_Y {background-image: linear-gradient(to bottom right, #FFFF00, #ffffff); font-weight:600}

.min33 {min-width:33%}

/* For active 'clickable' headers */
table.active th.sortlink:hover {cursor:pointer;background-color:#000;color:#fff}
table.active th.sortlink_nosort {cursor:not-allowed;}

/* For active 'clickable' rows */
table.active tbody tr:hover,
table.hoverable tbody tr:hover { cursor:pointer; background-color:#dff2bf; color:#000; }

.tractive:hover { cursor:pointer; background-color:#ffffcb;	color:#000; }

table.minirs th:first-child, 
table.minirs th:nth-child(n+3):nth-child(-n+5){ width:20px;}

table.minirs th:nth-child(2){width:80px;}

table.minirs th:nth-child(n+6) {min-width:150px;}

table.minirs th:nth-child(n+6), 
table.minirs td:nth-child(n+6){	text-align:left;}

table.minirs th:nth-child(8), 
table.minirs td:nth-child(8){display:none;}

/* This MUST come after the table styles otherwise percent will be bold too
 - not called 'cascading style sheets for nothing :-) */
.percentage {padding-left:10px; font-weight:normal;}
.percentage:before {content:"[";}
.percentage:after {content:"%]";}

table.tbl_mini { font-size:70%; font-weight:normal }
table.tbl_mini tbody td:nth-of-type(2) { text-align:left }
table.tbl_mini tbody tr.eastendtr { background-color:#af0202; color:#efcccc; font-weight:bold }
table.tbl_mini tbody tr.westendtr { background-color:#003366; color:#efcccc; font-weight:bold }
/* Psuedo caption */
.tblcaption { background-color:#000; font-weight:600; color: #d9bd13; text-align:left; cursor: default; padding-left: 10px }
.tblcaption_foot { background-color:#000; font-weight:600; color: #d9bd13; text-align:left; cursor: default; padding-left: 10px }

table.tbl_details {margin-bottom:1rem}
table.tbl_details tbody th{width:150px}
table.tbl_details tbody td{text-align:left}
.cell-tight {margin:0; padding:0}*/

.rowed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;  
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}

.rsb {justify-content: space-between; align-items:baseline}

.tableholder {
	max-height:480px;
	overflow: auto;
	border-right: 1px solid #ccc;
}

/* LOADING NOTIFICATION COVER */
.pos-rel { position:relative }
.loading {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    font-family: var(--font-sans-serif);
    background: rgba(0, 0, 0, .5);
    text-align: center;
    font-weight: bold;
    color: #fff;
    line-height: 400%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.loading img {margin:0 auto;padding:10% 0 0 10%}

#holder_ke_fh,
#holder_ke_sh,
#holder_ke_et,
#holder_ke_ut,
#holder_ke_so {display:none}

.flex-container {
  display: flex;
  flex-direction: row;
  width:100%;
}

.cols {
  display: flex;
  flex-direction: column;
  width:100%;
  margin:0;
}
.rowed {
  display: flex;
  flex-direction: row;
  width:100%;
  margin:0;
}

.flex-item-a {
  padding: 10px;
  width: 70%;
  align-self:flex-start;
}
.flex-item-b {
  padding: 10px;
  width: 30%;
  align-self:flex-start;
}
.flex-item-33 {
  padding: 10px;
  text-align: center;
  width: 33%;
}

.lightshade {background-color: rgba(0, 0, 0, 0.5); margin:0 1em; padding:0.5em; border:1px solid #999}
.lightshade h4 {
    text-align: center;
    margin: 5px auto;
    background-color: navy;
    color: antiquewhite;
    padding: 5px;
}

.mancredits {
	background: #cef2e0;
    border: 1px solid #c0c0c0;
    padding: 4px;
    width: 100%;
    height: auto;
    text-align: left;
    break-inside: avoid-column;
}
.mancredits dt {
	font-weight:bold
}
.mancredits dd {
    margin: 0;
    padding: 0 0 0.5em 0;
}

.mancredits ul {
    margin: 0;
    padding: 0 0 0.5em 0;
    list-style:none
}

.trivia li {margin-bottom:1em}

/*@media (min-width: 900px) {
	.pager-holder-top {  display: flex; justify-content: space-between  }
}*/

@media (max-width: 1200px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-item-a, .flex-item-b, .flex-item-33 {width:100%}
}

/* Styling the Disclosure Widgets */
details > summary.standard  { background-color: #fdb; cursor: pointer; padding: .5rem 1rem;}
details > summary.standard > * { display: inline; }
details > div{ font-size:12px; width:90%; margin:5px auto }


	.grid-body{  
		display: grid;
		  width:100%;
		  grid-template-columns: 1fr 1fr 1fr;
		  grid-template-rows: auto;
		  gap: 1em;
		  grid-auto-flow: row;
		  justify-content: space-between;
		  grid-template-areas:
			"info-stats info-stats info-stats"
			"info-data info-data info-data";
			padding-top:1rem;
			margin-top:0;
		}



@media only screen and (min-width: 900px) {
	.grid-head{  
		display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  gap: 1em;
	  grid-auto-flow: row;
	  justify-content: space-between;
	  grid-template-areas:
		"player-name player-name player-stats";
		padding-top:1rem;
		margin-top:0;
	}
	#pagehero h1, #pagehero h2 {text-align:left}
	#indexhero h1, #indexhero h2,#indexhero h3 { text-align:center}
	main #pagehero, main #indexhero {min-height:450px; margin:0 auto 1rem auto}
	
	.strapline span {display:inline-block}
	
	    	.subgrid_othernotes { 
			display: grid;
			grid-auto-flow: dense;
			grid-gap: 2rem;
			grid-template-columns: repeat(2, 49%);
			grid-template-rows: repeat(2, 1fr);
			margin-top: 1rem; 
		}
		
	.grid-body{  
	  grid-template-areas:
			"info-data info-data info-stats";
		}
}

.flexed-sb {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;}
.flexed-se {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-evenly; margin-bottom:2rem}


@media screen and (min-width: 1600px) {
  .tagline {display:inline-block;color:#fff; font-style:italic}
  .max960{ width:100%; max-width:960px; margin:0 auto; font-size:1rem;}
  .max960 div {margin-bottom:10px}
  .max960 div span { display:inline-block; min-width:150px}
}

.player-name { grid-area: player-name; }
.player-stats { grid-area: player-stats; }
.info-data { grid-area: info-data; }
.info-stats { grid-area: info-stats; }