/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 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: GREEN GREEN */

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

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

BODY
{ 
background: white url("/images/styles/apparatus2.jpg"); 
color: #003333; /* dark green 0 51 51 */
font-family: Arial, Helvetica, sans-serif;
}

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

/* Paragraphs, lists, headers, and definition lists have
a white background and dark green 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: #003333; /* dark green 0 51 51 */

}

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

/* Unvisited links are dark green */
a:link 
{
color: #003333; /* dark green 0 51 51 */
}
/* Visited links are moss */
a:visited 
{
color: #669999;  /* moss 102 153 153 */
}    
/* Active links are red */
a:active 
{
color:red; 
}        

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

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

TD, TH
{ 
font-family: Arial, sans-serif;
background: white none;
color: #003333; /* dark green 0 51 51 */
}

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

/* Line class table elements and headers have a beige strip
background and dark green 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: #003333; /* dark green 0 51 51 */
}

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

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

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

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

/* Sm class table, paragraph, and blockquote
elements have a smaller font, of dark
green 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: #003333; /* dark green 0 51 51 */
font-size: 75%;
}


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

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

UL
{
list-style-type: disc;
}
