*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-size: 16px;
    font-family: 'Segoe UI', 'Source Sans Pro', sans-serif;
}
main {
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}
h1,h2
{
    font-weight: 500;
}
div.header {
    padding: 16px 0px 20px 0px;
    display: flex;
    background-color: #eeeeee;
}

footer {
    float: none;
    padding: 25px 0px 25px 0px;
    width: 100%;
    font-size: 14px;
    background-color: #eeeeee;
    text-align: center;
}
div.pagecontainer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
div.container 
{
    xwidth: 960px;
    width: 780px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
}
div.content
{
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
}
div.content_header
{
	xline-height: 60px;
	font-size: 32px;
    font-weight: 700;
}
div.table {
    display: table;
}

div.row {
    display: table-row;
}

div.cell {
    display: table-cell;
    padding-bottom: 5px;
}

div.cellr {
    display: table-cell;
    text-align: right;
    padding-bottom: 5px;
}

div.cellc {
    display: table-cell;
    text-align: center;
    padding-bottom: 5px;
}
div.button {
    display: flex;
    justify-content: center;
}
ul.menu {
    margin: 31px 0px 0px 0px;
    padding: 0;
    font-size: 14px;
}
li.menu
{
	display: inline-block;
	padding-left: 40px;
	padding-right: 0px;
}
a:link, a:visited {
    color: #13aff0;
    text-decoration: none;
}

a:hover {
    color: #13aff0;
    xtext-decoration: none;
    xborder-bottom: 2px solid;
}
a.button {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #46ad41;
    border-radius: 10px;
    height: 46px;
    width: 190px;
    font-size: 20px;
    line-height: 43px;
}
a.image:hover {
    text-decoration: none;
    border-bottom: 0px;
}
a.menu:link, a.menu:visited {
    color: #000000;
    text-decoration: none;
}
a.menu:hover {
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid;
}
p 
{
    margin-bottom: 20px;
}
input[type="button"], input[type="submit"] {
    width: 80px;
}

input[type="text"], input[type="password"] {
    line-height: 1.5;
}
.grid {
    border-collapse: separate;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    border-spacing: 0px;
}
.grid tr:first-child {
    background-color: #9dc3e0;
    font-weight: bold;
}
.grid tr:first-child td {
    border-top-style: none;
}
.grid tr td:last-child {
    border-right-style: none;
}
.grid td {
    border-top-style: solid;
    border-right-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    padding: 2px 4px 2px 4px;
}


