﻿/* EXERCISE - GLOBAL FORMATTING */

.exercise-body{
	margin-bottom:.5em;
}
.exercise-body .controls{
	padding-top: 10px;
    text-align: center;
}
.exercise-footer{
	
}
.exercise-footer .feedbacks{
	display:none;
}

.exercise-footer .feedback{
	position:relative;
	border-radius:5px;
	background-color: #e5e5e5;
	/*background: -moz-linear-gradient(top, #686868, #1b1b1b);
	background: -webkit-gradient(linear,left top, left bottom, from(#686868), to(#1b1b1b));	*/
	padding: 10px;
	color:#000;
	display:none;
	text-align:center;
}

.exercise-footer .feedbacks.DISPLAY {
	display:block;
	width:100%;
	margin:0px auto;
	text-align:center;
}
.exercise-footer .feedback.DISPLAY {
	display:inline-block;
}

.question-number {
    font-size: 22px;
    font-weight: bold;
}

/* RADIO TABLE */
.RadioTableArea .radioTable {
	width: 100%;
	border-collapse:separate;
	border-spacing: 0px 1px;
}
.RadioTableArea .radioTable td {
	padding: 6px;
}
.RadioTableArea .radioTable thead {
	text-align:center;
	font-weight:bold;
	color:#FFF;
}
.RadioTableArea .radioTable thead tr:first-child td {
	background-color:#828282;
}
.RadioTableArea td.correct {
	background: #92CE77;
}
.RadioTableArea td.incorrect.notSelected {
	background: #F63745;
}
.RadioTableArea .radioTable tbody tr td {
	padding: 0;
	text-align: center;
	vertical-align: middle;
}
.RadioTableArea .radioTable tr {
	background-color:#FFF;
}
.RadioTableArea .radioTable tr.even {
	background-color:#e0e0e0;
}
.RadioTableArea .radioTable tbody tr td:first-child {
	text-align: left;
	padding-left: 10px;
}
.RadioTableArea thead .left{
	border-top-left-radius:5px;
}
.RadioTableArea thead .right{
	border-top-right-radius:5px;
}
.RadioTableArea .UIInput{
	display:inline-block;
	vertical-align:middle;
	width: 40px; 
	height: 40px;
	background-image: url(../images/checkboxRadioButtonStates.png);
	background-position:-40px 0px;
	background-repeat:no-repeat;
	cursor:pointer;
	margin-top:-2px;
	margin-left:-4px;
}


.CrackTheCodeArea .red {
 	color: #f00;
 	font-weight:	bold;
}
.CrackTheCodeArea .green {
 	color: #0f0;
 	font-weight:	bold;
	font-size: 140%;
 	vertical-align:	middle;
}
.CrackTheCodeArea .blue {
 	color: #00f;
 	font-weight:	bold;
}
.CrackTheCodeArea .ANSWERED {
	font-size: inherit;
	vertical-align:inherit;
}
.CrackTheCodeArea .exercise-question {
 	background:	white;
 	padding: 10px 30px;
}
.CrackTheCodeArea .exercise-question	span {
 	text-decoration:	underline;
}
.CrackTheCodeArea .radioTableWrap {
 	margin: 0px 30px;
}
.CrackTheCodeArea .radioTable {
 	width: 100%;
 	border-collapse:	separate;
 	border-spacing: 0px 1px;
 	overflow:	hidden;
}
.CrackTheCodeArea .radioTable	ul {
 	background:	white;
 	margin: 0	auto;
 	float:	left;
 	width: 33.33%;
}
.CrackTheCodeArea .radioTable	li {
 	display:	block;
 	font-weight:	bold;
}
.CrackTheCodeArea .radioTable	tr.even {
 	background: #e0e0e0;
}
.CrackTheCodeArea .radioTable	td.incorrect {
 	background: #f69099;
}
.CrackTheCodeArea .radioTable	td.correct {
 	background: #97e590;
}
.CrackTheCodeArea .radioTableHead	ul {
 	background:	white;
 	margin: 0	auto;
}
.CrackTheCodeArea .radioTableHead	li {
 	display:	inline-block;
 	font-weight:	bold;
 	padding: .49%;
 	width: 32%;
}
.CrackTheCodeArea .UIInput {
 	display:	inline-block;
 	vertical-align:	middle;
 	width: 40px;
 	height: 40px;
 	background-image:	url(../images/checkboxRadioButtonStates.png);
 	background-position: -40px 0px;
 	background-repeat:	no-repeat;
 	cursor:	pointer;
 	margin-top: -2px;
 	margin-left: -4px;
}
.CrackTheCodeArea .correct .UIInput.CHECKED.DISABLED{
	background-position: -160px 0px;
}
.CrackTheCodeArea .UIInput.CHECKED.DISABLED{
	background-position: -200px 0px;
}



/* LINE MATCH */
.LineMatchArea {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.LineMatchArea .exercise-body {
    position: relative;
}
.LineMatchArea #lines {
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 5px;
}
.LineMatchArea .line {
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 0px;
}
.LineMatchArea #offsetParent {
    position: relative;
}
.LineMatchArea .column {
    z-index: 1;
    vertical-align: top;
}
.LineMatchArea .column#left {
    z-index: 3;
}
.LineMatchArea .column#left table{
	margin-top: -8px;
}
.LineMatchArea table {
    border-collapse: separate;
    border-spacing: 10px;
}

.LineMatchArea #left td+td {
    width: 50px;
}
.LineMatchArea #right table {
    border-spacing: 0px 10px;
}
.LineMatchArea .defaultDrag {
    display: inline-block;
    background-image: url(../images/lineMatchDragger.png);
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: relative;
    z-index: 1;
	vertical-align: middle;
}
.LineMatchArea .defaultDrag.DRAGGING {
    z-index: 2;
    background-position: -48px 0;
}
.LineMatchArea .defaultDrag.ORIGINAL {
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: auto;
}
.LineMatchArea .defaultDrag.CORRECT {
    background-position: -95px 0;
}
.LineMatchArea .defaultDrag.INCORRECT {
    background-position: -142px 0;
}
.LineMatchArea .defaultDrop {
    display: inline-block;
    background-image: url(../images/lineMatchDragger.png);
    width: 48px;
    height: 48px;
    background-position: -189px 0;
}
.LineMatchArea .LMBox {
    background-color: #FFFFFF;
	border: solid 2px #e5e5e5;
    /*background: -moz-linear-gradient(top, #FFFFFF, #f1f1f1);
    background: -webkit-gradient(linear,left top, left bottom, from(#FFFFFF), to(#f1f1f1));*/
    vertical-align: top;
    padding: 12px 15px 12px 20px;
}
.LineMatchArea .LMBoxRight {
	padding: 5px 10px 5px 30px;
	background-color: #fff;
	border: solid 2px #e5e5e5;
	margin-top: -60px;
	margin-left: 24px;
	margin-bottom: 10px;
	min-height: 48px;
}

/* DRAG AND DROP */

.DragDropArea {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}
.DragDropArea .DragDropTable {
	border-spacing: 0px 2px;
	position: relative;
	width:100%;
}
.DragDropTable thead tr td{
	background-color:#232424;
	color:#FFF;
}
.DragDropArea .DragDropTable tbody tr:first-child td:first-child{
	vertical-align:top;
}
.DragDropArea .DragDropTable tbody td{
	background:#FFF;
	padding-right:6px;
}
.DragDropArea .DragDropTable tbody tr.even td{
	background-color:#e0e0e0;
}
.DragDropArea .defaultDrag{
	display: inline-block;
	color: #000;
	font-weight: bold;
	margin-right: 50px;
	margin-bottom: 7px;
	background: #FFF none repeat scroll 0 0;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	z-index: 1;
	position: relative;
	top: 3px;
	border: 1px solid #F30617;
	outline: none;
	border-radius: 5px;
}
.DragDropArea .defaultDrag.DRAGGING{
	background: #F30617 none repeat scroll 0 0;
	border-color: #F30617;
	z-index: 2;
	color: #FFF;
}
.DragDropArea .defaultDrag.ORIGINAL{
	opacity:.4;
	filter:alpha(opacity=40);
	cursor: auto;
}
.DragDropArea .defaultDrop{
	display: inline-block;
	width: 21px;
	height: 21px;
	border-radius: 5px;
	padding: 10px;
	background-color:#FFF;
	border: 1px solid #828282;
	margin-top:1px;
	position:relative;
}

.DragDropArea .fbIcon{
	position:absolute;
	display:none;
}
.DragDropArea .fbIcon.CORRECT{
	background-image: url(../images/correctCheck.png);
	width: 18px;
	height: 20px;
	display:inline-block;
}
.DragDropArea .fbIcon.INCORRECT{
	background-image: url(../images/incorrectX.png);
	width: 18px;
	height: 15px;
	display:inline-block;
}



/* DRAG AND DROP TO IMAGE POSITIONING */

.DragDropArea_toImage .exercise-body {
	width: auto;
	position: relative;
}
.DragDropArea_toImage .exercise-footer {
	margin-top:.5em;
}
.DragDropArea_toImage .drag {
	display: inline-block;
	width: 44px;
	height: 44px;
	background-image: url(../images/drag_drop.png);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	color: #fff;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	cursor: pointer;
	margin-right: 6px;
	position: relative;
	line-height: 44px;
}
.DragDropArea_toImage .drag.DRAGGING{
	z-index:2;
	position:relative;
	cursor:pointer;
	background-position: -44px 0px;
	background-color:transparent;
}
.DragDropArea_toImage .drag.ORIGINAL{
	cursor: auto;
	background-position: -132px 0px;
}

.DragDropArea_toImage .drag.CORRECT {
	background-position: -176px 0px;	
}
.DragDropArea_toImage .drag.INCORRECT {
	background-position: -220px 0px;		
}
.DragDropArea_toImage .drop{
	background-image:url(../images/drag_drop.png);
	background-position: -88px 0px;
	position:relative;
}
.DragDropArea_toImage .answer-bg {
	margin-bottom: 6px;
	color:#000;
	font-weight:bold;
	font-size:16px;
	padding: 10px;
	background-color: #fff;
}

/* for prototype only // overwrite values in custom.css  */
.DragDropArea_toImage #drop0{ position: absolute; top: 206px; left: 656px; }
.DragDropArea_toImage #drop1{ position: absolute; top: 170px; left: 795px; }
.DragDropArea_toImage #drop2{ position: absolute; top: 312px; left: 696px; }
.DragDropArea_toImage #drop3{ position: absolute; top: 298px; left: 818px; }

.DragDropArea_toImage .DragDropArea .left{
	float: left;
	width: 550px;
	height: 400px;
}

.DragDropArea_toImage .DragDropArea .right{
	float: right;
	width: 300px;
}




.DragDrop_ManyTo1 .exercise-body {
	position: relative;
	height: 370px;	
}
.DragDrop_ManyTo1 .statement {
	text-align:center;
	font-weight:bold;
	color:#00000;
}
.DragDrop_ManyTo1 .drag {
	position: absolute;
	max-width:300px;
	left:302px;
	top:0px;
	z-index:100;
	opacity: 0;
    filter: alpha(opacity=0);
    cursor: auto;
	background:#fff;
	color:#828282;
}
.DragDrop_ManyTo1 .drag.DRAGGING{
	color:#FFF;
}
.DragDropArea .defaultDrag.ORIGINAL{
	opacity: 0;
    filter: alpha(opacity=0);
}
.DragDrop_ManyTo1 .drag.CURRENT {
	opacity: 1;
    filter: alpha(opacity=100);
	z-index:110;
	cursor: pointer;
}
.DragDrop_ManyTo1 .dragTxt{
	vertical-align: middle;
	line-height: 1.3em;
	display: inline-block;
}
.DragDrop_ManyTo1 .title {
	text-align:center;
	width:100%;
	position:absolute;
	top:-25px;
	font-weight:bold;
	color: #000;
}
.DragDrop_ManyTo1 .defaultDrop {
	height:230px;
	width: 420px;
	background-color: #FFFFFF;
	position: absolute;
	bottom: 0;
	left:0;
	border-radius: 5px;
	padding: 10px;
	border: 1px solid #828282;
}
.DragDrop_ManyTo1 .defaultDrop.DRAGOVER {
	background-color:#FFE9D2;
}
.DragDrop_ManyTo1 .defaultDrop.drop1 {
	left: auto;
	right: 0;
}
.DragDrop_ManyTo1 .dropImage {
	background: url(../images/content/placeHolderSmall.jpg) no-repeat;
	width:200px;
	height:230px;
	border:2px solid #000000;
	right:10px;
	top: 10px;
	position: absolute;
	border-radius: 5px;
}
.DragDrop_ManyTo1 .drop1 .dropImage{
	left: 10px;
	background: url(../images/content/placeHolderSmall.jpg) no-repeat;
}
.DragDrop_ManyTo1 .dragsCompleted{
	width:50%;
}
.DragDrop_ManyTo1 .dragCompleted{
	display:none;
}
.DragDrop_ManyTo1 .dragCompleted.DISPLAY{
	display: block;
}
.DragDrop_ManyTo1 .drop1 .dragsCompleted{
	margin-left:50%;
}
.DragDrop_ManyTo1 .feedbackIcon{
	background:url(../images/dragDrop_manyTo1Feedback.png);
	position:absolute;
	width:122px;
	height:122px;
	left: 40px;
	top: 105px;
	display:none;
}
.DragDrop_ManyTo1 .feedbackIcon.INCORRECT{
	background-position:-122px 0;
}
.DragDrop_ManyTo1 .resetBtn{
	display:none;
	position: absolute;
	left: 456px;
	z-index:140;
}
.DragDrop_ManyTo1 .resetBtn.DISPLAY{
	display: inline-block;
}




/* CONCENTRATION CARD MATCH */
.ConcentrationArea .Data {
    display: none;
}
.ConcentrationArea .Cards {
    margin-left: auto;
    margin-right: auto;
    max-width: 966px;
    overflow: hidden;
    width: 966px;
}
.ConcentrationArea .ConLeft,.ConcentrationArea  .ConRight {
    width: 455px;
    height: 343px;
    position: relative;
    float: left;
}
.ConcentrationArea .card {
	width: 222px;
    height: 169px;
    background-image: url(../images/concentrationCardSpriteLeft.png);
    position: absolute;
    display: none;
    background-position:-4px 0px ;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.2em;
    cursor: pointer;
}
.ConcentrationArea .ConRight .card {
    background-image: url(../images/concentrationCardSpriteRight.png);
}
.ConcentrationArea .card.OVER {
    background-position:-4px -167px !important;
}
.ConcentrationArea .card.INACTIVE {
    color: #848484;
    cursor: auto;
    background-position:-4px -333px;
}
.ConcentrationArea .cardText {
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    width: 90%;
	font-size: 18px;
	line-height: 1.2em;
}
.ConcentrationArea .ConRight .cardText {
	font-size: 24px;
	font-weight:bold;
	line-height: 1.3em;
}
.ConcentrationArea .v-center {
    height: 100%;
    width: 0px;
    display: inline-block;
    vertical-align: middle;
}

.ConcentrationArea .exercise-footer .feedbacks {
   padding:0px;
   display: inline-block;
   background:none;
   border:none;
}
.ConcentrationArea .exercise-footer {
    text-align: center;
	display:block;
	height:75px;
}


/* BUZZER EXERCISE */
.BuzzerArea .Data {
    display: none;
}
.BuzzerArea .feedback {
    display: none;
}
.BuzzerArea .DISPLAY {
    display: block;
}

/*Standard Buzzer / Default Skin*/
.BuzzerArea.std-skin .buzzerBoard {
	padding: 13px;
	margin: 0 auto;
	width: 90%;
	border-style: solid;
	border-width: 2px;
	border-color:#000;
	position: relative;
	border-radius: 20px;
}
.BuzzerArea.std-skin .buzzerQuestion {
	font-size: 20px;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
	position: relative;
	min-height: 120px;
	margin-bottom: 10px;
	padding: 8px;
	border-radius: 10px;
	border: 1px solid #828282;
	border-bottom: 1px solid #828282;
	background: #828282;
}
.BuzzerArea.std-skin .buzzerFeedback {
	background: #e5e5e5 none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #000;
    font-size: 20px;
    height: 145px;
    line-height: 1.2em;
    padding: 8px;
}
.BuzzerArea.std-skin .statement {
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
}
.BuzzerArea.std-skin .answer_Header {
	font-size: 20px;
	color: #000;
	font-weight: bold;
}
.BuzzerArea.std-skin .buzzer {
	width: 217px;
	height: 188px;
	float: left;
	background-image: url(../images/standard_buzzer.png);
}
.BuzzerArea.std-skin .buzzers {
	position: relative;
	width: 95%;
	margin: 0 auto;
	overflow: hidden;
	margin-top: -45px;
}
.BuzzerArea.std-skin .buzzer.HOVER {
	background-position: -217px 0 !important;
	cursor: pointer;
}
.BuzzerArea.std-skin .buzzer.DOWN {
	background-position: -217px 0 !important;
	cursor: pointer;
}
.BuzzerArea.std-skin .buzzer.INCORRECT {
	background-position: -434px 0 !important;
}
.BuzzerArea.std-skin .buzzer.CORRECT {
	background-position: -651px 0 !important;
}
.BuzzerArea.std-skin .buzzer.INACTIVE {
	background-position: -868px 0 !important;
}
.BuzzerArea.std-skin .buzztext {
	text-align: center;
	margin-top: 110px;
	font-size: 23px;
	font-weight: bold;
	color: white;
	text-shadow: 2px 2px 2px #222;
	zoom: 1;
}
.BuzzerArea.std-skin .feedbacks.IDText .feedback {
	width: 450px;
	margin: 0 auto;
	z-index:10;
	color:#000000;
}
.BuzzerArea.std-skin .feedbacks.IDText {
	margin-top: -115px;
	width: 100%;
	text-align:center;
}
.BuzzerArea.std-skin #buzzer1 {
	float: right;
}
.BuzzerArea.std-skin .DISPLAY {
	float:none;
	text-align:center;
	width: 100%;
	padding: 0px;
}




/* FACT OR FICTION */

.FactFictionArea .Data {
    display: none;
}
.FactFictionArea .StatementButton {
    margin: 0 auto 0.5em auto;
    padding:10px;
    width: 90%;
   	background-color: #FFFFFF;
	border: solid 2px #e5e5e5;
    /*background: -moz-linear-gradient(top, #FFFFFF, #f1f1f1);
    background: -webkit-gradient(linear,left top, left bottom, from(#FFFFFF), to(#f1f1f1));*/
    border-radius: 10px;
    position: relative;
    -webkit-transition-property: height,top;
    -webkit-transition-duration: 0.5s;
}
.StatementButton .checkbox {
    margin-left: 0px;
    margin-top: 5px;
    display: block;
    float: left;
}
.StatementButton .text {
    margin: 0 137px 0 25px;
    padding: 0 0 15px;
	min-height: 90px;
}
.ff_buttons {
    position: absolute;
    top: 5px;
	right: 12px;
    width: 90px;
}
.ff_buttons .std-control {
    clear: both;
    margin: 2px;
    text-align: center;
    width: 71px;
}


.FactFictionArea .ff_buttons .std-control.SELECTED {
	background: #1b1b1b;
	color: white;
	border-color: #000;
}


/* PROGRESS CHECK QUESTIONS */
.QuestionArea{
	position: relative;
}
.QuestionArea .answerchoice {
	padding-left: 62px;
	margin-top: -31px;
	padding-bottom: 7px;
}
.QuestionArea ul {
    list-style: upper-alpha none inside;
    font-weight: bold;
    margin-left: 20px;
}
.QuestionArea .option {
    position: relative;
    padding: 0px 12px;
	background: #FFF;/* url(../images/GradientWhite.png) repeat-x*/
	border: solid 1px #D7D3D0;
	color: #313131;
	margin-bottom: 5px;
	min-height:40px;
}
.QuestionArea .option.HOVER, .QuestionArea .option.DOWN {
    position: relative;
    cursor: pointer;
	border-color:#f30617;
	background: #f30617 none repeat scroll 0 0;
	color:#ffffff;
}
.QuestionArea.VISITED .option.in {
	background: #C2D1E8;
	border-color: #A7BBDA;
}
.QuestionArea .UIInput {
	position: relative;
	left:-13px\0/;
}
@supports (-ms-ime-align:auto) {
	.QuestionArea .UIInput {
		left:0;
	}
}
.QuestionArea .exercise-question {
    padding-bottom: 5px;
}
.QuestionArea .feedback {
    position: relative;
    text-align: center;
    display: none;
}
.QuestionArea .incorrect, .QuestionArea .correct, .QuestionArea .tryAgain, .QuestionArea .fb {
    position: relative;
    display: none;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 1s;
    text-align: center;
}
.QuestionArea button {
    position: relative;
}
.QuestionArea .DISPLAY {
    display: inline;
}
.QuestionArea .BoxQues {
	margin-left: 19px;
}
.QuestionArea .option.CORRECT:before {
	content:"";
	background-image: url(../images/correctArrow.png);
	width: 25px;
	height: 25px;
	position: absolute;
	left: -28px;
	top: 11px;
}

/* CARD Match */
.CardMatch .exercise-body{
	margin-left: -18px;
}


/*ClickableTable*/
.ClickableTableArea .InteractTable {
	border:1px solid #828282;
	width:100%;
}
.ctRight{
	vertical-align: top;
	padding: 15px;
}
.ClickableTable .ct_button {
    height:175px;
    width: 300px;
    position: relative;
	cursor: pointer;
}

.ClickableTable .ctBtnCaption {
	background: #f30617 none repeat scroll 0 0;
    bottom: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 0px;
    position: absolute;
    text-align: center;
    width: 100%;
}
.ClickableTable .checkbox{
	position:relative;
	top: 7px;
	left: 5px;
}
.ClickableTable .HOVER .ctBtnCaption, .ClickableTable .DOWN .ctBtnCaption{
	background:#000000;
}

.ClickableTable .StatementButton .checkbox{
    display: block;
    float: left;
    margin-left: 5px;
    margin-top: 5px;
}

