* {margin: 0;padding: 0;}

body, 
html {height: 100%;}

body {
	/*
	 * Relates to the pseudo class & sibling bug, see
	 * http://css-tricks.com/webkit-sibling-bug/ for more details
	 */
	-webkit-animation: bugfix infinite 1s;
}

/* Also relates to the pseudo class & sibling bug */
@-webkit-keyframes bugfix { from { padding: 0; } to { padding: 0; } }

.outer {overflow: hidden;}

.slide {background: #fff;}

.content {background-color: #fff; padding-bottom: 250px;}

.content ul,
.content ol {margin: 10px 40px;}

.nav li a {
	color: #000;
	text-decoration: none;}

.nav li a:hover {text-decoration: underline;}
/* @end nav */


.nav ul ul li {
	line-height:1.2rem;
	margin-bottom:1rem;
}
	

/* This is the clickable label */
.slide-toggle {
	float: left;
	cursor: pointer;
	position: relative;
	z-index: 1;
	display: none;
	margin: 0;
}

/* Kill the nasty outlines everywhere */
.slide-toggle,
.slide-toggle:active,
.slide-toggle:focus {
	border: none !important;
	outline: none !important;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* The :after pseudo element has an icon that covers the checkbox */
.slide-toggle:after {
	background-size: cover;
	content: url('../images/Jama_Network_Logo.svg');
	cursor: pointer;
	display: block;
	height: 30px;
	padding: 10px 12px;
	width: 165px;
}

/* This is the checkbox */
.slide-checkbox {
	position: absolute;
	top: -9999px;
	left: -9999px;
}

/* When it's checked replace the menu icon with a close icon */
.slide-checkbox:checked ~ .slide-toggle:after {
	content: url('../images/X_Close.svg');
	display: block;
	height: 30px;
	cursor: pointer;
}

/* Only show the menu link on smaller screens */
.slide-toggle {
	display: block;
}

/*
 * The transition value determines the speed
 * at which the content will slide over
 */
.slide {
	-webkit-transition: -webkit-transform 500ms ease;
	-moz-transition: -moz-transform 500ms ease;
	-o-transition: -o-transform 500ms ease;
	transition: transform 500ms ease;
}

/*
 * Enable hardware acceleration and stop flickering
 */
.slide,
.nav {
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}

/*
 * When the checkbox is checked slide the content
 * over and the checkbox with it
 */
.slide-checkbox:checked ~ .slide {
	-webkit-transform: translateX(165px) scale(1);
	-moz-transform: translateX(165px) scale(1);
	-ms-transform: translateX(165px) scale(1);
	-o-transform: translateX(165px) scale(1);
	transform: translateX(165px) scale(1);
}

.nav {
	height: 100%;
	background: #000;
	border-radius: 0;
	margin: 0 0 20px 0;
	padding: 50px 0;

	/*
	 * The width determines how much of the page you want to
	 * remain visible once the menu slides over
	 */
	width: 165px;
	/*
	 * Must be absolutely positioned otherwise it won't sit
	 * side by side with the content but instead above it
	 * */
	position: absolute;
	left: 0;
	top: 0;
	/* Keeps the menu hidden off-canvas to the left */
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.nav li {
	float: none;
	margin-bottom: 1.5rem;
}


