
    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_ff0451bee38de71743ca8de5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_3dc4bff27cf5578f1e8bae9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_2ac35205f314fe22becde9d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245213,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246118,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m8{transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,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);}
.me{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254094,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.522526px;}
.ls19{letter-spacing:-0.313515px;}
.lsb{letter-spacing:-0.245894px;}
.ls1c{letter-spacing:-0.227452px;}
.ls21{letter-spacing:-0.209010px;}
.ls1e{letter-spacing:-0.178273px;}
.ls5{letter-spacing:-0.153684px;}
.ls1d{letter-spacing:-0.135242px;}
.ls8{letter-spacing:-0.104505px;}
.ls18{letter-spacing:-0.079916px;}
.lsc{letter-spacing:-0.048579px;}
.ls2b{letter-spacing:-0.043032px;}
.ls22{letter-spacing:-0.036884px;}
.ls31{letter-spacing:-0.032386px;}
.ls15{letter-spacing:-0.030737px;}
.ls13{letter-spacing:-0.028727px;}
.ls16{letter-spacing:-0.024589px;}
.lsd{letter-spacing:-0.023939px;}
.ls7{letter-spacing:-0.018442px;}
.ls26{letter-spacing:-0.016443px;}
.ls17{letter-spacing:-0.016193px;}
.lsa{letter-spacing:-0.012295px;}
.ls9{letter-spacing:-0.006147px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006147px;}
.ls2{letter-spacing:0.012295px;}
.ls4{letter-spacing:0.014364px;}
.ls3{letter-spacing:0.018442px;}
.ls0{letter-spacing:0.019152px;}
.ls1f{letter-spacing:0.024589px;}
.ls12{letter-spacing:0.030737px;}
.lse{letter-spacing:0.036884px;}
.ls23{letter-spacing:0.043032px;}
.ls25{letter-spacing:0.055326px;}
.ls1a{letter-spacing:0.061474px;}
.ls2a{letter-spacing:0.086063px;}
.ls14{letter-spacing:0.104505px;}
.ls29{letter-spacing:0.110652px;}
.ls2e{letter-spacing:0.116800px;}
.ls2d{letter-spacing:0.239747px;}
.ls28{letter-spacing:0.307368px;}
.ls24{letter-spacing:0.368842px;}
.lsf{letter-spacing:0.418020px;}
.ls1b{letter-spacing:0.454905px;}
.ls11{letter-spacing:0.676210px;}
.ls2f{letter-spacing:0.743831px;}
.ls27{letter-spacing:0.922104px;}
.ls2c{letter-spacing:1.075788px;}
.ls30{letter-spacing:1.579872px;}
.ls10{letter-spacing:2.889259px;}
.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;}
}
.ws29{word-spacing:-14.753664px;}
.ws17{word-spacing:-13.831560px;}
.wse{word-spacing:-13.800823px;}
.ws0{word-spacing:-9.575760px;}
.ws23{word-spacing:-3.596206px;}
.wsa{word-spacing:-2.151576px;}
.ws24{word-spacing:-2.126987px;}
.ws1c{word-spacing:-2.108544px;}
.ws21{word-spacing:-2.096250px;}
.ws1d{word-spacing:-2.090102px;}
.ws1b{word-spacing:-2.083955px;}
.ws1e{word-spacing:-2.077808px;}
.ws1a{word-spacing:-2.071660px;}
.ws2a{word-spacing:-1.321682px;}
.ws2b{word-spacing:-0.965136px;}
.ws19{word-spacing:-0.879072px;}
.ws20{word-spacing:-0.866778px;}
.ws37{word-spacing:-0.737683px;}
.ws1f{word-spacing:-0.485641px;}
.ws11{word-spacing:-0.418020px;}
.ws2d{word-spacing:-0.307368px;}
.ws2e{word-spacing:-0.110652px;}
.ws12{word-spacing:-0.104505px;}
.ws2f{word-spacing:-0.086063px;}
.ws28{word-spacing:-0.055326px;}
.ws26{word-spacing:-0.043032px;}
.ws10{word-spacing:-0.036884px;}
.ws16{word-spacing:-0.030737px;}
.ws22{word-spacing:-0.024589px;}
.ws2{word-spacing:-0.019152px;}
.ws8{word-spacing:-0.018442px;}
.wsd{word-spacing:-0.014364px;}
.ws7{word-spacing:-0.012295px;}
.ws3{word-spacing:-0.006147px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:0.006147px;}
.ws9{word-spacing:0.012295px;}
.ws18{word-spacing:0.016193px;}
.ws2c{word-spacing:0.016443px;}
.ws4{word-spacing:0.018442px;}
.wsc{word-spacing:0.023939px;}
.ws15{word-spacing:0.024589px;}
.wsf{word-spacing:0.028727px;}
.ws27{word-spacing:0.030737px;}
.ws30{word-spacing:0.032386px;}
.ws25{word-spacing:0.036884px;}
.wsb{word-spacing:0.048579px;}
.ws5{word-spacing:0.104505px;}
.ws33{word-spacing:1.844208px;}
.ws32{word-spacing:2.028629px;}
.ws31{word-spacing:2.034776px;}
.ws34{word-spacing:2.077808px;}
.ws14{word-spacing:4.979362px;}
.ws35{word-spacing:5.649424px;}
.ws36{word-spacing:12.067268px;}
.ws13{word-spacing:21.761654px;}
._6{margin-left:-10.013729px;}
._5{margin-left:-3.381048px;}
._3{margin-left:-2.114692px;}
._1{margin-left:-1.015031px;}
._2{width:1.229472px;}
._0{width:1844.813255px;}
._4{width:2334.369197px;}
.fc2{color:rgb(233,50,43);}
.fc1{color:rgb(233,50,43);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.878800px;}
.fs0{font-size:61.473600px;}
.fs2{font-size:161.931000px;}
.fs3{font-size:164.429046px;}
.y0{bottom:0.000000px;}
.y2{bottom:48.271200px;}
.y15{bottom:169.720448px;}
.y14{bottom:210.202350px;}
.y6a{bottom:230.455667px;}
.y13{bottom:250.684500px;}
.y29{bottom:250.690899px;}
.y63{bottom:270.922201px;}
.y3a{bottom:270.925561px;}
.y50{bottom:270.928943px;}
.y69{bottom:270.937569px;}
.y28{bottom:291.172802px;}
.y12{bottom:291.173703px;}
.y62{bottom:311.405640px;}
.y39{bottom:311.409000px;}
.y4f{bottom:311.410845px;}
.y68{bottom:311.419472px;}
.y27{bottom:331.654704px;}
.y11{bottom:331.655605px;}
.y61{bottom:351.889079px;}
.y4e{bottom:351.892748px;}
.y67{bottom:351.901374px;}
.y26{bottom:372.136607px;}
.y10{bottom:372.137508px;}
.y60{bottom:392.372519px;}
.y38{bottom:392.374650px;}
.y59{bottom:392.381740px;}
.y66{bottom:392.383277px;}
.y77{bottom:392.384813px;}
.y25{bottom:412.620046px;}
.yf{bottom:412.620947px;}
.y37{bottom:432.855207px;}
.y5f{bottom:432.855958px;}
.y1{bottom:432.856800px;}
.y58{bottom:432.863642px;}
.y65{bottom:432.865179px;}
.y76{bottom:432.866716px;}
.y24{bottom:453.101949px;}
.ye{bottom:453.102849px;}
.y36{bottom:473.338646px;}
.y4d{bottom:473.338950px;}
.y43{bottom:473.339258px;}
.y5e{bottom:473.339397px;}
.y64{bottom:473.347081px;}
.y75{bottom:473.348618px;}
.y23{bottom:493.585388px;}
.yd{bottom:493.586289px;}
.y35{bottom:513.822086px;}
.y4c{bottom:513.822450px;}
.y42{bottom:513.822698px;}
.y5d{bottom:513.822837px;}
.y57{bottom:513.828984px;}
.y74{bottom:513.830521px;}
.y7f{bottom:534.063497px;}
.y22{bottom:534.067290px;}
.yc{bottom:534.068191px;}
.y34{bottom:554.303988px;}
.y41{bottom:554.304600px;}
.y5c{bottom:554.306276px;}
.y4b{bottom:554.310886px;}
.y73{bottom:554.312423px;}
.y21{bottom:574.549193px;}
.yb{bottom:574.550094px;}
.y40{bottom:594.788100px;}
.y5b{bottom:594.789715px;}
.y4a{bottom:594.792789px;}
.y72{bottom:594.794326px;}
.y7e{bottom:615.028839px;}
.y20{bottom:615.031095px;}
.ya{bottom:615.031996px;}
.y33{bottom:635.269330px;}
.y7d{bottom:635.270558px;}
.y3f{bottom:635.270867px;}
.y5a{bottom:635.273154px;}
.y49{bottom:635.274691px;}
.y71{bottom:635.276228px;}
.y1f{bottom:655.512998px;}
.y9{bottom:655.513899px;}
.y32{bottom:675.751232px;}
.y3e{bottom:675.752769px;}
.y56{bottom:675.756594px;}
.y70{bottom:675.758130px;}
.y1e{bottom:695.994900px;}
.y8{bottom:695.995801px;}
.y31{bottom:716.234671px;}
.y1d{bottom:716.235900px;}
.y55{bottom:716.238496px;}
.y48{bottom:716.240033px;}
.y7c{bottom:736.476900px;}
.y7{bottom:736.477703px;}
.y7b{bottom:756.717900px;}
.y30{bottom:756.718111px;}
.y1c{bottom:756.718148px;}
.y54{bottom:756.720399px;}
.y47{bottom:756.721935px;}
.y6{bottom:776.959606px;}
.y1b{bottom:797.200050px;}
.y2f{bottom:797.201550px;}
.y53{bottom:797.202301px;}
.y46{bottom:797.203838px;}
.y1a{bottom:817.442550px;}
.y5{bottom:817.443045px;}
.y3d{bottom:837.683550px;}
.y52{bottom:837.684203px;}
.y45{bottom:837.685740px;}
.y7a{bottom:857.924700px;}
.y4{bottom:857.924948px;}
.y2e{bottom:878.165700px;}
.y51{bottom:878.166106px;}
.y44{bottom:878.167643px;}
.y6f{bottom:878.168101px;}
.y3{bottom:898.406850px;}
.y79{bottom:918.649350px;}
.y2d{bottom:918.649545px;}
.y6e{bottom:918.650003px;}
.y3c{bottom:959.131350px;}
.y2c{bottom:959.131448px;}
.y6d{bottom:959.131906px;}
.y19{bottom:995.059313px;}
.y2b{bottom:999.613350px;}
.y6c{bottom:999.613808px;}
.y18{bottom:1015.488000px;}
.y6b{bottom:1080.579150px;}
.y3b{bottom:1101.195150px;}
.y17{bottom:1111.183650px;}
.y78{bottom:1149.103050px;}
.y2a{bottom:1149.103200px;}
.y16{bottom:1151.667000px;}
.h4{height:36.435767px;}
.h2{height:43.569708px;}
.h5{height:46.781410px;}
.h1{height:55.940976px;}
.h3{height:122.095974px;}
.h6{height:123.979501px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:60.724050px;}
.x4{left:68.453250px;}
.x14{left:71.542350px;}
.x11{left:72.971700px;}
.x5{left:121.447950px;}
.x12{left:155.856300px;}
.xe{left:234.271950px;}
.x7{left:243.184950px;}
.x3{left:274.318950px;}
.x6{left:287.895600px;}
.xd{left:303.909600px;}
.xa{left:332.607600px;}
.x9{left:478.948501px;}
.x10{left:492.288272px;}
.x8{left:501.108197px;}
.x13{left:561.694531px;}
.xf{left:566.766103px;}
.xb{left:578.681810px;}
.xc{left:597.678690px;}
.x1{left:799.782000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.464467pt;}
.ls19{letter-spacing:-0.278680pt;}
.lsb{letter-spacing:-0.218573pt;}
.ls1c{letter-spacing:-0.202180pt;}
.ls21{letter-spacing:-0.185787pt;}
.ls1e{letter-spacing:-0.158465pt;}
.ls5{letter-spacing:-0.136608pt;}
.ls1d{letter-spacing:-0.120215pt;}
.ls8{letter-spacing:-0.092893pt;}
.ls18{letter-spacing:-0.071036pt;}
.lsc{letter-spacing:-0.043182pt;}
.ls2b{letter-spacing:-0.038250pt;}
.ls22{letter-spacing:-0.032786pt;}
.ls31{letter-spacing:-0.028788pt;}
.ls15{letter-spacing:-0.027322pt;}
.ls13{letter-spacing:-0.025535pt;}
.ls16{letter-spacing:-0.021857pt;}
.lsd{letter-spacing:-0.021279pt;}
.ls7{letter-spacing:-0.016393pt;}
.ls26{letter-spacing:-0.014616pt;}
.ls17{letter-spacing:-0.014394pt;}
.lsa{letter-spacing:-0.010929pt;}
.ls9{letter-spacing:-0.005464pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005464pt;}
.ls2{letter-spacing:0.010929pt;}
.ls4{letter-spacing:0.012768pt;}
.ls3{letter-spacing:0.016393pt;}
.ls0{letter-spacing:0.017024pt;}
.ls1f{letter-spacing:0.021857pt;}
.ls12{letter-spacing:0.027322pt;}
.lse{letter-spacing:0.032786pt;}
.ls23{letter-spacing:0.038250pt;}
.ls25{letter-spacing:0.049179pt;}
.ls1a{letter-spacing:0.054643pt;}
.ls2a{letter-spacing:0.076500pt;}
.ls14{letter-spacing:0.092893pt;}
.ls29{letter-spacing:0.098358pt;}
.ls2e{letter-spacing:0.103822pt;}
.ls2d{letter-spacing:0.213108pt;}
.ls28{letter-spacing:0.273216pt;}
.ls24{letter-spacing:0.327859pt;}
.lsf{letter-spacing:0.371574pt;}
.ls1b{letter-spacing:0.404360pt;}
.ls11{letter-spacing:0.601075pt;}
.ls2f{letter-spacing:0.661183pt;}
.ls27{letter-spacing:0.819648pt;}
.ls2c{letter-spacing:0.956256pt;}
.ls30{letter-spacing:1.404330pt;}
.ls10{letter-spacing:2.568230pt;}
.ws29{word-spacing:-13.114368pt;}
.ws17{word-spacing:-12.294720pt;}
.wse{word-spacing:-12.267398pt;}
.ws0{word-spacing:-8.511787pt;}
.ws23{word-spacing:-3.196627pt;}
.wsa{word-spacing:-1.912512pt;}
.ws24{word-spacing:-1.890655pt;}
.ws1c{word-spacing:-1.874262pt;}
.ws21{word-spacing:-1.863333pt;}
.ws1d{word-spacing:-1.857869pt;}
.ws1b{word-spacing:-1.852404pt;}
.ws1e{word-spacing:-1.846940pt;}
.ws1a{word-spacing:-1.841476pt;}
.ws2a{word-spacing:-1.174829pt;}
.ws2b{word-spacing:-0.857898pt;}
.ws19{word-spacing:-0.781398pt;}
.ws20{word-spacing:-0.770469pt;}
.ws37{word-spacing:-0.655718pt;}
.ws1f{word-spacing:-0.431681pt;}
.ws11{word-spacing:-0.371574pt;}
.ws2d{word-spacing:-0.273216pt;}
.ws2e{word-spacing:-0.098358pt;}
.ws12{word-spacing:-0.092893pt;}
.ws2f{word-spacing:-0.076500pt;}
.ws28{word-spacing:-0.049179pt;}
.ws26{word-spacing:-0.038250pt;}
.ws10{word-spacing:-0.032786pt;}
.ws16{word-spacing:-0.027322pt;}
.ws22{word-spacing:-0.021857pt;}
.ws2{word-spacing:-0.017024pt;}
.ws8{word-spacing:-0.016393pt;}
.wsd{word-spacing:-0.012768pt;}
.ws7{word-spacing:-0.010929pt;}
.ws3{word-spacing:-0.005464pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:0.005464pt;}
.ws9{word-spacing:0.010929pt;}
.ws18{word-spacing:0.014394pt;}
.ws2c{word-spacing:0.014616pt;}
.ws4{word-spacing:0.016393pt;}
.wsc{word-spacing:0.021279pt;}
.ws15{word-spacing:0.021857pt;}
.wsf{word-spacing:0.025535pt;}
.ws27{word-spacing:0.027322pt;}
.ws30{word-spacing:0.028788pt;}
.ws25{word-spacing:0.032786pt;}
.wsb{word-spacing:0.043182pt;}
.ws5{word-spacing:0.092893pt;}
.ws33{word-spacing:1.639296pt;}
.ws32{word-spacing:1.803226pt;}
.ws31{word-spacing:1.808690pt;}
.ws34{word-spacing:1.846940pt;}
.ws14{word-spacing:4.426099pt;}
.ws35{word-spacing:5.021710pt;}
.ws36{word-spacing:10.726460pt;}
.ws13{word-spacing:19.343693pt;}
._6{margin-left:-8.901092pt;}
._5{margin-left:-3.005376pt;}
._3{margin-left:-1.879726pt;}
._1{margin-left:-0.902249pt;}
._2{width:1.092864pt;}
._0{width:1639.834004pt;}
._4{width:2074.994842pt;}
.fs1{font-size:42.558933pt;}
.fs0{font-size:54.643200pt;}
.fs2{font-size:143.938667pt;}
.fs3{font-size:146.159152pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.907733pt;}
.y15{bottom:150.862620pt;}
.y14{bottom:186.846533pt;}
.y6a{bottom:204.849482pt;}
.y13{bottom:222.830667pt;}
.y29{bottom:222.836355pt;}
.y63{bottom:240.819734pt;}
.y3a{bottom:240.822721pt;}
.y50{bottom:240.825727pt;}
.y69{bottom:240.833395pt;}
.y28{bottom:258.820268pt;}
.y12{bottom:258.821069pt;}
.y62{bottom:276.805013pt;}
.y39{bottom:276.808000pt;}
.y4f{bottom:276.809640pt;}
.y68{bottom:276.817308pt;}
.y27{bottom:294.804182pt;}
.y11{bottom:294.804983pt;}
.y61{bottom:312.790293pt;}
.y4e{bottom:312.793553pt;}
.y67{bottom:312.801221pt;}
.y26{bottom:330.788095pt;}
.y10{bottom:330.788896pt;}
.y60{bottom:348.775572pt;}
.y38{bottom:348.777467pt;}
.y59{bottom:348.783769pt;}
.y66{bottom:348.785135pt;}
.y77{bottom:348.786501pt;}
.y25{bottom:366.773374pt;}
.yf{bottom:366.774175pt;}
.y37{bottom:384.760184pt;}
.y5f{bottom:384.760852pt;}
.y1{bottom:384.761600pt;}
.y58{bottom:384.767682pt;}
.y65{bottom:384.769048pt;}
.y76{bottom:384.770414pt;}
.y24{bottom:402.757288pt;}
.ye{bottom:402.758088pt;}
.y36{bottom:420.745463pt;}
.y4d{bottom:420.745733pt;}
.y43{bottom:420.746007pt;}
.y5e{bottom:420.746131pt;}
.y64{bottom:420.752961pt;}
.y75{bottom:420.754327pt;}
.y23{bottom:438.742567pt;}
.yd{bottom:438.743368pt;}
.y35{bottom:456.730743pt;}
.y4c{bottom:456.731067pt;}
.y42{bottom:456.731287pt;}
.y5d{bottom:456.731410pt;}
.y57{bottom:456.736875pt;}
.y74{bottom:456.738241pt;}
.y7f{bottom:474.723108pt;}
.y22{bottom:474.726480pt;}
.yc{bottom:474.727281pt;}
.y34{bottom:492.714656pt;}
.y41{bottom:492.715200pt;}
.y5c{bottom:492.716690pt;}
.y4b{bottom:492.720788pt;}
.y73{bottom:492.722154pt;}
.y21{bottom:510.710393pt;}
.yb{bottom:510.711194pt;}
.y40{bottom:528.700533pt;}
.y5b{bottom:528.701969pt;}
.y4a{bottom:528.704701pt;}
.y72{bottom:528.706067pt;}
.y7e{bottom:546.692301pt;}
.y20{bottom:546.694307pt;}
.ya{bottom:546.695108pt;}
.y33{bottom:564.683849pt;}
.y7d{bottom:564.684941pt;}
.y3f{bottom:564.685215pt;}
.y5a{bottom:564.687248pt;}
.y49{bottom:564.688614pt;}
.y71{bottom:564.689980pt;}
.y1f{bottom:582.678220pt;}
.y9{bottom:582.679021pt;}
.y32{bottom:600.667762pt;}
.y3e{bottom:600.669128pt;}
.y56{bottom:600.672528pt;}
.y70{bottom:600.673894pt;}
.y1e{bottom:618.662133pt;}
.y8{bottom:618.662934pt;}
.y31{bottom:636.653041pt;}
.y1d{bottom:636.654133pt;}
.y55{bottom:636.656441pt;}
.y48{bottom:636.657807pt;}
.y7c{bottom:654.646133pt;}
.y7{bottom:654.646847pt;}
.y7b{bottom:672.638133pt;}
.y30{bottom:672.638321pt;}
.y1c{bottom:672.638353pt;}
.y54{bottom:672.640354pt;}
.y47{bottom:672.641720pt;}
.y6{bottom:690.630761pt;}
.y1b{bottom:708.622267pt;}
.y2f{bottom:708.623600pt;}
.y53{bottom:708.624268pt;}
.y46{bottom:708.625634pt;}
.y1a{bottom:726.615600pt;}
.y5{bottom:726.616040pt;}
.y3d{bottom:744.607600pt;}
.y52{bottom:744.608181pt;}
.y45{bottom:744.609547pt;}
.y7a{bottom:762.599733pt;}
.y4{bottom:762.599953pt;}
.y2e{bottom:780.591733pt;}
.y51{bottom:780.592094pt;}
.y44{bottom:780.593460pt;}
.y6f{bottom:780.593868pt;}
.y3{bottom:798.583867pt;}
.y79{bottom:816.577200pt;}
.y2d{bottom:816.577373pt;}
.y6e{bottom:816.577781pt;}
.y3c{bottom:852.561200pt;}
.y2c{bottom:852.561287pt;}
.y6d{bottom:852.561694pt;}
.y19{bottom:884.497167pt;}
.y2b{bottom:888.545200pt;}
.y6c{bottom:888.545607pt;}
.y18{bottom:902.656000pt;}
.y6b{bottom:960.514800pt;}
.y3b{bottom:978.840133pt;}
.y17{bottom:987.718800pt;}
.y78{bottom:1021.424933pt;}
.y2a{bottom:1021.425067pt;}
.y16{bottom:1023.704000pt;}
.h4{height:32.387348pt;}
.h2{height:38.728629pt;}
.h5{height:41.583475pt;}
.h1{height:49.725312pt;}
.h3{height:108.529755pt;}
.h6{height:110.204001pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:53.976933pt;}
.x4{left:60.847333pt;}
.x14{left:63.593200pt;}
.x11{left:64.863733pt;}
.x5{left:107.953733pt;}
.x12{left:138.538933pt;}
.xe{left:208.241733pt;}
.x7{left:216.164400pt;}
.x3{left:243.839067pt;}
.x6{left:255.907200pt;}
.xd{left:270.141867pt;}
.xa{left:295.651200pt;}
.x9{left:425.732001pt;}
.x10{left:437.589575pt;}
.x8{left:445.429508pt;}
.x13{left:499.284028pt;}
.xf{left:503.792092pt;}
.xb{left:514.383831pt;}
.xc{left:531.269946pt;}
.x1{left:710.917333pt;}
}




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