/* feel free to play with the values here. if you go to:

      http://www.w3.org/TR/CSS21/

   and just search the page for the different tags here (like "font-family"), you can see
   some other acceptable values.
*/

/* properties for every document, like common font size and stuff. */
body {
	font-family: "Times, 65 Helvetica Medium, Verdana, Arial, Helvetica, sans-serif";
	font-size: 6pt;
}

/* properties for the nav frame;
   right now the only one is white-space:nowrap, which just turns off word wrapping. */
body.nav {
	white-space: nowrap;
}

/* properties for content frames, nothing really. */
body.content {
}

/* copyright frame. try changing the background color. */
body.copyright {
/*	background: #E0E0E0;*/
	white-space: nowrap;
}

/* copyright text. */
span.copyright {
	font-weight: normal;
	font-variant: normal;
}

/* title on nav page (reads "Project Directory"), you can turn off small caps. */
div.nav_title {
	font-weight: normal;
	font-variant: normal;
	margin-bottom: 1px;
}

/* nav links. i made the line spacing smaller than usual. */
div.nav_link {
	line-height: 1.15em;
}

/* this turns off the default underline that normally appears under links. */
div.nav_link a {
	text-decoration: none;
}

/* override browser default color for unvisited links, set it black. */
div.nav_link a:link {
	color: #FFFFFF;
}

/* visited links are a little gray. */
div.nav_link a:visited {
	color: #FFFFFF;
}

/* this is what happens when you put the mouse over the links. text turns white and
 * background turns black. */
div.nav_link a:hover {
	color: black;
	background: white;
}

/* title on content pages. */
div.content_title {
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	margin-bottom: 1ex;
}

/* text on dummy content pages. not really anything special. */
div.content_text {
}

/* subject of the different notes on the notes page. */
div.note_header {
  font-weight: bold;
  margin-bottom: 1ex;
}

/* note paragraph text on notes page. */
div.note {
  margin-left: 1ex;
  margin-bottom: 2ex;
  width: 100ex;
}

/* items in the page list on the notes page. try removing this and see what happens. */
div.note ul {
  border: 0;
  padding: 0;
  margin: 0;
}
