#itoc {
  /* Critical position and size styles */
  min-height: 100%;
  min-width: 100%;
  background-color: white; /* Needs a background or else the nav will show through */
  position: relative;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 1;
  
  /* non-critical apperance styles */
  padding: 4em;
  background-image: linear-gradient(135deg, rgb(254,255,255) 0%,rgb(221,241,249) 35%,rgb(160,216,239) 100%);
  background-size: 200%;
}


#toc{
		position: fixed;
		width: 0px;
		height: auto;
		top: 105px;
		right:0px;
		background-color: white;
		/* background-image:url(images/background.gif);
		background-position:top left;
		background-repeat:repeat-y; */
		z-index:8;
	}
	
	#tocTab{
		float:left;
		height:137px;
		width:28px;
	}
	
	#tocTab img{
		border:0px solid #FFFFFF;
	}
	
	#tocContents{
		line-height: 18px;
		padding: 3px;
		font-size: 12px;
		font-family: Helvetica;
		width:200px;
		overflow:hidden !important;
	}
	
	#tocContentsInner{
		width:200px;
	}
	
	/* Nav Trigger */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  position: fixed;
  clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: fixed;
  float:right;
  right: 0px;
  top: 105px;
  z-index: 9;
  
  /* non-critical apperance styles */
  height: 137px;
  width: 28px;
  cursor: pointer;
  background-image: url("button.png");
  /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6'/><rect y='24' width='30' height='6'/><rect y='12' width='30' height='6'/></svg>");
  background-size: contain; */
}

/* Make the Magic Happen */
.nav-trigger + label, #toc {
  transition: left 0.2s;
}.

.nav-trigger:checked + label {
  right: 215px;
}

.nav-trigger:checked ~ #toc {
  right: 0px;
  width:225px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}

.nav-trigger:checked ~ #tocContents { width:225px; }
	
/* Micro reset */
/* *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
*/

.navigation OL { counter-reset: item }
.navigation  LI { display: block }
.navigation  LI:before { content: counters(item, ".") " - "; counter-increment: item }