/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: transparent; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
.publication__subtitle{color:var(--gray_color)}.publications{color:var(--dark_background_color)}.publications table tr{text-align:left}.publications table tr td,.publications table tr th{padding:10px 20px;border:1px solid var(--white_color)}.publication{color:var(--white_color)}.publication iframe{border:none}.publication button.btn{font-family:alternate-gothic-no-1-d;font-size:18px;font-weight:300;min-width:100px;height:48px;border-radius:4px;border:1px solid var(--white_color);background-color:var(--dark_background_color);color:var(--white_color);text-transform:uppercase;cursor:pointer;margin-top:40px;margin-right:10px}.publication .input-field{display:-ms-flexbox;display:flex}.publication .input-field textarea{height:60px}.publication .input-field input,.publication .input-field textarea{width:400px;padding:10px 20px;margin:20px 0;border:1px solid #ddd;border-radius:4px;background-color:#f5f5f5}.publication .input-field label{min-width:200px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.publication .select-input-field{margin:20px 0}.publication .select-input-field select{background:#f5f5f5;padding:10px 20px;width:100px}.publication-generate .question-box{border:1px solid var(--dark_background_color);padding-top:30px;margin-top:40px;border-top:1px solid var(--white_color)}.publication-generate .question-box__row{display:-ms-flexbox;display:flex;-ms-flex-direction:start;flex-direction:start}.publication-generate .question-box__checkboxes{margin-left:50px;margin-top:20px}.publication-generate .question-box__checkboxes>div{margin-bottom:8px}.publication-generate .question-box__checkboxes label{margin-left:10px}.publication-generate .question-box__heading{font-weight:700;text-align:center}.publication-generate .question-box__remove{position:absolute;right:30px;margin-top:-20px}.publication-view{width:600px;margin:30px auto}.publication-view h2{font-size:2em}.publication-view p{margin:20px 0}.publication_wrapper{--background_color:#eff4f4;--white_color:#2c3947;--link_unvisited_color:#6a7d91;background-color:var(--background_color)}.publication_wrapper a,.publication_wrapper a:link,.publication_wrapper a:visited{color:var(--link_unvisited_color)}.publication_wrapper h1{font-family:math,museo-sans,sans-serif;font-size:42px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.publication_wrapper .publication{color:var(--white_color)}.publication_wrapper .publication-sharing-icons{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;width:100%}.publication_wrapper .publication-sharing-icons>svg{margin:0 2px}.publication_wrapper .publication-sharing-icons .stroked{stroke:var(--white_color)}.publication_wrapper .publication-sharing-icons .filled{fill:var(--white_color)}.publication_wrapper .publication-sharing-icons .fill-on-hover{stroke:var(--white_color)}.publication_wrapper .read-mode-toggle{margin-left:9px}.publication_wrapper .read-mode-toggle .read-mode-toggle_option{border:1px solid var(--white_color);background:var(--background_color)}.publication_edit .editor-toolbar{background-color:var(--white_color);opacity:.9}.publication_edit .editor-toolbar a{color:var(--white_color)}.theme-default-dashboard .publication-view .social-sharing-button{background:var(--background_color)}@media print{.bulletins,.header__navbar,.login-wrapper,.main-footer,.publication-sharing-icons,.publication-view-actions,.sidenav{display:none!important}body>.main-wrapper{border:none}.main-wrapper-dashboard{margin-left:0!important;border:none!important}}.read-mode-toggle{height:28px;margin-bottom:auto;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.read-mode-toggle .read-mode-toggle_option{padding:4px 6px;font-family:alternate-gothic-no-1-d;font-size:18px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:1px solid var(--gray_color);background:var(--background_color)}.read-mode-toggle .read-mode-toggle_option.active{color:var(--white_color);text-decoration:underline}.read-mode-toggle .read-mode-toggle_option:not(.active){color:var(--gray_color);cursor:pointer}.read-mode-toggle .read-mode-toggle_option:not(.active):hover{color:var(--button_highlight_fg);background:var(--button_highlight_bg)}.read-mode-toggle .read-mode-toggle_option:first-child{border-radius:4px 0 0 4px;border-right:none}.read-mode-toggle .read-mode-toggle_option:last-child{border-radius:0 4px 4px 0}[question-power-ups]{text-align:center;margin:2em}.power-up-group{margin:1em 0}.power-up__error{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--error_color);margin:.3em 0}.tribute-container-autocomplete{margin-top:8px;margin-left:-6px}ul.private-question-shared-users{width:-webkit-fit-content;width:fit-content;margin:1.5em auto;padding-left:1em}ul.private-question-shared-users .remove-button{margin-left:.5em;text-decoration:underline;cursor:pointer;color:var(--gray_color)}ul.private-question-shared-users li{text-align:left}.draft-notification{text-align:center;margin-bottom:20px}.rankings-table{margin:1.5em auto}.rankings-table th{border-bottom:3px double var(--gray_color);padding:0 .5em;text-align:left;font-weight:700}.rankings-table td{padding-right:2.5em;padding-left:.5em;white-space:nowrap}.rankings-table td:last-child{padding-right:.5em;text-align:right}.rankings-table td:first-child,.rankings-table td:nth-child(4){color:var(--light_gray_color)!important}.rankings-table td a{color:inherit!important}.rankings-table.has_more{margin-bottom:0;border-bottom:1px solid var(--gray_color)}.rankings-footer{padding-bottom:1.5em}.rank-contest-buttons,.rankings-buttons{text-align:center;margin:1.5em}.rank-contest-buttons>*,.rankings-buttons>*{margin:.15em 0}.rankings-caption{text-align:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;color:var(--gray_color);margin:-1em 1em 1em}.question-table{margin-left:-1px;border-left:2px solid var(--gray_color)}.question-table__header,.question-table__row{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-align:stretch;align-items:stretch}.question-table__header>:first-child,.question-table__row>:first-child{-ms-flex:1 1 1px;flex:1 1 1px}.question-table__header>:nth-child(2),.question-table__row>:nth-child(2){-ms-flex:0 0 181px;flex:0 0 181px;border-left:3px double var(--white_color);border-right:3px double var(--white_color)}.question-table__header>:nth-child(3),.question-table__row>:nth-child(3){-ms-flex:0 0 129px;flex:0 0 129px;border-right:1px solid var(--white_color)}.question-table__header>:nth-child(4),.question-table__row>:nth-child(4){-ms-flex:0 0 89px;flex:0 0 89px}.question-table__status--small-screen{display:none;color:var(--gray_color);font-size:12px;font-style:italic}@media screen and (max-width:1001px){.question-table__header>:nth-child(4),.question-table__row>:nth-child(4){display:none}}@media screen and (max-width:690px){.question-table__header>:nth-child(3),.question-table__row>:nth-child(3){display:none}.question-table__status--small-screen{display:inline}}.question-table__row>*{-ms-flex-direction:column;flex-direction:column;position:relative}.question-table__header>span,.question-table__row>*{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.question-table__header>span{-ms-flex-align:center;align-items:center}.question-table__row>:first-child{background:var(--dark_background_color)}.question-table__row:nth-child(n+3){border-top:1px solid var(--gray_color)}.question-table__header{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;text-align:center;width:100%;border-bottom:1px solid var(--white_color)}.question-table__header>span:nth-child(n+2){padding:.5em 0}.question-table__no-results{text-align:center;padding:2em 0}.question-table__row .question-table__title-cell>a{color:var(--white_color);text-decoration:none;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:100%}.question-table__row .question-table__title-cell>a:hover,.question-table__row .question-table__title-cell>a:hover *{color:var(--button_highlight_fg)!important;border-color:var(--background_color);background-color:var(--button_highlight_bg)}.title-cell__title{-ms-flex:1 0 auto;flex:1 0 auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;font-size:14px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:1em;min-height:calc(60px - 2em)}.title-cell__pstats,.title-cell__title{font-family:math,museo-sans,sans-serif;letter-spacing:.04em}.title-cell__pstats{-ms-flex:0 0 auto;flex:0 0 auto;font-size:12px;font-weight:300;margin:-.5em 1em 0;padding:0 0 .5em}.title-cell__pstats>span{position:relative}.title-cell__pstats .tick-mark{position:absolute;bottom:-.5em;left:0;height:7px;width:7px;border-left:1px solid var(--gray_color)}.question-table__header .question-table__title-header,.title-cell__pstats{color:var(--gray_color);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.question-table__header .question-table__title-header>span:first-child,.title-cell__pstats>span:first-child{text-align:left;-ms-flex:1 0 7.3em;flex:1 0 7.3em}.question-table__header .question-table__title-header>span:nth-child(2),.title-cell__pstats>span:nth-child(2){text-align:center;-ms-flex:1 1 6em;flex:1 1 6em}.question-table__header .question-table__title-header>span:last-child,.title-cell__pstats>span:last-child{text-align:right;-ms-flex:1 0.5 12em;flex:1 0.5 12em;padding-left:.5em}span.question-table__title-header{-ms-flex-direction:row;flex-direction:row;padding:0 1em;-ms-flex-align:center;align-items:center}span.question-table__title-header>span{padding:.5em 0}span.question-table__title-header>span:nth-child(n+2){border-left:1px solid var(--gray_color)}.question-table__new-comments{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;margin-left:.6em;color:var(--highlight_color)}.question-table__row>span.clickable{cursor:pointer}.question-table__row>span.clickable:hover{box-shadow:inset 0 0 2px 2px var(--gray_color)}.question-table__predictions{min-width:175px}.question-table__predictions div{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center;-ms-flex-pack:center;justify-content:center;font-family:alternate-gothic-no-1-d;font-size:22px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;width:45px;height:70px;transform:translateX(1px)}.question-table__predictions div p{margin:.1em 0}.question-table__predictions div p.wide-fmt{font-size:15px;margin-left:.1em;line-height:.9em;line-height:1.2}.question-table__predictions svg{float:right;width:130px;height:70px}.question-table__no-predictions{width:45px;font-family:alternate-gothic-no-1-d;font-size:22px;letter-spacing:.08em;font-weight:300}.question-table__no-predictions,.question-table__status{text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.question-table__status{font-size:calc(var(--header_font_size) * 22px);font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);margin:.2em .2em .1em}.question-table__sub-status{text-align:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;margin:0}.question-table__p-count,.question-table__sub-status{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.question-table__p-count{font-family:alternate-gothic-no-1-d;font-size:22px;letter-spacing:.08em;font-weight:300;margin-left:50%}.question-table__votes{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:8px 0}.question-table__votes div:first-child{font-family:alternate-gothic-no-1-d;font-size:22px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-bottom:2px}.question-table__indicator{position:absolute;left:0;top:0;stroke-width:1;fill:var(--background_color);stroke:var(--white_color);z-index:10}.metac-voter{margin:0;padding:0;float:right}.metac-voter li{float:left;list-style:none}.metac-voter li a{border:1px solid var(--white_color);color:var(--white_color);padding:0 6px 2px;font-family:math,museo-sans,sans-serif;font-size:18px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;line-height:18px;cursor:pointer;text-decoration:none}.metac-voter li:first-child a{border-right:0}.metac-voter li a.hasvoted{background:var(--dark_background_color);color:var(--dark_gray_color)}.metac-voter li a:hover{background:var(--button_highlight_bg_bright);color:var(--button_highlight_fg)}.question-table-options{clear:both;margin-right:15px;border-top:1px solid var(--white_color);border-right:1px solid var(--white_color);padding:.75em 1em;background:var(--background_color)}.question-table-search{display:block;margin-top:.5em}.question-table-search__block{display:-ms-flexbox;display:flex}.question-table-search__field{-ms-flex:1 1 auto;flex:1 1 auto;border:1px solid var(--gray_color);border-right-width:0;height:28px;padding:3.6px .4em 1.8px;background-color:var(--background_color);color:inherit}.question-table-search__field::-ms-clear{display:none}.question-table-search__cancel{border:1px solid var(--gray_color);border-width:1px 0;width:24px;background-image:var(--search-icon-cancel)}.question-table-search__cancel,.question-table-search__submit{-ms-flex:0 0 auto;flex:0 0 auto;height:28px;background-position:50% 50%;cursor:pointer}.question-table-search__submit{border:1px solid var(--gray_color);width:28px;background-color:var(--background_color);background-image:var(--search-icon)}.question-table-search__submit:hover{color:var(--button_highlight_fg);background-color:var(--button_highlight_bg);background-image:var(--search-icon-hover)}.question-table-search select.btn{-ms-flex:0 0 auto;flex:0 0 auto;height:28px;margin-left:10px}.question-table-search__subtext{font-size:12px;color:var(--gray_color);margin:.5em .5em 0}.question-table-filter{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:baseline;align-items:baseline;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em}.question-table-filter span{-ms-flex:1 0 auto;flex:1 0 auto;margin:0 .4em 0 1em;text-align:right}.question-table-filter span:first-child{margin-left:0;-ms-flex:0 0 auto;flex:0 0 auto}.question-table-filter select{-ms-flex:0 1 auto;flex:0 1 auto;min-width:2em}.question-table-filter select:last-child{-ms-flex-preferred-size:8.5em;flex-basis:8.5em}.question-table-filter--short{margin-bottom:.5em;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em}.question-table-filter--short span{margin-right:1.5em}.comment-section{padding-left:2em}.comment-section__centered{width:65%;min-width:480px;margin:0 auto}.comment-section__centered>div>h1{color:var(--gray_color);margin-left:-1em}.comment__container{position:relative;overflow:visible;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 0 1em}.comment__container:not(.comment__read)+hr.comment__read{border:none;height:5px;background-image:linear-gradient(180deg,var(--highlight_color),transparent);opacity:1}.comment__children{border-left:1px solid var(--dark_gray_color);margin-left:10px;padding-left:15px}.comment__footer{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:end;align-items:flex-end;margin-top:-.6em;min-height:5px}.comment__footer._padded{margin-top:0}.comment__footer span._likes{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;margin:0 .2em;padding-bottom:2px}.comment__footer a._icon{color:var(--gray_color);cursor:pointer!important;margin-left:3px;padding-bottom:1px}.comment__footer a._icon svg{position:relative;top:2.5px;height:14px;width:14px}.comment__footer a._icon:hover{border-bottom:1px solid var(--gray_color);padding-bottom:0}.comment__footer a._icon._downvote{margin:0}.comment__footer .disclosure-triangle{color:var(--gray_color);font-size:12px;-ms-flex:1 1 auto;flex:1 1 auto}.comment__prediction,.comment__prediction--long{position:absolute;font-family:alternate-gothic-no-1-d;font-size:24px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:right;top:0;left:0;padding:0 25px 0 5px;transform:translateX(-100%);max-width:158px;min-width:93px;width:calc(50vw - 263px)}.comment__prediction--long{font-size:18px}.comment__threaded{margin-left:100px}.comment__time{color:var(--gray_color);font-weight:300;margin-left:.3em}.comment__author{font-family:math,museo-sans,sans-serif;font-size:16px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.theme-light .comment__author{text-decoration:underline}.comment__header{margin-bottom:.5em}.comment__header--right{float:right;margin-left:1em}.comment__header button{margin-left:.5em;color:var(--dark_gray_color);border-color:var(--dark_gray_color)}.comment__header button:hover{background-color:var(--dark_gray_color)}.comment__html{word-wrap:break-word}.comment__html h1{font-size:1.6em}.comment__html h2{font-size:1.4em}.comment__html h3{font-size:1.15em}.comment__html h4{font-size:1em}.comment__html h5{font-size:.85em}.comment__html img{display:block;margin:.85em auto;max-width:90%}.comment__text{white-space:pre-line;margin:.8em 0}textarea.comment__entry{width:100%;min-height:140px;padding:.2em .4em 1.2em;background-color:var(--background_color);color:var(--white_color);text-align:top}.comment__post{margin:.5em 0 2em}.comment__post .btn{margin-right:.5em}.comment__prompt{color:var(--gray_color);margin-top:-.8em;white-space:pre-line}.comment__submit-error{color:var(--error_color);font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em}.comment__delete-preview{font-size:.9em;white-space:pre-wrap;font-style:italic}.tribute-container{position:absolute;top:0;left:0;height:auto;max-height:300px;max-width:500px;overflow:auto;display:block;z-index:999999;color:var(--background_color);overflow-x:hidden}.tribute-container ul{margin:0;margin-top:2px;padding:0;list-style:none;background:var(--gray_color)}.tribute-container li{padding:2px 20px 2px 5px;cursor:pointer}.tribute-container li.highlight{background:var(--dark_gray_color);color:var(--white_color)}.tribute-container li span{font-weight:700}.tribute-container li.no-match{cursor:default}.tribute-container .menu-highlighted{font-weight:700}.reminders-table{margin:1.5em auto;text-align:left;width:80%}.reminders-table ._header,.reminders-table ._row{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-weight:700}.reminders-table ._header{border-bottom:3px double var(--gray_color);padding-bottom:3px}.reminders-table ._row{margin-top:.5em}.reminders-table ._notes-button{-ms-flex:0 0 1.5em;flex:0 0 1.5em}.reminders-table ._question-column{-ms-flex:1 1 20em;flex:1 1 20em;padding-right:1em}.reminders-table ._question-column a{color:var(--white_color)}.reminders-table ._created-column{-ms-flex:0.5 0 8em;flex:0.5 0 8em;padding-right:1em}.reminders-table ._remind-column{-ms-flex:1 0.5 12em;flex:1 0.5 12em;padding-right:1em}.reminders-table ._remove-column{-ms-flex:0 0 1.5em;flex:0 0 1.5em;text-align:right;color:var(--gray_color)!important;font-size:120%;font-weight:400;cursor:pointer}.reminders-table ._notes{padding:.5em 2em 0 3em}@charset "UTF-8";metac-modal{display:none}metac-modal.active{display:block}.modal__wrapper{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:column;flex-direction:column}.modal__wrapper:before{content:" ";position:absolute;width:100%;height:100%;background:var(--background_color);opacity:.75}.modal__box{margin:auto;max-height:calc(100vh - 42px);border:1px solid var(--white_color);background-color:var(--background_color);position:relative;width:560px;overflow:auto}.modal__close-wrapper{height:0;position:sticky;top:0}.modal__close{position:absolute;top:5px;right:5px;color:var(--gray_color);height:20px;width:20px;border:1px solid var(--gray_color);cursor:pointer;text-align:center}.modal__close:hover{background-color:var(--gray_color);color:var(--background_color)}.modal__close:before{content:"\D7";font-size:20px;position:relative;top:-3.5px;left:.5px;font-weight:300;font-family:museo-sans}.modal__content{padding:28px;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.modal__content h2,.modal__content h3,.modal__content h4{text-align:center}.modal__content>:first-child{margin-top:1px}.modal__content>:last-child{margin-bottom:1px!important}.modal__content hr{margin:2em 0}.welcome-modal h1{font-size:2.3em;text-align:center}.welcome-modal h1>span{display:inline-block;border:1px solid var(--gray_color);background:var(--dark_background_color);padding:.2em 1em .1em}.welcome-modal .welcome-modal__sign-in{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:baseline;align-items:baseline}.welcome-modal .welcome-modal__sign-in em{color:var(--gray_color);font-size:12px;display:inline-block;margin:0 1em}.welcome-modal .horiz-text-divider{margin:1.5em 0 1em}.question__block,.question__block--action,.question__block--predictions--wide,.question__block--small,.question__block--status,.question__block--tournament,.question__block--votes{position:relative;height:115px;float:left;border-right:1px solid var(--gray_color);border-bottom:1px solid var(--gray_color);color:var(--white_color);text-align:center}.question__block--action,.question__block--small,.question__block--status,.question__block--tournament,.question__block--votes{width:50%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.question__block--predictions--wide{width:100%;position:relative}.question__block--predictions--wide div{height:100%;width:50%;position:absolute;top:0;right:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.question__block--predictions--wide div span.value{font-family:alternate-gothic-no-1-d;font-size:26px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.question__block--predictions--wide div span.label{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:-.2em 0 .5em}.question__block--predictions--wide div span.label:last-child{margin-bottom:0}.question__block--predictions--wide div.clickable>span.label:last-child{cursor:pointer;text-decoration:underline;padding:0 .5em;border-radius:.5em}.question__block--predictions--wide div.clickable>span.label:last-child:hover{color:var(--background_color)!important;background:var(--white_color);text-decoration:none}.question__block--predictions--wide div.clickable>span.label:last-child:hover.metac-prediction{background:var(--metaculus_prediction)}.question__block--predictions--wide .metac-graph{height:100%;width:calc(50% + 15px);position:absolute;top:0;left:0}.question__block--votes span:first-child{font-family:alternate-gothic-no-1-d;font-size:26px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-transform:uppercase}.question__block--votes span:nth-child(2){font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-top:-.2em}.question__block--votes .metac-voter{margin-top:10px}.question__block--status ._status{font-size:calc(var(--header_font_size) * 26px);font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:.2em 0}.question__block--status ._substatus{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:block;margin:.1em 0}.question__block--status ._substatus._small{font-size:85%}.question__block--action span{font-size:19px;margin:0 30px}.question__block--tournament span:first-child{font-size:14px;font-weight:500;margin-bottom:.5em}.question__block--tournament span:first-child,.question__block--tournament span:last-child{font-family:math,museo-sans,sans-serif;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.question__block--tournament span:last-child{font-size:19px;font-weight:700}a.question__approve-status{color:var(--gray_color);cursor:pointer;font-size:.8em}a.question__approve-status--alert{color:var(--alert_color)}.question__description{min-height:230px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}h1.question__title{margin:1em 0 .1em;font-size:19px}h1.question__title,h2.question__subtitle{font-family:math,museo-sans,sans-serif;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-transform:none}h2.question__subtitle{margin:.5em 0 .1em;font-size:16px;font-style:italic}.question__subheading{margin:0 0 .5em;font-family:math,museo-sans,sans-serif;font-size:13px;font-weight:300;letter-spacing:.04em}.question__subheading ul{margin:0;padding:0}.question__subheading ul li{font-style:italic;list-style:none;display:inline-block;padding:0;margin:0}.question__subheading ul li:nth-child(n+2):before{content:"\2022";margin:0 .5em;font-style:normal}.question__content{-ms-flex:1 0 auto;flex:1 0 auto}.question__footer{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;min-height:24px;margin:0 0 1.5em;position:relative}.question__detail-box{margin:31px 0 20px;border:1px solid var(--gray_color);width:100%}.prediction__error{text-align:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--error_color);margin:.3em 0}.resolve-modal{text-align:center}.resolve-modal .resolve__row{margin:2em 0}.resolve-modal .resolve__row input,.resolve-modal .resolve__row select{text-align:center;display:block;margin:.5em auto}.resolve-modal .resolve__row input[type=checkbox]{display:inline-block}.resolve-modal .modal__box{width:560px}.resolve-modal .resolve__error-text{text-align:center;font-size:12px;color:var(--error_color)}.question__prediction_comment{text-align:center;color:var(--gray_color);font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:1em 0 -.2em}.question__anon-predict__btnrow{display:-ms-flexbox;display:flex;margin:1em 0}.question__anon-predict__btnrow span{-ms-flex:1 0 1em;flex:1 0 1em;text-align:center}.question__centered-stats,.question__centered-stats--columns{text-align:center;color:var(--gray_color)}.question__centered-stats--columns h5,.question__centered-stats h5{font-family:math,museo-sans,sans-serif;font-size:1em;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-bottom:1px solid var(--gray_color);display:inline-block;margin-bottom:0}.question__centered-stats--columns ul,.question__centered-stats ul{list-style:none;padding:0}.question__centered-stats--columns h5 strong,.question__centered-stats--columns li strong,.question__centered-stats h5 strong,.question__centered-stats li strong{font-size:110%;color:var(--white_color)}.question__centered-stats--columns{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:distribute;justify-content:space-around;width:60%;margin:0 auto}[power-list]>li:hover{text-decoration:underline}[power-list]>li{cursor:pointer}[prediction-backdating] h4{text-align:center}[prediction-backdating] .backpredict__controls{text-align:center;padding:0 1.5em}[prediction-backdating] .backpredict__controls input[type=range]{width:100%;margin:.5em 0}[prediction-backdating] .backpredict__controls .backpredict__ptdetail input[type=range]{width:90%;margin:.5em auto}[prediction-backdating] .disclosure-triangle{color:var(--gray_color);font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em}[prediction-backdating] [score-history-graph]{height:120px}.notifs__wrapper{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:column;flex-direction:column}.notifs__wrapper:before{content:" ";position:absolute;width:100%;height:100%;background:#283441;opacity:.75}.notifs__sidebar{border-left:1px solid #fff;background-color:#283441;position:absolute;right:0;width:20em;overflow:auto;height:100vh}.notifs__sidebar h2{text-align:center}.notifs__sidebar-body{padding-left:.75em;padding-right:.75em}.notifs__sidebar-body ._empty{text-align:center}.notifs__sidebar-body ._read,.notifs__sidebar-body ._unread{text-align:left;padding:.5em;margin:.3em 0}.notifs__sidebar-body ._unread+._read{border-top:1px solid #91999e}.notifs__sidebar-body ._notif{list-style:none;padding:.5em}.notifs__sidebar-body ._notif a{color:#fff}.notifs__sidebar-body ._notif a:hover{text-decoration:none}.notifs__sidebar-body ._notif:hover{background:#2f4355}.notifs__sidebar-body ._notif ._notif-description{font-size:13px;color:#91999e;margin-bottom:2px}.notifs__sidebar-body ._notif ._notif-question-title{font-size:13px}.notifs__toggle-button{width:22px;height:22px;padding:2px;margin-top:2px;margin-left:6px;margin-right:10px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;text-align:center;border:none;cursor:pointer;background-color:transparent;text-decoration:none}.notifs__toggle-button svg{width:90%;color:#91999e}.notifs__toggle-button svg ._notify-badge{fill:#e20404}.notifs__close{position:absolute;top:5px;right:5px;color:#91999e;height:20px;width:20px;border:1px solid #91999e;cursor:pointer;text-align:center}.notifs__close:hover{background-color:#91999e;color:#283441}.notifs__close:before{content:"\D7";font-size:20px;position:relative;top:-3.5px;left:.5px;font-weight:300;font-family:museo-sans}.contests-table{margin:1.5em auto}.contests-table th{border-bottom:3px double var(--gray_color);padding:0 .5em;text-align:left}.contests-table td{padding-right:2.5em;padding-left:.5em}.contests-table td:last-child{padding-right:.5em;text-align:right}.contests-table tr.selected{font-weight:900}.contests-table tr.selected td:first-child{text-decoration:underline}.contests-table tr:nth-child(n+2):hover{cursor:default;background:var(--button_highlight_bg)}.contests-table tr:nth-child(n+2):hover td,.contests-table tr:nth-child(n+2):hover td>a{color:var(--button_highlight_fg)}.contests-table--more-data{border-bottom:1px solid var(--gray_color);margin-bottom:0}.contest-description{margin:1em auto;max-width:600px;padding:0 2em}metac-modal{display:none}metac-modal.active{display:block}.modal__wrapper{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:column;flex-direction:column}.modal__wrapper:before{content:" ";position:absolute;width:100%;height:100%;background:var(--background_color);opacity:.75}.modal__box{margin:auto;max-height:calc(100vh - 42px);border:1px solid var(--white_color);background-color:var(--background_color);position:relative;width:560px;overflow:auto}.modal__close-wrapper{height:0;position:sticky;top:0}.modal__close{position:absolute;top:5px;right:5px;color:var(--gray_color);height:20px;width:20px;border:1px solid var(--gray_color);cursor:pointer;text-align:center}.modal__close:hover{background-color:var(--gray_color);color:var(--background_color)}.modal__close:before{content:"\D7";font-size:20px;position:relative;top:-3.5px;left:.5px;font-weight:300;font-family:museo-sans}.modal__content{padding:28px;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.modal__content h2,.modal__content h3,.modal__content h4{text-align:center}.modal__content>:first-child{margin-top:1px}.modal__content>:last-child{margin-bottom:1px!important}.modal__content hr{margin:2em 0}.welcome-modal h1{font-size:2.3em;text-align:center}.welcome-modal h1>span{display:inline-block;border:1px solid var(--gray_color);background:var(--dark_background_color);padding:.2em 1em .1em}.welcome-modal .welcome-modal__sign-in{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:baseline;align-items:baseline}.welcome-modal .welcome-modal__sign-in em{color:var(--gray_color);font-size:12px;display:inline-block;margin:0 1em}.welcome-modal .horiz-text-divider{margin:1.5em 0 1em}metac-login{text-align:left}.landing-page__registration .btn--social,.landing-page__registration input,.modal-form .btn--social,.modal-form input,.modal-login .btn--social,.modal-login input,.modal-pw-reset .btn--social,.modal-pw-reset input,.modal-registration .btn--social,.modal-registration input,.no-modal-login .btn--social,.no-modal-login input{display:block;border:1px solid var(--gray_color);background-color:var(--background_color);color:var(--white_color);width:180px;height:28px;padding:0 5px;margin:10px auto 0}.landing-page__registration a.btn--social,.modal-form a.btn--social,.modal-login a.btn--social,.modal-pw-reset a.btn--social,.modal-registration a.btn--social,.no-modal-login a.btn--social{color:inherit;text-decoration:none}.landing-page__registration .btn--social,.landing-page__registration input[type=submit],.modal-form .btn--social,.modal-form input[type=submit],.modal-login .btn--social,.modal-login input[type=submit],.modal-pw-reset .btn--social,.modal-pw-reset input[type=submit],.modal-registration .btn--social,.modal-registration input[type=submit],.no-modal-login .btn--social,.no-modal-login input[type=submit]{font-family:alternate-gothic-no-1-d;font-size:18px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-transform:uppercase;text-align:center;padding:.2em .4em .1em;margin-bottom:10px;text-decoration:none;cursor:pointer}.landing-page__registration .btn--social:hover,.landing-page__registration input[type=submit]:hover,.modal-form .btn--social:hover,.modal-form input[type=submit]:hover,.modal-login .btn--social:hover,.modal-login input[type=submit]:hover,.modal-pw-reset .btn--social:hover,.modal-pw-reset input[type=submit]:hover,.modal-registration .btn--social:hover,.modal-registration input[type=submit]:hover,.no-modal-login .btn--social:hover,.no-modal-login input[type=submit]:hover{color:var(--background_color);background-color:var(--gray_color)}.landing-page__registration input[type=submit],.modal-form input[type=submit],.modal-login input[type=submit],.modal-pw-reset input[type=submit],.modal-registration input[type=submit],.no-modal-login input[type=submit]{margin-top:18px}.landing-page__registration input[type=password],.modal-form input[type=password],.modal-login input[type=password],.modal-pw-reset input[type=password],.modal-registration input[type=password],.no-modal-login input[type=password]{color:var(--gray_color)}.landing-page__registration input.grouped-input,.modal-form input.grouped-input,.modal-login input.grouped-input,.modal-pw-reset input.grouped-input,.modal-registration input.grouped-input,.no-modal-login input.grouped-input{border-top-width:0;margin-top:0}.landing-page__registration .error-text,.modal-form .error-text,.modal-login .error-text,.modal-pw-reset .error-text,.modal-registration .error-text,.no-modal-login .error-text{text-align:center;font-size:11px;color:var(--error_color)}.modal-form,.modal-pw-reset{text-align:center}.modal-registration .registration-forms{width:100%}table.registration-forms{margin:1em 0 1.5em}table.registration-forms td:first-child{border-right:1px solid var(--white_color);padding-right:1em;width:250px}table.registration-forms td:last-child{padding-left:1em;width:250px}.registration__info-text{font-size:13px}.modal-login .modal__box,.modal-pw-reset .modal__box{width:300px}.modal-login__forgot-pw{font-family:math,museo-sans,sans-serif;font-size:11px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;text-decoration:underline;color:var(--gray_color);cursor:pointer;display:block}.metac-graph .axis-group>path,.metac-graph .tick>line{stroke:var(--gray_color);fill:none}.metac-graph .axis-group .tick text{font-size:12px;font-weight:300}.metac-graph .axis-group .tick text,.metac-graph text.label{font-family:math,museo-sans,sans-serif;letter-spacing:.04em;fill:var(--gray_color)}.metac-graph text.label{font-size:14px;font-weight:500;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.metac-graph .line-group path,.metac-graph .line-seg-group line{stroke:var(--white_color);stroke-width:1;fill:none}.metac-graph line.axis.baseline{stroke:var(--gray_color);stroke-width:1;fill:none;stroke-linecap:square}.metac-graph .histogram path{stroke:var(--gray_color);stroke-width:2;fill:var(--gray_color);fill-opacity:.5}.metac-graph .dashed-line line,.metac-graph .dashed-line path{stroke:var(--gray_color);stroke-width:1;stroke-dasharray:4 2}.metac-graph .crosshair line{stroke:var(--dark_gray_color);stroke-width:1;stroke-dasharray:2 3}.metac-graph .scatter-group path{stroke:var(--white_color);stroke-width:1;fill:var(--background_color)}.metac-graph .scatter-group circle{opacity:0}.metac-graph .scatter-group.editable{cursor:pointer}.metac-graph .background-rect{fill:none;stroke:none}.api-delegate-row{display:-ms-flexbox;display:flex;margin:2em;-ms-flex-align:center;align-items:center}.api-delegate-row img{max-width:100px;max-height:100px;width:auto;height:auto}.api-delegate-row>div:first-child{-ms-flex:0 0 100px;flex:0 0 100px;margin-right:2em}.api-delegate-row>div:nth-child(2){-ms-flex:1 1 auto;flex:1 1 auto}.api-delegate-row>button{-ms-flex:0 0 auto;flex:0 0 auto}.flash-messages{position:fixed;top:0;left:50%;transform:translateX(-50%);z-index:1000;width:500px;max-width:80%;box-shadow:0 0 15px 8px var(--shadow_color);border-bottom-left-radius:4px;border-bottom-right-radius:4px;border:1px solid var(--gray_color);border-top-width:0;overflow:hidden;background:var(--dark_background_color);transition:all .5s linear;opacity:1}.flash-messages.ng-hide{opacity:0}.flash-messages__msg{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em;position:relative;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;transition:all .5s linear;opacity:1}.flash-messages__msg:nth-child(n+2){border-top:1px solid var(--gray_color)}.flash-messages__msg.ng-leave-active{opacity:0}.flash-messages__msg p{margin:.4em 0}.flash-messages__msg>div{margin:.6em 0}.flash-messages__msg>div>:first-child{margin-top:0}.flash-messages__msg>div>:last-child{margin-bottom:0}.flash-messages__msg button.dismiss{font-family:math,museo-sans,sans-serif;font-size:20px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-flex:0 0 30px;flex:0 0 30px;border:none;background-color:inherit;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;color:var(--gray_color)}.flash-messages__msg button.dismiss:hover{color:var(--white_color)}.flash-messages__msg>.spacer{-ms-flex:0 1 30px;flex:0 1 30px;min-width:.8em}.announcement{background:#68798b;color:var(--white_color);border-bottom:1px solid var(--white_color);box-sizing:border-box;font-style:normal;font-weight:500;font-size:12px;line-height:14px;text-align:center;padding:7px}.announcement a{text-decoration:underline}.theme-light .announcement{background:#f3f3e7}.bulletins{border:1px solid var(--gray_color);border-radius:7px;background:var(--dark_background_color);box-shadow:0 0 8px 1px var(--highlight_color);margin:20px auto 10px;width:calc(100% - 32px);transform:translateX(4px);max-width:968px}.bulletins__item{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bulletins__item>*{margin:0 1em}.bulletins__item>button{-ms-flex:0 0 auto;flex:0 0 auto}.bulletins__item:nth-child(n+2){border-top:1px solid var(--gray_color)}.bulletins__item .bulletin__title{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:.6em 0}[achievement-list]{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:baseline;align-items:baseline}.achievement-list__showall{font-weight:300;color:var(--light_gray_color);text-decoration:underline}.achievement-badge,.achievement-list__showall{font-family:math,museo-sans,sans-serif;font-size:12px;letter-spacing:.04em;cursor:pointer}.achievement-badge{font-weight:500;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;padding:.1em .5em;border:1px solid var(--gray_color);border-radius:4px;margin-right:.5em;margin-bottom:.5em}.achievement-badge:hover{border-color:var(--light_gray_color)}.achievement-badge .achievement-name{margin-left:1.2em;position:relative}.achievement-badge .achievement-desc{margin-left:2.2em;position:relative}.achievement-badge .earned{color:var(--white_color)}.achievement-badge .unearned{color:var(--gray_color)}.achievement-badge .circle{display:inline-block;position:absolute;left:-.95em;top:3px;border:1px solid var(--gray_color);height:6px;width:6px;border-radius:3px}.achievement-badge .rank1 .circle{border-color:var(--bronze_rank_color)}.achievement-badge .rank1.earned .circle{background-color:var(--bronze_rank_color)}.achievement-badge .rank2 .circle{border-color:var(--silver_rank_color)}.achievement-badge .rank2.earned .circle{background-color:var(--silver_rank_color)}.achievement-badge .rank3 .circle{border-color:var(--gold_rank_color)}.achievement-badge .rank3.earned .circle{background-color:var(--gold_rank_color)}[metac-time-series-graph] .community-band .band-line,[metac-time-series-graph] .community-line>path{stroke:var(--white_color);stroke-width:1;fill:none}[metac-time-series-graph] .line-group.metaculus-line>path{stroke:var(--metaculus_prediction);stroke-width:1;fill:none}[metac-time-series-graph] .scatter-group.resolution-pt path{stroke:var(--positive_resolution);stroke-width:1;fill:var(--dark_background_color)}[metac-time-series-graph] .community-band .band-area{stroke:none;fill:var(--gray_color);opacity:.1}[metac-time-series-graph] .community-band .band-line-0,[metac-time-series-graph] .community-band .band-line-2{stroke:var(--gray_color);opacity:.5}[metac-time-series-graph] .metaculus-band .band-area{stroke:none;fill:var(--metaculus_prediction);opacity:.1}[metac-time-series-graph] .metaculus-band .band-line{stroke:var(--metaculus_prediction);stroke-width:1;fill:none}[metac-time-series-graph] .metaculus-band .band-line-0,[metac-time-series-graph] .metaculus-band .band-line-2{opacity:.5}[metac-time-series-graph] .scatter-group.binary-user-pred path{stroke:var(--gray_color);stroke-width:1;fill:none}[metac-time-series-graph] .continuous-user-pred circle{stroke:var(--gray_color);stroke-width:1;fill:var(--dark_background_color)}[metac-time-series-graph] .continuous-user-pred line{stroke-linecap:round;stroke:var(--gray_color);stroke-width:2}[metac-time-series-graph] .mouseline line{stroke:var(--gray_color);stroke-width:1;stroke-dasharray:2 1}[metac-time-series-graph] .mouseline text{font-family:math,museo-sans,sans-serif;font-size:10px;font-weight:300;letter-spacing:.04em;fill:var(--gray_color)}[metac-question-histogram].metac-graph{width:100%;height:100px;margin-top:1em}[metac-question-histogram].metac-graph .hist-line path{stroke-width:2;fill:var(--gray_color);fill-opacity:.5;stroke:var(--gray_color)}[metac-question-histogram].metac-graph .fit-line path{stroke-width:1;fill:none!important;stroke:var(--error_color)}[score-history-graph]{width:100%;height:150px;margin-top:1em}[score-history-graph] .line-group.line-1 line,[score-history-graph] .line-group.line-1 path{stroke:var(--positive_resolution)}[score-history-graph] .line-group.line-0 line,[score-history-graph] .line-group.line-0 path{stroke:var(--negative_resolution)}[score-history-graph] .line-extension{stroke-dasharray:4 2;stroke-dashoffset:4}[score-history-graph] .mouse-pt-1{stroke:none;fill:var(--positive_resolution)}[score-history-graph] .mouse-pt-0{stroke:none;fill:var(--negative_resolution)}[score-history-graph] .mouse-label-1{fill:var(--positive_resolution)}[score-history-graph] .mouse-label-0,[score-history-graph] .mouse-label-1{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[score-history-graph] .mouse-label-0{fill:var(--negative_resolution)}[score-history-graph] .band-area{stroke:none;fill:var(--gray_color);opacity:.1}[score-history-graph] .band-line{stroke:var(--gray_color);fill:none}[score-history-graph] .band-line.band-line-1{opacity:0}[continuous-score-graph].metac-graph{width:100%;height:150px}[continuous-score-graph].metac-graph .baseline line{stroke:var(--gray_color)}[continuous-score-graph].metac-graph path.neg-line{stroke:var(--negative_resolution)}[continuous-score-graph].metac-graph path.pos-line{stroke:var(--positive_resolution)}[continuous-score-graph].metac-graph .quartile line{stroke:var(--gray_color);stroke-width:1;stroke-dasharray:2 1}[continuous-score-graph].metac-graph .mouse-pt circle{stroke:var(--white_color);stroke-width:1;fill:none}.question-picker .search-bar input.search-box{height:40px;width:264px;border-radius:4px;background-color:var(--white_color);display:block;margin:0 auto;padding:10px 16px}.question-picker .search-bar button.search-submit{position:absolute;right:154px;top:99px;border:0;background-color:transparent;background-repeat:no-repeat;box-shadow:none;width:30px;height:30px}.track-record-section{padding:1em 0 0}.track-record-section p{padding:0 5em}.track-record-section>ul{padding:0 8em}.track-record-section>ul li{margin:.4em 0}.track-record-section metac-modal p{padding:0}.track-record-subsection{margin:1em 0 2em}.track-record-section h2{margin:.5em 0 .3em 1em}.track-record-details{margin-top:1em;padding:0 50px 0 70px;text-align:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.track-record-details .disclosure-triangle{color:var(--gray_color)}.track-record-details p{text-align:left;padding:0}.track-record-details.collapsed p{display:none}[metac-track-record]{margin:1em 0}[metac-track-record]._narrow ._graphs{width:80%}[metac-track-record] ._graphs{width:98%;margin:auto}[metac-track-record]._narrow .track-record-graph{height:270px}[metac-track-record]._narrow .track-record-graph._short{height:180px}.track-record-options{font-size:12px;text-align:center;margin:.7em 25px .5em 70px}.track-record-options>.form-inputs{margin:.5em 3em!important}.track-record-options .form-inputs.other-time-type{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.track-record-options .form-inputs.other-time-type>span{margin:0 .3em;white-space:nowrap;-ms-flex:0 0 6em;flex:0 0 6em}.track-record-options .form-inputs.other-time-type select{margin:.2em .4em}.track-record-options .form-inputs.other-time-type input{margin:.2em .4em;-ms-flex:1 1 auto;flex:1 1 auto}.track-record-category-filter{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0 -10px}.track-record-category-filter>div{-ms-flex:1 0 250px;flex:1 0 250px;margin:0 10px;text-align:left;max-width:310px}.track-record-graph{width:98%;height:360px}.track-record-graph._short{height:220px}.track-record-graph .qpt-dashed-line,.track-record-graph .qpt-line{stroke:var(--track_record_highlight);stroke-width:3;fill:none}.track-record-graph .qpt-dashed-line{stroke-dasharray:4 2}.track-record-graph .qpt-positive{stroke:var(--positive_resolution);fill:var(--positive_resolution)}.track-record-graph .qpt-negative{stroke:var(--negative_resolution);fill:var(--negative_resolution)}.track-record-graph .qpt-in-range,.track-record-graph .qpt-out-range{stroke:var(--other_resolution);fill:var(--other_resolution)}.track-record-graph .calibration-group rect{stroke:var(--negative_resolution);fill:var(--dark_background_color)}.track-record-graph .calibration-group rect.selected{fill:var(--negative_resolution)}.track-record-graph .calibration-group line{stroke:var(--gray_color);stroke-width:3;pointer-events:none}.track-record-qstats{color:var(--gray_color);margin:.5em 0;text-align:center;padding:0 25px 0 70px}.track-record-qstats>span{white-space:nowrap;margin:0 2em}div.track-record-question,ul.track-record-question{margin:.5em 25px .5em 70px;min-height:4.7em}div.track-record-question.long-record,ul.track-record-question.long-record{min-height:5.7em}div.track-record-question ._resolution.positive,ul.track-record-question ._resolution.positive{color:var(--positive_resolution)}div.track-record-question ._resolution.negative,ul.track-record-question ._resolution.negative{color:var(--negative_resolution)}div.track-record-question li,ul.track-record-question li{margin:0}ul.track-record-question{padding:0}ul.track-record-question li{list-style-type:none;text-align:center}.track-record-explanation{margin:1em}.toggle-switch{position:relative;display:inline-block;width:36px;height:18px;cursor:pointer;border:1px solid var(--gray_color);border-radius:9px;background:var(--background_color)}.toggle-switch input{opacity:0;width:0;height:0}.toggle-switch .slider{position:absolute;top:1px;left:1px;width:20px;height:14px;border:1px solid var(--gray_color);border-radius:7px;background-color:var(--page_background_color);transition:.4s}.toggle-switch input:checked+.slider{left:13px}.autocomplete{background-color:#fff;color:var(--background_color);z-index:2000;min-width:264px;width:auto!important;overflow-y:auto;overscroll-behavior:contain}.autocomplete .selected{background-color:var(--white_color)}.autocomplete div.group{padding:20px 30px;color:#8f9bb3;border-bottom:1px solid #8f9bb3;font-size:16px}.autocomplete div:not(.group){padding:15px 42px;color:#222b45;border-bottom:1px solid #f7f9fc}.autocomplete div:not(.group):hover{background-color:var(--white_color);cursor:pointer}.supporter-badge-1{color:var(--bronze_rank_color)}.supporter-badge-2,.supporter-badge-3{color:var(--silver_rank_color)}.supporter-badge-4,.supporter-badge-5{color:var(--gold_rank_color)}slider{display:inline-block;position:relative;height:1px;width:100%;margin:15px 0;vertical-align:middle}slider>div{white-space:nowrap;position:absolute}slider .bar{width:100%;height:100%;background:var(--white_color);overflow:hidden}slider .new-guess.gray{color:var(--gray_color)}slider .new-guess.gray:after{border-color:var(--gray_color)!important}slider .handle.new-guess{width:33px;height:33px;top:-16px;z-index:2}slider .handle.new-guess:after{content:"";background-color:var(--background_color);border:1px solid var(--white_color);width:13px;height:13px;position:absolute;top:9px;left:9px}slider .handle.movable{cursor:pointer}slider .handle.old-guess{width:12px;height:12px;top:-5.5px;border:1px solid var(--gray_color);background-color:var(--background_color)}slider .handle.avg-guess{width:16px;height:20px;bottom:0}slider .handle.avg-guess path{stroke:var(--gray_color);stroke-width:1;fill:var(--background_color)}slider .label.new-guess{top:.9em;padding-left:3px}slider .label.avg-guess{color:var(--gray_color);top:-3em}.slider--container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:2.2em 0 1.5em}.slider--container slider{-ms-flex:0 1 auto;flex:0 1 auto}.slider__left-span{-ms-flex:0 1 6em;flex:0 1 6em;text-align:right;margin-right:1em}.slider__right-span{-ms-flex:0 1 6em;flex:0 1 6em;text-align:left;margin-left:1em}.slider__subtext{overflow:auto;margin:-.5em .5em .5em}.slider__subtext__left div:first-child,.slider__subtext__right div:first-child{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--gray_color)}.slider__subtext__left div:nth-child(n+2),.slider__subtext__right div:nth-child(n+2){font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;color:var(--white_color)}.slider__subtext__left div:nth-child(n+2) em,.slider__subtext__right div:nth-child(n+2) em{font-style:normal;font-weight:700}.slider__subtext__left{float:left;text-align:left}.slider__subtext__right{float:right;text-align:right}.slider__subtext__pt-label{text-align:center;margin-bottom:-.5em}.slider__subtext__pt-label span{margin:0 .5em;cursor:pointer;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;color:var(--gray_color);border-bottom:.5px solid gray}.slider__subtext__pt-label span.active{color:var(--white_color);border-color:var(--white_color);font-weight:500}.slider__subtext__result{color:var(--gray_color);margin-bottom:1em}.slider__subtext__result>div{margin:.2em 0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:baseline;align-items:baseline}.slider__subtext__result>div>span:first-child{text-align:right;width:52%}.slider__subtext__result>div>span:last-child{text-align:left;margin-left:.7em;width:42%}.slider__subtext__result strong{color:var(--white_color);margin:0 .3em}.help-btn,.money-btn{width:18px;height:18px;min-width:18px;max-height:18px;padding:0;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;text-align:center;border:1.5px solid var(--gray_color);border-radius:50%;cursor:pointer;background-color:var(--dark_background_color);text-decoration:none}.help-btn svg,.money-btn svg{width:90%}.help-btn svg .filled,.money-btn svg .filled{fill:var(--gray_color)}.help-btn:hover,.money-btn:hover{background-color:var(--gray_color)}.help-btn:hover svg .filled,.money-btn:hover svg .filled{fill:var(--dark_background_color)}._top-right.money-btn,.help-btn._top-right{position:absolute;top:4px;right:6px}h2 .help-btn,h2 .money-btn,h3 .help-btn,h3 .money-btn{margin-left:.3em;position:relative;bottom:.05em}.active.money-btn,.help-btn.active{border-color:var(--alert_color)}.active.money-btn svg .filled,.help-btn.active svg .filled{fill:var(--alert_color)}.active.money-btn:hover,.help-btn.active:hover{background-color:var(--alert_color)}.active.money-btn:hover svg .filled,.help-btn.active:hover svg .filled{fill:var(--dark_background_color)}[disable-help]{text-align:center}[disable-help] a{text-decoration:underline;color:var(--gray_color);cursor:pointer;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em}metac-modal{display:none}metac-modal.active{display:block}.modal__wrapper{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:column;flex-direction:column}.modal__wrapper:before{content:" ";position:absolute;width:100%;height:100%;background:var(--background_color);opacity:.75}.modal__box{margin:auto;max-height:calc(100vh - 42px);border:1px solid var(--white_color);background-color:var(--background_color);position:relative;width:560px;overflow:auto}.modal__close-wrapper{height:0;position:sticky;top:0}.modal__close{position:absolute;top:5px;right:5px;color:var(--gray_color);height:20px;width:20px;border:1px solid var(--gray_color);cursor:pointer;text-align:center}.modal__close:hover{background-color:var(--gray_color);color:var(--background_color)}.modal__close:before{content:"\D7";font-size:20px;position:relative;top:-3.5px;left:.5px;font-weight:300;font-family:museo-sans}.modal__content{padding:28px;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.modal__content h2,.modal__content h3,.modal__content h4{text-align:center}.modal__content>:first-child{margin-top:1px}.modal__content>:last-child{margin-bottom:1px!important}.modal__content hr{margin:2em 0}.welcome-modal h1{font-size:2.3em;text-align:center}.welcome-modal h1>span{display:inline-block;border:1px solid var(--gray_color);background:var(--dark_background_color);padding:.2em 1em .1em}.welcome-modal .welcome-modal__sign-in{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:baseline;align-items:baseline}.welcome-modal .welcome-modal__sign-in em{color:var(--gray_color);font-size:12px;display:inline-block;margin:0 1em}.welcome-modal .horiz-text-divider{margin:1.5em 0 1em}.tutorials-table{margin:1.5em auto;max-width:80%}.tutorials-table td,.tutorials-table th{padding:0 1em;text-align:left}.tutorials-table th{border-bottom:3px double var(--gray_color);font-weight:700}.tutorials-table td:nth-child(n+2),.tutorials-table th:nth-child(n+2){text-align:center}.tutorial__running-score{text-align:right;display:inline-block;float:right;border:1px solid var(--gray_color);border-width:0 0 1px 1px;padding:1em;margin-top:-1em!important;margin-right:-1em;margin-bottom:1em;margin-left:1em}.tutorial__centered-btns,.tutorial__prediction .question__detail-box{margin:1em auto;width:75%}.tutorial__centered-btns{display:-ms-flexbox;display:flex}.tutorial__centered-btns>span{-ms-flex:1 1 1em;flex:1 1 1em;text-align:center}.tutorial__centered-btns>span:last-child{text-align:right}.tutorial__centered-btns>span:first-child{text-align:left}.tutorial__prediction-result{text-align:center}.tutorial__prediction-result strong{font-size:105%}.tutorial__final-score{text-align:center}.tutorial__final-score h1{text-transform:none;margin-top:0}.fine-print,.hide-comment{color:var(--gray_color);font-size:.86em;margin:1.5em 0}.spoiler-warning>p:last-child{padding-left:2em}.category-picker{-ms-flex:1 1 auto;flex:1 1 auto}.category-picker>ul{margin:0;padding-left:1em}.category-picker>div{padding-left:.8em;max-width:25em;margin:.4em 0}.category-picker>div input{width:100%}.category-picker .max-categories,.category-picker .no-categories{font-style:italic;color:var(--gray_color)}.category-picker .max-categories{font-size:12px;margin:.3em 0 .5em}.category-picker .remove-button{margin-left:.5em;text-decoration:underline;cursor:pointer;color:var(--gray_color)}.category-picker .add-button{margin-left:.5em}.category-picker .tribute-container{position:relative;width:100%;height:0;margin:0;overflow:visible}.category-picker .tribute-container ul{position:absolute;top:-2px;left:0;right:0;overflow:auto;max-height:300px}#payment-form{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#payment-form #card-element{-ms-flex-item-align:normal;-ms-grid-row-align:normal;align-self:normal;background-color:var(--white_color);border-radius:4px;padding:10px;box-shadow:0 4px 6px #323208,0 1px 3px #000}.footnote{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--gray_color);margin-top:.3em}.remove-x{color:var(--gray_color)!important;font-size:120%;font-weight:400;cursor:pointer}span.link{color:var(--link_unvisited_color);cursor:pointer}span.link:hover{text-decoration:underline}[continuous-prediction-slider]{margin-top:5px;color:var(--gray_color);font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em}[continuous-prediction-slider] .slider._main{width:100%;height:36px}[continuous-prediction-slider] .slider._weight{width:100%;height:24px;margin-top:-3px}[continuous-prediction-slider] .slider._weight line,[continuous-prediction-slider] .slider._weight path{stroke:var(--gray_color)!important}[continuous-prediction-slider]:first-child{margin-top:0}[continuous-prediction-slider] .draggable{cursor:pointer}[continuous-prediction-slider] div{display:-ms-flexbox;display:flex;padding:0 55px}continuous-prediction-control .add-component-buttons{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin:5px 0 10px}continuous-prediction-control .add-component-buttons button{margin:0 1em}continuous-prediction-control{position:relative}@media screen and (max-width:690px){continuous-prediction-control{-webkit-user-select:none;-ms-user-select:none;user-select:none}}continuous-prediction-control ._ptable._columns{width:60%;margin:.5em auto 1em}continuous-prediction-control ._ptable._columns ._header,continuous-prediction-control ._ptable._columns ._predictions>div{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:baseline;align-items:baseline;margin:.3em 0}continuous-prediction-control ._ptable._columns div>span{-ms-flex:1 0 38%;flex:1 0 38%;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center}continuous-prediction-control ._ptable._columns div>span:last-child{color:var(--gray_color)}continuous-prediction-control ._ptable._columns div>span:first-child{-ms-flex:0 1 140px;flex:0 1 140px;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;text-align:right;padding-right:1em}continuous-prediction-control ._ptable._columns ._header>span{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:underline}continuous-prediction-control ._ptable._community,continuous-prediction-control ._ptable._player{width:60%;margin:.5em auto 1em}continuous-prediction-control ._ptable._community ._header,continuous-prediction-control ._ptable._player ._header{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:underline;text-align:center;margin:.3em 0}continuous-prediction-control ._ptable._community ._predictions,continuous-prediction-control ._ptable._player ._predictions{display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;font-family:math,museo-sans,sans-serif;font-size:16px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:.5em 0}continuous-prediction-control ._ptable._community ._predictions>div,continuous-prediction-control ._ptable._player ._predictions>div{-ms-flex:0 1 120px;flex:0 1 120px;display:-ms-flexbox;display:flex;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-ms-flex-align:center;align-items:center}continuous-prediction-control ._ptable._community ._predictions>div>span:first-child,continuous-prediction-control ._ptable._player ._predictions>div>span:first-child{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em}continuous-prediction-control ._ptable._player ._header>span:nth-child(3),continuous-prediction-control ._ptable._player ._predictions>div>span:nth-child(3){display:none}continuous-prediction-control ._ptable._community{color:var(--gray_color)}continuous-prediction-control ._ptable._community ._header>span:nth-child(2),continuous-prediction-control ._ptable._community ._predictions>div>span:nth-child(2),continuous-prediction-control ._ptable._hidden{display:none}continuous-prediction-control ._ptable ._header span.clickable{background-image:var(--dropdown-icon);background-position:100% 50%;background-repeat:no-repeat;padding:0 25px;text-align:center;cursor:pointer;border-radius:.5em;text-decoration:underline}continuous-prediction-control ._ptable ._header span.clickable:hover{color:var(--background_color)!important;background:var(--gray_color);text-decoration:none;background-image:none}continuous-prediction-control ._ptable ._header span.clickable:hover.metac-prediction{background:var(--metaculus_prediction)}continuous-prediction-control svg.prediction-graph{width:100%;height:250px}continuous-prediction-control svg.prediction-graph .pdf-line path{stroke:var(--white_color);fill:none}continuous-prediction-control svg.prediction-graph .dotted path{stroke-dasharray:1 2}continuous-prediction-control svg.prediction-graph .pdf-area path{fill:var(--gray_color);stroke:none;opacity:.3}continuous-prediction-control svg.prediction-graph .tick.major,continuous-prediction-control svg.prediction-graph .tick.minor{stroke:var(--gray_color);stroke-width:1}continuous-prediction-control svg.prediction-graph .quartiles line{stroke-width:1;stroke-dasharray:2 1}continuous-prediction-control svg.prediction-graph .pdf-components path{stroke-dasharray:1 2}continuous-prediction-control svg.prediction-graph .alt-knobs path,continuous-prediction-control svg.prediction-graph .alt.pdf-line path,continuous-prediction-control svg.prediction-graph .alt.quartiles line,continuous-prediction-control svg.prediction-graph .mouse-pt circle#mousePtCircleAlt{stroke:var(--gray_color)}continuous-prediction-control svg.prediction-graph .alt.pdf-line.metac-prediction path{stroke:var(--metaculus_prediction)}continuous-prediction-control svg.prediction-graph .alt.pdf-area path{opacity:.1}continuous-prediction-control svg.prediction-graph .draggable{cursor:pointer}continuous-prediction-control svg.prediction-graph .result path{stroke:var(--positive_resolution);fill:var(--background_color)}continuous-prediction-control svg.prediction-graph .mouse-pt circle{stroke:var(--white_color);stroke-width:1;fill:none}continuous-prediction-control .gaussian-slider-labels{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;margin:-2px 0 .8em;padding:0 .5em}continuous-prediction-control .gaussian__result{color:var(--positive_resolution);text-decoration:underline}continuous-prediction-control .gaussian__result strong{color:var(--white_color)}continuous-prediction-control .min-max-pts{margin:1em;text-align:center}continuous-prediction-control .min-max-pts span:first-child{margin-right:2em}continuous-prediction-control .slider__subtext__pt-label{margin-bottom:.1em}continuous-prediction-control .mouse-pdf-detail{color:var(--gray_color);font-size:12px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin:.5em 0}continuous-prediction-control .mouse-pdf-detail>span{margin:0 .5em}continuous-prediction-control .mouse-pdf-detail strong{color:var(--white_color)}continuous-prediction-control .mouse-score-detail{color:var(--gray_color);margin-bottom:1em;font-size:12px}continuous-prediction-control .mouse-score-detail>div{margin:.2em 0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:baseline;align-items:baseline}continuous-prediction-control .mouse-score-detail>div>span:first-child{text-align:right;margin-right:.4em;width:49%}continuous-prediction-control .mouse-score-detail>div>span:last-child{text-align:left;margin-left:.4em;width:49%}continuous-prediction-control .mouse-score-detail strong{color:var(--white_color);margin:0 .3em}svg.icon .invisible{opacity:0!important}svg.icon .stroked{stroke:var(--white_color);fill:none}svg.icon .filled{stroke:none;fill:var(--white_color)}svg.icon .fill-on-hover{stroke:var(--white_color);fill:none}.btn.selected svg.icon .stroked,.btn:hover svg.icon .stroked,.round-btn.selected svg.icon .stroked,.round-btn:hover svg.icon .stroked,svg.icon:hover .stroked{stroke:var(--background_color)}.btn.selected svg.icon .filled,.btn:hover svg.icon .filled,.round-btn.selected svg.icon .filled,.round-btn:hover svg.icon .filled,svg.icon:hover .filled{fill:var(--background_color)}.btn.selected svg.icon .fill-on-hover,.btn:hover svg.icon .fill-on-hover,.round-btn.selected svg.icon .fill-on-hover,.round-btn:hover svg.icon .fill-on-hover,svg.icon:hover .fill-on-hover{stroke:var(--gray_color);fill:var(--gray_color)}.btn svg.icon,.round-btn svg.icon{width:1.2em;margin:0 .25em}.social-sharing-button{width:28px;height:28px;background:var(--background_color);cursor:pointer;border-radius:5px}@charset "UTF-8";
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,blockquote,details,figcaption,figure,footer,header,main,menu,nav,pre,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.theme-dark,.theme-default,.theme-light .header-palette,.theme-light .section__header,.theme-light footer.main-footer,.theme-light metac-modal,.theme-light metac-modal .modal__wrapper,body{--background_color:#2c3947;--dark_background_color:#283441;--page_background_color:#354352;--shadow_color:#000;--white_color:#eff4f4;--off_white_color:#fff6f1;--gray_color:#91999e;--error_color:#d85699;--dark_gray_color:#606b72;--light_gray_color:#dadfdf;--highlight_color:#ffe4a1;--button_highlight_fg:#2c3947;--button_highlight_bg:#91999e;--button_highlight_bg_bright:#eff4f4;--alert_color:#ffaf1e;--metaculus_prediction:#ffe4a1;--metaculus_prediction_cname:"yellow ";--positive_resolution:#ffe629;--negative_resolution:#628cff;--other_resolution:#ffaf1e;--track_record_highlight:red;--link_unvisited_color:#bbd0f0;--link_visited_color:#bbd0f0;--bronze_rank_color:#4b66b9;--silver_rank_color:#e7d7ce;--gold_rank_color:#fafb27;--header_font_size:1.0;--header_font_family:"alternate-gothic-no-1-d";--header_font_weight:300;--header_font_spacing:0.08em;--single-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI0Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICM5MTk5OWU7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PC9zdmc+");--double-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI2Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICM5MTk5OWU7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PGxpbmUgeTE9IjUiIHkyPSI1IiB4Mj0iMjAwMCI+PC9saW5lPjwvc3ZnPg==");--triple-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjOTE5OTllOyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--triple-white-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjZWZmNGY0OyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--dropdown-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjOTE5OTllOyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--dropdown-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjMmMzOTQ3OyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--search-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjOTE5OTllOyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjMmMzOTQ3OyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-cancel:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2xpbmUge3N0cm9rZTogIzkxOTk5ZTsgc3Ryb2tlLXdpZHRoOjEuNTt9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeDE9IjgiIHkxPSI4IiB4Mj0iMjAiIHkyPSIyMCI+PC9saW5lPjxsaW5lIHgxPSI4IiB5Mj0iOCIgeDI9IjIwIiB5MT0iMjAiPjwvbGluZT48L3N2Zz4=")}.theme-finance{--background_color:#fff8e8;--dark_background_color:#fbf4df;--page_background_color:#fff8e8;--shadow_color:#134013;--white_color:#000a00;--off_white_color:#1d3415;--gray_color:#367133;--dark_gray_color:#606b72;--light_gray_color:#222;--highlight_color:#1a60df;--button_highlight_fg:#fff8e8;--button_highlight_bg:#367133;--button_highlight_bg_bright:#000a00;--alert_color:#ec7607;--metaculus_prediction:#1a60df;--positive_resolution:#ff8400;--negative_resolution:#1374e3;--other_resolution:#ec7607;--link_unvisited_color:#533b92;--link_visited_color:#533b92;--bronze_rank_color:#dd8a49;--silver_rank_color:#237c23;--gold_rank_color:#000;--single-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI0Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICMzNjcxMzM7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PC9zdmc+");--double-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI2Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICMzNjcxMzM7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PGxpbmUgeTE9IjUiIHkyPSI1IiB4Mj0iMjAwMCI+PC9saW5lPjwvc3ZnPg==");--triple-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjMzY3MTMzOyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--triple-white-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjMDAwYTAwOyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--dropdown-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjMzY3MTMzOyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--dropdown-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjZmZmOGU4OyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--search-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjMzY3MTMzOyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjZmZmOGU4OyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-cancel:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2xpbmUge3N0cm9rZTogIzM2NzEzMzsgc3Ryb2tlLXdpZHRoOjEuNTt9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeDE9IjgiIHkxPSI4IiB4Mj0iMjAiIHkyPSIyMCI+PC9saW5lPjxsaW5lIHgxPSI4IiB5Mj0iOCIgeDI9IjIwIiB5MT0iMjAiPjwvbGluZT48L3N2Zz4=")}.theme-finance,.theme-light{--error_color:#aa0e11;--metaculus_prediction_cname:"blue "}.theme-light{--background_color:#fff;--dark_background_color:#fff;--page_background_color:#eef1f3;--shadow_color:#777;--white_color:#020036;--off_white_color:#000;--gray_color:#555;--dark_gray_color:#555;--light_gray_color:#111;--highlight_color:#018571;--button_highlight_fg:#000;--button_highlight_bg:#f7ecc5;--button_highlight_bg_bright:#f7ecc5;--alert_color:#ff6f05;--metaculus_prediction:#018571;--positive_resolution:#19a3d4;--negative_resolution:#ef2c15;--other_resolution:#ff6f05;--link_unvisited_color:#659995;--link_visited_color:#659995;--bronze_rank_color:#f1e2c0;--silver_rank_color:#adc3cc;--gold_rank_color:#ffe000;--single-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI0Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICMwMDA7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PC9zdmc+");--double-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI2Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICMwMDA7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PGxpbmUgeTE9IjUiIHkyPSI1IiB4Mj0iMjAwMCI+PC9saW5lPjwvc3ZnPg==");--triple-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--triple-white-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--dropdown-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--dropdown-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--search-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjMDAwOyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-cancel:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2xpbmUge3N0cm9rZTogIzAwMDsgc3Ryb2tlLXdpZHRoOjEuNTt9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeDE9IjgiIHkxPSI4IiB4Mj0iMjAiIHkyPSIyMCI+PC9saW5lPjxsaW5lIHgxPSI4IiB5Mj0iOCIgeDI9IjIwIiB5MT0iMjAiPjwvbGluZT48L3N2Zz4=")}.theme-light .header-palette,.theme-light .section__header{--background_color:#516066;--dark_background_color:#2c3947;--gray_color:#eff4f4;--dark_gray_color:#eff4f4;--single-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI0Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICNlZmY0ZjQ7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PC9zdmc+");--double-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSI2Ij4gPGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48IVtDREFUQVtsaW5lIHtzdHJva2U6ICNlZmY0ZjQ7IHN0cm9rZS13aWR0aDogMX1dXT48L3N0eWxlPjwvZGVmcz48bGluZSB5MT0iMiIgeTI9IjIiIHgyPSIyMDAwIj48L2xpbmU+PGxpbmUgeTE9IjUiIHkyPSI1IiB4Mj0iMjAwMCI+PC9saW5lPjwvc3ZnPg==");--triple-gray-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjZWZmNGY0OyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--triple-white-line:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMiI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbbGluZSB7c3Ryb2tlOiAjZWZmNGY0OyBzdHJva2Utd2lkdGg6IDF9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeTE9IjIiIHkyPSIyIiB4Mj0iMjAwMCI+PC9saW5lPjxsaW5lIHkxPSI2IiB5Mj0iNiIgeDI9IjIwMDAiPjwvbGluZT48bGluZSB5MT0iMTAiIHkyPSIxMCIgeDI9IjIwMDAiPjwvbGluZT48L3N2Zz4=");--dropdown-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjZWZmNGY0OyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--dropdown-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAiIGhlaWdodD0iOCI+IDxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PCFbQ0RBVEFbcGF0aCB7c3Ryb2tlOiAjMmMzOTQ3OyBzdHJva2Utd2lkdGg6IDE7IGZpbGw6IG5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0wLDBMNyw4TDE0LDAiPjwvcGF0aD48L3N2Zz4=");--search-icon:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjZWZmNGY0OyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-hover:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2NpcmNsZSwgbGluZSB7c3Ryb2tlOiAjMmMzOTQ3OyBzdHJva2Utd2lkdGg6IDI7IHN0cm9rZS1saW5lY2FwOnJvdW5kOyBmaWxsOm5vbmU7fV1dPjwvc3R5bGU+PC9kZWZzPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjciPjwvY2lyY2xlPjxsaW5lIHgxPSIxNy45NSIgeTE9IjE3Ljk1IiB4Mj0iMjMiIHkyPSIyMyI+PC9saW5lPjwvc3ZnPg==");--search-icon-cancel:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjgiIGhlaWdodD0iMjgiPiA8ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBW2xpbmUge3N0cm9rZTogI2VmZjRmNDsgc3Ryb2tlLXdpZHRoOjEuNTt9XV0+PC9zdHlsZT48L2RlZnM+PGxpbmUgeDE9IjgiIHkxPSI4IiB4Mj0iMjAiIHkyPSIyMCI+PC9saW5lPjxsaW5lIHgxPSI4IiB5Mj0iOCIgeDI9IjIwIiB5MT0iMjAiPjwvbGluZT48L3N2Zz4=");color:var(--white_color);background-color:#2c3947}.theme-light .header-palette:after{content:"";clear:both;display:table}.theme-light footer.main-footer,.theme-light metac-modal,.theme-light metac-modal .modal__wrapper{color:var(--white_color)}*{box-sizing:border-box}:focus{outline:0}[ng-cloak]{display:none!important}@font-face{font-family:math;src:local("Helvetica");unicode-range:u+b1}body{background-color:var(--page_background_color);font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:100vh;overflow-y:scroll;min-width:690px}.content-wrap,body{color:var(--white_color)}.content-wrap{-ms-flex:1 0 auto;flex:1 0 auto;width:100%;background:var(--page_background_color);padding:0 12px 0 20px}footer,section{background:var(--background_color)}h1{font-size:calc(var(--header_font_size) * 1.86em);margin:1.005em 0 .67em}h1,h2{font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h2{font-size:calc(var(--header_font_size) * 1.61em);margin:1.05em 0 .7em}h3{font-size:1.3em;margin:1.2em 0 .85em}h3,h4{font-family:math,museo-sans,sans-serif;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h4{font-size:1.15em;margin:1.35em 0 .9em}h5{font-size:1em;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h5,h6{font-family:math,museo-sans,sans-serif;letter-spacing:.04em;margin:1.5em 0 1em}h6{font-size:.8em;font-weight:300}h1+h2,h1+h3,h2+h3,h3+h4{margin-top:0}.disclosure-triangle.trailing-divider:after,.header-bar--single--left:after,.horiz-text-divider:after,.horiz-text-divider:before,.trailing-divider:after{content:" ";display:inline-block;height:3px;background-image:var(--single-gray-line);background-position:0 50%;background-repeat:repeat-x}.header-bar--single--left,.horiz-text-divider{white-space:nowrap;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.header-bar--single--left>span,.horiz-text-divider>span{-ms-flex:0 0 auto;flex:0 0 auto}.header-bar--single--left:after{-ms-flex:1 1 2em;flex:1 1 2em;margin-left:.5em}.horiz-text-divider{margin-top:1em;margin-bottom:1em;color:var(--gray_color);font-style:italic}.horiz-text-divider:after,.horiz-text-divider:before{-ms-flex:0 1 2em;flex:0 1 2em;margin:0 .5em}.disclosure-triangle.trailing-divider,.trailing-divider{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.disclosure-triangle.trailing-divider:after,.trailing-divider:after{-ms-flex:1 1 2em;flex:1 1 2em;margin:0 15% 0 .5em}.disclosure-triangle.trailing-divider svg{margin-right:.6em}small{font-family:math,museo-sans,sans-serif;font-size:.86em;font-weight:300;letter-spacing:.04em}.dark{color:var(--gray_color)!important}.highlighted{color:var(--highlight_color)!important}.metac-prediction{color:var(--metaculus_prediction)!important}.metac-prediction._color-name:before{content:var(--metaculus_prediction_cname)}.error{font-style:italic;color:var(--error_color)}p.disclaimer{color:var(--gray_color);font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;margin:.5em 0}.centered{text-align:center}hr{border-width:0;border-top:1px solid var(--dark_gray_color);opacity:.3}p{margin:.8em 0}a{text-decoration:none}a:link{color:var(--link_unvisited_color)}a:visited{color:var(--link_visited_color)}a.force-unvisited{color:var(--link_unvisited_color);cursor:pointer}a.force-visited{color:var(--link_visited_color);cursor:pointer}a:hover{text-decoration:underline}.link-button{display:inline;color:var(--link_unvisited_color);background:none;border:none;cursor:pointer;font-size:1em;padding:0;margin:0}.link-button:hover{text-decoration:underline}.link-button:focus{outline:none}aside,blockquote,pre{border:1px solid var(--dark_gray_color);border-radius:3px;margin:2em 1.5em;padding:0 1em;overflow-x:auto}blockquote{margin:1em 1.5em}blockquote footer{text-align:right;margin:.8em 0}blockquote footer:before{content:"\2014"}pre{margin:1em 1.5em;padding:.8em 1em;word-wrap:normal}code,pre{color:var(--light_gray_color)}textarea{white-space:pre-wrap;font-family:monospace;border:1px solid var(--gray_color)}ul.no-bullet li,ul.no-style{list-style:none}ul.no-style{margin:0;padding:0}ul.no-bullet--strong li{list-style:none;font-weight:700;margin-top:.3em;margin-bottom:.3em}ul.table-of-contents a{color:var(--gray_color)}.nobr{white-space:nowrap}.clearfix{overflow:auto}.collapse-top-margin>:first-child{margin-top:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}div.ellipsis{margin:12px 0;text-align:center;letter-spacing:5px;font-size:10px}div.ellipsis:before{content:"\2022\2022\2022"}.z-index-1{z-index:1}.btn,a.btn{font-family:alternate-gothic-no-1-d;font-size:18px;letter-spacing:.08em;font-weight:300;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;text-align:center;border:1px solid var(--gray_color);padding:.2em .4em .1em;color:var(--gray_color);cursor:pointer;background-color:var(--background_color);text-decoration:none;position:relative;border-radius:0}.btn.selected,.btn:hover,a.btn.selected,a.btn:hover{background-color:var(--button_highlight_bg);color:var(--button_highlight_fg)}.btn._small{font-size:16px;padding:0 .4em}.btn._large{font-size:20px;padding-left:1em;padding-right:1em;text-transform:uppercase}.btn._disabled,.btn[disabled]{cursor:default!important}.btn._disabled,.btn._disabled:hover,.btn[disabled],.btn[disabled]:hover{color:var(--gray_color)!important;border-color:var(--gray_color)!important}.btn._disabled:hover,.btn[disabled]:hover{background-color:var(--background_color)!important}.btn._bright,.section__nav li.active .btn{border-color:var(--white_color);color:var(--white_color)}.btn._bright:hover,.section__nav li.active .btn:hover{background-color:var(--white_color);background-color:var(--button_highlight_bg_bright);color:var(--button_highlight_fg)}.btn._semi-bright{color:var(--white_color)}.btn._semi-bright:hover{color:var(--button_highlight_fg)}.btn._wide{min-width:9em;text-transform:uppercase}.btn._centered{display:block;margin:.5em auto}.btn._load-more{display:block;width:100px;margin:0 auto;border-top-width:0;text-transform:uppercase}.btn._load-more._small{width:80px}select,select.btn{-webkit-appearance:none;appearance:none;border-radius:0;background-image:var(--dropdown-icon);background-position:100% 50%;background-repeat:no-repeat;padding-right:25px!important;text-align:left;cursor:pointer}select.btn::-ms-expand,select::-ms-expand{display:none}select.btn:hover{background-image:var(--dropdown-icon-hover)}.round-btn,a.round-btn{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;text-align:center;border:1px solid var(--gray_color);padding:.2em .4em .3em;color:var(--white_color);cursor:pointer;background-color:var(--background_color);text-decoration:none;position:relative;border-radius:.4em}.round-btn.selected,.round-btn:hover,a.round-btn.selected,a.round-btn:hover{background-color:var(--button_highlight_bg);color:var(--button_highlight_fg)}.disclosure-triangle{display:inline-block;cursor:pointer}.disclosure-triangle svg{display:inline-block;width:.5em;height:.5em;margin-bottom:.1em;margin-right:.4em}.disclosure-triangle svg path{fill:var(--dark_gray_color);stroke:none}.loading-animation{width:100px;height:10px}.loading-animation circle{fill:var(--gray_color);stroke:none}.loading-animation stop{stop-color:var(--background_color)}.btn .loading-animation{width:100%;position:absolute;top:50%;left:0;transform:translateY(-50%)}input[type=range]{-webkit-appearance:none;background:transparent;vertical-align:middle}input[type=range]:focus{outline:none}input[type=range]::-webkit-slider-thumb{width:13px;height:13px;border:1px solid var(--white_color);background:var(--background_color);border-radius:0;cursor:pointer;-webkit-appearance:none;margin-top:-6px}input[type=range]::-moz-range-thumb{width:13px;height:13px;border:1px solid var(--white_color);background:var(--background_color);border-radius:0;cursor:pointer}input[type=range]::-ms-thumb{width:13px;height:13px;border:1px solid var(--white_color);background:var(--background_color);border-radius:0;cursor:pointer}input[type=range]::-webkit-slider-runnable-track{width:100%;height:1px;cursor:pointer;animate:.2s;background:var(--white_color)}input[type=range]::-moz-range-track{width:100%;height:1px;cursor:pointer;animate:.2s;background:var(--white_color)}input[type=range]::-ms-track{width:100%;height:1px;cursor:pointer;animate:.2s;background:var(--white_color)}body>.main-wrapper{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex:1 0 auto;flex:1 0 auto;width:100%}.main-spacer{-ms-flex:1 1 0px;flex:1 1 0}.main-footer{z-index:0;position:relative;margin:5px auto 0;width:calc(100% - 32px);transform:translateX(4px);max-width:968px;border:1px solid var(--gray_color);border-bottom:0}.main-footer__row{display:-ms-flexbox;display:flex;padding:2em 1em 1em;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:distribute;justify-content:space-around}.main-footer__row h2,.main-footer__row h3{margin:0;font-weight:700;font-size:18px;font-family:math,museo-sans,sans-serif}.main-footer__newsletter{-ms-flex:0 0 200px;flex:0 0 200px;margin:0 .3em}.main-footer__newsletter p{font-size:12px}.main-footer__newsletter__form{-ms-flex:1 1 auto;flex:1 1 auto;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left}.main-footer__newsletter button,.main-footer__newsletter input{background-color:var(--background_color);color:var(--white_color);border:1px solid var(--gray_color);height:30px}.main-footer__newsletter button{cursor:pointer}.main-footer__newsletter button:hover{background-color:var(--button_highlight_bg);color:var(--button_highlight_fg)}.main-footer__newsletter input{min-width:0;width:160px;padding-left:10px;-ms-flex:1 1 auto;flex:1 1 auto;border-right:0}.main-footer__navigation{-ms-flex-preferred-size:60%;flex-basis:60%;display:-ms-flexbox;display:flex;-ms-flex-pack:space-evenly;justify-content:space-evenly}.main-footer__navigation__col{-ms-flex:0 0 auto;flex:0 0 auto;margin:0 .6em}.main-footer__navigation__col ul{list-style:none;padding:0}.main-footer__navigation__col li{margin-bottom:10px}.main-footer__navigation__col li a,.main-footer__navigation__col li a:link,.main-footer__navigation__col li a:visited{color:var(--white_color);cursor:pointer}.main-footer__social{-ms-flex:0 0 90px;flex:0 0 90px;text-align:center}.main-footer__social .social-sharing-button{width:23px;height:23px}.main-footer__legal{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:300;letter-spacing:.04em;color:var(--gray_color)}.main-footer__legal a{color:var(--gray_color);margin:0 8px}.main-footer__featured{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:var(--dark_background_color);background:var(--gray_color);min-height:50px;-ms-flex-pack:distribute;justify-content:space-around}.main-footer__featured img{max-height:25px;filter:invert(100%)}.main-header{background:#283441;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:stretch;align-items:stretch;min-height:48px}.theme-dark .main-header,.theme-default .main-header,.theme-light .header-palette .main-header,.theme-light .section__header .main-header,.theme-light footer.main-footer .main-header,.theme-light metac-modal .main-header{border-bottom:1px solid #5a6064;box-sizing:content-box}.header__logo{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;text-decoration:none!important;text-align:center;max-width:250px;-ms-flex:0 0 auto;flex:0 0 auto}.header__logo h1{font-size:calc(var(--header_font_size) * 30px);font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);color:#fff;margin:0 20px}.header__logo h1,.header__logo h2{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.header__logo h2{font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;color:#c6d1d8;margin:-6px 10px 4px;text-transform:none}header.main-header .header__toggles{--background_color:#2f4355;--dark_background_color:#283441;--alert_color:#ffaf1e;--gray_color:#91999e;--page_background_color:#283441}.header__hamburger{color:#fff;cursor:pointer;padding:15px}@media screen and (min-width:800px){.header__hamburger{display:none}}.header__hamburger:hover{color:#fffedd}@media screen and (min-width:800px){ul.header__nav{position:relative;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;list-style:none;-ms-flex-align:center;align-items:center;-ms-flex:1 1 auto;flex:1 1 auto;padding:0;margin:0 0 0 8px}ul.header__nav .header__nav__menu-backdrop{display:none;position:fixed;left:0;top:0;right:0;bottom:0}ul.header__nav .header__nav__menu-backdrop._expanded{display:block;z-index:2}ul.header__nav ._nav-item1,ul.header__nav .header__nav__unauthenticated{-ms-flex:0 0 auto;flex:0 0 auto}ul.header__nav ._nav-item1 a,ul.header__nav .header__nav__unauthenticated a{padding:4px 0;cursor:pointer;color:#fff}ul.header__nav ._spacer{display:inline-block;-ms-flex:1 0 24px;flex:1 0 24px;max-width:32px}ul.header__nav li.header__nav__user-toggle{margin-right:2px;padding:4px 0;margin:4px 2px 4px 0;cursor:pointer;-ms-flex:0 1 auto;flex:0 1 auto;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;overflow:hidden;min-width:2em}ul.header__nav li.header__nav__user-toggle:hover{text-decoration:underline}ul.header__nav li.header__nav__user-toggle span{display:inline-block;text-overflow:ellipsis;overflow:hidden;-ms-flex:0 1 auto;flex:0 1 auto;margin-right:3px}ul.header__nav li.header__nav__user-toggle svg{-ms-flex:0 0 auto;flex:0 0 auto}ul.header__nav .header__nav__unauthenticated a:last-child{margin-left:8px;padding:4px 8px;background-color:#eff4f4;border-radius:12px;color:#283441;text-decoration:none}ul.header__nav .header__nav__unauthenticated a:last-child:hover{color:#283441;background-color:#f9fbfb}ul.header__nav .header__toggles{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin:0 12px}ul.header__nav .header__toggles>span{display:inline-block;margin:0 4px}ul.header__nav .header__toggles>span>span:last-child{display:none}ul.header__nav li.header__nav__dropdown-wrapper{position:relative;height:100%;width:0}ul.header__nav ul.header__nav__dropdown{display:none}ul.header__nav ul.header__nav__dropdown._expanded{display:block}ul.header__nav ul.header__nav__dropdown{position:absolute;top:100%;right:-10px;min-width:-webkit-max-content;min-width:max-content;background-color:#283441;border:1px solid #2f4355;border-top:0;list-style:none;padding:4px 0;text-align:right;z-index:10}ul.header__nav ul.header__nav__dropdown ._username{display:none}ul.header__nav ul.header__nav__dropdown ._user-stats{min-width:-webkit-max-content;min-width:max-content}ul.header__nav ul.header__nav__dropdown ._user-stats li._level{font-weight:700;margin:0 0 8px}ul.header__nav ul.header__nav__dropdown ._user-stats li,ul.header__nav ul.header__nav__dropdown ._user-stats li._level{font-family:math,museo-sans,sans-serif;font-size:12px;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}ul.header__nav ul.header__nav__dropdown ._user-stats li{font-weight:500;padding:0 24px;margin:4px 0;min-width:-webkit-max-content;min-width:max-content}ul.header__nav ul.header__nav__dropdown ._basic-dropdown a,ul.header__nav ul.header__nav__dropdown ._user-pages a{display:block;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:12px 24px;color:#fff}}@media screen and (max-width:799px){ul.header__nav{display:none;width:100%;padding:0;margin:0;list-style:none;border-bottom:1px solid #5a6064;font-family:math,museo-sans,sans-serif;font-size:18px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff}ul.header__nav ._basic-dropdown a,ul.header__nav ._nav-item1 a,ul.header__nav ._user-pages a,ul.header__nav .header__nav__unauthenticated a{display:block;padding:18px 22px;background-color:#2f4355;color:#fff;text-decoration:none}ul.header__nav ._basic-dropdown a:hover,ul.header__nav ._nav-item1 a:hover,ul.header__nav ._user-pages a:hover,ul.header__nav .header__nav__unauthenticated a:hover{background-color:#4a6a87}ul.header__nav ._nav-item1._has-subitems a{display:none}ul.header__nav._expanded{display:block}ul.header__nav__dropdown{list-style:none;padding:0}.header__nav__menu-backdrop,.header__nav__user-toggle{display:none}.header__nav__dropdown ._user-pages,.header__nav__dropdown ._user-stats,.header__nav__unauthenticated,.header__toggles{border-top:1px solid #5a6064}.header__nav__dropdown{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.header__nav__dropdown ._user-pages{-ms-flex-order:-1;order:-1}.header__nav__dropdown ._user-stats{text-align:right;background:#283441;padding:0 26px 18px;font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.header__nav__dropdown ._user-stats li._username{font-family:serif;font-size:21px;margin:19px 0 16px}.header__nav__dropdown ._user-stats li._level{font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.header__nav__dropdown ._user-stats li,.header__nav__dropdown ._user-stats li._level{font-family:math,museo-sans,sans-serif;font-size:12px;letter-spacing:.04em;margin:12px 0}.header__nav__dropdown ._user-stats li{font-weight:300}.header__toggles{display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;padding:28px 8px}.header__toggles>span{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center}.header__toggles>span>span{margin:0 4px}}section{color:var(--white_color);background:var(--background_color);position:relative;margin:20px auto 30px;width:100%;max-width:968px}section+section{margin-top:0}.section-box{border:1px solid var(--gray_color);background:var(--dark_background_color)}h2.section__header,h2.section__header--partial{position:relative;height:55px;font-size:calc(var(--header_font_size) * 26px);font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--gray_color);white-space:nowrap;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin:0;padding:.2em 0}h2.section__header--partial:after,h2.section__header--partial:before,h2.section__header:after,h2.section__header:before{content:" ";display:inline-block;height:53px;background-image:var(--triple-white-line);background-position:0 50%;background-repeat:repeat-x}h2.section__header--partial:before,h2.section__header:before{-ms-flex:0 1 2em;flex:0 1 2em;margin-right:.5em}h2.section__header--partial:after,h2.section__header:after{-ms-flex:1 1 2em;flex:1 1 2em;margin-left:.5em}h2.section__header--partial a,h2.section__header a{color:inherit;text-decoration:none}h2.section__header--partial{width:40%;border:0 solid var(--white_color);border-right-width:1px;float:left;height:55px}h3.subsection__header{font-size:calc(var(--header_font_size) * 26px);font-family:var(--header_font_family);font-weight:var(--header_font_weight);letter-spacing:var(--header_font_spacing);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--gray_color);white-space:nowrap;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin:0;padding:.2em 0}h3.subsection__header:before{content:" ";height:5px;display:inline-block;background-image:var(--single-gray-line);background-position:0 50%;background-repeat:repeat-x;-ms-flex:0 1 100%;flex:0 1 100%;margin-right:.5em}section img.header-image{width:100%;height:180px;-o-object-fit:cover;object-fit:cover;display:block;border-bottom:1px solid #283441}.section__nav{float:right;width:60%;height:55px;background-image:var(--triple-gray-line);background-position:0 50%;background-repeat:repeat-x;padding:14px 0;text-align:right;overflow-y:hidden}.section__nav li{display:inline-block;white-space:nowrap;list-style-type:none;position:relative;margin-right:15px;float:right}.section__nav li.active:after{content:" ";height:27.5px;position:absolute;left:50%;top:100%;border-left:1px dotted var(--white_color)}.section__nav .section__nav--actions{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:center;align-items:center;padding:0 6px}.section__nav .section__nav--actions>*{margin-right:12px}.section__nav .section__nav--actions :last-child{margin-right:0}.section__nav .section__nav--actions .help-btn{margin-bottom:4px}.section__header .section__header__actions{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-align:center;align-items:center;padding:0 15px;position:absolute;top:0;bottom:0;right:0}.section__header .section__header__actions svg{margin-right:6px}.section__header .section__header__actions svg:last-child{margin-right:3px}li.section__nav__sharing{width:133.25px;text-align:center}.section__content,.section__content--bigpad,.section__content--padded{margin-right:0;clear:both;border-top:3px double var(--white_color);overflow-x:auto;overflow-y:hidden;min-height:30px;background:var(--background_color);color:var(--white_color)}.section__content--padded{padding:1em}.section__content--padded>:first-child{margin-top:0}.section__content--padded>:last-child{margin-bottom:0}.section__content--bigpad{padding:0 1em 0 3em}.section__content--bigpad h1,.section__content--bigpad h2,.section__content--bigpad h3{margin-left:-1em}.section__subsection{overflow:auto;border-bottom:1px solid var(--gray_color)}.section__subsection:last-child{border-bottom:none}.section__footer{background-color:var(--page_background_color)}.section__left-box,.section__left-col{width:calc(40% + 0px)}.section__left-col{float:left}.section__right-col,.section__right-col--padded{width:calc(60% - 0px);float:right}.section__right-col--padded{margin:0 30px;width:calc(60% - 0px - 60px);position:relative}.section__full-width{width:calc(100% - 0px)}.section__full-width--padded{margin:0 30px;width:calc(100% - 0px - 60px);position:relative}.news-section .news-title a{color:inherit;text-decoration:none}.news-section .news-title{margin-bottom:.2em}.basic-form--wide-labels input[type=date],.basic-form--wide-labels input[type=datetime-local],.basic-form--wide-labels input[type=email],.basic-form--wide-labels input[type=number],.basic-form--wide-labels input[type=password],.basic-form--wide-labels input[type=text],.basic-form--wide-labels input[type=time],.basic-form--wide-labels select,.basic-form--wide-labels textarea,.basic-form--with-labels input[type=date],.basic-form--with-labels input[type=datetime-local],.basic-form--with-labels input[type=email],.basic-form--with-labels input[type=number],.basic-form--with-labels input[type=password],.basic-form--with-labels input[type=text],.basic-form--with-labels input[type=time],.basic-form--with-labels select,.basic-form--with-labels textarea,.basic-form input[type=date],.basic-form input[type=datetime-local],.basic-form input[type=email],.basic-form input[type=number],.basic-form input[type=password],.basic-form input[type=text],.basic-form input[type=time],.basic-form select,.basic-form textarea,.form-inputs input[type=date],.form-inputs input[type=datetime-local],.form-inputs input[type=email],.form-inputs input[type=number],.form-inputs input[type=password],.form-inputs input[type=text],.form-inputs input[type=time],.form-inputs select,.form-inputs textarea{border:1px solid var(--gray_color);color:var(--white_color);background-color:var(--background_color);height:2em;padding:3px 3px 3px 5px;font-weight:500}.basic-form--wide-labels input[type=date].ng-empty,.basic-form--wide-labels input[type=date].ng-invalid,.basic-form--wide-labels input[type=date]:-ms-input-placeholder,.basic-form--wide-labels input[type=datetime-local].ng-empty,.basic-form--wide-labels input[type=datetime-local].ng-invalid,.basic-form--wide-labels input[type=datetime-local]:-ms-input-placeholder,.basic-form--wide-labels input[type=email].ng-empty,.basic-form--wide-labels input[type=email].ng-invalid,.basic-form--wide-labels input[type=email]:-ms-input-placeholder,.basic-form--wide-labels input[type=number].ng-empty,.basic-form--wide-labels input[type=number].ng-invalid,.basic-form--wide-labels input[type=number]:-ms-input-placeholder,.basic-form--wide-labels input[type=password].ng-empty,.basic-form--wide-labels input[type=password].ng-invalid,.basic-form--wide-labels input[type=password]:-ms-input-placeholder,.basic-form--wide-labels input[type=text].ng-empty,.basic-form--wide-labels input[type=text].ng-invalid,.basic-form--wide-labels input[type=text]:-ms-input-placeholder,.basic-form--wide-labels input[type=time].ng-empty,.basic-form--wide-labels input[type=time].ng-invalid,.basic-form--wide-labels input[type=time]:-ms-input-placeholder,.basic-form--wide-labels select.ng-empty,.basic-form--wide-labels select.ng-invalid,.basic-form--wide-labels select:-ms-input-placeholder,.basic-form--wide-labels textarea.ng-empty,.basic-form--wide-labels textarea.ng-invalid,.basic-form--wide-labels textarea:-ms-input-placeholder,.basic-form--with-labels input[type=date].ng-empty,.basic-form--with-labels input[type=date].ng-invalid,.basic-form--with-labels input[type=date]:-ms-input-placeholder,.basic-form--with-labels input[type=datetime-local].ng-empty,.basic-form--with-labels input[type=datetime-local].ng-invalid,.basic-form--with-labels input[type=datetime-local]:-ms-input-placeholder,.basic-form--with-labels input[type=email].ng-empty,.basic-form--with-labels input[type=email].ng-invalid,.basic-form--with-labels input[type=email]:-ms-input-placeholder,.basic-form--with-labels input[type=number].ng-empty,.basic-form--with-labels input[type=number].ng-invalid,.basic-form--with-labels input[type=number]:-ms-input-placeholder,.basic-form--with-labels input[type=password].ng-empty,.basic-form--with-labels input[type=password].ng-invalid,.basic-form--with-labels input[type=password]:-ms-input-placeholder,.basic-form--with-labels input[type=text].ng-empty,.basic-form--with-labels input[type=text].ng-invalid,.basic-form--with-labels input[type=text]:-ms-input-placeholder,.basic-form--with-labels input[type=time].ng-empty,.basic-form--with-labels input[type=time].ng-invalid,.basic-form--with-labels input[type=time]:-ms-input-placeholder,.basic-form--with-labels select.ng-empty,.basic-form--with-labels select.ng-invalid,.basic-form--with-labels select:-ms-input-placeholder,.basic-form--with-labels textarea.ng-empty,.basic-form--with-labels textarea.ng-invalid,.basic-form--with-labels textarea:-ms-input-placeholder,.basic-form input[type=date].ng-empty,.basic-form input[type=date].ng-invalid,.basic-form input[type=date]:-ms-input-placeholder,.basic-form input[type=datetime-local].ng-empty,.basic-form input[type=datetime-local].ng-invalid,.basic-form input[type=datetime-local]:-ms-input-placeholder,.basic-form input[type=email].ng-empty,.basic-form input[type=email].ng-invalid,.basic-form input[type=email]:-ms-input-placeholder,.basic-form input[type=number].ng-empty,.basic-form input[type=number].ng-invalid,.basic-form input[type=number]:-ms-input-placeholder,.basic-form input[type=password].ng-empty,.basic-form input[type=password].ng-invalid,.basic-form input[type=password]:-ms-input-placeholder,.basic-form input[type=text].ng-empty,.basic-form input[type=text].ng-invalid,.basic-form input[type=text]:-ms-input-placeholder,.basic-form input[type=time].ng-empty,.basic-form input[type=time].ng-invalid,.basic-form input[type=time]:-ms-input-placeholder,.basic-form select.ng-empty,.basic-form select.ng-invalid,.basic-form select:-ms-input-placeholder,.basic-form textarea.ng-empty,.basic-form textarea.ng-invalid,.basic-form textarea:-ms-input-placeholder,.form-inputs input[type=date].ng-empty,.form-inputs input[type=date].ng-invalid,.form-inputs input[type=date]:-ms-input-placeholder,.form-inputs input[type=datetime-local].ng-empty,.form-inputs input[type=datetime-local].ng-invalid,.form-inputs input[type=datetime-local]:-ms-input-placeholder,.form-inputs input[type=email].ng-empty,.form-inputs input[type=email].ng-invalid,.form-inputs input[type=email]:-ms-input-placeholder,.form-inputs input[type=number].ng-empty,.form-inputs input[type=number].ng-invalid,.form-inputs input[type=number]:-ms-input-placeholder,.form-inputs input[type=password].ng-empty,.form-inputs input[type=password].ng-invalid,.form-inputs input[type=password]:-ms-input-placeholder,.form-inputs input[type=text].ng-empty,.form-inputs input[type=text].ng-invalid,.form-inputs input[type=text]:-ms-input-placeholder,.form-inputs input[type=time].ng-empty,.form-inputs input[type=time].ng-invalid,.form-inputs input[type=time]:-ms-input-placeholder,.form-inputs select.ng-empty,.form-inputs select.ng-invalid,.form-inputs select:-ms-input-placeholder,.form-inputs textarea.ng-empty,.form-inputs textarea.ng-invalid,.form-inputs textarea:-ms-input-placeholder{color:var(--gray_color)}.basic-form--wide-labels input[type=date].ng-empty,.basic-form--wide-labels input[type=date].ng-invalid,.basic-form--wide-labels input[type=date]::placeholder,.basic-form--wide-labels input[type=datetime-local].ng-empty,.basic-form--wide-labels input[type=datetime-local].ng-invalid,.basic-form--wide-labels input[type=datetime-local]::placeholder,.basic-form--wide-labels input[type=email].ng-empty,.basic-form--wide-labels input[type=email].ng-invalid,.basic-form--wide-labels input[type=email]::placeholder,.basic-form--wide-labels input[type=number].ng-empty,.basic-form--wide-labels input[type=number].ng-invalid,.basic-form--wide-labels input[type=number]::placeholder,.basic-form--wide-labels input[type=password].ng-empty,.basic-form--wide-labels input[type=password].ng-invalid,.basic-form--wide-labels input[type=password]::placeholder,.basic-form--wide-labels input[type=text].ng-empty,.basic-form--wide-labels input[type=text].ng-invalid,.basic-form--wide-labels input[type=text]::placeholder,.basic-form--wide-labels input[type=time].ng-empty,.basic-form--wide-labels input[type=time].ng-invalid,.basic-form--wide-labels input[type=time]::placeholder,.basic-form--wide-labels select.ng-empty,.basic-form--wide-labels select.ng-invalid,.basic-form--wide-labels select::placeholder,.basic-form--wide-labels textarea.ng-empty,.basic-form--wide-labels textarea.ng-invalid,.basic-form--wide-labels textarea::placeholder,.basic-form--with-labels input[type=date].ng-empty,.basic-form--with-labels input[type=date].ng-invalid,.basic-form--with-labels input[type=date]::placeholder,.basic-form--with-labels input[type=datetime-local].ng-empty,.basic-form--with-labels input[type=datetime-local].ng-invalid,.basic-form--with-labels input[type=datetime-local]::placeholder,.basic-form--with-labels input[type=email].ng-empty,.basic-form--with-labels input[type=email].ng-invalid,.basic-form--with-labels input[type=email]::placeholder,.basic-form--with-labels input[type=number].ng-empty,.basic-form--with-labels input[type=number].ng-invalid,.basic-form--with-labels input[type=number]::placeholder,.basic-form--with-labels input[type=password].ng-empty,.basic-form--with-labels input[type=password].ng-invalid,.basic-form--with-labels input[type=password]::placeholder,.basic-form--with-labels input[type=text].ng-empty,.basic-form--with-labels input[type=text].ng-invalid,.basic-form--with-labels input[type=text]::placeholder,.basic-form--with-labels input[type=time].ng-empty,.basic-form--with-labels input[type=time].ng-invalid,.basic-form--with-labels input[type=time]::placeholder,.basic-form--with-labels select.ng-empty,.basic-form--with-labels select.ng-invalid,.basic-form--with-labels select::placeholder,.basic-form--with-labels textarea.ng-empty,.basic-form--with-labels textarea.ng-invalid,.basic-form--with-labels textarea::placeholder,.basic-form input[type=date].ng-empty,.basic-form input[type=date].ng-invalid,.basic-form input[type=date]::placeholder,.basic-form input[type=datetime-local].ng-empty,.basic-form input[type=datetime-local].ng-invalid,.basic-form input[type=datetime-local]::placeholder,.basic-form input[type=email].ng-empty,.basic-form input[type=email].ng-invalid,.basic-form input[type=email]::placeholder,.basic-form input[type=number].ng-empty,.basic-form input[type=number].ng-invalid,.basic-form input[type=number]::placeholder,.basic-form input[type=password].ng-empty,.basic-form input[type=password].ng-invalid,.basic-form input[type=password]::placeholder,.basic-form input[type=text].ng-empty,.basic-form input[type=text].ng-invalid,.basic-form input[type=text]::placeholder,.basic-form input[type=time].ng-empty,.basic-form input[type=time].ng-invalid,.basic-form input[type=time]::placeholder,.basic-form select.ng-empty,.basic-form select.ng-invalid,.basic-form select::placeholder,.basic-form textarea.ng-empty,.basic-form textarea.ng-invalid,.basic-form textarea::placeholder,.form-inputs input[type=date].ng-empty,.form-inputs input[type=date].ng-invalid,.form-inputs input[type=date]::placeholder,.form-inputs input[type=datetime-local].ng-empty,.form-inputs input[type=datetime-local].ng-invalid,.form-inputs input[type=datetime-local]::placeholder,.form-inputs input[type=email].ng-empty,.form-inputs input[type=email].ng-invalid,.form-inputs input[type=email]::placeholder,.form-inputs input[type=number].ng-empty,.form-inputs input[type=number].ng-invalid,.form-inputs input[type=number]::placeholder,.form-inputs input[type=password].ng-empty,.form-inputs input[type=password].ng-invalid,.form-inputs input[type=password]::placeholder,.form-inputs input[type=text].ng-empty,.form-inputs input[type=text].ng-invalid,.form-inputs input[type=text]::placeholder,.form-inputs input[type=time].ng-empty,.form-inputs input[type=time].ng-invalid,.form-inputs input[type=time]::placeholder,.form-inputs select.ng-empty,.form-inputs select.ng-invalid,.form-inputs select::placeholder,.form-inputs textarea.ng-empty,.form-inputs textarea.ng-invalid,.form-inputs textarea::placeholder{color:var(--gray_color)}.basic-form--wide-labels input[type=date],.basic-form--wide-labels input[type=datetime-local],.basic-form--wide-labels input[type=email],.basic-form--wide-labels input[type=number],.basic-form--wide-labels input[type=password],.basic-form--wide-labels input[type=text],.basic-form--wide-labels input[type=time],.basic-form--wide-labels select,.basic-form--with-labels input[type=date],.basic-form--with-labels input[type=datetime-local],.basic-form--with-labels input[type=email],.basic-form--with-labels input[type=number],.basic-form--with-labels input[type=password],.basic-form--with-labels input[type=text],.basic-form--with-labels input[type=time],.basic-form--with-labels select,.basic-form input[type=date],.basic-form input[type=datetime-local],.basic-form input[type=email],.basic-form input[type=number],.basic-form input[type=password],.basic-form input[type=text],.basic-form input[type=time],.basic-form select,.form-inputs input[type=date],.form-inputs input[type=datetime-local],.form-inputs input[type=email],.form-inputs input[type=number],.form-inputs input[type=password],.form-inputs input[type=text],.form-inputs input[type=time],.form-inputs select{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.basic-form--wide-labels select,.basic-form--with-labels select,.basic-form select,.form-inputs select{padding-right:2em}.basic-form--wide-labels input[type=password],.basic-form--with-labels input[type=password],.basic-form input[type=password],.form-inputs input[type=password]{color:var(--gray_color)}.basic-form--wide-labels input[type=text],.basic-form--with-labels input[type=text],.basic-form input[type=text],.form-inputs input[type=text]{-ms-flex:1 1 auto;flex:1 1 auto}.basic-form--wide-labels input[type=datetime-local],.basic-form--wide-labels input[type=email],.basic-form--wide-labels input[type=password],.basic-form--wide-labels input[type=time],.basic-form--with-labels input[type=datetime-local],.basic-form--with-labels input[type=email],.basic-form--with-labels input[type=password],.basic-form--with-labels input[type=time],.basic-form input[type=datetime-local],.basic-form input[type=email],.basic-form input[type=password],.basic-form input[type=time],.form-inputs input[type=datetime-local],.form-inputs input[type=email],.form-inputs input[type=password],.form-inputs input[type=time]{width:15em;-ms-flex:0 1 15em;flex:0 1 15em}.basic-form--wide-labels input[type=date],.basic-form--with-labels input[type=date],.basic-form input[type=date],.form-inputs input[type=date]{width:11em;-ms-flex:0 1 11em;flex:0 1 11em;text-align:center}.basic-form--wide-labels input[type=number],.basic-form--with-labels input[type=number],.basic-form input[type=number],.form-inputs input[type=number]{width:12em;-ms-flex:0 1 12em;flex:0 1 12em}.basic-form--wide-labels textarea,.basic-form--with-labels textarea,.basic-form textarea,.form-inputs textarea{-ms-flex:1 1 10em;flex:1 1 10em;padding:5px 3px 3px 5px;height:4em}.basic-form--wide-labels textarea.long-input,.basic-form--with-labels textarea.long-input,.basic-form textarea.long-input,.form-inputs textarea.long-input{min-height:20vh}.form-inputs.inline,.inline.basic-form,.inline.basic-form--wide-labels,.inline.basic-form--with-labels{margin:.2em 0}.form-inputs.inline>span,.inline.basic-form--wide-labels>span,.inline.basic-form--with-labels>span,.inline.basic-form>span{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:baseline;align-items:baseline;margin:0 .3em;white-space:nowrap}.form-inputs.inline input,.form-inputs.inline select,.inline.basic-form--wide-labels input,.inline.basic-form--wide-labels select,.inline.basic-form--with-labels input,.inline.basic-form--with-labels select,.inline.basic-form input,.inline.basic-form select{margin:.2em .4em}.basic-form,.basic-form--wide-labels,.basic-form--with-labels{margin-left:auto;margin-right:auto;width:70%;color:var(--white_color);font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:1.2em auto 2em;position:relative}.basic-form--wide-labels .form__row,.basic-form--with-labels .form__row,.basic-form .form__row{margin:1em 0 0;display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}.basic-form--wide-labels .form__row._centered,.basic-form--with-labels .form__row._centered,.basic-form .form__row._centered{-ms-flex-align:center;align-items:center}.basic-form--wide-labels .form__row>div>:first-child,.basic-form--with-labels .form__row>div>:first-child,.basic-form .form__row>div>:first-child{margin-top:0}.basic-form--wide-labels .form__row>div>:last-child,.basic-form--with-labels .form__row>div>:last-child,.basic-form .form__row>div>:last-child{margin-bottom:0}.basic-form--wide-labels .form__row.grouped-input,.basic-form--with-labels .form__row.grouped-input,.basic-form .form__row.grouped-input{margin-top:0}.basic-form--wide-labels .form__row.grouped-input input,.basic-form--with-labels .form__row.grouped-input input,.basic-form .form__row.grouped-input input{border-top-width:0}.basic-form--wide-labels input.grouped-input,.basic-form--with-labels input.grouped-input,.basic-form input.grouped-input{margin-top:0;border-top-width:0}.basic-form--wide-labels .form__row.narrow-input button,.basic-form--wide-labels .form__row.narrow-input input,.basic-form--wide-labels .form__row.narrow-input select,.basic-form--with-labels .form__row.narrow-input button,.basic-form--with-labels .form__row.narrow-input input,.basic-form--with-labels .form__row.narrow-input select,.basic-form .form__row.narrow-input button,.basic-form .form__row.narrow-input input,.basic-form .form__row.narrow-input select{-ms-flex:0 1 180px;flex:0 1 180px;max-width:180px}.basic-form--wide-labels .form__label,.basic-form--with-labels .form__label,.basic-form .form__label{margin:0 1.2em 0 1.6em;-ms-flex:0 0 auto;flex:0 0 auto;text-align:right;font-family:math,museo-sans,sans-serif;font-size:14px;font-weight:300;letter-spacing:.04em}.basic-form--wide-labels .form__error,.basic-form--with-labels .form__error,.basic-form .form__error{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--error_color);margin-top:.3em}.basic-form--wide-labels .form__help,.basic-form--with-labels .form__help,.basic-form .form__help{font-family:math,museo-sans,sans-serif;font-size:12px;font-weight:500;letter-spacing:.04em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--gray_color);margin-top:.3em}.basic-form--wide-labels .form__confirm,.basic-form--with-labels .form__confirm,.basic-form .form__confirm{color:var(--gray_color);margin-top:1em}.basic-form--wide-labels,.basic-form--with-labels{width:80%;margin-left:5%;margin-right:15%}.basic-form--wide-labels .form__row>:first-child,.basic-form--with-labels .form__row>:first-child{margin-left:25%}.basic-form--wide-labels .form__row>.form__label:first-child,.basic-form--with-labels .form__row>.form__label:first-child{width:25%;margin:0;padding-right:1.8em}.basic-form--wide-labels .form__confirm,.basic-form--wide-labels .form__error,.basic-form--wide-labels .form__help,.basic-form--with-labels .form__confirm,.basic-form--with-labels .form__error,.basic-form--with-labels .form__help{margin-left:25%}.basic-form--wide-labels .form__row>:first-child{margin-left:45%}.basic-form--wide-labels .form__row>.form__label:first-child{width:45%}.basic-form--wide-labels .form__confirm,.basic-form--wide-labels .form__error{margin-left:45%}body.ai_futures_landing_page{background-color:#070e2d;font-family:Montserrat,a}body.ai_futures_landing_page :visited,body.ai_futures_landing_page a:link{border-bottom:1px solid #3f8cff;color:#fff}body.ai_futures_landing_page a:active,body.ai_futures_landing_page a:hover{text-decoration:none;color:#3f8cff}body.ai_futures_landing_page footer{border-top:1px solid #102b55;background-color:#070e2d;max-width:1040px;width:100%;margin:0 auto;margin-top:70px;padding-top:80px}body.ai_futures_landing_page footer .social>a>img{margin-right:10px}body.ai_futures_landing_page footer .social>a{border-bottom:none}body.ai_futures_landing_page footer .row{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:690px){body.ai_futures_landing_page footer .first_footer_row,body.ai_futures_landing_page footer .second_footer_row{display:block;margin:0 auto;max-width:500px}}body.ai_futures_landing_page footer .links{width:50%}@media screen and (max-width:690px){body.ai_futures_landing_page footer .links{width:auto}}body.ai_futures_landing_page footer .links ul{list-style:none;margin-left:0;padding-left:0;font-size:14px;line-height:220%}body.ai_futures_landing_page footer .newsletter{max-width:430px}body.ai_futures_landing_page footer .newsletter p{max-width:360px}body.ai_futures_landing_page footer .newsletter input{padding:11px 15px;width:250px;background:#e8e8e8;border-radius:3px;border:none}body.ai_futures_landing_page footer .newsletter button{height:42px;background:#3f8cff;padding:12px 44px;border:none;color:#fff;font-weight:600;margin-left:10px;border-radius:3px}body.ai_futures_landing_page footer .second_footer_row{margin-top:30px;max-width:530px}body.ai_futures_landing_page footer .media{border-top:1px solid #102b55;padding-top:50px;margin-top:50px;margin-bottom:50px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}body.ai_futures_landing_page footer .media a{border-bottom:none}@media screen and (max-width:690px){body.ai_futures_landing_page footer .media{-ms-flex-flow:wrap;flex-flow:wrap;margin-bottom:0}body.ai_futures_landing_page footer .media div{width:33%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin-bottom:50px}}body.ai_futures_landing_page footer .legal,body.ai_futures_landing_page footer .legal>a{font-family:Montserrat;font-weight:400;font-size:12px;line-height:320%;color:#365074;border-bottom:none}body.ai_futures_landing_page ._semi-bright,body.ai_futures_landing_page .action_button,body.ai_futures_landing_page .btn,body.ai_futures_landing_page .btn--socialX{font-family:Montserrat;font-size:14px;background:#3f8cff;border-radius:5px;padding:18px 40px;border:none;color:#fff;font-weight:700}body.ai_futures_landing_page ._semi-bright:hover,body.ai_futures_landing_page .action_button:hover,body.ai_futures_landing_page .btn--socialX:hover,body.ai_futures_landing_page .btn:hover{background:#1d6ce2;color:#fff}body.ai_futures_landing_page ._semi-bright:active,body.ai_futures_landing_page .action_button:active,body.ai_futures_landing_page .btn--socialX:active,body.ai_futures_landing_page .btn:active{background:#0c3b82;color:#fff}body.ai_futures_landing_page header{border-bottom:none;min-height:64px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;margin:0 40px}body.ai_futures_landing_page header .logo{font-family:alternate-gothic-no-1-d;font-style:normal;font-weight:400;font-size:40px;line-height:160%;letter-spacing:.03em;color:#fff}body.ai_futures_landing_page header .logo a{border-bottom:none}body.ai_futures_landing_page header .logo a:active,body.ai_futures_landing_page header .logo a:hover{text-decoration:none;color:#fff}body.ai_futures_landing_page div.section__hero{margin-top:60px}body.ai_futures_landing_page div.section__hero>div{width:-moz-max-content;width:-webkit-fit-content;width:fit-content;margin:0 auto}body.ai_futures_landing_page div.section__hero>h1,body.ai_futures_landing_page div.section__hero h3,body.ai_futures_landing_page div.section__hero p{text-align:center}body.ai_futures_landing_page div.section__hero__image{position:absolute;width:100%;height:1423px;left:-38px;top:-184px;z-index:-1;background-image:url(/static/ai_futures/hero.png);background-repeat:round}body.ai_futures_landing_page div.section__hero__coming_soon{font-family:Hero New;color:#3f8cff;font-weight:700;font-size:22px;text-align:center}body.ai_futures_landing_page div.section__hero__coming_soon span{color:#fff;font-size:32px;font-weight:400}body.ai_futures_landing_page div.section__hero>h1{text-align:center;font-size:80px;font-weight:700;margin-top:18px;margin-bottom:0;font-family:Hero New}body.ai_futures_landing_page div.section__hero>h3{text-align:center;max-width:950px;margin:0 auto;font-size:30px;font-weight:600;line-height:160%}body.ai_futures_landing_page div.section__hero>p{text-align:center;font-size:18px;line-height:160%;max-width:850px;margin:0 auto;margin-top:22px}body.ai_futures_landing_page div.section__hero .action_button{margin-top:24px;margin-bottom:29px;position:relative}body.ai_futures_landing_page div.section__hero .action_button span{font-size:25px;position:absolute;left:155px;top:12px}body.ai_futures_landing_page div.section__hero>div.section__hero__extra_actions{margin-bottom:54px;margin-top:20px;display:-ms-flexbox;display:flex;width:auto;max-width:800px;-ms-flex-pack:distribute;justify-content:space-around}@media screen and (max-width:800px){body.ai_futures_landing_page div.section__hero>div.section__hero__extra_actions{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;width:-moz-max-content;width:-webkit-fit-content;width:fit-content}body.ai_futures_landing_page div.section__hero>div.section__hero__extra_actions>div:not(:last-child){padding-bottom:20px}}body.ai_futures_landing_page .ng-cloak,body.ai_futures_landing_page [ng-cloak],body.ai_futures_landing_page [ng\:cloak]{display:none!important}body.ai_futures_landing_page div.section__prizes{max-width:1000px;width:-webkit-fill-available;width:fill-available;margin:120px auto 0}body.ai_futures_landing_page div.section__prizes>div{margin:0 auto}body.ai_futures_landing_page div.section__prizes__header{font-family:Hero New;font-weight:400;font-size:30px;line-height:150%;text-align:center;max-width:900px;margin-bottom:100px!important}body.ai_futures_landing_page div.section__prizes__total{position:absolute;width:500px;height:400px;left:0;right:0;font-family:Hero New;font-weight:700;font-size:60px;text-align:center;background-image:url(/static/ai_futures/ellipse2.png);background-size:contain}@media screen and (max-width:900px){body.ai_futures_landing_page div.section__prizes__total{position:relative;background-image:url(/static/ai_futures/ellipse.png);width:279px;height:279px}}body.ai_futures_landing_page div.section__prizes__total div{position:absolute;top:0;left:-10px;top:28%;right:0}@media screen and (max-width:900px){body.ai_futures_landing_page div.section__prizes__total div{top:50%;transform:translateY(-50%);left:0}}body.ai_futures_landing_page div.section__prizes__total span{font-size:28px;display:block}body.ai_futures_landing_page div.section__prizes__list{text-align:center;position:relative;min-height:750px}@media screen and (max-width:900px){body.ai_futures_landing_page div.section__prizes__list{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:690px){body.ai_futures_landing_page div.section__prizes__list{display:block}}body.ai_futures_landing_page div.section__prizes__list__item{max-width:270px;position:absolute}@media screen and (max-width:900px){body.ai_futures_landing_page div.section__prizes__list__item{position:static;margin:0 20px}}@media screen and (max-width:690px){body.ai_futures_landing_page div.section__prizes__list__item{position:static;margin:0 auto}}body.ai_futures_landing_page div.section__prizes__list__item:first-child{top:-40px}body.ai_futures_landing_page div.section__prizes__list__item:nth-child(5){right:0;top:-40px}body.ai_futures_landing_page div.section__prizes__list__item:nth-child(2){top:300px;left:5em}body.ai_futures_landing_page div.section__prizes__list__item:nth-child(3){top:360px;left:0;right:0}@media screen and (min-width:900px){body.ai_futures_landing_page div.section__prizes__list__item:nth-child(3){margin:0 auto}}body.ai_futures_landing_page div.section__prizes__list__item:nth-child(4){top:300px;right:5em}body.ai_futures_landing_page div.section__prizes__list__item__name{font-family:Hero New;font-style:normal;font-weight:600;font-size:15px;line-height:150%;letter-spacing:.1em;text-transform:uppercase;color:#fff}body.ai_futures_landing_page div.section__prizes__list__item__amount{font-family:Hero New;font-style:normal;font-weight:600;font-size:30px;line-height:160%;letter-spacing:-.01em;color:#3f8cff}body.ai_futures_landing_page div.section__prizes__list__item__note{font-family:Montserrat;font-style:normal;font-weight:600;font-size:12px;line-height:100%;letter-spacing:-.01em;text-transform:uppercase;color:#3f8cff;margin-bottom:10px}body.ai_futures_landing_page div.section__prizes__list__item__description{font-family:Montserrat;font-style:normal;font-weight:400;font-size:16px;line-height:160%;text-align:center;color:#fff}body.ai_futures_landing_page div.section__prizes__action{width:-webkit-fit-content;width:fit-content;width:-moz-max-content}@media screen and (max-width:900px){body.ai_futures_landing_page div.section__prizes__action{margin-top:100px!important}}body.ai_futures_landing_page .section__header{font-family:Hero New;font-weight:400;font-size:30px;line-height:150%}body.ai_futures_landing_page .section__about{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;margin-top:260px;margin-bottom:180px}@media screen and (max-width:1000px){body.ai_futures_landing_page .section__about{-ms-flex-pack:center;justify-content:center;margin-top:100px}}body.ai_futures_landing_page .section__about .section__col__placeholder{width:45%;height:auto}@media screen and (max-width:1000px){body.ai_futures_landing_page .section__about .section__col__placeholder{display:none}}body.ai_futures_landing_page .section__about__hand{background-image:url(/static/ai_futures/hand.png);background-position:top 0 left 0;background-repeat:no-repeat;width:1085px;height:1349px;background-size:90%;z-index:-2;top:-520px;left:5%;position:absolute}@media screen and (max-width:1600px){body.ai_futures_landing_page .section__about__hand{left:0}}@media screen and (max-width:1300px){body.ai_futures_landing_page .section__about__hand{left:-5%;top:-450px;background-size:80%}}@media screen and (max-width:1000px){body.ai_futures_landing_page .section__about__hand{left:0;top:0;width:100%;background-position:top 0 left 50px;background-size:cover}}@media screen and (max-width:870px){body.ai_futures_landing_page .section__about__hand{background-position:top 0 left -50px}}body.ai_futures_landing_page .section__about__waves{background-image:url(/static/ai_futures/waves.png);background-size:cover;width:100%;position:absolute;height:100vh;top:-100%;z-index:-1}body.ai_futures_landing_page .section__about__text{font-family:Montserrat;font-style:normal;font-weight:400;font-size:18px;line-height:160%;color:#fff;max-width:610px}body.ai_futures_landing_page .section__about__text span{color:#3f8cff;font-weight:700}body.ai_futures_landing_page .section__about .sponsor{margin-top:50px}body.ai_futures_landing_page div.sponsor{display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-ms-flex-pack:justify;justify-content:space-between;width:232px!important}body.ai_futures_landing_page div.sponsor a{border-bottom:none}body.ai_futures_landing_page div.sponsor span{line-height:28px}body.ai_futures_landing_page .section__board{max-width:1080px;margin:0 auto}@media screen and (max-width:1000px){body.ai_futures_landing_page .section__board{margin-top:500px}}body.ai_futures_landing_page .section__board .section__header{text-align:center}body.ai_futures_landing_page .section__board__list{display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center}body.ai_futures_landing_page .section__board__list__member{margin:20px;max-width:320px}@media screen and (max-width:690px){body.ai_futures_landing_page .section__board__list__member{max-width:400px}}body.ai_futures_landing_page .section__board__list__member:first-child{margin-left:0}body.ai_futures_landing_page .section__board__list__member__photo img{display:block;margin:auto;width:176px;height:176px}body.ai_futures_landing_page .section__board__list__member__name{text-align:center;font-family:Hero New;font-style:normal;font-weight:700;font-size:20px;line-height:150%;color:#3f8cff;margin-top:24px}body.ai_futures_landing_page .section__board__list__member__job{text-align:center;font-family:Montserrat;font-style:normal;font-weight:600;font-size:14px;line-height:150%;color:#fff;margin-top:10px}body.ai_futures_landing_page .section__board__list__member__bio{font-family:Montserrat;font-style:normal;font-weight:400;font-size:15px;line-height:160%;text-align:center;color:#fff;margin-top:14px}body.ai_futures_landing_page .flatpage_wrapper,body.ai_futures_landing_page .modal_wrapper{max-width:850px;margin:0 auto;font-family:Montserrat}body.ai_futures_landing_page .flatpage_wrapper .form__label,body.ai_futures_landing_page .flatpage_wrapper input,body.ai_futures_landing_page .flatpage_wrapper li,body.ai_futures_landing_page .flatpage_wrapper p,body.ai_futures_landing_page .flatpage_wrapper select,body.ai_futures_landing_page .flatpage_wrapper td,body.ai_futures_landing_page .flatpage_wrapper th,body.ai_futures_landing_page .modal_wrapper .form__label,body.ai_futures_landing_page .modal_wrapper input,body.ai_futures_landing_page .modal_wrapper li,body.ai_futures_landing_page .modal_wrapper p,body.ai_futures_landing_page .modal_wrapper select,body.ai_futures_landing_page .modal_wrapper td,body.ai_futures_landing_page .modal_wrapper th{font-size:18px;line-height:160%}body.ai_futures_landing_page .flatpage_wrapper h1,body.ai_futures_landing_page .flatpage_wrapper h2,body.ai_futures_landing_page .flatpage_wrapper h3,body.ai_futures_landing_page .modal_wrapper h1,body.ai_futures_landing_page .modal_wrapper h2,body.ai_futures_landing_page .modal_wrapper h3{font-family:Hero New;margin-top:18px;margin-bottom:0;font-weight:700}body.ai_futures_landing_page .flatpage_wrapper h1,body.ai_futures_landing_page .modal_wrapper h1{font-size:70px}body.ai_futures_landing_page .flatpage_wrapper h2,body.ai_futures_landing_page .flatpage_wrapper h3,body.ai_futures_landing_page .modal_wrapper h2,body.ai_futures_landing_page .modal_wrapper h3{font-size:30px}body.ai_futures_landing_page .flatpage_wrapper img,body.ai_futures_landing_page .modal_wrapper img{max-width:100%}body.ai_futures_landing_page .flatpage_wrapper table td,body.ai_futures_landing_page .flatpage_wrapper table th,body.ai_futures_landing_page .modal_wrapper table td,body.ai_futures_landing_page .modal_wrapper table th{padding:10px 20px;border:2.5px solid #fff}body.ai_futures_landing_page .modal__wrapper .modal__box,body.ai_futures_landing_page .modal_wrapper .modal__box{background:#151928;border:2px solid #fff}body.ai_futures_landing_page .modal__wrapper .modal__box .error-text,body.ai_futures_landing_page .modal_wrapper .modal__box .error-text{text-align:left;margin-top:10px;font-size:16px;margin-left:5px}body.ai_futures_landing_page .modal__wrapper .modal__box .action_button,body.ai_futures_landing_page .modal_wrapper .modal__box .action_button{font-size:18px;padding:10px 20px;margin:0 auto;display:block;margin-top:25px}body.ai_futures_landing_page .modal__wrapper .modal__box input,body.ai_futures_landing_page .modal__wrapper .modal__box select,body.ai_futures_landing_page .modal__wrapper .modal__box select>option,body.ai_futures_landing_page .modal_wrapper .modal__box input,body.ai_futures_landing_page .modal_wrapper .modal__box select,body.ai_futures_landing_page .modal_wrapper .modal__box select>option{margin:0;background-color:#151928;border:1px solid #fff;padding:0 10px;color:#fff;height:42px}body.ai_futures_landing_page .modal__wrapper .modal__box .form__row,body.ai_futures_landing_page .modal_wrapper .modal__box .form__row{margin:15px 0;-ms-flex-align:center;align-items:center}body.ai_futures_landing_page .tournament-registration-modal .modal__box{width:700px}body.ai_futures_landing_page .tournament-registration-modal .modal__box .form__label{width:35%}body.ai_futures_landing_page .tournament-registration-modal .modal__box input,body.ai_futures_landing_page .tournament-registration-modal .modal__box select{width:100%}body.ai_futures_landing_page .tournament-registration-modal .modal__box input[type=number]{-ms-flex:auto;flex:auto}body.ai_futures_landing_page .tournament-registration-modal .modal__box .error-text{margin-left:35%;margin-top:-10px}body.ai_futures_landing_page .tournament-registration-modal .modal__box h2{margin-bottom:25px}body.ai_futures_landing_page .tournament-registration-modal .modal__box div.terms-and-conditions-error{margin-left:0;margin-top:-20px}body.ai_futures_landing_page .tournament-registration-modal .modal__box .terms-and-conditions input{width:18px;margin-top:0;margin-right:10px;margin-left:0}body.ai_futures_landing_page .modal-login,body.ai_futures_landing_page .modal-registration,body.ai_futures_landing_page .welcome-modal{font-family:Montserrat}body.ai_futures_landing_page .modal-login .form__label,body.ai_futures_landing_page .modal-login input,body.ai_futures_landing_page .modal-login li,body.ai_futures_landing_page .modal-login p,body.ai_futures_landing_page .modal-login select,body.ai_futures_landing_page .modal-login td,body.ai_futures_landing_page .modal-login th,body.ai_futures_landing_page .modal-registration .form__label,body.ai_futures_landing_page .modal-registration input,body.ai_futures_landing_page .modal-registration li,body.ai_futures_landing_page .modal-registration p,body.ai_futures_landing_page .modal-registration select,body.ai_futures_landing_page .modal-registration td,body.ai_futures_landing_page .modal-registration th,body.ai_futures_landing_page .welcome-modal .form__label,body.ai_futures_landing_page .welcome-modal input,body.ai_futures_landing_page .welcome-modal li,body.ai_futures_landing_page .welcome-modal p,body.ai_futures_landing_page .welcome-modal select,body.ai_futures_landing_page .welcome-modal td,body.ai_futures_landing_page .welcome-modal th{font-size:18px;line-height:160%}body.ai_futures_landing_page .modal-login h1,body.ai_futures_landing_page .modal-registration h1,body.ai_futures_landing_page .welcome-modal h1{font-family:Hero New;margin-top:18px;margin-bottom:0;font-weight:700;font-size:30px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box{width:auto;max-width:850px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box .btn,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box .btn,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box .btn{padding:10px 20px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box .welcome-modal__sign-in,body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box h6,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box .welcome-modal__sign-in,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box h6,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box .welcome-modal__sign-in,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box h6{font-size:14px;font-family:New Hero}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box form>input,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box form>input,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box form>input{margin:15px auto!important;width:220px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box .btn--social,body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box form>input[type=submit],body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box .btn--social,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box form>input[type=submit],body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box .btn--social,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box form>input[type=submit]{background:#3f8cff;border-radius:5px;border:none;font-family:Montserrat;font-weight:700;font-size:14px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box .btn--social,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box .btn--social,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box .btn--social{font-size:10px;line-height:28px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box table.registration-forms td:last-child,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box table.registration-forms td:last-child,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box table.registration-forms td:last-child{width:300px}body.ai_futures_landing_page .modal-login .modal__wrapper>.modal__box table.registration-forms td:first-child,body.ai_futures_landing_page .modal-registration .modal__wrapper>.modal__box table.registration-forms td:first-child,body.ai_futures_landing_page .welcome-modal .modal__wrapper>.modal__box table.registration-forms td:first-child{width:auto}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box{width:600px}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box input,body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box select{width:100%}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box input[type=number]{-ms-flex:auto;flex:auto}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .error-text{margin-top:5px;margin-left:30%;text-align:left}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .form__label{width:30%!important;margin:auto}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box input{margin:auto}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box ul{padding-left:20px}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box div.terms-and-conditions-error{margin-left:0;margin-top:0}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .terms-and-conditions label{margin:auto 0}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .terms-and-conditions input{margin-left:0;margin-right:10px;width:15px}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .tournament-registration-modal__links{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin:20px 0}body:not(.ai_futures_landing_page) .tournament-registration-modal .modal__box .tournament-registration-modal__links a{margin:0 10px}