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

/* This is our basic margin/padding browser reset */
* {
	margin:0px;
	padding:0px;
}

/* Lets over ride the default jquery theme "FLORA" background color of #E5E5E5 */
.ui-tabs-panel {
	background-color:#FFF;
}

/* This is our wrapper div for the tables */
.pTables {
	width:600px;
}

/* Setting the basics for the whole table */
.playerTable {
	width:100%;
	border:none;
	margin:0px;
	padding:0px;
	border-collapse:collapse;
	font-size: 14px;
}

/* Styling our header(th) tag creating some spacing */
.playerTable th {
	background:#e5e5e5 none repeat scroll 0 0;
	border-bottom:1px solid #FFFFFF;
	border-top:4px solid #DDD;
	color:#003399;
	font-size:18px;
	font-weight:bold;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	text-align:left;
}

/* Lets style the content (Table cells) */
.playerTable td {
	border-bottom:1px solid #FFFFFF;
	border-top:1px solid transparent;
	color:#666699;
	vertical-align: top;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
}

.playerTable_head {
	background:#e5e5e5 none repeat scroll 0 0;
	border-bottom:1px solid #FFFFFF;
	border-top:4px solid #DDD;
	color:#003399;
	font-size:18px;
	font-weight:bold;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 20px;
	margin-left: 20px;
}

span.rosterHead , .playerTable_head tfoot{
	font-family:Verdana, Geneva, sans-serif;
	font-size:.75em;
	font-weight:bold;
	text-align:right;
	padding:inherit;
	color:#003399 !important;
}

#pCollege {
	font-size:.95em;
	font-weight:bold;
	padding:inherit;
	color:#000 !important;
}

span.rosterHead {
	display:block;
}
.playerTable td a:visited , 
/* Let's style the links in the player table */
.playerTable_head td a:link{
	color:#003399;
	text-decoration:none;
}
.playerTable td a:hover {
	text-decoration:underline;
}

/* This controls our Table Hover to help the users eye */
.playerTable tbody tr:hover {
	background-color:#DFDFFF;
}
