/* CSS Document */
html, body{
	font-family: "Calibri Light", Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
	width:100%;
	padding: 0;
	margin: 0;
	height:100%;
}
.wrapper{
	background-color:#FFF;
	display:flex;
	flex-direction: column;
	align-items:stretch;
	width:100%;
	height:100%;
	box-sizing:border-box;
}
/* Main Content Flex Styles */

.wrapperLesson{
	display: flex;
	flex-direction: column;
	flex: 1;
	border-bottom-width: 0px;
	background-color: #fff;
	position: sticky;
	top:3.25rem;
	z-index: 97;
	width:100%;
}
.questionHeader{
	display:flex;
	width:100%;
	flex-flow:row wrap;
	align-items:center;
	justify-content:Center;	
	font-size: 1.2em;
	border-top-style:none;
	border-bottom-style:solid;
	border-bottom-width: 2px;
	border-color:#3FCBBF;
	background-color:#fff;
	position: fixed;
	padding-top:0.25rem;
	top:0rem;
	left:0;
	z-index: 98;
	min-width:360px;
	height:3rem;
	opacity:0.95;
}
a.questionButton{
	display:flex;
	height:3rem;
	min-width:50px;
	align-items: center;
	justify-content:center;
	text-decoration:none;
	padding:0;
	margin:0 0rem 0 0rem;
	filter: grayscale(100%);
	box-sizing:border-box;
	font-size:1.5rem;
	font-weight:bold;
	color:#aaa;
	border-top:solid 0.35rem #FFF;	
}
.questionButton:hover{
	background-color: #f8f8f8;
	border-top-style:solid;
	/*padding:2px 5px 2px 5px;*/
	border-top-width:0.35rem;
	border-top-color:#CCC;
}

.questionButton.qSelected{
	padding-top:2px;
	padding-bottom:2px;
	border-top-style:solid;
	border-top-width:0.35rem;
	/*border-bottom-style:solid;
	border-bottom-width:4px;*/
	border-top-color:#3fcbbf;
	border-bottom-color:#3fcbbf;
	filter:none;
}
.questionContainer{
	border:1px solid #ccc;
	display:flex;
	flex-flow:row-wrap;
}
.questionNumber{
	display:flex;
	height:35px;
	width:35px;
	align-items: center;
	justify-content:center;
	text-decoration:none;	
}
a.questionNumber{
	text-decoration:none;
}
.questionType{
	display:flex;
	flex-drection:row;	
}
.theQuestion{
	display:flex;
	flex-drection:row;	
}
.options{
	display:flex;
	flex-drection:row;	
}
.sidebarUnit{
	display:flex;
	height:40px;
	align-items: center;
	justify-content:center;
	text-decoration:none;
	box-sizing:content-box;
}


.sidebarUnit span{
	color:#AAA;

}
a.sidebarUnit{
	color:red;
	font-size:2rem;	
}

.unitHeading{
	display:none;
	}


.examQuestion{
	order: 2;
	flex:1;
	flex-direction: column;
	background-color: #FFF;
	margin-top:20px;
	width:100%;
}
.questionWrapper{
	max-width:1400px;
	margin-left:auto;
	margin-right:auto;
	padding-top:2rem;
}
.adUnit {
	width: 100%;
	background-color: #fff;
	text-align: center;
}
.footer{
	background-color: #FFF;
	display:flex;
	flex-direction:row;
	align-items:center;
	height:80px;	
	font-size: 1rem;
	justify-content: space-between;
}
.footerItem{
	padding-left: 2rem;
	padding-right: 2rem;
	height: 80px;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.footerPicture{
	padding-left:1rem;
}
.pageExpander{
	height:0.5rem;
	background-color:#EEE;
	border-top-style:solid;
	border-top-color:#CCC;
	border-top-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#CCC;
	border-bottom-width:1px;
}
.pdfHidden{
/*	height:0px;
	overflow:hidden;*/
	display: none;
}
.pdfVisible{
	display:inherit;
}
.pdfInvisible{
	visibility:hidden;
}
.copyright{
	float:right;
	padding-bottom:0.25rem;
}
@media (min-width: 60rem) {
	.unitHeading{
		display:inline;
		color:#666;
		margin-right:0.75rem;
	}
}
@media (min-width: 400px) {
	a.questionButton{
		margin:0 0.25rem 0 0.25rem;
}
}