
    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_87f242ef40e2223d20edcd9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_96191b9a7a48d20898fb0789.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_bf495b214fcf1c8010abe568.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_cd1766416a0f42242615e988.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_a5dac161d06669eade578e1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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);}
.v2{vertical-align:-14.785200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.lsa{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.621600px;}
.ls17{letter-spacing:-0.399600px;}
.lse{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.310800px;}
.ls19{letter-spacing:-0.266400px;}
.lsc{letter-spacing:-0.222000px;}
.lsd{letter-spacing:-0.177600px;}
.ls10{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.133200px;}
.ls9{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.088800px;}
.lsb{letter-spacing:-0.044400px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003629px;}
.ls15{letter-spacing:0.044400px;}
.ls12{letter-spacing:0.088800px;}
.ls13{letter-spacing:0.266400px;}
.ls14{letter-spacing:0.310800px;}
.ls2{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.967632px;}
.ls0{letter-spacing:1.650000px;}
.ls5{letter-spacing:53.028000px;}
.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;}
}
.ws18{word-spacing:-40.194000px;}
.wsb{word-spacing:-32.400000px;}
.ws9{word-spacing:-32.292000px;}
.wsd{word-spacing:-31.536000px;}
.ws5{word-spacing:-31.428000px;}
.ws16{word-spacing:-31.374000px;}
.ws13{word-spacing:-31.158000px;}
.ws6{word-spacing:-30.888000px;}
.ws46{word-spacing:-26.196000px;}
.ws45{word-spacing:-26.018400px;}
.wsf{word-spacing:-25.929600px;}
.wse{word-spacing:-25.885200px;}
.ws14{word-spacing:-25.796400px;}
.ws12{word-spacing:-25.752000px;}
.ws11{word-spacing:-25.707600px;}
.ws4d{word-spacing:-25.663200px;}
.ws4b{word-spacing:-25.618800px;}
.ws4a{word-spacing:-25.530000px;}
.ws48{word-spacing:-25.308000px;}
.ws43{word-spacing:-24.528000px;}
.wsa{word-spacing:-23.922000px;}
.ws17{word-spacing:-23.352000px;}
.ws47{word-spacing:-19.780200px;}
.ws49{word-spacing:-19.713600px;}
.ws4c{word-spacing:-19.669200px;}
.ws3{word-spacing:-19.272000px;}
.ws1a{word-spacing:-18.652440px;}
.ws19{word-spacing:-18.474840px;}
.ws8{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.904000px;}
.ws7{word-spacing:-14.364000px;}
.ws10{word-spacing:-12.343200px;}
.ws44{word-spacing:-11.676000px;}
.ws1b{word-spacing:-4.257960px;}
.ws3a{word-spacing:-3.780000px;}
.ws32{word-spacing:-3.726000px;}
.ws24{word-spacing:-3.672000px;}
.ws21{word-spacing:-3.456000px;}
.ws38{word-spacing:-3.063600px;}
.ws3c{word-spacing:-3.019200px;}
.ws1d{word-spacing:-2.442000px;}
.ws2e{word-spacing:-2.430000px;}
.ws40{word-spacing:-2.106000px;}
.ws30{word-spacing:-1.998000px;}
.ws52{word-spacing:-1.820400px;}
.ws3d{word-spacing:-1.598400px;}
.ws22{word-spacing:-0.756000px;}
.ws2a{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.594000px;}
.ws50{word-spacing:-0.088800px;}
.ws1c{word-spacing:0.000000px;}
.ws33{word-spacing:0.044400px;}
.ws1f{word-spacing:0.108000px;}
.ws1e{word-spacing:0.162000px;}
.ws34{word-spacing:0.222000px;}
.ws42{word-spacing:0.888000px;}
.ws3e{word-spacing:1.198800px;}
.ws2f{word-spacing:1.242000px;}
.ws28{word-spacing:1.458000px;}
.ws35{word-spacing:1.512000px;}
.ws3f{word-spacing:1.687200px;}
.ws37{word-spacing:2.086800px;}
.ws2c{word-spacing:2.268000px;}
.ws41{word-spacing:2.352000px;}
.ws53{word-spacing:2.442000px;}
.ws31{word-spacing:2.538000px;}
.ws2b{word-spacing:3.132000px;}
.ws29{word-spacing:3.618000px;}
.ws4e{word-spacing:4.129200px;}
.ws4f{word-spacing:4.662000px;}
.ws23{word-spacing:4.860000px;}
.ws3b{word-spacing:5.150400px;}
.ws2d{word-spacing:5.346000px;}
.ws39{word-spacing:5.683200px;}
.ws51{word-spacing:6.171600px;}
.ws25{word-spacing:7.452000px;}
.ws27{word-spacing:7.506000px;}
.ws2{word-spacing:10.487400px;}
.ws15{word-spacing:21.810600px;}
.ws36{word-spacing:53.028000px;}
.ws1{word-spacing:58.205400px;}
.ws0{word-spacing:149.820000px;}
.ws4{word-spacing:998.698200px;}
._e{margin-left:-12.343200px;}
._d{margin-left:-8.838000px;}
._c{margin-left:-7.119000px;}
._b{margin-left:-5.796000px;}
._8{margin-left:-4.698000px;}
._0{margin-left:-3.029400px;}
._1{margin-left:-1.805100px;}
._2{width:1.346400px;}
._4{width:2.428800px;}
._7{width:3.618000px;}
._6{width:4.629600px;}
._3{width:5.817600px;}
._a{width:7.088400px;}
._9{width:8.478000px;}
._5{width:20.271600px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:25.885200px;}
.fs0{font-size:33.000000px;}
.fs7{font-size:38.478000px;}
.fs2{font-size:42.000000px;}
.fs5{font-size:44.400000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:51.207450px;}
.y6{bottom:61.107450px;}
.y5{bottom:71.007450px;}
.y4{bottom:80.907450px;}
.y3{bottom:90.807450px;}
.y2{bottom:100.707450px;}
.y1{bottom:115.103700px;}
.y4d{bottom:146.568900px;}
.y55{bottom:148.218600px;}
.y54{bottom:161.716200px;}
.y4c{bottom:163.214400px;}
.y53{bottom:178.910100px;}
.y4b{bottom:179.859900px;}
.y52{bottom:188.716200px;}
.y4a{bottom:205.520700px;}
.y51{bottom:205.910100px;}
.y49{bottom:220.217100px;}
.y48{bottom:234.913500px;}
.y47{bottom:249.609900px;}
.y2a{bottom:251.864250px;}
.y46{bottom:264.309900px;}
.y29{bottom:268.658250px;}
.y28{bottom:285.452250px;}
.y45{bottom:288.012900px;}
.y44{bottom:304.509900px;}
.y27{bottom:317.258250px;}
.y43{bottom:343.513500px;}
.y26{bottom:356.259750px;}
.y42{bottom:358.209900px;}
.y41{bottom:372.913500px;}
.y25{bottom:373.053750px;}
.y40{bottom:387.609900px;}
.y24{bottom:389.847750px;}
.y23{bottom:406.641750px;}
.y3f{bottom:411.312900px;}
.y22{bottom:423.435750px;}
.y3e{bottom:427.809900px;}
.y21{bottom:440.229750px;}
.y20{bottom:457.023750px;}
.y3d{bottom:466.820700px;}
.y1f{bottom:473.817750px;}
.y3c{bottom:481.517100px;}
.y1e{bottom:490.611750px;}
.y3b{bottom:496.213500px;}
.y1d{bottom:507.405750px;}
.y3a{bottom:510.909900px;}
.y1c{bottom:524.199750px;}
.y39{bottom:534.617400px;}
.y1b{bottom:540.993750px;}
.y38{bottom:551.114400px;}
.y1a{bottom:557.787750px;}
.y19{bottom:574.581750px;}
.y37{bottom:582.609900px;}
.y84{bottom:590.819100px;}
.y18{bottom:591.375750px;}
.yae{bottom:592.529850px;}
.y83{bottom:605.215800px;}
.yad{bottom:606.926550px;}
.y17{bottom:608.169750px;}
.y82{bottom:619.612500px;}
.yac{bottom:621.323250px;}
.y36{bottom:624.631500px;}
.y16{bottom:624.963750px;}
.y81{bottom:634.009200px;}
.yab{bottom:635.723250px;}
.yaa{bottom:635.743050px;}
.y35{bottom:639.327900px;}
.y15{bottom:641.757750px;}
.y80{bottom:648.405900px;}
.ya9{bottom:650.139750px;}
.y34{bottom:654.024300px;}
.y14{bottom:658.551750px;}
.y7f{bottom:662.802600px;}
.ya8{bottom:664.536450px;}
.y33{bottom:668.720700px;}
.y13{bottom:675.345750px;}
.y7e{bottom:677.199300px;}
.ya7{bottom:678.933150px;}
.y32{bottom:683.417100px;}
.y7d{bottom:691.596000px;}
.y12{bottom:692.139750px;}
.ya6{bottom:693.329850px;}
.y31{bottom:698.113500px;}
.y7c{bottom:705.992700px;}
.ya5{bottom:707.726550px;}
.y11{bottom:708.933750px;}
.y30{bottom:712.809900px;}
.y7b{bottom:720.389400px;}
.ya4{bottom:722.123250px;}
.y10{bottom:725.727750px;}
.y2f{bottom:727.513500px;}
.y7a{bottom:734.786100px;}
.ya3{bottom:736.523250px;}
.ya2{bottom:736.533000px;}
.y2e{bottom:742.209900px;}
.yf{bottom:742.521750px;}
.y79{bottom:749.182800px;}
.ya1{bottom:750.929700px;}
.ye{bottom:759.315750px;}
.y78{bottom:763.579500px;}
.ya0{bottom:765.326400px;}
.y2d{bottom:766.065750px;}
.yd{bottom:776.109750px;}
.y77{bottom:777.976200px;}
.y9f{bottom:779.723100px;}
.y76{bottom:792.376050px;}
.y75{bottom:792.399150px;}
.yc{bottom:792.903750px;}
.y9e{bottom:794.126550px;}
.y74{bottom:806.795850px;}
.y2c{bottom:808.064250px;}
.y9d{bottom:808.523250px;}
.y73{bottom:821.192550px;}
.y9c{bottom:822.923250px;}
.yb{bottom:824.709750px;}
.y2b{bottom:824.858250px;}
.y72{bottom:835.589250px;}
.y9b{bottom:837.333150px;}
.y71{bottom:849.985950px;}
.y9a{bottom:851.729850px;}
.y70{bottom:864.382650px;}
.y99{bottom:866.126550px;}
.y6f{bottom:878.779350px;}
.y98{bottom:880.523250px;}
.y6e{bottom:893.176050px;}
.y97{bottom:894.933150px;}
.y96{bottom:909.329850px;}
.y5c{bottom:915.045150px;}
.y6d{bottom:922.576050px;}
.y95{bottom:923.726550px;}
.y5b{bottom:929.441850px;}
.y94{bottom:938.123250px;}
.y5a{bottom:943.838550px;}
.y93{bottom:952.612500px;}
.y59{bottom:958.235250px;}
.y6c{bottom:961.579350px;}
.y92{bottom:967.009200px;}
.y5f{bottom:969.631650px;}
.y58{bottom:972.631950px;}
.y6b{bottom:975.976050px;}
.y91{bottom:981.405900px;}
.y57{bottom:987.028650px;}
.y5e{bottom:993.030450px;}
.y90{bottom:995.802600px;}
.y6a{bottom:999.379050px;}
.y56{bottom:1007.430450px;}
.y5d{bottom:1007.441550px;}
.y8f{bottom:1010.199300px;}
.y69{bottom:1015.876050px;}
.y8e{bottom:1024.596000px;}
.y8d{bottom:1038.992700px;}
.y8c{bottom:1053.389400px;}
.y68{bottom:1054.889250px;}
.y8b{bottom:1067.786100px;}
.y67{bottom:1069.285950px;}
.y8a{bottom:1082.182800px;}
.y66{bottom:1083.682650px;}
.y50{bottom:1083.915750px;}
.y89{bottom:1096.579500px;}
.y65{bottom:1098.079350px;}
.y88{bottom:1110.976200px;}
.y64{bottom:1112.476050px;}
.y4f{bottom:1119.909750px;}
.y87{bottom:1125.372900px;}
.y63{bottom:1135.879050px;}
.y86{bottom:1139.769600px;}
.y4e{bottom:1146.915750px;}
.y62{bottom:1152.376050px;}
.y85{bottom:1154.166300px;}
.y60{bottom:1190.247600px;}
.y61{bottom:1191.339600px;}
.y9{bottom:1192.253100px;}
.ya{bottom:1195.877100px;}
.y8{bottom:1206.653100px;}
.hb{height:18.845133px;}
.h1{height:24.024902px;}
.h2{height:24.057129px;}
.hd{height:30.618164px;}
.hc{height:32.324414px;}
.h8{height:32.367773px;}
.h3{height:34.945312px;}
.h4{height:34.992188px;}
.h6{height:39.313477px;}
.h7{height:39.366211px;}
.h5{height:48.049805px;}
.ha{height:49.991636px;}
.h9{height:61.154297px;}
.h0{height:1252.500000px;}
.w0{width:874.500000px;}
.x0{left:0.000000px;}
.x1{left:56.279550px;}
.x6{left:64.762500px;}
.x7{left:267.179550px;}
.x2{left:349.333800px;}
.x9{left:421.948800px;}
.x3{left:455.852550px;}
.x4{left:464.478150px;}
.x5{left:472.974600px;}
.x8{left:801.612300px;}
.xa{left:821.633850px;}
@media print{
.v2{vertical-align:-13.142400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.552533pt;}
.ls17{letter-spacing:-0.355200pt;}
.lse{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.276267pt;}
.ls19{letter-spacing:-0.236800pt;}
.lsc{letter-spacing:-0.197333pt;}
.lsd{letter-spacing:-0.157867pt;}
.ls10{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.118400pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.078933pt;}
.lsb{letter-spacing:-0.039467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003226pt;}
.ls15{letter-spacing:0.039467pt;}
.ls12{letter-spacing:0.078933pt;}
.ls13{letter-spacing:0.236800pt;}
.ls14{letter-spacing:0.276267pt;}
.ls2{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.860117pt;}
.ls0{letter-spacing:1.466667pt;}
.ls5{letter-spacing:47.136000pt;}
.ws18{word-spacing:-35.728000pt;}
.wsb{word-spacing:-28.800000pt;}
.ws9{word-spacing:-28.704000pt;}
.wsd{word-spacing:-28.032000pt;}
.ws5{word-spacing:-27.936000pt;}
.ws16{word-spacing:-27.888000pt;}
.ws13{word-spacing:-27.696000pt;}
.ws6{word-spacing:-27.456000pt;}
.ws46{word-spacing:-23.285333pt;}
.ws45{word-spacing:-23.127467pt;}
.wsf{word-spacing:-23.048533pt;}
.wse{word-spacing:-23.009067pt;}
.ws14{word-spacing:-22.930133pt;}
.ws12{word-spacing:-22.890667pt;}
.ws11{word-spacing:-22.851200pt;}
.ws4d{word-spacing:-22.811733pt;}
.ws4b{word-spacing:-22.772267pt;}
.ws4a{word-spacing:-22.693333pt;}
.ws48{word-spacing:-22.496000pt;}
.ws43{word-spacing:-21.802667pt;}
.wsa{word-spacing:-21.264000pt;}
.ws17{word-spacing:-20.757333pt;}
.ws47{word-spacing:-17.582400pt;}
.ws49{word-spacing:-17.523200pt;}
.ws4c{word-spacing:-17.483733pt;}
.ws3{word-spacing:-17.130667pt;}
.ws1a{word-spacing:-16.579947pt;}
.ws19{word-spacing:-16.422080pt;}
.ws8{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.344000pt;}
.ws20{word-spacing:-13.248000pt;}
.ws7{word-spacing:-12.768000pt;}
.ws10{word-spacing:-10.971733pt;}
.ws44{word-spacing:-10.378667pt;}
.ws1b{word-spacing:-3.784853pt;}
.ws3a{word-spacing:-3.360000pt;}
.ws32{word-spacing:-3.312000pt;}
.ws24{word-spacing:-3.264000pt;}
.ws21{word-spacing:-3.072000pt;}
.ws38{word-spacing:-2.723200pt;}
.ws3c{word-spacing:-2.683733pt;}
.ws1d{word-spacing:-2.170667pt;}
.ws2e{word-spacing:-2.160000pt;}
.ws40{word-spacing:-1.872000pt;}
.ws30{word-spacing:-1.776000pt;}
.ws52{word-spacing:-1.618133pt;}
.ws3d{word-spacing:-1.420800pt;}
.ws22{word-spacing:-0.672000pt;}
.ws2a{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.528000pt;}
.ws50{word-spacing:-0.078933pt;}
.ws1c{word-spacing:0.000000pt;}
.ws33{word-spacing:0.039467pt;}
.ws1f{word-spacing:0.096000pt;}
.ws1e{word-spacing:0.144000pt;}
.ws34{word-spacing:0.197333pt;}
.ws42{word-spacing:0.789333pt;}
.ws3e{word-spacing:1.065600pt;}
.ws2f{word-spacing:1.104000pt;}
.ws28{word-spacing:1.296000pt;}
.ws35{word-spacing:1.344000pt;}
.ws3f{word-spacing:1.499733pt;}
.ws37{word-spacing:1.854933pt;}
.ws2c{word-spacing:2.016000pt;}
.ws41{word-spacing:2.090667pt;}
.ws53{word-spacing:2.170667pt;}
.ws31{word-spacing:2.256000pt;}
.ws2b{word-spacing:2.784000pt;}
.ws29{word-spacing:3.216000pt;}
.ws4e{word-spacing:3.670400pt;}
.ws4f{word-spacing:4.144000pt;}
.ws23{word-spacing:4.320000pt;}
.ws3b{word-spacing:4.578133pt;}
.ws2d{word-spacing:4.752000pt;}
.ws39{word-spacing:5.051733pt;}
.ws51{word-spacing:5.485867pt;}
.ws25{word-spacing:6.624000pt;}
.ws27{word-spacing:6.672000pt;}
.ws2{word-spacing:9.322133pt;}
.ws15{word-spacing:19.387200pt;}
.ws36{word-spacing:47.136000pt;}
.ws1{word-spacing:51.738133pt;}
.ws0{word-spacing:133.173333pt;}
.ws4{word-spacing:887.731733pt;}
._e{margin-left:-10.971733pt;}
._d{margin-left:-7.856000pt;}
._c{margin-left:-6.328000pt;}
._b{margin-left:-5.152000pt;}
._8{margin-left:-4.176000pt;}
._0{margin-left:-2.692800pt;}
._1{margin-left:-1.604533pt;}
._2{width:1.196800pt;}
._4{width:2.158933pt;}
._7{width:3.216000pt;}
._6{width:4.115200pt;}
._3{width:5.171200pt;}
._a{width:6.300800pt;}
._9{width:7.536000pt;}
._5{width:18.019200pt;}
.fs8{font-size:23.009067pt;}
.fs0{font-size:29.333333pt;}
.fs7{font-size:34.202667pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:39.466667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:45.517733pt;}
.y6{bottom:54.317733pt;}
.y5{bottom:63.117733pt;}
.y4{bottom:71.917733pt;}
.y3{bottom:80.717733pt;}
.y2{bottom:89.517733pt;}
.y1{bottom:102.314400pt;}
.y4d{bottom:130.283467pt;}
.y55{bottom:131.749867pt;}
.y54{bottom:143.747733pt;}
.y4c{bottom:145.079467pt;}
.y53{bottom:159.031200pt;}
.y4b{bottom:159.875467pt;}
.y52{bottom:167.747733pt;}
.y4a{bottom:182.685067pt;}
.y51{bottom:183.031200pt;}
.y49{bottom:195.748533pt;}
.y48{bottom:208.812000pt;}
.y47{bottom:221.875467pt;}
.y2a{bottom:223.879333pt;}
.y46{bottom:234.942133pt;}
.y29{bottom:238.807333pt;}
.y28{bottom:253.735333pt;}
.y45{bottom:256.011467pt;}
.y44{bottom:270.675467pt;}
.y27{bottom:282.007333pt;}
.y43{bottom:305.345333pt;}
.y26{bottom:316.675333pt;}
.y42{bottom:318.408800pt;}
.y41{bottom:331.478667pt;}
.y25{bottom:331.603333pt;}
.y40{bottom:344.542133pt;}
.y24{bottom:346.531333pt;}
.y23{bottom:361.459333pt;}
.y3f{bottom:365.611467pt;}
.y22{bottom:376.387333pt;}
.y3e{bottom:380.275467pt;}
.y21{bottom:391.315333pt;}
.y20{bottom:406.243333pt;}
.y3d{bottom:414.951733pt;}
.y1f{bottom:421.171333pt;}
.y3c{bottom:428.015200pt;}
.y1e{bottom:436.099333pt;}
.y3b{bottom:441.078667pt;}
.y1d{bottom:451.027333pt;}
.y3a{bottom:454.142133pt;}
.y1c{bottom:465.955333pt;}
.y39{bottom:475.215467pt;}
.y1b{bottom:480.883333pt;}
.y38{bottom:489.879467pt;}
.y1a{bottom:495.811333pt;}
.y19{bottom:510.739333pt;}
.y37{bottom:517.875467pt;}
.y84{bottom:525.172533pt;}
.y18{bottom:525.667333pt;}
.yae{bottom:526.693200pt;}
.y83{bottom:537.969600pt;}
.yad{bottom:539.490267pt;}
.y17{bottom:540.595333pt;}
.y82{bottom:550.766667pt;}
.yac{bottom:552.287333pt;}
.y36{bottom:555.228000pt;}
.y16{bottom:555.523333pt;}
.y81{bottom:563.563733pt;}
.yab{bottom:565.087333pt;}
.yaa{bottom:565.104933pt;}
.y35{bottom:568.291467pt;}
.y15{bottom:570.451333pt;}
.y80{bottom:576.360800pt;}
.ya9{bottom:577.902000pt;}
.y34{bottom:581.354933pt;}
.y14{bottom:585.379333pt;}
.y7f{bottom:589.157867pt;}
.ya8{bottom:590.699067pt;}
.y33{bottom:594.418400pt;}
.y13{bottom:600.307333pt;}
.y7e{bottom:601.954933pt;}
.ya7{bottom:603.496133pt;}
.y32{bottom:607.481867pt;}
.y7d{bottom:614.752000pt;}
.y12{bottom:615.235333pt;}
.ya6{bottom:616.293200pt;}
.y31{bottom:620.545333pt;}
.y7c{bottom:627.549067pt;}
.ya5{bottom:629.090267pt;}
.y11{bottom:630.163333pt;}
.y30{bottom:633.608800pt;}
.y7b{bottom:640.346133pt;}
.ya4{bottom:641.887333pt;}
.y10{bottom:645.091333pt;}
.y2f{bottom:646.678667pt;}
.y7a{bottom:653.143200pt;}
.ya3{bottom:654.687333pt;}
.ya2{bottom:654.696000pt;}
.y2e{bottom:659.742133pt;}
.yf{bottom:660.019333pt;}
.y79{bottom:665.940267pt;}
.ya1{bottom:667.493067pt;}
.ye{bottom:674.947333pt;}
.y78{bottom:678.737333pt;}
.ya0{bottom:680.290133pt;}
.y2d{bottom:680.947333pt;}
.yd{bottom:689.875333pt;}
.y77{bottom:691.534400pt;}
.y9f{bottom:693.087200pt;}
.y76{bottom:704.334267pt;}
.y75{bottom:704.354800pt;}
.yc{bottom:704.803333pt;}
.y9e{bottom:705.890267pt;}
.y74{bottom:717.151867pt;}
.y2c{bottom:718.279333pt;}
.y9d{bottom:718.687333pt;}
.y73{bottom:729.948933pt;}
.y9c{bottom:731.487333pt;}
.yb{bottom:733.075333pt;}
.y2b{bottom:733.207333pt;}
.y72{bottom:742.746000pt;}
.y9b{bottom:744.296133pt;}
.y71{bottom:755.543067pt;}
.y9a{bottom:757.093200pt;}
.y70{bottom:768.340133pt;}
.y99{bottom:769.890267pt;}
.y6f{bottom:781.137200pt;}
.y98{bottom:782.687333pt;}
.y6e{bottom:793.934267pt;}
.y97{bottom:795.496133pt;}
.y96{bottom:808.293200pt;}
.y5c{bottom:813.373467pt;}
.y6d{bottom:820.067600pt;}
.y95{bottom:821.090267pt;}
.y5b{bottom:826.170533pt;}
.y94{bottom:833.887333pt;}
.y5a{bottom:838.967600pt;}
.y93{bottom:846.766667pt;}
.y59{bottom:851.764667pt;}
.y6c{bottom:854.737200pt;}
.y92{bottom:859.563733pt;}
.y5f{bottom:861.894800pt;}
.y58{bottom:864.561733pt;}
.y6b{bottom:867.534267pt;}
.y91{bottom:872.360800pt;}
.y57{bottom:877.358800pt;}
.y5e{bottom:882.693733pt;}
.y90{bottom:885.157867pt;}
.y6a{bottom:888.336933pt;}
.y56{bottom:895.493733pt;}
.y5d{bottom:895.503600pt;}
.y8f{bottom:897.954933pt;}
.y69{bottom:903.000933pt;}
.y8e{bottom:910.752000pt;}
.y8d{bottom:923.549067pt;}
.y8c{bottom:936.346133pt;}
.y68{bottom:937.679333pt;}
.y8b{bottom:949.143200pt;}
.y67{bottom:950.476400pt;}
.y8a{bottom:961.940267pt;}
.y66{bottom:963.273467pt;}
.y50{bottom:963.480667pt;}
.y89{bottom:974.737333pt;}
.y65{bottom:976.070533pt;}
.y88{bottom:987.534400pt;}
.y64{bottom:988.867600pt;}
.y4f{bottom:995.475333pt;}
.y87{bottom:1000.331467pt;}
.y63{bottom:1009.670267pt;}
.y86{bottom:1013.128533pt;}
.y4e{bottom:1019.480667pt;}
.y62{bottom:1024.334267pt;}
.y85{bottom:1025.925600pt;}
.y60{bottom:1057.997867pt;}
.y61{bottom:1058.968533pt;}
.y9{bottom:1059.780533pt;}
.ya{bottom:1063.001867pt;}
.y8{bottom:1072.580533pt;}
.hb{height:16.751230pt;}
.h1{height:21.355469pt;}
.h2{height:21.384115pt;}
.hd{height:27.216146pt;}
.hc{height:28.732813pt;}
.h8{height:28.771354pt;}
.h3{height:31.062500pt;}
.h4{height:31.104167pt;}
.h6{height:34.945312pt;}
.h7{height:34.992188pt;}
.h5{height:42.710938pt;}
.ha{height:44.437010pt;}
.h9{height:54.359375pt;}
.h0{height:1113.333333pt;}
.w0{width:777.333333pt;}
.x0{left:0.000000pt;}
.x1{left:50.026267pt;}
.x6{left:57.566667pt;}
.x7{left:237.492933pt;}
.x2{left:310.518933pt;}
.x9{left:375.065600pt;}
.x3{left:405.202267pt;}
.x4{left:412.869467pt;}
.x5{left:420.421867pt;}
.x8{left:712.544267pt;}
.xa{left:730.341200pt;}
}




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