body {
	color: #777;
}

/*
Add transition to containers so they can push in and out.
*/

#layout,
#menu,
.menu-link {
	transition: all 0.2s ease-out;
}

/*
This is the parent `<div>` that contains the menu and the content area.
*/

#layout {
	left: 0;
	position: relative;
	padding-left: 0;
}

#layout.active #menu {
	left: 300px;
	width: 300px;
}

#layout.active .menu-link {
	left: 300px;
}

/*
The content `<div>` is where all your content goes.
*/

.content {
	padding: 2em;
	margin: 0 auto;
	max-width: initial;
	margin-bottom: 50px;
	line-height: 1.6em;
}

.status {
	margin: 0;
	padding: 0;
	line-height: 3em;
	color: #bbb;
	text-align: right;
}

.foot {
	line-height: 3em;
	color: #bbb;
}

.foot a,
.foot a:active,
.foot a:hover,
.foot a:visited,
.foot a:target {
	color: #bbb;
	text-decoration: none;
	border-bottom: 1px dotted #bbb;
}

.content-head {
	color: #888;
	font-weight: 300;
	margin: 50px 0 20px 0;
}

/*
The `#menu` `<div>` is the parent `<div>` that contains the `.pure-menu` that appears on the left side of the page.
*/
#menu {
	width: 300px;
	margin-left: -300px; /* "#menu" width */
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1000; /* so the menu or its navicon stays above all content */
	background-image: linear-gradient(to right, rgba(0,0,0,0.0) 95%, rgba(0,0,0,0.1));
	background-color: white;
	border-right: 1px solid #eee;
	overflow-y: auto;
}

/*
All anchors inside the menu should be styled like this.
*/

.pure-menu-list #menu a {
	color: #E65B62;
	border: none;
}

.pure-menu-list #menu a:hover .icon {
	opacity: 0.7;
}

/*
Remove all background/borders, since we are applying them to #menu.
*/

#menu .pure-menu,
#menu .pure-menu ul {
	border: none;
	background: transparent;
}

/*
Change color of the anchor links on hover/focus.
*/

#menu .pure-menu li a:hover,
#menu .pure-menu li a:focus {
	background-image: linear-gradient(to right, rgba(0,0,0,0.0) 95%, rgba(0,0,0,0.1));
}

/*
This styles the selected menu item `<li>`.
*/

#menu .pure-menu-list {
	margin-top: 40%;
}

/*
This styles a link within a selected menu item `<li>`.
*/

#menu .pure-menu-selected a {
	color: #FF6600;
}

/*
This styles the menu heading.
*/

#menu .pure-menu-heading {
	font-size: 1em;
	line-height: 3em;
	text-align: center;
}

/* -- Dynamic Button For Responsive Menu -------------------------------------*/

/*
The button to open/close the Menu is custom-made and not part of Pure. Here's how it works:
*/

/*
`.menu-link` represents the responsive menu toggle that shows/hides on small screens.
*/

.menu-link {
	position: fixed;
	display: block; /* show this only on small screens */
	top: 0;
	left: 0; /* "#menu width" */
	background: rgba(0, 0, 0, 0.2);
	font-size: 0.6em; /* change this value to increase/decrease button size */
	z-index: 10;
	width: 2em;
	height: auto;
	padding: 2.4em 1.6em;
}

.menu-link:hover,
.menu-link:focus {
	background: #000;
}

.menu-link span {
	position: relative;
	display: block;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
	background-color: #fff;
	width: 100%;
	height: 0.2em;
}

.menu-link span:before,
.menu-link span:after {
	position: absolute;
	margin-top: -0.6em;
	content: " ";
}

.menu-link span:after {
	margin-top: 0.6em;
}

/**/

.pure-menu-link {
	height: 4em;
	line-height: 2em;

	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* -- Responsive Styles (Media Queries) ------------------------------------- */

/*
Hides the menu at `48em`, but modify this based on your app's needs.
*/
@media screen and (min-width: 48em){
	.status,
	.content {
		padding-left: 2em;
		padding-right: 2em;
	}
	#layout {
		padding-left: 300px; /* left col width "#menu" */
		left: 0;
	}
	#menu {
		left: 300px;
	}
	.menu-link {
		left: 300px;
		display: none;
		position: fixed;
	}
	#layout.active .menu-link {
		left: 300px;
	}
}

@media screen and (max-width: 48em)
	/*
	* Only apply this when the window is small. Otherwise, the following case results in extra padding on the left:
	* Make the window small.
	* Tap the menu to trigger the active state.
	* Make the window large again.
	*/
	#layout.active {
		position: relative;
		left: 300px;
	}
}