@digabi/exam-engine-core 19.1.0-alpha.0 → 19.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/__tests__/tsconfig.tsbuildinfo +1 -1
- package/dist/components/grading/AnnotationPopup.d.ts +11 -0
- package/dist/components/grading/AnnotationPopup.d.ts.map +1 -0
- package/dist/components/grading/AnnotationPopup.js +20 -0
- package/dist/components/grading/AnnotationPopup.js.map +1 -0
- package/dist/components/grading/AnswerCharacterCounter.d.ts +6 -0
- package/dist/components/grading/AnswerCharacterCounter.d.ts.map +1 -0
- package/dist/components/grading/AnswerCharacterCounter.js +21 -0
- package/dist/components/grading/AnswerCharacterCounter.js.map +1 -0
- package/dist/components/grading/AnswerWithAnnotations.d.ts +11 -0
- package/dist/components/grading/AnswerWithAnnotations.d.ts.map +1 -0
- package/dist/components/grading/AnswerWithAnnotations.js +15 -0
- package/dist/components/grading/AnswerWithAnnotations.js.map +1 -0
- package/dist/components/grading/ChoiceAnswer.d.ts +6 -0
- package/dist/components/grading/ChoiceAnswer.d.ts.map +1 -0
- package/dist/components/grading/ChoiceAnswer.js +57 -0
- package/dist/components/grading/ChoiceAnswer.js.map +1 -0
- package/dist/components/grading/DropdownAnswer.d.ts +6 -0
- package/dist/components/grading/DropdownAnswer.d.ts.map +1 -0
- package/dist/components/grading/DropdownAnswer.js +43 -0
- package/dist/components/grading/DropdownAnswer.js.map +1 -0
- package/dist/components/grading/Grading.d.ts +4 -0
- package/dist/components/grading/Grading.d.ts.map +1 -0
- package/dist/components/grading/Grading.js +81 -0
- package/dist/components/grading/Grading.js.map +1 -0
- package/dist/components/grading/GradingAnswer.d.ts +22 -0
- package/dist/components/grading/GradingAnswer.d.ts.map +1 -0
- package/dist/components/grading/GradingAnswer.js +242 -0
- package/dist/components/grading/GradingAnswer.js.map +1 -0
- package/dist/components/grading/GradingAnswerAnnotationList.d.ts +9 -0
- package/dist/components/grading/GradingAnswerAnnotationList.d.ts.map +1 -0
- package/dist/components/grading/GradingAnswerAnnotationList.js +19 -0
- package/dist/components/grading/GradingAnswerAnnotationList.js.map +1 -0
- package/dist/components/grading/MultiLineAnswer.d.ts +14 -0
- package/dist/components/grading/MultiLineAnswer.d.ts.map +1 -0
- package/dist/components/grading/MultiLineAnswer.js +61 -0
- package/dist/components/grading/MultiLineAnswer.js.map +1 -0
- package/dist/components/grading/Question.d.ts +5 -0
- package/dist/components/grading/Question.d.ts.map +1 -0
- package/dist/components/grading/Question.js +23 -0
- package/dist/components/grading/Question.js.map +1 -0
- package/dist/components/grading/QuestionTitle.d.ts +6 -0
- package/dist/components/grading/QuestionTitle.d.ts.map +1 -0
- package/dist/components/grading/QuestionTitle.js +21 -0
- package/dist/components/grading/QuestionTitle.js.map +1 -0
- package/dist/components/grading/Results.d.ts +15 -0
- package/dist/components/grading/Results.d.ts.map +1 -0
- package/dist/components/grading/Results.js +77 -0
- package/dist/components/grading/Results.js.map +1 -0
- package/dist/components/grading/ScoredTextAnswer.d.ts +6 -0
- package/dist/components/grading/ScoredTextAnswer.d.ts.map +1 -0
- package/dist/components/grading/ScoredTextAnswer.js +22 -0
- package/dist/components/grading/ScoredTextAnswer.js.map +1 -0
- package/dist/components/grading/Section.d.ts +5 -0
- package/dist/components/grading/Section.d.ts.map +1 -0
- package/dist/components/grading/Section.js +18 -0
- package/dist/components/grading/Section.js.map +1 -0
- package/dist/components/grading/SingleLineAnswer.d.ts +12 -0
- package/dist/components/grading/SingleLineAnswer.d.ts.map +1 -0
- package/dist/components/grading/SingleLineAnswer.js +23 -0
- package/dist/components/grading/SingleLineAnswer.js.map +1 -0
- package/dist/components/grading/TextAnswer.d.ts +7 -0
- package/dist/components/grading/TextAnswer.d.ts.map +1 -0
- package/dist/components/grading/TextAnswer.js +53 -0
- package/dist/components/grading/TextAnswer.js.map +1 -0
- package/dist/components/grading/editAnnotations.d.ts +26 -0
- package/dist/components/grading/editAnnotations.d.ts.map +1 -0
- package/dist/components/grading/editAnnotations.js +177 -0
- package/dist/components/grading/editAnnotations.js.map +1 -0
- package/dist/components/grading/internal/AnnotationList.d.ts +5 -0
- package/dist/components/grading/internal/AnnotationList.d.ts.map +1 -0
- package/dist/components/grading/internal/AnnotationList.js +43 -0
- package/dist/components/grading/internal/AnnotationList.js.map +1 -0
- package/dist/components/grading/internal/QuestionAutoScore.d.ts +10 -0
- package/dist/components/grading/internal/QuestionAutoScore.d.ts.map +1 -0
- package/dist/components/grading/internal/QuestionAutoScore.js +17 -0
- package/dist/components/grading/internal/QuestionAutoScore.js.map +1 -0
- package/dist/components/grading/internal/QuestionManualScore.d.ts +12 -0
- package/dist/components/grading/internal/QuestionManualScore.d.ts.map +1 -0
- package/dist/components/grading/internal/QuestionManualScore.js +61 -0
- package/dist/components/grading/internal/QuestionManualScore.js.map +1 -0
- package/dist/components/grading/internal/QuestionScoresContainer.d.ts +10 -0
- package/dist/components/grading/internal/QuestionScoresContainer.d.ts.map +1 -0
- package/dist/components/grading/internal/QuestionScoresContainer.js +12 -0
- package/dist/components/grading/internal/QuestionScoresContainer.js.map +1 -0
- package/dist/components/grading/largeImageDetector.d.ts +3 -0
- package/dist/components/grading/largeImageDetector.d.ts.map +1 -0
- package/dist/components/grading/largeImageDetector.js +43 -0
- package/dist/components/grading/largeImageDetector.js.map +1 -0
- package/dist/components/grading/largeImageResizer.d.ts +2 -0
- package/dist/components/grading/largeImageResizer.d.ts.map +1 -0
- package/dist/components/grading/largeImageResizer.js +33 -0
- package/dist/components/grading/largeImageResizer.js.map +1 -0
- package/dist/components/results/Results2.d.ts +15 -0
- package/dist/components/results/Results2.d.ts.map +1 -0
- package/dist/components/results/Results2.js +79 -0
- package/dist/components/results/Results2.js.map +1 -0
- package/dist/components/results/internal/AnnotationList.d.ts +1 -1
- package/dist/components/results/internal/AnnotationList.d.ts.map +1 -1
- package/dist/components/results/internal/AnnotationList.js +3 -14
- package/dist/components/results/internal/AnnotationList.js.map +1 -1
- package/dist/components/shared/AnnotationListComponent.d.ts +1 -0
- package/dist/components/shared/AnnotationListComponent.d.ts.map +1 -0
- package/dist/components/shared/AnnotationListComponent.js +2 -0
- package/dist/components/shared/AnnotationListComponent.js.map +1 -0
- package/dist/components/shared/AnnotationLists.d.ts +13 -0
- package/dist/components/shared/AnnotationLists.d.ts.map +1 -0
- package/dist/components/shared/AnnotationLists.js +17 -0
- package/dist/components/shared/AnnotationLists.js.map +1 -0
- package/dist/editAnnotations.d.ts +2 -0
- package/dist/editAnnotations.d.ts.map +1 -0
- package/dist/editAnnotations.js +8 -0
- package/dist/editAnnotations.js.map +1 -0
- package/dist/editAnnotationsOld.d.ts +3 -0
- package/dist/editAnnotationsOld.d.ts.map +1 -0
- package/dist/editAnnotationsOld.js +340 -0
- package/dist/editAnnotationsOld.js.map +1 -0
- package/dist/i18n/fi-FI.d.ts +1 -0
- package/dist/i18n/fi-FI.d.ts.map +1 -1
- package/dist/i18n/fi-FI.js +1 -0
- package/dist/i18n/fi-FI.js.map +1 -1
- package/dist/i18n/index.d.ts +1 -0
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/sv-FI.d.ts.map +1 -1
- package/dist/i18n/sv-FI.js +1 -0
- package/dist/i18n/sv-FI.js.map +1 -1
- package/dist/main-bundle.js +1 -1
- package/dist/main.css +1 -1
- package/dist/renderAnnotations.d.ts +6 -2
- package/dist/renderAnnotations.d.ts.map +1 -1
- package/dist/renderAnnotations.js +61 -41
- package/dist/renderAnnotations.js.map +1 -1
- package/package.json +2 -2
package/dist/main.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@font-face{font-family:Noto Sans;font-style:normal;font-weight:300;src:url(assets/NotoSans-Light.woff2) format("woff2"),url(assets/NotoSans-Light.woff) format("woff"),url(assets/NotoSans-Light.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:300;src:url(assets/NotoSans-LightItalic.woff2) format("woff2"),url(assets/NotoSans-LightItalic.woff) format("woff"),url(assets/NotoSans-LightItalic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:400;src:url(assets/NotoSans-Regular.woff2) format("woff2"),url(assets/NotoSans-Regular.woff) format("woff"),url(assets/NotoSans-Regular.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:400;src:url(assets/NotoSans-Italic.woff2) format("woff2"),url(assets/NotoSans-Italic.woff) format("woff"),url(assets/NotoSans-Italic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:700;src:url(assets/NotoSans-Bold.woff2) format("woff2"),url(assets/NotoSans-Bold.woff) format("woff"),url(assets/NotoSans-Bold.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:700;src:url(assets/NotoSans-BoldItalic.woff2) format("woff2"),url(assets/NotoSans-BoldItalic.woff) format("woff"),url(assets/NotoSans-BoldItalic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:600;src:url(assets/NotoSans-SemiBold.woff2) format("woff2"),url(assets/NotoSans-SemiBold.woff) format("woff"),url(assets/NotoSans-SemiBold.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:600;src:url(assets/NotoSans-SemiBoldItalic.woff2) format("woff2"),url(assets/NotoSans-SemiBoldItalic.woff) format("woff"),url(assets/NotoSans-SemiBoldItalic.ttf) format("truetype")}@font-face{font-family:Noto Mono;font-style:normal;font-weight:400;src:url(assets/NotoMono.woff2) format("woff2"),url(assets/NotoMono.woff) format("woff"),url(assets/NotoMono.ttf) format("truetype")}@font-face{font-family:Symbola;src:url(assets/Symbola.eot);src:local("Symbola Regular"),local("Symbola"),url(assets/Symbola.woff2) format("woff2"),url(assets/Symbola.woff) format("woff"),url(assets/Symbola.ttf) format("truetype"),url(assets/Symbola.svg#Symbola) format("svg")}.mq-editable-field,.mq-editable-field .mq-cursor{display:-moz-inline-box;display:inline-block}.mq-editable-field .mq-cursor{border-left:1px solid #000;margin-left:-1px;padding:0;position:relative;z-index:1}.mq-editable-field .mq-cursor.mq-blink{visibility:hidden}.mq-editable-field,.mq-math-mode .mq-editable-field{border:1px solid gray}.mq-editable-field.mq-focused,.mq-math-mode .mq-editable-field.mq-focused{border-color:#709ac0;border-radius:1px;box-shadow:0 0 1px 2px #8bd,inset 0 0 2px 0 #6ae}.mq-math-mode .mq-editable-field{margin:1px}.mq-editable-field .mq-latex-command-input{border:1px solid gray;color:inherit;font-family:Courier New,monospace;margin-left:2px;margin-right:1px;padding-right:1px}.mq-editable-field .mq-latex-command-input.mq-empty{background:transparent}.mq-editable-field .mq-latex-command-input.mq-hasCursor{border-color:ActiveBorder}.mq-editable-field .mq-cursor:only-child:after,.mq-editable-field .mq-textarea+.mq-cursor:last-child:after,.mq-editable-field.mq-empty:after,.mq-editable-field.mq-text-mode:after,.mq-math-mode .mq-empty:after{content:"c";visibility:hidden}.mq-editable-field .mq-text-mode .mq-cursor:only-child:after{content:""}.mq-editable-field.mq-text-mode{overflow-x:auto;overflow-y:hidden}.mq-math-mode .mq-root-block,.mq-root-block{box-sizing:border-box;display:-moz-inline-box;display:inline-block;overflow:hidden;padding:2px;vertical-align:middle;white-space:nowrap;width:100%}.mq-math-mode{font-feature-settings:normal;font-size:115%;font-style:normal;font-variant:normal;font-weight:400;line-height:1}.mq-math-mode,.mq-math-mode .mq-non-leaf,.mq-math-mode .mq-scaled{display:-moz-inline-box;display:inline-block}.mq-math-mode .mq-nonSymbola,.mq-math-mode .mq-text-mode,.mq-math-mode var{font-family:Times New Roman,Symbola,serif;line-height:.9}.mq-math-mode *{border-color:#000;box-sizing:border-box;font-size:inherit;line-height:inherit;margin:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mq-math-mode .mq-empty{background:#ccc}.mq-math-mode .mq-empty.mq-root-block,.mq-math-mode.mq-empty{background:transparent}.mq-math-mode .mq-text-mode{display:inline-block;white-space:pre}.mq-math-mode .mq-text-mode.mq-hasCursor{box-shadow:inset 0 .1em .2em #a9a9a9;margin:0 -.1em;min-width:1ex;padding:0 .1em}.mq-math-mode .mq-font{font:1em Times New Roman,Symbola,serif}.mq-math-mode .mq-font *{font-family:inherit;font-style:inherit}.mq-math-mode b,.mq-math-mode b.mq-font{font-weight:bolder}.mq-math-mode i,.mq-math-mode i.mq-font,.mq-math-mode var{font-style:italic}.mq-math-mode var.mq-f{margin-left:.1em;margin-right:.2em}.mq-math-mode .mq-roman var.mq-f{margin:0}.mq-math-mode big{font-size:200%}.mq-math-mode .mq-int>big,.mq-math-mode .mq-intsub>big{display:inline-block;transform:scaleX(.7);vertical-align:-.16em}.mq-math-mode .mq-int>.mq-supsub,.mq-math-mode .mq-intsub>.mq-supsub{font-size:80%;padding-right:.2em;vertical-align:-1.1em}.mq-math-mode .mq-int>.mq-supsub>.mq-sup>.mq-sup-inner,.mq-math-mode .mq-intsub>.mq-supsub>.mq-sup>.mq-sup-inner{vertical-align:1.3em}.mq-math-mode .mq-int>.mq-supsub>.mq-sub,.mq-math-mode .mq-intsub>.mq-supsub>.mq-sub{margin-left:-.35em}.mq-math-mode .mq-roman{font-style:normal}.mq-math-mode .mq-sans-serif{font-family:sans-serif,Symbola,serif}.mq-math-mode .mq-monospace{font-family:monospace,Symbola,serif}.mq-math-mode .mq-mathbb .mq-original{display:none}.mq-math-mode .mq-overarrow,.mq-math-mode .mq-overline{border-top:1px solid #000;margin-top:1px}.mq-math-mode .mq-underarrow,.mq-math-mode .mq-underline{border-bottom:1px solid #000;margin-bottom:1px}.mq-math-mode .mq-binary-operator{display:-moz-inline-box;display:inline-block;padding:0 .2em}.mq-math-mode .mq-supsub{font-size:90%;text-align:left;vertical-align:-.5em}.mq-math-mode .mq-supsub.mq-sup-only{vertical-align:.5em}.mq-math-mode .mq-supsub.mq-sup-only .mq-sup{display:inline-block;vertical-align:text-bottom}.mq-math-mode .mq-supsub .mq-sup{display:block}.mq-math-mode .mq-supsub .mq-sub{display:block;float:left}.mq-math-mode .mq-supsub .mq-binary-operator{padding:0 .1em}.mq-math-mode .mq-supsub .mq-fraction{font-size:70%}.mq-math-mode .mq-nthroot{font-size:80%;margin-left:.2em;margin-right:-.6em;min-width:.5em;vertical-align:.8em}.mq-math-mode .mq-paren{padding:0 .1em;transform-origin:center .06em;vertical-align:top}.mq-math-mode .mq-paren.mq-ghost{color:silver}.mq-math-mode .mq-paren+span{margin-bottom:.1em;margin-top:.1em}.mq-math-mode .mq-array{text-align:center;vertical-align:middle}.mq-math-mode .mq-array>span{display:block}.mq-math-mode .mq-operator-name{font-family:Symbola,Times New Roman,serif;font-style:normal;line-height:.9}.mq-math-mode var.mq-operator-name.mq-first{padding-left:.2em}.mq-math-mode .mq-supsub.mq-after-operator-name,.mq-math-mode var.mq-operator-name.mq-last{padding-right:.2em}.mq-math-mode .mq-fraction{font-size:90%;padding:0 .2em;text-align:center;vertical-align:-.4em}.mq-math-mode .mq-fraction,.mq-math-mode .mq-large-operator,.mq-math-mode x:-moz-any-link{display:-moz-groupbox}.mq-math-mode .mq-fraction,.mq-math-mode .mq-large-operator,.mq-math-mode x:-moz-any-link,.mq-math-mode x:default{display:inline-block}.mq-math-mode .mq-denominator,.mq-math-mode .mq-dot-recurring,.mq-math-mode .mq-numerator{display:block}.mq-math-mode .mq-numerator{padding:0 .1em}.mq-math-mode .mq-denominator{border-top:1px solid;float:right;padding:.1em;width:100%}.mq-math-mode .mq-dot-recurring{height:.3em;text-align:center}.mq-math-mode .mq-sqrt-prefix{padding-top:0;position:relative;top:.1em;transform-origin:top;vertical-align:top}.mq-math-mode .mq-sqrt-stem{border-top:1px solid;margin-right:.1em;margin-top:1px;padding-left:.15em;padding-right:.2em;padding-top:1px}.mq-math-mode .mq-diacritic-above{display:block;line-height:.4em;text-align:center}.mq-math-mode .mq-diacritic-stem,.mq-math-mode .mq-hat-prefix{display:block;text-align:center}.mq-math-mode .mq-hat-prefix{line-height:.95em;margin-bottom:-.7em;transform:scaleX(1.5);-moz-transform:scaleX(1.5);-o-transform:scaleX(1.5);-webkit-transform:scaleX(1.5)}.mq-math-mode .mq-hat-stem{display:block}.mq-math-mode .mq-large-operator{padding:.2em;text-align:center;vertical-align:-.2em}.mq-math-mode .mq-large-operator .mq-from,.mq-math-mode .mq-large-operator .mq-to,.mq-math-mode .mq-large-operator big{display:block}.mq-math-mode .mq-large-operator .mq-from,.mq-math-mode .mq-large-operator .mq-to{font-size:80%}.mq-math-mode .mq-large-operator .mq-from{float:right;width:100%}.mq-math-mode,.mq-math-mode .mq-editable-field{cursor:text;font-family:Symbola,Times New Roman,serif}.mq-math-mode .mq-overarc{border-top:1px solid #000;border-top-left-radius:50% .3em;border-top-right-radius:50% .3em;margin-top:1px;padding-top:.15em}.mq-math-mode .mq-overarrow,.mq-math-mode .mq-underarrow{position:relative;text-align:center}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before,.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{display:block;font-size:.8em;line-height:1px;min-width:.8em;position:absolute}.mq-math-mode .mq-overarrow.mq-arrow-left:before,.mq-math-mode .mq-overarrow.mq-arrow-leftright:before,.mq-math-mode .mq-underarrow.mq-arrow-left:before,.mq-math-mode .mq-underarrow.mq-arrow-leftright:before{content:"\2190";left:-1px;text-align:left}.mq-math-mode .mq-overarrow.mq-arrow-leftright:after,.mq-math-mode .mq-overarrow.mq-arrow-right:before,.mq-math-mode .mq-underarrow.mq-arrow-leftright:after,.mq-math-mode .mq-underarrow.mq-arrow-right:before{content:"\2192";right:-1px;text-align:right}.mq-math-mode .mq-overarrow.mq-empty .mq-inner:before,.mq-math-mode .mq-underarrow.mq-empty .mq-inner:before{content:"c";visibility:hidden}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before{top:-1px}.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{bottom:-1px}.mq-math-mode .mq-harpoons{position:relative;text-align:center}.mq-math-mode .mq-harpoons-denominator,.mq-math-mode .mq-harpoons-harpoons,.mq-math-mode .mq-harpoons-numerator{display:block}.mq-math-mode .mq-harpoons-denominator,.mq-math-mode .mq-harpoons-numerator{font-size:70%}.mq-math-mode .mq-harpoons-numerator{padding:0 .1em}.mq-math-mode .mq-harpoons-denominator{float:right;padding:.1em;width:100%}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before,.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{line-height:0}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before{top:-.5px}.mq-math-mode.mq-arrow-both{vertical-align:text-bottom}.mq-math-mode.mq-arrow-both.mq-empty{min-height:1.23em}.mq-math-mode.mq-arrow-both.mq-empty:after{top:-.34em}.mq-math-mode.mq-arrow-both:before{filter:FlipH;-ms-filter:"FlipH";transform:scaleX(-1)}.mq-math-mode.mq-arrow-both:after{content:"\27A4";display:block;font-size:.5em;line-height:0em;position:relative;text-align:right;top:-2.3em;visibility:visible}}.mq-math-mode .mq-matrix{margin-left:.1em;margin-right:.1em;vertical-align:middle}.mq-math-mode .mq-matrix table{border-bottom:none;border-collapse:separate;border-spacing:3px;width:auto}.mq-math-mode .mq-matrix table.mq-rows-1{margin-bottom:1px;vertical-align:middle}.mq-math-mode .mq-matrix td{border:none;padding:.1em .3em;vertical-align:baseline;width:auto}.mq-math-mode .mq-matrix-array table{border-collapse:collapse}.mq-math-mode .mq-matrix-array tr:first-child td{border-bottom:.5px solid #000}.mq-math-mode .mq-matrix-array td+td{border-left:.5px solid #000}.mq-editable-field .mq-selection,.mq-editable-field .mq-selection .mq-non-leaf,.mq-editable-field .mq-selection .mq-scaled,.mq-math-mode .mq-selection,.mq-math-mode .mq-selection .mq-non-leaf,.mq-math-mode .mq-selection .mq-scaled{background:#b4d5fe!important;background:Highlight!important;border-color:HighlightText;color:HighlightText}.mq-editable-field .mq-selection .mq-matrixed,.mq-math-mode .mq-selection .mq-matrixed{background:#39f!important}.mq-editable-field .mq-selection .mq-matrixed-container,.mq-math-mode .mq-selection .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="#3399FF")!important}.mq-editable-field .mq-selection.mq-blur,.mq-editable-field .mq-selection.mq-blur .mq-matrixed,.mq-editable-field .mq-selection.mq-blur .mq-non-leaf,.mq-editable-field .mq-selection.mq-blur .mq-scaled,.mq-math-mode .mq-selection.mq-blur,.mq-math-mode .mq-selection.mq-blur .mq-matrixed,.mq-math-mode .mq-selection.mq-blur .mq-non-leaf,.mq-math-mode .mq-selection.mq-blur .mq-scaled{background:#d4d4d4!important;border-color:#000;color:#000}.mq-editable-field .mq-selection.mq-blur .mq-matrixed-container,.mq-math-mode .mq-selection.mq-blur .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="#D4D4D4")!important}.mq-editable-field .mq-textarea,.mq-math-mode .mq-textarea{position:relative;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:top}.mq-editable-field .mq-selectable,.mq-editable-field .mq-textarea *,.mq-math-mode .mq-selectable,.mq-math-mode .mq-textarea *{clip:rect(1em 1em 1em 1em);box-sizing:content-box;height:1px;position:absolute;resize:none;transform:scale(0);-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;width:1px}.mq-math-mode .mq-matrixed{background:#fff;display:-moz-inline-box;display:inline-block}.mq-math-mode .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="white");margin-top:-.1em}.render-error{color:red;font-family:sans-serif;font-size:16px;left:0;padding:5px 10px;pointer-events:none;position:absolute;top:0;z-index:2}.rich-text-editor img[src*="/math.svg"]{border:1px solid transparent;cursor:pointer;margin:4px;padding:3px 10px;vertical-align:middle}.rich-text-editor img[src$="/math.svg?latex="],.rich-text-editor img[src=""]{display:none}.rich-text-editor.rich-text-focused img[src*="/math.svg"],.rich-text-editor:focus img[src*="/math.svg"]{background:#edf9ff;border:1px solid #e6f2f8}.rich-text-editor img[src^="/screenshot"]{margin:4px}.rich-text-editor.rich-text-focused img[src^="/screenshot"],.rich-text-editor:focus img[src^="/screenshot"]{box-shadow:0 0 3px 1px rgba(0,0,0,.2)}.rich-text-editor .mq-math-mode .mq-root-block{white-space:nowrap}.rich-text-editor .mq-editable-field.mq-focused,.rich-text-editor textarea:focus,.rich-text-editor.rich-text-focused,.rich-text-editor:focus{box-shadow:none;outline:1px solid #359bb7;z-index:2}.rich-text-editor img{max-height:1000px;max-width:100%}.math-editor{box-shadow:0 0 10px 0 rgba(0,0,0,.2);display:flex;margin:10px 5px 0;position:relative;z-index:1}.math-editor textarea{border:none;border-radius:0;box-shadow:none;height:auto;resize:none}.math-editor-equation-field{background:#fff;border:none;padding:5px 10px;width:50%}.math-editor-latex-field{font-size:15px;letter-spacing:1px;padding:5px 10px;width:50%}.rich-text-editor-button{border:none;cursor:pointer;display:inline-block;padding:0;position:relative;text-align:center}.math-editor-focus .rich-text-editor-button[data-command]:hover:after,.rich-text-editor-button-action[data-command]:hover:after{background:#359bb7;border-radius:5px;color:#fff;content:attr(data-command);font-size:16px;left:50%;letter-spacing:1.5px;padding:7px 15px;position:absolute;top:100%;transform:translate(-50%);white-space:nowrap;z-index:32}.math-editor-focus .rich-text-editor-button[data-command]:hover:before,.rich-text-editor-button-action[data-command]:hover:before{border:solid;border-color:#359bb7 transparent;border-width:0 6px 6px;bottom:0;content:"";display:inline-block;left:50%;margin-left:-6px;position:absolute;z-index:99}.rich-text-editor-button[data-command]:after:hover,.rich-text-editor-button[data-command]:before:hover{display:none}.rich-text-editor-button:active{box-shadow:none}.rich-text-editor-button-action{background:none;border:none;color:#359bb7;font-family:SourceSansPro-Semibold,sans-serif;font-size:16px;font-weight:400;letter-spacing:1.5px;letter-spacing:0;line-height:22px;padding:5px 10px}.rich-text-editor-new-equation{display:block;height:35px;vertical-align:top;white-space:nowrap;width:153px}.math-editor-focus .rich-text-editor-new-equation{display:none}.rich-text-editor-tools{background:#fff;border-bottom:1px solid #dfdfdf;border-top:1px solid #dfdfdf;box-shadow:0 1px 10px 1px rgba(0,0,0,.2);left:0;line-height:0;position:fixed;right:0;top:-110px;transition:top .15s;visibility:hidden;z-index:2}.rich-text-editor-focus .rich-text-editor-show-all-characters{top:0}.rich-text-editor-tools--animating{visibility:visible}.rich-text-editor-focus .rich-text-editor-tools{top:0;visibility:visible}.rich-text-editor-toolbar-wrapper{margin:auto;max-width:990px;position:relative}.rich-text-editor-tools-row:nth-child(2n){background:#fff}.rich-text-editor-tools-row:nth-child(odd){background:#fafafa;border-top:1px solid #dfdfdf}.rich-text-editor-toolbar{display:inline-block;z-index:30}.rich-text-editor-toolbar .rich-text-editor-button{background:none;font-size:16px;position:relative}.rich-text-editor-toolbar .rich-text-editor-button:hover{background:#eee}.rich-text-editor-button-grid{height:35px;width:35px}.rich-text-editor-toolbar.rich-text-editor-toolbar-button-list img{max-height:25px;max-width:24px}.rich-text-editor-toolbar-button-list.rich-text-editor-button:hover{background:#ececec}.rich-text-editor-toolbar-characters{margin-right:30px}.rich-text-editor-toolbar-characters.rich-text-editor-toolbar-button-list .rich-text-editor-button{color:#555;font-family:Symbola,monospace}.rich-text-editor-toolbar-equation{display:none}.rich-text-editor-toolbar-equation .rich-text-editor-button:last-child{margin-right:35px}.math-editor-focus .rich-text-editor-toolbar-equation{display:inline-block}.rich-text-editor-toolbar-characters-group{display:inline-block;margin-right:12px;vertical-align:top}.rich-text-editor-toolbar-characters .rich-text-editor-button{display:none}.rich-text-editor-show-all-characters .rich-text-editor-toolbar-characters .rich-text-editor-button,.rich-text-editor-toolbar-characters .rich-text-editor-button.rich-text-editor-characters-popular{display:inline-block}.rich-text-editor-characters-expand-collapse{background:url(assets/expand.svg) 50% 50% no-repeat;border:none;bottom:0;cursor:pointer;display:inline-block;font-family:"SansSerif",serif;height:35px;margin-right:8px;padding-top:4px;position:absolute;right:35px;top:0;width:20px}.rich-text-editor-show-all-characters .rich-text-editor-characters-expand-collapse{background-image:url(assets/collapse.svg)}.rich-text-editor-overlay-open{overflow-y:hidden}.rich-text-editor-overlay{background:rgba(0,0,0,.5);bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:101}.rich-text-editor-overlay-modal{background:#fff;line-height:1.5rem;margin:auto;max-width:860px;min-height:40%;outline:none;padding:2rem;position:relative}.rich-text-editor-close-overlay-button{background:url(assets/closeButton.svg) no-repeat 50% 50%;border:0;cursor:pointer;height:25px;position:absolute;right:20px;top:20px;width:25px}.rich-text-editor-close-overlay-button:hover{opacity:.5}.rich-text-editor-hidden{display:none}.rich-text-editor-help-button{background:url(assets/helpButton.svg) no-repeat 50% 50%;border:none;cursor:pointer;display:block;height:35px;position:absolute;right:0;top:0;width:35px}.rich-text-editor-undo-redo-wrapper{bottom:0;display:inline-flex;position:absolute;right:0}.rich-text-editor-toolbar .rich-text-editor-undo-redo,.rich-text-editor-toolbar .rich-text-editor-undo-redo:hover{background-position:50% 50%;background-repeat:no-repeat;border:none;cursor:pointer;height:35px;width:35px}.rich-text-editor-toolbar .rich-text-editor-undo-button,.rich-text-editor-toolbar .rich-text-editor-undo-button:hover{background-image:url(assets/undoButton.svg);margin-right:5px}.rich-text-editor-toolbar .rich-text-editor-redo-button,.rich-text-editor-toolbar .rich-text-editor-redo-button:hover{background-image:url(assets/redoButton.svg)}.rich-text-editor-undo-redo:disabled{filter:grayscale(100%);pointer-events:none}.rich-text-editor-modal-columns{display:flex}.rich-text-editor-modal-column{margin:0 1rem}.rich-text-editor-modal-column-1{flex:1;white-space:nowrap}.rich-text-editor-modal-column-2{flex:2}.rich-text-editor-modal-column h3{font-size:18px;font-weight:700;margin-top:0}.rich-text-editor-help-shortcuts{border-spacing:0 4px;width:100%}.rich-text-editor-help-shortcuts th{font-weight:400;text-align:left}.rich-text-editor-help-shortcuts td{text-align:right}.rich-text-editor-help-key{background:#fff;border-radius:4px;box-shadow:0 0 0 1px rgba(0,0,0,.3);color:#000;display:inline-block;font-family:monospace;line-height:1.3;margin:0 4px;min-width:15px;padding:0 4px;text-align:center;text-transform:uppercase;vertical-align:text-top}.rich-text-editor-help-shortcuts td .rich-text-editor-help-button{padding:1px;width:100%}@media (min-width:1279px){.rich-text-editor-new-equation{left:-153px;position:absolute}.rich-text-editor-tools-button-wrapper{position:absolute;top:0;width:100%}.rich-text-editor-tools{top:-60px}}@media print{.rich-text-editor-focus .rich-text-editor-tools{display:none}}.e-exam .e-section{box-shadow:0 0 1px 1px rgba(0,0,0,.08)}.e-exam .e-section+.e-section{margin-top:2rem}.e-exam .e-section>:last-child{margin-bottom:0}.attachments-attachment+.attachments-attachment:before{border:0;border-top:1px solid #ddd;box-shadow:0 -1px 1px .5px #f0f0f0;content:"";display:block;margin-bottom:3rem;margin-left:-3rem;margin-right:-3rem}.attachments{margin-top:2rem}.e-exam .e-checkbox,.e-exam .e-radio-button{height:1rem;margin:.25rem 0;padding:0;width:1rem}.e-exam .e-correct-answer-left{border-left:.5rem solid #5acd46;margin-left:-1.25rem;padding-left:.75rem}.e-exam .e-correct-answer-bottom{border-bottom:.5rem solid #5acd46;border-left:0;padding-bottom:.5rem}.e-exam .e-dropdown-answer{display:inline-block;max-width:100%;position:relative}.e-exam .e-dropdown-answer__answered{border:1px solid #000;padding:0 .25rem}.e-exam .e-dropdown-answer__answered--correct{border-bottom:1px solid #5acd46;box-shadow:inset 0 -4px 0 -2px #5acd46}.e-exam .e-dropdown-answer__answered--wrong{border-bottom:1px solid red;box-shadow:inset 0 -4px 0 -2px red}.e-exam .e-dropdown-answer__correct{border-bottom:1px solid #5acd46;box-shadow:inset 0 -4px 0 -2px #5acd46;font-style:italic;padding:0 .25rem}.e-exam .e-dropdown-answer__label{max-width:100%}.e-exam .e-dropdown-answer__toggle-button{max-width:100%;min-height:1.5rem;outline:none}.e-exam .e-dropdown-answer__toggle-button:after{border:1px solid #307f99;border-radius:4px;bottom:1px;content:"";display:block;left:0;position:absolute;right:0;top:1px}.e-exam .e-dropdown-answer__toggle-button:focus:after,.e-exam .e-dropdown-answer__toggle-button:hover:after{box-shadow:0 0 1px 1px #207b90}.e-exam .e-dropdown-answer__toggle-button--open:after{border-bottom-left-radius:0;border-bottom-right-radius:0}.e-exam .e-dropdown-answer__toggle-icon{align-items:center;border-bottom-right-radius:4px;border-left:1px solid #307f99;border-top-right-radius:4px;bottom:1px;display:flex;justify-content:center;position:absolute;right:0;top:1px;width:1.5rem}.e-exam .e-dropdown-answer__menu{border:1px solid #307f99;outline:none;position:absolute;top:calc(100% - 2px);visibility:hidden;width:100%;z-index:1}.e-exam .e-dropdown-answer__menu--open{visibility:visible}.e-exam .e-dropdown-answer__menu-item-inner{display:table}.e-exam .e-dropdown-answer .e-formula svg{max-width:inherit}.e-exam{color:#282828;font-family:Noto Sans,sans-serif;font-size:1rem;line-height:1.5rem;margin:0 auto;max-width:65rem;width:100%}.e-exam *{box-sizing:border-box}.e-footer{bottom:0;position:fixed;right:0;z-index:1}.external-material-list{border-left:.5rem solid #307f99;padding-left:1.25rem}.external-material-list h4.external-material-title{margin-bottom:0}.e-hints{height:100%;max-height:100vh;overflow:auto;position:sticky;top:0}.e-hints__hint{border-left:.25rem solid transparent;color:#585858;cursor:pointer;padding-left:1rem}.e-hints__hint--focused{border-left-color:#307f99;color:inherit}.exam-question-title{position:relative}.exam-question-title__display-number--indented{left:-4em;position:absolute;text-align:right;white-space:pre;width:4em}.e-text-answer-display-number{margin-right:.125rem}.text-answer{border:1px solid transparent;border-bottom:none;border-radius:.25rem;box-shadow:inset 0 0 0 1.5px #aaa;outline:none}.text-answer:focus{border-color:#307f99;box-shadow:0 0 0 1px #307f99,0 1px 0 1px #307f99}.text-answer--single-line{font-family:Noto Sans,sans-serif;font-size:1rem;height:1.5rem;line-height:1.5rem;max-width:100%;min-width:8rem;padding:0 .5rem 2px;vertical-align:baseline}.text-answer--single-line:focus{position:relative}.text-answer--rich-text{font-family:Noto Sans,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.5rem;min-height:calc(6rem + 2px);overflow-y:hidden;padding:.75rem 1rem;resize:none;width:100%;word-break:break-word}.text-answer--rich-text:focus{outline:none}.text-answer--rich-text[aria-invalid=true]{border-color:#9e0000;box-shadow:0 0 0 1px #9e0000,0 1px 0 1px #9e0000}.error-indicator{border-radius:8px 8px 0 0;box-shadow:0 -2px 4px rgba(0,0,0,.15)}.e-progress-bar{border:1px solid #aaa;border-radius:4px;height:3rem}.e-progress-bar__fill{background-color:#307f99;border-radius:4px;height:100%;transform:scaleX(0);transform-origin:left;transition:transform linear;width:100%}.e-progress-bar__fill--animating{transform:scaleX(1)}.save-indicator{background:#fff;border-radius:8px 0 0 0;box-shadow:0 0 4px 0 rgba(0,0,0,.3);color:#585858;display:inline-block;opacity:.8;vertical-align:bottom;z-index:1}.save-indicator .save-indicator-text{opacity:1;transition:opacity .3s}.save-indicator .save-indicator-text--saving{opacity:0}.e-grading-instruction-recording{border:1px solid #307f99;border-radius:8px}.e-result-scorecount{clear:right;margin-right:-9rem;position:relative;width:8rem}.e-result-scorecount-border-wrap{border-left:1px solid #aaa;padding-left:1.5rem}.e-result-scorecount-multiline-answer{clear:right;height:0;left:1rem;margin:0;overflow:visible;position:relative;white-space:nowrap;width:0}.e-exam .e-result-scorecount-sup{left:.25rem;line-height:1rem;min-width:1rem;position:absolute;text-align:right;top:0}.e-results-section-wrapper{padding-right:9rem}.e-result-scorecount-empty{border-bottom:2px solid #333;display:inline-block;height:1ex;position:relative;top:2px;width:1.5ch}table td .e-result-scorecount{margin-right:0}.e-multiline-results-text-answer{border-left:2px solid #aaa;word-break:break-word}.e-multiline-results-text-answer img{max-width:100%;padding:.25rem}.e-multiline-results-text-answer img[alt]{vertical-align:middle}.e-formula svg{max-width:100%}.e-image-overlay__images-wrapper{position:relative}.e-image-overlay__image-absolute{left:0;position:absolute;right:0;top:0}.e-exam .e-score{background:rgba(0,0,0,.05);border-radius:1.5rem;box-shadow:inset 0 0 .25px 1px rgba(0,0,0,.15);padding:0 .5rem .0625rem}.e-exam .e-score--large{padding:0 .625rem .125rem}.e-exam .e-score--inline{background:none;box-shadow:none;color:#585858;letter-spacing:-.1em;line-height:0;margin:0 .125em;padding:0}.e-exam .table-of-contents--score-column{text-align:right;width:4rem}.e-exam .toc-section-header{margin-bottom:0}.e-exam .responsive-media-container{display:inline-block;margin:0;vertical-align:top;width:100%}.e-exam .responsive-media-container--bordered{border:1px solid #f0f0f0;border-radius:4px;padding:.5rem}.e-exam .e-choice-answer-option--selected .responsive-media-container--bordered{border-color:#307f99;box-shadow:0 0 0 1px #307f99,inset 0 0 0 1px #307f99}.e-exam .responsive-media-container__inner{display:block;overflow:hidden;position:relative;width:100%}.e-exam .responsive-media-container__inner img,.e-exam .responsive-media-container__inner video{display:block;left:0;max-width:100%;position:absolute;top:0}.e-exam .responsive-media-container__inner .e-zoomable{cursor:zoom-in}.restricted-audio-player{border:1px solid #307f99;border-radius:8px;color:#307f99}.restricted-audio-player--disabled{border-color:#aaa;color:#aaa}.restricted-audio-player__play{background-color:inherit;border:none;color:inherit;cursor:pointer;font-size:1.5rem;height:2rem;padding:0;width:2rem}.restricted-audio-player__play--playing{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='24' xml:space='preserve'%3E%3Crect y='8' width='5' height='16' rx='2' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='16;8;16' dur='1.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='8;16;8' dur='1.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3Crect x='7' width='5' height='24' rx='20' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='24;12;24' dur='1.5s' begin='0.3s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='0;12;0' dur='1.5s' begin='0.3s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3Crect x='14' y='8' width='5' height='16' rx='2' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='16;8;16' dur='1.5s' begin='0.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='8;16;8' dur='1.5s' begin='0.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;cursor:default}.restricted-audio-player__play:disabled{cursor:default}.restricted-audio-player__duration{color:#282828}.e-exam .e-text-center{text-align:center}.e-exam .e-text-left{text-align:left}.e-exam .e-text-right{text-align:right}.e-exam .e-text-justify{text-align:justify}.e-exam .e-text-top{vertical-align:top}.e-exam .e-text-bottom{vertical-align:bottom}.e-exam .e-block{display:block}.e-exam .e-inline{display:inline}.e-exam .e-inline-block{display:inline-block}.e-exam .e-float-left{float:left}.e-exam .e-float-right{float:right}.e-exam .e-clearfix:after{clear:both;content:"";display:block}.e-exam .e-crossfade-leave{opacity:1}.e-exam .e-crossfade-leave.e-crossfade-leave-active{opacity:0;transition:opacity .5s ease}.e-exam .e-crossfade-enter{opacity:0}.e-exam .e-crossfade-enter.e-crossfade-enter-active{opacity:1;transition:opacity .5s ease}.e-annotation-wrapper{display:inline-block;max-width:100%;position:relative}.e-annotation{position:relative}.e-annotation--pregrading{background-color:rgba(241,34,40,.2)}.e-annotation--censoring{background-color:rgba(28,135,177,.2)}.e-annotation--shape{min-height:4px;min-width:4px;position:absolute}.e-annotation__index{text-shadow:1px 1px #fefefe}.e-annotation__index--text{position:relative}.e-annotation__index--text:after{content:attr(data-content);position:absolute;top:-.125rem;white-space:nowrap}.e-annotation__index--shape{position:absolute;right:0;top:-.5rem;transform:translateX(100%)}.e-exam .e-button{background-color:#307f99;border:none;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2);color:#fefefe;cursor:pointer;font-size:1.125rem;line-height:1.5rem;margin:0;min-width:6rem;padding:.5rem 1rem}.e-exam .e-button:hover{background:#207b90}.e-exam .e-button:disabled{background:#c8c8c8;box-shadow:none;cursor:auto;opacity:.6}.e-exam .e-button-plain{background:none;border:none;display:inline;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;outline:none;padding:0;text-align:inherit;text-transform:inherit}.e-exam .e-color-black{color:#282828}.e-exam .e-bg-color-black{background-color:#282828}.e-exam .e-color-off-white{color:#fefefe}.e-exam .e-bg-color-off-white{background-color:#fefefe}.e-exam .e-color-grey{color:#aaa}.e-exam .e-bg-color-grey{background-color:#aaa}.e-exam .e-color-error{color:#9e0000}.e-exam .e-bg-color-error{background-color:#9e0000}.e-exam .e-color-darkgrey{color:#585858}.e-exam .e-bg-color-darkgrey{background-color:#585858}.e-exam .e-color-midgrey{color:#ddd}.e-exam .e-bg-color-midgrey{background-color:#ddd}.e-exam .e-color-lightgrey{color:#f0f0f0}.e-exam .e-bg-color-lightgrey{background-color:#f0f0f0}.e-exam .e-color-tinted-white{color:#f5fbfe}.e-exam .e-bg-color-tinted-white{background-color:#f5fbfe}.e-exam .e-color-lightblue{color:#e0f4fe}.e-exam .e-bg-color-lightblue{background-color:#e0f4fe}.e-exam .e-color-lighterblue{color:#f0faff}.e-exam .e-bg-color-lighterblue{background-color:#f0faff}.e-exam .e-color-lightblue-shade{color:#c6e6f2}.e-exam .e-bg-color-lightblue-shade{background-color:#c6e6f2}.e-exam .e-color-lightturquoise{color:#88d0d0}.e-exam .e-bg-color-lightturquoise{background-color:#88d0d0}.e-exam .e-color-link{color:#307f99}.e-exam .e-bg-color-link{background-color:#307f99}.e-exam .e-color-link-hover{color:#207b90}.e-exam .e-bg-color-link-hover{background-color:#207b90}.e-exam .e-color-correct-answer{color:#5acd46}.e-exam .e-bg-color-correct-answer{background-color:#5acd46}.e-exam .e-color-wrong-answer{color:red}.e-exam .e-bg-color-wrong-answer{background-color:red}.e-exam .e-columns{display:flex}.e-exam .e-columns--center-v{align-items:center}.e-exam .e-columns--bottom-v{align-items:flex-end}.e-exam .e-columns--inline{display:inline-flex}.e-exam .e-columns--center-h{justify-content:center}.e-exam .e-column{flex:1 1 0}.e-exam .e-column--auto{flex:auto}.e-exam .e-column--narrow{flex:none}.e-exam .e-column+.e-column{margin-left:1rem}@media (max-width:832px){.e-exam .e-column+.e-column{margin-left:.5rem}}.e-exam .e-column+.e-column--gapless{margin-left:0}.e-exam .e-column--1{flex:none;width:8.33333333%}.e-exam .e-column--2{flex:none;width:16.66666667%}.e-exam .e-column--3{flex:none;width:25%}.e-exam .e-column--4{flex:none;width:33.33333333%}.e-exam .e-column--5{flex:none;width:41.66666667%}.e-exam .e-column--6{flex:none;width:50%}.e-exam .e-column--7{flex:none;width:58.33333333%}.e-exam .e-column--8{flex:none;width:66.66666667%}.e-exam .e-column--9{flex:none;width:75%}.e-exam .e-column--10{flex:none;width:83.33333333%}.e-exam .e-column--11{flex:none;width:91.66666667%}.e-exam .e-column--12{flex:none;width:100%}@media print{.k-exam-html{font-size:12px;line-height:18px}.k-exam-html .k-exam-body{background-color:#fff;margin:0}.k-exam-html .k-exam-body--attachments{background-color:#fff}.k-exam-html .k-exam-body .rich-text-editor-tools{display:none!important}.k-exam-content{display:block}.k-finish-exam-container{box-shadow:none}}.e-exam .e-link-button,.e-exam a{background-color:inherit;border:none;color:#307f99;cursor:pointer;padding:0;text-decoration:none}.e-exam .e-link-button:hover,.e-exam a:hover{color:#207b90;text-decoration:underline}.e-exam .e-list-plain{list-style:none}.e-exam .e-list-lower-alpha{list-style-type:lower-alpha}.e-exam .e-list-upper-alpha{list-style-type:upper-alpha}.e-exam .e-list-lower-roman{list-style-type:lower-roman}.e-exam .e-list-upper-roman{list-style-type:upper-roman}.e-exam .e-list-data{border-collapse:separate;border-spacing:0 .5rem;display:table;list-style:none;width:100%}.e-exam .e-list-data li:before{content:attr(data-list-number);display:table-cell;padding-right:1rem;white-space:nowrap;width:1%}.e-exam .e-list-data li{display:table-row;width:100%}.e-exam li{margin:0 0 .5rem}.e-exam .e-list-wordcloud{display:flex;flex-wrap:wrap;list-style:none;padding:0}.e-exam .e-list-wordcloud>li{background:rgba(0,0,0,.03);border:1px solid #aaa;border-radius:.25rem;margin:.25rem;padding:.25rem .5rem}.e-exam .e-illustration-right{float:right;margin-bottom:1rem;margin-left:1rem}.e-exam .notification{background:#f0faff;border:1px solid #88d0d0;border-radius:.25rem;margin-bottom:2rem;padding:1rem}.e-exam .notification--inline{display:inline-block}@media print{html{font-size:12px;line-height:18px}body{background:none!important}.audio-player,.rich-text-editor-tools,.toolbar{display:none!important}.e-exam{color:#000;max-width:none!important}.e-exam .save-indicator{display:none}.e-exam .text-answer{border:1px solid #000;box-shadow:none}.e-exam button{background:none!important;color:#000!important}.e-exam .e-section{box-shadow:0 0 0 0!important;padding:0!important}.e-exam .e-result-scorecount-shortcode{display:none!important}.e-dropdown-answer{line-height:18px;margin:0;vertical-align:middle}.e-dropdown-answer__toggle-button{display:none!important}.e-dropdown-answer__toggle-button:after{border:0;content:"";height:0;width:0}.e-dropdown-answer__menu{align-items:center;border:0!important;display:flex;flex-flow:wrap;line-height:16px;position:relative!important;transform:none!important;visibility:visible!important}.e-dropdown-answer__menu-item .e-formula{display:inline-block;padding:2px}.e-dropdown-answer__menu-item:first-child{display:none!important}.e-dropdown-answer__menu-item{align-items:center;align-self:stretch;border:1px dotted gray;border-right:none;display:flex;margin:0 -1px 1px 0;padding:0 4px!important}.e-dropdown-answer__menu-item:last-child{border-right:1px dotted gray}.e-dropdown-answer__menu-item--selected{background:none;border-bottom:1px solid #000;box-shadow:inset 0 -1px 0 -.5px #000}}.rich-text-editor-new-equation,.rich-text-editor-overlay{font-family:Noto Sans,sans-serif;font-size:1rem;font-weight:400;line-height:1.5rem;white-space:normal}.rich-text-editor-overlay h3{font-size:1.3125rem;font-weight:600;line-height:2rem;margin-bottom:1rem;margin-top:0}.e-exam .e-width-full{width:100%}.e-exam .e-width-threequarters{width:75%}.e-exam .e-width-half{width:50%}.e-exam .e-width-third{width:33.33333333%}.e-exam .e-width-quarter{width:25%}.e-exam .e-pad-0{padding:0}.e-exam .e-mrg-0{margin:0}.e-exam .e-pad-l-0{padding-left:0}.e-exam .e-mrg-l-0{margin-left:0}.e-exam .e-pad-r-0{padding-right:0}.e-exam .e-mrg-r-0{margin-right:0}.e-exam .e-pad-t-0{padding-top:0}.e-exam .e-mrg-t-0{margin-top:0}.e-exam .e-pad-b-0{padding-bottom:0}.e-exam .e-mrg-b-0{margin-bottom:0}.e-exam .e-pad-x-0{padding-left:0;padding-right:0}.e-exam .e-mrg-x-0{margin-left:0;margin-right:0}.e-exam .e-pad-y-0{padding-bottom:0;padding-top:0}.e-exam .e-mrg-y-0{margin-bottom:0;margin-top:0}.e-exam .e-pad-1{padding:.5rem}.e-exam .e-mrg-1{margin:.5rem}.e-exam .e-pad-l-1{padding-left:.5rem}.e-exam .e-mrg-l-1{margin-left:.5rem}.e-exam .e-pad-r-1{padding-right:.5rem}.e-exam .e-mrg-r-1{margin-right:.5rem}.e-exam .e-pad-t-1{padding-top:.5rem}.e-exam .e-mrg-t-1{margin-top:.5rem}.e-exam .e-pad-b-1{padding-bottom:.5rem}.e-exam .e-mrg-b-1{margin-bottom:.5rem}.e-exam .e-pad-x-1{padding-left:.5rem;padding-right:.5rem}.e-exam .e-mrg-x-1{margin-left:.5rem;margin-right:.5rem}.e-exam .e-pad-y-1{padding-bottom:.5rem;padding-top:.5rem}.e-exam .e-mrg-y-1{margin-bottom:.5rem;margin-top:.5rem}.e-exam .e-pad-2{padding:1rem}.e-exam .e-mrg-2{margin:1rem}.e-exam .e-pad-l-2{padding-left:1rem}.e-exam .e-mrg-l-2{margin-left:1rem}.e-exam .e-pad-r-2{padding-right:1rem}.e-exam .e-mrg-r-2{margin-right:1rem}.e-exam .e-pad-t-2{padding-top:1rem}.e-exam .e-mrg-t-2{margin-top:1rem}.e-exam .e-pad-b-2{padding-bottom:1rem}.e-exam .e-mrg-b-2{margin-bottom:1rem}.e-exam .e-pad-x-2{padding-left:1rem;padding-right:1rem}.e-exam .e-mrg-x-2{margin-left:1rem;margin-right:1rem}.e-exam .e-pad-y-2{padding-bottom:1rem;padding-top:1rem}.e-exam .e-mrg-y-2{margin-bottom:1rem;margin-top:1rem}.e-exam .e-pad-3{padding:1.5rem}.e-exam .e-mrg-3{margin:1.5rem}.e-exam .e-pad-l-3{padding-left:1.5rem}.e-exam .e-mrg-l-3{margin-left:1.5rem}.e-exam .e-pad-r-3{padding-right:1.5rem}.e-exam .e-mrg-r-3{margin-right:1.5rem}.e-exam .e-pad-t-3{padding-top:1.5rem}.e-exam .e-mrg-t-3{margin-top:1.5rem}.e-exam .e-pad-b-3{padding-bottom:1.5rem}.e-exam .e-mrg-b-3{margin-bottom:1.5rem}.e-exam .e-pad-x-3{padding-left:1.5rem;padding-right:1.5rem}.e-exam .e-mrg-x-3{margin-left:1.5rem;margin-right:1.5rem}.e-exam .e-pad-y-3{padding-bottom:1.5rem;padding-top:1.5rem}.e-exam .e-mrg-y-3{margin-bottom:1.5rem;margin-top:1.5rem}.e-exam .e-pad-4{padding:2rem}.e-exam .e-mrg-4{margin:2rem}.e-exam .e-pad-l-4{padding-left:2rem}.e-exam .e-mrg-l-4{margin-left:2rem}.e-exam .e-pad-r-4{padding-right:2rem}.e-exam .e-mrg-r-4{margin-right:2rem}.e-exam .e-pad-t-4{padding-top:2rem}.e-exam .e-mrg-t-4{margin-top:2rem}.e-exam .e-pad-b-4{padding-bottom:2rem}.e-exam .e-mrg-b-4{margin-bottom:2rem}.e-exam .e-pad-x-4{padding-left:2rem;padding-right:2rem}.e-exam .e-mrg-x-4{margin-left:2rem;margin-right:2rem}.e-exam .e-pad-y-4{padding-bottom:2rem;padding-top:2rem}.e-exam .e-mrg-y-4{margin-bottom:2rem;margin-top:2rem}.e-exam .e-pad-5{padding:2.5rem}.e-exam .e-mrg-5{margin:2.5rem}.e-exam .e-pad-l-5{padding-left:2.5rem}.e-exam .e-mrg-l-5{margin-left:2.5rem}.e-exam .e-pad-r-5{padding-right:2.5rem}.e-exam .e-mrg-r-5{margin-right:2.5rem}.e-exam .e-pad-t-5{padding-top:2.5rem}.e-exam .e-mrg-t-5{margin-top:2.5rem}.e-exam .e-pad-b-5{padding-bottom:2.5rem}.e-exam .e-mrg-b-5{margin-bottom:2.5rem}.e-exam .e-pad-x-5{padding-left:2.5rem;padding-right:2.5rem}.e-exam .e-mrg-x-5{margin-left:2.5rem;margin-right:2.5rem}.e-exam .e-pad-y-5{padding-bottom:2.5rem;padding-top:2.5rem}.e-exam .e-mrg-y-5{margin-bottom:2.5rem;margin-top:2.5rem}.e-exam .e-pad-6{padding:3rem}.e-exam .e-mrg-6{margin:3rem}.e-exam .e-pad-l-6{padding-left:3rem}.e-exam .e-mrg-l-6{margin-left:3rem}.e-exam .e-pad-r-6{padding-right:3rem}.e-exam .e-mrg-r-6{margin-right:3rem}.e-exam .e-pad-t-6{padding-top:3rem}.e-exam .e-mrg-t-6{margin-top:3rem}.e-exam .e-pad-b-6{padding-bottom:3rem}.e-exam .e-mrg-b-6{margin-bottom:3rem}.e-exam .e-pad-x-6{padding-left:3rem;padding-right:3rem}.e-exam .e-mrg-x-6{margin-left:3rem;margin-right:3rem}.e-exam .e-pad-y-6{padding-bottom:3rem;padding-top:3rem}.e-exam .e-mrg-y-6{margin-bottom:3rem;margin-top:3rem}.e-exam .e-pad-7{padding:3.5rem}.e-exam .e-mrg-7{margin:3.5rem}.e-exam .e-pad-l-7{padding-left:3.5rem}.e-exam .e-mrg-l-7{margin-left:3.5rem}.e-exam .e-pad-r-7{padding-right:3.5rem}.e-exam .e-mrg-r-7{margin-right:3.5rem}.e-exam .e-pad-t-7{padding-top:3.5rem}.e-exam .e-mrg-t-7{margin-top:3.5rem}.e-exam .e-pad-b-7{padding-bottom:3.5rem}.e-exam .e-mrg-b-7{margin-bottom:3.5rem}.e-exam .e-pad-x-7{padding-left:3.5rem;padding-right:3.5rem}.e-exam .e-mrg-x-7{margin-left:3.5rem;margin-right:3.5rem}.e-exam .e-pad-y-7{padding-bottom:3.5rem;padding-top:3.5rem}.e-exam .e-mrg-y-7{margin-bottom:3.5rem;margin-top:3.5rem}.e-exam .e-pad-8{padding:4rem}.e-exam .e-mrg-8{margin:4rem}.e-exam .e-pad-l-8{padding-left:4rem}.e-exam .e-mrg-l-8{margin-left:4rem}.e-exam .e-pad-r-8{padding-right:4rem}.e-exam .e-mrg-r-8{margin-right:4rem}.e-exam .e-pad-t-8{padding-top:4rem}.e-exam .e-mrg-t-8{margin-top:4rem}.e-exam .e-pad-b-8{padding-bottom:4rem}.e-exam .e-mrg-b-8{margin-bottom:4rem}.e-exam .e-pad-x-8{padding-left:4rem;padding-right:4rem}.e-exam .e-mrg-x-8{margin-left:4rem;margin-right:4rem}.e-exam .e-pad-y-8{padding-bottom:4rem;padding-top:4rem}.e-exam .e-mrg-y-8{margin-bottom:4rem;margin-top:4rem}.e-exam caption{font-size:1.125rem;font-weight:600;line-height:1.5rem;margin-bottom:.5rem;text-align:left}.e-table{border-collapse:collapse;border-spacing:0;margin-bottom:1rem}.e-table td,.e-table th{border:1px solid #aaa;padding:.25rem .5rem;text-align:left}.e-table--borderless td,.e-table--borderless th{border:none}.e-table--zebra tbody tr:nth-child(odd){background:rgba(0,0,0,.06)}.e-exam{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;text-size-adjust:none;font-weight:400}.e-exam .e-sans-serif{font-family:Noto Sans,sans-serif}.e-exam .e-monospace,.e-exam code,.e-exam pre{font-family:Noto Mono,monospace}.e-exam button,.e-exam input,.e-exam select,.e-exam textarea{font-family:Noto Sans,sans-serif}.e-exam mark{color:inherit}.e-exam .e-light{font-weight:300}.e-exam .e-normal{font-weight:400}.e-exam .e-semibold{font-weight:600}.e-exam dl,.e-exam ol,.e-exam p,.e-exam ul{font-size:inherit;font-weight:inherit;margin-bottom:1rem;margin-top:0}.e-exam sub,.e-exam sup{font-size:.75em;line-height:0}.e-exam .e-font-size-xs{font-size:.75rem;line-height:1rem}.e-exam .e-font-size-s{font-size:.875rem;line-height:1.5rem}.e-exam .e-font-size-m{font-size:1rem;line-height:1.5rem}.e-exam .e-font-size-l{font-size:1.125rem;line-height:1.5rem}.e-exam .e-font-size-xl{font-size:1.3125rem;line-height:2rem}.e-exam .e-font-size-xxl{font-size:1.875rem;line-height:2.5rem}.e-exam .e-font-size-xxxl{font-size:2.5rem;line-height:3rem}.e-exam .e-line-height-l{line-height:2rem}.e-exam h1{font-size:2.5rem;font-weight:300;line-height:3rem}.e-exam h1,.e-exam h2{margin-bottom:2rem;margin-top:0}.e-exam h2{font-size:1.875rem;font-weight:400;line-height:2.5rem;white-space:normal}.e-exam h3{font-size:1.3125rem;font-weight:600;line-height:2rem;margin-bottom:1rem;margin-top:0}.e-exam h4{font-size:1.125rem}.e-exam h4,.e-exam h5{font-weight:600;line-height:1.5rem;margin-bottom:1rem;margin-top:0}.e-exam h5,.e-exam h6{font-size:1rem}.e-exam h6{font-weight:600;line-height:1.5rem;margin-bottom:1rem;margin-top:0}.e-exam .e-underline{text-decoration:underline}.e-exam b,.e-exam strong,.e-exam th{font-weight:600}.e-exam .e-exam-separator{border:0;border-top:1px solid #c6e6f2;box-shadow:0 -1px 1px .5px #e0f4fe;margin:0 -3rem 2rem}.e-exam .e-italic{font-style:italic}.e-exam blockquote{border-left:.5rem solid #ddd;padding:0 1.25rem}.e-exam .e-text-gap{box-shadow:inset 0 -4px 0 -3px #111;display:inline-block;margin:0 .125rem;min-width:10rem;text-align:center}.e-exam .e-nowrap{white-space:nowrap}.e-exam .e-pre-wrap{white-space:pre-wrap}.e-exam .e-normal{white-space:normal}.e-exam .e-break-word{word-break:break-word}.e-exam .e-line-through{text-decoration:line-through}.e-exam .e-ellipsis{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-exam .e-bordered{border:1px solid #aaa}.e-exam .e-rounded{border-radius:4px}.e-exam .e-scrollable-x{overflow-x:auto}.e-exam .e-box{background-color:#f0f0f0;border:1px solid #aaa;border-radius:4px;padding:1rem}.e-exam .e-screen-reader-only{word-wrap:normal!important;clip:rect(1px,1px,1px,1px);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px}.e-exam .e-pointer{cursor:pointer}
|
1
|
+
@font-face{font-family:Noto Sans;font-style:normal;font-weight:300;src:url(assets/NotoSans-Light.woff2) format("woff2"),url(assets/NotoSans-Light.woff) format("woff"),url(assets/NotoSans-Light.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:300;src:url(assets/NotoSans-LightItalic.woff2) format("woff2"),url(assets/NotoSans-LightItalic.woff) format("woff"),url(assets/NotoSans-LightItalic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:400;src:url(assets/NotoSans-Regular.woff2) format("woff2"),url(assets/NotoSans-Regular.woff) format("woff"),url(assets/NotoSans-Regular.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:400;src:url(assets/NotoSans-Italic.woff2) format("woff2"),url(assets/NotoSans-Italic.woff) format("woff"),url(assets/NotoSans-Italic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:700;src:url(assets/NotoSans-Bold.woff2) format("woff2"),url(assets/NotoSans-Bold.woff) format("woff"),url(assets/NotoSans-Bold.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:700;src:url(assets/NotoSans-BoldItalic.woff2) format("woff2"),url(assets/NotoSans-BoldItalic.woff) format("woff"),url(assets/NotoSans-BoldItalic.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:normal;font-weight:600;src:url(assets/NotoSans-SemiBold.woff2) format("woff2"),url(assets/NotoSans-SemiBold.woff) format("woff"),url(assets/NotoSans-SemiBold.ttf) format("truetype")}@font-face{font-family:Noto Sans;font-style:italic;font-weight:600;src:url(assets/NotoSans-SemiBoldItalic.woff2) format("woff2"),url(assets/NotoSans-SemiBoldItalic.woff) format("woff"),url(assets/NotoSans-SemiBoldItalic.ttf) format("truetype")}@font-face{font-family:Noto Mono;font-style:normal;font-weight:400;src:url(assets/NotoMono.woff2) format("woff2"),url(assets/NotoMono.woff) format("woff"),url(assets/NotoMono.ttf) format("truetype")}@font-face{font-family:Symbola;src:url(assets/Symbola.eot);src:local("Symbola Regular"),local("Symbola"),url(assets/Symbola.woff2) format("woff2"),url(assets/Symbola.woff) format("woff"),url(assets/Symbola.ttf) format("truetype"),url(assets/Symbola.svg#Symbola) format("svg")}.mq-editable-field,.mq-editable-field .mq-cursor{display:-moz-inline-box;display:inline-block}.mq-editable-field .mq-cursor{border-left:1px solid #000;margin-left:-1px;padding:0;position:relative;z-index:1}.mq-editable-field .mq-cursor.mq-blink{visibility:hidden}.mq-editable-field,.mq-math-mode .mq-editable-field{border:1px solid gray}.mq-editable-field.mq-focused,.mq-math-mode .mq-editable-field.mq-focused{border-color:#709ac0;border-radius:1px;box-shadow:0 0 1px 2px #8bd,inset 0 0 2px 0 #6ae}.mq-math-mode .mq-editable-field{margin:1px}.mq-editable-field .mq-latex-command-input{border:1px solid gray;color:inherit;font-family:Courier New,monospace;margin-left:2px;margin-right:1px;padding-right:1px}.mq-editable-field .mq-latex-command-input.mq-empty{background:transparent}.mq-editable-field .mq-latex-command-input.mq-hasCursor{border-color:ActiveBorder}.mq-editable-field .mq-cursor:only-child:after,.mq-editable-field .mq-textarea+.mq-cursor:last-child:after,.mq-editable-field.mq-empty:after,.mq-editable-field.mq-text-mode:after,.mq-math-mode .mq-empty:after{content:"c";visibility:hidden}.mq-editable-field .mq-text-mode .mq-cursor:only-child:after{content:""}.mq-editable-field.mq-text-mode{overflow-x:auto;overflow-y:hidden}.mq-math-mode .mq-root-block,.mq-root-block{box-sizing:border-box;display:-moz-inline-box;display:inline-block;overflow:hidden;padding:2px;vertical-align:middle;white-space:nowrap;width:100%}.mq-math-mode{font-feature-settings:normal;font-size:115%;font-style:normal;font-variant:normal;font-weight:400;line-height:1}.mq-math-mode,.mq-math-mode .mq-non-leaf,.mq-math-mode .mq-scaled{display:-moz-inline-box;display:inline-block}.mq-math-mode .mq-nonSymbola,.mq-math-mode .mq-text-mode,.mq-math-mode var{font-family:Times New Roman,Symbola,serif;line-height:.9}.mq-math-mode *{border-color:#000;box-sizing:border-box;font-size:inherit;line-height:inherit;margin:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mq-math-mode .mq-empty{background:#ccc}.mq-math-mode .mq-empty.mq-root-block,.mq-math-mode.mq-empty{background:transparent}.mq-math-mode .mq-text-mode{display:inline-block;white-space:pre}.mq-math-mode .mq-text-mode.mq-hasCursor{box-shadow:inset 0 .1em .2em #a9a9a9;margin:0 -.1em;min-width:1ex;padding:0 .1em}.mq-math-mode .mq-font{font:1em Times New Roman,Symbola,serif}.mq-math-mode .mq-font *{font-family:inherit;font-style:inherit}.mq-math-mode b,.mq-math-mode b.mq-font{font-weight:bolder}.mq-math-mode i,.mq-math-mode i.mq-font,.mq-math-mode var{font-style:italic}.mq-math-mode var.mq-f{margin-left:.1em;margin-right:.2em}.mq-math-mode .mq-roman var.mq-f{margin:0}.mq-math-mode big{font-size:200%}.mq-math-mode .mq-int>big,.mq-math-mode .mq-intsub>big{display:inline-block;transform:scaleX(.7);vertical-align:-.16em}.mq-math-mode .mq-int>.mq-supsub,.mq-math-mode .mq-intsub>.mq-supsub{font-size:80%;padding-right:.2em;vertical-align:-1.1em}.mq-math-mode .mq-int>.mq-supsub>.mq-sup>.mq-sup-inner,.mq-math-mode .mq-intsub>.mq-supsub>.mq-sup>.mq-sup-inner{vertical-align:1.3em}.mq-math-mode .mq-int>.mq-supsub>.mq-sub,.mq-math-mode .mq-intsub>.mq-supsub>.mq-sub{margin-left:-.35em}.mq-math-mode .mq-roman{font-style:normal}.mq-math-mode .mq-sans-serif{font-family:sans-serif,Symbola,serif}.mq-math-mode .mq-monospace{font-family:monospace,Symbola,serif}.mq-math-mode .mq-mathbb .mq-original{display:none}.mq-math-mode .mq-overarrow,.mq-math-mode .mq-overline{border-top:1px solid #000;margin-top:1px}.mq-math-mode .mq-underarrow,.mq-math-mode .mq-underline{border-bottom:1px solid #000;margin-bottom:1px}.mq-math-mode .mq-binary-operator{display:-moz-inline-box;display:inline-block;padding:0 .2em}.mq-math-mode .mq-supsub{font-size:90%;text-align:left;vertical-align:-.5em}.mq-math-mode .mq-supsub.mq-sup-only{vertical-align:.5em}.mq-math-mode .mq-supsub.mq-sup-only .mq-sup{display:inline-block;vertical-align:text-bottom}.mq-math-mode .mq-supsub .mq-sup{display:block}.mq-math-mode .mq-supsub .mq-sub{display:block;float:left}.mq-math-mode .mq-supsub .mq-binary-operator{padding:0 .1em}.mq-math-mode .mq-supsub .mq-fraction{font-size:70%}.mq-math-mode .mq-nthroot{font-size:80%;margin-left:.2em;margin-right:-.6em;min-width:.5em;vertical-align:.8em}.mq-math-mode .mq-paren{padding:0 .1em;transform-origin:center .06em;vertical-align:top}.mq-math-mode .mq-paren.mq-ghost{color:silver}.mq-math-mode .mq-paren+span{margin-bottom:.1em;margin-top:.1em}.mq-math-mode .mq-array{text-align:center;vertical-align:middle}.mq-math-mode .mq-array>span{display:block}.mq-math-mode .mq-operator-name{font-family:Symbola,Times New Roman,serif;font-style:normal;line-height:.9}.mq-math-mode var.mq-operator-name.mq-first{padding-left:.2em}.mq-math-mode .mq-supsub.mq-after-operator-name,.mq-math-mode var.mq-operator-name.mq-last{padding-right:.2em}.mq-math-mode .mq-fraction{font-size:90%;padding:0 .2em;text-align:center;vertical-align:-.4em}.mq-math-mode .mq-fraction,.mq-math-mode .mq-large-operator,.mq-math-mode x:-moz-any-link{display:-moz-groupbox}.mq-math-mode .mq-fraction,.mq-math-mode .mq-large-operator,.mq-math-mode x:-moz-any-link,.mq-math-mode x:default{display:inline-block}.mq-math-mode .mq-denominator,.mq-math-mode .mq-dot-recurring,.mq-math-mode .mq-numerator{display:block}.mq-math-mode .mq-numerator{padding:0 .1em}.mq-math-mode .mq-denominator{border-top:1px solid;float:right;padding:.1em;width:100%}.mq-math-mode .mq-dot-recurring{height:.3em;text-align:center}.mq-math-mode .mq-sqrt-prefix{padding-top:0;position:relative;top:.1em;transform-origin:top;vertical-align:top}.mq-math-mode .mq-sqrt-stem{border-top:1px solid;margin-right:.1em;margin-top:1px;padding-left:.15em;padding-right:.2em;padding-top:1px}.mq-math-mode .mq-diacritic-above{display:block;line-height:.4em;text-align:center}.mq-math-mode .mq-diacritic-stem,.mq-math-mode .mq-hat-prefix{display:block;text-align:center}.mq-math-mode .mq-hat-prefix{line-height:.95em;margin-bottom:-.7em;transform:scaleX(1.5);-moz-transform:scaleX(1.5);-o-transform:scaleX(1.5);-webkit-transform:scaleX(1.5)}.mq-math-mode .mq-hat-stem{display:block}.mq-math-mode .mq-large-operator{padding:.2em;text-align:center;vertical-align:-.2em}.mq-math-mode .mq-large-operator .mq-from,.mq-math-mode .mq-large-operator .mq-to,.mq-math-mode .mq-large-operator big{display:block}.mq-math-mode .mq-large-operator .mq-from,.mq-math-mode .mq-large-operator .mq-to{font-size:80%}.mq-math-mode .mq-large-operator .mq-from{float:right;width:100%}.mq-math-mode,.mq-math-mode .mq-editable-field{cursor:text;font-family:Symbola,Times New Roman,serif}.mq-math-mode .mq-overarc{border-top:1px solid #000;border-top-left-radius:50% .3em;border-top-right-radius:50% .3em;margin-top:1px;padding-top:.15em}.mq-math-mode .mq-overarrow,.mq-math-mode .mq-underarrow{position:relative;text-align:center}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before,.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{display:block;font-size:.8em;line-height:1px;min-width:.8em;position:absolute}.mq-math-mode .mq-overarrow.mq-arrow-left:before,.mq-math-mode .mq-overarrow.mq-arrow-leftright:before,.mq-math-mode .mq-underarrow.mq-arrow-left:before,.mq-math-mode .mq-underarrow.mq-arrow-leftright:before{content:"\2190";left:-1px;text-align:left}.mq-math-mode .mq-overarrow.mq-arrow-leftright:after,.mq-math-mode .mq-overarrow.mq-arrow-right:before,.mq-math-mode .mq-underarrow.mq-arrow-leftright:after,.mq-math-mode .mq-underarrow.mq-arrow-right:before{content:"\2192";right:-1px;text-align:right}.mq-math-mode .mq-overarrow.mq-empty .mq-inner:before,.mq-math-mode .mq-underarrow.mq-empty .mq-inner:before{content:"c";visibility:hidden}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before{top:-1px}.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{bottom:-1px}.mq-math-mode .mq-harpoons{position:relative;text-align:center}.mq-math-mode .mq-harpoons-denominator,.mq-math-mode .mq-harpoons-harpoons,.mq-math-mode .mq-harpoons-numerator{display:block}.mq-math-mode .mq-harpoons-denominator,.mq-math-mode .mq-harpoons-numerator{font-size:70%}.mq-math-mode .mq-harpoons-numerator{padding:0 .1em}.mq-math-mode .mq-harpoons-denominator{float:right;padding:.1em;width:100%}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before,.mq-math-mode .mq-underarrow:after,.mq-math-mode .mq-underarrow:before{line-height:0}.mq-math-mode .mq-overarrow:after,.mq-math-mode .mq-overarrow:before{top:-.5px}.mq-math-mode.mq-arrow-both{vertical-align:text-bottom}.mq-math-mode.mq-arrow-both.mq-empty{min-height:1.23em}.mq-math-mode.mq-arrow-both.mq-empty:after{top:-.34em}.mq-math-mode.mq-arrow-both:before{filter:FlipH;-ms-filter:"FlipH";transform:scaleX(-1)}.mq-math-mode.mq-arrow-both:after{content:"\27A4";display:block;font-size:.5em;line-height:0em;position:relative;text-align:right;top:-2.3em;visibility:visible}}.mq-math-mode .mq-matrix{margin-left:.1em;margin-right:.1em;vertical-align:middle}.mq-math-mode .mq-matrix table{border-bottom:none;border-collapse:separate;border-spacing:3px;width:auto}.mq-math-mode .mq-matrix table.mq-rows-1{margin-bottom:1px;vertical-align:middle}.mq-math-mode .mq-matrix td{border:none;padding:.1em .3em;vertical-align:baseline;width:auto}.mq-math-mode .mq-matrix-array table{border-collapse:collapse}.mq-math-mode .mq-matrix-array tr:first-child td{border-bottom:.5px solid #000}.mq-math-mode .mq-matrix-array td+td{border-left:.5px solid #000}.mq-editable-field .mq-selection,.mq-editable-field .mq-selection .mq-non-leaf,.mq-editable-field .mq-selection .mq-scaled,.mq-math-mode .mq-selection,.mq-math-mode .mq-selection .mq-non-leaf,.mq-math-mode .mq-selection .mq-scaled{background:#b4d5fe!important;background:Highlight!important;border-color:HighlightText;color:HighlightText}.mq-editable-field .mq-selection .mq-matrixed,.mq-math-mode .mq-selection .mq-matrixed{background:#39f!important}.mq-editable-field .mq-selection .mq-matrixed-container,.mq-math-mode .mq-selection .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="#3399FF")!important}.mq-editable-field .mq-selection.mq-blur,.mq-editable-field .mq-selection.mq-blur .mq-matrixed,.mq-editable-field .mq-selection.mq-blur .mq-non-leaf,.mq-editable-field .mq-selection.mq-blur .mq-scaled,.mq-math-mode .mq-selection.mq-blur,.mq-math-mode .mq-selection.mq-blur .mq-matrixed,.mq-math-mode .mq-selection.mq-blur .mq-non-leaf,.mq-math-mode .mq-selection.mq-blur .mq-scaled{background:#d4d4d4!important;border-color:#000;color:#000}.mq-editable-field .mq-selection.mq-blur .mq-matrixed-container,.mq-math-mode .mq-selection.mq-blur .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="#D4D4D4")!important}.mq-editable-field .mq-textarea,.mq-math-mode .mq-textarea{position:relative;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:top}.mq-editable-field .mq-selectable,.mq-editable-field .mq-textarea *,.mq-math-mode .mq-selectable,.mq-math-mode .mq-textarea *{clip:rect(1em 1em 1em 1em);box-sizing:content-box;height:1px;position:absolute;resize:none;transform:scale(0);-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;width:1px}.mq-math-mode .mq-matrixed{background:#fff;display:-moz-inline-box;display:inline-block}.mq-math-mode .mq-matrixed-container{filter:progid:DXImageTransform.Microsoft.Chroma(color="white");margin-top:-.1em}.render-error{color:red;font-family:sans-serif;font-size:16px;left:0;padding:5px 10px;pointer-events:none;position:absolute;top:0;z-index:2}.rich-text-editor img[src*="/math.svg"]{border:1px solid transparent;cursor:pointer;margin:4px;padding:3px 10px;vertical-align:middle}.rich-text-editor img[src$="/math.svg?latex="],.rich-text-editor img[src=""]{display:none}.rich-text-editor.rich-text-focused img[src*="/math.svg"],.rich-text-editor:focus img[src*="/math.svg"]{background:#edf9ff;border:1px solid #e6f2f8}.rich-text-editor img[src^="/screenshot"]{margin:4px}.rich-text-editor.rich-text-focused img[src^="/screenshot"],.rich-text-editor:focus img[src^="/screenshot"]{box-shadow:0 0 3px 1px rgba(0,0,0,.2)}.rich-text-editor .mq-math-mode .mq-root-block{white-space:nowrap}.rich-text-editor .mq-editable-field.mq-focused,.rich-text-editor textarea:focus,.rich-text-editor.rich-text-focused,.rich-text-editor:focus{box-shadow:none;outline:1px solid #359bb7;z-index:2}.rich-text-editor img{max-height:1000px;max-width:100%}.math-editor{box-shadow:0 0 10px 0 rgba(0,0,0,.2);display:flex;margin:10px 5px 0;position:relative;z-index:1}.math-editor textarea{border:none;border-radius:0;box-shadow:none;height:auto;resize:none}.math-editor-equation-field{background:#fff;border:none;padding:5px 10px;width:50%}.math-editor-latex-field{font-size:15px;letter-spacing:1px;padding:5px 10px;width:50%}.rich-text-editor-button{border:none;cursor:pointer;display:inline-block;padding:0;position:relative;text-align:center}.math-editor-focus .rich-text-editor-button[data-command]:hover:after,.rich-text-editor-button-action[data-command]:hover:after{background:#359bb7;border-radius:5px;color:#fff;content:attr(data-command);font-size:16px;left:50%;letter-spacing:1.5px;padding:7px 15px;position:absolute;top:100%;transform:translate(-50%);white-space:nowrap;z-index:32}.math-editor-focus .rich-text-editor-button[data-command]:hover:before,.rich-text-editor-button-action[data-command]:hover:before{border:solid;border-color:#359bb7 transparent;border-width:0 6px 6px;bottom:0;content:"";display:inline-block;left:50%;margin-left:-6px;position:absolute;z-index:99}.rich-text-editor-button[data-command]:after:hover,.rich-text-editor-button[data-command]:before:hover{display:none}.rich-text-editor-button:active{box-shadow:none}.rich-text-editor-button-action{background:none;border:none;color:#359bb7;font-family:SourceSansPro-Semibold,sans-serif;font-size:16px;font-weight:400;letter-spacing:1.5px;letter-spacing:0;line-height:22px;padding:5px 10px}.rich-text-editor-new-equation{display:block;height:35px;vertical-align:top;white-space:nowrap;width:153px}.math-editor-focus .rich-text-editor-new-equation{display:none}.rich-text-editor-tools{background:#fff;border-bottom:1px solid #dfdfdf;border-top:1px solid #dfdfdf;box-shadow:0 1px 10px 1px rgba(0,0,0,.2);left:0;line-height:0;position:fixed;right:0;top:-110px;transition:top .15s;visibility:hidden;z-index:2}.rich-text-editor-focus .rich-text-editor-show-all-characters{top:0}.rich-text-editor-tools--animating{visibility:visible}.rich-text-editor-focus .rich-text-editor-tools{top:0;visibility:visible}.rich-text-editor-toolbar-wrapper{margin:auto;max-width:990px;position:relative}.rich-text-editor-tools-row:nth-child(2n){background:#fff}.rich-text-editor-tools-row:nth-child(odd){background:#fafafa;border-top:1px solid #dfdfdf}.rich-text-editor-toolbar{display:inline-block;z-index:30}.rich-text-editor-toolbar .rich-text-editor-button{background:none;font-size:16px;position:relative}.rich-text-editor-toolbar .rich-text-editor-button:hover{background:#eee}.rich-text-editor-button-grid{height:35px;width:35px}.rich-text-editor-toolbar.rich-text-editor-toolbar-button-list img{max-height:25px;max-width:24px}.rich-text-editor-toolbar-button-list.rich-text-editor-button:hover{background:#ececec}.rich-text-editor-toolbar-characters{margin-right:30px}.rich-text-editor-toolbar-characters.rich-text-editor-toolbar-button-list .rich-text-editor-button{color:#555;font-family:Symbola,monospace}.rich-text-editor-toolbar-equation{display:none}.rich-text-editor-toolbar-equation .rich-text-editor-button:last-child{margin-right:35px}.math-editor-focus .rich-text-editor-toolbar-equation{display:inline-block}.rich-text-editor-toolbar-characters-group{display:inline-block;margin-right:12px;vertical-align:top}.rich-text-editor-toolbar-characters .rich-text-editor-button{display:none}.rich-text-editor-show-all-characters .rich-text-editor-toolbar-characters .rich-text-editor-button,.rich-text-editor-toolbar-characters .rich-text-editor-button.rich-text-editor-characters-popular{display:inline-block}.rich-text-editor-characters-expand-collapse{background:url(assets/expand.svg) 50% 50% no-repeat;border:none;bottom:0;cursor:pointer;display:inline-block;font-family:"SansSerif",serif;height:35px;margin-right:8px;padding-top:4px;position:absolute;right:35px;top:0;width:20px}.rich-text-editor-show-all-characters .rich-text-editor-characters-expand-collapse{background-image:url(assets/collapse.svg)}.rich-text-editor-overlay-open{overflow-y:hidden}.rich-text-editor-overlay{background:rgba(0,0,0,.5);bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:101}.rich-text-editor-overlay-modal{background:#fff;line-height:1.5rem;margin:auto;max-width:860px;min-height:40%;outline:none;padding:2rem;position:relative}.rich-text-editor-close-overlay-button{background:url(assets/closeButton.svg) no-repeat 50% 50%;border:0;cursor:pointer;height:25px;position:absolute;right:20px;top:20px;width:25px}.rich-text-editor-close-overlay-button:hover{opacity:.5}.rich-text-editor-hidden{display:none}.rich-text-editor-help-button{background:url(assets/helpButton.svg) no-repeat 50% 50%;border:none;cursor:pointer;display:block;height:35px;position:absolute;right:0;top:0;width:35px}.rich-text-editor-undo-redo-wrapper{bottom:0;display:inline-flex;position:absolute;right:0}.rich-text-editor-toolbar .rich-text-editor-undo-redo,.rich-text-editor-toolbar .rich-text-editor-undo-redo:hover{background-position:50% 50%;background-repeat:no-repeat;border:none;cursor:pointer;height:35px;width:35px}.rich-text-editor-toolbar .rich-text-editor-undo-button,.rich-text-editor-toolbar .rich-text-editor-undo-button:hover{background-image:url(assets/undoButton.svg);margin-right:5px}.rich-text-editor-toolbar .rich-text-editor-redo-button,.rich-text-editor-toolbar .rich-text-editor-redo-button:hover{background-image:url(assets/redoButton.svg)}.rich-text-editor-undo-redo:disabled{filter:grayscale(100%);pointer-events:none}.rich-text-editor-modal-columns{display:flex}.rich-text-editor-modal-column{margin:0 1rem}.rich-text-editor-modal-column-1{flex:1;white-space:nowrap}.rich-text-editor-modal-column-2{flex:2}.rich-text-editor-modal-column h3{font-size:18px;font-weight:700;margin-top:0}.rich-text-editor-help-shortcuts{border-spacing:0 4px;width:100%}.rich-text-editor-help-shortcuts th{font-weight:400;text-align:left}.rich-text-editor-help-shortcuts td{text-align:right}.rich-text-editor-help-key{background:#fff;border-radius:4px;box-shadow:0 0 0 1px rgba(0,0,0,.3);color:#000;display:inline-block;font-family:monospace;line-height:1.3;margin:0 4px;min-width:15px;padding:0 4px;text-align:center;text-transform:uppercase;vertical-align:text-top}.rich-text-editor-help-shortcuts td .rich-text-editor-help-button{padding:1px;width:100%}@media (min-width:1279px){.rich-text-editor-new-equation{left:-153px;position:absolute}.rich-text-editor-tools-button-wrapper{position:absolute;top:0;width:100%}.rich-text-editor-tools{top:-60px}}@media print{.rich-text-editor-focus .rich-text-editor-tools{display:none}}.e-exam .e-section{box-shadow:0 0 1px 1px rgba(0,0,0,.08)}.e-exam .e-section+.e-section{margin-top:2rem}.e-exam .e-section>:last-child{margin-bottom:0}.attachments-attachment+.attachments-attachment:before{border:0;border-top:1px solid #ddd;box-shadow:0 -1px 1px .5px #f0f0f0;content:"";display:block;margin-bottom:3rem;margin-left:-3rem;margin-right:-3rem}.attachments{margin-top:2rem}.e-exam .e-checkbox,.e-exam .e-radio-button{height:1rem;margin:.25rem 0;padding:0;width:1rem}.e-exam .e-correct-answer-left{border-left:.5rem solid #5acd46;margin-left:-1.25rem;padding-left:.75rem}.e-exam .e-correct-answer-bottom{border-bottom:.5rem solid #5acd46;border-left:0;padding-bottom:.5rem}.e-exam .e-dropdown-answer{display:inline-block;max-width:100%;position:relative}.e-exam .e-dropdown-answer__answered{border:1px solid #000;padding:0 .25rem}.e-exam .e-dropdown-answer__answered--correct{border-bottom:1px solid #5acd46;box-shadow:inset 0 -4px 0 -2px #5acd46}.e-exam .e-dropdown-answer__answered--wrong{border-bottom:1px solid red;box-shadow:inset 0 -4px 0 -2px red}.e-exam .e-dropdown-answer__correct{border-bottom:1px solid #5acd46;box-shadow:inset 0 -4px 0 -2px #5acd46;font-style:italic;padding:0 .25rem}.e-exam .e-dropdown-answer__label{max-width:100%}.e-exam .e-dropdown-answer__toggle-button{max-width:100%;min-height:1.5rem;outline:none}.e-exam .e-dropdown-answer__toggle-button:after{border:1px solid #307f99;border-radius:4px;bottom:1px;content:"";display:block;left:0;position:absolute;right:0;top:1px}.e-exam .e-dropdown-answer__toggle-button:focus:after,.e-exam .e-dropdown-answer__toggle-button:hover:after{box-shadow:0 0 1px 1px #207b90}.e-exam .e-dropdown-answer__toggle-button--open:after{border-bottom-left-radius:0;border-bottom-right-radius:0}.e-exam .e-dropdown-answer__toggle-icon{align-items:center;border-bottom-right-radius:4px;border-left:1px solid #307f99;border-top-right-radius:4px;bottom:1px;display:flex;justify-content:center;position:absolute;right:0;top:1px;width:1.5rem}.e-exam .e-dropdown-answer__menu{border:1px solid #307f99;outline:none;position:absolute;top:calc(100% - 2px);visibility:hidden;width:100%;z-index:1}.e-exam .e-dropdown-answer__menu--open{visibility:visible}.e-exam .e-dropdown-answer__menu-item-inner{display:table}.e-exam .e-dropdown-answer .e-formula svg{max-width:inherit}.e-exam{color:#282828;font-family:Noto Sans,sans-serif;font-size:1rem;line-height:1.5rem;margin:0 auto;max-width:65rem;width:100%}.e-exam *{box-sizing:border-box}.e-footer{bottom:0;position:fixed;right:0;z-index:1}.external-material-list{border-left:.5rem solid #307f99;padding-left:1.25rem}.external-material-list h4.external-material-title{margin-bottom:0}.e-hints{height:100%;max-height:100vh;overflow:auto;position:sticky;top:0}.e-hints__hint{border-left:.25rem solid transparent;color:#585858;cursor:pointer;padding-left:1rem}.e-hints__hint--focused{border-left-color:#307f99;color:inherit}.exam-question-title{position:relative}.exam-question-title__display-number--indented{left:-4em;position:absolute;text-align:right;white-space:pre;width:4em}.e-text-answer-display-number{margin-right:.125rem}.text-answer{border:1px solid transparent;border-bottom:none;border-radius:.25rem;box-shadow:inset 0 0 0 1.5px #aaa;outline:none}.text-answer:focus{border-color:#307f99;box-shadow:0 0 0 1px #307f99,0 1px 0 1px #307f99}.text-answer--single-line{font-family:Noto Sans,sans-serif;font-size:1rem;height:1.5rem;line-height:1.5rem;max-width:100%;min-width:8rem;padding:0 .5rem 2px;vertical-align:baseline}.text-answer--single-line:focus{position:relative}.text-answer--rich-text{font-family:Noto Sans,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.5rem;min-height:calc(6rem + 2px);overflow-y:hidden;padding:.75rem 1rem;resize:none;width:100%;word-break:break-word}.text-answer--rich-text:focus{outline:none}.text-answer--rich-text[aria-invalid=true]{border-color:#9e0000;box-shadow:0 0 0 1px #9e0000,0 1px 0 1px #9e0000}.error-indicator{border-radius:8px 8px 0 0;box-shadow:0 -2px 4px rgba(0,0,0,.15)}.e-progress-bar{border:1px solid #aaa;border-radius:4px;height:3rem}.e-progress-bar__fill{background-color:#307f99;border-radius:4px;height:100%;transform:scaleX(0);transform-origin:left;transition:transform linear;width:100%}.e-progress-bar__fill--animating{transform:scaleX(1)}.save-indicator{background:#fff;border-radius:8px 0 0 0;box-shadow:0 0 4px 0 rgba(0,0,0,.3);color:#585858;display:inline-block;opacity:.8;vertical-align:bottom;z-index:1}.save-indicator .save-indicator-text{opacity:1;transition:opacity .3s}.save-indicator .save-indicator-text--saving{opacity:0}.e-grading-instruction-recording{border:1px solid #307f99;border-radius:8px}.e-result-scorecount{clear:right;margin-right:-9rem;position:relative;width:8rem}.e-result-scorecount-border-wrap{border-left:1px solid #aaa;padding-left:1.5rem}.e-result-scorecount-multiline-answer{clear:right;height:0;left:1rem;margin:0;overflow:visible;position:relative;white-space:nowrap;width:0}.e-exam .e-result-scorecount-sup{left:.25rem;line-height:1rem;min-width:1rem;position:absolute;text-align:right;top:0}.e-results-section-wrapper{padding-right:9rem}.e-result-scorecount-empty{border-bottom:2px solid #333;display:inline-block;height:1ex;position:relative;top:2px;width:1.5ch}table td .e-result-scorecount{margin-right:0}.e-multiline-results-text-answer{border-left:2px solid #aaa;word-break:break-word}.e-multiline-results-text-answer img{max-width:100%;padding:.25rem}.e-multiline-results-text-answer img[alt]{vertical-align:middle}.e-grading-answer-wrapper{background:#fff;padding:20px;position:relative}.e-grading-answer-wrapper .e-grading-answer-popup{background:#fff;border-radius:5px;box-shadow:0 0 7px 0 rgba(74,144,226,.5);color:#333;font-size:16px;font-weight:400;padding:2px 8px;position:absolute;white-space:nowrap;z-index:300}.e-grading-answer-wrapper .e-grading-answer-popup input[type=text]{background:#fff;border:2px solid #e6e6e6;color:#333;font-family:Source Sans Pro,sans-serif;font-size:16px;font-weight:300;margin-right:4px;padding:3px}.e-grading-answer-wrapper .e-grading-answer-popup .e-grading-answer-add-annotation-button{background:#006ed2;border:0;border-radius:3px;box-shadow:2px 2px 5px rgba(0,0,0,.15);color:#fff;cursor:pointer;font-family:Source Sans Pro,sans-serif;font-size:18px;font-weight:400;line-height:26px;margin-left:5px;padding:0 8px;text-align:center}.e-grading-answer-wrapper .e-grading-answer-add-annotation{padding:8px 10px}.e-grading-answer{background:#fff;word-break:break-word}.e-grading-answer .e-annotation-wrapper{line-height:0}.e-grading-answer .e-annotation-wrapper sup{white-space:nowrap}.e-grading-answer .full-size-image{background:hsla(0,0%,100%,.667);line-height:1;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-grading-answer .full-size-image a{bottom:0;font-weight:700;position:absolute}[lang=fi-FI] .e-grading-answer .full-size-image a:after{content:"Näytä kuva täysikokoisena"}[lang=sv-FI] .e-grading-answer .full-size-image a:after{content:"Visa bilden i full storlek"}.e-grading-answer img{max-width:100%}.e-grading-answer .e-annotation-wrapper .e-annotation,.e-grading-answer img{-moz-user-drag:-moz-none;-khtml-user-drag:none;-webkit-user-drag:none;-o-user-drag:none;user-drag:none;cursor:crosshair;-moz-user-select:-moz-none;-webkit-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none}.e-grading-answer img[alt]{vertical-align:middle}.e-grading-answer-tooltip{background:#fff;position:absolute}.e-grading-answer-tooltip-remove{display:none}.editable .e-grading-answer-tooltip-remove{background:none;border:none;color:#666;cursor:pointer;display:inline;display:initial;font-size:22px;line-height:1;padding:0 5px;vertical-align:top}.editable .e-grading-answer-tooltip-remove:hover{color:#ce0000}.e-grading-answer-tooltip-label{border:1px solid transparent;margin:0 5px;padding:0 4px}.editable .e-grading-answer-tooltip-label:hover{border:1px dashed #aaa;cursor:pointer}.e-grading-answer-length{color:gray}.e-grading-answer-max-length-surplus{color:#ce0000;font-weight:600;margin-left:1ex}.e-annotation-list li:hover{color:#000;cursor:pointer}.e-grading-answer-close-popup{background:#fff;border:1px solid #aaa;border-radius:50px;bottom:100%;cursor:pointer;display:inline-block;font-size:20px;height:23px;left:100%;line-height:0;margin-bottom:-11px;margin-left:-11px;position:absolute;text-align:center;width:23px}.e-grading-answer-close-popup:hover{color:#ce0000}.e-formula svg{max-width:100%}.e-image-overlay__images-wrapper{position:relative}.e-image-overlay__image-absolute{left:0;position:absolute;right:0;top:0}.e-exam .e-score{background:rgba(0,0,0,.05);border-radius:1.5rem;box-shadow:inset 0 0 .25px 1px rgba(0,0,0,.15);padding:0 .5rem .0625rem}.e-exam .e-score--large{padding:0 .625rem .125rem}.e-exam .e-score--inline{background:none;box-shadow:none;color:#585858;letter-spacing:-.1em;line-height:0;margin:0 .125em;padding:0}.e-exam .table-of-contents--score-column{text-align:right;width:4rem}.e-exam .toc-section-header{margin-bottom:0}.e-exam .responsive-media-container{display:inline-block;margin:0;vertical-align:top;width:100%}.e-exam .responsive-media-container--bordered{border:1px solid #f0f0f0;border-radius:4px;padding:.5rem}.e-exam .e-choice-answer-option--selected .responsive-media-container--bordered{border-color:#307f99;box-shadow:0 0 0 1px #307f99,inset 0 0 0 1px #307f99}.e-exam .responsive-media-container__inner{display:block;overflow:hidden;position:relative;width:100%}.e-exam .responsive-media-container__inner img,.e-exam .responsive-media-container__inner video{display:block;left:0;max-width:100%;position:absolute;top:0}.e-exam .responsive-media-container__inner .e-zoomable{cursor:zoom-in}.restricted-audio-player{border:1px solid #307f99;border-radius:8px;color:#307f99}.restricted-audio-player--disabled{border-color:#aaa;color:#aaa}.restricted-audio-player__play{background-color:inherit;border:none;color:inherit;cursor:pointer;font-size:1.5rem;height:2rem;padding:0;width:2rem}.restricted-audio-player__play--playing{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='24' xml:space='preserve'%3E%3Crect y='8' width='5' height='16' rx='2' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='16;8;16' dur='1.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='8;16;8' dur='1.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3Crect x='7' width='5' height='24' rx='20' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='24;12;24' dur='1.5s' begin='0.3s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='0;12;0' dur='1.5s' begin='0.3s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3Crect x='14' y='8' width='5' height='16' rx='2' ry='2' fill='silver'%3E%3Canimate attributeName='height' values='16;8;16' dur='1.5s' begin='0.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3Canimate attributeName='y' values='8;16;8' dur='1.5s' begin='0.5s' repeatCount='indefinite' calcMode='spline' keyTimes='0;0.5;1' keySplines='0.3 0 0.7 1;0.3 0 0.7 1;'/%3E%3C/rect%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;cursor:default}.restricted-audio-player__play:disabled{cursor:default}.restricted-audio-player__duration{color:#282828}.e-exam .e-text-center{text-align:center}.e-exam .e-text-left{text-align:left}.e-exam .e-text-right{text-align:right}.e-exam .e-text-justify{text-align:justify}.e-exam .e-text-top{vertical-align:top}.e-exam .e-text-bottom{vertical-align:bottom}.e-exam .e-block{display:block}.e-exam .e-inline{display:inline}.e-exam .e-inline-block{display:inline-block}.e-exam .e-float-left{float:left}.e-exam .e-float-right{float:right}.e-exam .e-clearfix:after{clear:both;content:"";display:block}.e-exam .e-crossfade-leave{opacity:1}.e-exam .e-crossfade-leave.e-crossfade-leave-active{opacity:0;transition:opacity .5s ease}.e-exam .e-crossfade-enter{opacity:0}.e-exam .e-crossfade-enter.e-crossfade-enter-active{opacity:1;transition:opacity .5s ease}.e-annotation-wrapper{display:inline-block;max-width:100%;position:relative}.e-annotation{position:relative}.e-annotation--pregrading{background-color:rgba(241,34,40,.2)}.e-annotation--censoring{background-color:rgba(28,135,177,.2)}.e-annotation--shape{min-height:4px;min-width:4px;position:absolute}.e-annotation__index{text-shadow:1px 1px #fefefe}.e-annotation__index--text{position:relative}.e-annotation__index--text:after{content:attr(data-content);position:absolute;top:-.125rem;white-space:nowrap}.e-annotation__index--shape{position:absolute;right:0;top:-.5rem;transform:translateX(100%)}.e-annotation__index--shape:after{content:attr(data-content)}.e-exam .e-button{background-color:#307f99;border:none;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2);color:#fefefe;cursor:pointer;font-size:1.125rem;line-height:1.5rem;margin:0;min-width:6rem;padding:.5rem 1rem}.e-exam .e-button:hover{background:#207b90}.e-exam .e-button:disabled{background:#c8c8c8;box-shadow:none;cursor:auto;opacity:.6}.e-exam .e-button-plain{background:none;border:none;display:inline;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;outline:none;padding:0;text-align:inherit;text-transform:inherit}.e-exam .e-color-black{color:#282828}.e-exam .e-bg-color-black{background-color:#282828}.e-exam .e-color-off-white{color:#fefefe}.e-exam .e-bg-color-off-white{background-color:#fefefe}.e-exam .e-color-grey{color:#aaa}.e-exam .e-bg-color-grey{background-color:#aaa}.e-exam .e-color-error{color:#9e0000}.e-exam .e-bg-color-error{background-color:#9e0000}.e-exam .e-color-darkgrey{color:#585858}.e-exam .e-bg-color-darkgrey{background-color:#585858}.e-exam .e-color-midgrey{color:#ddd}.e-exam .e-bg-color-midgrey{background-color:#ddd}.e-exam .e-color-lightgrey{color:#f0f0f0}.e-exam .e-bg-color-lightgrey{background-color:#f0f0f0}.e-exam .e-color-tinted-white{color:#f5fbfe}.e-exam .e-bg-color-tinted-white{background-color:#f5fbfe}.e-exam .e-color-lightblue{color:#e0f4fe}.e-exam .e-bg-color-lightblue{background-color:#e0f4fe}.e-exam .e-color-lighterblue{color:#f0faff}.e-exam .e-bg-color-lighterblue{background-color:#f0faff}.e-exam .e-color-lightblue-shade{color:#c6e6f2}.e-exam .e-bg-color-lightblue-shade{background-color:#c6e6f2}.e-exam .e-color-lightturquoise{color:#88d0d0}.e-exam .e-bg-color-lightturquoise{background-color:#88d0d0}.e-exam .e-color-link{color:#307f99}.e-exam .e-bg-color-link{background-color:#307f99}.e-exam .e-color-link-hover{color:#207b90}.e-exam .e-bg-color-link-hover{background-color:#207b90}.e-exam .e-color-correct-answer{color:#5acd46}.e-exam .e-bg-color-correct-answer{background-color:#5acd46}.e-exam .e-color-wrong-answer{color:red}.e-exam .e-bg-color-wrong-answer{background-color:red}.e-exam .e-columns{display:flex}.e-exam .e-columns--center-v{align-items:center}.e-exam .e-columns--bottom-v{align-items:flex-end}.e-exam .e-columns--inline{display:inline-flex}.e-exam .e-columns--center-h{justify-content:center}.e-exam .e-column{flex:1 1 0}.e-exam .e-column--auto{flex:auto}.e-exam .e-column--narrow{flex:none}.e-exam .e-column+.e-column{margin-left:1rem}@media (max-width:832px){.e-exam .e-column+.e-column{margin-left:.5rem}}.e-exam .e-column+.e-column--gapless{margin-left:0}.e-exam .e-column--1{flex:none;width:8.33333333%}.e-exam .e-column--2{flex:none;width:16.66666667%}.e-exam .e-column--3{flex:none;width:25%}.e-exam .e-column--4{flex:none;width:33.33333333%}.e-exam .e-column--5{flex:none;width:41.66666667%}.e-exam .e-column--6{flex:none;width:50%}.e-exam .e-column--7{flex:none;width:58.33333333%}.e-exam .e-column--8{flex:none;width:66.66666667%}.e-exam .e-column--9{flex:none;width:75%}.e-exam .e-column--10{flex:none;width:83.33333333%}.e-exam .e-column--11{flex:none;width:91.66666667%}.e-exam .e-column--12{flex:none;width:100%}@media print{.k-exam-html{font-size:12px;line-height:18px}.k-exam-html .k-exam-body{background-color:#fff;margin:0}.k-exam-html .k-exam-body--attachments{background-color:#fff}.k-exam-html .k-exam-body .rich-text-editor-tools{display:none!important}.k-exam-content{display:block}.k-finish-exam-container{box-shadow:none}}.e-exam .e-link-button,.e-exam a{background-color:inherit;border:none;color:#307f99;cursor:pointer;padding:0;text-decoration:none}.e-exam .e-link-button:hover,.e-exam a:hover{color:#207b90;text-decoration:underline}.e-exam .e-list-plain{list-style:none}.e-exam .e-list-lower-alpha{list-style-type:lower-alpha}.e-exam .e-list-upper-alpha{list-style-type:upper-alpha}.e-exam .e-list-lower-roman{list-style-type:lower-roman}.e-exam .e-list-upper-roman{list-style-type:upper-roman}.e-exam .e-list-data{border-collapse:separate;border-spacing:0 .5rem;display:table;list-style:none;width:100%}.e-exam .e-list-data li:before{content:attr(data-list-number);display:table-cell;padding-right:1rem;white-space:nowrap;width:1%}.e-exam .e-list-data li{display:table-row;width:100%}.e-exam li{margin:0 0 .5rem}.e-exam .e-list-wordcloud{display:flex;flex-wrap:wrap;list-style:none;padding:0}.e-exam .e-list-wordcloud>li{background:rgba(0,0,0,.03);border:1px solid #aaa;border-radius:.25rem;margin:.25rem;padding:.25rem .5rem}.e-exam .e-illustration-right{float:right;margin-bottom:1rem;margin-left:1rem}.e-exam .notification{background:#f0faff;border:1px solid #88d0d0;border-radius:.25rem;margin-bottom:2rem;padding:1rem}.e-exam .notification--inline{display:inline-block}@media print{html{font-size:12px;line-height:18px}body{background:none!important}.audio-player,.rich-text-editor-tools,.toolbar{display:none!important}.e-exam{color:#000;max-width:none!important}.e-exam .save-indicator{display:none}.e-exam .text-answer{border:1px solid #000;box-shadow:none}.e-exam button{background:none!important;color:#000!important}.e-exam .e-section{box-shadow:0 0 0 0!important;padding:0!important}.e-exam .e-result-scorecount-shortcode{display:none!important}.e-dropdown-answer{line-height:18px;margin:0;vertical-align:middle}.e-dropdown-answer__toggle-button{display:none!important}.e-dropdown-answer__toggle-button:after{border:0;content:"";height:0;width:0}.e-dropdown-answer__menu{align-items:center;border:0!important;display:flex;flex-flow:wrap;line-height:16px;position:relative!important;transform:none!important;visibility:visible!important}.e-dropdown-answer__menu-item .e-formula{display:inline-block;padding:2px}.e-dropdown-answer__menu-item:first-child{display:none!important}.e-dropdown-answer__menu-item{align-items:center;align-self:stretch;border:1px dotted gray;border-right:none;display:flex;margin:0 -1px 1px 0;padding:0 4px!important}.e-dropdown-answer__menu-item:last-child{border-right:1px dotted gray}.e-dropdown-answer__menu-item--selected{background:none;border-bottom:1px solid #000;box-shadow:inset 0 -1px 0 -.5px #000}}.rich-text-editor-new-equation,.rich-text-editor-overlay{font-family:Noto Sans,sans-serif;font-size:1rem;font-weight:400;line-height:1.5rem;white-space:normal}.rich-text-editor-overlay h3{font-size:1.3125rem;font-weight:600;line-height:2rem;margin-bottom:1rem;margin-top:0}.e-exam .e-width-full{width:100%}.e-exam .e-width-threequarters{width:75%}.e-exam .e-width-half{width:50%}.e-exam .e-width-third{width:33.33333333%}.e-exam .e-width-quarter{width:25%}.e-exam .e-pad-0{padding:0}.e-exam .e-mrg-0{margin:0}.e-exam .e-pad-l-0{padding-left:0}.e-exam .e-mrg-l-0{margin-left:0}.e-exam .e-pad-r-0{padding-right:0}.e-exam .e-mrg-r-0{margin-right:0}.e-exam .e-pad-t-0{padding-top:0}.e-exam .e-mrg-t-0{margin-top:0}.e-exam .e-pad-b-0{padding-bottom:0}.e-exam .e-mrg-b-0{margin-bottom:0}.e-exam .e-pad-x-0{padding-left:0;padding-right:0}.e-exam .e-mrg-x-0{margin-left:0;margin-right:0}.e-exam .e-pad-y-0{padding-bottom:0;padding-top:0}.e-exam .e-mrg-y-0{margin-bottom:0;margin-top:0}.e-exam .e-pad-1{padding:.5rem}.e-exam .e-mrg-1{margin:.5rem}.e-exam .e-pad-l-1{padding-left:.5rem}.e-exam .e-mrg-l-1{margin-left:.5rem}.e-exam .e-pad-r-1{padding-right:.5rem}.e-exam .e-mrg-r-1{margin-right:.5rem}.e-exam .e-pad-t-1{padding-top:.5rem}.e-exam .e-mrg-t-1{margin-top:.5rem}.e-exam .e-pad-b-1{padding-bottom:.5rem}.e-exam .e-mrg-b-1{margin-bottom:.5rem}.e-exam .e-pad-x-1{padding-left:.5rem;padding-right:.5rem}.e-exam .e-mrg-x-1{margin-left:.5rem;margin-right:.5rem}.e-exam .e-pad-y-1{padding-bottom:.5rem;padding-top:.5rem}.e-exam .e-mrg-y-1{margin-bottom:.5rem;margin-top:.5rem}.e-exam .e-pad-2{padding:1rem}.e-exam .e-mrg-2{margin:1rem}.e-exam .e-pad-l-2{padding-left:1rem}.e-exam .e-mrg-l-2{margin-left:1rem}.e-exam .e-pad-r-2{padding-right:1rem}.e-exam .e-mrg-r-2{margin-right:1rem}.e-exam .e-pad-t-2{padding-top:1rem}.e-exam .e-mrg-t-2{margin-top:1rem}.e-exam .e-pad-b-2{padding-bottom:1rem}.e-exam .e-mrg-b-2{margin-bottom:1rem}.e-exam .e-pad-x-2{padding-left:1rem;padding-right:1rem}.e-exam .e-mrg-x-2{margin-left:1rem;margin-right:1rem}.e-exam .e-pad-y-2{padding-bottom:1rem;padding-top:1rem}.e-exam .e-mrg-y-2{margin-bottom:1rem;margin-top:1rem}.e-exam .e-pad-3{padding:1.5rem}.e-exam .e-mrg-3{margin:1.5rem}.e-exam .e-pad-l-3{padding-left:1.5rem}.e-exam .e-mrg-l-3{margin-left:1.5rem}.e-exam .e-pad-r-3{padding-right:1.5rem}.e-exam .e-mrg-r-3{margin-right:1.5rem}.e-exam .e-pad-t-3{padding-top:1.5rem}.e-exam .e-mrg-t-3{margin-top:1.5rem}.e-exam .e-pad-b-3{padding-bottom:1.5rem}.e-exam .e-mrg-b-3{margin-bottom:1.5rem}.e-exam .e-pad-x-3{padding-left:1.5rem;padding-right:1.5rem}.e-exam .e-mrg-x-3{margin-left:1.5rem;margin-right:1.5rem}.e-exam .e-pad-y-3{padding-bottom:1.5rem;padding-top:1.5rem}.e-exam .e-mrg-y-3{margin-bottom:1.5rem;margin-top:1.5rem}.e-exam .e-pad-4{padding:2rem}.e-exam .e-mrg-4{margin:2rem}.e-exam .e-pad-l-4{padding-left:2rem}.e-exam .e-mrg-l-4{margin-left:2rem}.e-exam .e-pad-r-4{padding-right:2rem}.e-exam .e-mrg-r-4{margin-right:2rem}.e-exam .e-pad-t-4{padding-top:2rem}.e-exam .e-mrg-t-4{margin-top:2rem}.e-exam .e-pad-b-4{padding-bottom:2rem}.e-exam .e-mrg-b-4{margin-bottom:2rem}.e-exam .e-pad-x-4{padding-left:2rem;padding-right:2rem}.e-exam .e-mrg-x-4{margin-left:2rem;margin-right:2rem}.e-exam .e-pad-y-4{padding-bottom:2rem;padding-top:2rem}.e-exam .e-mrg-y-4{margin-bottom:2rem;margin-top:2rem}.e-exam .e-pad-5{padding:2.5rem}.e-exam .e-mrg-5{margin:2.5rem}.e-exam .e-pad-l-5{padding-left:2.5rem}.e-exam .e-mrg-l-5{margin-left:2.5rem}.e-exam .e-pad-r-5{padding-right:2.5rem}.e-exam .e-mrg-r-5{margin-right:2.5rem}.e-exam .e-pad-t-5{padding-top:2.5rem}.e-exam .e-mrg-t-5{margin-top:2.5rem}.e-exam .e-pad-b-5{padding-bottom:2.5rem}.e-exam .e-mrg-b-5{margin-bottom:2.5rem}.e-exam .e-pad-x-5{padding-left:2.5rem;padding-right:2.5rem}.e-exam .e-mrg-x-5{margin-left:2.5rem;margin-right:2.5rem}.e-exam .e-pad-y-5{padding-bottom:2.5rem;padding-top:2.5rem}.e-exam .e-mrg-y-5{margin-bottom:2.5rem;margin-top:2.5rem}.e-exam .e-pad-6{padding:3rem}.e-exam .e-mrg-6{margin:3rem}.e-exam .e-pad-l-6{padding-left:3rem}.e-exam .e-mrg-l-6{margin-left:3rem}.e-exam .e-pad-r-6{padding-right:3rem}.e-exam .e-mrg-r-6{margin-right:3rem}.e-exam .e-pad-t-6{padding-top:3rem}.e-exam .e-mrg-t-6{margin-top:3rem}.e-exam .e-pad-b-6{padding-bottom:3rem}.e-exam .e-mrg-b-6{margin-bottom:3rem}.e-exam .e-pad-x-6{padding-left:3rem;padding-right:3rem}.e-exam .e-mrg-x-6{margin-left:3rem;margin-right:3rem}.e-exam .e-pad-y-6{padding-bottom:3rem;padding-top:3rem}.e-exam .e-mrg-y-6{margin-bottom:3rem;margin-top:3rem}.e-exam .e-pad-7{padding:3.5rem}.e-exam .e-mrg-7{margin:3.5rem}.e-exam .e-pad-l-7{padding-left:3.5rem}.e-exam .e-mrg-l-7{margin-left:3.5rem}.e-exam .e-pad-r-7{padding-right:3.5rem}.e-exam .e-mrg-r-7{margin-right:3.5rem}.e-exam .e-pad-t-7{padding-top:3.5rem}.e-exam .e-mrg-t-7{margin-top:3.5rem}.e-exam .e-pad-b-7{padding-bottom:3.5rem}.e-exam .e-mrg-b-7{margin-bottom:3.5rem}.e-exam .e-pad-x-7{padding-left:3.5rem;padding-right:3.5rem}.e-exam .e-mrg-x-7{margin-left:3.5rem;margin-right:3.5rem}.e-exam .e-pad-y-7{padding-bottom:3.5rem;padding-top:3.5rem}.e-exam .e-mrg-y-7{margin-bottom:3.5rem;margin-top:3.5rem}.e-exam .e-pad-8{padding:4rem}.e-exam .e-mrg-8{margin:4rem}.e-exam .e-pad-l-8{padding-left:4rem}.e-exam .e-mrg-l-8{margin-left:4rem}.e-exam .e-pad-r-8{padding-right:4rem}.e-exam .e-mrg-r-8{margin-right:4rem}.e-exam .e-pad-t-8{padding-top:4rem}.e-exam .e-mrg-t-8{margin-top:4rem}.e-exam .e-pad-b-8{padding-bottom:4rem}.e-exam .e-mrg-b-8{margin-bottom:4rem}.e-exam .e-pad-x-8{padding-left:4rem;padding-right:4rem}.e-exam .e-mrg-x-8{margin-left:4rem;margin-right:4rem}.e-exam .e-pad-y-8{padding-bottom:4rem;padding-top:4rem}.e-exam .e-mrg-y-8{margin-bottom:4rem;margin-top:4rem}.e-exam caption{font-size:1.125rem;font-weight:600;line-height:1.5rem;margin-bottom:.5rem;text-align:left}.e-table{border-collapse:collapse;border-spacing:0;margin-bottom:1rem}.e-table td,.e-table th{border:1px solid #aaa;padding:.25rem .5rem;text-align:left}.e-table--borderless td,.e-table--borderless th{border:none}.e-table--zebra tbody tr:nth-child(odd){background:rgba(0,0,0,.06)}.e-exam{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;text-size-adjust:none;font-weight:400}.e-exam .e-sans-serif{font-family:Noto Sans,sans-serif}.e-exam .e-monospace,.e-exam code,.e-exam pre{font-family:Noto Mono,monospace}.e-exam button,.e-exam input,.e-exam select,.e-exam textarea{font-family:Noto Sans,sans-serif}.e-exam mark{color:inherit}.e-exam .e-light{font-weight:300}.e-exam .e-normal{font-weight:400}.e-exam .e-semibold{font-weight:600}.e-exam dl,.e-exam ol,.e-exam p,.e-exam ul{font-size:inherit;font-weight:inherit;margin-bottom:1rem;margin-top:0}.e-exam sub,.e-exam sup{font-size:.75em;line-height:0}.e-exam .e-font-size-xs{font-size:.75rem;line-height:1rem}.e-exam .e-font-size-s{font-size:.875rem;line-height:1.5rem}.e-exam .e-font-size-m{font-size:1rem;line-height:1.5rem}.e-exam .e-font-size-l{font-size:1.125rem;line-height:1.5rem}.e-exam .e-font-size-xl{font-size:1.3125rem;line-height:2rem}.e-exam .e-font-size-xxl{font-size:1.875rem;line-height:2.5rem}.e-exam .e-font-size-xxxl{font-size:2.5rem;line-height:3rem}.e-exam .e-line-height-l{line-height:2rem}.e-exam h1{font-size:2.5rem;font-weight:300;line-height:3rem}.e-exam h1,.e-exam h2{margin-bottom:2rem;margin-top:0}.e-exam h2{font-size:1.875rem;font-weight:400;line-height:2.5rem;white-space:normal}.e-exam h3{font-size:1.3125rem;font-weight:600;line-height:2rem;margin-bottom:1rem;margin-top:0}.e-exam h4{font-size:1.125rem}.e-exam h4,.e-exam h5{font-weight:600;line-height:1.5rem;margin-bottom:1rem;margin-top:0}.e-exam h5,.e-exam h6{font-size:1rem}.e-exam h6{font-weight:600;line-height:1.5rem;margin-bottom:1rem;margin-top:0}.e-exam .e-underline{text-decoration:underline}.e-exam b,.e-exam strong,.e-exam th{font-weight:600}.e-exam .e-exam-separator{border:0;border-top:1px solid #c6e6f2;box-shadow:0 -1px 1px .5px #e0f4fe;margin:0 -3rem 2rem}.e-exam .e-italic{font-style:italic}.e-exam blockquote{border-left:.5rem solid #ddd;padding:0 1.25rem}.e-exam .e-text-gap{box-shadow:inset 0 -4px 0 -3px #111;display:inline-block;margin:0 .125rem;min-width:10rem;text-align:center}.e-exam .e-nowrap{white-space:nowrap}.e-exam .e-pre-wrap{white-space:pre-wrap}.e-exam .e-normal{white-space:normal}.e-exam .e-break-word{word-break:break-word}.e-exam .e-line-through{text-decoration:line-through}.e-exam .e-ellipsis{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.e-exam .e-bordered{border:1px solid #aaa}.e-exam .e-rounded{border-radius:4px}.e-exam .e-scrollable-x{overflow-x:auto}.e-exam .e-box{background-color:#f0f0f0;border:1px solid #aaa;border-radius:4px;padding:1rem}.e-exam .e-screen-reader-only{word-wrap:normal!important;clip:rect(1px,1px,1px,1px);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px}.e-exam .e-pointer{cursor:pointer}
|
@@ -1,3 +1,7 @@
|
|
1
|
-
import { Annotation } from './types/Score';
|
2
|
-
export declare function renderAnnotations(element: HTMLElement, pregradingAnnotations: Annotation[], censoringAnnotations: Annotation[]): void;
|
1
|
+
import { Annotation, ImageAnnotation, LineAnnotation, RectAnnotation } from './types/Score';
|
2
|
+
export declare function renderAnnotations(element: HTMLElement, pregradingAnnotations: Annotation[], censoringAnnotations: Annotation[], showTitle?: boolean): void;
|
3
|
+
export declare function updateImageAnnotationMarkSize(mark: HTMLElement, annotation: LineAnnotation | RectAnnotation): void;
|
4
|
+
export declare function wrapAllImages(answerElement: HTMLElement): void;
|
5
|
+
export declare function renderImageAnnotation(answerElement: HTMLElement, annotation: ImageAnnotation, type: 'pregrading' | 'censoring', listIndex: number, index: number | undefined, showTitle: boolean): HTMLElement;
|
6
|
+
export declare function renderImageAnnotationByImage(image: HTMLImageElement, title: string, annotation: ImageAnnotation, type: 'pregrading' | 'censoring', listIndex: number, index?: number): HTMLElement;
|
3
7
|
//# sourceMappingURL=renderAnnotations.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"renderAnnotations.d.ts","sourceRoot":"","sources":["../src/renderAnnotations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,
|
1
|
+
{"version":3,"file":"renderAnnotations.d.ts","sourceRoot":"","sources":["../src/renderAnnotations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,cAAc,EAAE,cAAc,EAAkB,MAAM,eAAe,CAAA;AAM3G,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,WAAW,EACpB,qBAAqB,EAAE,UAAU,EAAE,EACnC,oBAAoB,EAAE,UAAU,EAAE,EAClC,SAAS,UAAO,GACf,IAAI,CAiBN;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,WAAW,EAAE,UAAU,EAAE,cAAc,GAAG,cAAc,GAAG,IAAI,CAclH;AAgBD,wBAAgB,aAAa,CAAC,aAAa,EAAE,WAAW,QAEvD;AAED,wBAAgB,qBAAqB,CACnC,aAAa,EAAE,WAAW,EAC1B,UAAU,EAAE,eAAe,EAC3B,IAAI,EAAE,YAAY,GAAG,WAAW,EAChC,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,GAAG,SAAS,EACzB,SAAS,EAAE,OAAO,GACjB,WAAW,CAKb;AACD,wBAAgB,4BAA4B,CAC1C,KAAK,EAAE,gBAAgB,EACvB,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,eAAe,EAC3B,IAAI,EAAE,YAAY,GAAG,WAAW,EAChC,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,MAAM,GACb,WAAW,CA2Bb"}
|
@@ -1,66 +1,83 @@
|
|
1
1
|
import { createElement } from './dom-utils';
|
2
2
|
import classNames from 'classnames';
|
3
|
-
|
3
|
+
const messageLengthThreshold = 5;
|
4
|
+
export function renderAnnotations(element, pregradingAnnotations, censoringAnnotations, showTitle = true) {
|
4
5
|
const annotations = [...pregradingAnnotations, ...censoringAnnotations];
|
5
6
|
const annotationsWithMessages = annotations.filter((a) => a.message);
|
6
|
-
for (const annotation of annotations) {
|
7
|
+
for (const [i, annotation] of annotations.entries()) {
|
7
8
|
const type = pregradingAnnotations.includes(annotation) ? 'pregrading' : 'censoring';
|
8
9
|
const index = annotationsWithMessages.indexOf(annotation) + 1 || undefined;
|
10
|
+
const listIndex = type === 'pregrading' ? i : i - pregradingAnnotations.length;
|
9
11
|
switch (annotation.type) {
|
10
12
|
case 'line':
|
11
13
|
case 'rect':
|
12
|
-
renderImageAnnotation(element, annotation, type, index);
|
14
|
+
renderImageAnnotation(element, annotation, type, listIndex, index, showTitle);
|
13
15
|
break;
|
14
16
|
default:
|
15
|
-
renderTextAnnotation(element, annotation, type, index);
|
17
|
+
renderTextAnnotation(element, annotation, type, listIndex, index, showTitle);
|
16
18
|
}
|
17
19
|
}
|
18
20
|
}
|
19
|
-
function
|
21
|
+
export function updateImageAnnotationMarkSize(mark, annotation) {
|
22
|
+
const style = mark.style;
|
23
|
+
const pct = (n) => `${n * 100}%`;
|
24
|
+
if (annotation.type === 'rect') {
|
25
|
+
style.left = pct(annotation.x);
|
26
|
+
style.top = pct(annotation.y);
|
27
|
+
style.right = pct(1 - (annotation.x + annotation.width));
|
28
|
+
style.bottom = pct(1 - (annotation.y + annotation.height));
|
29
|
+
}
|
30
|
+
else {
|
31
|
+
style.left = pct(annotation.x1);
|
32
|
+
style.top = pct(annotation.y1);
|
33
|
+
style.right = pct(1 - annotation.x2);
|
34
|
+
style.bottom = pct(1 - annotation.y2);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
function getWrapper(image) {
|
38
|
+
const parent = image.parentElement;
|
39
|
+
if (parent instanceof HTMLSpanElement) {
|
40
|
+
return parent;
|
41
|
+
}
|
42
|
+
const wrapper = createElement('span', { className: 'e-annotation-wrapper' });
|
43
|
+
parent.insertBefore(wrapper, image);
|
44
|
+
wrapper.appendChild(image);
|
45
|
+
return wrapper;
|
46
|
+
}
|
47
|
+
export function wrapAllImages(answerElement) {
|
48
|
+
answerElement.querySelectorAll('img').forEach(getWrapper);
|
49
|
+
}
|
50
|
+
export function renderImageAnnotation(answerElement, annotation, type, listIndex, index, showTitle) {
|
20
51
|
const { attachmentIndex } = annotation;
|
21
|
-
const image =
|
22
|
-
const
|
52
|
+
const image = answerElement.querySelectorAll('img')[attachmentIndex];
|
53
|
+
const title = showTitle ? annotation.message : '';
|
54
|
+
return renderImageAnnotationByImage(image, title, annotation, type, listIndex, index);
|
55
|
+
}
|
56
|
+
export function renderImageAnnotationByImage(image, title, annotation, type, listIndex, index) {
|
57
|
+
const wrapper = getWrapper(image);
|
23
58
|
const shape = mkShape();
|
24
59
|
wrapper.appendChild(shape);
|
25
|
-
function getWrapper() {
|
26
|
-
const parent = image.parentElement;
|
27
|
-
if (parent instanceof HTMLSpanElement) {
|
28
|
-
return parent;
|
29
|
-
}
|
30
|
-
const wrapper = createElement('span', { className: 'e-annotation-wrapper' });
|
31
|
-
parent.insertBefore(wrapper, image);
|
32
|
-
wrapper.appendChild(image);
|
33
|
-
return wrapper;
|
34
|
-
}
|
35
60
|
function mkShape() {
|
36
61
|
const mark = createElement('mark', {
|
37
62
|
className: classNames('e-annotation e-annotation--shape', {
|
38
63
|
'e-annotation--pregrading': type === 'pregrading',
|
39
64
|
'e-annotation--censoring': type === 'censoring',
|
40
65
|
}),
|
41
|
-
title
|
66
|
+
title,
|
67
|
+
'data-message': annotation.message,
|
68
|
+
'data-list-index': listIndex.toString(),
|
69
|
+
'data-index': String(index) || '',
|
70
|
+
'data-type': type,
|
42
71
|
});
|
43
|
-
|
44
|
-
const pct = (n) => `${n * 100}%`;
|
45
|
-
if (annotation.type === 'rect') {
|
46
|
-
style.left = pct(annotation.x);
|
47
|
-
style.top = pct(annotation.y);
|
48
|
-
style.right = pct(1 - (annotation.x + annotation.width));
|
49
|
-
style.bottom = pct(1 - (annotation.y + annotation.height));
|
50
|
-
}
|
51
|
-
else {
|
52
|
-
style.left = pct(annotation.x1);
|
53
|
-
style.top = pct(annotation.y1);
|
54
|
-
style.right = pct(1 - annotation.x2);
|
55
|
-
style.bottom = pct(1 - annotation.y2);
|
56
|
-
}
|
72
|
+
updateImageAnnotationMarkSize(mark, annotation);
|
57
73
|
if (index) {
|
58
|
-
mark.appendChild(createSup(index, 'shape'));
|
74
|
+
mark.appendChild(createSup(index, 'shape', annotation.message));
|
59
75
|
}
|
60
76
|
return mark;
|
61
77
|
}
|
78
|
+
return shape;
|
62
79
|
}
|
63
|
-
function renderTextAnnotation(rootElement, annotation, type, index) {
|
80
|
+
function renderTextAnnotation(rootElement, annotation, type, listIndex, index, showTitle) {
|
64
81
|
const { startIndex, length: annotationLength } = annotation;
|
65
82
|
return go(rootElement.childNodes[0], 0, annotationLength);
|
66
83
|
function go(
|
@@ -91,7 +108,7 @@ function renderTextAnnotation(rootElement, annotation, type, index) {
|
|
91
108
|
// We know that we're at the last mark of this annotation.
|
92
109
|
// Render the superscript index after it, if necessary.
|
93
110
|
else if (index) {
|
94
|
-
mark.appendChild(createSup(index, 'text'));
|
111
|
+
mark.appendChild(createSup(index, 'text', annotation.message));
|
95
112
|
}
|
96
113
|
}
|
97
114
|
else {
|
@@ -142,7 +159,11 @@ function renderTextAnnotation(rootElement, annotation, type, index) {
|
|
142
159
|
'e-annotation--pregrading': type === 'pregrading',
|
143
160
|
'e-annotation--censoring': type === 'censoring',
|
144
161
|
}),
|
145
|
-
title: annotation.message,
|
162
|
+
title: showTitle ? annotation.message : '',
|
163
|
+
'data-message': annotation.message,
|
164
|
+
'data-list-index': listIndex.toString(),
|
165
|
+
'data-index': String(index) || '',
|
166
|
+
'data-type': type,
|
146
167
|
});
|
147
168
|
}
|
148
169
|
function move(mark, node, remaining) {
|
@@ -158,12 +179,11 @@ function renderTextAnnotation(rootElement, annotation, type, index) {
|
|
158
179
|
return move(mark, nextSibling, remaining - length(node));
|
159
180
|
}
|
160
181
|
}
|
161
|
-
function createSup(index, type) {
|
162
|
-
const content = `${index})`;
|
163
|
-
const children = type === 'text' ? [] : content;
|
182
|
+
function createSup(index, type, message) {
|
164
183
|
return createElement('sup', {
|
165
184
|
className: `e-annotation__index e-annotation__index--${type}`,
|
166
|
-
'data-content':
|
167
|
-
|
185
|
+
'data-content': message.length > messageLengthThreshold ? `${index})` : message,
|
186
|
+
'data-message': message,
|
187
|
+
});
|
168
188
|
}
|
169
189
|
//# sourceMappingURL=renderAnnotations.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"renderAnnotations.js","sourceRoot":"","sources":["../src/renderAnnotations.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,UAAU,MAAM,YAAY,CAAA;AAEnC,MAAM,UAAU,iBAAiB,CAC/B,OAAoB,EACpB,qBAAmC,EACnC,oBAAkC;
|
1
|
+
{"version":3,"file":"renderAnnotations.js","sourceRoot":"","sources":["../src/renderAnnotations.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@digabi/exam-engine-core",
|
3
|
-
"version": "19.1.0
|
3
|
+
"version": "19.1.0",
|
4
4
|
"main": "dist/main-bundle.js",
|
5
5
|
"types": "dist/index.d.ts",
|
6
6
|
"author": "Matriculation Examination Board, Finland",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"webpack-bundle-analyzer": "^4.1.0",
|
61
61
|
"webpack-cli": "^4.9.2"
|
62
62
|
},
|
63
|
-
"gitHead": "
|
63
|
+
"gitHead": "e447682edc831e50561b813d2a842d0918d540be"
|
64
64
|
}
|