#menu {
	margin: 0px;
	padding: 0px;
	background: #DDD;
}

#menu::after {
	content: "";
	display: block;
	clear: both;
}

#menu > * {
	margin: 10px 5px 0px;
	float: left;
	position: relative;
}

#menu > a {
	border: 1px solid #BBB;
	border-bottom: none;
}

#menu > a:hover, #menu .current {
	background-color: #FFF;
}

#menu select {
	margin-top: 5px;
	min-width: 150px;
}

#menu a {
	cursor: pointer;
	width: 42px;
	height: 42px;
	background-size: 32px 32px;
	background-repeat: no-repeat;
	background-position: center;
	padding-bottom: 10px;
}

#menu .float-right {
	float: right;
}

#menu .tooltip {
	position: absolute;
	top: 50px;
	left: 0px;
	display: none;
	padding: 0px 10px;
	background: #FFC;
	color: #000;
	border: 1px solid #000;
	min-height: 20px;
}

#menu .float-right .tooltip {
	left: auto;
	right: 0px;
}

#menu :hover .tooltip {
	display: block;
}
