/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* This document is a Cascading Style Sheet (CSS).
It should be located in the SAME DIRECTORY as all
the HTML files that call it.  It may be copied to other
directories, but the image URLs listed below must have their
paths updated. Colors are in the web-safe palette. */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Theme: BLACK BROWN */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Background image is given; if there is a problem then
the background has a white color.  Default font color is
black; font is sans-serif. */

BODY
{ 
background: black url("images/styles/goldblackgrad.jpg"); 
color: black;
font-family: Arial, Helvetica, sans-serif;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Paragraphs, lists, headers, and definition lists have
a white background and black font in sans-serif.
Be careful to use closing tags in HTML, even with paragraphs,
to avoid style sheet bugs in Netscape. */

P, OL, UL, H1, H2, H3, H4, H5, H6, DT, DD 
{ 
font-family: Arial, sans-serif;
background: white none;
color: black;

}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Unvisited links are black */
a:link 
{
color: black;
}
/* Visited links are brown */
a:visited 
{
color: #996600;  /* brown 153 102 0 */
}    
/* Active links are red */
a:active 
{
color:red; 
}        

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Table elements and headers have a default white
background and black font in sans-serif. */

TD, TH
{ 
font-family: Arial, sans-serif;
background: white none;
color: black;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Line class table elements and headers have a beige strip
background and black font in sans-serif--for Physics header. */

TD.lines, TH.lines
{ 
font-family: Arial, sans-serif;
background: white url("images/styles/level2_04.gif");
color: black;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Stripe class table elements have a yellow background
with black font in sans-serif--for highlighting. */

TH.stripe, TD.stripe
{ 
font-family: Arial, sans-serif;
background: #FFFF99 none; /* yellow 255 255 153 */
color: black;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Sm class table, paragraph, and blockquote
elements have a smaller font, of dark
black color in sans-serif on a white background. */

TD.sm, TH.sm, P.sm, BLOCKQUOTE.sm
{ 
font-family: Arial, sans-serif;
background: white none;
color: black;
font-size: 75%;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Unordered lists start with a solid disc as a bullet. */

UL
{
list-style-type: disc;
}
