
    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_31016e6f28063900f377c74b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_06457b24a0e28c5c458dbd5a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1c7b4d90ad4973b3183f44a6.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_a33b15770e3c623f44f03f1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897091;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_e916da3d42c0aa93139eff1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_6b742f4d81071c3c0b17dcfe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_c95d10e1937dd60b11732c66.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.656000;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_367c76da490828b769a90b8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675000;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_606c393d88cff26315fe585b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705000;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_ca1832d999dea6746b618dde.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.222000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.718000px;}
.v7{vertical-align:26.028000px;}
.v6{vertical-align:29.622000px;}
.v4{vertical-align:38.442000px;}
.v2{vertical-align:48.528000px;}
.v5{vertical-align:146.838000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000472px;}
.ls1b{letter-spacing:0.013419px;}
.ls18{letter-spacing:2.984915px;}
.lsc{letter-spacing:2.985072px;}
.ls14{letter-spacing:2.990915px;}
.ls17{letter-spacing:4.205226px;}
.ls13{letter-spacing:4.211226px;}
.ls6{letter-spacing:4.232141px;}
.lsd{letter-spacing:6.115301px;}
.ls12{letter-spacing:8.033894px;}
.ls1a{letter-spacing:15.924326px;}
.ls19{letter-spacing:18.926915px;}
.ls9{letter-spacing:19.131633px;}
.ls7{letter-spacing:19.941274px;}
.lsb{letter-spacing:22.910915px;}
.lsf{letter-spacing:27.080014px;}
.ls2{letter-spacing:27.095518px;}
.ls8{letter-spacing:28.898014px;}
.ls1{letter-spacing:35.148288px;}
.lsa{letter-spacing:43.828145px;}
.ls11{letter-spacing:43.834145px;}
.ls4{letter-spacing:47.318915px;}
.ls10{letter-spacing:59.775633px;}
.ls15{letter-spacing:143.456915px;}
.ls1c{letter-spacing:388.209254px;}
.ls16{letter-spacing:660.429158px;}
.lse{letter-spacing:1049.212262px;}
.ls5{letter-spacing:1073.672602px;}
.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;}
}
.ws17{word-spacing:-45.664082px;}
.ws1{word-spacing:-32.278875px;}
.ws1e{word-spacing:-29.524562px;}
.ws27{word-spacing:-19.510886px;}
.ws2b{word-spacing:-3.012710px;}
.wsd{word-spacing:-2.582323px;}
.ws1f{word-spacing:-2.008474px;}
.ws1a{word-spacing:-1.865011px;}
.ws6{word-spacing:-1.147699px;}
.ws3c{word-spacing:-0.573850px;}
.ws12{word-spacing:-0.286925px;}
.ws2d{word-spacing:-0.071731px;}
.wsc{word-spacing:0.000000px;}
.ws22{word-spacing:0.071731px;}
.ws13{word-spacing:0.573850px;}
.ws7{word-spacing:1.219430px;}
.ws33{word-spacing:1.291155px;}
.ws1d{word-spacing:1.362893px;}
.ws3b{word-spacing:1.865011px;}
.ws4{word-spacing:2.259533px;}
.ws41{word-spacing:2.367130px;}
.ws1b{word-spacing:2.510592px;}
.wsa{word-spacing:2.725786px;}
.ws29{word-spacing:2.869248px;}
.ws39{word-spacing:3.084442px;}
.ws28{word-spacing:3.227904px;}
.ws38{word-spacing:3.550694px;}
.ws9{word-spacing:3.873485px;}
.wsf{word-spacing:3.945216px;}
.ws24{word-spacing:4.375603px;}
.ws2{word-spacing:4.483200px;}
.ws14{word-spacing:5.308109px;}
.ws3d{word-spacing:5.595034px;}
.ws25{word-spacing:5.666765px;}
.wsb{word-spacing:6.025421px;}
.ws19{word-spacing:6.064552px;}
.ws37{word-spacing:6.097152px;}
.ws34{word-spacing:6.384077px;}
.ws5{word-spacing:6.455775px;}
.ws26{word-spacing:6.742733px;}
.ws2c{word-spacing:7.173120px;}
.ws8{word-spacing:7.746970px;}
.ws20{word-spacing:8.177357px;}
.ws3f{word-spacing:8.249088px;}
.ws16{word-spacing:8.320819px;}
.ws2a{word-spacing:8.464282px;}
.ws42{word-spacing:8.822938px;}
.ws40{word-spacing:9.038131px;}
.ws2e{word-spacing:9.109862px;}
.ws31{word-spacing:9.611981px;}
.ws32{word-spacing:9.755443px;}
.ws15{word-spacing:10.042368px;}
.ws11{word-spacing:10.329293px;}
.ws3a{word-spacing:13.055078px;}
.ws36{word-spacing:13.270272px;}
.ws3e{word-spacing:15.135283px;}
.ws35{word-spacing:15.242880px;}
.wse{word-spacing:19.080499px;}
.ws1c{word-spacing:25.034189px;}
.ws2f{word-spacing:25.464576px;}
.ws23{word-spacing:25.654552px;}
.ws18{word-spacing:25.990552px;}
.ws30{word-spacing:30.109735px;}
.ws0{word-spacing:37.316475px;}
.ws3{word-spacing:42.572467px;}
.ws10{word-spacing:83.925075px;}
.ws21{word-spacing:1040.274555px;}
._0{margin-left:-9.670050px;}
._f{margin-left:-6.671002px;}
._1f{margin-left:-5.666765px;}
._7{margin-left:-4.447334px;}
._1{margin-left:-3.347325px;}
._5{margin-left:-2.295398px;}
._1b{margin-left:-1.219430px;}
._2c{width:1.004237px;}
._4{width:2.295398px;}
._22{width:3.945216px;}
._29{width:6.933885px;}
._26{width:8.015059px;}
._28{width:15.493939px;}
._1e{width:18.578381px;}
._18{width:20.275888px;}
._23{width:22.164941px;}
._11{width:24.675533px;}
._1c{width:26.612275px;}
._1a{width:28.309783px;}
._21{width:29.338061px;}
._19{width:30.342298px;}
._20{width:31.633459px;}
._27{width:32.924621px;}
._3{width:35.865600px;}
._1d{width:37.730611px;}
._2d{width:39.667354px;}
._2f{width:41.101978px;}
._25{width:44.114688px;}
._2e{width:46.625280px;}
._2b{width:50.068378px;}
._17{width:51.646200px;}
._2{width:64.988467px;}
._2a{width:99.409257px;}
._16{width:116.203950px;}
._12{width:549.389261px;}
._13{width:855.824947px;}
._e{width:896.496538px;}
._d{width:930.353664px;}
._14{width:1056.098458px;}
._24{width:1097.128704px;}
._a{width:1106.884147px;}
._10{width:1225.097165px;}
._6{width:1321.862554px;}
._c{width:1368.344371px;}
._b{width:1437.851904px;}
._9{width:1715.953766px;}
._8{width:2275.241933px;}
._15{width:2276.246170px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:63.168000px;}
.y17{bottom:108.000000px;}
.y16{bottom:129.669000px;}
.y15{bottom:151.338000px;}
.y67{bottom:164.587500px;}
.y14{bottom:173.005500px;}
.y83{bottom:173.007000px;}
.y66{bottom:186.256500px;}
.y13{bottom:194.674500px;}
.y4d{bottom:196.146000px;}
.y12{bottom:216.343500px;}
.y4c{bottom:217.815000px;}
.y65{bottom:218.236500px;}
.y32{bottom:231.756000px;}
.y82{bottom:238.012500px;}
.y64{bottom:253.305000px;}
.y31{bottom:253.425000px;}
.y4b{bottom:254.427000px;}
.y11{bottom:255.771000px;}
.y81{bottom:259.681500px;}
.y4a{bottom:276.096000px;}
.y63{bottom:288.372000px;}
.y30{bottom:290.038500px;}
.y80{bottom:299.109000px;}
.y2f{bottom:311.707500px;}
.y49{bottom:312.709500px;}
.y10{bottom:315.037500px;}
.y62{bottom:323.440500px;}
.y2e{bottom:348.319500px;}
.y48{bottom:349.321500px;}
.yf{bottom:354.265500px;}
.y61{bottom:355.420500px;}
.y7f{bottom:358.360500px;}
.y7e{bottom:380.029500px;}
.y2d{bottom:380.200500px;}
.y47{bottom:390.417000px;}
.y2c{bottom:392.500500px;}
.ye{bottom:393.493500px;}
.y60{bottom:394.848000px;}
.y7d{bottom:401.697000px;}
.y46{bottom:412.086000px;}
.y5f{bottom:427.725000px;}
.yd{bottom:432.721500px;}
.y45{bottom:433.755000px;}
.y7c{bottom:434.545500px;}
.y2b{bottom:439.800000px;}
.y7b{bottom:467.392500px;}
.yc{bottom:471.949500px;}
.y44{bottom:474.850500px;}
.y2a{bottom:479.227500px;}
.y5e{bottom:486.828000px;}
.y7a{bottom:502.749000px;}
.y5d{bottom:508.495500px;}
.yb{bottom:511.177500px;}
.y43{bottom:514.278000px;}
.y79{bottom:538.107000px;}
.y29{bottom:539.128500px;}
.y5c{bottom:543.415500px;}
.ya{bottom:550.404000px;}
.y28{bottom:560.797500px;}
.y5b{bottom:565.083000px;}
.y78{bottom:573.465000px;}
.y42{bottom:574.179000px;}
.y27{bottom:582.466500px;}
.y9{bottom:589.632000px;}
.y41{bottom:595.848000px;}
.y5a{bottom:600.151500px;}
.y77{bottom:606.312000px;}
.y40{bottom:617.515500px;}
.y26{bottom:623.562000px;}
.y8{bottom:628.860000px;}
.y59{bottom:635.220000px;}
.y76{bottom:645.738000px;}
.y3f{bottom:652.537500px;}
.y25{bottom:662.989500px;}
.y3e{bottom:664.839000px;}
.y7{bottom:668.088000px;}
.y58{bottom:670.138500px;}
.y57{bottom:691.807500px;}
.y75{bottom:704.991000px;}
.y6{bottom:707.316000px;}
.y3d{bottom:714.096000px;}
.y24{bottom:722.889000px;}
.y74{bottom:726.658500px;}
.y56{bottom:731.235000px;}
.y23{bottom:744.558000px;}
.y5{bottom:746.542500px;}
.y73{bottom:748.327500px;}
.y3c{bottom:753.697500px;}
.y22{bottom:766.227000px;}
.y72{bottom:784.402500px;}
.y4{bottom:785.770500px;}
.y21{bottom:787.896000px;}
.y55{bottom:790.338000px;}
.y3b{bottom:793.299000px;}
.y71{bottom:806.071500px;}
.y54{bottom:812.007000px;}
.y20{bottom:824.508000px;}
.y3{bottom:825.198000px;}
.y70{bottom:827.740500px;}
.y3a{bottom:832.726500px;}
.y53{bottom:841.072500px;}
.y1f{bottom:846.177000px;}
.y6f{bottom:863.098500px;}
.y52{bottom:875.268000px;}
.y1e{bottom:882.789000px;}
.y6e{bottom:884.766000px;}
.y39{bottom:892.627500px;}
.y51{bottom:909.465000px;}
.y38{bottom:914.296500px;}
.y1d{bottom:919.402500px;}
.y6d{bottom:920.124000px;}
.y37{bottom:935.964000px;}
.y6c{bottom:941.793000px;}
.y50{bottom:944.383500px;}
.y2{bottom:952.230000px;}
.y1c{bottom:958.830000px;}
.y36{bottom:962.767500px;}
.y6b{bottom:963.462000px;}
.y4f{bottom:966.052500px;}
.y35{bottom:975.069000px;}
.y4e{bottom:987.721500px;}
.y1{bottom:989.589000px;}
.y6a{bottom:999.537000px;}
.y34{bottom:1000.971000px;}
.y1b{bottom:1018.729500px;}
.y69{bottom:1021.206000px;}
.y33{bottom:1022.640000px;}
.y1a{bottom:1040.398500px;}
.y68{bottom:1060.632000px;}
.y19{bottom:1062.067500px;}
.h3{height:53.798400px;}
.ha{height:61.894905px;}
.h8{height:61.900905px;}
.h2{height:77.469300px;}
.h1{height:87.650325px;}
.h6{height:102.320400px;}
.h4{height:102.326400px;}
.h5{height:102.998400px;}
.h9{height:106.834905px;}
.h7{height:146.838000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.x2{left:118.504500px;}
.x4{left:134.338500px;}
.x6{left:151.897500px;}
.x10{left:166.102500px;}
.x1{left:189.318000px;}
.xf{left:227.494500px;}
.xe{left:295.542000px;}
.xb{left:392.731500px;}
.x7{left:398.856000px;}
.xc{left:401.911500px;}
.x9{left:404.712000px;}
.xa{left:440.515500px;}
.xd{left:447.879000px;}
.x5{left:454.611000px;}
.x8{left:462.822000px;}
@media print{
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.416000pt;}
.v7{vertical-align:23.136000pt;}
.v6{vertical-align:26.330667pt;}
.v4{vertical-align:34.170667pt;}
.v2{vertical-align:43.136000pt;}
.v5{vertical-align:130.522667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000420pt;}
.ls1b{letter-spacing:0.011928pt;}
.ls18{letter-spacing:2.653258pt;}
.lsc{letter-spacing:2.653398pt;}
.ls14{letter-spacing:2.658591pt;}
.ls17{letter-spacing:3.737979pt;}
.ls13{letter-spacing:3.743312pt;}
.ls6{letter-spacing:3.761903pt;}
.lsd{letter-spacing:5.435823pt;}
.ls12{letter-spacing:7.141239pt;}
.ls1a{letter-spacing:14.154957pt;}
.ls19{letter-spacing:16.823925pt;}
.ls9{letter-spacing:17.005896pt;}
.ls7{letter-spacing:17.725577pt;}
.lsb{letter-spacing:20.365258pt;}
.lsf{letter-spacing:24.071124pt;}
.ls2{letter-spacing:24.084905pt;}
.ls8{letter-spacing:25.687124pt;}
.ls1{letter-spacing:31.242923pt;}
.lsa{letter-spacing:38.958351pt;}
.ls11{letter-spacing:38.963685pt;}
.ls4{letter-spacing:42.061258pt;}
.ls10{letter-spacing:53.133896pt;}
.ls15{letter-spacing:127.517258pt;}
.ls1c{letter-spacing:345.074893pt;}
.ls16{letter-spacing:587.048141pt;}
.lse{letter-spacing:932.633122pt;}
.ls5{letter-spacing:954.375646pt;}
.ws17{word-spacing:-40.590295pt;}
.ws1{word-spacing:-28.692333pt;}
.ws1e{word-spacing:-26.244055pt;}
.ws27{word-spacing:-17.343010pt;}
.ws2b{word-spacing:-2.677965pt;}
.wsd{word-spacing:-2.295398pt;}
.ws1f{word-spacing:-1.785310pt;}
.ws1a{word-spacing:-1.657788pt;}
.ws6{word-spacing:-1.020177pt;}
.ws3c{word-spacing:-0.510089pt;}
.ws12{word-spacing:-0.255044pt;}
.ws2d{word-spacing:-0.063761pt;}
.wsc{word-spacing:0.000000pt;}
.ws22{word-spacing:0.063761pt;}
.ws13{word-spacing:0.510089pt;}
.ws7{word-spacing:1.083938pt;}
.ws33{word-spacing:1.147693pt;}
.ws1d{word-spacing:1.211460pt;}
.ws3b{word-spacing:1.657788pt;}
.ws4{word-spacing:2.008474pt;}
.ws41{word-spacing:2.104115pt;}
.ws1b{word-spacing:2.231637pt;}
.wsa{word-spacing:2.422921pt;}
.ws29{word-spacing:2.550443pt;}
.ws39{word-spacing:2.741726pt;}
.ws28{word-spacing:2.869248pt;}
.ws38{word-spacing:3.156173pt;}
.ws9{word-spacing:3.443098pt;}
.wsf{word-spacing:3.506859pt;}
.ws24{word-spacing:3.889425pt;}
.ws2{word-spacing:3.985067pt;}
.ws14{word-spacing:4.718319pt;}
.ws3d{word-spacing:4.973363pt;}
.ws25{word-spacing:5.037124pt;}
.wsb{word-spacing:5.355930pt;}
.ws19{word-spacing:5.390713pt;}
.ws37{word-spacing:5.419691pt;}
.ws34{word-spacing:5.674735pt;}
.ws5{word-spacing:5.738467pt;}
.ws26{word-spacing:5.993540pt;}
.ws2c{word-spacing:6.376107pt;}
.ws8{word-spacing:6.886195pt;}
.ws20{word-spacing:7.268762pt;}
.ws3f{word-spacing:7.332523pt;}
.ws16{word-spacing:7.396284pt;}
.ws2a{word-spacing:7.523806pt;}
.ws42{word-spacing:7.842611pt;}
.ws40{word-spacing:8.033894pt;}
.ws2e{word-spacing:8.097655pt;}
.ws31{word-spacing:8.543983pt;}
.ws32{word-spacing:8.671505pt;}
.ws15{word-spacing:8.926549pt;}
.ws11{word-spacing:9.181594pt;}
.ws3a{word-spacing:11.604514pt;}
.ws36{word-spacing:11.795797pt;}
.ws3e{word-spacing:13.453585pt;}
.ws35{word-spacing:13.549227pt;}
.wse{word-spacing:16.960444pt;}
.ws1c{word-spacing:22.252612pt;}
.ws2f{word-spacing:22.635179pt;}
.ws23{word-spacing:22.804047pt;}
.ws18{word-spacing:23.102713pt;}
.ws30{word-spacing:26.764209pt;}
.ws0{word-spacing:33.170200pt;}
.ws3{word-spacing:37.842193pt;}
.ws10{word-spacing:74.600067pt;}
.ws21{word-spacing:924.688493pt;}
._0{margin-left:-8.595600pt;}
._f{margin-left:-5.929779pt;}
._1f{margin-left:-5.037124pt;}
._7{margin-left:-3.953186pt;}
._1{margin-left:-2.975400pt;}
._5{margin-left:-2.040354pt;}
._1b{margin-left:-1.083938pt;}
._2c{width:0.892655pt;}
._4{width:2.040354pt;}
._22{width:3.506859pt;}
._29{width:6.163453pt;}
._26{width:7.124497pt;}
._28{width:13.772390pt;}
._1e{width:16.514116pt;}
._18{width:18.023012pt;}
._23{width:19.702170pt;}
._11{width:21.933807pt;}
._1c{width:23.655356pt;}
._1a{width:25.164251pt;}
._21{width:26.078276pt;}
._19{width:26.970931pt;}
._20{width:28.118630pt;}
._27{width:29.266330pt;}
._3{width:31.880533pt;}
._1d{width:33.538321pt;}
._2d{width:35.259870pt;}
._2f{width:36.535091pt;}
._25{width:39.213056pt;}
._2e{width:41.444693pt;}
._2b{width:44.505225pt;}
._17{width:45.907733pt;}
._2{width:57.767526pt;}
._2a{width:88.363784pt;}
._16{width:103.292400pt;}
._12{width:488.346010pt;}
._13{width:760.733286pt;}
._e{width:796.885811pt;}
._d{width:826.981035pt;}
._14{width:938.754185pt;}
._24{width:975.225515pt;}
._a{width:983.897020pt;}
._10{width:1088.975258pt;}
._6{width:1174.988937pt;}
._c{width:1216.306108pt;}
._b{width:1278.090581pt;}
._9{width:1525.292237pt;}
._8{width:2022.437274pt;}
._15{width:2023.329929pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:56.149333pt;}
.y17{bottom:96.000000pt;}
.y16{bottom:115.261333pt;}
.y15{bottom:134.522667pt;}
.y67{bottom:146.300000pt;}
.y14{bottom:153.782667pt;}
.y83{bottom:153.784000pt;}
.y66{bottom:165.561333pt;}
.y13{bottom:173.044000pt;}
.y4d{bottom:174.352000pt;}
.y12{bottom:192.305333pt;}
.y4c{bottom:193.613333pt;}
.y65{bottom:193.988000pt;}
.y32{bottom:206.005333pt;}
.y82{bottom:211.566667pt;}
.y64{bottom:225.160000pt;}
.y31{bottom:225.266667pt;}
.y4b{bottom:226.157333pt;}
.y11{bottom:227.352000pt;}
.y81{bottom:230.828000pt;}
.y4a{bottom:245.418667pt;}
.y63{bottom:256.330667pt;}
.y30{bottom:257.812000pt;}
.y80{bottom:265.874667pt;}
.y2f{bottom:277.073333pt;}
.y49{bottom:277.964000pt;}
.y10{bottom:280.033333pt;}
.y62{bottom:287.502667pt;}
.y2e{bottom:309.617333pt;}
.y48{bottom:310.508000pt;}
.yf{bottom:314.902667pt;}
.y61{bottom:315.929333pt;}
.y7f{bottom:318.542667pt;}
.y7e{bottom:337.804000pt;}
.y2d{bottom:337.956000pt;}
.y47{bottom:347.037333pt;}
.y2c{bottom:348.889333pt;}
.ye{bottom:349.772000pt;}
.y60{bottom:350.976000pt;}
.y7d{bottom:357.064000pt;}
.y46{bottom:366.298667pt;}
.y5f{bottom:380.200000pt;}
.yd{bottom:384.641333pt;}
.y45{bottom:385.560000pt;}
.y7c{bottom:386.262667pt;}
.y2b{bottom:390.933333pt;}
.y7b{bottom:415.460000pt;}
.yc{bottom:419.510667pt;}
.y44{bottom:422.089333pt;}
.y2a{bottom:425.980000pt;}
.y5e{bottom:432.736000pt;}
.y7a{bottom:446.888000pt;}
.y5d{bottom:451.996000pt;}
.yb{bottom:454.380000pt;}
.y43{bottom:457.136000pt;}
.y79{bottom:478.317333pt;}
.y29{bottom:479.225333pt;}
.y5c{bottom:483.036000pt;}
.ya{bottom:489.248000pt;}
.y28{bottom:498.486667pt;}
.y5b{bottom:502.296000pt;}
.y78{bottom:509.746667pt;}
.y42{bottom:510.381333pt;}
.y27{bottom:517.748000pt;}
.y9{bottom:524.117333pt;}
.y41{bottom:529.642667pt;}
.y5a{bottom:533.468000pt;}
.y77{bottom:538.944000pt;}
.y40{bottom:548.902667pt;}
.y26{bottom:554.277333pt;}
.y8{bottom:558.986667pt;}
.y59{bottom:564.640000pt;}
.y76{bottom:573.989333pt;}
.y3f{bottom:580.033333pt;}
.y25{bottom:589.324000pt;}
.y3e{bottom:590.968000pt;}
.y7{bottom:593.856000pt;}
.y58{bottom:595.678667pt;}
.y57{bottom:614.940000pt;}
.y75{bottom:626.658667pt;}
.y6{bottom:628.725333pt;}
.y3d{bottom:634.752000pt;}
.y24{bottom:642.568000pt;}
.y74{bottom:645.918667pt;}
.y56{bottom:649.986667pt;}
.y23{bottom:661.829333pt;}
.y5{bottom:663.593333pt;}
.y73{bottom:665.180000pt;}
.y3c{bottom:669.953333pt;}
.y22{bottom:681.090667pt;}
.y72{bottom:697.246667pt;}
.y4{bottom:698.462667pt;}
.y21{bottom:700.352000pt;}
.y55{bottom:702.522667pt;}
.y3b{bottom:705.154667pt;}
.y71{bottom:716.508000pt;}
.y54{bottom:721.784000pt;}
.y20{bottom:732.896000pt;}
.y3{bottom:733.509333pt;}
.y70{bottom:735.769333pt;}
.y3a{bottom:740.201333pt;}
.y53{bottom:747.620000pt;}
.y1f{bottom:752.157333pt;}
.y6f{bottom:767.198667pt;}
.y52{bottom:778.016000pt;}
.y1e{bottom:784.701333pt;}
.y6e{bottom:786.458667pt;}
.y39{bottom:793.446667pt;}
.y51{bottom:808.413333pt;}
.y38{bottom:812.708000pt;}
.y1d{bottom:817.246667pt;}
.y6d{bottom:817.888000pt;}
.y37{bottom:831.968000pt;}
.y6c{bottom:837.149333pt;}
.y50{bottom:839.452000pt;}
.y2{bottom:846.426667pt;}
.y1c{bottom:852.293333pt;}
.y36{bottom:855.793333pt;}
.y6b{bottom:856.410667pt;}
.y4f{bottom:858.713333pt;}
.y35{bottom:866.728000pt;}
.y4e{bottom:877.974667pt;}
.y1{bottom:879.634667pt;}
.y6a{bottom:888.477333pt;}
.y34{bottom:889.752000pt;}
.y1b{bottom:905.537333pt;}
.y69{bottom:907.738667pt;}
.y33{bottom:909.013333pt;}
.y1a{bottom:924.798667pt;}
.y68{bottom:942.784000pt;}
.y19{bottom:944.060000pt;}
.h3{height:47.820800pt;}
.ha{height:55.017693pt;}
.h8{height:55.023027pt;}
.h2{height:68.861600pt;}
.h1{height:77.911400pt;}
.h6{height:90.951467pt;}
.h4{height:90.956800pt;}
.h5{height:91.554133pt;}
.h9{height:94.964360pt;}
.h7{height:130.522667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.x2{left:105.337333pt;}
.x4{left:119.412000pt;}
.x6{left:135.020000pt;}
.x10{left:147.646667pt;}
.x1{left:168.282667pt;}
.xf{left:202.217333pt;}
.xe{left:262.704000pt;}
.xb{left:349.094667pt;}
.x7{left:354.538667pt;}
.xc{left:357.254667pt;}
.x9{left:359.744000pt;}
.xa{left:391.569333pt;}
.xd{left:398.114667pt;}
.x5{left:404.098667pt;}
.x8{left:411.397333pt;}
}




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