/* Resets to avoid browser differences */

body, button, div, fieldset, form, h1, h2, h3, input, label, li, p, pre, select, td, th, textarea {
    margin: 0;
    padding: 0;
    text-align: left;
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.25;
    letter-spacing: 0;
    border: none;
    background: none;
}

/* Overall page layout */

body {
    background: white;
    color: #303030;
}

@media screen {
    body {
        margin: 2em auto;
        width: 35em;
    }

    h1 a, h2 a, h3 a, .info a {
        text-decoration: none;
    }

    a:link {
        color: #85ac40;
    }

    a:visited {
        color: #61883b;
    }
}

@media print {
    body {
        margin: 0 2em;
    }
}

/* Headers */

h1 {
    font-family: Times, serif;
    text-align: center;
    letter-spacing: -.05em;
    margin-bottom: 1em;
    font-weight: normal;
}

h1 img {
    vertical-align: top;
    margin-right: -.2em;
}

h2 {
    font-family: Times, serif;
    font-size: 200%;
    letter-spacing: -.05em;
    font-weight: normal;
}

/* Data table */

table {
    border-collapse: collapse;
    margin: 0 0 2em 0%;
}

caption {
    text-align: left;
    font-size: 150%;
    font-weight: bold;
    border-bottom: 1px solid #303030;
    padding-left: 1em;
    display: none;
}

th {
    padding: 0 .2em;
}

th[scope="col"].player {
    text-indent: -9999px;
}

th[scope="col"].hole {
    text-align: center;
    width: .5em;
    font-weight: normal;
    text-indent: -9999px;
}

th[scope="col"].total {
    text-indent: -9999px;
}

th[scope="row"] {
    font-weight: bold;
    text-align: right;
    width: 5em;
    border-right: 1px solid #303030;
}

tbody tr > * {
    white-space: nowrap;
}

/* Task scores */

tbody .score .par {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-indent: -9999px;
    border-top: 1px solid #303030;
    margin-top: 1.25em;
}

tbody .score .index {
    position: absolute;
    display: block;
    background: #303030;
    width: 80%;
    left: 10%;
    height: 0;
}

tbody .score .under .index {
    top: 0;
    -moz-border-radius: 0 0 .2em .2em;
}

tbody .score .over .index {
    bottom: 100%;
    margin-bottom: 1px;
    -moz-border-radius: .2em .2em 0 0;
}

tfoot .total {
    text-indent: -9999px;
}

td.total {
    width: 1.5em;
    text-align: right;
}

td.total .index {
    display: none;
}


