/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ffff99;
  color: black;
  text-decoration: none;
}
mark {
  background-color: #ffff99;
  color: black;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
/* tables still need cellspacing="0" in the markup */

table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
/* END RESET CSS */

/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/

body {
  font: 13px/1.231 sans-serif;
  *font-size: small;
}
/* hack retained to preserve specificity */

select,
input,
textarea,
button {
  font: 99% sans-serif;
}
/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */

pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
/* 
 * minimal base styles 
 */

body,
select,
input,
textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444444;
  /* set your base font here, to apply evenly */

  /* font-family: Georgia, serif;  */

}
/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
/* always force a scrollbar in non-IE */

html {
  overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */

a:hover,
a:active {
  outline: none;
}
a,
a:active,
a:visited {
  color: #607890;
}
a:hover {
  color: #003366;
}
ul,
ol {
  margin-left: 1.8em;
}
ol {
  list-style-type: decimal;
}
/* Remove margins for navigation lists */

nav ul,
nav li {
  margin: 0;
}
small {
  font-size: 85%;
}
strong,
th {
  font-weight: bold;
}
td,
td img {
  vertical-align: top;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
pre {
  padding: 15px;
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */

}
textarea {
  overflow: auto;
}
/* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend,
.ie7 legend {
  margin-left: -7px;
}
/* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */

input[type="radio"] {
  vertical-align: text-bottom;
}
input[type="checkbox"] {
  vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
/* hand cursor on clickable input elements */

label,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
}
/* webkit browsers add a 2px margin outside the chrome of form elements */

button,
input,
select,
textarea {
  margin: 0;
}
/* colors for form validity */

input:invalid,
textarea:invalid {
  border-radius: 1px;
  -moz-box-shadow: 0px 0px 5px red;
  -webkit-box-shadow: 0px 0px 5px red;
  box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
  background-color: #f0dddd;
}
/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */

::-moz-selection {
  background: #0e3351;
  color: white;
  text-shadow: none;
}
::selection {
  background: #0e3351;
  color: white;
  text-shadow: none;
}
/*  j.mp/webkit-tap-highlight-color */

a:link {
  -webkit-tap-highlight-color: #ff8800;
}
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */

button {
  width: auto;
  overflow: visible;
}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */

.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* 
 * Non-semantic helper classes 
 */

/* for image replacement */

.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */

.hidden {
  display: none;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */

.visuallyhidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
/* Hide visually and from screenreaders, but maintain layout */

.invisible {
  visibility: hidden;
}
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */

.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix:after {
  clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */

.clearfix {
  zoom: 1;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
  align-items: center;
  -webkit-align-items: center;
  /* Safari 7.0+ */
  justify-content: center;
  -webkit-justify-content: center;
}
.flex.row-wrap {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
.flex.column-wrap {
  flex-flow: column wrap;
  -webkit-flex-flow: column wrap;
}
.flex > .expand {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.flex > .grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.flex > .shrink {
  flex-shrink: 1;
  -webkit-flex-shrink: 1;
}
.flex > .stretch {
  align-self: stretch;
  -webkit-align-self: stretch;
}
/* Primary Styles
    Author: Joe Flateau (joef@sidearmsports.com)
            Mike Nguyen (mnguyen@sidearmsports.com)
 */
html,
body {
  height: 100%;
}
#container {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
  align-items: center;
  -webkit-align-items: center;
  /* Safari 7.0+ */
  justify-content: center;
  -webkit-justify-content: center;
  align-items: stretch;
  -webkit-align-items: stretch;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  flex-flow: column nowrap;
}
#container.row-wrap {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
#container.column-wrap {
  flex-flow: column wrap;
  -webkit-flex-flow: column wrap;
}
#container > .expand {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
#container > .grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
#container > .shrink {
  flex-shrink: 1;
  -webkit-flex-shrink: 1;
}
#container > .stretch {
  align-self: stretch;
  -webkit-align-self: stretch;
}
.loading {
  font-size: 40px;
  font-family: robotobold;
  background: white;
  text-align: center;
  padding: 20px 0;
}
body {
  font-size: 12px;
  background: white;
  font-family: 'Helvetica Neue', sans-serif;
}
header {
  background: url(/global/mediastats/images/header_repeat.png) repeat-x top black;
  color: white;
  border-style: solid;
  border-width: 1px 0;
  position: relative;
  min-width: 980px;
  height: 113px;
  overflow: hidden;
  flex-shrink: 0;
}
.clear {
  float: none;
  clear: both;
}
.nowrap {
  white-space: nowrap;
}
#game_list_handle {
  background: url("/global/mediastats/images/shade_handle.png");
  display: block;
  font-family: leaguegothicregular, sans-serif;
  font-size: 20px;
  height: 28px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 1px;
  width: 101px;
  color: white;
  text-decoration: none;
}
#game_list_shade {
  background: url("/global/mediastats/images/shade_bg.png") repeat-x top #404040;
  height: 150px;
}
#game_list_shade .inner {
  position: relative;
}
#game_list_shade .title {
  font-family: leaguegothicregular, sans-serif;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  text-align: center;
}
#game_list_shade .live {
  background: #dfdfdf;
  border-radius: 2px;
  color: #232323;
  height: 37px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 52px;
  width: 205px;
  font-family: leaguegothicregular, sans-serif;
  font-size: 20px;
  text-decoration: none;
  line-height: 37px;
  text-align: center;
}
#game_list_shade ul {
  left: 230px;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 35px;
  width: 750px;
  line-height: 10px;
}
#game_list_shade ul li {
  float: left;
  width: 30%;
  font-size: 11px;
  padding: 2px 4px;
}
#game_list_shade ul a {
  color: white;
  font-family: RobotoCondensed, sans-serif;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
h2,
#leaders dt {
  font-family: 'LeagueGothicRegular', sans-serif;
  color: #a8a8a8;
  font-size: 50px;
  line-height: 1.1;
  padding: 0 24px;
  margin-bottom: 24px;
  text-align: left;
  clear: left;
  font-weight: normal;
}
h3 {
  font-family: 'LeagueGothicRegular', sans-serif;
  color: #999999;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
}
header .inner,
footer .inner,
#main {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
#main {
  flex-grow: 1;
  background: white;
}
#non-footer {
  *height: 100%;
  min-height: 100%;
}
.side_by_side_stats_dgrd {
  table-layout: fixed;
}
.side_by_side_stats_dgrd thead {
  font-size: 20px;
  font-family: 'LeagueGothicRegular', sans-serif;
}
.side_by_side_stats_dgrd th,
.side_by_side_stats_dgrd td {
  text-align: center;
}
.side_by_side_stats_dgrd th {
  font-family: RobotoBoldCondensed, sans-serif;
  font-weight: normal;
}
.default_dgrd thead th,
.default_dgrd thead td,
.stat_key {
  color: #dddddd;
  background: #444444;
  white-space: nowrap;
}
.default_dgrd tfoot {
  border-top: 1px solid #232323;
}
.default_dgrd tfoot tr:nth-child(odd) th,
.default_dgrd tfoot tr:nth-child(odd) td {
  background: #fcfcfc;
}
.default_dgrd td {
  padding: 2px 3px;
}
.default_dgrd .default_dgrd_item th,
.default_dgrd .default_dgrd_item td {
  background: #f8f8f8;
}
.default_dgrd .default_dgrd_alt th,
.default_dgrd .default_dgrd_alt td {
  background: #fcfcfc;
}
.default_dgrd tbody .default_dgrd_hover th,
.default_dgrd tfoot .default_dgrd_hover th,
.default_dgrd tbody .default_dgrd_hover td,
.default_dgrd tfoot .default_dgrd_hover td {
  background: #ffeeaa;
}
.default_dgrd tbody tr:nth-child(odd) td.default_dgrd_hover,
.default_dgrd tfoot tr:nth-child(odd) td.default_dgrd_hover,
.default_dgrd tbody td.default_dgrd_hover,
.default_dgrd tfoot td.default_dgrd_hover {
  background: #ffeeaa;
}
.default_dgrd tbody td.eq-zero,
.default_dgrd tfoot td.eq-zero {
  color: #d8d8d8;
}
.default_dgrd thead td.default_dgrd_hover {
  color: #ffeeaa;
}
.default_dgrd .default_dgrd_selected th,
.default_dgrd .default_dgrd_selected td {
  background: #aaeeff;
}
.default_dgrd.selectable_rows tbody tr {
  cursor: pointer;
}
.default_dgrd th.sorted,
.default_dgrd td.sorted {
  background: #dddddd;
}
.default_dgrd td.score,
.default_dgrd td.run,
.default_dgrd td.margin {
  text-align: center;
  vertical-align: middle;
}
.default_dgrd td.run {
  color: white;
}
/* quick imitation of foundation grid */

.row {
  width: 100%;
  padding: 0 10px;
}
.row .row {
  padding: 0 5px;
}
.row .columns {
  float: left;
}
.row .columns.small-1 {
  width: 8.33%;
}
.row .columns.small-2 {
  width: 16.66%;
}
.row .columns.small-3 {
  width: 25.00%;
}
.row .columns.small-4 {
  width: 33.33%;
}
.row .columns.small-5 {
  width: 41.66%;
}
.row .columns.small-6 {
  width: 50.00%;
}
.row .columns.small-7 {
  width: 58.33%;
}
.row .columns.small-8 {
  width: 66.66%;
}
.row .columns.small-9 {
  width: 75.00%;
}
.row .columns.small-10 {
  width: 83.33%;
}
.row .columns.small-11 {
  width: 91.66%;
}
.row .columns.small-12 {
  width: 100.00%;
}
.individual-stats-adjacent .stat-grid-container {
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 10px;
}
.individual-stats-adjacent .stat-grid-container.full-width {
  width: 100%;
}
.individual-stats-adjacent .stat-grid-container:nth-child(odd) {
  clear: left;
}
.individual-stats-adjacent .stat-grid-container h2 {
  float: none;
  text-align: left;
  font-size: 30px;
  width: auto;
}
.individual-stats-adjacent .stat-grid-container .stats_dgrd {
  float: none;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.stats_dgrd {
  text-align: right;
  table-layout: fixed;
  cursor: default;
}
.stats_dgrd tbody .column_Name {
  font-family: RobotoBoldCondensed, sans-serif;
  font-size: 11px;
}
.stats_dgrd td {
  white-space: nowrap;
}
.stats_dgrd td.column_2.column_P,
.stats_dgrd td.column_ {
  width: 10px;
}
.stats_dgrd td.column_Uni {
  color: inherit;
}
.stats_dgrd .column_Uni,
.stats_dgrd .column_Name,
.stats_dgrd .column_2.column_P,
.stats_dgrd td.column_PassPercent,
.stats_dgrd .column_ {
  text-align: left;
  width: 30px;
}
.stats_dgrd .column_Name {
  width: 100px;
}
.ui-tabs-nav {
  height: 41px;
  background: url(/global/mediastats/images/navtab_inactive_repeat.png) repeat-x;
  margin: 0;
  padding: 0;
  font-family: 'RobotoCondensed', sans-serif;
  font-size: 13px;
}
.ui-tabs-nav li {
  height: 41px;
  float: left;
  position: relative;
  list-style: none;
  border-style: solid;
  border-width: 0 1px;
  border-color: #a0a0a0 #c6c6c6 #a0a0a0 #a0a0a0;
  margin: 0;
  padding: 0;
}
.ui-tabs-nav li .shortcut-key {
  position: absolute;
  right: 3px;
  bottom: 3px;
  color: #dddddd;
  font-family: sans-serif;
  font-size: 10px;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  line-height: 8px;
  padding: 1px;
}
.ui-tabs-nav li.ui-state-active {
  background: url(/global/mediastats/images/navtab_active_repeat.png) repeat-x;
  border-color: white #c6c6c6 #c6c6c6 #c6c6c6;
}
.ui-tabs-nav li.ui-state-active .shortcut-key {
  color: #aaaaaa;
  border: 0;
}
.ui-tabs-nav a {
  display: block;
  line-height: 18px;
  padding: 11.5px 20px;
  color: #404040;
  text-decoration: none;
  outline: 0;
}
.ui-tabs-panel {
  background-color: white;
  padding: 12px 0 12px;
  position: relative;
  overflow: hidden;
}
.ui-tabs-hide {
  display: none;
}
#scoreboard {
  float: left;
  width: 250px;
}
header .sectionTitle {
  margin-left: 24px;
  margin-top: 12px;
  height: 36px;
  text-transform: uppercase;
  font-family: 'LeagueGothicRegular', sans-serif;
  line-height: 36px;
  padding: 0 12px;
  font-size: 20px;
  float: left;
}
#lastScore {
  float: left;
}
#lastScore .sectionTitle {
  background: black;
  color: #ffc000;
  padding: 0 12px;
  margin-left: 24px;
  margin-top: 12px;
}
#gameInfo .sectionTitle {
  background: #404040;
  color: #ffc000;
  padding: 0 12px;
  margin-left: 24px;
  margin-top: 12px;
}
#visitingLastScore,
#homeLastScore,
#ties,
#leadChanges {
  float: left;
  clear: left;
  margin-left: 24px;
  font-size: 14px;
  font-family: "helvetica neue", "segoe ui", sans-serif;
  font-weight: normal;
  line-height: 18px;
  margin-bottom: 5px;
}
#visitingLastScore,
#ties {
  margin-top: 7px;
}
#aboutGame {
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  padding-left: 45px;
}
#aboutTeams {
  font-family: 'Helvetica Neue', sans-serif;
  width: 600px;
  margin: 0 auto;
}
#aboutVisitingTeam,
#aboutHomeTeam {
  width: 300px;
  float: left;
  font-size: 25px;
}
#aboutTeams .record {
  display: block;
}
#gameDate,
#attendance,
#location,
#officials,
#gameNotes {
  font-size: 18px;
}
#scoreboard td {
  font-family: 'LeagueGothicRegular', sans-serif;
  text-align: center;
}
#summary {
  padding-top: 45px;
}
#linescore {
  margin: 0 auto 45px;
}
#pointsSummary {
  position: absolute;
  left: 520px;
  top: 15px;
}
.linescore {
  font-size: 12px;
  clear: both;
}
.linescore thead th,
.linescore thead td,
.linescore th {
  background: #444444;
  color: white;
}
.linescore thead th,
.linescore thead td {
  vertical-align: bottom;
}
.linescore thead th {
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: RobotoBoldCondensed, sans-serif;
  font-weight: normal;
}
.linescore th,
.linescore td {
  border: 1px solid #777777;
  padding: 1px 2px;
}
.linescore th {
  text-align: left;
  width: 150px;
  font-weight: normal;
}
.linescore td {
  text-align: center;
  width: 30px;
}
#scoreboard {
  margin-top: 15px;
  margin-left: 20px;
}
#visitingPlayerStatsSummary,
#homePlayerStatsSummary,
.side_by_side {
  float: left;
  width: 435px;
  margin-left: 10px;
}
#visitingPlayerStatsSummary table,
#homePlayerStatsSummary table,
.side_by_side table {
  width: 100%;
}
.stat_leader_list {
  float: left;
  width: 435px;
  height: 150px;
  margin-left: 30px;
  margin-right: 20px;
}
.stat_leader_list table {
  width: 100%;
  table-layout: fixed;
}
.stat_leader_list table .stat-abbrev {
  width: 40px;
  text-align: center;
}
#linetimeouts {
  display: none;
}
#visitingPlayerStatsSummary,
.side_by_side_left {
  margin-left: 50px;
}
#teamStatsTable {
  margin: 0 auto;
  width: 400px;
}
#visitingTeamStarterStats,
#homeTeamStarterStats {
  max-width: 1280px;
  float: none;
  margin: 0 auto;
  padding: 0 24px;
}
#visitingTeamStarterStats .default_dgrd,
#homeTeamStarterStats .default_dgrd {
  width: 100%;
}
#visitingPlayerStats #visitingTeamTotals,
#homePlayerStats #homeTeamTotals {
  margin: 24px auto 0;
  width: 1024px;
  float: none;
  white-space: nowrap;
}
.footnote {
  padding-top: 12px;
  padding-left: 24px;
  font-family: robotoboldcondensed, sans-serif;
}
#visitingPlayerStats .footnote,
#homePlayerStats .footnote {
  clear: both;
}
#scoreboard .team-games {
  font-size: 20px;
  line-height: 20px;
}
#homeTeamScore,
#visitingTeamScore {
  font-size: 40px;
}
#period {
  font-size: 20px;
}
#clockTime {
  font-size: 55px;
}
#homeTeamName,
#visitingTeamName {
  margin-top: 5px;
  font-size: 18px;
  line-height: 12.5px;
  width: 80px;
  text-transform: uppercase;
  height: 25px;
}
.key_value_list {
  margin: 15px 0;
}
.key_value_list .stat {
  float: left;
}
.key_value_list .stat_key,
.key_value_list .stat_value,
.key_value_list .stat_value_alt {
  display: block;
  padding: 2px 4px;
}
#playListFilters,
#playList {
  margin: 0 auto;
  width: 800px;
  table-layout: fixed;
}
#playListFilters .context,
#playList .context {
  margin-top: 4px;
  font-family: robotobold, sans-serif;
  color: #888888;
  font-size: 10px;
  text-transform: uppercase;
}
#playListFilters .narrative,
#playList .narrative {
  margin-bottom: 4px;
  font-size: 12px;
}
#playListFilters thead,
#playList thead,
#playListFilters .visiting_team_score,
#playList .visiting_team_score,
#playListFilters .home_team_score,
#playList .home_team_score,
#playListFilters .clock,
#playList .clock {
  font-size: 14px;
  white-space: nowrap;
}
#playListFilters .visiting_team_name,
#playList .visiting_team_name,
#playListFilters .home_team_name,
#playList .home_team_name {
  font-family: RobotoBoldCondensed, sans-serif;
}
#playListFilters .visiting_team_score,
#playList .visiting_team_score,
#playListFilters .home_team_score,
#playList .home_team_score {
  width: 20px;
  text-align: center;
  vertical-align: middle;
}
#playListFilters .clock,
#playList .clock {
  width: 90px;
  text-align: center;
}
#playListFilters {
  background: #444444;
  color: white;
  font-family: 'LeagueGothicRegular', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  padding: 4px 0;
}
#playListFilterPeriod {
  width: 60px;
}
#playListFilterTeam {
  width: 110px;
}
#playListFilterPlayer {
  width: 170px;
}
#playListFilterType {
  width: 75px;
}
#playListFilterAction {
  width: 100px;
}
#playListFilters select {
  font-family: sans-serif;
  font-size: 12px;
}
#baseRunners {
  float: left;
  width: 100px;
  height: 50px;
  position: relative;
}
#baseRunners .base {
  position: absolute;
  width: 20%;
  height: 40%;
  background: #444444;
  display: block;
  margin: 3px 0 0 30px;
  /* Rotate */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25) inset;
  border: 1px solid black;
}
#baseRunners .base .uniform {
  display: block;
  margin: -23px 0 0 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  /* Rotate */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  /* Rotate Origin */
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
#baseRunners .first {
  top: 50%;
  left: 40%;
}
#baseRunners .second {
  top: 20%;
  left: 20%;
}
#baseRunners .third {
  top: 50%;
  left: 0%;
}
.count-lights {
  position: absolute;
  top: 60px;
  font-family: robotoblack;
  width: 100;
  left: 3px;
  color: #444444;
}
.count-lights .label {
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 20px;
}
.count-lights .lights {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  width: 60px;
}
.count-lights .light {
  width: 11px;
  height: 11px;
  background: #444444;
  display: block;
  -moz-border-radius: 5.5px;
  -webkit-border-radius: 5.5px;
  border-radius: 5.5px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 2px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25) inset;
  border: 1px solid black;
}
.count-lights .balls .light.lit {
  background: #0fc020;
}
.count-lights .strikes .light.lit {
  background: #e8cf28;
}
.count-lights .outs .light.lit {
  background: #c00505;
}
.lineup {
  text-align: left;
}
.game-note-ticker {
  background: #232323;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
}
h3 {
  font-family: "helvetica neue", "segoe ui", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #232323;
  font-weight: bold;
}
.stats_dgrd tbody .column_Name,
.stats_dgrd td,
.side_by_side_stats_dgrd td,
.linescore td,
.linescore th,
.linescore thead th,
.last-plays,
.footnote {
  font-family: "helvetica neue", "segoe ui", sans-serif;
  font-size: 0.7rem;
}
.linescore thead th {
  font-weight: bold;
}
.flex.row-wrap > * {
  flex-basis: 50%;
}
.footnote {
  padding-left: 0;
}
#gameSummary #teamStatsTable th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team_stats_Ties th,
.team_stats_Ties td,
.team_stats_PointsFromBench th,
.team_stats_PointsFromBench td,
.team_stats_LastLeadScore th,
.team_stats_LastLeadScore td,
.team_stats_LargestLead th,
.team_stats_LargestLead td,
.team_stats_Possession th,
.team_stats_Possession td {
  border-top: 10px solid #e4e4e4;
}
#scoreboard {
  float: left;
  width: 250px;
}
#scoreboard .bonus {
  background: url(../images/header_bonus_repeat.png);
  padding: 0 4px;
  font-size: 0.7rem;
  line-height: 19px;
  color: black;
  float: left;
  text-transform: uppercase;
  font-family: RobotoBoldCondensed, sans-serif;
}
#homeTeamBonus,
#visitingTeamBonus {
  margin-left: 12px;
}
#homeTeamDoubleBonus,
#visitingTeamDoubleBonus {
  margin-left: 2px;
}
#lastScore {
  height: 113px;
  width: 400px;
  float: left;
  background: url(../images/header_lastscore_repeat.png) repeat-x;
}
#gameInfo {
  float: left;
  position: relative;
}
header .sectionTitle {
  margin-left: 30px;
  margin-top: 1px;
  height: 35px;
  text-transform: uppercase;
  font-family: 'LeagueGothicRegular', sans-serif;
  line-height: 35px;
  padding: 0 15px;
  font-size: 1.2rem;
  float: left;
}
#lastScore .sectionTitle {
  background: black;
  color: #ffc000;
}
#gameInfo .sectionTitle {
  background: #404040;
  color: #ffc000;
}
#gameFlow {
  width: 900px;
  height: 125px;
  position: relative;
  margin: 0 auto 15px;
}
#gameFlow img {
  left: 0;
  top: 0;
  position: absolute;
}
.runsContainer {
  margin: 24px auto;
  width: 520px;
}
#runsTable {
  width: 500px;
}
html.touch #runsTable td {
  padding: 10px 3px;
}
#runsSummary {
  float: left;
  margin-left: 15px;
  width: 300px;
  font-size: 1.6rem;
  font-family: 'RobotoBoldCondensed', sans-serif;
  text-align: center;
}
#runsSummary .run-name {
  text-transform: uppercase;
  border-bottom: 1px solid black;
  margin-bottom: 10px;
}
#runsSummary .run-scores {
  font-family: 'RobotoBold', sans-serif;
  font-size: 1.8rem;
}
#runsSummary .run-time {
  font-family: 'RobotoBold', sans-serif;
  font-size: 1.6rem;
}
#runsSummary .run-start-end {
  font-family: 'RobotoLight', sans-serif;
  font-size: 1.5rem;
}
#runsSummary .run-team-name {
  margin-top: 12px;
  font-family: 'RobotoBlack', sans-serif;
  font-size: 1.4rem;
}
#runsSummary .run-player-points,
#runsSummary .run-team-stats {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
#runsSummary.stuck {
  left: 50%;
  margin-left: 85px;
  position: fixed;
  top: 10px;
}
#linescore {
  margin: -25px 50px 35px;
}
.stats_dgrd .column_FG,
.stats_dgrd .column_3P,
.stats_dgrd .column_FT,
.stats_dgrd .column_EFF,
.stats_dgrd .column_USG,
.stats_dgrd .column_PpM {
  width: 35px;
}
.stats_dgrd .column_ {
  width: 10px;
}
#clockTime {
  line-height: 55px;
}
#scoreboard .fouls {
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
}
#scoreboard .fouls td:first-child {
  text-align: left;
}
#scoreboard .fouls td:first-child + td {
  text-align: center;
}
#scoreboard .fouls td:first-child + td + td {
  text-align: right;
}
/* Game Summary CSS */

header .inner,
footer .inner,
#main {
  width: 100%;
  min-width: 980px;
}
.innerWrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.innerWrapper #scoreboard {
  flex: 0 0 250px;
  -webkit-flex: 0 0 250px;
  min-width: 1px;
  min-height: 1px;
  margin: 0 12px;
}
.innerWrapper #lastScore {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
}
.innerWrapper #gameInfo {
  flex: 0 0 250px;
  -webkit-flex: 0 0 250px;
  min-width: 1px;
  min-height: 1px;
  height: 113px;
}
#aboutGame {
  padding: 48px;
}
.aboutGameWrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.aboutGameWrapper #aboutTeams {
  width: auto;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  min-width: 1px;
  min-height: 1px;
}
.aboutGameWrapper #aboutTeams .team {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.aboutGameWrapper #aboutTeams .logo {
  margin: 0 6px;
}
.aboutGameWrapper #aboutTeams .logo img {
  width: 48px;
}
.aboutGameWrapper #aboutTeams .name {
  font-weight: 700;
  margin-right: 6px;
  text-transform: capitalize;
}
.aboutGameWrapper #aboutTeams #aboutVisitingTeam {
  width: auto;
  white-space: nowrap;
}
.aboutGameWrapper #aboutTeams #aboutHomeTeam {
  width: auto;
  white-space: nowrap;
}
.aboutGameWrapper #aboutTeams .versus {
  margin: 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.aboutGameWrapper #aboutTeams .record {
  display: inline-block;
}
.aboutGameWrapper #aboutGameInfo {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: left;
}
.aboutGameWrapper #aboutGameInfo .info {
  font-weight: 700;
}
.aboutGameWrapper #aboutGameInfo .info .value {
  font-weight: 400;
}
#gameSummary {
  padding: 24px 0 120px;
}
#gameSummary .gameSummary--top {
  display: flex;
  display: -webkit-flex;
}
#gameSummary .recentPlays {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  margin-bottom: 0;
  margin-right: 6px;
  height: 100px;
  overflow-y: auto;
}
#gameSummary .recentPlays .last-plays .play {
  height: auto !important;
}
#gameSummary .recentPlays .last-plays .play:nth-child(even) {
  background-color: #f8f8f8;
}
#gameSummary .recentPlays .last-plays .clock {
  display: inline-block;
  padding: 2px 6px;
  margin-right: 6px;
}
#gameSummary .topTableWrapper {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  margin-left: 6px;
}
#gameSummary .topTableWrapper table {
  width: 100%;
}
#gameSummary #linescore {
  margin: 0 6px 0 0;
}
#gameSummary #linescore thead th,
#gameSummary #linescore thead td {
  vertical-align: middle;
}
#gameSummary .linescore thead th {
  height: 30px;
}
#gameSummary #pointsSummary {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  position: static;
  margin: 0 0 0 6px;
}
#gameSummary .gameSummary--wrapper {
  display: flex;
  display: -webkit-flex;
}
@media screen and (max-width: 1024px) {
  #gameSummary .gameSummary--wrapper {
    display: block;
    -webkit-display: block;
  }
}
#gameSummary .gameSummary--main {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  padding: 0 12px;
}
#gameSummary .teamStatsWrapper {
  margin-top: 24px;
  display: flex;
  display: -webkit-flex;
}
#gameSummary #visitingPlayerStatsSummary {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  margin: 0 6px 0 0;
}
#gameSummary #homePlayerStatsSummary {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  margin: 0 0 0 6px;
  float: none;
}
#gameSummary .gameSummary--sidebar {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex: 0 0 320px;
  -webkit-flex: 0 0 320px;
  min-width: 1px;
  min-height: 1px;
  padding: 0 12px 0 0;
}
#gameSummary #teamStatsTable {
  width: 100%;
  max-width: 470px;
}
#gameSummary #teamStatsTable th,
#gameSummary #teamStatsTable td {
  vertical-align: middle;
}
#leaders {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.stat_leader_list {
  flex: 0 1 calc(33% - 24px);
  -webkit-flex: 0 1 calc(33% - 24px);
  min-width: 1px;
  min-height: 1px;
  padding: 0 12px;
  margin: 0;
}
#playbyplay .playbyplayWrapper {
  display: flex;
  display: -webkit-flex;
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}
#playbyplay .stuck {
  position: fixed;
  top: 12px;
  width: 100%;
  max-width: 320px;
}
#playbyplay #playListFilters {
  flex: 0 0 320px;
  -webkit-flex: 0 0 320px;
  min-width: 1px;
  min-height: 1px;
  width: 320px;
  margin-right: 12px;
  text-align: left;
  padding: 12px;
}
#playbyplay #playListFilters h2 {
  padding: 0;
  margin-bottom: 12px;
}
#playbyplay #playListFilters .filter {
  margin-bottom: 12px;
}
#playbyplay #playListFilters .filter span {
  display: block;
  margin-right: 12px;
}
#playbyplay #playListFilters select {
  width: 100%;
}
#playbyplay #playList {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  width: auto;
}
#playbyplay #playList table {
  width: 100%;
}
#runs .runsContainer {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  max-width: 1024px;
}
#runs .runsContainer .stuck {
  position: fixed;
  top: 12px;
  width: 100%;
  max-width: 320px;
}
#runs .runsContainer #runsTable {
  flex: 1;
  -webkit-flex: 1;
  min-width: 1px;
  min-height: 1px;
  margin-right: 24px;
}
#runs .runsContainer #runsTable table {
  width: 100%;
}
#runs .runsContainer #runsSummary {
  flex: 0 0 320px;
  -webkit-flex: 0 0 320px;
  min-width: 1px;
  min-height: 1px;
}
@media screen and (max-width: 1128px) {
  .stat_leader_list {
    flex: 0 1 calc(50% - 24px);
    -webkit-flex: 0 1 calc(50% - 24px);
    min-width: 1px;
    min-height: 1px;
    padding: 0 12px;
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .aboutGameWrapper #aboutGameInfo {
    text-align: center;
  }
  #playbyplay .playbyplayWrapper {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  #playbyplay #playListFilters {
    flex: 1;
    -webkit-flex: 1;
    min-width: 1px;
    min-height: 1px;
    margin-right: 0;
  }
  #playbyplay #playList {
    flex: 1 0 100%;
    -webkit-flex: 1 0 100%;
    min-width: 1px;
    min-height: 1px;
  }
  #playbyplay .stuck {
    position: static !important;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .stat_leader_list {
    flex: 0 1 calc(100% - 24px);
    -webkit-flex: 0 1 calc(100% - 24px);
    min-width: 1px;
    min-height: 1px;
    padding: 0 12px;
    margin: 0;
  }
}
