/* Text-properties */
#top .menu a {
	position: relative;
	display: inline-block;
	padding: 0.6rem 1.6rem;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5rem;
	margin: 0 5px;
	text-decoration: none;
}

#top .menu a.rounded {
	border-radius: 10px;
}

#top .menu a.halfrounded {
	border-radius: 10px 10px 0 0;
}

#top .menu a.large {
	font-size: 2.5rem;
}

#top .menu a.small {
	font-size: 1rem;
	padding: 0.6rem 1rem;
}

#top .menu a.wide {
	padding: 0.6rem 3rem;
}

#top .menu a.bold {
	font-weight: bold;
}

#top .menu a.italic {
	font-style: italic;
}

#top .menu a.shadow {
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

#top .menu a.hard-shadow {
	text-shadow: 1px 2px rgba(0,0,0,0.4);
}

#top .menu a.underline:hover {
	text-decoration: underline;
}

#top .menu a:hover {
	transition: 0.5s;
}

#top .menu a.smalltext {
	font-size: 1rem;
}

#top.small-top .menu.bottom a {
	font-size: 1rem !important;
}

/* Right-aligned */
#top .menu.right {
	right: 0;
	left: 0;
	text-align: right;
	float: right;
}

/* Center-aligned */
#top .menu.center {
	right: 0;
	left: 0;
	text-align: center;
}

/* Left-aligned */
#top .menu.left {
	left: 0;
	right: 0;
	text-align: left;
	float: left;
}

/* Top-valigned */
#top .menu.top {
	top: 10px;
}

/* Middle-valigned */
#top .menu.middle {
	top: 35%;
	position: absolute;
}

/* Bottom-valigned */
#top .menu.bottom {
	position: absolute;
	bottom: 0;
}

#top .menu.free {
	top: 130px;
	position: absolute;
}

#top.small-top .menu.free {
	top: 80px;
}

#top.small-top .menu.bottom {
	/*bottom: 0 !important;*/
	padding: 0 !important;
	margin: 0 !important;
}

@media only screen and (max-width: 64rem) {
	#top .menu.right,
	#top .menu.left,
	#top .menu.center {
		right: 0;
		left: 0;
		text-align: right;
		float: right;
	}
}