.intbox {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	/*background-image: linear-gradient(#000a1e, #05325e);
	background-attachment: fixed;*/
	padding: 20px;
	font-family: Calibri, Arial, san-serif;
	font-size: 13;
	color: snow;
}
.flexbox{
	display: flex;
}
.flexbox-row{
    display: flex;
    flex-flow: row wrap;
}
.flexbox-col{
    display: flex;
    flex-flow: column wrap;
}
.flex-align-start{align-items: flex-start;}
.flex-align-ctr{align-items: center;}
.flex-just-start{justify-items: flex-start;}
.flex-just-end{justify-items: flex-end;}
.flex-just-ctr{justify-content: center;}
.flex-just-sparound{justify-content: space-around;}
.flex-just-spbtween{justify-content: space-between;}
.docs {
	width: 100%;
	padding: 0;
	height: 95vh;
}
.flex-table-container{
	box-sizing: border-box;
	display: block;
	width: 100%;
}
.flex-table{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
}
.flex-table-row, .flex-table-row > table{
	font-family: Calibri, Arial, san-serif;
	font-size: 12;
	color: white;
}
.flex-table-row{
	text-align: center;
	/*padding: 0.5em 0.5em;*/
	border: solid 1px rgb(0, 0, 0, .25);
	overflow: hidden;
}
.flex-table-hdr-first, .flex-table-row-first {
	width: 44%;
}
.flex-table-hdr-rest {
	width: 6.22%;
}
.flex-table-row-rest {
	width: 6.22%;
	line-height: 35px;
}

.data_mainbox {
	width: 400px;
	margin: 5px;
	padding: 0;
	font-family: Calibri, Arial, san-serif;
	font-size: 10pt;
	text-align: center;
	background-color: slategrey;
    /*border: 1px solid slategray;*/
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, .75) 0 2px 6px;
	/*box-shadow: 0 5px 25px rgba(0,0,0,0.2);*/
}
.data_mainbox_title {
	width: 100%;
	padding: 2px 0 2px 0;
	font-size: 15pt;
	font-weight: bold;
}
.data_mainbox_table {
	width: 100%;
	overflow-x: auto;
	align-items: center;
	justify-content: center;
	padding: 0 5px 5px 5px;
}
.data_mainbox_table table {
	width: 100%;
	font-family: Calibri, Arial, san-serif;
	font-size: 13;
	color: white;
	text-align: center;
	border-collapse: collapse;
}
.data_mainbox_table_title {
	background-color: #4e5965;
}
.data_mainbox_table table tr td {
	border-bottom: 1px solid #647382;
}
.data_mainbox_table_tr_bgcolor {
	background-color: #647382;
}
.teamlogo {
	margin: 0; padding: 0;
	overflow: hidden;
	/*background-image: url('/img/logos/<?=$equipo->archivo?>');*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.teamscoresbox {
	width: calc(100% - 100px);
	height: 50px;
}
.teamscorescontent {
	font-family: 'Arial Black', sans-serif;
	font-size: 14pt;
	/*font-weight: bold;*/
}
.teamscoresboxborder {
	overflow: hidden; 
	border-radius: 10px;
}
.teamscorescontentfaded {
	font-family: 'Arial Black', sans-serif;
	font-size: 10pt;
	font-weight: bold;
	color:#4e5965;
}
.teamnamefaded {
	font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 8pt;
	font-weight: bolder;
	color:#3a424b;
}
.teamdetails {
	font-family: sans-serif;
	font-size: 8pt;
}
.t-ctr {text-align: center;}
.t-lft {text-align: left;}
.t-rgt {text-align: right;}
.t-bold {font-weight: bold;}
.t-bolder {font-weight: bolder;}
.fullvh { margin: 0; padding: 0; height: 95vh; }
.zeromargin {margin: 0; padding: 0;}