* {
	padding: 0;
	border: 0;
	margin: 0;
	
	font-family: "Cambria", serif;
}


/*Highlight*/
hl {
	background-color: #FF8C00CF;
}

.main {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100vh;
}

/*Side border*/
.border {
	min-width: 100px;
	width: 20%;
	height: 100vh;
}

/*Filling of border field*/
.border>div{
	display: flex;
	flex-direction: column;
}
.fill{
	margin: 5px 8% 8% 10px;
	flex-grow: 1;
}
.menu>.fill{
	overflow: auto;
}
.files>.fill{
	overflow-y: auto;
	overflow-wrap:break-word;
}

/*Menu*/
.menu {
	height: 75%;
	
	background: 
		linear-gradient(90deg, #0000 95%, #A9B2C3 100%), linear-gradient(180deg, #026395 95%, #714693 100%);
}
.menu li{
	list-style-position: inside;
	font-size: larger;
	color: #FF8C00;
}
.menu li li{
	list-style-type: none;
	text-indent: 2em;
	font-size: medium;
}
.menu a{
	color: #FF8C00;
	text-decoration: none;
}
.menu li li a{
	color: #FFFFFF;
	text-decoration: none;
}

/*Files*/
.files {
	height: 25%;
	
	background:
		linear-gradient(90deg, #714693 95%, #A9B2C3 100%);
}
.files li{
	list-style-type: none;
	width: 64px;
	height: 80px;
	margin: 5px;
	font-size: 12px;
	overflow: hidden;
	display: inline-block;
}
.files a{
	color: #FAEBD7;
	text-decoration: none;
}
.files img{
	width: 64px;
	height: 64px;
}


/*Main view*/
.content {
	flex-grow: 1;
	background-color: #A9B2C3;
	color: #000000;
	
	overflow-y: auto;
	overflow-wrap:break-word;
	
	display: flex;
	flex-direction: column;
}
.frame {
	flex-grow: 1;
	
	background-color: #A9B2C3;
	color: #000000;
	
	overflow-y: auto;
	overflow-wrap:break-word;
}
.footerLeft{
	position: relative;
	bottom: 0px;
	float:left;
}
.footerRight{
	position: relative;
	bottom: 0px;
	float:right;
}

