
/* CSS Document */

/***********************************************************************************************
* These styles originated from a widget IT got at some point and have been extensively modified.
***********************************************************************************************/

* {
	margin:0px;
	padding:0px;
}

*::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
}

body {
	background-color:transparent;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

#scoreboard_carousel {
	position:relative;
	text-align:center;
	height:500px;
}

#scoreboard_holder {
	border: 0px solid #D5D5D5;
	background: none;
	font-family:Arial, Helvetica, sans-serif;
	margin:0px 0px 0 0px;
	padding: 0 0 0 0;
}

/******************************************************************************
* Menu, including date and logo
******************************************************************************/

#scoreboard_menu {
    height: 50px;
    left: 0;
    margin: 0 0 1px;
    overflow: visible;
    position: relative;
    text-align: left;
	z-index: 1; /* This makes the logo fully clickable when it's moved under the scoreboard */
}

#scoreboard_date {
	color: #000;
    font-size: 12px;
    font-weight: bold;
    left: 0;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    top: 33px;
    white-space: nowrap;
    width: 60%;
}

#scoreboard_logo {
	background: url(//images.sportsdirectinc.com/HST/cbc/powered_by.png) no-repeat 0 2px;
    background-repeat: no-repeat;
	height: 22px;
    position: absolute;
    right: 0;
    top: 25px;
    width: 119px;
	display: none;
}

#scoreboard_menu #scoreboard_logo a {
	background: none repeat scroll 0 0 transparent;
	display: block;
	height: 20px;
	margin: 0;
	padding: 0;
	width: 119px;
}

#scoreboard_menu a, #scoreboard_menu a:link, #scoreboard_menu a:visited {
-webkit-border-radius: 3px;
	border-radius: 0px;
	border-left: 1px solid #fff;
	background-color: #cbcbcb; 
	color: #666666;
    cursor: pointer;
    display: inline-block;
	font-family: "DIN Next W01 Bold",Arial,sans-serif;
    font-size: 11px;
    font-weight: bold;
    margin: 0px;
    outline: 0 none;
    padding:4px 10px 5px 10px;
    text-decoration: none;
    text-indent: 0;
}

#scoreboard_menu a:hover, #scoreboard_menu a:active {
	background-color:#222;
	color:#fff;
}

/*#scoreboard_menu a.sport_selected, #scoreboard_menu a.sport_selected_wide, #scoreboard_menu a.sport_selected:hover {
	background-color:#041A56;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 #333333;
    color: #FFFFFF;
	margin: 0 5px;
    outline: 0 none;
}*/

#scoreboard_menu a.sport_selected, #scoreboard_menu a.sport_selected_wide, #scoreboard_menu a.sport_selected:hover {
	background-image:none;
	background-color:#222;
    color: #FFFFFF;
	margin: 0px;
    outline: 0 none;
}

#scoreboard_menu a:first-of-type {
    border-radius: 0px;
	border-left: 0px solid #232323;
}

#scoreboard_menu a:last-of-type {
    border-radius: 0;
}

#scoreboard_menu a:only-of-type {
    border-radius: 0px;
	border-left: 0px solid #232323;
}


/***************************************************************************************** */
/* Inside the score tables */
/***************************************************************************************** */

.score_regular, .score_active, .score_final, .empty {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #D5D5D5;
    border-radius: 0px;
    /*box-shadow: 0 1px 2px 0 #ddd;*/
}

div.empty {
    background-color: #f8f8f8;
}

table, .empty { /* Use this to set the width of the blocks; it will be the same width as the image slice, which includes spacing */
	background:none/*url(//images.sportsdirectinc.com/HST/sportsonline/empty.png) no-repeat*/;
    height: 64px;
    width: 298px;
}

.empty {
}

table {
	border: 0 none;
    border-collapse: collapse;
    color: #333;
    font-family: Arial,Verdana,sans-serif;
    font-size: 12px;
}

.yui-carousel-element li.item { /* this can also be used to put space between the blocks; remainder of style is in last section */
	padding:3px 0 0 0;
}

td {
	padding:0px;
}

table img {
	height: 18px !important;
    left: 10px;
	margin-top: -1px;
    position: absolute;
    width: auto;
}

.team_name { /* NCB is in a td called team_name, but... */
}

.teams .team_name { /* ...all the other sports are in a span called team_name, in a td called teams */
}

td.team_name span.team_name {
	margin:0;
	padding:0;
}

td.teams, td.team_name { /* The LEFT column in the table - contains links */
	padding-left:10px;
	font-weight:bold;
	text-indent: 32px;
}

td.date-score { /* The RIGHT column in the table - no links */
	font-family:Arial, Helvetica, sans-serif;
	text-align:right;
	padding-right: 10px;
	border-left: 0px solid #999;
}

.game_day, .game_time { /* Inside the date-score column */
	margin:0;
	padding:0;
}

td.text-col { /* The BOTTOM ROW of the table, which has a colspan */
	background-color: #f8f8f8;
    border-top: 1px dotted #aaaaaa;
	padding: 0 10px;
}

.game-links { /* The LEFT column of the bottom row - contains links */
	border-top: 0px solid #999;
	float:left;
	padding: 0px;
}

.game-status { /* The RIGHT column of the bottom row - no links */
	color: #333;
	float:right;
	text-align:right;
	padding-right: 1px;
}

table a, table a:link, table a:visited {
	color: #222;
	text-decoration:none;
}

table a:hover, table a:active {
	color:#222;
	text-decoration:underline !important;
}

table .game-links a:link, table .game-links a:visited {
	color: #222;
	text-decoration:none;
}

table .game-links a:hover, table .game-links a:active {
	color:#222;
	text-decoration:underline;
}

/*table a[style], table a[style]:hover {
	color: #333;
	text-decoration:none;
}*/

/***************************************************************************************** */
/* Next/Previous Buttons */
/***************************************************************************************** */

#arrow_holder_prev, #arrow_holder_next {
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: #ccc; /* Old browsers */
	background: -moz-linear-gradient(top,  #ccc 50%, #c2c2c2 50%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#ccc), color-stop(50%,#c2c2c2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ccc 50%,#c2c2c2 50%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ccc 50%,#c2c2c2 50%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ccc 50%,#c2c2c2 50%); /* IE10+ */
	background: linear-gradient(to bottom,  #ccc 50%,#c2c2c2 50%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccc', endColorstr='#c2c2c2',GradientType=0 ); /* IE6-9 */
	height: 25px;
    margin: 0 auto;
	text-align: center;
    width: 300px;
}

#arrow_holder_prev {
    margin-bottom: 5px;
}

#arrow_holder_next {
    margin-top: 5px;
}

#arrow_holder_prev a, #arrow_holder_next a {
	cursor:pointer;
    display: block;
    height: 25px;
    margin: 1px auto;
    width: 298px;
}

#arrow_holder_prev a {
	background:url(//images.sportsdirectinc.com/HST/cbc/up-on.png) no-repeat 50% 5px transparent;
}

#arrow_holder_next a {
	background:url(//images.sportsdirectinc.com/HST/cbc/down-on.png) no-repeat 50% 5px transparent;
}

#arrow_holder_prev a:hover {
	background:url(//images.sportsdirectinc.com/HST/cbc/up-over.png) no-repeat 50% 5px transparent;
}

#arrow_holder_next a:hover {
	background:url(//images.sportsdirectinc.com/HST/cbc/down-over.png) no-repeat 50% 5px transparent;
}

#arrow_holder_prev a.yui-carousel-first-button-disabled, #arrow_holder_prev a.yui-carousel-first-button-disabled:hover {
	background:url(//images.sportsdirectinc.com/HST/cbc/up-off.png) no-repeat 50% 5px transparent;
	cursor:default;
}

#arrow_holder_next a.yui-carousel-button-disabled, #arrow_holder_next a.yui-carousel-button-disabled:hover {
	background:url(//images.sportsdirectinc.com/HST/cbc/down-off.png) no-repeat 50% 5px transparent;
	cursor:default;
}



/***************************************************************************************** */
/* YUI styles - not wise to edit any of this */
/***************************************************************************************** */

.yui-carousel {
	margin:0px auto;
	text-align:left;
}

.yui-carousel-content { /* border-radius is used here to make a less straight edge for the carousel to disappear under */
	border-radius: 0px;
	margin: 0 0 0 0;
	height:65px;
	overflow:hidden;
}

.yui-carousel-element {
	position:relative;
	text-align:left;
	width:320000px;
}

.yui-carousel-element li.item { /* padding can be used to put space between the blocks; see top section of stylesheet */
	position:absolute;
	display:block;
	height:70px; /* this puts space between the blocks when the sb is vertical */
	border:none;
	list-style:none;
	text-align:left;
}

.yui-carousel-nav /* this is the text navigation - not used, must be hidden */ {
	display:none
}
