@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
*{
	font-family:"open_sanslight";
	font-family:'Nunito';
 
	-moz-box-sizing: border-box;
	-webkit-sizing: border-box;
	box-sizing: border-box;
	background-color:white;
	font-size:16px;
	
}



body{
	background-color:darkgray
	margin:auto;
    padding:0px;
}

.lessonbox{
    border:1px solid lightgray;
    color:#666;
    line-height:1.4rem;
    
}





.title{
    background-color:inherit;
    font-weight:bold;
    color:#736c6c;
    font-size:1.2rem;
}

.lessonnum{
    font-size:2rem;
    
    background-color:inherit;
    color:blue;
    opacity:0.15;
    font-weight:bold;
    
}

.sbutton{
    width:auto;
    
    padding:4px;
    text-align:center;
    background-color:#5c5c93;
    color:white;
    margin-top:1.5rem;
    
}

.sbutton:hover{
    background-color:#7d7dc7;
    text-decoration:none;
}

a:visited{
    text-decoration:none;
}

.nonpresent{
    display:none;
    border:1px solid red;
    visibility:hidden;
}

/* Mobile Layout:  min of 480px .  I80erits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (max-width: 800px) {



}



