/* nova3-3.css
 * This is a brand new implementation (Aug 2005) of the old
 * style. It has cleaner, better commented code, and behaves
 * better.
 *
 * This is where general declarations go.
 */
body {
	background: black url("background.jpg");
	color: silver;
	font: bold smaller sans-serif;
	/*font-size: 80%*/
}

code { font-size: 110%; }

a {
	color: gold;
	text-decoration: none;
}
a:hover { color: yellow; }
a:visited { color: goldenrod; }

#info h1 { display: inline; }

#content {
	margin-left: 152px;
	width: auto;
	padding: 5px;
	border-left: solid 2px gold;
}

* html #content {
	float: left;
	margin-left: 0px;
	height: 1%;
}

#clear {
	visibility: hidden;
}

/* Our contact information is currently hidden. */
#contact { display: none; }

/*
 * Move our copyright notice to the bottom right.
 */
#copy {
	font-size: smaller;
	padding: 3px;
	text-align: right;
	clear: both;
}

/*
 * Last but not least, this is for the navbar.
 *  This is based on Bieler Batiste's list at
 *   http://css.maxdesign.com.au/listamatic/ (vertical12.htm)
 * Many thanks also to Eric Meyer (www.meyerweb.com/eric), in
 * particular for this site's general style.
 */
#info {	border-bottom: solid 2px gold; }


#nav li { display: inline; } /* for IE5 and IE6 */

#nav {
	position: absolute;
	top: auto;
	width: 140px;
	font-size: 15px;
	margin: 0 -2px 0 0;
	padding: 2px 12px 0 0;
	border-right: 2px gold solid;
}
* html #nav {
	position: static;
	padding-right: 2px;
	float: left;
}


#nav a {
	width: 99.99%; /* extend the sensible area to the maximum with IE5 */
	display: block;
	background: #555;
	border-bottom: 1px #000 solid;
	text-decoration: none;
	color: silver;
	padding: 5px;
}
#nav #here a { background: #444; color: silver; }
#nav a:visited { background: #555; color: silver; }
#nav a:hover { background: #666; color: silver; }
#nav #here a:hover { background: #666; color: silver; }

#nav span { display: none; }
#nav a:hover span {
	display: block;
	position: absolute;
	top: 50ex;
	left: 6px; /*15px*/
	width: 140px;
	font: 10px verdana, sans-serif;
	text-align: center;
}
* html #nav a:hover span {
	left: 15px;
	top: 61ex;
} /* = non IE value + 3ex or 15px (umm... doc error? try 11ex) */

