body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
}
	
/* Header + Footer */
header, footer {
    background: #20232a;
	/*background: #101060;*/
    color: white;
    padding: 15px;
    text-align: center;
}

/*Migatec logo*/
span.logocolor {
	/*color: LightSkyBlue;*/
	/*color: #a0e0ff;*/
	color: #C0f0ff;
	font-style: italic;
}	
	
/* Layout grid */
.layout {
    display: flex;
    min-height: calc(100vh - 120px);
}
/* Sidebar */
.sidebar {
    width: 170px;
    background: #f0f0f0;
    padding: 10px;
    border-right: 1px solid #ddd;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar li {
    margin: 10px 0;
}
.sidebar a {
    color: #333;
    text-decoration: none;
	 font-weight: bold;
}
.sidebar a:hover {
    color: #0077cc;
}
/* Main content */
.content {
    flex-grow: 1;
    padding: 20px;
    background: white;
	max-width: 60em
}
	
/* Selected link*/
.current {
    background:#ff0000;
    padding:0 15px;
}

