/*
This stylesheet contains CSS properties that
don't crash Netscape 4. In general, it can be used for
CSS1 properties, and any CSS2 property that older browsers
will ignore without crashing.
*/


body {
        color:black;
}

div.message {
        background-color:#FFFFCC;
        color:black;
        border-width:1px;
        border-color:black;
        border-style:solid;
        padding:4px;
}

div.border {
        border-width:1px;
        border-color:black;
        border-style:solid;
        padding:4px;
}

div.heading {
        background-color:#FFFFCC;
        color:black;
        border-width:1px;
        border-color:black;
        border-style:solid;
        padding:4px;
        font-weight:bold;
        font-size:110%;
}

div.heading2 {
        border-bottom-width:1px;
        border-top-width:0px;
        border-left-width:0px;
        border-right-width:0px;
        border-color:black;
        border-style:solid;
        padding:4px;
        font-weight:bold;
        font-size:110%;
}


div.errors {
        color: red;
}

div.warning {

        color: red;
}

/* Citations are displayed with all lines indented except the first line.
   To achieve this, we add a margin on the left to indent all the text
   and then indent the first line a negative amount to undo the margin
   for the first line.
*/

div.citation {
        margin-left:0.5in;
        text-indent:-0.5in;
}

hr {
        border: 0px;
        color: #B8B8B8;
        background-color: #B8B8B8;
        height: 1px;
}

textarea {
        font-family: monospace;
}


.navItem {
        white-space:nowrap;
        color: black;
}

.highlight {
        background-color:yellow;
}

