/*
** XenTonic CSS1 Stylesheet
**
** Only properties that actually work under NS4.x should be defined in this
** stylesheet.	All others must be defined in one of the imported stylesheets.
*/
@import url("stylesheet2.css");

/*
** Define common properties:
*/
body, li, ol, p, td, th, ul
{
    font-family:    Verdana, Syntax, sans-serif;
    font-size:	    16px;
}

h1, h2, h3, h4, h5, h6
{
    font-family:    Tahoma, Verdana, Syntax, sans-serif;
    font-weight:    bold;
    text-align:	    center;
}

pre
{
    font-family:    Courier New, monospace;
    font-size:	    18px;
}

/*
** Kluges for NS4.x:
*/
h1, h2, h3, h4, h5, h6, p
{
    border:	    thin solid white;
}

/*
** Document body:
*/
body
{
    background:	    white;
    color:	    black; 
    margin:	    5%;
}

/*
** Headings:
*/
h1
{
    font-size:	    32px;
}

h2
{
    font-size:	    28px;
}

h3
{
    font-size:	    24px;
}

h4
{
    font-size:	    20px;
}

h5
{
    font-size:	    18px;
}

h6
{
    font-size:	    16px;
}
    
/*
** Phrases:
*/
cite
{
    font-style:	    italic;
    font-weight:    bold;
}

em
{
    font-style:	    italic;
}

strong
{
    font-weight:    bold;
}

/*
** Quotations:
*/
blockquote
{
    margin-left:    5%;
    margin-right:   5%;
}

/*
** Subscripts and superscripts:
*/
sub
{
    font-size:	67%;
}

sup
{
    font-size:	67%;
}

/*
** Paragraphs:
*/
p.footer
{
    font-size:	75%;
}

p.navbar
{
    font-size:	75%;
    text-align: center;
}

/*
** Tables:
*/
td
{
    padding-bottom:	4px;
    padding-top:	4px;
}

th
{
    background-color:	navy;	/* site-specific color */
    color:		white;
    font-weight:	bold;
    padding-bottom:	4px;
    padding-top:	4px;
}

tr
{
    background-color:	white;
}

tr.shaded
{
    background-color:	silver;
}

/*
** Links:
*/
a
{
    text-decoration:	none;
}

a:link, a:visited
{
    background-color:	transparent;
    color:		purple;
    font-weight:	bold;
}

/*
** Arbitrary classes:
*/
.high
{
    color:  red;
}

.medium
{
    color:  olive;
}

.low
{
    color:  green;
}
