/**
 * Printable table style sheet.
 *
 * @author Jukka Mäkelä
 * @author Arttu Salonen
 * @author Kimmo Keskinen
 */

body
{
    font: 11px Verdana, Tahoma, Arial, sans-serif;
}

table
{
    empty-cells: show;
    border-collapse: collapse;
}

th
{
    text-align: left;
    border-bottom: 1px solid black;
    margin: 0;
    padding-bottom: 3px;
}

td
{
    border-bottom: 1px solid black;
    padding-top: 6px;
    padding-bottom: 6px;

}

.dateColumn
{
    width: 100px;
}

.descriptionColumn
{
    width: 300px;
}

.signatureColumn
{
    width: 300px;
}

.sportColumn
{
    width: 200px;
}

.locationColumn
{
    width: 200px;
}

.durationColumn
{
    width: 70px;
}

.distanceColumn
{
    width: 70px;
}

th.resultColumn
{
    width: 100px;
}

td.resultColumn
{
    width: 100px;
    /*text-align: right*/
}

.colored
{
    background-color: rgb(210,210,210);
}

.noncolor
{
    background-color: white;
}

.summaryNameColumn
{
	width: 240px
}

.summaryLoggingsColumn
{
	width: 110px
}

.summaryAvgResultColumn
{
	width: 140px
}

.summaryMaxResultColumn
{
	width: 120px
}

.summaryDateColumn
{
	width: 120px;
}

.summaryDurationColumn
{
	width: 100px
}