/* Fonts */

@font-face {
    font-family: FuturaCondensedPT-Medium;
    src:url(/css/fonts/FuturaCondensedPT-Medium.otf)
}

@font-face {
    font-family: GoBold-Thin;
    src:url(/css/fonts/Gobold-Thin.otf)
}

@font-face {
    font-family: GoBold-Bold;
    src:url(/css/fonts/Gobold-Bold.otf)
}

@font-face {
    font-family: OpenSans-Regular;
    src:url(/css/fonts/OpenSans-Regular.ttf)
}

@font-face {
    font-family: OpenSans-Bold;
    src:url(/css/fonts/OpenSans-Bold.ttf)
}


/* HTML Standard Elements */

body {
    margin: 0;
    padding: 0;
    background-color: #efefef;
    font-family: OpenSans-Regular;
    font-size: 14px;
}

h1, h2, h3 {
    font-family: FuturaCondensedPT-Medium;
    margin: 0;
}

h1 {
    font-size: 28px;
}

h2 { 
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin: 0;
    padding-bottom: 1em;
}

nav {
    background-color: #144e26;
    height: 50px;
}

main {
    
}

a {
    color: #144e26;
    text-decoration: none;
}

a:hover, visited {
    color: #549668;
    text-decoration: underline;
}


/* Page Header */

#masthead {
    display: flex;
    background-color: #999;
    height: 175px;
    background: url(/assets/header-bg.jpg) center no-repeat;
}

.heading {
    display: flex;
    margin: 0 auto 0 auto;
    width: 1048px;
    height: 100%;
}

.logo {
    width: 175px;
    height: 175px;
    /*background-color: #333;*/
    text-align: center;
}

.logo img {
    padding-top: 16px;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 175px;
    /*background-color: #666;*/
}

.unofficial {
    font-family: GoBold-Thin;
    font-size: 18px;
    color: #fff;
    padding: 0 0 5px 10px;
}

.dcehl {
    font-family: GoBold-Bold;
    font-size: 48px;
    text-shadow: 2px 2px 2px #000000;
    color: #fff;
    padding: 0 0 0 10px;
}

#foot {

}

.bottom {
    background-color: #fff;
    margin: 0 auto 0 auto;
    width: 1048px;
}

.copyright {
    padding: 2em;
    text-align: center;
    font-family: OpenSans-Regular;
    font-size: 10px;
    color: #333;
    background-color: #fff;
}


/* Site Navigation */

.navigation {
    display: flex;
    width: 1048px;
    height: 100%;
    margin: 0 auto 0 auto;
    background-color: #144e26;
}

.navigation a {
    text-decoration: none;
}

.navigation div {
    flex: 1;
    text-align: center;
    margin: auto;
    font-family: OpenSans-Bold;
    font-size: 14px;
    color: #fff;
}

.navigation span {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.navigation .currentPage {
    border-bottom: 2px solid #fff;
}


/* Page Content */

#content {
    background-color: #fff;
    width: 1048px;
    margin: 0 auto 0 auto;
}

.container {
    display: flex;
}

.fullWidthColumn {
    width: 100%;
    padding: 30px 30px 0px 30px;
}

.primaryColumn {
    width: 680px;
    padding: 30px 15px 0px 30px;
    background-color: #fff;
}

.secondaryColumn {
    width: 368px;
    padding: 30px 30px 30px 15px;
    background-color: #fff;
}

.box {
    margin-bottom: 30px;
}

.boxHeader {
    padding: 4px 8px 4px 8px;
    font-family: FuturaCondensedPT-Medium;
    font-size: 21px; color: #fff;
    background-color: #144e26;
}

.boxContent {
    background-color: #eee;
    padding: 8px;
}


/* Grids */

.grid {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.grid .heading {
    flex: 1;
    border-right: 1px solid #ccc;
    font-weight: bold;
    justify-content: center;
    color: #144e26;
    padding: .5em 0 .5em 0;
}

.grid .heading:first-of-type {
    flex: unset;
    width: 125px;
}

.grid .heading:last-of-type {
    border-right: none;
}

.grid .cell {
    flex: 1;
    text-align: center;
    padding: .5em 0 .5em 0;
}

.grid .cell:first-of-type {
    flex: unset;
    width: 125px;
    text-align: left;
}

.grid .cell:last-of-type {
    border-right: none;
}


/* Tabled Data */

.fauxTable {
    display: table;
    margin-top: 1em;
}

.fauxTr {
    display: table-row;
}

.fauxTh, .fauxTd {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0.2em;
    width: 42px;
}

.fauxTh {
    font-weight: bold;
}

.fauxTh:last-of-type, .fauxTd:last-of-type {
    border-right: none;
}


/* Shared (standings, scores, upcoming games) */

.teamLogoTd {
    width: 70px;
    border-right: none;
}

.teamNameTd {
    width: 100px;
    text-align: left;
    border-right: none;
}


/* Standings (alt display) */

.standingsAltTable .fauxTd {
    width: 70px;
}

.standingsTable .fauxTd {
    width: 80px;
}

/* Standings */

.standingPositionTd {
    width: 20px !important;
    border-right: none;
}

.standingsTd {
    width: 62px;
}