@font-face {
	font-family: "Vivaldii";
	src: url("/font/VIVALDII.TTF") format("truetype");
}

body {	background-color: #FFF;
	font-family: verdana;
	font-size: 15px;
	margin: 0;
	padding: 0;
	cursor: default;
}

p {
	margin: 0;
	padding: 0;
}

#DivIndexAll {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: min-content auto;
	grid-auto-rows: 15vh min-content 23px auto;
}

#DivIndexHead {
	position: relative;
	background-color: #000;
	background-image: url('/img/Livre_Fond_1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	grid-column: 1/3;
	grid-row: 1;
}

#DivIndexHead>a {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-decoration: none;
}

#DivIndexHead>a>h1 {
	font-family: "Vivaldii";
	font-size: max(35px,11vmin);
	text-align: center;
	color: #FB0;
	margin: -1vh 0 1vh;
	padding: 0;
	text-shadow: 2px 0 5px black,
		-2px 0 5px black,
		0 2px 5px black,
		0 -2px 5px black;
}

#DivIndexLogin {
	grid-column: 1/3;
	grid-row: 2/5;
	background: #FFF;
}

#DivIndexLogin>form {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 150px 200px 100px 1fr;
	grid-auto-rows: 1fr 25px 25px 25px 2fr;
	grid-gap: 5px;
}

#DivIndexLogin>form>label:nth-of-type(1) {
	grid-column: 2;
	grid-row: 2;
	text-align: right;
	line-height: 23px;
}

#DivIndexLogin>form>input:nth-of-type(1) {
	grid-column: 3;
	grid-row: 2;
}

#DivIndexLogin>form>label:nth-of-type(2) {
	grid-column: 2;
	grid-row: 3;
	text-align: right;
	line-height: 23px;
}

#DivIndexLogin>form>input:nth-of-type(2) {
	grid-column: 3;
	grid-row: 3;
}

#DivIndexLogin>form>input:nth-of-type(3) {
	grid-column: 3;
	grid-row: 4;
}

#DivIndexLogin>form>p {
	grid-column: 3;
	grid-row: 5;
}

#DivIndexMenu {
	grid-column: 1;
	grid-row: 2;
	background-color: #2A2A2A;
	color: #FFF;
	height: 20px;
	padding: 5px;
	text-align: center;
}

#DivIndexMenu>div {
	display: inline-block;
	margin: 0 5px;
	height: 100%;
}

#DivIndexMenu>div>a>img {
	height: 100%;
	filter: invert(1);
}

#DivIndexGroup {
	position: relative;
	grid-column: 1;
	grid-row: 3;
	background-color: #111;
	color: #88F;
	text-align: center;
	font-weight: bold;
	padding: 2px 10px;
}

#DivIndexGroup>p {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 12px;
	line-height: 19px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#DivIndexFolders {
	grid-column: 1;
	grid-row: 4;
	background-color: #444;
	color: #FFF;
	overflow: hidden auto;
	scrollbar-width: thin;
	white-space: nowrap;
	padding: 5px;
	resize: horizontal;
	min-width: 90px;
	width: 22vw;
	max-width: calc(100vw - 350px);
}

#DivIndexFolders>div {
	background-color: #444;
	height: 25px;
	border-radius: 5px;
	margin: 3px;
}

#DivIndexFolders>div.active {
	background-color: #557;
}

#DivIndexFolders>div:hover {
	background-color: #555;
	cursor: pointer;
}

#DivIndexFolders>div>a {
	color: #FFF;
	text-decoration: none;
}

#DivIndexFolders>div>a>p {
	height: 100%;
	padding: 0 8px 0 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#DivIndexFolders>div>a>p>img {
	height: 50%;
	margin: 6px 10px 0 5px;
	transform: scale(200%);
}

#DivIndexNavi {
	grid-column: 2;
	grid-row: 2;
	background-color: #555;
	color: #FFF;
	padding: 0 10px;
	display: flex;
	justify-content: left;
	align-items: center;
	overflow: clip;
	white-space: nowrap;
	font-size: 12px;
}

#DivIndexNavi>p {
	height: 20px;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 18px;
}

#DivIndexNavi>p>a>img {
	height: 18px;
	filter: invert(1);
}

#DivIndexNavi>p>a {
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
}

#DivIndexNavi>p>a:hover {
	text-decoration: underline 1px;
}

#DivIndexHeaders {
	grid-column: 2;
	grid-row: 3;
	background-color: #88C;
	color: #111;
	font-size: 12px;
	line-height: 17px;
	padding: 3px 0 3px 10px;
	display: grid;
	grid-template-columns: 43px auto 80px 110px;
	column-gap: 10px;
}

#DivIndexHeaders>div {
	display: inline-block;
	border-left: solid 1px #AAD;
	margin-left: -4px;
	padding-left: 5px;
}

#DivIndexHeaders>div:nth-of-type(1) {
	border-left: 0;
}

#DivIndexHeaders>div:nth-of-type(3),
#DivIndexHeaders>div:nth-of-type(4) {
	text-align: center;
}

#DivIndexInclude {
	position: relative;
	grid-column: 2;
	grid-row: 4;
	background-color: #EEF;
	overflow: auto;
	scrollbar-width: thin;
}

#DivIndexInclude>.message {
	margin: 10px 0;
	text-align: center;
	text-indent: unset
}

#DivIndexInclude>#DivAccount {
	margin: 15px;
}

#DivIndexInclude>#DivAccount>.section {
	font-weight: bold;
	text-decoration: underline;
	margin: 10px;
	white-space: nowrap;
}

#DivIndexInclude>#DivAccount>.labelinput {
	position: relative;
	height: 30px;
}

#DivIndexInclude>#DivAccount>.labelinput>label {
	position: absolute;
	width: 195px;
	text-align: right;
	line-height: 20px;
}

#DivIndexInclude>#DivAccount>.labelinput>input {
	position: absolute;
	left: 200px;
	width: 200px;
	box-sizing: border-box;
}

#DivIndexInclude>#DivAdmin {
	overflow: visible;
	min-height: 100%;
}

#DivIndexInclude>#DivAdmin>.headers {
	white-space: nowrap;
	padding: 0 10px;
}

#DivIndexInclude>#DivAdmin>.headers>div {
	background: #FFF;
	position: relative;
	display: inline-block;
	width: 200px;
	height: 130px;
}

#DivIndexInclude>#DivAdmin>.headers>div>p {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: bold;
}

#DivIndexInclude>#DivAdmin>.headers>.Vheader {
	width: 55px;
}

#DivIndexInclude>#DivAdmin>.headers>.Vheader>p {
	position: absolute;
	top: 0;
	text-align: left;
	writing-mode: sideways-lr;
	overflow: hidden;
	white-space: pre-line;
}

#DivIndexInclude>#DivAdmin>.account {
	background: #DDF;
	padding: 5px 10px;
	white-space: nowrap;
}

#DivIndexInclude>#DivAdmin>.account:nth-of-type(2n) {
	background: #CCF;
}

#DivIndexInclude>#DivAdmin>.account>div {
	background: transparent;
	width: 55px;
	display: inline-block;
	overflow: auto;
}

#DivIndexInclude>#DivAdmin>.account>.inputs,
#DivIndexInclude>#DivAdmin>.account>.inputs>input,
#DivIndexInclude>#DivAdmin>.account>.inputs>select {
	width: 200px;
	box-sizing: border-box;
}

#DivIndexInclude>#DivAdmin>.account>div>p {
	background: #FFF;
	text-align: center;
	cursor: pointer;
}

#DivIndexInclude>.item {
	background-color: #CCF;
	padding: 5px 0 5px 10px;
}

#DivIndexInclude>.item:nth-of-type(2n) {
	background-color: #DDF;
}

#DivIndexInclude>.item>a {
	display: grid;
	grid-template-columns: 3px 30px auto 80px 100px;
	grid-template-rows: 30px;
	column-gap: 10px;
	color: #000;
	text-decoration: none;
}

#DivIndexInclude>.item:hover {
	background-color: #BBF;
	cursor: pointer;
}

#DivIndexInclude>.item>a>div:nth-of-type(1) {
	grid-column: 1;
	margin-right: -5px;
	margin-left: -5px;
	text-align: center;
	border-radius: 8px;
}

#DivIndexInclude>.item>a>.options:hover {
	background: #FFF;
	box-shadow: 0 0 8px white;
}

#DivIndexInclude>.item>a>div:nth-of-type(1)>img {
	margin: 5px 0 0;
	max-height: 20px;
}

#DivIndexInclude>.item>a>div:nth-of-type(2) {
	grid-column: 2;
	width: 100%;
	height: 100%;
}

#DivIndexInclude>.item>a>div:nth-of-type(2)>img {
	max-width: 100%;
	max-height: 100%;
}

#DivIndexInclude>.item>a>div:nth-of-type(3) {
	position: relative;
	grid-column: 3;
}

#DivIndexInclude>.item>a>div:nth-of-type(3)>p {
	position: absolute;
	left: 0;
	right: 0;
	line-height: 30px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#DivIndexInclude>.item>a>div:nth-of-type(4) {
	grid-column: 4;
}

#DivIndexInclude>.item>a>div:nth-of-type(4)>p {
	line-height: 30px;
	text-align: right;
}

#DivIndexInclude>.item>a>div:nth-of-type(5) {
	grid-column: 5;
}

#DivIndexInclude>.item>a>div:nth-of-type(5)>p {
	line-height: 30px;
}

#DivFloatingMenuOverlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#DivFloatingMenu {
	background: #DDD;
	position: fixed;
	border: solid 1px #AAA;
}

#DivFloatingMenu>p {
	font-size: 13px;
	padding: 2px 5px;
}

#DivFloatingMenu>p:hover {
	background: #FFF;
	cursor: pointer;
}
