/* Linkbar style */

/* Page structure:
Wrapper
-Header
--Logo image
--Logo background
--Linkbar
-Content
--H1 Page name
--H2.contents Contents (optional)
---UL list of sections
----UL list of subsections where found
-----etc
--HR (if contents are displayed)
--H2.section Section
---H3 Subsection (if found)
----H4 Subsubsection (if found)
-----etc
--Update
--Footer


-p
-img
-span.left
-span.right

*/

#linkbar {
	background: black;
	color: white;
	border-collapse: collapse;
	table-layout: fixed;
	min-height: 1.2em;
}

#linkbar .link>a {
	text-align: center;
}

#linkbar .link a {
	display: block;
	font-weight: bold;
	white-space: nowrap;
}

#linkbar .link a:link,
#linkbar .link a:visited {
	color: white;
	font-size: 11pt;
}

#linkbar .link a:hover {
	color: #00ff22;
}

/* Menus */

#linkbar .link .menu {
	margin: 0px;
	padding: 0px;
	border: 1px solid silver;
	border-left-width: 4px;
	position: absolute;
	display: none;
}

#linkbar .link .menu a,
#linkbar .link .menu a:visited,
#linkbar .link .menu a:link {
	padding-left: 0.8em;
	padding-right: 0.6em;
	font-weight: normal;
	background: white;
	text-align: left;
	color: black;
	white-space: nowrap;
}

#linkbar .link .menutop:hover {
	color: yellow;
}

#linkbar .link .menu a:hover {
	background: #444444;
	color: white;
}

#linkbar .link a:hover+.menu,
#linkbar .link .menu:hover {
	display: block;
}