
	
/* Class/Id Group: Horizontal rollover menu */

nav.menu-top {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: visible; /* Work-around to make sure the menu shows on top over everything, despite being drawn among first on page */
	z-index: 2;
}

nav.menu-top ul, li {
	margin: 0;
	padding: 0;
}

nav.menu-top ul {
	list-style-type: none;
}

nav.menu-top li a, nav.menu-top li p {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;	
	text-decoration: none;
	background-color: black;
	color: white;
	border-left: solid black 5px;
	border-right: solid black 5px;
	border-top: dashed black 2px;
	border-bottom: dashed black 2px;
}

nav.menu-top li a:hover {
	border-left: solid grey 5px;
	border-right: solid grey 5px;
	border-top: dashed grey 2px;
	border-bottom: dashed grey 2px;
	color: grey;
}

ul.menu-horizontal li {
	float: left;
	width: 25%;
}

ul.menu-horizontal li p, ul.menu-horizontal li a {
	line-height: 30px; /* Use line-height to vertically center text, vertical-align has different behavious depending on situation */
}

ul.menu-vertical  {
	position: absolute;
	top: 30px; /* Make sure this matches the horizontal menus line-height! */
	width: 25%;
	margin-left: -75px; /* Make sure this is -1 * half the width of the li */
	/* These next two will be modified via javascript */
	visibility: hidden;
	opacity: 0;
}

span.project-type {
	font-size: 70%;
	font-style: italic;
}

ul#vertical-home {
	left: 0%;
}

ul#vertical-personal {
	left: 25%;
}

ul#vertical-current {
	left: 50%;
}

ul#vertical-complete {
	left: 75%;
}

/* End Group: Horizontal rollover menu */