/******************************************************************************
                                      Page
******************************************************************************/

BODY {
    background-color: white;
}


/******************************************************************************
                 Non-Inline Tabs (each tab in a separate page)
******************************************************************************/

.tabs {
    list-style: none;
    white-space: nowrap;
    margin: 0;
    margin-top: 1em;
    border-bottom: #0090ff 2px solid;
}

.tabs LI {
    display: inline;
}

.tabs LI A {
    margin-right: 10px;		/* between the tabs */
    padding: 0px 10px;		/* left and right within tab */
    border: #0090ff 1px solid;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.tabs LI A:hover {
    background-color: #c0eaff;
}

.tabs LI.current A {
    padding: 0px 10px;
    color: black;
    background-color: #c0eaff;
    font-weight: bold;
    text-decoration: none;
    border: #0090ff 2px solid;
    border-bottom: #c0eaff 2px solid;
}

/* Not currently used */
.tabbody {
    padding: 0px 20px;
    border: #0090ff 2px solid;
    border-top: none;
}


/******************************************************************************
                                    Sub-menu
******************************************************************************/

/* yellow with cyan border */
.menu {
    background: #ffffcc;
    border: 2px solid rgb(120,172,255);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
}

.menu .contents {
    color: rgb(120,172,255);
    font-weight: bold;
    font-size: larger;
}

.menu A {
    padding: 10px;
}

/* white on cyan background */
.menu .current {
    background: rgb(120,172,255);
    color: white;
}


/******************************************************************************
                                     Photos
******************************************************************************/

/* 3 photos across page, evenly spaced */
.photos {
    width: 100%;
}

.photos TR TD {
    width: 33%;
    text-align: center;
}


/******************************************************************************
                                     Quotes
******************************************************************************/

.quote {
    width: 400px;
    border: 2px solid rgb(120,172,255);
    margin-left: 20px;
}

.quote .left, .quote .right {
    font-size: 32pt;
    font-weight: bold;
}

.quote .middle {
    padding-left: 20px;
    padding-right: 20px;
    font-family: sans-serif;
    font-style: oblique;
}


/******************************************************************************
                                Fieldset legends
******************************************************************************/

FIELDSET {
    border: 2px solid rgb(120,172,255);
    background-color: #ffffcc;
    margin-top: 1em;
}

FIELDSET LEGEND {
    border: 2px solid rgb(120,172,255);
    background-color: #c0eaff;
    font-size: larger;
    font-weight: bold;
}


/******************************************************************************
                      Inline Tabs (all tabs in same page)
******************************************************************************/

FIELDSET.inlineTabs LEGEND {
    background-color: white;
    padding: 0px;	/* Remove space between inside of box and its contents */
}

FIELDSET.inlineTabs LEGEND .active {
    background-color: #c0eaff;
    padding: 0px 10px;		/* Add a little space around the text */
}

FIELDSET.inlineTabs LEGEND .inactive {
    padding: 0px 10px;		/* Add a little space around the text */
    text-decoration: underline;		/* Show as links */
}

FIELDSET.inlineTabs LEGEND .inactive:hover {
    background-color: #c0eaff;
}


/******************************************************************************
                  Text highlighting; typically for table cells
******************************************************************************/

/* Red highlights */
.bad {
    background-color: rgb(255,128,128);
    font-weight: bold;
}

/* Green highlights */
.good {
    background-color: rgb(128,255,128);
    font-weight: bold;
}

/* Blue highlights */
.note {
    color: rgb(0,0,255);
    font-weight: bold;
    font-size: 115%;
}

/* "Last update" boxes */
.infoBox {
    margin: 2px;
    padding: 2px;
    background: #ffffcc;
    border: thin solid black;
}

/* Bottom-of-page copyright text */
.copyright {
    /* border-top: thin solid rgb(128,128,128); */
    color: rgb(128,128,128);
    font-size: 60%;
    text-align: center;
}


/******************************************************************************
                Fancy table; colours based on calendar.yahoo.com
******************************************************************************/

TABLE.nice {
    empty-cells: show;
    border: 1px solid #C1C1C1;
    border-collapse: collapse;
}

TABLE.nice TH {
    text-align: center;
    vertical-align: bottom;
    font-weight: normal;
    text-decoration: underline;
    padding: 3px 5px;
    background-color: #E6E6E6;
    border: 1px solid #C1C1C1;
}

TABLE.nice TD {
    padding: 3px 5px;
    border: 1px solid #C1C1C1;
}

TABLE.nice TR.currentRow TD {
    background-color: #ccccff;
}

TABLE.nice TR.subtotal TD {
    border-top: 2px solid black;
}

TABLE.nice TR.total TD {
    border-top: double;
}

TABLE.nice TR TD.currentCol {
    background-color: #ccccff;
}


/******************************************************************************
                    Navigation Links (bottom of News pages)
******************************************************************************/

.navigate {
    font-size: 200%;
    border: 1px solid #C1C1C1;
    text-align: center;
}

.navigate A {
    text-decoration: none;
}

