
/*************************Players*************************/

/*****Column Modifiers*****/
	.table_players .w_player { width:150px; min-width:150px; }
	.table_players .w_blank { width:10px; min-width:10px;}
	.table_players .w_roster { width:50px; min-width:50px; }
	.table_players .w_move { width:75px; min-width:75px; }
	.table_players .w_team { width:50px; min-width:50px; }
	.table_players .w_pos1_2 { width:50px; min-width:50px; }
	.table_players .w_value { width:50px; min-width:50px; }
	.table_players .w_update { width:225px; }

	.table_players .col_center { text-align:center; }
	.table_players .col_left { padding-left:5px; text-align:left !important; }

.table_players {
	border:0px solid grey;
	border-collapse:collapse;
	margin-left:15px;
	margin-bottom:15px;
	
	/*overflow-x:auto;*/
}

.table_players thead {

}

.table_players thead tr
{
	height:20px;
}

.table_players thead th
{
	background-color:lightblue;
    border:1px solid lightblue;
	color:darkblue;
	font-size:11px;
	font-weight:normal;
	text-align:center;
	vertical-align:middle;
	white-space:nowrap;
	
    /*position: -webkit-sticky; /*safari*/
    position: sticky;
    	top:30px;
}

.table_players tbody tr
{
	 height:25px;
}

.table_players tbody tr:nth-child(even) {background-color: #f2f2f2;}

.table_players tbody td
{
	border:1px solid lightgrey;
	font-size:12px;
	text-align:center;
	vertical-align:middle;
	white-space:nowrap;
}

.pd_slct {
	background-color:wheat !important;
}

@media screen and (max-width: 700px) {
	
	.table_players {
		margin-left:0px;
		margin-bottom:0px;
	}
	
	.table_players thead th {
			top:0px;
	}


}

