﻿* {
	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 - 40px);
    margin-top: 0;
	
}
#Header {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
}
#Logo {
    display: none !important;
    height: 40px;
	width: auto;
	float: none;
    margin: 0 auto;
    position: relative;
    display: table;
}
#MobileMenu{
    height: 40px;
    position: relative;
    display: block;
    border-radius: 5px;
    background-image: url('../Images/Logo_Main.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% center;
}
#Menu {
	position: relative;
	left: 0;
	height: 100%;
    width: 100%;
	float: none;
	display: none;
	padding-left: 0;
	list-style: none;
    margin: 0 auto;
}
.MenuItem {
	height: 100%;
	display: inline-block;
	font-family: "Comic Sans MS", cursive, sans-serif;
	color: #DF8B18;
	font-size: 105%;
	text-shadow: 0px 0px 20px #4264A9;
	font-weight: bold;
	transition: background-color 0.5s;
	cursor: default;
}
.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 - 40px);
	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;
}

.MobilePaw{
    display: inline-block;
    height: 100%;
    float: left;
}
.MobileMenuItem{
    height: 60px;
    transition: background-color 0.5s;
	cursor: default;
    list-style: none;
}
.MobileMenuItem:hover{
	background-color: #4264A9;
}
.MobileMenuItemText{
    font-family: 'Open Sans', sans-serif;
    color: #DF8B18;
	font-size: 20pt;
	text-shadow: 0px 0px 20px #4264A9;
	font-weight: 700;

    display: table;
    position: relative;
    margin: 0 auto;
    width: 200px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    top: 50%;
}
#MobileMenuList{
    height: 100%;
}