@charset "UTF-8"
/* CSS Document */


.DarkBaseColour {
	color: royalblue;
    /*color: #35596a;*/
}

.MediumBaseColour {
	color: #52739b;
    /*color: #4c6c7b;*/
}

.LightBaseColour {
	color: cornflowerblue;
    /*color: #829fad;*/
}

:root {
    --LightBaseColour: #cornflowerblue; /* Default color */
	--MediumBaseColour: #52739b; /* Default color */
	--DarkBaseColour: royalblue; /* Default color */
	--DarkBaseColour50T: rgba(65, 105, 225, 0.5); /* Default color */
	--NightBaseColour: #001166; /* Default color */
	--NightBaseColourT: rgba(0, 17, 102, 0.5); /* Default color */
	--NightBaseColourHover: #000033; /* Default color */
}

#sidebar{
	background: var(--DarkBaseColour);
	z-index:100;
	width: 200px;
	height: 100%;
	display: block;
	position:fixed;
	left: -200px;
	float:left;
	top: 0px;
	transition: left 0.4s linear;
	overflow:scroll;
}

#sidebar.visible{
	background: var(--DarkBaseColour);
	z-index:100;
	width: 200px;
	height: 100%;
	display: block;
	position:fixed;
	left: 0px;
	float:left;
	top: 0px;
	transition: left 0.4s linear;
	overflow:scroll;
}

#sidebar-btn.open{
	background: var(--DarkBaseColour50T);
	z-index:9999;
	left: 210px;
	background-image:url(./Menu_XBarWhite_50x50.png) ;
	background-repeat: no-repeat;
	background-position:center;
	transition: left 0.4s linear;
}

#sidebar-btn{
    display: inline-block;
    z-index:9999;
    width: 40px;
    height: 45px;
    vertical-align: middle;
    cursor: pointer;
	/*background-image:url(./Menu_3BarWhite_50x50.png);*/
	background-image:url(css/Menu_3BarWhite_50x50.png);
	background-repeat: no-repeat;
	background-position:center;
    margin-top: 12px;
    margin-left: 12px;

    top: 0px;
    left: 10;
    position: fixed;
    border: none;
    /*outline: solid #35596a;*/
    background-color: var(--DarkBaseColour50T);
    color: white;
    padding-bottom: 4px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    border-radius: 8px;
}


ul#wrapper {
    list-style: none;
	display: contents;
    display: inline-block;
    margin-top: 40px;
    margin-left: 5%;
    margin-right: 5%;
}


ul {
	margin: 0px;
	padding: 0px;
	
}

li {
	list-style: none;
	
}

.a_Style {
    backface-visibility: hidden;
	font-size: medium;
	font-weight: bolder;
	color: var(--DarkBaseColour);
	align: left;
	text-align: left;
	float: left;
	vertical-align: middle;
	line-height: 24px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	align-self: center;
	margin-top: -72px;
	margin-left: 100px;
	margin-right: 0px;
}