@font-face {
    font-family: Typewriter;
    src: url('../MonospaceTypewriter.ttf');
}
button {
	font-family: Typewriter;
	font-size: 20px;
	display: inline-block
}
h1 {
	font-family: Typewriter;
	font-size: 30px;
	font-weight: bold;
	margin: 0
}
h2 {
	font-family: Typewriter;
	font-size: 25px;
	font-weight: bold;
	margin: 0
}
h3 {
	font-family: Typewriter;
	font-size: 20px;
	font-weight: bold;
	margin: 0
}

.normal {
    background: #F2F2F2;
	color: #000000;
	font-weight: bold;
    border: 2px solid #4980CC;
	border-radius: 4px;
	transition-duration: 0.2s
}
.normal:hover {
    color: #FFF;
    background: #4980CC;
	cursor: pointer
}

[ach-tooltip] {
    position: relative;
    z-index: 2
}
[ach-tooltip]:before,
[ach-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
	text-shadow: none !important;
    z-index: 2
}
[ach-tooltip]:before {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 5px;
    margin-left: -50%;
    padding: 7px;
    width: 180px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 5%, 0.9);
    color: #fff;
    content: attr(ach-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    transition-duration: .5s;
}
[ach-tooltip]:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-bottom: 5px solid #000;
    border-bottom: 5px solid hsla(0, 0%, 5%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
    transition-duration: .5s;
}
[ach-tooltip]:hover:before,
[ach-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}