.navalt { display: none; }

#nav {
  position: absolute;
  top: 3px;
  left: 110px;
}

/*
 * ----- LIST STYLES -----
 */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
  
	background-color: #ddd;
	border-right: solid 1px #666;
	border-bottom: solid 1px #666;
	border-top: solid 1px #eee; 
	border-left: solid 1px #eee;
}

#nav li ul { /* second-level lists */
  width: 15em;
}

/* lists nested under hovered list items */
#nav li:hover ul, #nav li.over ul {
	display: block;
}

/*
 * ----- LIST ITEM STYLES -----
 */
#nav li {
  display: inline;
  margin: 1px;
  padding: 1px;
  text-indent: 0;
}

#nav ul>li {  /* for non-IE browsers */
  display: block;
}

#nav li.top {
  float: left;
  position: relative;
  padding: 0 4px 0 3px;
  margin: 1px;
  font-weight: bold;
  color: white;
  background-color: #bbb;
}

/* button-press effects for the top-level items */
#nav li.top:hover, #nav li.over {
  background-color: #999;
  margin: 0;
  border-right: solid 1px #eee; 
  border-bottom: solid 1px #eee;
  border-top: solid 1px #666;
  border-left: solid 1px #666;
}

/*
 * ----- LINK STYLES -----
 */
#nav a:link, #nav a:visited, #nav a:hover, #nav a:active {
  display: block;
  color: black;
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  white-space: nowrap;
}

#nav li li a:link, #nav li li a:visited, #nav li li a:hover, #nav li li a:active {
  display: block;
  margin: 0;
  padding: 1px 1px 1px 4px;
}

/* highlight current selection */
#nav li li a:hover, #nav li li:hover {
  background-color: #999; 
}

#nav a.restricted:link, #nav a.restricted:visited, #nav a.restricted:hover, #nav a.restricted:active {
  font-style: italic;
  color: #400;
}

/*
 * ----- FLYOUT STYLES -----
 */

.flyout, .flyout ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
	/*visibility: none;*/
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #eeeeee;
	border-right: solid 1px #666;
	border-bottom: solid 1px #666;
	border-top: solid 1px #eee; 
	border-left: solid 1px #eee;
}

.flyout li a:link, .flyout li a:visited, .flyout li a:hover, .flyout li a:active {
	display: block;
	margin: 0;
	padding: 1px 1px 1px 4px;
  color: black;
  background-color: #eeeeee;
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  white-space: nowrap;
}

.flyout li a:hover, .flyout li:hover {
	background-color: #3399cc; 
	color: #ffffff;
}

.shade{background-color: #D8D8D8;} 
.columnHeader{color: #3399cc; font-weight: bold;} 
