
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_cb0f3de0c67b93b806ab625b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a7608e6c6f8e7d6b7ebebfee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_30b582cafc8db37e21e70a30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5062b745ac1af0fced3311cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1b6bffbf0602bdc3c4ab6533.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_42556d22e8f09dc27bdb96c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c11bec3407cc751672c4eaee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_807f87422cac7562cdea2d06.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1d1826a116a8351446c29fa8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b95aa1724469fb46c30d27c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ca28be14edd34770817abe88.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2001be27838fd62a792757f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0970d996abae24e4fee3db24.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d954355c4d6fcc1447c31258.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c49fb8d2e992f3e93b06a018.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ebf3854e5e4e8fcfb819c6c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d58675a66ef34a174a4e235e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7664ff52c68632b88e0541e5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_798eb263ae0f16175ff46459.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_feafd65b4d22353588be7d1c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7b536897f3c19f490bc0981e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f78099f02b8bcfcb5f272786.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_0c15dfd2296c38271782db29.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_1a5cf7e7e3ebb6aa8d0b1949.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2001be27838fd62a792757f8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_aa9a94112aced5365db9b036.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d4bcc7a6e7320afd9b03dd3f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0e75ee92491eaf9390cb458c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2052be459451ef56d9343672.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_0411af38058036cb7ee5e012.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_da6179f9572c0c0eb12df264.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_e4106e59785fa4afac39f2dc.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_9670f4e77c12c3a9dae37141.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_4256f05e322fb39b9e6ad58f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_4b4f94ac53a893558a6e9576.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.139000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_03dc5ba65edee52d001f5a56.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_a5b38cc2fecea57ba0155c48.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_10c127d6ff3cd7e0e02bca35.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_9f8cf1b1adc51e9cb5d8e177.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.162109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_d754774ee024130de0aed2bc.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_23ff1517444f95468f2de097.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_40693300642434c63ab2ce93.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_dd1e520af2c6d2cd0e4677bc.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.162109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_5ac732b7232598f393e64e52.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_5d3b15d6ce85476d145273a6.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_86f9254a276fff641c284932.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_d8a0793769e359a728d95036.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.795000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-56.306589px;}
.ws0{word-spacing:-40.680243px;}
.ws4{word-spacing:-21.985583px;}
.ws5{word-spacing:-18.690750px;}
.ws1{word-spacing:-15.705671px;}
.ws8{word-spacing:-14.321787px;}
.ws6{word-spacing:-14.158243px;}
.ws3{word-spacing:-0.076990px;}
.ws7{word-spacing:-0.055133px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-12.775764px;}
._1{margin-left:-11.561056px;}
._6{margin-left:-8.953116px;}
._4{margin-left:-7.515867px;}
._7{margin-left:-6.467215px;}
._5{margin-left:-5.335379px;}
._3{margin-left:-3.693181px;}
._2{margin-left:-2.518196px;}
._b{margin-left:-1.269538px;}
._9{width:1.712518px;}
._d{width:2.951172px;}
._11{width:4.198389px;}
._19{width:5.621278px;}
._22{width:6.665178px;}
._16{width:8.115719px;}
._25{width:9.214162px;}
._13{width:10.223698px;}
._27{width:11.804681px;}
._21{width:12.948975px;}
._c{width:15.001785px;}
._12{width:16.497231px;}
._8{width:17.818912px;}
._2b{width:20.348996px;}
._1d{width:21.892861px;}
._20{width:23.666803px;}
._23{width:26.128856px;}
._1a{width:27.271981px;}
._1c{width:28.598251px;}
._f{width:29.863039px;}
._24{width:31.504338px;}
._e{width:32.940676px;}
._18{width:34.032070px;}
._17{width:35.146983px;}
._14{width:36.210375px;}
._29{width:38.106281px;}
._a{width:39.397092px;}
._2e{width:42.855231px;}
._28{width:44.267565px;}
._1b{width:46.972804px;}
._10{width:48.300791px;}
._1e{width:49.589727px;}
._1f{width:52.578988px;}
._26{width:53.709959px;}
._30{width:61.582259px;}
._34{width:65.600964px;}
._33{width:73.450269px;}
._2f{width:84.427160px;}
._15{width:105.525428px;}
._2a{width:106.537217px;}
._2d{width:107.648196px;}
._31{width:207.569038px;}
._32{width:238.349117px;}
._2c{width:336.174755px;}
.fc6{color:rgb(251,117,15);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc7{color:rgb(242,101,18);}
.fc2{color:transparent;}
.fc5{color:rgb(255,49,49);}
.fc1{color:rgb(0,74,173);}
.fc0{color:rgb(24,0,173);}
.fsc{font-size:31.087809px;}
.fs4{font-size:41.972738px;}
.fs11{font-size:43.150329px;}
.fs2{font-size:47.968989px;}
.fs3{font-size:47.969290px;}
.fse{font-size:54.503912px;}
.fsf{font-size:55.133496px;}
.fs5{font-size:59.945309px;}
.fs10{font-size:59.959747px;}
.fs7{font-size:67.590246px;}
.fs12{font-size:71.907388px;}
.fsd{font-size:71.933403px;}
.fsb{font-size:71.952359px;}
.fs8{font-size:76.989735px;}
.fsa{font-size:79.552332px;}
.fs9{font-size:83.914439px;}
.fs6{font-size:85.578342px;}
.fs1{font-size:191.887940px;}
.fs0{font-size:212.124541px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y3c{bottom:2.604261px;}
.y49{bottom:2.752005px;}
.y41{bottom:2.774065px;}
.y47{bottom:2.784898px;}
.y43{bottom:2.802959px;}
.y3f{bottom:2.862294px;}
.y45{bottom:2.929566px;}
.yd{bottom:3.572970px;}
.y96{bottom:3.864619px;}
.y99{bottom:3.881176px;}
.ya{bottom:4.322398px;}
.y7{bottom:4.345139px;}
.y8e{bottom:4.784202px;}
.y6e{bottom:5.576885px;}
.y17{bottom:6.180003px;}
.yb{bottom:9.810016px;}
.y3e{bottom:13.224897px;}
.y25{bottom:13.491054px;}
.y1d{bottom:13.491057px;}
.y87{bottom:13.491065px;}
.y51{bottom:13.491068px;}
.y11{bottom:13.491071px;}
.y30{bottom:13.491077px;}
.y1b{bottom:13.491088px;}
.y59{bottom:13.491093px;}
.yc{bottom:17.563883px;}
.y98{bottom:18.264619px;}
.y9{bottom:20.312161px;}
.y6{bottom:20.334802px;}
.ye{bottom:22.826943px;}
.yb0{bottom:25.857880px;}
.y8d{bottom:27.766856px;}
.y16{bottom:32.645224px;}
.y68{bottom:36.450015px;}
.y83{bottom:36.752779px;}
.y6d{bottom:38.555520px;}
.y23{bottom:39.463121px;}
.yf{bottom:40.065579px;}
.y8c{bottom:50.749510px;}
.y5e{bottom:51.244881px;}
.y82{bottom:54.740869px;}
.yaf{bottom:55.088527px;}
.y15{bottom:59.110446px;}
.y22{bottom:64.196745px;}
.y81{bottom:72.728958px;}
.y8b{bottom:73.732164px;}
.y5d{bottom:75.978505px;}
.y6c{bottom:80.028652px;}
.yae{bottom:84.319173px;}
.y14{bottom:85.575667px;}
.y21{bottom:88.930368px;}
.y7d{bottom:90.042517px;}
.y80{bottom:90.717048px;}
.y9c{bottom:90.840803px;}
.y8a{bottom:96.714818px;}
.y5c{bottom:100.712128px;}
.y6b{bottom:105.012467px;}
.y9b{bottom:108.828893px;}
.yad{bottom:113.549819px;}
.y20{bottom:113.663992px;}
.y7c{bottom:114.776141px;}
.y5b{bottom:125.445752px;}
.y9a{bottom:126.816983px;}
.y6a{bottom:129.996282px;}
.y1f{bottom:138.397615px;}
.y7b{bottom:139.509764px;}
.y5a{bottom:150.179375px;}
.y69{bottom:154.980096px;}
.y1e{bottom:163.131239px;}
.y7a{bottom:164.243388px;}
.y58{bottom:171.491261px;}
.y79{bottom:188.977012px;}
.y1c{bottom:190.751980px;}
.y5f{bottom:211.988343px;}
.y78{bottom:213.710635px;}
.y37{bottom:224.210441px;}
.y36{bottom:224.513093px;}
.y77{bottom:238.444259px;}
.y1a{bottom:239.552084px;}
.y76{bottom:263.177882px;}
.y66{bottom:276.901279px;}
.y85{bottom:277.315440px;}
.y35{bottom:282.993010px;}
.y75{bottom:287.911506px;}
.y97{bottom:291.330004px;}
.y84{bottom:296.427785px;}
.y65{bottom:301.634903px;}
.y95{bottom:305.730003px;}
.y34{bottom:307.726634px;}
.y74{bottom:312.645129px;}
.y64{bottom:326.368526px;}
.y33{bottom:332.460257px;}
.y93{bottom:339.127799px;}
.y7e{bottom:339.409909px;}
.y7f{bottom:344.813445px;}
.y63{bottom:351.102150px;}
.y2e{bottom:356.580066px;}
.y32{bottom:357.193881px;}
.y62{bottom:375.835774px;}
.y92{bottom:378.915466px;}
.y31{bottom:381.927505px;}
.y2d{bottom:387.716707px;}
.yab{bottom:394.449750px;}
.y91{bottom:396.903556px;}
.y61{bottom:400.569397px;}
.y18{bottom:401.713394px;}
.y2f{bottom:407.739725px;}
.y2c{bottom:412.450331px;}
.y90{bottom:414.891646px;}
.yaa{bottom:419.183374px;}
.y60{bottom:425.303021px;}
.y8f{bottom:432.879736px;}
.y2b{bottom:437.183954px;}
.y3a{bottom:458.491998px;}
.y2a{bottom:461.917578px;}
.ya6{bottom:465.053040px;}
.y39{bottom:483.225622px;}
.y29{bottom:486.651201px;}
.y4f{bottom:489.196904px;}
.ya5{bottom:489.786663px;}
.y24{bottom:513.147652px;}
.ya4{bottom:514.520287px;}
.y42{bottom:519.569995px;}
.ya3{bottom:553.352715px;}
.y28{bottom:565.313116px;}
.ya2{bottom:578.086338px;}
.y27{bottom:590.046740px;}
.y8{bottom:591.209992px;}
.y40{bottom:595.529991px;}
.y48{bottom:596.249991px;}
.ya1{bottom:602.819962px;}
.y94{bottom:619.696565px;}
.ya0{bottom:627.553585px;}
.y5{bottom:639.089990px;}
.y9f{bottom:652.287209px;}
.y88{bottom:656.692588px;}
.y3d{bottom:657.089989px;}
.y57{bottom:664.694085px;}
.y46{bottom:667.529988px;}
.y9e{bottom:687.139109px;}
.y89{bottom:695.249987px;}
.y56{bottom:696.772846px;}
.y3{bottom:700.605620px;}
.yac{bottom:704.063851px;}
.y13{bottom:707.129987px;}
.y9d{bottom:711.872732px;}
.y55{bottom:721.506469px;}
.y73{bottom:742.547509px;}
.y4a{bottom:744.138449px;}
.ya9{bottom:745.375557px;}
.y54{bottom:746.240093px;}
.y3b{bottom:747.089985px;}
.y44{bottom:748.529985px;}
.y4{bottom:759.083823px;}
.ya8{bottom:770.109180px;}
.y53{bottom:770.973717px;}
.y4e{bottom:773.716293px;}
.y72{bottom:774.626264px;}
.ya7{bottom:794.842804px;}
.y52{bottom:795.707340px;}
.y4d{bottom:798.449917px;}
.y71{bottom:799.359887px;}
.y10{bottom:821.806747px;}
.y2{bottom:822.677256px;}
.y4c{bottom:823.183541px;}
.y50{bottom:823.328024px;}
.y70{bottom:824.093511px;}
.y86{bottom:825.180066px;}
.y19{bottom:842.440359px;}
.y67{bottom:843.525676px;}
.y26{bottom:846.010624px;}
.y4b{bottom:847.917164px;}
.y6f{bottom:848.827134px;}
.y38{bottom:849.472181px;}
.y12{bottom:876.951798px;}
.h18{height:11.160000px;}
.h1b{height:11.520000px;}
.h28{height:15.839999px;}
.h1a{height:21.959999px;}
.h19{height:23.816783px;}
.h8{height:27.359999px;}
.h2a{height:30.239999px;}
.h9{height:31.311663px;}
.h5{height:33.479999px;}
.h16{height:35.976180px;}
.h6{height:36.749680px;}
.h7{height:36.749910px;}
.h13{height:39.348939px;}
.h1c{height:39.348947px;}
.h29{height:39.779209px;}
.h22{height:39.977169px;}
.h11{height:41.597445px;}
.h24{height:41.597455px;}
.hb{height:41.597461px;}
.h21{height:41.756171px;}
.h27{height:45.935958px;}
.h17{height:47.176958px;}
.ha{height:50.473950px;}
.h23{height:50.826192px;}
.hd{height:53.193524px;}
.h2c{height:55.089205px;}
.h1f{height:55.109135px;}
.h15{height:55.123658px;}
.hf{height:58.982859px;}
.h25{height:59.747081px;}
.h12{height:60.931780px;}
.h14{height:62.607685px;}
.h10{height:66.040664px;}
.h1d{height:66.983064px;}
.h2e{height:67.350155px;}
.h2b{height:75.606910px;}
.hc{height:77.106086px;}
.h20{height:77.619556px;}
.he{height:106.199996px;}
.h26{height:112.679995px;}
.h4{height:136.624213px;}
.h3{height:151.032673px;}
.h2d{height:152.898765px;}
.h1e{height:174.239993px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w1c{width:89.279996px;}
.w1d{width:90.359996px;}
.w12{width:118.799995px;}
.w13{width:128.519995px;}
.w15{width:130.319995px;}
.w10{width:136.439994px;}
.w1e{width:143.279994px;}
.w1f{width:165.265582px;}
.wf{width:167.399993px;}
.w14{width:170.639993px;}
.w11{width:178.919993px;}
.w1a{width:195.620485px;}
.we{width:205.738760px;}
.wc{width:206.863037px;}
.w3{width:212.399991px;}
.wd{width:214.732827px;}
.w4{width:233.279990px;}
.w5{width:393.839984px;}
.wb{width:408.104807px;}
.w6{width:419.347336px;}
.w18{width:460.944823px;}
.w16{width:473.311607px;}
.w1b{width:485.999980px;}
.w9{width:505.915028px;}
.w8{width:532.897185px;}
.w17{width:535.145691px;}
.w19{width:566.999976px;}
.w7{width:568.079976px;}
.wa{width:607.098035px;}
.w20{width:625.086154px;}
.w2{width:628.874974px;}
.w0{width:628.875000px;}
.w1{width:629.250000px;}
.x0{left:0.000000px;}
.x11{left:1.888513px;}
.x35{left:3.743552px;}
.xe{left:5.552186px;}
.x20{left:6.602826px;}
.x8{left:7.920000px;}
.x16{left:8.967810px;}
.xa{left:10.073677px;}
.x10{left:12.033393px;}
.xf{left:14.018408px;}
.x23{left:15.739923px;}
.x21{left:18.023567px;}
.x5{left:22.051782px;}
.x22{left:23.374821px;}
.x2{left:24.822611px;}
.xb{left:31.319999px;}
.xd{left:34.059810px;}
.x1f{left:35.061100px;}
.x14{left:36.352100px;}
.xc{left:38.925729px;}
.x19{left:42.882284px;}
.x25{left:45.319041px;}
.x1{left:47.413667px;}
.x33{left:50.555610px;}
.x24{left:52.576839px;}
.x30{left:53.999998px;}
.x7{left:55.081600px;}
.x12{left:56.975168px;}
.x29{left:62.791181px;}
.x3{left:87.184210px;}
.x28{left:101.472600px;}
.x1a{left:194.039992px;}
.x6{left:198.359992px;}
.x17{left:199.799992px;}
.x13{left:206.866179px;}
.x4{left:208.439991px;}
.x18{left:215.279991px;}
.x2e{left:221.839972px;}
.x1b{left:224.279991px;}
.x26{left:226.469763px;}
.x31{left:270.719989px;}
.x2b{left:283.017464px;}
.x2a{left:291.677746px;}
.x1e{left:386.639984px;}
.x1d{left:388.079984px;}
.x1c{left:407.519983px;}
.x9{left:410.636478px;}
.x27{left:416.777854px;}
.x15{left:422.593751px;}
.x2f{left:431.987105px;}
.x34{left:437.038401px;}
.x2d{left:447.048548px;}
.x2c{left:448.541700px;}
.x32{left:460.799981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-50.050301pt;}
.ws0{word-spacing:-36.160216pt;}
.ws4{word-spacing:-19.542741pt;}
.ws5{word-spacing:-16.614000pt;}
.ws1{word-spacing:-13.960596pt;}
.ws8{word-spacing:-12.730478pt;}
.ws6{word-spacing:-12.585105pt;}
.ws3{word-spacing:-0.068435pt;}
.ws7{word-spacing:-0.049008pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-11.356235pt;}
._1{margin-left:-10.276494pt;}
._6{margin-left:-7.958325pt;}
._4{margin-left:-6.680770pt;}
._7{margin-left:-5.748636pt;}
._5{margin-left:-4.742559pt;}
._3{margin-left:-3.282828pt;}
._2{margin-left:-2.238396pt;}
._b{margin-left:-1.128478pt;}
._9{width:1.522238pt;}
._d{width:2.623264pt;}
._11{width:3.731901pt;}
._19{width:4.996691pt;}
._22{width:5.924603pt;}
._16{width:7.213973pt;}
._25{width:8.190366pt;}
._13{width:9.087732pt;}
._27{width:10.493050pt;}
._21{width:11.510200pt;}
._c{width:13.334920pt;}
._12{width:14.664205pt;}
._8{width:15.839033pt;}
._2b{width:18.087997pt;}
._1d{width:19.460321pt;}
._20{width:21.037158pt;}
._23{width:23.225650pt;}
._1a{width:24.241761pt;}
._1c{width:25.420668pt;}
._f{width:26.544924pt;}
._24{width:28.003856pt;}
._e{width:29.280600pt;}
._18{width:30.250729pt;}
._17{width:31.241763pt;}
._14{width:32.187000pt;}
._29{width:33.872250pt;}
._a{width:35.019637pt;}
._2e{width:38.093538pt;}
._28{width:39.348947pt;}
._1b{width:41.753604pt;}
._10{width:42.934036pt;}
._1e{width:44.079757pt;}
._1f{width:46.736878pt;}
._26{width:47.742186pt;}
._30{width:54.739786pt;}
._34{width:58.311968pt;}
._33{width:65.289128pt;}
._2f{width:75.046364pt;}
._15{width:93.800381pt;}
._2a{width:94.699748pt;}
._2d{width:95.687286pt;}
._31{width:184.505812pt;}
._32{width:211.865882pt;}
._2c{width:298.822004pt;}
.fsc{font-size:27.633608pt;}
.fs4{font-size:37.309101pt;}
.fs11{font-size:38.355848pt;}
.fs2{font-size:42.639102pt;}
.fs3{font-size:42.639369pt;}
.fse{font-size:48.447922pt;}
.fsf{font-size:49.007552pt;}
.fs5{font-size:53.284719pt;}
.fs10{font-size:53.297553pt;}
.fs7{font-size:60.080219pt;}
.fs12{font-size:63.917679pt;}
.fsd{font-size:63.940803pt;}
.fsb{font-size:63.957653pt;}
.fs8{font-size:68.435320pt;}
.fsa{font-size:70.713184pt;}
.fs9{font-size:74.590613pt;}
.fs6{font-size:76.069637pt;}
.fs1{font-size:170.567058pt;}
.fs0{font-size:188.555147pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y3c{bottom:2.314898pt;}
.y49{bottom:2.446226pt;}
.y41{bottom:2.465836pt;}
.y47{bottom:2.475465pt;}
.y43{bottom:2.491519pt;}
.y3f{bottom:2.544262pt;}
.y45{bottom:2.604059pt;}
.yd{bottom:3.175974pt;}
.y96{bottom:3.435217pt;}
.y99{bottom:3.449934pt;}
.ya{bottom:3.842131pt;}
.y7{bottom:3.862346pt;}
.y8e{bottom:4.252624pt;}
.y6e{bottom:4.957231pt;}
.y17{bottom:5.493336pt;}
.yb{bottom:8.720014pt;}
.y3e{bottom:11.755464pt;}
.y25{bottom:11.992048pt;}
.y1d{bottom:11.992051pt;}
.y87{bottom:11.992058pt;}
.y51{bottom:11.992060pt;}
.y11{bottom:11.992063pt;}
.y30{bottom:11.992069pt;}
.y1b{bottom:11.992078pt;}
.y59{bottom:11.992083pt;}
.yc{bottom:15.612341pt;}
.y98{bottom:16.235217pt;}
.y9{bottom:18.055254pt;}
.y6{bottom:18.075380pt;}
.ye{bottom:20.290616pt;}
.yb0{bottom:22.984783pt;}
.y8d{bottom:24.681650pt;}
.y16{bottom:29.017977pt;}
.y68{bottom:32.400013pt;}
.y83{bottom:32.669137pt;}
.y6d{bottom:34.271573pt;}
.y23{bottom:35.078330pt;}
.yf{bottom:35.613848pt;}
.y8c{bottom:45.110676pt;}
.y5e{bottom:45.551005pt;}
.y82{bottom:48.658550pt;}
.yaf{bottom:48.967579pt;}
.y15{bottom:52.542618pt;}
.y22{bottom:57.063773pt;}
.y81{bottom:64.647963pt;}
.y8b{bottom:65.539701pt;}
.y5d{bottom:67.536449pt;}
.y6c{bottom:71.136580pt;}
.yae{bottom:74.950376pt;}
.y14{bottom:76.067260pt;}
.y21{bottom:79.049216pt;}
.y7d{bottom:80.037793pt;}
.y80{bottom:80.637376pt;}
.y9c{bottom:80.747380pt;}
.y8a{bottom:85.968727pt;}
.y5c{bottom:89.521892pt;}
.y6b{bottom:93.344415pt;}
.y9b{bottom:96.736794pt;}
.yad{bottom:100.933172pt;}
.y20{bottom:101.034659pt;}
.y7c{bottom:102.023236pt;}
.y5b{bottom:111.507335pt;}
.y9a{bottom:112.726207pt;}
.y6a{bottom:115.552250pt;}
.y1f{bottom:123.020103pt;}
.y7b{bottom:124.008680pt;}
.y5a{bottom:133.492778pt;}
.y69{bottom:137.760086pt;}
.y1e{bottom:145.005546pt;}
.y7a{bottom:145.994123pt;}
.y58{bottom:152.436676pt;}
.y79{bottom:167.979566pt;}
.y1c{bottom:169.557316pt;}
.y5f{bottom:188.434083pt;}
.y78{bottom:189.965009pt;}
.y37{bottom:199.298170pt;}
.y36{bottom:199.567194pt;}
.y77{bottom:211.950452pt;}
.y1a{bottom:212.935186pt;}
.y76{bottom:233.935895pt;}
.y66{bottom:246.134471pt;}
.y85{bottom:246.502613pt;}
.y35{bottom:251.549342pt;}
.y75{bottom:255.921339pt;}
.y97{bottom:258.960004pt;}
.y84{bottom:263.491365pt;}
.y65{bottom:268.119914pt;}
.y95{bottom:271.760003pt;}
.y34{bottom:273.534786pt;}
.y74{bottom:277.906782pt;}
.y64{bottom:290.105357pt;}
.y33{bottom:295.520229pt;}
.y93{bottom:301.446933pt;}
.y7e{bottom:301.697697pt;}
.y7f{bottom:306.500840pt;}
.y63{bottom:312.090800pt;}
.y2e{bottom:316.960059pt;}
.y32{bottom:317.505672pt;}
.y62{bottom:334.076243pt;}
.y92{bottom:336.813748pt;}
.y31{bottom:339.491115pt;}
.y2d{bottom:344.637073pt;}
.yab{bottom:350.622000pt;}
.y91{bottom:352.803161pt;}
.y61{bottom:356.061686pt;}
.y18{bottom:357.078572pt;}
.y2f{bottom:362.435311pt;}
.y2c{bottom:366.622516pt;}
.y90{bottom:368.792574pt;}
.yaa{bottom:372.607443pt;}
.y60{bottom:378.047130pt;}
.y8f{bottom:384.781988pt;}
.y2b{bottom:388.607959pt;}
.y3a{bottom:407.548443pt;}
.y2a{bottom:410.593403pt;}
.ya6{bottom:413.380480pt;}
.y39{bottom:429.533886pt;}
.y29{bottom:432.578846pt;}
.y4f{bottom:434.841692pt;}
.ya5{bottom:435.365923pt;}
.y24{bottom:456.131246pt;}
.ya4{bottom:457.351366pt;}
.y42{bottom:461.839995pt;}
.ya3{bottom:491.869080pt;}
.y28{bottom:502.500548pt;}
.ya2{bottom:513.854523pt;}
.y27{bottom:524.485991pt;}
.y8{bottom:525.519993pt;}
.y40{bottom:529.359992pt;}
.y48{bottom:529.999992pt;}
.ya1{bottom:535.839966pt;}
.y94{bottom:550.841391pt;}
.ya0{bottom:557.825409pt;}
.y5{bottom:568.079991pt;}
.y9f{bottom:579.810852pt;}
.y88{bottom:583.726745pt;}
.y3d{bottom:584.079990pt;}
.y57{bottom:590.839186pt;}
.y46{bottom:593.359990pt;}
.y9e{bottom:610.790319pt;}
.y89{bottom:617.999989pt;}
.y56{bottom:619.353641pt;}
.y3{bottom:622.760551pt;}
.yac{bottom:625.834535pt;}
.y13{bottom:628.559988pt;}
.y9d{bottom:632.775762pt;}
.y55{bottom:641.339084pt;}
.y73{bottom:660.042230pt;}
.y4a{bottom:661.456399pt;}
.ya9{bottom:662.556050pt;}
.y54{bottom:663.324527pt;}
.y3b{bottom:664.079987pt;}
.y44{bottom:665.359987pt;}
.y4{bottom:674.741176pt;}
.ya8{bottom:684.541494pt;}
.y53{bottom:685.309970pt;}
.y4e{bottom:687.747816pt;}
.y72{bottom:688.556679pt;}
.ya7{bottom:706.526937pt;}
.y52{bottom:707.295413pt;}
.y4d{bottom:709.733260pt;}
.y71{bottom:710.542122pt;}
.y10{bottom:730.494886pt;}
.y2{bottom:731.268672pt;}
.y4c{bottom:731.718703pt;}
.y50{bottom:731.847132pt;}
.y70{bottom:732.527565pt;}
.y86{bottom:733.493392pt;}
.y19{bottom:748.835875pt;}
.y67{bottom:749.800601pt;}
.y26{bottom:752.009444pt;}
.y4b{bottom:753.704146pt;}
.y6f{bottom:754.513008pt;}
.y38{bottom:755.086383pt;}
.y12{bottom:779.512709pt;}
.h18{height:9.920000pt;}
.h1b{height:10.240000pt;}
.h28{height:14.079999pt;}
.h1a{height:19.519999pt;}
.h19{height:21.170474pt;}
.h8{height:24.319999pt;}
.h2a{height:26.879999pt;}
.h9{height:27.832589pt;}
.h5{height:29.759999pt;}
.h16{height:31.978827pt;}
.h6{height:32.666382pt;}
.h7{height:32.666587pt;}
.h13{height:34.976834pt;}
.h1c{height:34.976842pt;}
.h29{height:35.359297pt;}
.h22{height:35.535261pt;}
.h11{height:36.975506pt;}
.h24{height:36.975516pt;}
.hb{height:36.975521pt;}
.h21{height:37.116596pt;}
.h27{height:40.831963pt;}
.h17{height:41.935074pt;}
.ha{height:44.865734pt;}
.h23{height:45.178837pt;}
.hd{height:47.283132pt;}
.h2c{height:48.968182pt;}
.h1f{height:48.985898pt;}
.h15{height:48.998807pt;}
.hf{height:52.429208pt;}
.h25{height:53.108516pt;}
.h12{height:54.161582pt;}
.h14{height:55.651276pt;}
.h10{height:58.702812pt;}
.h1d{height:59.540501pt;}
.h2e{height:59.866805pt;}
.h2b{height:67.206142pt;}
.hc{height:68.538743pt;}
.h20{height:68.995161pt;}
.he{height:94.399996pt;}
.h26{height:100.159996pt;}
.h4{height:121.443745pt;}
.h3{height:134.251265pt;}
.h2d{height:135.910014pt;}
.h1e{height:154.879994pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w1c{width:79.359997pt;}
.w1d{width:80.319997pt;}
.w12{width:105.599996pt;}
.w13{width:114.239995pt;}
.w15{width:115.839995pt;}
.w10{width:121.279995pt;}
.w1e{width:127.359995pt;}
.w1f{width:146.902739pt;}
.wf{width:148.799994pt;}
.w14{width:151.679994pt;}
.w11{width:159.039993pt;}
.w1a{width:173.884876pt;}
.we{width:182.878898pt;}
.wc{width:183.878255pt;}
.w3{width:188.799992pt;}
.wd{width:190.873624pt;}
.w4{width:207.359991pt;}
.w5{width:350.079985pt;}
.wb{width:362.759828pt;}
.w6{width:372.753188pt;}
.w18{width:409.728732pt;}
.w16{width:420.721429pt;}
.w1b{width:431.999982pt;}
.w9{width:449.702247pt;}
.w8{width:473.686387pt;}
.w17{width:475.685059pt;}
.w19{width:503.999979pt;}
.w7{width:504.959979pt;}
.wa{width:539.642698pt;}
.w20{width:555.632137pt;}
.w2{width:558.999977pt;}
.w0{width:559.000000pt;}
.w1{width:559.333333pt;}
.x0{left:0.000000pt;}
.x11{left:1.678679pt;}
.x35{left:3.327602pt;}
.xe{left:4.935277pt;}
.x20{left:5.869179pt;}
.x8{left:7.040000pt;}
.x16{left:7.971387pt;}
.xa{left:8.954379pt;}
.x10{left:10.696350pt;}
.xf{left:12.460807pt;}
.x23{left:13.991043pt;}
.x21{left:16.020949pt;}
.x5{left:19.601584pt;}
.x22{left:20.777619pt;}
.x2{left:22.064543pt;}
.xb{left:27.839999pt;}
.xd{left:30.275387pt;}
.x1f{left:31.165423pt;}
.x14{left:32.312978pt;}
.xc{left:34.600648pt;}
.x19{left:38.117586pt;}
.x25{left:40.283592pt;}
.x1{left:42.145482pt;}
.x33{left:44.938320pt;}
.x24{left:46.734968pt;}
.x30{left:47.999998pt;}
.x7{left:48.961422pt;}
.x12{left:50.644594pt;}
.x29{left:55.814383pt;}
.x3{left:77.497075pt;}
.x28{left:90.197867pt;}
.x1a{left:172.479993pt;}
.x6{left:176.319993pt;}
.x17{left:177.599993pt;}
.x13{left:183.881048pt;}
.x4{left:185.279992pt;}
.x18{left:191.359992pt;}
.x2e{left:197.191086pt;}
.x1b{left:199.359992pt;}
.x26{left:201.306456pt;}
.x31{left:240.639990pt;}
.x2b{left:251.571079pt;}
.x2a{left:259.269107pt;}
.x1e{left:343.679986pt;}
.x1d{left:344.959986pt;}
.x1c{left:362.239985pt;}
.x9{left:365.010203pt;}
.x27{left:370.469204pt;}
.x15{left:375.638890pt;}
.x2f{left:383.988538pt;}
.x34{left:388.478579pt;}
.x2d{left:397.376487pt;}
.x2c{left:398.703733pt;}
.x32{left:409.599983pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  