/*
 * Menu Bottom to Top - jQuery Plugin
 * version:1.1 (20/02/2015)
 * @requires jQuery v1.11.0 or later
 * Author URI:http://www.mjap.fr/
 */
/* menu.css (variante avec transition)
 *	#menu {
 *		height:xxpx;
 *		position:fixed;
 *		...
 *  }
 * Html
 *	<nav id="menu">
 *		<a href="index.html">Accueil</a>
 *		...
 *	</nav>
 */   

#menu {
	width:100%;
	height:auto;
	background-color:rgba(0, 0, 0, 0.6);
    margin:0 auto;
    text-align:center;
	z-index:9999;
	position:fixed;
}
#menu a {
	display:inline-block;
	font-size:87.5%;			/* 14px */
	line-height:1.71428571;
	color:#fff;
	text-decoration:none;
	padding:5px 1%;
}
#menu a:hover {
	background-color:rgba(0, 0, 0, 0.3);
}