html {
    font-size: 62.5%;
    line-height: 1.15;
	height: calc(100% + 1px);
}

html, body {
    width: 100%; 
    height:100%;
    margin: 0;
    padding:0;
    border:0;
}

body {
    font-family: 'Neue Haas Grotesk W01 Disp',Times,Arial,sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: rgb(230, 230, 230);
    min-width: 900px;
    padding:90px 0 0 10px;
    margin-bottom: 1px;
}

/************* header **************/
.mainheader {
	padding:0 20px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 555;
    border-bottom: 2px solid rgb(230, 230, 230);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.mainheader a.logo {
    padding:15px 0;
}

.headerlogo {
    background-image: url("../img/Logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 269px;
    height: 48px;
}

.mainheader ul {
    display: flex;
    margin:0;
    white-space: nowrap;
    margin-left: auto;
}

.mainheader ul li {
    list-style-type: none;
    padding:0  1rem;
    transition: border-color .2s ease-in-out;
    position: relative;
}

.mainheader ul li:hover:after {
    border-bottom: 2px solid rgb(0, 0, 0);
    content:'';
    position: absolute;
    bottom:-28px;
    left:0;
    right:0;
}
.mainheader ul li i.fakeRole {
	background: orange;
	border: 5px solid orange;
	margin: -5px;
	border-radius: 5px;
}

[data-doc=menu_item] > a:hover {
    top: -2px;
}

[data-doc=menu_item].selected {
    font-weight: 700;
}

/************* SUBNAVI **************/
ul.subNavi{
    padding:0 10px;
    background: #fff;
    display: block;
    width:calc(100% + 10px);
    list-style-type: none;
    margin:-19px -10px 10px -10px;
}

.subNavi li {
    text-decoration: none;
    list-style: none;
    display: inline-block;
    padding: 10px;
    font-size: 1.8rem;
    border-bottom: 2px solid rgb(230, 230, 230);
    margin-bottom: -2px;
    transition: border-color .2s ease-in-out;
}

.subNavi li:hover{
	border-bottom-color:#000;
}

/************* MESSAGES **************/
div.message pre{
	font-size: 10px;
	color: black;
}
div.message p{
	font-size: 22px;
	color: black;
}
div.message div p.message:before {
	font-family:"Font Awesome 5 Pro";
	font-weight: bold;
	display: inline-block;
	margin-right: 10px;
}

div.message div.confirm {
	border-bottom: 2px solid green;
}
div.message div.confirm p.message:before {
	color: green;
	content: '\f14a';
}


div.message div.warning {
	border-bottom: 2px solid orange;
}
div.message div.warning p.message:before {
	color: orange;
	content: '\f071';
}
