@import url('//fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400,700');

/*
	font-family: 'Open Sans', sans-serif;
	font-family: 'Montserrat', sans-serif;
*/

html,body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	color: #333333;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
}

a { color: #1c8dc5; }

a:hover { color: #808080; }

a img { border: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #4c4c4c;
	margin: 0 0 15px 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	line-height: 1;
	color: inherit;
	text-rendering: optimizelegibility;
}

h1 {
	margin: 0;
	font-size: 32px;
	line-height: 40px;
}

h1 .icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

h2 {
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

h3 {
	font-size: 14px;
	line-height: 20px;
}

h4 {
  font-size: 12px;
  line-height: 18px;
}

h5 {
  font-size: 10px;
  line-height: 16px;
}

h6 {
  font-size: 9px;
  line-height: 15px;
}

@media screen and (max-width: 550px) {
	h1 {
		font-size: 20px;
		line-height: 33px;
	}
}

p {
	line-height: 22px;
	margin: 0 0 10px 0;
}

.hr {
	border-bottom: 1px solid #cccccc;
	margin: 15px 0;
}

.hr hr { display: none; }

.wrapper {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 10px;
}

.mobile-only {
	display: none;
}

@media screen and (max-width:550px) {
	.mobile-hide {
		display: none;
	}
	
	.mobile-only {
		display: block;
	}
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Header and Nav ------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.header {
	background: #333333 url(/images/template/dark-gray-background.png);
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	padding: 5px 10px;
}

.header .logo {
	color: #ffffff;
	float: left;
	font-size: 24px;
	line-height: 33px;
	margin: 0;
	text-decoration: none;
}

.header .logo img {
	display: block;
	margin: 0;
}

@media only screen and (max-width: 1024px) {
	.header .logo {
		font-size: 18px;
	}
}



/* ---------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.primary-navigation {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation > li {
	float: left;
	margin-left: 5px;
}

.primary-navigation > li > a {
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 0 2px rgba(0,0,0,0.5);
	border-radius: 5px;
	color: #ffffff;
	display: block;
	height: 33px;
	line-height: 33px;
	padding: 0 15px;
	text-decoration: none;
}

.primary-navigation > li > a .icon {
	vertical-align: middle;
}

.primary-navigation > li.call-out a {
	background: #1c8dc5;
}

.primary-navigation > li.call-out a:hover {
	background: #0e6997;
}

.primary-navigation > li.selected > a,
.primary-navigation > li > a:hover {
	background: rgba(255,255,255,0.1);
	text-shadow: 0 0 1px rgba(0,0,0,0.6);
}

.mobile-nav-toggle {
	display: none;
}

@media only screen and (max-width: 1024px) {
	.primary-navigation > li > a {
		font-size: 13px;
		padding: 0 8px;
	}
}

@media only screen and (max-width: 800px) {
	body.primary-nav-engaged {
		overflow-x: hidden;
	}
	
	.body-wrap {
		position: relative;
		right: 0;
		-webkit-transition: right 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); 
		transition: right 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);	
	}
	
	body.primary-nav-engaged .body-wrap {
		right: 80%;
	}

	.mobile-nav-toggle {
		display: block;
		background: url(/images/icons/mobile-menu-toggle.png) 100% 50% no-repeat;
		background-size: 22px 16px;
		color: #ffffff;
		font-size: 16px;
		font-weight: 700;
		line-height: 16px;
		height: 16px;
		opacity: 1;
		filter: alpha(opacity=100);
		outline: none;
		padding: 0 29px 0 0;
		position: absolute;
		right: 10px;
		text-decoration: none;
		text-transform: uppercase;
		top: 13px;
	}

	.mobile-nav-toggle:hover {
		color: #ffffff;
	}

	body.primary-nav-engaged .mobile-nav-toggle {
		background: url(/images/icons/mobile-menu-toggle-close.png) 50% 50% no-repeat;
		background-size: 100% auto;
		height: 16px;
		padding-right: 0;
		text-indent: -1000px;
		width: 22px;
	}
	
	.primary-navigation-wrap {
		background: #000000;
		bottom: 0;
		box-shadow: 0 0 15px rgba(0,0,0,.25);
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,.25);
		right: -100%;
		margin: 0;
		overflow: auto;
		padding: 0;
		position: fixed;
		top: 0;
		-webkit-transition: right 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000); 
		transition: right 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
		width: 80%;
		z-index: 100;
	}
	
	body.primary-nav-engaged .primary-navigation-wrap {
		right: 0;
	}
	
	.primary-navigation {
		float: none;
		margin-top: 5px;
		padding: 0 10px;
	}

	.primary-navigation > li {
		float: none;
		margin: 0 0 5px 0;
	}

	.primary-navigation > li > a {
		border: 1px solid rgba(255,255,255,0.1);
		box-shadow: 0 0 2px rgba(0,0,0,0.5);
		border-radius: 5px;
		color: #ffffff;
		display: block;
		height: 33px;
		line-height: 33px;
		padding: 0 15px;
		text-decoration: none;
	}

}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Inner Navigation ----------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.inner-navigation {
	background: #f2f2f2;
	border-bottom: 1px solid #dcdcdc;
	padding-top: 20px;
}

.inner-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.inner-navigation ul > li {
	float: left;
	margin-right: 3px;
}

.inner-navigation ul > li > a {
	border: 1px solid #dcdcdc;
	border-bottom: 0;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	display: block;
	padding: 0 12px;
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	font-weight: bold;
}

.inner-navigation ul > li.selected {
}

.inner-navigation ul > li:hover > a,
.inner-navigation ul > li.selected > a {
	background: #ffffff;
	color: #000000;
	height: 36px;
	margin-bottom: -1px;
}

@media screen and (max-width: 550px) {
	.inner-navigation {
		padding: 0;
	}
	
	.inner-navigation .wrapper {
		padding: 0;
	}
	
	.inner-navigation ul > li {
		border-right: 1px solid #dcdcdc;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		margin: 0;
		text-align: center;
		width: 33.3333%;
	}

	.inner-navigation ul > li:last-child {
		border-right: 0;
	}
	
	.inner-navigation ul > li > a {
		font-size: 12px;
		border: 0;
		height: 50px;
		line-height: 50px;
		margin: 0;
		padding: 0;
	}

	.inner-navigation ul > li:hover > a,
	.inner-navigation ul > li.selected > a {
		height: 51px;
		margin-bottom: -1px;
	}
	
	.inner-navigation ul > li > a span {
		display: inline-block;
		line-height: 110%;
		width: 100%;
		vertical-align: middle;
	}
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Main Area ------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------- */
.main {
	padding-bottom: 34px;
}

.main .main-wrapper {
	min-height: 300px;
	padding: 30px 0;
}

.main .main-wrapper.full-width {
	max-width: 100%;
	width: auto;
	padding: 30px;
}

@media screen and (max-width: 1220px) {
	.main .main-wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.main .main-wrapper.full-width {
		padding: 10px 30px;
	}
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Heading Area/Pager/Search Bar ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.heading-area {
	background: #ffffff;
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
}

@media screen and (max-width: 550px) {
	.heading-area {
		padding: 10px 0;
	}
}

.pager-bar {
	color: #ffffff;
	padding: 15px 0 0 0;
}

.pager-bar input.search-input {
	border-right: 0;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-bottomleft: 15px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	box-shadow: 0 0 3px rgba(0,0,0,.85);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.85);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.85);
	float: left;
	height: 16px;
	padding: 4px 4px 4px 10px;
}

.pager-bar input.search-submit {
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #d8d8d8 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d8d8d8));
	background: -webkit-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d8d8d8',GradientType=0 );
	border-left: 0;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: 0 0 3px rgba(0,0,0,.85);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.85);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.85);
	cursor: pointer;
	float: left;
	font-size: 11px;
	font-weight: bold;
	height: 26px;
}

.pager-bar input.search-submit:hover {
	background: #d8d8d8;
}

.sub-heading {
    border-bottom: 1px solid #c1c1c1;
    margin: -35px -65px 65px -65px;
    padding: 0 65px 30px 65px;
}

.search-bar {
    border-bottom: 1px solid #c1c1c1;
    margin: -50px -65px 35px -65px;
    padding: 0 65px 15px 65px;
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Content Container ---------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.gray-box {
	background: #f5f5f5; 
	border: 1px solid #cccccc;
	box-shadow: 3px 3px 3px #dedede;
	-moz-box-shadow: 3px 3px 3px #dedede;
	-webkit-box-shadow: 3px 3px 3px #dedede;
	padding: 10px 20px; 
}

.gray-box h2 {
	margin-top: 0;
}

/*
.tag {
	background: url(/images/template/totals-background.png) 0 50% repeat-x;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: inset 0px 1px 1px black;
	-moz-box-shadow: inset 0px 1px 1px black;
	-webkit-box-shadow: inset 0px 1px 1px black;
	border-bottom: 1px solid rgba(255,255,255,.75);
	color: #ffffff;
	font-size: 10px;
	display: inline-block;
	padding: 1px 10px;
	text-shadow: 0 1px 0 rgba(0,0,0,.45);
	display: inline-block;
	padding: 2px;
	width: auto;
	font-size: 11px;
}
*/


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.body-wrap {
	min-height: 100%;
	position: relative;
}

.footer {
	background: #ffffff;
	border-top: 1px solid #dcdcdc;
	bottom: 0;
	color: #808080;
	font-size: 10px;
	height: 33px;
	left: 0;
	line-height: 33px;
	position: absolute;
	right: 0;
	text-align: right;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Login Screen ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.page-login,
body.page-password_reset {
	background: #333333 url(/images/template/dark-gray-background.png);
}

body.page-login .main,
body.page-password_reset .main {
	background: none;
	margin: 0 auto;
}

body.page-login .header,
body.page-password_reset .header {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.page-login .footer,
body.page-password_reset .footer {
	display: none;
}

.login-box {
	background: #ffffff;
	box-shadow: 0 0 10px #313131;
	-moz-box-shadow: 0 0 10px #313131;
	-webkit-box-shadow: 0 0 10px #313131;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin: 120px auto 0 auto;
	padding: 30px;
	width: 280px;
}

.login-box.wide {
	width: 340px;
}

.login-sign-up {
	color: #ffffff;
	margin-top: 20px;
	text-align: center;
}

.login-sign-up .button {
	margin-left: 15px;
	background: none;
	border: 1px solid #ffffff;
	color: #ffffff;
	text-shadow: none;
}

.login-sign-up .button:hover {
	background: rgba(255,255,255,0.1);
	color: #ffffff;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Breadcrumbs ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.breadcrumbs {
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.breadcrumbs a {
	text-decoration: none;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs a:last-child {
	color: #000;
	font-weight: bold;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Tiles ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.tile {
	float: left;
	background: rgba(0,0,0,0.03);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.35);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.35);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: inline-block;
	padding-bottom: 75px;
	margin: 0 0 25px 0;
	overflow: hidden;
	position: relative;
	width: 23.5%;
}

.page-categories .tile {
	margin-right: 2%;
}

.bracket-tile-wrap {
}

.grid-sizer {
	width: 23.5%;
}

.gutter-sizer {
	width: 2%;
}

@media screen and (max-width: 1100px) {
	.tile,
	.grid-sizer {
		width: 32%;
	}
}

@media screen and (max-width: 730px) {
	.tile,
	.grid-sizer {
		width: 49%;
	}
}

@media screen and (max-width: 500px) {
	.tile,
	.grid-sizer {
		width: 100%;
	}

	.gutter-sizer {
		width: 0;
	}
}

.tile:nth-child(4n) {
	margin-right: 0;
}

.tile .image {
	background: rgba(0,0,0,0.1);
	clear: both;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	position: relative;
	height: 150px;
}

.tile .image img {
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
}

.tile .title {
	background: rgba(255,255,255,0.6);
	bottom: 0;
	color: #000000;
	clear: both;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	left: 0;
	padding: 10px;
	position: absolute;
	right: 0;
}

.tile .title .icon {
	vertical-align: middle;
}

.tile .description {
	padding: 20px;
	font-size: 13px;
}

.tile .description .category {
	font-size: 12px;
	margin-bottom: 8px;
}

.tag,
.tile .description .category a {
	border: 1px solid #ccc;
	border-radius: 3px;
	color: #000;
	display: inline-block;
	font-size: 12px;
	margin: 0 2px 2px 0;
	padding: 1px 5px;
	text-decoration: none;
}

.tile .description .category.small,
.tile .description .category.small a {
	font-size: 10px;
}

.tag:hover,
.tile .description .category a:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}

.tile .description .category.has-icon {
	position: relative;
	padding-left: 20px;
}

.tile .description .category.has-icon .icon {
	position: absolute;
	left: 0;
	top: 2px;
}

.tile .upper {
}

.tile .upper .team-count {
	color: #808080;
	float: left;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 6px;
}

.tile .actions {
	opacity: 0;
	padding: 2px 2px 0 0;
	float: right;
}

.tile:hover .actions {
	opacity: 1;
}

.tile .actions .button {
	float: left;
}

.go-buttons {
	border-top: 1px solid rgba(0,0,0,0.1);
	bottom: 0;
	position: absolute;
	padding: 10px 0;
	left: 0;
	right: 0;
	text-align: center;
}

.go-buttons .favorite-icon {
	color: #d6bf00;
	font-size: 20px;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

@media screen and (max-width: 400px) {
	#filters-form .fl.smr {
		float: none;
		margin: 0 0 10px 0;
	}
	
	#filters-form select {
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		width: 100%;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Bracket Management ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.bracket-area {
	margin-bottom: 30px;
}

.team-item {
	margin: 0 0 4px 0;
}

.team-item .handle {
	cursor: ns-resize;
	float: left;
	width: 18px;
	height: 25px;
	line-height: 25px;
	text-align: center;
}

.team-item .handle .icon {

}

.team-list {
	float: left;
	padding: 20px;
	background: rgba(0,0,0,0.03);
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.15);
}

.bracket-container {
	float: left;
	padding-left: 50px;
}

div.jQBracket .round,
div.jQBracket .team {
	width: 150px;
}

div.jQBracket .team div.label {
	width: 120px;
}

.score-summary {
	padding: 20px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;	
	font-size: 18px;
	width: 500px;
	margin: 30px auto;
	border: #cccccc 1px solid;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Matchup Detail -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.matchup-detail {
	margin: 0 auto;
	max-width: 700px;
	padding: 30px;
	width: 700px;
}

.matchup-detail .info {
	margin-bottom: 20px;
}

.matchup-detail .round {
	font-weight: bold;
	font-size: 20px;
}

.matchup-detail .matchup-date {
	
}

.matchup-detail .tile-wrap {
	position: relative;
}

.matchup-detail .tile.team {
	float: left;
	margin: 0;
	padding: 0;
	width: 40%;
}

.matchup-detail .tile.team.last {
	float: right;
}

.matchup-detail .tile.team.winner {
	box-shadow: 0 0 20px green;
	border: 2px solid green;
}

.matchup-detail .tile .upper {
	font-weight: bold;
	padding: 4px 0;
	text-align: center;
	text-transform: uppercase;
}

.matchup-detail .tile.winner .upper {
	background: green;
	color: #ffffff;
}

.matchup-detail .tile .score {
	text-align: center;
	padding-bottom: 20px;
}

.matchup-detail .tile .score .label {
	color: #808080;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
}

.matchup-detail .tile .score .value {
	font-size: 35px;
	font-weight: bold;
}

.matchup-detail .vs {
	font-size: 60px;
	line-height: 60px;
	height: 60px;
	left: 40%;
	opacity: .4;
	margin-top: -30px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 20%;
	
}

.matchup-detail .bottom {
	clear: both;
	padding: 40px 0 0 0;
}

.matchup-detail .bottom .description {

}

.matchup-detail .winner-select-wrap {
	background: rgba(0,0,0,0.15);
	text-align: center;
	font-size: 20px;
}

.matchup-detail .winner-select-wrap label {
	cursor: pointer;
	display: block;
	padding: 20px 0;
}

.matchup-detail .winner-select-wrap .your-pick {
	padding: 20px 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Icons ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */




/* ----------------------------------------------------------------------------------------------------------------------- */
/* Miscellaneous --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.smr { margin-right: 6px; }
.smt { margin-top: 10px; }
.mt { margin-top: 20px; }
.bmt { margin-top: 30px; }
.vsmt { margin-top: 4px; }

.vsmb { margin-bottom: 4px; }
.smb { margin-bottom: 10px; }
.mb { margin-bottom: 20px; }
.bmb { margin-bottom: 30px; }

.sml { margin-left: 10px; }

.cb { clear: both; }
.cr { clear: right; }
.cl { clear: left; }
.fr { float: right; }
.fl { float: left; }
.cn { clear: none; }

.tar { text-align: right; }
.tac,th.tac { text-align: center; }
.spt { padding-top: 5px; }
.spr { padding-right: 5px; }
.pt { padding-top: 15px; }
.g { color: #808080; }
.red { color: red; }
.green { color: green; }
.nmr { margin-right: 0; }
.nbg { background: none; }
.gbr { border-right: 1px solid #e8e8e8; }
.dn { display: none; }
.gr { color: green; }
.w { color: #ffffff; }

.small { font-size: 80%; }

.di { display: inline; width: auto; float: none; }
.dib { display: inline-block; }
.db { display: block; }

.uc { text-transform: uppercase; }

.checkbox {	vertical-align: middle; }

.padding { padding: 15px; }

.drag-class td {
	background: #d9ecff;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	opacity: .5;
}

.drag-handle { cursor: move; }

.all-caps {	text-transform: uppercase; }

.status-icon {
	background: url(/images/icons/status-icon.png) 0 0 no-repeat;
	display: inline-block;
	height: 8px;
	width: 8px;
}

.status-icon.offline { background-position: 0 -8px; }

.status-icon span { display: none; }


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.submit,
.button {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #F5F5F5;
    background-image: -moz-linear-gradient(center top , #FFFFFF, #E6E6E6);
    background-repeat: repeat-x;
    border-color: #E6E6E6 #E6E6E6 #BFBFBF;
    border-image: none;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
}

@media screen and (max-width: 550px) {
	.submit,
	.button {
		font-size: 13px;
		padding: 8px 12px;
	}
}

.submit.filter {
	padding: 6px 20px;
	margin: -4px 0 0 0;
}

.myButton:hover {
	background:#969696;
}

.button.small {
	font-size: 12px;
	padding: 8px 15px;
}

.button .icon,
.submit .icon {
	font-size: 14px;
	margin: 0 4px 0 0;
	vertical-align: middle;
}

.button .icon.small {
	font-size: 12px;
}

.button .icon.right,
.submit .icon.right {
	margin: 0 0 0 5px;
}

.submit:hover,
.submit:active,
.submit.active,
.submit.disabled,
.submit[disabled], 
.button:hover,
.button:active,
.button.active,
.button.disabled,
.button[disabled] {  
    background-color: #E6E6E6;
    background-position: 0 -15px;
    color: #333333;
    text-decoration: none;
    transition: background-position 0.1s linear 0s;
}

.submit.gray,
.button.gray {
	background-color: #969696;
	color: #ffffff;
	opacity: .5;
	filter: alpha(opacity=50);
}

.submit.gray:hover,
.button.gray:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.submit:active,
.submit.active,
.button:active,
.button.active {
  background-color: #cccccc \9;
}

.submit:first-child,
.button:first-child {
  *margin-left: 0;
}

.submit:hover,
.button:hover {

}

.button:focus {
}

.submit.active,
.submit:active,
.button.active,
.button:active {
}

.submit.disabled,
.submit[disabled],
.button.disabled,
.button[disabled] {
}

.button .print { margin-top: 2px; }

.button.table-action {
	background: none;
	border: 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	color: #1477cc;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	display: block;
	font-size: 11px;
	line-height: 11px;
	margin: 2px 0;
	padding: 4px 4px 4px 23px;
	position: relative;
	text-align: left;
	text-shadow: none;
	transition: color .15s linear;
	-moz-transition: color .15s linear;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
}

.display-table .button.table-action {
	color: #afafaf;
}

.display-table tr:hover .button.table-action {
	color: #1477cc;
}	

.button.table-action:hover,
.display-table tr:hover .button.table-action:hover {
	background: #1477cc;
	color: #ffffff;
}

.display-table tr:hover .button.table-action.delete {
	color: #cf3434;
}

.button.table-action.delete:hover,
.display-table tr:hover .button.table-action.delete:hover {
	background: #cf3434;
	color: #ffffff;
}

.button.table-action .icon {
	font-size: 11px;
	position: absolute;
	left: 5px; 
	top: 4px;
}

.button.table-action.right {
	padding: 4px 23px 4px 4px;
}

.button.table-action.right .icon {
	left: auto;
	right: 5px;
}

.share-link {
	text-decoration: none;
	text-transform: uppercase;
	color: #333;
	font-size: 12px;
	margin-left: 30px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Seeds (Teams Table ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.display-table.seeds-table {

}

.display-table.seeds-table tr:nth-child(2n+1) td {
	border-top: 3px double #808080;
}

.display-table.seeds-table {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Pager ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.pager,
.pager:active {
	-webkit-appearance: none;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #d8d8d8 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d8d8d8));
	background: -webkit-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	background: linear-gradient(top, #ffffff 0%,#d8d8d8 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d8d8d8',GradientType=0 );
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.85);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.85);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.85);
	color: #000000;
	display: inline-block;
	font-weight: bold;
	height: 22px;
	line-height: 22px;
	padding: 0 8px;
	text-decoration: none;
	text-align: center;
}

.pager:hover,
.pager.on {
	-webkit-appearance: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	color: #000000;
	background: #e5e5e5;
	text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Info Table ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.info-table {

}

.info-table th{
	padding-right: 20px;
	color: #808080;
	text-align: left;
}

.info-table td {
	
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Display Table --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.display-table,
.scores-table {
	background: #eaebec;
	border: #cccccc 1px solid;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px #d1d1d1;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;	
	text-shadow: 1px 1px 0px #ffffff;
	width: 100%;
}

.display-table th,
.scores-table th {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
	border-bottom: 1px solid #e0e0e0;
	border-top: 1px solid #fafafa;
	padding: 10px;
	text-align: left;
}

.display-table th.tar,
.scores-table th.tar {
	text-align: right;
}

.display-table th:first-child {
}

.display-table tr:first-child th:first-child,
.scores-table tr:first-child th:first-child {
	border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
}

.display-table tr:first-child th:last-child,
.scores-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}

.display-table tr {
}

.display-table td:first-child,
.scores-table td:first-child {
	border-left: 0;
}

.display-table td,
.scores-table td {
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
	border-bottom: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #ffffff;
	padding: 10px;
}

.scores-table td.info {
	border-right: 1px solid #e0e0e0;
	width: 10px;
}

.display-table tr:nth-child(2n+2) td,
.scores-table tr:nth-child(2n+2) td {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}

.scores-table td.winner,
.scores-table tr:nth-child(2n+2) td.winner {
	background: #cdffc0;
	color: green;
	font-weight: bold;
}

.viewable-bracket .round .matchup .scores-table td.score-col,
.scores-table td.score-col {
	overflow: visible;
	position: relative;
}

.viewable-bracket .round .matchup .scores-table td.pick,
.scores-table td.pick {
	font-size: 9px;
	font-weight: bold;
	overflow: visible;
	position: relative;
}

.scores-table td .score-label {
	color: #000000;
	font-size: 8px;
	font-weight:normal;
	left:0;
	position: absolute;
	right:0;
	text-transform: uppercase;
	top: -15px;
}

.display-table tr:last-child td,
.scores-table tr:last-child td {
	border-bottom: 0;
}

.display-table tr:last-child td:first-child,
.scores-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}

.display-table tr:last-child td:last-child,
.scores-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}

.display-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}

.display-table tr.totals-row td {
	border-top: 3px double #cccccc;
}

.display-table tr.inactive td,
.display-table tr.inactive td a {
	color: #a4a4a4;
}

.display-table tr.expiring-soon td,
.display-table tr.expiring-soon td a {
	color: orange;
	font-weight: bold;
}

.display-table tr.expiring-very-soon td,
.display-table tr.expiring-very-soon td a {
	color: red;
	font-weight: bold;
}

.display-table tr.expiring-soon .button.table-action,
.display-table tr.expiring-very-soon .button.table-action {
	font-weight: normal;
}

.display-table .dragHandle img {
	cursor: move;
}

.display-table .dragClass {
	background: #d9ecff;
}

.display-table .dragClass td {
	background: #d9ecff;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	opacity: .5;
}

.display-table th.table-header { cursor: pointer; }
.display-table th.table-header:hover { 
	color: #808080;
}

.display-table th.table-header.headerSortUp {
	background: #e3e3e3;
	background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#d1d1d1));
	background: -moz-linear-gradient(top,  #e3e3e3,  #d1d1d1);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#d1d1d1');
	color: #000000;
}

.display-table th.table-header.headerSortDown {
	background: #d1d1d1;
	background: -webkit-gradient(linear, left top, left bottom, from(#d1d1d1), to(#e3e3e3));
	background: -moz-linear-gradient(top,  #d1d1d1,  #e3e3e3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d1d1d1', endColorstr='#e3e3e3');
	color: #000000;
}

.display-table th.table-headerSortUp:hover,
.display-table th.table-headerSortUp:hover {
}

@media screen and (max-width:550px) {
	.display-table {
		font-size: 12px;
	}
	
	.display-table th,
	.scores-table th,
	.display-table td,
	.scores-table td {
		padding: 2px 4px;
	}
	
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* View Table ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.view-table {
	background: #eaebec;
	border: #cccccc 1px solid;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px #d1d1d1;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;	
	text-shadow: 1px 1px 0px #ffffff;
	width: 100%;
}

.view-table tr:first-child th {
	border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
}

.view-table tr:first-child td {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}

.view-table th {
	border-left: 0;
	color: #808080;
	font-size: 12px;
	font-weight: normal;
	padding-right: 10px;
	text-align: left;
	text-transform: uppercase;
	width: 200px;
}

.view-table td,
.view-table th {
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #ffffff;
	padding: 6px;
}

.view-table tr:nth-child(2n+2) td,
.view-table tr:nth-child(2n+2) th {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}

.view-table tr:last-child td,
.view-table tr:last-child th {
	border-bottom: 0;
}

.view-table tr:last-child th {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}

.view-table tr:last-child td {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}

.view-table tr:hover td,
.view-table tr:hover th {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}

.view-table tr.totals-row td,
.view-table tr.totals-row th {
	border-top: 3px double #cccccc;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Forms ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
form, fieldset, form fieldset ol, form fieldset li {
	margin: 0;
	padding: 0;
}

form { margin: 0; }

form, input, textarea, option, select {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

input, textarea, select {
	border: 1px solid #cccccc;
	padding: 4px;
}

.chosen-container {
	min-width: 200px;
}

.chosen-container-multi .chosen-choices li {
	box-sizing: border-box;
	display: block;
	float: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	box-sizing: border-box;
	display: block;
	float: none;
}

input.readonly {
	background: #e5e5e5;
}

fieldset {
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f0f0f0));
	background: -webkit-linear-gradient(top, #ffffff 0%,#f0f0f0 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#f0f0f0 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#f0f0f0 100%);
	background: linear-gradient(top, #ffffff 0%,#f0f0f0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 );	
	border: 0;
	margin: 0 0 20px 0;
}

legend {
	background: #f2f2f2;
	background: -moz-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#e9e9e9));
	background: -webkit-linear-gradient(top, #f2f2f2 0%,#e9e9e9 100%);
	background: -o-linear-gradient(top, #f2f2f2 0%,#e9e9e9 100%);
	background: -ms-linear-gradient(top, #f2f2f2 0%,#e9e9e9 100%);
	background: linear-gradient(top, #f2f2f2 0%,#e9e9e9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#e9e9e9',GradientType=0 );
	border: 1px solid #d7d7d7;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #4b4b4b;
	font-weight: bold;
	padding: 8px;
	width: 100%;
}

form fieldset ol {
	list-style: none;
}

.form {
	border: 1px solid #d7d7d7; 
	border-bottom: 0;
	border-top: 0;
	width: 100%; 
}

form fieldset li, .form td {
	border-bottom: 1px solid #d7d7d7;
	border-top: 1px solid #ffffff;
	padding: 4px;
}

.form td {
	min-height: auto;
	padding: 8px;
}

.form td.first {
	width: 120px;
}

fieldset label {
	color: #808080;
	font-size: 90%;
}

fieldset label.block {
	display: block;
	width: auto;
}

form em {
	color: red;
	font-style: normal;
	padding: 0 0 0 2px;
}

form select {
	width: 200px;
}

textarea { 
	border: 1px solid #a5aeb5;
	line-height: 15px;
}

input.datepicker {
	background: #ffffff url(/images/icons/calendar.gif) 85px 48% no-repeat;
	padding-right: 20px;
	width: 82px;
	cursor: pointer;
}

input.datetimepicker {
	background: #ffffff url(/images/icons/calendar.gif) 151px 48% no-repeat;
	padding-right: 20px;
	width: 150px;
	cursor: pointer;
}

form .padding {
	padding: 10px;
}

span.checkbox-wrap {
	background: #ffffff;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.25);
	display: inline-block;
	margin: 3px;
	padding: 5px 10px 5px 5px;
	vertical-align: middle;
}

span.checkbox-wrap input {
}

span.checkbox-wrap img {
	margin: -1px 4px 0 0;
	float: left; 
	padding: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.25);
	width: 20px;
}

.checkbox-wrap label.unchecked,
.checkbox-wrap label.checked {
	background: url(/images/icons/checkbox.png) 0 50% no-repeat;
	cursor: pointer;
	display: block;
	padding-left: 27px;
	line-height: 25px;
	min-height: 25px;
	opacity: 1;
}

span.checkbox-wrap label.checked {
	background: url(/images/icons/checkbox-checked.png) 0 50% no-repeat;
}

span.checkbox-wrap label.unchecked:hover,
span.checkbox-wrap label.checked:hover {
	opacity: .60;
	filter: alpha(opacity=60);
}

.address-last-row td {
	border-bottom: 4px solid #cccccc;
}

.content-box-item,
.ui-sortable-placeholder {
	background-color: #e9e9e9;
	border: 1px solid #cccccc;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	min-height: 15px;
	display: block;
	margin: 0 0 4px 0;
	padding: 10px 5px;
}

.content-box-item.ui-sortable-helper {
	border: 1px solid #808080;
}

.content-box-item .handle {
	background: #e9e9e9 url(/images/icons/icon_drag.gif) 4px 50% no-repeat;
	cursor: move;
	display: block;
	float: left;
	height: 15px;
	margin: 0 8px 0 0;
	width: 15px;
}
	

.ui-sortable-placeholder {
	border: 1px dashed #000000;
	background: #ffffff;
	height: 20px;
	opacity: .4;
	filter: alpha(opacity=40);
}
	
	
.field-wrap {
	border-bottom: 1px solid #d7d7d7;
	margin: 0 0 10px 0;
	padding-bottom: 10px;
}

.field-wrap label {
	color: #808080;
	display: block;
	font-size: 11px;
	margin: 0 0 4px 0;
	text-transform: uppercase;
}

.field-wrap ul {
	margin: 0;
	padding: 0 0 0 15px;
}

@media screen and (max-width:550px) {
	.form table,
	.form tr,
	.form thead,
	.form tbody,
	.form td,
	.form td.first {
		box-sizing: border-box;
		display: block;
		width: 100%;
	}

	.form td:first-child {
		border: 0;
		padding-bottom: 0;
	}

	.form td input[type=text],
	.form td input[type=number],
	.form td input[type=file],
	.form td input[type=password],
	.form select,
	.form .chosen-container,
	textarea {
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		width: 100% !important;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Alerts ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.alert,
.good-alert, 
.bad-alert {
	background: #e7ffe6;
	border: 1px solid #beffbb;
	color: #000000;
	margin: 10px 0;
	position: relative;
	z-index: 105;
}

.alert.neutral {
	background: #fffae0;
	border: 1px solid #ffe153;
	margin: 0 0 10px 0;
}

.alert .inside,
.alert-inside {
	margin: 0 auto;
	font-size: 18px;
	padding: 20px 25px 20px 10px;
}

.alert.neutral .inside {
	font-size: 12px;
	padding: 10px;
}

.bad-alert {
	background: #ffe6e6;
	border: 1px solid #ffbbbb;
}

.close-it {
	background: url(/images/icons/hide.png) 0 0 no-repeat;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 56px;
}

.close-it span {
	display: none;
}

.good-alert.fixed, 
.bad-alert.fixed {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	display: none;
	left: 0;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

@media screen and (max-width: 700px) {
	.good-alert.fixed, 
	.bad-alert.fixed {
		border: 0;
		border-top: 1px solid #beffbb;
		bottom: 0;
		top: auto;
	}

	.bad-alert.fixed {
		border-color: #ffbbbb;
	}

	.alert .inside,
	.alert-inside {
		font-size: 13px;
		padding: 10px;
	}
}

.good-alert.fixed .alert-inside, 
.bad-alert.fixed .alert-inside {
	margin: 0 auto;
	position: relative;
	max-width: 1100px;
}

iframe {
	max-width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Scores Table ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.custom-bracket-background .main-wrapper {
	border-top: 10px solid #ffffff;
}

body.custom-bracket-background .bracket-info {
	background: rgba(255,255,255,0.6);
	margin-bottom: 10px;
	padding: 15px;
}

.bracket-info .category {
	margin: 0 0 15px 0;
}

.description-toggle {
	display: none;
}

@media screen and (max-width: 550px) {
	body.custom-bracket-background .bracket-info {
		padding: 10px;
	}
	
	.description-toggle.button {
		display: block;
		font-size: 10px;
		margin-top: -22px;
		padding: 4px 10px;
		float: right;
	}
	
	.bracket-info .category {
		font-size: 12px;
		margin: 0;
	}

	.bracket-info .description {
		font-size: 12px;
		max-height: 0px;
		overflow: hidden;
		position: relative;
		-webkit-transition: all 250ms cubic-bezier(0.860, 0.000, 0.070, 1.000); 
		transition: all 250ms cubic-bezier(0.860, 0.000, 0.070, 1.000);	
	}
	
	body.show-bracket-description .description {
		max-height: 1000px;
		overflow: visible;
		padding-top: 10px;
	}

	.bracket-info .description iframe {
		opacity: 0;
		transition: none;
	}
	
	body.show-bracket-description .description iframe {
		opacity: 1;
		transition: opacity 0.5s linear;
		transition-delay: 0.25s;
	}
}

.scores-table {
	max-width: 100%;
	width: auto;
}

.scores-table th,
.scores-table td {
	padding: 5px;
}

.viewable-bracket-wrap {
	overflow: hidden;
	position: relative;
}

.viewable-bracket-wrap.rounds-1, 
.viewable-bracket-wrap.rounds-2, 
.viewable-bracket-wrap.rounds-3, 
.viewable-bracket-wrap.rounds-4 {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 10px;
}

#bracket-prev-arrow,
#bracket-next-arrow {
	background: #333333 url(/images/template/dark-gray-background.png);
	border-radius: 0 10px 10px 0;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	height: 40px;
	line-height: 40px;
	left: 0;
	position: fixed;
	text-align: center;
	text-decoration: none;
	top: 50%;
	width: 25px;
	z-index: 10;
}

#bracket-next-arrow {
	border-radius: 10px 0 0 10px;
	left: auto;
	right: 0;
}

#bracket-prev-arrow:hover,
#bracket-next-arrow:hover {
	opacity: .7;
}

.viewable-bracket {
	position: relative;
	font-size: 10px;
}

.viewable-bracket .round {
	position: absolute;
	top: 0;
}

.viewable-bracket.rounds-1 .round {
	width: 50%;
}

.viewable-bracket.rounds-2 .round {
	width: 50%;
}

.viewable-bracket.rounds-3 .round {
	width: 33.3333%;
}

.viewable-bracket.rounds-4 .round {
	width: 25%;
}

.viewable-bracket.rounds-5 .round {
	width: 20%;
}

.viewable-bracket.rounds-6 .round {
	width: 16.6666%;
}

@media only screen and (max-width: 1500px) {
	.viewable-bracket.rounds-4 .round,
	.viewable-bracket.rounds-5 .round,
	.viewable-bracket.rounds-6 .round {
		width: 33.3333%;
	}
}
@media only screen and (max-width: 900px) {
	.viewable-bracket.rounds-3 .round,
	.viewable-bracket.rounds-4 .round,
	.viewable-bracket.rounds-5 .round,
	.viewable-bracket.rounds-6 .round {
		width: 50%;
	}
}
@media only screen and (max-width: 700px) {
	.viewable-bracket.rounds-1 .round,
	.viewable-bracket.rounds-2 .round,
	.viewable-bracket.rounds-3 .round,
	.viewable-bracket.rounds-4 .round,
	.viewable-bracket.rounds-5 .round,
	.viewable-bracket.rounds-6 .round {
		width: 100%;
	}
}

.viewable-bracket .round-1 {

}

.viewable-bracket .round-2 {

}

.viewable-bracket .round-3 {

}

.viewable-bracket .round-4 {

}

.viewable-bracket .round-5 {

}

.viewable-bracket .round-6 {

}

.viewable-bracket .round .matchups {
}

.viewable-bracket .round .matchup {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 10px 0;
	height: 74px;
	position: relative;
}

.viewable-bracket .round .matchup.empty {
	opacity: .4;
	filter: alpha(opacity=40);
}

.viewable-bracket .round.round-2 .matchup {
	padding: 48px 0 100px 0;
}

.viewable-bracket .round.round-3 .matchup {
	padding: 122px 0 174px 0;
}

.viewable-bracket .round.round-4 .matchup {
	padding: 270px 0 322px 0;
}

.viewable-bracket .round.round-5 .matchup {
	padding: 566px 0 618px 0;
}

.viewable-bracket .round.round-6 .matchup {
	padding: 1158px 0;
}

.viewable-bracket .round .matchup:before {
	background: black;
	content: ' ';
	height: 1px;
	left: 70%;
	position: absolute;
	top: 50%;
	width: 15%;
}

.viewable-bracket .round .matchup:nth-child(2n+0):after {
	background: black;
	content: ' ';
	height: 74px;
	margin-top: -36px;
	left: 85%;
	position: absolute;
	top: 0%;
	width: 1px;
}

.viewable-bracket .round.round-2 .matchup:nth-child(2n+0):after {
	height: 149px;
	margin-top: -74px;
}

.viewable-bracket .round.round-3 .matchup:nth-child(2n+0):after {
	height: 297px;
	margin-top: -148px;
}

.viewable-bracket .round.round-4 .matchup:nth-child(2n+0):after {
	height: 593px;
	margin-top: -296px;
}

.viewable-bracket .round.round-5 .matchup:nth-child(2n+0):after {
	height: 1185px;
	margin-top: -592px;
}

.viewable-bracket .round .matchup:nth-child(2n+1):after {
	background: black;
	content: ' ';
	height: 1px;
	left: 85%;
	position: absolute;
	top: 100%;
	width: 15%;
}

.viewable-bracket.rounds-1 .round-1 .matchup:before,
.viewable-bracket.rounds-1 .round-1 .matchup:after,
.viewable-bracket.rounds-2 .round-2 .matchup:before,
.viewable-bracket.rounds-2 .round-2 .matchup:after,
.viewable-bracket.rounds-3 .round-3 .matchup:before,
.viewable-bracket.rounds-3 .round-3 .matchup:after,
.viewable-bracket.rounds-4 .round-4 .matchup:before,
.viewable-bracket.rounds-4 .round-4 .matchup:after,
.viewable-bracket.rounds-5 .round-5 .matchup:before,
.viewable-bracket.rounds-5 .round-5 .matchup:after,
.viewable-bracket.rounds-6 .round-6 .matchup:before,
.viewable-bracket.rounds-6 .round-6 .matchup:after {
	display: none;
}

.viewable-bracket .round .matchup .matchup-heading {

}

.viewable-bracket .round .matchup .date {
	display: none;
}

.viewable-bracket .round .matchup .date label {

}

.viewable-bracket .round .matchup .scores-table {
	width: 70%;
}

.viewable-bracket .round .matchup.active .scores-table {
	cursor: pointer;
}

.viewable-bracket .round .matchup.active .scores-table:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.viewable-bracket .round .matchup .scores-table th {

}

.viewable-bracket .round .matchup .scores-table td {
	overflow: hidden;
}

.viewable-bracket .round .matchup .scores-table tr:hover td {
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Picks Breakdown ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.table-breakdown {
	background: #ffffff;
	margin: 30px auto 0 auto;
	max-width: 1200px;
	padding: 20px;
}

.table-breakdown .round {
	float: left;
	width: 23%;
	margin-right: 2%;
}

.table-breakdown .round h3 {

}

.table-breakdown .round table {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* User Profile ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.profile {

}

@media screen and (min-width: 768px) {
	.profile:after {
		clear: both;
		content: '';
		display: table;
	}

	.profile .left-col {
		float: left;
		width: 25%;
	}

	.profile .right-col {
		float: right;
		width: 71%;
	}
}

.profile .profile-photo {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 100%;
	border: 1px solid #ccc;
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	height: 0;
	margin-bottom: 25px;
	padding-top: 100%;
	width: 100%;
}

.profile .view-table th {
	width: 100px;
}

.profile .profile-photo img {
	display: none;
}

.custom-record-background .profile .right-col .profile-heading {
	background: rgba(255,255,255,0.7);
	border: 1px solid #ccc;
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	margin: 0 0 25px 0;
	padding: 20px;	
}

.custom-record-background .profile .right-col .profile-heading h2 {
	margin: 0;
}

.profile .tile {
	background: #f7f7f7; 
}

.profile .tile,
.profile .grid-sizer {
	margin: 0 10px 20px 10px;
	width: calc((100% / 3) - 20px);
}

.profile .gutter-sizer {
	width: 0;
}

@media screen and (max-width: 1100px) {
	.profile .tile,
	.profile .grid-sizer {
		width: calc(50% - 20px);
	}
}

@media screen and (max-width: 500px) {
	.profile .tile,
	.profile .grid-sizer {
		margin: 0 0 20px 0;
		width: 100%;
	}
}