﻿* {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

body {
	background-color: white;
	background-repeat: no-repeat;
	background-position: center top;
}

header {
    border-bottom: 1px solid rgb(151, 176, 211);
    margin: 0px 20px;
    padding: 10px;
    padding-top: 20px;
    height: 75px;
    display: flex;
    align-items: center;
}

header .title {
    color: rgb(135, 135, 135);
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: bold;
}

header .logo {
    margin-left: auto;
    height: 55px;
}

header .logo img {
    height: inherit;
}

footer {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: auto;
    height: 65px;
}

footer a {
    margin-right: 10px;
    margin-left: 10px;
    width: auto !important;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

footer > #version {
    float: right;
    margin-right: 18px;
    margin-left: auto;
    color: #aaa;
}

// old

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: underline;
}

/*#messagescreen {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

#message {
    display: none;
    position:absolute;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    top: 0;
    z-index: 10000;
    // padding: 1em 1em 4em 1em;
    // color: #ddd;
    max-width: 40%;
    min-width: 200px;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: rgba(0,0,0,0.7) 0 0 28px;
    background: #f1f1f1;
	// background: -moz-linear-gradient(45deg, #676C6F 0%,#ADB3BB 100%);
	// background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#676C6F), color-stop(100%,#ADB3BB));
	// background: -webkit-linear-gradient(45deg, #676C6F 0%,#ADB3BB 100%);
	// background: -o-linear-gradient(45deg, #676C6F 0%,#ADB3BB 100%);
	// background: -ms-linear-gradient(45deg, #676C6F 0%,#ADB3BB 100%);
	// background: linear-gradient(45deg, #676C6F 0%,#ADB3BB 100%);
	// filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#676C6F', endColorstr='#ADB3BB',GradientType=1 );
}
*/
// #msgbuttons {
//     position: absolute;
//     right: 1em;
//     bottom: 1em;
// }

// #msgbuttons > button {
//     border: none;
//     margin-left: 1em;
//     padding: 7px;
//     background-color: #ccc;
//     border-radius: 5px;
//     color: black;
//     cursor: pointer;
//     /*outline: none;*/
//     font-weight: bold;
//     transition: color 0.3s;
//     min-width: 4em;
// }

// #msgbuttons > button:hover {
//     color: white;
// }