/* -- NAVIGATION -- */
 
#navigation {
	position: relative;
	clear: both;
 
	white-space: nowrap; /* keep all the tabs in a line */
}
 
/* begin css tabs */
 
#navigation ul.depth-1 {
	padding: 5px 0 5px 20px; /* THIRD number must change with respect to padding-top (X) below */
	
	position: absolute;
	bottom: 0px;
	
	list-style-type: none;
	
/*	font-weight: bold;*/
}
 
#navigation ul.depth-1 li.active-menu-item.top-level {
	display: inline;
	position: relative;
 
	/* move down 1px to cover border-top of #sub-navigation */
	top: 1px;
	padding: 5px 6px 5px 6px; /* FIRST number must change with respect to padding-top (X) above */
	margin: 0 2px 0 2px;
 
	border: 1px solid #bbb; /* be sure to set corresponding border below */
	border-bottom: none;
 
	background: black;
	color: white;
}
 
#navigation ul.depth-1 li.inactive-menu-item.top-level {
	display: inline;
	position: relative;
 
	 /* move down 2px, but decrease padding-bottom so as not to cover border-top of #sub-navigation */
	top: 2px;
	padding: 5px 6px 3px 6px; /* FIRST number must change with respect to padding-top (X) above */
	margin: 0 2px 0 2px;
 
	border: 1px solid #bbb; /* be sure to set corresponding border above */
	border-bottom: none;
 
	background: black;
	color: white;
}

#navigation ul.depth-1 li.top-level a {
	color: #eee;
	text-decoration: none;
}

/* end css tabs */

#sub-navigation {
	min-height: 0.3em;
 
	border-top: 1px solid white;
	background-color: black;
	white-space: nowrap;
}
 
#sub-navigation ul.depth-2 {
	padding: 5px 5px 5px 5px;
	margin: 0 2em 0 2em;
 
/*	font-size: 9pt;*/
	list-style-type: none;
}
 
#sub-navigation ul.depth-2 li {
	display: inline;
 
	padding: 0 5px 0 8px;
	border-left: 1px dotted white;
 
	/* color: white; */
	color: #8EBEBE;
}
 
/* last-child doesn't seem to be supported in IE 5 or Opera, ah well */
#sub-navigation ul.depth-2 li:first-child {
	border-left: none;
}
 
#sub-navigation ul.depth-2 li.selected {
	/* other stuff here? */
}
 
#sub-navigation ul.depth-2 li a {
	padding: 1px 3px 1px 3px;
	/* color: white; */
	color: #8EBEBE;
	text-decoration: none;
}
 
#sub-navigation ul.depth-2 li a:hover {
	text-decoration: underline;
}

