table.fullsched {
	empty-cells: show;
	border-collapse: collapse;
	}
.fullsched td {
	border:1px solid black;
	border-right: 3px solid black;
	padding: 2px;
	}
	
.fullsched thead tr {
	position: sticky;
    top: 0px;
    background: #f9f9f9;
	z-index: 999;
}

table.poolo {
	empty-cells: show;
	border-collapse: collapse;
	}
.poolo td {
	border:1px solid black;
	border-right: 1px solid black;
	padding: 2px;
	text-align: right;
	}
.poolo td.lefto {
	text-align: left;
	}
.poolo td.centero {
	text-align: center;
	}
.poolo th {
	vertical-align:bottom;
	padding:5px;
}
	
table.reflist {
		float: right;
	}

		
body {
	font-family:Arial, Verdana, sans-serif;
	}
	
.win {
	font-weight: bold;
}

.lose {
	font-weight: normal;
}

span.teamname {
	text-align: left;
	}

span.teamscore {
	float: right;
	}

span.gametype {
	font-style: italic;
	font-weight: bold;
	}		

span.gametype:before {
	content:'\2605';
	}		

span.refname {
	background-color: Green;
	color: Yellow;
	}
	
.MP {
	background-color: Yellow;
	}
	
.WP {
	background-color: Red;
	}
	
.WO {
	background-color: Magenta;
	}
	
.MO {
	background-color: Orange;
	}
	
.MS {
	background-color: LightSkyBlue;
	}
	
.MSS {
	background-color: Gainsboro;
	}
	
.field-blocked {
	background-color: #484848;
}
	
.WSS {
	background-color: Red;
	}
	
.WS {
	background-color: SpringGreen;
	}
	
.OB {
	background-color: Gainsboro;
	}
	
.BU19 {
	background-color: Olive;
	}
	
.BU17 {
	background-color: Khaki;
	}

.WU19 {
	background-color: Gray;
}
	
.error {
	color: red;
	font-weight: bold;
	font-size: x-large;
 	}
 	
 .hoveredOn {
	    background-color: lightblue;
	}	
	
/* 
From http://www.w3schools.com/css/css_tooltip.asp
Tooltip container */
.tooltip {
    position: relative;
/*    display: inline-block; 
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
    
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}	