﻿* {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
a {
	text-decoration: none;
}
#MainContentStyle {
    width: 100%;
    margin: 20px auto auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 11pt;
    text-align: justify;
}
#Wrapper {
	height: 100vh;
	width: 100vw;
	background: radial-gradient(ellipse at center, #bae0f7 0%,#9fcaec 100%);
}
#SideBar {
    display: none;
	position: fixed;
	top: 89px;
	left: 0;
	width: 30%;
	height: calc(100vh - 89px);
	background: orange;
}
#MainPage {
	margin-left: 0;
	width: 100%;
	height: calc(100vh - 80px);
    margin-top: 40px;
	
}
#Header {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
}
#Logo {
    height: 40px;
	width: auto;
	float: none;
    margin: 0 auto;
    position: relative;
    display: table;
}
#MobileMenu{
    display: none;
}
#Menu {
	position: relative;
    height: 100%;
    width: 870px;
    margin: 0 auto;
    display: block;
    float: none;
    padding-left: 0;
    list-style: none;
}
.MenuItem {
	height: 100%;
	display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
	color: #DF8B18;
    font-size: 120%;
	text-shadow: 0px 0px 20px #4264A9;
	transition: background-color 0.5s;
	cursor: default;
    border-radius: 5px;
}
.MenuItem:hover{
	background-color: #4264A9;
}
#SelectedItem{
	background-color: #4264A9;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
}
.Paw{
	height: 100%;
}
.MenuItemText{
	position: relative;
	top: -12px;
	display: inline-block;
	margin-right: 5px;
}
#PageContent {
	height: calc(96vh - 80px);
	width: 96%;
	word-wrap: break-word;
	overflow-y: auto;
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 2vh;
	padding-bottom: 2vh;
    margin-top: 0;
    float: left;
}