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

/*
** Document structure properties:
*/
body, dl, li, ol, p, td, th, ul
{
    font-family:	Georgia, Times New Roman, Times, serif;
    font-size:		16px;
}

h1, h2, h3, h4, h5, h6
{


    font-family:	Georgia, Times New Roman, Times, serif;
    font-weight:	bold;
    text-align:		center;
}

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

body
{
    background:		#9999FF;
    color:		black; 
    margin-bottom:	16px;
    margin-left:	32px;
    margin-right:	32px;
    margin-top:		16px;
}

div /* so as not to override imported stylesheet */
{
    margin-bottom:	8px;
    margin-top:		8px;
    width:		100%;
}

body div
{
    background-color:	white;
    border:		1px solid #000066;
    color:		black;
    padding-bottom:	4px;
    padding-left:	8px;
    padding-right:	8px;
    padding-top:	4px;
}

h1
{
    font-size:		32px;
}

h2
{
    font-size:		28px;
}

h3
{
    font-size:		24px;
}

h4
{
    font-size:		20px;
}

h5
{
    font-size:		18px;
}

h6
{
    font-size:		16px;
}
    
/*
** Link properties:
*/
a
{
    font-weight:	bold;
    text-decoration:	none;
}

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

a:active
{
    background-color:	transparent;
    color:		#000066;
}

/*
** Miscellaneous inline properties:
*/
cite
{
    font-style:		italic;
    font-weight:	bold;
}

em
{
    font-style:		italic;
}

strong
{
    font-weight:	bold;
}

sub, sup
{
    font-size:		67%;
}

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

/*
** Footer-related properties:
*/
div.footer p
{
    font-family:	Verdana, Arial, Helvetica, sans-serif;
    font-size:		12px;
}

/*
** NavBar-related properties:
*/
div.navbar p
{
    font-family:	Verdana, Arial, Helvetica, sans-serif;
    font-size:		12px;
    text-align:		center;
}

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

.medium
{
    color:		olive;
}

.low
{
    color:		green;
}

