@charset "iso-8859-1";

/*
 * quickfix.css - kangguru.org
 *
 * private style sheet for quickfix.htm
 *
 * this style sheet is a private implementation of a 4-up link-block
 *
 * whole thing lifted and tweaked from englishradio.css and radio_series.css
 *
 * todo: make a common tool!
 */

.todo
{
/* border: 2px dashed fuchsia !important;  a 'todo' marker; to be removed */
}

div.divQuickFixLinkBlock
{
 text-align: center;
}

table.tblQuickFixLinkBlock
{
 width: 90%;     /* was '!important' but does not need to be; wo/width at all, table collapses tight to link-text */
 margin-top: .8em;
 margin-bottom: 1em;
 margin-left: auto;
 margin-right: auto;
 background-color: #999;
}
table.tblQuickFixLinkBlock td
{
 padding: 0 !important;
 line-height: 150%;
 text-align: center !important;
 background-color: #cc9;
}

table.tblQuickFixLinkBlock a
{
 display: block;
 height: 100% !important;
 padding: .5em .75em;
 background-color: #cc9;
 text-decoration: none;
}
table.tblQuickFixLinkBlock a:hover
{
 background-color: #eeb;
 text-decoration: none !important;
}

/*
 * this hack will need to be centralized!
 *
 */

table.tblQuickFixLinkBlock a:visited
{
/* force back to standard unvisited-look because
   IE doesn't distinguish between the hoards of local links;
   they all go purple since we're *on* the page already
 */
 color: #00c !important;
}
table.tblQuickFixLinkBlock a:hover
{
/* great have to restate this or we've broken the hover-colour on visited link;
 */
 color: #00f !important;
}
table.tblQuickFixLinkBlock a:focus,
table.tblQuickFixLinkBlock a:active
{
 color: Red !important;
}

