/*
 *     @(#)$Id$
 *
 *         Copyright (c) AMS-IX B.V.; all rights reserved.
 *
 *             sb:14.09.2004
 *
 *                 Fancy table
 *                     To apply this style to a table:
 *
 *                     	<table class="fancy"> ... </table>
 *                     	*/

table.fancy {
    border: 1px solid #404040;
    border-collapse: collapse;
    border-spacing: 0pt;
    /*cell-spacing: 0pt;*/
    background-color: #e0e0e0;
}

table.fancy tr		{ background-color: #fafafa }
table.fancy tr.alt	{ background-color: #efeffa }

table.fancy td, table.fancy th {
    border: 1px ridge #e0e0e0;
    padding: 2px;
}

table.fancy td.form, table.fancy th.form {
    border-left: none;
    border-right: none;
    padding: 2px;
}

table.fancy td.distance {
    text-align: right;
    border-right: none;
}
table.fancy td.unit {
    border-left: none;
    margin-left: 0px;
}

table.fancy th {
    background-color: #d0d0d0;
    color: #404040;
    text-align: left;
    font-weight: bold;
}

/* ======================================================================== */
table.fancy td.lhalf, table.fancy th.lhalf {
    text-align: right;
	border-right: none;
	padding-right:0;
	margin-right:0;
}

table.fancy td.rhalf, table.fancy th.rhalf {
    text-align: left;
	border-left: none;
	padding-left:0;
	margin-left:0;
}

/* ======================================================================== */

table.nice {
    border-collapse: collapse;
    border-spacing: 0pt;
}

table.nice tr		{
	background-color: #fafafa;
    }
table.nice tr.alt	{
	background-color: #efeffa
    }
table.nice td, table.nice th {
    border: 1px ridge #e0e0e0;
    padding: 2px;
}

table.nice td.empty, table.nice th.empty {
    background-color: white;
    border: none;
    padding: 2px;
}

table.nice td.form, table.nice th.form {
    border-left: none;
    border-right: none;
    padding: 2px;
}

table.nice td.distance {
    text-align: right;
    border-right: none;
}
table.nice td.unit {
    border-left: none;
    margin-left: 0px;
}

table.nice th {
    background-color: #d0d0d0;
    color: #404040;
    text-align: left;
    font-weight: bold;
}

