/** This file contains CSS style for a menu with the following features:
 *
 *		o All text links
 *		o Appear along the left margin
 *		o Allows text to flow along the right
 *		o No appearance difference between visited and non-visited links
 */

/** Top-level DIV container for naviation links
 *
 *	Places the links on the left margin allowing text to be on the right.
 */
div.navigate {
  float: left;
  display: block; 
  font-size: 90%;
  line-height: 1;
  text-align: center;
  margin-top: 2em;
  margin-right: 2em;
  margin-left: 2em;
  width: 10em;
}

/** use this class for a heading or separator in the fixed menu.
 *	e.g.: <div>New section</div>
 */
.navigate > div {
	font-style: italic;
	margin-bottom: 1em;
}

/** Class for each anchor in the links.
 */ 
div.navigate a, div.banner em {
  display: block;
  /* width: 100%; */
  margin-bottom: 1em;
}

/** Pseudo class for the decoration of each link.
 * 
 *	No difference in visited and non-visited links.
 */
div.navigate a:link,
div.navigate a:visited,
div.navigate a:hover {
  color: blue;
  text-decoration: none;
}

/** Pseudo class for decoration of hovered link.
 *
 *	Font is bold when hovering. 
 */
div.navigate a:hover {
  font-weight: bold;
}

/** Use this class for a disabled link: 
 *	e.g.: <div class="navigate">Nowhere</div>
 */
.navigate disabled {
	color: gray;
}
