/* GENERAL SPECS */
/* set bg to black and default text to a large yellow font */
body {
   background-color: black;
   font-size: 130%;
   color: yellow;
}
/* text only style sheet so turn images off */
img {
   display: none;
}
/* --------------------------------------- */
/* ID's */
/* turn off 'text only' layer */
#text_only {
   display: none;
}
/* turn on 'graphics display' layer to allow users to revert back */
#graphics {
   display: block;
   text-align: left;
}
/* align search box to left */
#search {
   text-align: left;
}
/* netscape v4 users only so turn it off */
#statement {
   display: none;
}
/* Increase size of headings in 'main' */
h3 {
   font-size: 150%
}
h4 {
   font-size: 140%
}
/* --------------------------------------- */
/* CLASSES */
/* display the links where images have been turned off */
.hide {
   display: block;
   text-align: left;
}
/* --------------------------------------- */
/* LINKS */

/* normal links */
a {
    font-size: 1em;
	text-decoration: underline;	
	font-weight: normal;
}
a:link {
	color: #00FFFF;
}
a:visited {
	color: white;
}
a:hover {
	color: white;
}

a:active {
	color: white;
}