﻿/* Basic Scoreboard */
/* ---------------------------------------------------------------- */
#scoreboard {
    float: left;
	width: 400px;
	overflow: hidden;
	}

#scoreboard table {
	padding: 1px;
	border: none;
	}	

/* Updates for PTS2378: Added 'border-bottom' and 'border-right' */		
#scoreboard table.list {
	width: 100%;
	margin: 8px 0px;
	border: 1px solid #ccc;
	}
	
	
#scoreboard th {
	padding: 3px;
	border: none;
	background-color: #909090;
	color: #ffffff;
	font-size: 10px;
	}
	
#scoreboard td {
	padding: 3px;
	border: none;
	font-size: 10px;
	}

#scoreboard .sbName {
    text-align: left;
    }

#scoreboard .sbAmount , #scoreboard .sbCount {
    text-align: center;
    }

/* Interactive Scoreboard */
/* ---------------------------------------------------------------- */

/* The result row needs to go right justification so everything is float. This causes other problems with the background
   colour. The background colour issue is solved by having 'padding' in the resultRow and a <div class='clear'></div> at the end 
   of the resultRow section (see ucScoreBoard.ascx). */   
/* Another reason for the float is to give the separator a fixed width, so it lines up even when the count changes from 1
   to 2 digits. */
.scoreboard .resultRow { padding:6px; letter-spacing: -0.05em; cursor: pointer; font-weight: bold; clear: both; }            
.scoreboard .separator { border-right: 1px solid #DFE4EE; margin-right: 6px; float: left }
.scoreboard .sbIndividualOrder { float: left; width: 1.5em; }
.scoreboard .sbIndividualName { float: left; }
.scoreboard .sbHeaderValue { float: right; }

/* The detail row. */
/* Updates for PTS2378: Added 'border-top' to the detailRow. Removed 'color: #333' from .sbAmounts to be consistent with 
   non sbAmounts fields in Preview mode. */
.scoreboard .detailRow { display: none; font-size: 83.3%; line-height: 150%; clear: both; padding: 3px 1px 9px 6px; border-top: 1px solid #DFE4EE; border-bottom: 1px solid #DFE4EE; }
.scoreboard .label { float: left; font-weight: bold; padding-right: 1px; min-width:140px; }
.scoreboard .label2 { float: left; font-weight: bold; padding-right: 1px; font-size:130%; min-width:140px; }
.scoreboard .sbAmounts { float: left; margin-right: 1px; width: 55%; margin-left: 1px; }
#scoreboard .scoreboard .sbAmount { text-align: left; } /* override the sbAmount in the basic scoreboard section above */

.scoreboard .sbTeamOrder { float: left; width: 1.5em; }
.scoreboard .sbTeamName { float: left; }

/* The link. */
.scoreboard .sbLink { clear:both; text-align:right; padding:4px 0px;}

.clear{
clear:both;
}