/* 
 * File: /css/menuHorizontal.css
 * Description: CSS style rules for horizontal top menu
 * 
 * Copyright 2017-2018 Per Stenebo
 * 
 * Updates:
 * 2018-01-01: Show top menu and left menu simultaneously
 * 2017-12-31: Created by Per Stenebo
*/

/* Sub-top section */
#subHeader {
	display: inline;
}

#hormenu {
	margin: 5px;
	text-align: center;
	background-color: #99FF99;
	border-right: 3px solid #339966;
	border-left: 1px solid #339966;
	border-top: 1px solid #339966;
	border-bottom: 3px solid #339966;
	border-radius: 5px; /* Breaks validation */
}

div.menuLevel {
	margin: 2px;
	float: left;
}

div.menuUnselected, div.menuParent, div.menuSelected  {
	margin-right:1.0em;
	float: left;
	padding: 3px;
}

div.menuParent, div.menuSelected  {
	font-weight: bold;
	text-decoration: underline;
}

div.menuParent {
	/*background-color: #EEEEEE;*/
}

div.menuSelected {
	background-color: #FFFF99;
	border-radius: 3px;
}

