body{
    font-family: sans-serif;
    text-align: center;
    background-color: #202020;

    color: white;
    font-size: 13pt;
    font-weight: bold;

    max-width: 100%;
    overflow-x: hidden;
}

a:link {
    color: #00BB00;
}

a:visited {
    color: #00BB00;
}

#img {
    display: inline-block;
}

img {
    width: 40%;
}

.space {
    margin: 5px;
}

.step {
    margin: 7px;
    color: yellow;
}

.button {
    margin-top: 25px;
    height: 34px;
}

.brspace {
	margin-top: 10px;
	margin-bottom: 10px;
	width: 20%;
}

textarea {
    max-width: 95%;
}

input {
    max-width: 95%;
}


.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 285px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.left {
    top: -5px;
    right: 105%;
}

.right {
    top: -5px;
    left: 105%;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}