/* 
  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;
}
/* basic scrollbar styling */

/* vertical scrollbar */

.mCSB_container {
  width: auto;
  margin-right: 30px;
  overflow: hidden;
}
.mCSB_container.mCS_no_scrollbar {
  margin-right: 0;
}
.mCS_disabled > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar,
.mCS_destroyed > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar {
  margin-right: 30px;
}
.mCustomScrollBox > .mCSB_scrollTools {
  width: 16px;
  height: 100%;
  top: 0;
  right: 0;
}
.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}
.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: relative;
  height: 20px;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.mCSB_scrollTools .mCSB_buttonDown {
  top: 100%;
  margin-top: -40px;
}
/* horizontal scrollbar */

.mCSB_horizontal > .mCSB_container {
  height: auto;
  margin-right: 0;
  margin-bottom: 30px;
  overflow: hidden;
}
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
  margin-bottom: 0;
}
.mCS_disabled > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar,
.mCS_destroyed > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
  margin-right: 0;
  margin-bottom: 30px;
}
.mCSB_horizontal.mCustomScrollBox > .mCSB_scrollTools {
  width: 100%;
  height: 16px;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.mCSB_horizontal > .mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 0 20px;
}
.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger {
  width: 30px;
  height: 100%;
}
.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
  display: block;
  position: relative;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  float: left;
}
.mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
  margin-left: -40px;
  float: right;
}
.mCustomScrollBox {
  -ms-touch-action: none;
  /*MSPointer events - direct all pointer events to js*/

}
/* default scrollbar colors and backgrounds (default theme) */

.mCustomScrollBox > .mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */

}
.mCustomScrollBox:hover > .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_draggerRail {
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(/global/fanstats/mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /* 
	sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark) 
	*/

}
.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /* 
	sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark) 
	*/

}
.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /* 
	sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark) 
	*/

}
.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /* 
	sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark) 
	*/

}
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  /* old ie */

}
/*scrollbar themes*/

/*dark (dark colored scrollbar)*/

.mCS-dark > .mCSB_scrollTools .mCSB_draggerRail {
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.15);
}
.mCS-dark > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.75);
}
.mCS-dark > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.85);
}
.mCS-dark > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.9);
}
.mCS-dark > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
/*light-2*/

.mCS-light-2 > .mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-light-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-light-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.85);
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.9);
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}
.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}
/*dark-2*/

.mCS-dark-2 > .mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-dark-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.85);
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.9);
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}
.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}
/*light-thick*/

.mCS-light-thick > .mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-light-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-light-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.85);
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.9);
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}
.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}
/*dark-thick*/

.mCS-dark-thick > .mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-dark-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}
.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}
/*light-thin*/

.mCS-light-thin > .mCSB_scrollTools .mCSB_draggerRail {
  background: white;
  /* rgba fallback */
  background: rgba(255, 255, 255, 0.1);
}
.mCS-light-thin > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}
.mCS-light-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
}
.mCS-light-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}
/*dark-thin*/

.mCS-dark-thin > .mCSB_scrollTools .mCSB_draggerRail {
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.15);
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
  background: black;
  /* rgba fallback */
  background: rgba(0, 0, 0, 0.75);
}
.mCS-dark-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
}
.mCS-dark-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
/* custom styling */

/* content_1 scrollbar */

.content_1 > .mCustomScrollBox > .mCSB_scrollTools {
  height: 96%;
  top: 2%;
}
/* content_2 scrollbar */

.content_2 .mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}
.content_2 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */

}
.content_2 .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
  /* old ie */

}
.content_2 .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.content_2 .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.6);
  filter: "alpha(opacity=60)";
  -ms-filter: "alpha(opacity=60)";
  /* old ie */

}
/* content_3 scrollbar */

.content_3 > .mCustomScrollBox > .mCSB_scrollTools {
  height: 94%;
  top: 3%;
}
.content_3 .mCSB_scrollTools .mCSB_draggerRail {
  width: 0;
  border-right: 1px dashed #0099cc;
}
.content_3 .mCSB_scrollTools .mCSB_dragger {
  height: 11px;
}
.content_3 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  background: #0099cc;
}
/* content_4 scrollbar */

.content_4 > .mCustomScrollBox > .mCSB_scrollTools {
  height: 94%;
  top: 3%;
}
.content_4 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #d0b9a0;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.content_4 .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.content_4 .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: #dfcdb9;
}
.content_4 .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.content_4 .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
/* content_5 scrollbar */

.content_5 > .mCustomScrollBox > .mCSB_scrollTools {
  width: 98%;
  margin: 0 1%;
}
/* content_6 scrollbar */

.content_6 > .mCustomScrollBox > .mCSB_scrollTools {
  width: 88%;
  margin: 0 6%;
}
/* content_8 scrollbar */

.content_8 .mCSB_scrollTools .mCSB_draggerRail {
  width: 0px;
  border-left: 1px solid rgba(0, 0, 0, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
/* 
    Author: Joe Flateau (joef@sidearmsports.com)
	
	A David Jones Joint
 */
.clear {
  clear: both;
}
.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 13;
  text-shadow: none;
  background: black;
  color: white;
  font-family: verb_blackregular;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid #ff8800;
}
.loading .word {
  position: absolute;
  top: 50%;
  margin-top: -40px;
  left: 0;
  width: 100%;
}
.loading .numbers {
  color: #888888;
  position: absolute;
  top: 50%;
  margin-top: 10px;
  left: 0;
  width: 100%;
  font-family: verb_lightregular;
  font-size: 12px;
}
.loading .powered-by {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -159px;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  font-family: verb_regularregular;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
a.off-canvas-handle {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  color: white;
  z-index: 20;
  height: 70px;
  width: 35px;
  line-height: 70px;
  text-align: center;
  font-size: 17px;
}
@media screen and (min-width: 481px) {
  a.off-canvas-handle {
    display: none;
  }
}
@media screen and (max-height: 334px) {
  a.off-canvas-handle {
    display: none;
  }
}
@media screen and (max-height: 600px) {
  a.off-canvas-handle {
    display: block;
  }
}
.off-canvas-nav {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  color: white;
  z-index: 20;
  width: 200px;
}
.off-canvas-nav .ui-tabs-nav {
  background: black;
  color: white;
  border: 0;
}
.off-canvas-nav .ui-tabs-nav * {
  background: black;
  color: white;
  border: 0;
}
.off-canvas-nav .ui-tabs-nav li a i {
  margin-right: 10px;
}
header {
  height: 116px;
  background: #3d3f42;
  border: 0;
  min-width: 0;
  /*@media screen and (max-height: 334px)
    {
        height: 116px;
    }*/

}
@media screen and (max-height: 600px) {
  header {
    height: 81px;
  }
}
#scoreboard {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
  margin-left: 0;
  z-index: 10;
  height: 80px;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-height: 600px) {
  #scoreboard {
    padding-left: 35px;
  }
}
@media screen and (max-height: 334px) {
  #scoreboard {
    padding-left: 0;
  }
}
#scoreboard * {
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#scoreboard #bannerMessage {
  position: absolute;
  left: 0;
  width: 100%;
  top: 118px;
  background: transparent;
  color: white;
  font-family: verb_blackregular;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 1000px) {
  #scoreboard #bannerMessage {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media screen and (max-height: 600px) {
  #scoreboard #bannerMessage {
    top: 90px;
  }
}
@media screen and (max-height: 334px) {
  #scoreboard #bannerMessage {
    display: none;
  }
}
#scoreboard .teams {
  height: 120px;
  box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  margin: 0 auto;
  position: relative;
}
#scoreboard .team {
  width: 50%;
  height: 120px;
  line-height: 120px;
  position: absolute;
}
#scoreboard .team .team-name-record,
#scoreboard .team .team-score {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}
#scoreboard .team .team-name-record {
  width: 415px;
  font-family: verb_regularbold;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1;
}
#scoreboard .team .team-name-record .record {
  display: block;
  font-size: 11px;
}
#scoreboard .team .team-score {
  width: 75px;
  font-family: verb_blackregular;
  font-size: 40px;
  line-height: 1;
}
#scoreboard .team .team-fouls,
#scoreboard .team .team-spot {
  position: absolute;
  top: 72px;
  left: 200px;
  width: 270px;
  text-align: right;
  height: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: verb_blackregular;
}
@media screen and (max-width: 1000px) {
  #scoreboard .team .team-fouls,
  #scoreboard .team .team-spot {
    left: 122px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #scoreboard .team .team-fouls,
  #scoreboard .team .team-spot {
    left: 92px;
    font-size: 8px;
    width: 50px;
  }
}
#scoreboard .team .team-fouls div,
#scoreboard .team .team-spot div {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: -0.25em;
}
#scoreboard .team .team-fouls div.fouls,
#scoreboard .team .team-spot div.fouls {
  margin-right: 0.25em;
}
#scoreboard .team .team-fouls div.bonus,
#scoreboard .team .team-spot div.bonus {
  border: 1px solid white;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 0 5px;
  font-size: 10px;
  height: 15px;
  line-height: 15px;
}
@media screen and (max-width: 550px) {
  #scoreboard .team .team-fouls div.bonus,
  #scoreboard .team .team-spot div.bonus {
    padding: 0;
    opacity: 0;
    width: 0;
  }
}
#scoreboard #visitingScoreboard {
  text-align: right;
  left: 0;
}
#scoreboard #visitingScoreboard .team-name-record {
  padding-right: 130px;
}
@media screen and (max-width: 1000px) {
  #scoreboard #visitingScoreboard .team-name-record {
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 1000px) {
  #scoreboard #visitingScoreboard .team-score {
    margin-right: 120px;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  #scoreboard #visitingScoreboard .team-score {
    margin-right: 90px;
    font-size: 24px;
  }
}
#scoreboard #visitingScoreboard .team-fouls,
#scoreboard #visitingScoreboard .team-spot {
  left: auto;
  right: 200px;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  #scoreboard #visitingScoreboard .team-fouls,
  #scoreboard #visitingScoreboard .team-spot {
    right: 122px;
    text-align: right;
  }
}
@media screen and (max-width: 480px) {
  #scoreboard #visitingScoreboard .team-fouls,
  #scoreboard #visitingScoreboard .team-spot {
    right: 92px;
  }
}
#scoreboard #homeScoreboard {
  left: 50%;
}
#scoreboard #homeScoreboard .team-name-record {
  padding-left: 130px;
}
@media screen and (max-width: 1000px) {
  #scoreboard #homeScoreboard .team-name-record {
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 1000px) {
  #scoreboard #homeScoreboard .team-score {
    margin-left: 120px;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  #scoreboard #homeScoreboard .team-score {
    margin-left: 90px;
    font-size: 24px;
  }
}
#scoreboard .vs {
  position: absolute;
  left: 50%;
  height: 60px;
  top: 30px;
  margin-left: -110px;
  width: 220px;
  background: white;
  line-height: 60px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
@media screen and (max-width: 480px) {
  #scoreboard .vs {
    margin-left: -80px;
    width: 160px;
  }
}
#scoreboard .vs .visiting-logo {
  left: 8px;
}
#scoreboard .vs .home-logo {
  right: 8px;
}
#scoreboard .vs .visiting-logo,
#scoreboard .vs .home-logo {
  position: absolute;
  top: 8px;
  height: 44px;
  width: 50px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 40em) {
  #scoreboard .vs .visiting-logo,
  #scoreboard .vs .home-logo {
    width: 34px;
    top: 13px;
  }
}
#scoreboard .vs .visiting-logo img,
#scoreboard .vs .home-logo img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
#scoreboard .vs .donut-time {
  position: absolute;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  top: 0px;
  height: 60px;
}
#scoreboard .vs .vs-text {
  color: #3d3f42;
  background: black;
  -moz-border-radius: 38px;
  -webkit-border-radius: 38px;
  border-radius: 38px;
  left: 50%;
  top: 50%;
  font-family: verb_blackregular;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  width: 38px;
  margin-left: -19px;
  height: 38px;
  margin-top: -19px;
  line-height: 38px;
}
#scoreboard #period {
  background: black;
  color: #aaaaaa;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 120px;
  margin-left: -70px;
  text-align: center;
  font-family: verb_regularbold;
  text-transform: uppercase;
}
#scoreboard #clockTime {
  color: white;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 145px;
  margin-left: -70px;
  text-align: center;
  font-family: verb_regularbold;
  text-transform: uppercase;
  font-size: 40px;
}
#scoreboard .teams {
  height: 70px;
}
#scoreboard .teams .team {
  height: 70px;
  line-height: 70px;
}
#scoreboard .teams .team .team-fouls,
#scoreboard .teams .team .team-spot {
  top: 48px;
}
#scoreboard .vs {
  top: 4px;
}
#scoreboard .vs .donut-time {
  z-index: 2;
}
#scoreboard .vs .vs-text {
  z-index: 3;
}
#scoreboard #period {
  margin-left: -60px;
  font-size: 20px;
}
#scoreboard #period:before {
  content: '';
  border-right: 18px solid black;
  border-bottom: 21px solid transparent;
  position: absolute;
  left: -18px;
  top: 0;
}
#scoreboard #clockTime {
  margin-left: 0;
}
#scoreboard #clockTime:after {
  content: '';
  border-left: 18px solid black;
  border-bottom: 21px solid transparent;
  position: absolute;
  right: -18px;
  top: 0;
}
#scoreboard #period,
#scoreboard #clockTime {
  top: 60px;
  width: 60px;
  color: white;
  background: black;
  font-size: 14px;
  padding: 2px 0;
  text-align: center;
}
#scoreboard #periodClock {
  position: absolute;
  left: 50%;
  top: 60px;
  margin-left: -60px;
  width: 120px;
  height: 21px;
  color: white;
  background: black;
  font-size: 14px;
  padding: 2px 0;
  font-family: verb_regularbold;
  text-transform: uppercase;
  text-align: center;
}
#scoreboard #periodClock.compact {
  font-size: 11px;
  line-height: 9px;
}
#scoreboard #periodClock.compact > * {
  margin-left: 5px;
}
@media screen and (max-height: 600px) {
  #scoreboard #periodClock {
    margin-left: -43px;
  }
}
@media screen and (max-height: 334px) {
  #scoreboard #periodClock {
    margin-left: -60px;
  }
}
#scoreboard #periodClock > * {
  margin-left: 10px;
}
#scoreboard #periodClock > *:first-child {
  margin-left: 0;
}
#scoreboard #periodClock:before {
  content: '';
  border-right: 18px solid black;
  border-bottom: 21px solid transparent;
  position: absolute;
  left: -18px;
  top: 0;
}
#scoreboard #periodClock:after {
  content: '';
  border-left: 18px solid black;
  border-bottom: 21px solid transparent;
  position: absolute;
  right: -18px;
  top: 0;
}
#scoreboard #period,
#scoreboard #clockTime {
  top: 60px;
  width: 60px;
  color: white;
  background: black;
  font-size: 14px;
  padding: 2px 0;
  text-align: center;
}
.inside {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
#container {
  height: 100%;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  width: 100%;
  display: block;
}
.off-canvas-visible #container {
  margin-left: 200px;
}
@media screen and (max-height: 600px) {
  #container {
    padding-bottom: 0;
    overflow: auto;
  }
}
#container header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
}
#container footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}
@media screen and (max-height: 540px) {
  #container footer {
    display: none;
  }
}
.widget {
  background: black;
}
.widget #linescore {
  margin: 0;
}
.widget #linescore thead {
  background: black;
}
.widget #scoreboard {
  padding-left: 0;
}
.widget .container {
  height: auto;
}
.widget .last-plays {
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding-top: 165px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, black), color-stop(0.9, black), color-stop(1, rgba(0, 0, 0, 0)));
}
@media screen and (max-width: 700px) {
  .widget .last-plays {
    padding-top: 140px;
  }
}
#linescore {
  font-family: verb_regularregular;
  font-size: 12px;
  width: 100%;
  margin: 20px 0 0;
  table-layout: fixed;
  position: relative;
  z-index: 2;
}
#linescore td,
#linescore th {
  background: transparent;
  border-left: 1px solid #888888;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid #888888;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-right: none;
  color: white;
  padding: 6px 4px;
}
@media screen and (max-width: 700px) {
  #linescore td,
  #linescore th {
    padding: 2px 0;
  }
}
#linescore td:first-child,
#linescore th:first-child {
  border-left: none;
}
#linescore td.column_T,
#linescore th.column_T {
  background: rgba(255, 255, 255, 0.15);
}
#linescore td {
  width: 20px;
}
#linescore thead {
  font-family: verb_blackregular;
}
#linescore thead tr:first-child th,
#linescore thead tr:first-child td {
  border-top: 1px solid #888888;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
#linescore thead tr:first-child th:first-child {
  color: transparent;
  border-top: none;
}
.last-plays {
  font-size: 15px;
  height: 100%;
}
.last-plays .play {
  margin: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.last-plays .play .clock {
  position: absolute;
  padding: 2px 0;
  width: 60px;
  text-align: center;
  color: white;
  background: #ff8800;
  margin-right: 10px;
  font-family: verb_blackregular;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.last-plays .play .context {
  display: block;
  margin-left: 70px;
  font-size: 9px;
  line-height: 10px;
  text-transform: uppercase;
  color: white;
  font-family: verb_regularitalic;
}
.last-plays .play .narrative {
  display: block;
  color: white;
  margin-left: 70px;
  font-size: 11px;
  font-family: verb_regularregular;
  padding: 3px 0 11px;
}
.last-plays .play .narrative * {
  display: block;
}
.last-plays .play .narrative :first-child {
  font-family: verb_blackregular;
  font-size: 13px;
}
.default_dgrd {
  color: white;
  float: left;
  width: 100%;
}
.default_dgrd.no-players {
  color: #444444;
}
.default_dgrd.no-players td,
.default_dgrd.no-players th {
  border-top: 1px solid #3d3f42;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
}
.default_dgrd [class*="column"],
.default_dgrd [class*="column"] + [class*="column"]:last-child {
  float: none;
}
.default_dgrd thead {
  background: transparent;
}
.default_dgrd .default_dgrd_item,
.default_dgrd .default_dgrd_alt,
.default_dgrd thead tr {
  background: transparent;
}
.default_dgrd .default_dgrd_item td,
.default_dgrd .default_dgrd_alt td,
.default_dgrd thead tr td,
.default_dgrd .default_dgrd_item th,
.default_dgrd .default_dgrd_alt th,
.default_dgrd thead tr th {
  background: transparent;
  border-top: 1px solid #3d3f42;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 4px 2px;
  height: auto;
  color: white;
}
.default_dgrd thead .default_dgrd_hover td {
  background: rgba(255, 255, 255, 0.25);
}
.default_dgrd .default_dgrd_item.default_dgrd_highlight td,
.default_dgrd .default_dgrd_alt.default_dgrd_highlight td {
  background: rgba(255, 255, 255, 0.25);
}
.default_dgrd .default_dgrd_item td.sorted,
.default_dgrd .default_dgrd_alt td.sorted {
  background: rgba(0, 0, 0, 0.5);
}
.default_dgrd .default_dgrd_item.default_dgrd_hover td,
.default_dgrd .default_dgrd_alt.default_dgrd_hover td,
.default_dgrd .default_dgrd_item:nth-child(odd).default_dgrd_hover td.default_dgrd_hover,
.default_dgrd .default_dgrd_alt:nth-child(odd).default_dgrd_hover td.default_dgrd_hover,
.default_dgrd .default_dgrd_item.default_dgrd_hover td.default_dgrd_hover,
.default_dgrd .default_dgrd_alt.default_dgrd_hover td.default_dgrd_hover {
  background: rgba(255, 255, 255, 0.25);
}
.default_dgrd .default_dgrd_item:nth-child(odd) td.default_dgrd_hover,
.default_dgrd .default_dgrd_alt:nth-child(odd) td.default_dgrd_hover,
.default_dgrd .default_dgrd_item td.default_dgrd_hover,
.default_dgrd .default_dgrd_alt td.default_dgrd_hover {
  background: rgba(255, 255, 255, 0.05);
}
.default_dgrd thead {
  text-transform: uppercase;
}
.default_dgrd thead .column_Uni,
.default_dgrd thead .column_Name {
  font: 0/0 a;
  text-indent: -1000px;
}
.default_dgrd .column_Name {
  width: 120px;
}
@media screen and (max-width: 480px) {
  .default_dgrd .column_Name {
    width: 80px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.default_dgrd .eq-zero {
  color: rgba(255, 255, 255, 0.15);
}
#main {
  width: auto;
  height: 100%;
  background: black no-repeat center center;
  padding: 36px 0 10px;
  position: static;
}
@media screen and (max-height: 600px) {
  #main {
    overflow: auto;
    position: relative;
  }
}
@media screen and (max-height: 334px) {
  #main {
    position: static;
  }
}
#main .inside {
  height: 100%;
}
#main .ui-tabs {
  position: relative;
  height: 100%;
  /*@media screen and (max-height: 334px) {
            .ui-tabs-nav {
                display: block;
            }
        }*/

}
@media screen and (max-height: 600px) {
  #main .ui-tabs {
    height: auto;
  }
}
#main .ui-tabs > .ui-tabs-tab-focus {
  position: absolute;
  z-index: 1;
  background: #232323;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.15) inset, 0 -1px 0 0 rgba(0, 0, 0, 0.35) inset, 0 -1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 0 0 rgba(255, 255, 255, 0.125);
}
#main .ui-tabs.animated-focus > .ui-tabs-tab-focus {
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-height: 600px) {
  #main .ui-tabs .ui-tabs-nav {
    display: none;
  }
  #main .ui-tabs .ui-tabs .ui-tabs-nav {
    display: block;
  }
}
#main .ui-tabs .ui-tabs-nav {
  position: absolute;
  top: -41px;
  left: 0;
  background: transparent;
  font-family: verb_regularbold;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  z-index: 2;
}
#main .ui-tabs .ui-tabs-nav * {
  -o-transition: font-size 0.4s ease-in-out;
  -ms-transition: font-size 0.4s ease-in-out;
  -moz-transition: font-size 0.4s ease-in-out;
  -webkit-transition: font-size 0.4s ease-in-out;
  transition: font-size 0.4s ease-in-out;
}
#main .ui-tabs .ui-tabs-nav li {
  border: 0;
  float: none;
  display: inline-block;
  *display: inline;
  zoom: 1;
  height: 39px;
}
#main .ui-tabs .ui-tabs-nav li a {
  color: #9e9fa1;
}
@media screen and (max-width: 700px) {
  #main .ui-tabs .ui-tabs-nav li a {
    font-size: 0;
  }
}
@media screen and (max-width: 480px) {
  #main .ui-tabs .ui-tabs-nav li a {
    padding: 11.5px 7px;
  }
}
#main .ui-tabs .ui-tabs-nav li a i {
  margin-right: 10px;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  #main .ui-tabs .ui-tabs-nav li a i {
    font-size: 0;
  }
}
@media screen and (max-width: 700px) {
  #main .ui-tabs .ui-tabs-nav li a i {
    font-size: 14px;
    margin-right: 0;
  }
}
#main .ui-tabs .ui-tabs-nav li .shortcut-key {
  display: none;
  left: 32px;
  right: auto;
  bottom: auto;
  top: 21px;
  background: #777777;
  border: none;
  color: #3d3f42;
}
#main .ui-tabs .ui-tabs-nav li.ui-state-active {
  background: transparent;
}
#main .ui-tabs .ui-tabs-nav li.ui-state-active a {
  color: white;
}
#main .ui-tabs .ui-tabs-nav li.ui-state-active .shortcut-key {
  display: none;
}
#main .ui-tabs .ui-effects-wrapper > .ui-tabs-panel {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
#main .ui-tabs .ui-tabs-panel {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 10px;
  clear: both;
}
@media screen and (max-height: 600px) {
  #main .ui-tabs .ui-tabs-panel {
    padding-top: 10px;
  }
}
#main .ui-tabs .ui-tabs > .ui-tabs-tab-focus {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
}
#main .ui-tabs .ui-tabs.animated-focus > .ui-tabs-tab-focus {
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#main .ui-tabs .ui-tabs .ui-tabs-nav {
  position: static;
  text-align: left;
  height: 31px;
  border-bottom: 1px solid #888888;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 64em) {
  #main .ui-tabs .ui-tabs .ui-tabs-nav {
    height: auto;
    overflow: hidden;
  }
}
#main .ui-tabs .ui-tabs .ui-tabs-nav li {
  height: 30px;
  border: 1px solid #888888;
  border-color: rgba(255, 255, 255, 0.25);
  border-bottom: 0;
  float: left;
  position: relative;
  z-index: 2;
}
#main .ui-tabs .ui-tabs .ui-tabs-nav li a {
  padding: 6px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  white-space: nowrap;
}
@media screen and (max-width: 64em) {
  #main .ui-tabs .ui-tabs .ui-tabs-nav li a {
    font-size: 10px;
    padding: 6px 4px;
    width: 80px;
    text-overflow: ellipsis;
    height: 25px;
    overflow: hidden;
    white-space: nowrap;
  }
}
#main .ui-tabs .ui-tabs .ui-tabs-nav li a:after {
  font-family: "livestats";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  content: '\e806';
}
@media screen and (max-width: 700px) {
  #main .ui-tabs .ui-tabs .ui-tabs-nav li a:after {
    font-size: 0;
  }
}
#main .ui-tabs .ui-tabs .ui-tabs-nav li a i {
  margin: 0;
}
#main .ui-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  background: transparent;
}
#main .ui-tabs .ui-tabs .ui-tabs-panel {
  overflow: auto;
}
#main .default_dgrd_caption {
  font-family: verb_lightregular;
  margin-top: 10px;
  margin-bottom: 0px;
  margin-left: 0;
  margin-right: -200px;
  padding: 0;
  width: 200px;
  float: left;
  font-size: 24px;
}
@media screen and (max-height: 64em) {
  #main .default_dgrd_caption {
    font-size: 16px;
    margin-top: 6px;
    width: 110px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
#main .side_by_side_stats_dgrd thead td {
  border-top: 0;
}
#main .section-container {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000, endColorstr=#33000000);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #444444;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 10px 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-height: 600px) {
  #main .section-container {
    height: auto;
    min-height: 100%;
  }
}
#main .section-container .section-title {
  position: absolute;
  left: -10px;
  top: 0;
  font-family: verb_blackregular;
  text-transform: none;
  font-size: 20px;
}
#main .section-container .section-title :first-child {
  font-family: verb_regularregular;
}
#main h3 {
  font-family: 'verb_blackregular';
  text-transform: uppercase;
  font-size: 20px;
  margin: 10px 0;
  color: white;
}
#main h4 {
  font-family: 'verb_blackregular';
  text-transform: uppercase;
  font-size: 14px;
  color: white;
}
#main h2,
#main dt {
  font-family: 'verb_regularregular';
  color: #d2d2d2;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 10px 20px;
  width: auto;
  text-align: left;
}
#main #summary {
  overflow: auto;
}
#main #summary .momentum-meter {
  position: relative;
  z-index: 2;
  height: 150px;
}
@media screen and (max-width: 700px) {
  #main #summary .momentum-meter {
    display: none;
  }
}
#main #summary .momentum-meter .momentum-summary td {
  padding: 10px;
}
#main #summary .stat-comparisons {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin-top: 0;
  padding-top: 310px;
  padding-bottom: 10px;
  margin-left: 0;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  #main #summary .stat-comparisons {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #main #summary .section-container {
    height: auto;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  #main #summary .section-container {
    width: 48%;
    float: left;
  }
  #main #summary .section-container.pbp {
    height: 40%;
  }
  #main #summary .section-container.individuals {
    height: 60%;
  }
}
#main #summary .section-container:first-child {
  margin-right: 20px;
  height: 100%;
}
@media screen and (max-width: 700px) {
  #main #summary .section-container:first-child {
    height: auto;
    margin-right: 0;
  }
}
#main #summary #summaryIndividualHighlight {
  width: 49%;
  float: left;
  height: 60%;
  padding-top: 10px;
}
#main #summary #summaryIndividualHighlight .section-container {
  width: 100%;
}
@media screen and (max-width: 700px) {
  #main #summary #summaryIndividualHighlight {
    height: auto;
    width: 100%;
    padding-top: 0;
  }
}
#main #summary #summaryIndividualHighlight .ui-tabs-nav {
  width: 440px;
  position: absolute;
  top: 20px;
  left: 10px;
  z-index: 2;
}
#main #summary #summaryIndividualHighlight .ui-tabs-panel {
  height: 100%;
  padding-top: 31px;
}
#main #summary .drives {
  height: 100%;
}
#main #summary .drives > * {
  height: 100%;
}
#main #summary .drives .drive {
  color: white;
  float: left;
  width: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 10px 10px;
  position: relative;
}
#main #summary .drives .drive .team {
  font-family: verb_blackregular;
  text-transform: uppercase;
}
#main #summary .drives .drive .narrative {
  font-family: verb_regularregular;
  font-size: 13px;
}
#main #summary .goals {
  height: 100%;
}
#main #summary .goals > * {
  height: 100%;
}
#main #summary .goals .goal {
  position: relative;
  min-height: 104px;
  margin-top: 15px;
  overflow: hidden;
}
#main #summary .goals .goal .photo {
  height: 100px;
  width: 75px;
  overflow: hidden;
  border: 2px solid white;
  position: absolute;
  left: 4px;
  top: 0;
  background: white;
}
#main #summary .goals .goal .photo img {
  max-width: 100%;
  min-width: 100%;
}
#main #summary .goals .goal .narrative {
  margin-left: 89px;
  font-size: 15px;
  font-family: verb_regularbold;
  color: white;
  padding: 5px 0;
  margin-top: 20px;
}
#main #summary .goals .goal .drive-summary {
  font-size: 10px;
  font-family: verb_semiboldregular;
  color: white;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  width: 270px;
  line-height: 22px;
  position: absolute;
  left: 150px;
  top: 0;
}
#main #summary .goals .goal .stats {
  margin-left: 89px;
}
#main #summary .goals .goal .stats .stat-line-label {
  clear: both;
  float: none !important;
  font-size: 8px;
  display: block;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 2px 0;
}
#main #summary .goals .goal .stats .stat {
  margin-bottom: 2px;
  color: white;
  text-transform: uppercase;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 82px;
}
#main #summary .goals .goal .stats .stat-name {
  font-size: 8px;
  width: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}
#main #summary .goals .goal .stats .stat-value {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #343434;
  padding: 2px 4px;
  text-align: center;
  width: 50px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-family: verb_blackregular;
}
#main #summary .goals .goal .uniform {
  position: absolute;
  left: 0;
  top: 85px;
  background: black;
  width: 25px;
  height: 25px;
  color: white;
  z-index: 2;
  -moz-border-radius: 12.5px;
  -webkit-border-radius: 12.5px;
  border-radius: 12.5px;
  line-height: 25px;
  text-align: center;
}
#main #summary .goals .goal .involved {
  position: absolute;
  left: 0;
  top: 107px;
  width: 80px;
  height: 46px;
  overflow: hidden;
}
#main #summary .goals .goal .involved .photo {
  position: static;
  float: left;
  width: 35px;
  height: 45px;
  margin-left: 4px;
}
#main #summary .goals .goal .involved .uniform {
  position: static;
  float: left;
  margin-left: -40px;
  margin-right: 6px;
  margin-top: 30px;
  width: 16px;
  height: 16px;
  line-height: 16px;
}
#main #summary .goals .goal .clock {
  font-family: verb_blackregular;
  padding: 2px 4px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  left: 89px;
  top: 0;
}
#main #summary .goals .goal .left *,
#main #summary .goals .goal .main * {
  position: relative;
  left: 0;
  top: 0;
  float: left;
}
#main #summary .goals .goal .left {
  float: left;
  margin-right: 10px;
  width: 80px;
  overflow: hidden;
  padding-bottom: 5px;
}
#main #summary .goals .goal .left .photo {
  margin: 0 auto 5px;
}
#main #summary .goals .goal .left .uniform {
  position: absolute;
  left: 0;
  top: 85px;
}
#main #summary .goals .goal .left .involved .photo {
  float: left;
  width: 35px;
  height: 44px;
  margin-right: 5px;
}
#main #summary .goals .goal .left .involved .uniform {
  position: relative;
  top: 0;
  left: 0;
}
#main #summary .goals .goal .main {
  float: left;
  overflow: hidden;
  width: 330px;
}
@media screen and (max-width: 40em) {
  #main #summary .goals .goal .main {
    width: 200px;
  }
}
#main #summary .goals .goal .main .clock span,
#main #summary .goals .goal .main .stat span {
  float: none;
}
#main #summary .goals .goal .main .narrative {
  margin-left: 0;
  margin-top: 0;
  clear: left;
}
#main #summary .goals .goal .main .stats {
  margin-left: 0;
}
#main #summary .goals .goal .main .drive-summary {
  width: 250px;
  line-height: 12px;
  padding-top: 4px;
}
#main #visitingPlayerStats,
#main #homePlayerStats {
  overflow-x: auto;
  position: static;
}
#main #visitingPlayerStats .scroll-grid-wrapper,
#main #homePlayerStats .scroll-grid-wrapper {
  position: relative;
}
#main #visitingPlayerStats .scroll-grid-wrapper .scroll-grid,
#main #homePlayerStats .scroll-grid-wrapper .scroll-grid {
  width: 100%;
  overflow-x: auto;
}
#main #visitingPlayerStats .default_dgrd,
#main #homePlayerStats .default_dgrd {
  width: 100%;
  min-width: 900px;
  margin-left: 109px;
}
#main #visitingPlayerStats .default_dgrd thead .column_Uni,
#main #homePlayerStats .default_dgrd thead .column_Uni,
#main #visitingPlayerStats .default_dgrd thead .column_Name,
#main #homePlayerStats .default_dgrd thead .column_Name {
  visibility: hidden;
}
#main #visitingPlayerStats .default_dgrd .column_Uni,
#main #homePlayerStats .default_dgrd .column_Uni,
#main #visitingPlayerStats .default_dgrd .column_Name,
#main #homePlayerStats .default_dgrd .column_Name {
  position: absolute;
  left: 0;
  background: black;
}
#main #visitingPlayerStats .default_dgrd .column_Name,
#main #homePlayerStats .default_dgrd .column_Name {
  left: 30px;
  width: 119px;
  background: -moz-linear-gradient(left, black 0%, black 65%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, black), color-stop(65%, black), color-stop(100%, rgba(0, 0, 0, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, black 0%, black 65%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, black 0%, black 65%, rgba(0, 0, 0, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, black 0%, black 65%, rgba(0, 0, 0, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to right, black 0%, black 65%, rgba(0, 0, 0, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */

}
@media screen and (min-width: 800px) {
  #main #visitingPlayerStats,
  #main #homePlayerStats {
    position: absolute;
    top: 40px;
    bottom: 0;
    height: auto;
    left: 0;
    right: 0;
    padding: 0;
  }
  #main #visitingPlayerStats .default_dgrd,
  #main #homePlayerStats .default_dgrd {
    margin-left: 0;
    table-layout: auto;
  }
  #main #visitingPlayerStats .default_dgrd .column_Uni,
  #main #homePlayerStats .default_dgrd .column_Uni,
  #main #visitingPlayerStats .default_dgrd .column_Name,
  #main #homePlayerStats .default_dgrd .column_Name {
    position: static;
    left: 0;
    background: transparent;
  }
  #main #visitingPlayerStats .default_dgrd .column_Name,
  #main #homePlayerStats .default_dgrd .column_Name {
    left: 30px;
    width: auto;
    background: transparent;
  }
  #main #visitingPlayerStats .default_dgrd .default_dgrd_hover .column_Uni,
  #main #homePlayerStats .default_dgrd .default_dgrd_hover .column_Uni,
  #main #visitingPlayerStats .default_dgrd .default_dgrd_hover .column_Name,
  #main #homePlayerStats .default_dgrd .default_dgrd_hover .column_Name {
    background: rgba(255, 255, 255, 0.25);
  }
}
#main #teamStats #teamStatsTable {
  margin: 0 auto;
  width: 100%;
}
#main #leaders .stat_leader_list {
  height: 340px;
  width: 100%;
  margin: 20px auto;
  padding-right: 20px;
  float: none;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list {
    height: auto;
    margin: -20px auto 0;
  }
}
#main #leaders .stat_leader_list .empty-text {
  font-family: verb_blackregular;
  font-size: 30px;
  text-align: center;
  line-height: 150px;
  color: #888888;
  text-transform: uppercase;
}
#main #leaders .stat_leader_list .visiting-team {
  text-align: right;
}
#main #leaders .stat_leader_list .home-team,
#main #leaders .stat_leader_list .visiting-team {
  width: 50%;
  position: relative;
  left: 10px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}
#main #leaders .stat_leader_list .home-team .player,
#main #leaders .stat_leader_list .visiting-team .player {
  position: relative;
  height: 145px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 200px;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player,
  #main #leaders .stat_leader_list .visiting-team .player {
    width: 90px;
    height: 110px;
  }
}
@media screen and (max-width: 480px) {
  #main #leaders .stat_leader_list .home-team .player,
  #main #leaders .stat_leader_list .visiting-team .player {
    width: 55px;
  }
}
@media screen and (max-height: 334px) {
  #main #leaders .stat_leader_list .home-team .player,
  #main #leaders .stat_leader_list .visiting-team .player {
    width: 55px;
  }
}
#main #leaders .stat_leader_list .home-team .player .name,
#main #leaders .stat_leader_list .visiting-team .player .name,
#main #leaders .stat_leader_list .home-team .player .img,
#main #leaders .stat_leader_list .visiting-team .player .img,
#main #leaders .stat_leader_list .home-team .player .uni,
#main #leaders .stat_leader_list .visiting-team .player .uni,
#main #leaders .stat_leader_list .home-team .player .value,
#main #leaders .stat_leader_list .visiting-team .player .value {
  position: absolute;
  left: 20px;
  top: 10px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player .name,
  #main #leaders .stat_leader_list .visiting-team .player .name,
  #main #leaders .stat_leader_list .home-team .player .img,
  #main #leaders .stat_leader_list .visiting-team .player .img,
  #main #leaders .stat_leader_list .home-team .player .uni,
  #main #leaders .stat_leader_list .visiting-team .player .uni,
  #main #leaders .stat_leader_list .home-team .player .value,
  #main #leaders .stat_leader_list .visiting-team .player .value {
    left: 0;
  }
}
#main #leaders .stat_leader_list .home-team .player .name,
#main #leaders .stat_leader_list .visiting-team .player .name {
  width: 70px;
  left: 130px;
  top: 25px;
  color: white;
  word-wrap: break-word;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player .name,
  #main #leaders .stat_leader_list .visiting-team .player .name {
    display: none;
  }
}
#main #leaders .stat_leader_list .home-team .player .uni,
#main #leaders .stat_leader_list .visiting-team .player .uni {
  width: 25px;
  height: 25px;
  left: 15px;
  top: 115px;
  color: white;
  z-index: 2;
  -moz-border-radius: 12.5px;
  -webkit-border-radius: 12.5px;
  border-radius: 12.5px;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player .uni,
  #main #leaders .stat_leader_list .visiting-team .player .uni {
    left: -5px;
    top: 55px;
  }
}
#main #leaders .stat_leader_list .home-team .player .value,
#main #leaders .stat_leader_list .visiting-team .player .value {
  left: 130px;
  top: 68px;
  background: #333333;
  color: white;
  min-width: 50px;
  height: 30px;
  line-height: 30px;
  font-size: 22px;
  text-align: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-family: verb_blackregular;
  padding: 0 4px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player .value,
  #main #leaders .stat_leader_list .visiting-team .player .value {
    top: 75px;
    left: 0;
    width: 50px;
    font-size: 15px;
  }
}
#main #leaders .stat_leader_list .home-team .player .img,
#main #leaders .stat_leader_list .visiting-team .player .img {
  border: 2px solid white;
  background: white;
  width: 90px;
  height: 120px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
#main #leaders .stat_leader_list .home-team .player .img img,
#main #leaders .stat_leader_list .visiting-team .player .img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  #main #leaders .stat_leader_list .home-team .player .img,
  #main #leaders .stat_leader_list .visiting-team .player .img {
    width: 50px;
    height: 66.6px;
  }
}
#main #playbyplay .play-by-play-grid-container {
  height: 100%;
  padding: 60px 10px 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media screen and (max-height: 600px) {
  #main #playbyplay .play-by-play-grid-container {
    position: static;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  #main #playbyplay .play-by-play-grid-container {
    padding-top: 110px;
  }
}
@media screen and (max-width: 480px) {
  #main #playbyplay .play-by-play-grid-container {
    padding-top: 0;
  }
}
@media screen and (max-height: 334px) {
  #main #playbyplay .play-by-play-grid-container {
    padding-top: 0;
  }
}
#main #playbyplay #playListFilters {
  background: transparent;
  font-family: verb_regularregular;
  text-transform: uppercase;
  font-size: 10px;
  color: #aaaaaa;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 20px 0 20px 20px;
  z-index: 2;
}
@media screen and (max-height: 600px) {
  #main #playbyplay #playListFilters {
    position: static;
    height: auto;
  }
}
#main #playbyplay #playListFilters .filter {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 10px;
  line-height: 26px;
}
#main #playbyplay #playListFilters .filter input,
#main #playbyplay #playListFilters .filter select,
#main #playbyplay #playListFilters .filter .select2-container {
  margin-left: 3px;
}
#main #playbyplay #playListFilters .filter button {
  background: #ff8800;
  display: inline-block;
  *display: inline;
  zoom: 1;
  border: 0;
  color: black;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 2px 16px 2px 4px;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
#main #playbyplay #playListFilters .filter button:after {
  content: '\00d7';
  font-size: 16px;
  background: #ff8800;
  color: black;
  width: 10px;
  height: 12px;
  line-height: 14px;
  position: absolute;
  top: 2px;
  right: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-family: verb_blackregular;
}
#main #playbyplay #playListFilters,
#main #playbyplay #playList {
  width: 100%;
}
#main #playbyplay #playList {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  #main #playbyplay #playList td,
  #main #playbyplay #playList th {
    padding: 7px 3px;
    height: auto;
  }
  #main #playbyplay #playList .column_Player {
    display: none;
  }
}
#main #playbyplay #playList td {
  border-left: 1px solid #3d3f42;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
#main #playbyplay #playList td:first-child {
  border-left: none;
}
#main #playbyplay #playList tbody td {
  vertical-align: middle;
}
#main #playbyplay #playList .column_Time {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #main #playbyplay #playList .column_Time {
    width: 50px;
  }
}
#main #playbyplay #playList .column_Score {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #main #playbyplay #playList .column_Score {
    width: 60px;
    font-size: 12px;
  }
}
#main #playbyplay #playList .column_Team {
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #main #playbyplay #playList .column_Team {
    width: 50px;
  }
}
#main #playbyplay #playList .column_Team .img-wrapper {
  background: white;
  margin: 0 auto;
}
#main #playbyplay #playList .column_Player {
  width: 80px;
  text-align: center;
}
#main #playbyplay #playList .column_Player .primary-player {
  margin: 0 auto;
  border: 1px solid white;
  background: white;
}
#main #playbyplay #playList .column_Player .primary-player img {
  top: -20%;
  max-height: 150%;
}
#main #playbyplay #playList .column_Player .secondary-player {
  margin: -10px 2px 0 0;
  float: left;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  background: white;
}
#main #playbyplay #playList .column_Player .secondary-player img {
  top: -20%;
  max-height: 150%;
}
#main #playbyplay #playList .img-wrapper {
  width: 50px;
  height: 50px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  #main #playbyplay #playList .img-wrapper {
    width: 30px;
    height: 30px;
  }
}
#main #playbyplay #playList .img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
#main #playbyplay #playList .context {
  font-family: verb_regularregular;
}
footer {
  background: #3d3f42;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
}
footer * {
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .ad {
  height: 60px;
  width: 250px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  z-index: 300;
}
footer .ad * {
  text-align: left;
}
footer .inner {
  position: relative;
  width: auto;
}
footer .inner #footer_licensed {
  position: absolute;
  right: 20px;
  top: 0px;
  color: #55585d;
  width: 500px;
}
@media screen and (max-width: 1000px) {
  footer .inner #footer_licensed {
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  footer .inner #footer_licensed {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  footer .inner #footer_licensed {
    width: 100%;
    right: 0;
    top: 33px;
    font-size: 8px;
  }
}
footer .inner #footer_sidearm_logo {
  position: absolute;
  left: 20px;
  top: 20px;
}
@media screen and (max-width: 480px) {
  footer .inner #footer_sidearm_logo img {
    top: 13px;
    left: 0;
    width: 100%;
  }
}
.ad {
  position: relative;
}
.ad > * {
  position: absolute;
  left: 0;
  top: 0;
}
.ad img {
  max-width: 100%;
  max-height: 100%;
}
.ad .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ad .overlay img {
  width: 100%;
  height: 100%;
}
#leftSkyscraper {
  position: absolute;
  top: 120px;
  left: 50%;
  margin-left: -670px;
  height: 600px;
  width: 160px;
  z-index: 11;
}
@media screen and (max-width: 1320px) {
  #leftSkyscraper {
    display: none;
  }
}
#rightSkyscraper {
  position: absolute;
  top: 120px;
  left: 50%;
  margin-left: 510px;
  height: 600px;
  width: 160px;
  z-index: 11;
}
@media screen and (max-width: 1320px) {
  #rightSkyscraper {
    display: none;
  }
}
.stat-comparisons {
  font-family: verb_regularregular;
  text-align: center;
}
.stat-comparisons .stat-comparison {
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 180px;
  margin-left: 20px;
  text-align: left;
  vertical-align: top;
}
.stat-comparisons .stat-comparison h4 {
  color: white;
  font-size: 15px;
  padding: 2px 0 2px 10px;
  font-size: 10px;
  text-transform: uppercase;
}
.stat-comparisons .stat-comparison .stat-comparison-all {
  background: black;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.stat-comparisons .stat-comparison .stat-comparison-all .bar-value {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  margin: 3px 10px 3px 0;
  width: 22%;
  color: white;
  text-align: right;
  font-family: verb_blackregular;
}
.stat-comparisons .stat-comparison .stat-comparison-all .bar-container {
  overflow: hidden;
  background: #444444;
  vertical-align: middle;
  margin: 3px 0;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 59%;
  text-align: right;
}
.stat-comparisons .stat-comparison .stat-comparison-all .bar-container .bar {
  height: 8px;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.stat-grid-container {
  width: 50%;
  float: left;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  overflow: auto;
}
@media screen and (max-width: 700px) {
  .stat-grid-container {
    width: 100%;
  }
}
.stat-grid-container.one-third {
  width: 40%;
}
@media screen and (max-width: 700px) {
  .stat-grid-container.one-third {
    width: 100%;
  }
}
.stat-grid-container.two-thirds {
  width: 60%;
}
@media screen and (max-width: 700px) {
  .stat-grid-container.two-thirds {
    width: 100%;
  }
}
.stat-grid-container.full {
  width: 100%;
}
.stat-grid-container .default_dgrd {
  min-width: 100%;
}
#teamStats .stat-comparison {
  width: 20%;
  margin-bottom: 20px;
  min-width: 210px;
  height: 80px;
  position: relative;
}
@media screen and (max-width: 64em) {
  #teamStats .stat-comparison {
    width: 100%;
    height: 50px;
    margin-left: 0;
  }
  #teamStats .stat-comparison h4 {
    bottom: 10px;
  }
}
@media screen and (max-width: 605px) {
  #teamStats .stat-comparison {
    width: 50%;
    height: 50px;
    margin-left: 0;
  }
}
#teamStats h4 {
  font-size: 14px;
  font-family: verb_extralightregular;
  position: absolute;
  bottom: 43px;
  left: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 700px) {
  #teamStats h4 {
    font-size: 10px;
    top: 0;
  }
}
#teamStats .stat-comparison-all {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 700px) {
  #teamStats .stat-comparison-all {
    top: 12px;
  }
}
#teamStats .bar-value {
  width: 30%;
}
@media screen and (max-width: 700px) {
  #teamStats .bar-value {
    font-size: 10px;
  }
}
#teamStats .bar-container {
  width: 50%;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #ff8800;
  /* rgba fallback */
  background: rgba(255, 136, 0, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 136, 0, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
  /* old ie */

}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 136, 0, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  /* old ie */

}
.select2-container {
  min-width: 100px;
  font-family: verb_regularregular;
}
.select2-container.select2-container-disabled .select2-choice {
  background: #232323;
  background: rgba(35, 35, 35, 0.5);
  padding: 4px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 2px 4px 2px 6px;
  border-color: black;
}
.select2-container.select2-container-disabled .select2-choice div {
  background: transparent;
}
.select2-container.select2-container-disabled .select2-choice div b {
  background: #444444;
}
.select2-container.select2-dropdown-open .select2-choice {
  border-color: #888888;
  border-color: rgba(255, 255, 255, 0.5);
}
.select2-container.select2-allowclear .select2-choice span {
  margin-right: 24px;
}
.select2-container .select2-choice {
  background: black;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 2px 4px 2px 6px;
  color: white;
  height: 24px;
  line-height: 24px;
  border: 1px solid black;
  font-size: 11px;
  outline: 0;
  filter: none;
}
.select2-container .select2-choice span {
  line-height: 22px;
}
.select2-container .select2-choice abbr {
  right: 19px;
  top: 6px;
}
.select2-container .select2-choice div {
  border: none;
  height: 23px;
  padding: 4px;
  background: transparent;
  width: 22px;
  filter: none;
}
.select2-container .select2-choice div b {
  background: #ff8800;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative;
}
.select2-container .select2-choice div b:after {
  content: '';
  border-bottom: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid black;
  position: absolute;
  left: 3px;
  top: 6px;
}
.select2-drop {
  background: black;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  border-color: #888888;
  border-color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}
.select2-drop * {
  background: transparent;
}
.select2-drop .select2-search input {
  background: transparent url('//cdnjs.cloudflare.com/ajax/libs/select2/3.4.0/select2.png') no-repeat 100% -22px;
  color: white;
}
.select2-drop .select2-results .select2-no-results {
  background: transparent;
}
.select2-drop .select2-results .select2-highlighted {
  background: #ff8800;
}
body .google-visualization-tooltip {
  background: black;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
  border: 1px solid white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.momentum-summary {
  line-height: 11px;
  font-size: 10px;
  font-family: sans-serif;
  margin: 4px;
}
.momentum-summary tr,
.momentum-summary td {
  white-space: nowrap;
  text-transform: uppercase;
}
.momentum-summary .logo {
  width: 30px;
  height: 30px;
  margin: 0 4px 4px 0;
  text-align: center;
}
.momentum-summary .logo img {
  max-width: 100%;
  max-height: 100%;
}
.momentum-summary em {
  background: #232323;
  color: #efeffe;
  font-style: normal;
  padding: 2px 4px;
}
#main {
  background-image: url(../images/bkg.jpg);
}
#summary .momentum-meter {
  background: url(../images/small-field-lines.png) no-repeat bottom center;
}
