/* NEVERWONDER COLORS ARE
ffcc00 = YELLOW
CC6600 = ORANGE
191970 = BLUE
ffffff = WHITE
f5f5f5 = ALMOST WHITE (TEXT)
A9A9A9 = DARK GRAY (ACTIVE LINK)
808080 = GRAY (VISITED LINK)
000000 = BLACK */

/* THIS IS THE CSS FOR THE NAVIGATION MENU. IT USES
DIFFERENT FONT AND LINK COLORS AND REQUIRES BORDER 
PARAMETERS, TOO.
EACH MENU LINK USES THE CLASS "menu_text" */

.menu {
color: #ffcc00;
text-decoration: none;
text-align: center;
font-weight: bold;
font-size: 12px;
background: #191970;
border-top: solid 1px #ffcc00;
border-right: solid 1px #ffcc00;
border-bottom: solid 1px #ffcc00;
}

.menuhome {
color: #ffcc00;
text-decoration: none;
text-align: center;
font-weight: bold;
font-size: 12px;
background: #696969;
border-top: solid 1px #ffcc00;
border-right: solid 1px #ffcc00;
border-bottom: solid 1px #ffcc00;
}

/* LINK - VISITED - HOVER - ACTIVE */

a.menu_text:link {color: #ffcc00; text-decoration: none;}
a.menu_text:visited {color: #ffcc00; text-decoration: none;}
a.menu_text:hover {color: #cc6600; text-decoration: underline;}
a.menu_text:active {color: #cc6600; text-decoration: underline;}

.menu_m_sub { color: #f5f5f5; text-indent: 10px; }
.menu_sub { color: #ffcc00; text-indent: 10px; }


/* THE FOLLOWING LINK ITEMS ARE NECESSARY WITH THE OLD SITE CODING.
UNTIL THE SITE IS RE-CODED WITH EACH LINK HAVING ADEFINED CLASS,
THESE ITEMS GIVE THE MENU LINKS THEIR APPROPRIATE COLOR
DELETE THEM ONLY AFTER SITE REBUILD AND VERIFY. */

.menu a {
color: #ffcc00;
text-decoration: none;
text-align: center;
font-weight: bold;
font-size: 12px;
}

.menuhome a {
color: #ffcc00;
text-decoration: none;
text-align: center;
font-weight: bold;
font-size: 12px;
}

.menu a:hover {
color: #cc6600;
text-decoration: underline;
}

.menuhome a:hover {
color: #cc6600;
text-decoration: underline;
}
