

body{
	background-color: black;
        padding: 0;
	margin: 0;
	font-family: "Roboto Regular", Monaco, monospace;
}
pre{
	font-family: "Roboto Black", Monaco, monospace;
	
	white-space: pre-wrap;       /* CSS 3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

a{
	color: white !important;
}

.menu{
	position: fixed;
	bottom: 0;
	background-color: grey;
	/*padding-bottom: 3px;*/
	/*padding-top: 3px;*/
	/*padding-left: 3px;*/
	width: 100%;
}

.menu a{
	background-color: #06989A;
	padding: 2px;
	text-decoration: none;
	margin-right: 4px;
	display: inline-block;
}

.header{
	background-color: grey;
	color: black;
        width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
}

.header div{
	display: inline-block;
}
.header div.left{
	width: 50%;
}
.header div.first{
	margin-left: 10px;
	margin-right: 5px;
}

.page{
	background-color: black;
        color: white;
        padding-bottom: 50px;
	padding-left: 50px;
	padding-right: 50px;
}

img.cert{
	max-width: 100px;
	max-height: 100px;
}




.cursor {
	background-color: white;

    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1.3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1.3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    25% { opacity: 1.0; }

    26% { opacity: 0.0; }
    74% { opacity: 0.0; }

    75% { opacity: 1.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    25% { opacity: 1.0; }

    26% { opacity: 0.0; }
    74% { opacity: 0.0; }

    75% { opacity: 1.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    25% { opacity: 1.0; }

    26% { opacity: 0.0; }
    74% { opacity: 0.0; }

    75% { opacity: 1.0; }
    100% { opacity: 1.0; }
}
