@charset "utf-8";
/* CSS Document */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}
body{
	font-family: "century gothic", verdana, sans-serif;
	background: #333;
	color: #fff;
}

a{ 
	color: #fff;
	display: block;
	margin: 0 10px 0 0;
}
a:hover{ 
	color: #ff0;
}
h1{ 
	background: #111; 
	padding: 20px; 
	text-align: center;
	text-transform: uppercase;
	
}
div.container{
	width: 80%;
	margin: 0 auto;
}
@media (max-width: 1300px){
	div.container{
		width: 100%;
		margin: 0 auto;
	}
}

div.classgroup{ 
	float: left;
	width: 30%;
	margin: 1.11%;
	background: #444;
	box-shadow: 5px 5px 8px 3px #222;
}
@media (max-width: 1300px){
	div.classgroup{ 
		width: 46%;
		margin: 2%;
	}
	div.classgroup:nth-of-type(2n+1){
		clear: left;
	}
}
@media (max-width: 650px){
	div.classgroup{ 
		width: 90%;
		margin: 5%;
	}
}
div.classgroup h2{
	background: #111;
	padding: 10px;
	text-align: center;
	
}
div.classgroup ol{
	margin: 30px 30px 30px 60px;
	 list-style: none;
  counter-reset: my-awesome-counter;
}
div.classgroup ol li{
	counter-increment: my-awesome-counter;
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	position: relative;
	min-height: 45px;
	margin-left: 45px;
	margin-top: 17px;
}
div.classgroup ol li::before {
	content: counter(my-awesome-counter);
	font-weight: bold;
	font-size: 3rem;
	margin-right: 0.5rem;
	font-family: 'Abril Fatface', serif;
	line-height: 1;
	display: inline-block;
	position: absolute;
	margin-left: -60px;
	margin-top: 3px;
}
li > span {
	
	padding: 20px;
	display: block;

	
}
span.graded{
	font-size: 8px;
	text-transform: uppercase;
	color: #ffff00;
}
span.ungraded{
	font-size: 8px;
	text-transform: uppercase;
	color: #ff0000;
}
span.ns{
	font-size: 8px;
	text-transform: uppercase;
	color: #cccccc;
}