
    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_acf0b2c1c762785e02e6cf1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a8a324574d87961d04f8cd62.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_eb4da082a0b4c2f4059280d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a24de47ea4570e10d7d3fa07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_96b7641bb9621ac3e6d3a9f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_41d8e6402902a478cf808098.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_ebe1f4b8d28d37325fbc8c80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_9616c1042d6749bb1fffebcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_7915523130e66ea950faab52.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_8c79632c8cd61c014c38dcce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lse{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.567600px;}
.ls15{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.ls25{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.018000px;}
.ls22{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.109440px;}
.ls1e{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.152400px;}
.lsc{letter-spacing:0.152640px;}
.ls13{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.305400px;}
.ls28{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.738000px;}
.ls3{letter-spacing:0.792000px;}
.ls11{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.160000px;}
.ls18{letter-spacing:3.780000px;}
.ls29{letter-spacing:4.320000px;}
.ls14{letter-spacing:5.040000px;}
.ls1b{letter-spacing:8.640000px;}
.ls1d{letter-spacing:8.820000px;}
.ls1c{letter-spacing:9.360000px;}
.ls24{letter-spacing:12.960000px;}
.ls12{letter-spacing:13.860000px;}
.ls27{letter-spacing:97.416000px;}
.ls2a{letter-spacing:101.825280px;}
.lsb{letter-spacing:152.225280px;}
.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;}
}
.wsb{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.992400px;}
.wsc{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.798000px;}
.ws13{word-spacing:-12.546000px;}
.ws11{word-spacing:-12.186000px;}
.ws6{word-spacing:-10.350600px;}
.ws1{word-spacing:-9.792000px;}
.ws14{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-4.734240px;}
._2{margin-left:-3.300480px;}
._1{margin-left:-1.324800px;}
._0{width:1.063440px;}
._a{width:3.018720px;}
._f{width:4.769280px;}
._5{width:6.756480px;}
._16{width:7.810560px;}
._13{width:8.912160px;}
._6{width:9.936000px;}
._7{width:11.062080px;}
._9{width:12.983040px;}
._8{width:14.042880px;}
._b{width:15.165360px;}
._11{width:16.262640px;}
._4{width:17.951040px;}
._c{width:19.010880px;}
._d{width:20.235360px;}
._15{width:21.395520px;}
._14{width:23.051520px;}
._1c{width:24.272640px;}
._1b{width:25.743360px;}
._17{width:26.844480px;}
._18{width:28.166880px;}
._1d{width:29.355840px;}
._19{width:30.564000px;}
._e{width:43.585920px;}
._1a{width:54.360000px;}
._10{width:81.720000px;}
._1e{width:96.850560px;}
._12{width:124.210560px;}
.fc2{color:rgb(41,42,46);}
.fc1{color:rgb(32,33,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y24{bottom:183.090000px;}
.y23{bottom:199.470000px;}
.y7a{bottom:205.050000px;}
.y22{bottom:216.030000px;}
.y75{bottom:217.290000px;}
.y79{bottom:225.210000px;}
.y21{bottom:232.590000px;}
.y74{bottom:245.370000px;}
.y20{bottom:248.970000px;}
.y73{bottom:250.410000px;}
.y1f{bottom:265.530000px;}
.y1e{bottom:282.090000px;}
.y76{bottom:283.350000px;}
.y71{bottom:285.690000px;}
.y72{bottom:291.630000px;}
.y1d{bottom:298.470000px;}
.y70{bottom:305.850000px;}
.y1c{bottom:315.030000px;}
.y6f{bottom:326.055000px;}
.y4b{bottom:331.635000px;}
.y1b{bottom:332.895000px;}
.y6e{bottom:346.215000px;}
.y4f{bottom:348.015000px;}
.y4a{bottom:349.455000px;}
.y78{bottom:352.155000px;}
.y4e{bottom:364.575000px;}
.y6b{bottom:365.835000px;}
.y6d{bottom:366.375000px;}
.y5f{bottom:381.135000px;}
.y4d{bottom:382.395000px;}
.y48{bottom:386.535000px;}
.y1a{bottom:387.075000px;}
.y49{bottom:392.475000px;}
.y5e{bottom:397.515000px;}
.y47{bottom:406.695000px;}
.y19{bottom:407.235000px;}
.y4c{bottom:412.635000px;}
.y5d{bottom:414.075000px;}
.y46{bottom:427.035000px;}
.y18{bottom:427.395000px;}
.y5c{bottom:430.635000px;}
.y64{bottom:431.895000px;}
.y5b{bottom:447.015000px;}
.y44{bottom:447.195000px;}
.y17{bottom:447.735000px;}
.y45{bottom:453.135000px;}
.y5a{bottom:463.575000px;}
.y43{bottom:467.355000px;}
.y16{bottom:467.895000px;}
.y59{bottom:480.135000px;}
.y41{bottom:487.515000px;}
.y15{bottom:488.055000px;}
.y42{bottom:493.455000px;}
.y58{bottom:496.515000px;}
.y40{bottom:507.675000px;}
.y14{bottom:508.215000px;}
.y57{bottom:513.075000px;}
.y77{bottom:513.615000px;}
.y3f{bottom:527.835000px;}
.y13{bottom:528.375000px;}
.y56{bottom:529.635000px;}
.y55{bottom:546.015000px;}
.y3e{bottom:547.995000px;}
.y12{bottom:548.535000px;}
.y63{bottom:553.935000px;}
.y54{bottom:562.575000px;}
.y3d{bottom:568.185000px;}
.y11{bottom:568.725000px;}
.y67{bottom:574.125000px;}
.y53{bottom:580.425000px;}
.y3c{bottom:588.345000px;}
.y10{bottom:588.885000px;}
.y62{bottom:594.285000px;}
.y3b{bottom:608.505000px;}
.yf{bottom:609.045000px;}
.y52{bottom:614.445000px;}
.y3a{bottom:628.665000px;}
.ye{bottom:629.205000px;}
.y39{bottom:648.825000px;}
.yd{bottom:649.365000px;}
.y38{bottom:669.165000px;}
.yc{bottom:669.525000px;}
.y6c{bottom:675.105000px;}
.y37{bottom:689.325000px;}
.ya{bottom:689.865000px;}
.y61{bottom:695.265000px;}
.yb{bottom:695.805000px;}
.y35{bottom:709.485000px;}
.y9{bottom:710.025000px;}
.y36{bottom:715.425000px;}
.y34{bottom:729.645000px;}
.y8{bottom:730.185000px;}
.y60{bottom:735.585000px;}
.y33{bottom:749.805000px;}
.y7{bottom:750.345000px;}
.y32{bottom:769.965000px;}
.y31{bottom:790.125000px;}
.y6{bottom:790.665000px;}
.y30{bottom:810.285000px;}
.y51{bottom:816.225000px;}
.y2f{bottom:830.490000px;}
.y2e{bottom:850.650000px;}
.y5{bottom:851.190000px;}
.y6a{bottom:856.590000px;}
.y2d{bottom:870.810000px;}
.y4{bottom:871.530000px;}
.y69{bottom:876.750000px;}
.y2c{bottom:890.970000px;}
.y66{bottom:896.910000px;}
.y2b{bottom:911.310000px;}
.y3{bottom:913.830000px;}
.y65{bottom:917.250000px;}
.y2a{bottom:931.470000px;}
.y68{bottom:937.410000px;}
.y2{bottom:943.890000px;}
.y29{bottom:951.630000px;}
.y50{bottom:957.570000px;}
.y28{bottom:971.790000px;}
.y1{bottom:991.950000px;}
.y27{bottom:1027.410000px;}
.y26{bottom:1031.190000px;}
.y25{bottom:1047.570000px;}
.h6{height:40.985156px;}
.hf{height:42.086250px;}
.h9{height:48.410156px;}
.h8{height:52.998047px;}
.ha{height:53.332031px;}
.hb{height:53.709961px;}
.he{height:54.421875px;}
.h11{height:58.621992px;}
.h4{height:58.651172px;}
.hd{height:59.383125px;}
.h3{height:64.978594px;}
.h1{height:65.010937px;}
.h7{height:65.884219px;}
.h10{height:66.078281px;}
.h5{height:66.757500px;}
.hc{height:68.084282px;}
.h2{height:96.508125px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:214.409986px;}
.x7{left:221.249986px;}
.x1a{left:228.089986px;}
.x5{left:231.509986px;}
.x2c{left:247.349973px;}
.x8{left:248.429986px;}
.x2d{left:257.789986px;}
.x1{left:265.349986px;}
.x1b{left:284.789973px;}
.x1c{left:295.274986px;}
.x46{left:303.914973px;}
.x11{left:312.914973px;}
.x47{left:314.354986px;}
.xf{left:317.054973px;}
.x12{left:318.134986px;}
.x3f{left:319.754973px;}
.x10{left:322.274986px;}
.x40{left:330.194986px;}
.x3c{left:335.414973px;}
.x14{left:341.174973px;}
.x41{left:345.314986px;}
.x15{left:346.394986px;}
.x32{left:357.734986px;}
.x3b{left:408.854973px;}
.x16{left:414.254973px;}
.x17{left:419.474986px;}
.x9{left:422.174973px;}
.xa{left:427.394986px;}
.x6{left:430.454986px;}
.x33{left:435.854973px;}
.x34{left:446.294986px;}
.x21{left:448.094973px;}
.x2e{left:454.754973px;}
.x1d{left:457.274973px;}
.x22{left:458.534986px;}
.x2f{left:465.194986px;}
.x1e{left:467.714986px;}
.x27{left:473.114973px;}
.x13{left:477.974973px;}
.xb{left:483.944973px;}
.x3d{left:486.644973px;}
.xc{left:489.164986px;}
.x3{left:493.484973px;}
.x3e{left:497.084986px;}
.x4{left:498.704986px;}
.x35{left:522.644973px;}
.x36{left:533.084986px;}
.x44{left:548.924973px;}
.x2a{left:555.584973px;}
.x45{left:559.364986px;}
.x2b{left:566.024986px;}
.x23{left:568.544973px;}
.x18{left:576.464973px;}
.x24{left:578.984986px;}
.x42{left:584.924973px;}
.x19{left:586.904986px;}
.x30{left:593.744973px;}
.x43{left:595.364986px;}
.x1f{left:600.944973px;}
.x31{left:604.184986px;}
.x20{left:611.384986px;}
.x37{left:613.904973px;}
.x38{left:624.344986px;}
.x28{left:625.784973px;}
.x29{left:636.224986px;}
.x39{left:646.664973px;}
.x3a{left:657.104986px;}
.xd{left:665.024973px;}
.x25{left:668.264973px;}
.xe{left:670.244986px;}
.x26{left:678.749986px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.504533pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.ls25{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.016000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.097280pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.135467pt;}
.lsc{letter-spacing:0.135680pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.271467pt;}
.ls28{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.656000pt;}
.ls3{letter-spacing:0.704000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.920000pt;}
.ls18{letter-spacing:3.360000pt;}
.ls29{letter-spacing:3.840000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:7.680000pt;}
.ls1d{letter-spacing:7.840000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls24{letter-spacing:11.520000pt;}
.ls12{letter-spacing:12.320000pt;}
.ls27{letter-spacing:86.592000pt;}
.ls2a{letter-spacing:90.511360pt;}
.lsb{letter-spacing:135.311360pt;}
.wsb{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.313067pt;}
.ws3{word-spacing:-14.215467pt;}
.wsc{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.376000pt;}
.ws13{word-spacing:-11.152000pt;}
.ws11{word-spacing:-10.832000pt;}
.ws6{word-spacing:-9.200533pt;}
.ws1{word-spacing:-8.704000pt;}
.ws14{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-4.208213pt;}
._2{margin-left:-2.933760pt;}
._1{margin-left:-1.177600pt;}
._0{width:0.945280pt;}
._a{width:2.683307pt;}
._f{width:4.239360pt;}
._5{width:6.005760pt;}
._16{width:6.942720pt;}
._13{width:7.921920pt;}
._6{width:8.832000pt;}
._7{width:9.832960pt;}
._9{width:11.540480pt;}
._8{width:12.482560pt;}
._b{width:13.480320pt;}
._11{width:14.455680pt;}
._4{width:15.956480pt;}
._c{width:16.898560pt;}
._d{width:17.986987pt;}
._15{width:19.018240pt;}
._14{width:20.490240pt;}
._1c{width:21.575680pt;}
._1b{width:22.882987pt;}
._17{width:23.861760pt;}
._18{width:25.037227pt;}
._1d{width:26.094080pt;}
._19{width:27.168000pt;}
._e{width:38.743040pt;}
._1a{width:48.320000pt;}
._10{width:72.640000pt;}
._1e{width:86.089387pt;}
._12{width:110.409387pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:162.746667pt;}
.y23{bottom:177.306667pt;}
.y7a{bottom:182.266667pt;}
.y22{bottom:192.026667pt;}
.y75{bottom:193.146667pt;}
.y79{bottom:200.186667pt;}
.y21{bottom:206.746667pt;}
.y74{bottom:218.106667pt;}
.y20{bottom:221.306667pt;}
.y73{bottom:222.586667pt;}
.y1f{bottom:236.026667pt;}
.y1e{bottom:250.746667pt;}
.y76{bottom:251.866667pt;}
.y71{bottom:253.946667pt;}
.y72{bottom:259.226667pt;}
.y1d{bottom:265.306667pt;}
.y70{bottom:271.866667pt;}
.y1c{bottom:280.026667pt;}
.y6f{bottom:289.826667pt;}
.y4b{bottom:294.786667pt;}
.y1b{bottom:295.906667pt;}
.y6e{bottom:307.746667pt;}
.y4f{bottom:309.346667pt;}
.y4a{bottom:310.626667pt;}
.y78{bottom:313.026667pt;}
.y4e{bottom:324.066667pt;}
.y6b{bottom:325.186667pt;}
.y6d{bottom:325.666667pt;}
.y5f{bottom:338.786667pt;}
.y4d{bottom:339.906667pt;}
.y48{bottom:343.586667pt;}
.y1a{bottom:344.066667pt;}
.y49{bottom:348.866667pt;}
.y5e{bottom:353.346667pt;}
.y47{bottom:361.506667pt;}
.y19{bottom:361.986667pt;}
.y4c{bottom:366.786667pt;}
.y5d{bottom:368.066667pt;}
.y46{bottom:379.586667pt;}
.y18{bottom:379.906667pt;}
.y5c{bottom:382.786667pt;}
.y64{bottom:383.906667pt;}
.y5b{bottom:397.346667pt;}
.y44{bottom:397.506667pt;}
.y17{bottom:397.986667pt;}
.y45{bottom:402.786667pt;}
.y5a{bottom:412.066667pt;}
.y43{bottom:415.426667pt;}
.y16{bottom:415.906667pt;}
.y59{bottom:426.786667pt;}
.y41{bottom:433.346667pt;}
.y15{bottom:433.826667pt;}
.y42{bottom:438.626667pt;}
.y58{bottom:441.346667pt;}
.y40{bottom:451.266667pt;}
.y14{bottom:451.746667pt;}
.y57{bottom:456.066667pt;}
.y77{bottom:456.546667pt;}
.y3f{bottom:469.186667pt;}
.y13{bottom:469.666667pt;}
.y56{bottom:470.786667pt;}
.y55{bottom:485.346667pt;}
.y3e{bottom:487.106667pt;}
.y12{bottom:487.586667pt;}
.y63{bottom:492.386667pt;}
.y54{bottom:500.066667pt;}
.y3d{bottom:505.053333pt;}
.y11{bottom:505.533333pt;}
.y67{bottom:510.333333pt;}
.y53{bottom:515.933333pt;}
.y3c{bottom:522.973333pt;}
.y10{bottom:523.453333pt;}
.y62{bottom:528.253333pt;}
.y3b{bottom:540.893333pt;}
.yf{bottom:541.373333pt;}
.y52{bottom:546.173333pt;}
.y3a{bottom:558.813333pt;}
.ye{bottom:559.293333pt;}
.y39{bottom:576.733333pt;}
.yd{bottom:577.213333pt;}
.y38{bottom:594.813333pt;}
.yc{bottom:595.133333pt;}
.y6c{bottom:600.093333pt;}
.y37{bottom:612.733333pt;}
.ya{bottom:613.213333pt;}
.y61{bottom:618.013333pt;}
.yb{bottom:618.493333pt;}
.y35{bottom:630.653333pt;}
.y9{bottom:631.133333pt;}
.y36{bottom:635.933333pt;}
.y34{bottom:648.573333pt;}
.y8{bottom:649.053333pt;}
.y60{bottom:653.853333pt;}
.y33{bottom:666.493333pt;}
.y7{bottom:666.973333pt;}
.y32{bottom:684.413333pt;}
.y31{bottom:702.333333pt;}
.y6{bottom:702.813333pt;}
.y30{bottom:720.253333pt;}
.y51{bottom:725.533333pt;}
.y2f{bottom:738.213333pt;}
.y2e{bottom:756.133333pt;}
.y5{bottom:756.613333pt;}
.y6a{bottom:761.413333pt;}
.y2d{bottom:774.053333pt;}
.y4{bottom:774.693333pt;}
.y69{bottom:779.333333pt;}
.y2c{bottom:791.973333pt;}
.y66{bottom:797.253333pt;}
.y2b{bottom:810.053333pt;}
.y3{bottom:812.293333pt;}
.y65{bottom:815.333333pt;}
.y2a{bottom:827.973333pt;}
.y68{bottom:833.253333pt;}
.y2{bottom:839.013333pt;}
.y29{bottom:845.893333pt;}
.y50{bottom:851.173333pt;}
.y28{bottom:863.813333pt;}
.y1{bottom:881.733333pt;}
.y27{bottom:913.253333pt;}
.y26{bottom:916.613333pt;}
.y25{bottom:931.173333pt;}
.h6{height:36.431250pt;}
.hf{height:37.410000pt;}
.h9{height:43.031250pt;}
.h8{height:47.109375pt;}
.ha{height:47.406250pt;}
.hb{height:47.742188pt;}
.he{height:48.375000pt;}
.h11{height:52.108438pt;}
.h4{height:52.134375pt;}
.hd{height:52.785000pt;}
.h3{height:57.758750pt;}
.h1{height:57.787500pt;}
.h7{height:58.563750pt;}
.h10{height:58.736250pt;}
.h5{height:59.340000pt;}
.hc{height:60.519362pt;}
.h2{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:190.586655pt;}
.x7{left:196.666655pt;}
.x1a{left:202.746655pt;}
.x5{left:205.786655pt;}
.x2c{left:219.866642pt;}
.x8{left:220.826655pt;}
.x2d{left:229.146655pt;}
.x1{left:235.866655pt;}
.x1b{left:253.146642pt;}
.x1c{left:262.466655pt;}
.x46{left:270.146642pt;}
.x11{left:278.146642pt;}
.x47{left:279.426655pt;}
.xf{left:281.826642pt;}
.x12{left:282.786655pt;}
.x3f{left:284.226642pt;}
.x10{left:286.466655pt;}
.x40{left:293.506655pt;}
.x3c{left:298.146642pt;}
.x14{left:303.266642pt;}
.x41{left:306.946655pt;}
.x15{left:307.906655pt;}
.x32{left:317.986655pt;}
.x3b{left:363.426642pt;}
.x16{left:368.226642pt;}
.x17{left:372.866655pt;}
.x9{left:375.266642pt;}
.xa{left:379.906655pt;}
.x6{left:382.626655pt;}
.x33{left:387.426642pt;}
.x34{left:396.706655pt;}
.x21{left:398.306642pt;}
.x2e{left:404.226642pt;}
.x1d{left:406.466642pt;}
.x22{left:407.586655pt;}
.x2f{left:413.506655pt;}
.x1e{left:415.746655pt;}
.x27{left:420.546642pt;}
.x13{left:424.866642pt;}
.xb{left:430.173309pt;}
.x3d{left:432.573309pt;}
.xc{left:434.813321pt;}
.x3{left:438.653309pt;}
.x3e{left:441.853321pt;}
.x4{left:443.293321pt;}
.x35{left:464.573309pt;}
.x36{left:473.853321pt;}
.x44{left:487.933309pt;}
.x2a{left:493.853309pt;}
.x45{left:497.213321pt;}
.x2b{left:503.133321pt;}
.x23{left:505.373309pt;}
.x18{left:512.413309pt;}
.x24{left:514.653321pt;}
.x42{left:519.933309pt;}
.x19{left:521.693321pt;}
.x30{left:527.773309pt;}
.x43{left:529.213321pt;}
.x1f{left:534.173309pt;}
.x31{left:537.053321pt;}
.x20{left:543.453321pt;}
.x37{left:545.693309pt;}
.x38{left:554.973321pt;}
.x28{left:556.253309pt;}
.x29{left:565.533321pt;}
.x39{left:574.813309pt;}
.x3a{left:584.093321pt;}
.xd{left:591.133309pt;}
.x25{left:594.013309pt;}
.xe{left:595.773321pt;}
.x26{left:603.333321pt;}
}




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