
    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_18b8bd10c8c88531bf5534e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_f80835bc9c12483a64b0af05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_46e85e35dc0adaf84440210c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_d441f972365d7870b03a77b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e9cc413b90f0d3c8963b6a26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;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_39a141216df1a6539538a224.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.389000;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_970e8bc630b81a6f25762437.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.725000;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_8a77683f77c1090c0c064048.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.452000;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_3509c74b9415e04c6753c9e5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6dddbb4b8ba781fc36f8eb47.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_9377faa70faea6c930b60ba0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.683000;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_d3274efcce9a54708faa9892.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.234000;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_2d4845d9c6487e40331c5180.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_4f25eb12ae9385962caeea33.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.623000;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);}
.v1{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012505px;}
.ls5{letter-spacing:0.017959px;}
.ls13{letter-spacing:0.022184px;}
.ls8{letter-spacing:0.031608px;}
.ls16{letter-spacing:0.041963px;}
.ls6{letter-spacing:0.055615px;}
.ls1{letter-spacing:0.061615px;}
.ls10{letter-spacing:0.062611px;}
.lsb{letter-spacing:2.993281px;}
.ls14{letter-spacing:2.999261px;}
.lsf{letter-spacing:2.999281px;}
.ls9{letter-spacing:4.294703px;}
.ls2{letter-spacing:4.721963px;}
.ls7{letter-spacing:4.727963px;}
.ls15{letter-spacing:5.166096px;}
.ls0{letter-spacing:14.578332px;}
.ls4{letter-spacing:14.584332px;}
.ls17{letter-spacing:14.595776px;}
.ls12{letter-spacing:18.231776px;}
.lsd{letter-spacing:21.865076px;}
.lse{letter-spacing:21.871076px;}
.ls11{letter-spacing:29.891281px;}
.ls3{letter-spacing:32.723973px;}
.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;}
}
.ws14{word-spacing:-0.065455px;}
.ws9{word-spacing:-0.047821px;}
.ws16{word-spacing:0.000000px;}
.ws7{word-spacing:6.765905px;}
.ws35{word-spacing:14.465467px;}
.ws23{word-spacing:15.643649px;}
.ws26{word-spacing:16.625468px;}
.ws2d{word-spacing:17.539810px;}
.ws31{word-spacing:19.374562px;}
.ws4{word-spacing:19.832744px;}
.ws36{word-spacing:20.814563px;}
.ws34{word-spacing:20.880017px;}
.ws1e{word-spacing:21.076381px;}
.ws5{word-spacing:21.665473px;}
.ws6{word-spacing:21.730927px;}
.ws1d{word-spacing:21.745895px;}
.ws18{word-spacing:21.750890px;}
.ws1f{word-spacing:21.796382px;}
.wsb{word-spacing:21.800671px;}
.wsc{word-spacing:21.806671px;}
.wsd{word-spacing:21.845368px;}
.wsa{word-spacing:21.854097px;}
.wsf{word-spacing:21.873190px;}
.wse{word-spacing:21.879190px;}
.ws24{word-spacing:22.067770px;}
.ws2e{word-spacing:22.189109px;}
.ws2f{word-spacing:22.300220px;}
.ws30{word-spacing:22.320019px;}
.ws12{word-spacing:22.450928px;}
.ws2{word-spacing:23.312640px;}
.ws11{word-spacing:24.218202px;}
.ws21{word-spacing:24.668900px;}
.ws29{word-spacing:24.673550px;}
.ws22{word-spacing:24.679550px;}
.ws8{word-spacing:24.938203px;}
.ws27{word-spacing:25.003657px;}
.ws13{word-spacing:25.069112px;}
.ws1c{word-spacing:25.658203px;}
.ws1b{word-spacing:25.731179px;}
.ws2b{word-spacing:26.544432px;}
.ws19{word-spacing:26.755738px;}
.ws1a{word-spacing:26.827469px;}
.ws32{word-spacing:27.752750px;}
.ws10{word-spacing:27.818205px;}
.ws25{word-spacing:29.389115px;}
.ws1{word-spacing:30.987720px;}
.ws0{word-spacing:31.091012px;}
.ws2c{word-spacing:31.352753px;}
.ws33{word-spacing:32.106796px;}
.ws15{word-spacing:32.192873px;}
.ws28{word-spacing:32.203663px;}
.ws17{word-spacing:34.298210px;}
.ws20{word-spacing:80.625869px;}
.ws2a{word-spacing:80.732266px;}
.ws3{word-spacing:96.750773px;}
._5{margin-left:-5.432732px;}
._f{margin-left:-3.600003px;}
._1{margin-left:-2.582310px;}
._4{margin-left:-1.083148px;}
._2{width:1.148602px;}
._0{width:2.582310px;}
._7{width:3.918733px;}
._9{width:11.520010px;}
._10{width:14.691411px;}
._18{width:16.655049px;}
._19{width:18.609238px;}
._13{width:20.641442px;}
._3{width:23.568069px;}
._17{width:24.634526px;}
._14{width:26.277085px;}
._b{width:29.061842px;}
._c{width:30.374387px;}
._11{width:31.616601px;}
._16{width:32.895079px;}
._15{width:36.483125px;}
._d{width:43.038600px;}
._12{width:52.038417px;}
._6{width:65.679952px;}
._8{width:67.067686px;}
._e{width:80.697600px;}
._a{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:61.467000px;}
.y1f{bottom:106.299000px;}
.y67{bottom:113.134500px;}
.y1e{bottom:126.624000px;}
.y66{bottom:133.458000px;}
.y1d{bottom:146.947500px;}
.y65{bottom:153.781500px;}
.y1c{bottom:167.271000px;}
.y48{bottom:180.463500px;}
.y1b{bottom:187.594500px;}
.y64{bottom:190.311000px;}
.y47{bottom:200.787000px;}
.y1a{bottom:207.918000px;}
.y46{bottom:221.110500px;}
.y19{bottom:228.243000px;}
.y45{bottom:241.434000px;}
.y63{bottom:241.869000px;}
.y18{bottom:248.566500px;}
.y44{bottom:261.759000px;}
.y62{bottom:262.192500px;}
.y17{bottom:268.890000px;}
.y43{bottom:292.650000px;}
.y61{bottom:295.966500px;}
.y16{bottom:301.945500px;}
.y60{bottom:329.739000px;}
.y42{bottom:336.469500px;}
.y15{bottom:338.473500px;}
.y41{bottom:356.793000px;}
.y5f{bottom:363.513000px;}
.y40{bottom:377.116500px;}
.y14{bottom:389.896500px;}
.y5e{bottom:397.285500px;}
.y3f{bottom:397.441500px;}
.y3e{bottom:417.765000px;}
.y13{bottom:432.982500px;}
.y5d{bottom:433.813500px;}
.y3d{bottom:448.656000px;}
.y12{bottom:453.306000px;}
.y11{bottom:473.629500px;}
.y5c{bottom:485.373000px;}
.y3c{bottom:485.782500px;}
.y5b{bottom:505.696500px;}
.y10{bottom:516.715500px;}
.y3b{bottom:537.340500px;}
.y5a{bottom:539.469000px;}
.y7a{bottom:540.097500px;}
.y59{bottom:559.794000px;}
.yf{bottom:559.801500px;}
.y79{bottom:560.421000px;}
.y3a{bottom:571.114500px;}
.ye{bottom:593.287500px;}
.y58{bottom:593.566500px;}
.y78{bottom:596.950500px;}
.y39{bottom:604.887000px;}
.y57{bottom:624.459000px;}
.yd{bottom:626.773500px;}
.y38{bottom:641.416500px;}
.y77{bottom:648.508500px;}
.yc{bottom:659.829000px;}
.y56{bottom:668.278500px;}
.y76{bottom:668.832000px;}
.yb{bottom:692.884500px;}
.y37{bottom:692.974500px;}
.y55{bottom:702.051000px;}
.y75{bottom:702.606000px;}
.y36{bottom:713.298000px;}
.ya{bottom:726.370500px;}
.y54{bottom:732.943500px;}
.y35{bottom:733.621500px;}
.y74{bottom:739.134000px;}
.y34{bottom:753.945000px;}
.y9{bottom:759.426000px;}
.y53{bottom:770.068500px;}
.y33{bottom:774.268500px;}
.y8{bottom:779.749500px;}
.y73{bottom:790.692000px;}
.y32{bottom:794.593500px;}
.y72{bottom:811.015500px;}
.y31{bottom:814.917000px;}
.y7{bottom:816.277500px;}
.y52{bottom:821.628000px;}
.y71{bottom:831.339000px;}
.y30{bottom:835.240500px;}
.y51{bottom:841.951500px;}
.y2f{bottom:855.564000px;}
.y70{bottom:865.113000px;}
.y50{bottom:875.724000px;}
.y2e{bottom:875.887500px;}
.y6{bottom:884.772000px;}
.y6f{bottom:885.436500px;}
.y2d{bottom:896.212500px;}
.y4f{bottom:909.498000px;}
.y2c{bottom:916.536000px;}
.y5{bottom:921.459000px;}
.y6e{bottom:921.964500px;}
.y2b{bottom:936.859500px;}
.y4e{bottom:940.389000px;}
.y2a{bottom:957.183000px;}
.y6d{bottom:973.522500px;}
.y4{bottom:975.862500px;}
.y29{bottom:977.506500px;}
.y4d{bottom:984.208500px;}
.y6c{bottom:993.847500px;}
.y28{bottom:997.831500px;}
.y4c{bottom:1004.532000px;}
.y3{bottom:1008.739500px;}
.y27{bottom:1018.155000px;}
.y6b{bottom:1024.738500px;}
.y4b{bottom:1038.306000px;}
.y26{bottom:1038.478500px;}
.y2{bottom:1041.616500px;}
.y25{bottom:1058.802000px;}
.y6a{bottom:1068.558000px;}
.y4a{bottom:1072.080000px;}
.y1{bottom:1074.493500px;}
.y24{bottom:1079.125500px;}
.y69{bottom:1088.881500px;}
.y23{bottom:1099.450500px;}
.y49{bottom:1102.971000px;}
.y68{bottom:1109.205000px;}
.y22{bottom:1119.774000px;}
.y21{bottom:1140.097500px;}
.h7{height:45.425492px;}
.h5{height:49.090950px;}
.h3{height:49.781453px;}
.h8{height:53.798400px;}
.h6{height:57.419702px;}
.h4{height:64.557900px;}
.h2{height:77.366008px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:106.299000px;}
.x2{left:122.443500px;}
.x9{left:123.481500px;}
.x8{left:130.891500px;}
.xa{left:140.662500px;}
.xe{left:147.208500px;}
.xb{left:157.843500px;}
.x4{left:175.543500px;}
.xd{left:192.207000px;}
.x1{left:289.101000px;}
.x3{left:358.545000px;}
.x6{left:373.905000px;}
.x5{left:393.298500px;}
.xc{left:442.366500px;}
@media print{
.v1{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011116pt;}
.ls5{letter-spacing:0.015963pt;}
.ls13{letter-spacing:0.019719pt;}
.ls8{letter-spacing:0.028096pt;}
.ls16{letter-spacing:0.037300pt;}
.ls6{letter-spacing:0.049436pt;}
.ls1{letter-spacing:0.054769pt;}
.ls10{letter-spacing:0.055654pt;}
.lsb{letter-spacing:2.660694pt;}
.ls14{letter-spacing:2.666010pt;}
.lsf{letter-spacing:2.666028pt;}
.ls9{letter-spacing:3.817514pt;}
.ls2{letter-spacing:4.197300pt;}
.ls7{letter-spacing:4.202634pt;}
.ls15{letter-spacing:4.592085pt;}
.ls0{letter-spacing:12.958517pt;}
.ls4{letter-spacing:12.963851pt;}
.ls17{letter-spacing:12.974023pt;}
.ls12{letter-spacing:16.206023pt;}
.lsd{letter-spacing:19.435623pt;}
.lse{letter-spacing:19.440956pt;}
.ls11{letter-spacing:26.570028pt;}
.ls3{letter-spacing:29.087976pt;}
.ws14{word-spacing:-0.058182pt;}
.ws9{word-spacing:-0.042507pt;}
.ws16{word-spacing:0.000000pt;}
.ws7{word-spacing:6.014138pt;}
.ws35{word-spacing:12.858193pt;}
.ws23{word-spacing:13.905466pt;}
.ws26{word-spacing:14.778194pt;}
.ws2d{word-spacing:15.590942pt;}
.ws31{word-spacing:17.221833pt;}
.ws4{word-spacing:17.629106pt;}
.ws36{word-spacing:18.501834pt;}
.ws34{word-spacing:18.560015pt;}
.ws1e{word-spacing:18.734561pt;}
.ws5{word-spacing:19.258198pt;}
.ws6{word-spacing:19.316380pt;}
.ws1d{word-spacing:19.329685pt;}
.ws18{word-spacing:19.334125pt;}
.ws1f{word-spacing:19.374562pt;}
.wsb{word-spacing:19.378374pt;}
.wsc{word-spacing:19.383708pt;}
.wsd{word-spacing:19.418105pt;}
.wsa{word-spacing:19.425864pt;}
.wsf{word-spacing:19.442836pt;}
.wse{word-spacing:19.448169pt;}
.ws24{word-spacing:19.615795pt;}
.ws2e{word-spacing:19.723653pt;}
.ws2f{word-spacing:19.822418pt;}
.ws30{word-spacing:19.840017pt;}
.ws12{word-spacing:19.956380pt;}
.ws2{word-spacing:20.722347pt;}
.ws11{word-spacing:21.527291pt;}
.ws21{word-spacing:21.927911pt;}
.ws29{word-spacing:21.932045pt;}
.ws22{word-spacing:21.937378pt;}
.ws8{word-spacing:22.167291pt;}
.ws27{word-spacing:22.225473pt;}
.ws13{word-spacing:22.283655pt;}
.ws1c{word-spacing:22.807292pt;}
.ws1b{word-spacing:22.872159pt;}
.ws2b{word-spacing:23.595051pt;}
.ws19{word-spacing:23.782878pt;}
.ws1a{word-spacing:23.846639pt;}
.ws32{word-spacing:24.669111pt;}
.ws10{word-spacing:24.727293pt;}
.ws25{word-spacing:26.123658pt;}
.ws1{word-spacing:27.544640pt;}
.ws0{word-spacing:27.636455pt;}
.ws2c{word-spacing:27.869114pt;}
.ws33{word-spacing:28.539374pt;}
.ws15{word-spacing:28.615887pt;}
.ws28{word-spacing:28.625478pt;}
.ws17{word-spacing:30.487298pt;}
.ws20{word-spacing:71.667439pt;}
.ws2a{word-spacing:71.762014pt;}
.ws3{word-spacing:86.000687pt;}
._5{margin-left:-4.829095pt;}
._f{margin-left:-3.200003pt;}
._1{margin-left:-2.295387pt;}
._4{margin-left:-0.962798pt;}
._2{width:1.020980pt;}
._0{width:2.295387pt;}
._7{width:3.483318pt;}
._9{width:10.240009pt;}
._10{width:13.059032pt;}
._18{width:14.804488pt;}
._19{width:16.541545pt;}
._13{width:18.347949pt;}
._3{width:20.949395pt;}
._17{width:21.897356pt;}
._14{width:23.357409pt;}
._b{width:25.832749pt;}
._c{width:26.999455pt;}
._11{width:28.103645pt;}
._16{width:29.240070pt;}
._15{width:32.429445pt;}
._d{width:38.256533pt;}
._12{width:46.256371pt;}
._6{width:58.382180pt;}
._8{width:59.615721pt;}
._e{width:71.731200pt;}
._a{width:86.077200pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:54.637333pt;}
.y1f{bottom:94.488000pt;}
.y67{bottom:100.564000pt;}
.y1e{bottom:112.554667pt;}
.y66{bottom:118.629333pt;}
.y1d{bottom:130.620000pt;}
.y65{bottom:136.694667pt;}
.y1c{bottom:148.685333pt;}
.y48{bottom:160.412000pt;}
.y1b{bottom:166.750667pt;}
.y64{bottom:169.165333pt;}
.y47{bottom:178.477333pt;}
.y1a{bottom:184.816000pt;}
.y46{bottom:196.542667pt;}
.y19{bottom:202.882667pt;}
.y45{bottom:214.608000pt;}
.y63{bottom:214.994667pt;}
.y18{bottom:220.948000pt;}
.y44{bottom:232.674667pt;}
.y62{bottom:233.060000pt;}
.y17{bottom:239.013333pt;}
.y43{bottom:260.133333pt;}
.y61{bottom:263.081333pt;}
.y16{bottom:268.396000pt;}
.y60{bottom:293.101333pt;}
.y42{bottom:299.084000pt;}
.y15{bottom:300.865333pt;}
.y41{bottom:317.149333pt;}
.y5f{bottom:323.122667pt;}
.y40{bottom:335.214667pt;}
.y14{bottom:346.574667pt;}
.y5e{bottom:353.142667pt;}
.y3f{bottom:353.281333pt;}
.y3e{bottom:371.346667pt;}
.y13{bottom:384.873333pt;}
.y5d{bottom:385.612000pt;}
.y3d{bottom:398.805333pt;}
.y12{bottom:402.938667pt;}
.y11{bottom:421.004000pt;}
.y5c{bottom:431.442667pt;}
.y3c{bottom:431.806667pt;}
.y5b{bottom:449.508000pt;}
.y10{bottom:459.302667pt;}
.y3b{bottom:477.636000pt;}
.y5a{bottom:479.528000pt;}
.y7a{bottom:480.086667pt;}
.y59{bottom:497.594667pt;}
.yf{bottom:497.601333pt;}
.y79{bottom:498.152000pt;}
.y3a{bottom:507.657333pt;}
.ye{bottom:527.366667pt;}
.y58{bottom:527.614667pt;}
.y78{bottom:530.622667pt;}
.y39{bottom:537.677333pt;}
.y57{bottom:555.074667pt;}
.yd{bottom:557.132000pt;}
.y38{bottom:570.148000pt;}
.y77{bottom:576.452000pt;}
.yc{bottom:586.514667pt;}
.y56{bottom:594.025333pt;}
.y76{bottom:594.517333pt;}
.yb{bottom:615.897333pt;}
.y37{bottom:615.977333pt;}
.y55{bottom:624.045333pt;}
.y75{bottom:624.538667pt;}
.y36{bottom:634.042667pt;}
.ya{bottom:645.662667pt;}
.y54{bottom:651.505333pt;}
.y35{bottom:652.108000pt;}
.y74{bottom:657.008000pt;}
.y34{bottom:670.173333pt;}
.y9{bottom:675.045333pt;}
.y53{bottom:684.505333pt;}
.y33{bottom:688.238667pt;}
.y8{bottom:693.110667pt;}
.y73{bottom:702.837333pt;}
.y32{bottom:706.305333pt;}
.y72{bottom:720.902667pt;}
.y31{bottom:724.370667pt;}
.y7{bottom:725.580000pt;}
.y52{bottom:730.336000pt;}
.y71{bottom:738.968000pt;}
.y30{bottom:742.436000pt;}
.y51{bottom:748.401333pt;}
.y2f{bottom:760.501333pt;}
.y70{bottom:768.989333pt;}
.y50{bottom:778.421333pt;}
.y2e{bottom:778.566667pt;}
.y6{bottom:786.464000pt;}
.y6f{bottom:787.054667pt;}
.y2d{bottom:796.633333pt;}
.y4f{bottom:808.442667pt;}
.y2c{bottom:814.698667pt;}
.y5{bottom:819.074667pt;}
.y6e{bottom:819.524000pt;}
.y2b{bottom:832.764000pt;}
.y4e{bottom:835.901333pt;}
.y2a{bottom:850.829333pt;}
.y6d{bottom:865.353333pt;}
.y4{bottom:867.433333pt;}
.y29{bottom:868.894667pt;}
.y4d{bottom:874.852000pt;}
.y6c{bottom:883.420000pt;}
.y28{bottom:886.961333pt;}
.y4c{bottom:892.917333pt;}
.y3{bottom:896.657333pt;}
.y27{bottom:905.026667pt;}
.y6b{bottom:910.878667pt;}
.y4b{bottom:922.938667pt;}
.y26{bottom:923.092000pt;}
.y2{bottom:925.881333pt;}
.y25{bottom:941.157333pt;}
.y6a{bottom:949.829333pt;}
.y4a{bottom:952.960000pt;}
.y1{bottom:955.105333pt;}
.y24{bottom:959.222667pt;}
.y69{bottom:967.894667pt;}
.y23{bottom:977.289333pt;}
.y49{bottom:980.418667pt;}
.y68{bottom:985.960000pt;}
.y22{bottom:995.354667pt;}
.y21{bottom:1013.420000pt;}
.h7{height:40.378215pt;}
.h5{height:43.636400pt;}
.h3{height:44.250180pt;}
.h8{height:47.820800pt;}
.h6{height:51.039735pt;}
.h4{height:57.384800pt;}
.h2{height:68.769785pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:94.488000pt;}
.x2{left:108.838667pt;}
.x9{left:109.761333pt;}
.x8{left:116.348000pt;}
.xa{left:125.033333pt;}
.xe{left:130.852000pt;}
.xb{left:140.305333pt;}
.x4{left:156.038667pt;}
.xd{left:170.850667pt;}
.x1{left:256.978667pt;}
.x3{left:318.706667pt;}
.x6{left:332.360000pt;}
.x5{left:349.598667pt;}
.xc{left:393.214667pt;}
}




    .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; }
  