		    * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .37s ease-in-out;
	-moz-transition: .37s ease-in-out;
	-o-transition: .37s ease-in-out;
	transition: .37 ease-in-out;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
}

/* Makes sure that everything is 100% height */

html,body {
	height: 100%;
	overflow: auto;
}

/*calls the fonts using the Style Linking method  */

@font-face {
    font-family: 'SourceSansPro';
    src: url('fonts/SourceSansPro-Regular.eot');
    src: url('fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/SourceSansPro-Regular.otf.woff') format('woff'),
         url('fonts/SourceSansPro-Regular.ttf.woff') format('truetype'),
         url('fonts/SourceSansPro-Regular.svg#SourceSansPro-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSansPro';
    src: url('fonts/SourceSansPro-It.eot');
    src: url('fonts/SourceSansPro-It.eot?#iefix') format('embedded-opentype'),
         url('fonts/SourceSansPro-It.otf.woff') format('woff'),
         url('fonts/SourceSansPro-It.ttf.woff') format('truetype'),
         url('fonts/SourceSansPro-It.svg#SourceSansPro-Regular') format('svg');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'SourceSansPro';
    src: url('fonts/SourceSansPro-Bold.eot');
    src: url('fonts/SourceSansPro-Bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/SourceSansPro-Bold.otf.woff') format('woff'),
         url('fonts/SourceSansPro-Bold.ttf.woff') format('truetype'),
         url('fonts/SourceSansPro-Bold.svg#SourceSansPro-Regular') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSansPro';
    src: url('fonts/SourceSansPro-BoldIt.eot');
    src: url('fonts/SourceSansPro-BoldIt.eot?#iefix') format('embedded-opentype'),
         url('fonts/SourceSansPro-BoldIt.otf.woff') format('woff'),
         url('fonts/SourceSansPro-BoldIt.ttf.woff') format('truetype'),
         url('fonts/SourceSansPro-BoldIt.svg#SourceSansPro-Regular') format('svg');
    font-weight: 700;
    font-style: italic;
}

/* (I'm not using this section yet) */

.s400 {
   font-family: 'SourceSansPro', arial, sans-serif;
   font-weight: 400;
   font-style: normal;
}

.s400i {
   font-family: 'SourceSansPro', arial, sans-serif;
   font-weight: 400;
   font-style: italic;
}

.s700 {
   font-family: 'SourceSansPro', arial, sans-serif;
   font-weight: 700;
   font-style: normal;
}

.s700i {
   font-family: 'SourceSansPro', arial, sans-serif;
   font-weight: 700;
   font-style: italic;
}

/* more */

h3 {
  font-family: 'SourceSansPro';
  font-weight: 700%;
}

p {
  font-family: 'SourceSansPro';
  font-weight: 400%;
}

table {
  font-family: 'SourceSansPro';
  font-weight: 400%;
  border-collapse: collapse;
}

.homework {
	width: 75%
	}

.date {
	text-align: right;
	vertical-align: text-top;
	width: 33%
}

header {
  font-family: 'SourceSansPro';
  font-weight: 700%;
}

li {
  font-family: 'SourceSansPro';
  font-weight: 400%;
}

td {
  border: 1px dotted black;
}

th,td {
    padding: 5px;
}

/* puts drop shadow on images labeled class="shadow" in the img tag */

.shadow {
    box-shadow: 5px 5px 5px #888888;
}

/* gets the actual input out of the way; we're going to style the label instead */

#drawer-toggle {
	position: absolute;
	opacity: 0;
}

#drawer-toggle-label {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	left: 0px;
	height:50px;
	width: 50px;
	display: block;
	position: fixed;
	background: rgba(255,255,255,.0);
	z-index: 1;
}

/* adds our "hamburger" menu icon */

#drawer-toggle-label:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	width: 24px;
	background: #8d8d8d;
	left: 13px;
	top: 18px;
	box-shadow: 0 6px 0 #8d8d8d, 0 12px 0 #8d8d8d;
}

header {
	width: 100%;
	left: 0px;
	position: static;
	background: #e0e0e0;
	padding: 10px 10px 10px 50px;
	font-size: 30px;
	line-height: 30px;
	z-index: 0;
}

/* drawer menu pane - note the 0px width */

#drawer {
	position: fixed;
	top: 0;
	left:-300px;
	height: 100%;
	width: 300px;
	background: #2f2f2f;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 20px;
	-webkit-overflow-scrolling: touch;
}

/* actual page content pane */

#page-content h3 {
  font-family: 'SourceSansPro';
  font-weight: 300%;
}

#page-content i { 
	font-style: italic 
}

#page-content {
	margin-left: 0px;
	margin-top: 30px;
	width: 100%;
	height: calc(100% - 50px);
	overflow-x:hidden;
	overflow-y:scroll;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 20px;
	padding-left: 8%;
	padding-right: 25%;
	padding-top: 20px;
}

#page-content a, a:visited, a:active {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px black dotted;
}
#page-content a:hover {
  color: #6f6f6f;
  text-decoration: none;
  border-bottom: 1px #6f6f6f dotted;
}

/* checked styles (menu open state) */

#drawer-toggle:checked ~ #drawer-toggle-label {
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.6);
}

#drawer-toggle:checked ~ #drawer {
    left:0;
}

#drawer-toggle:checked ~ #drawer-toggle-label, #drawer-toggle:checked ~ header {
	left: 300px;
}

#drawer-toggle:checked ~ #page-content, #drawer-toggle:checked ~ header {
	margin-left: 300px;
}

/* Menu item styles */
#drawer ul {
    list-style-type:none;
}
#drawer ul a {
    display:block;
    color:#c7c7c7;
    text-decoration:none;
}

#drawer ul a:hover {
    color:white;
}

ul.list {
	padding-bottom: 0px;
	padding-left: 20px;
	padding-right: 20px
	padding-top: 20px;
}

li.list {
	padding-bottom: 10px;
	padding-left: 0px;
	padding-right: 10px
	padding-top: 0px;
}

ul.sublist {
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 20px
	padding-top: 0px;
{





/* Responsive MQ */

@media all and (max-width:350px) {

	#drawer-toggle:checked ~ #drawer-toggle-label {
		height: 100%;
		width: 50px;
	}
	
	#drawer-toggle:checked ~ #drawer-toggle-label, #drawer-toggle:checked ~ header {
		left: calc(100% - 50px);
	}
	
	#drawer {
	    width:calc(100% - 50px);
	    left: -100%;
	}
	
	#drawer-toggle:checked ~ #page-content {
		margin-left: calc(100% - 50px);
	}

}

/* Allows for definitions (tooltips) when cursor hovers over a word or phrase */

.tooltip {
    display: inline;
    position: relative;
}

.tooltip:hover {
    color: #c00;
    text-decoration: none;
}

.tooltip:hover:after {
    background: #111;
    background: rgba(0,0,0,.8);
    border-radius: .5em;
    bottom: 1.35em;
    color: #fff;
    content: attr(title);
    display: block;
    left: 1em;
    padding: .3em 1em;
    position: absolute;
    text-shadow: 0 1px 0 #000;
    white-space: nowrap;
    z-index: 98;
}

.tooltip:hover:before {
    border: solid;
    border-color: #111 transparent;
    border-color: rgba(0,0,0,.8) transparent;
    border-width: .4em .4em 0 .4em;
    bottom: 1em;
    content: "";
    display: block;
    left: 2em;
    position: absolute;
    z-index: 99;
}
