
    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_43e8ae6592876c5585ff0b32.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_948f89fa923521008baf7660.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.176000;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_b5c5e5272299974e7aa7ac99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bbd091ddd7a762aff0d6e170.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b65fa331d65174d51686c646.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:8.031000px;}
.ls1{letter-spacing:8.031600px;}
.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;}
}
.ws37{word-spacing:-25.152000px;}
.ws15{word-spacing:-16.980000px;}
.ws44{word-spacing:-16.620000px;}
.ws43{word-spacing:-16.080000px;}
.ws10{word-spacing:-15.720000px;}
.ws62{word-spacing:-15.120000px;}
.ws38{word-spacing:-2.820000px;}
.wsf{word-spacing:-2.760000px;}
.ws5f{word-spacing:-2.700000px;}
.ws54{word-spacing:-2.580000px;}
.wsc{word-spacing:-2.520000px;}
.ws36{word-spacing:-2.220000px;}
.ws27{word-spacing:-1.980000px;}
.ws4{word-spacing:-1.860000px;}
.ws42{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.740000px;}
.ws4c{word-spacing:-1.620000px;}
.wse{word-spacing:-1.560000px;}
.ws56{word-spacing:-1.500000px;}
.ws3e{word-spacing:-1.440000px;}
.ws60{word-spacing:-1.380000px;}
.ws31{word-spacing:-1.260000px;}
.wsa{word-spacing:-1.200000px;}
.ws3{word-spacing:-1.020000px;}
.wsd{word-spacing:-0.960000px;}
.ws14{word-spacing:-0.480000px;}
.ws41{word-spacing:-0.360000px;}
.ws6{word-spacing:-0.300000px;}
.ws5{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws55{word-spacing:0.060000px;}
.ws21{word-spacing:0.120000px;}
.ws13{word-spacing:0.180000px;}
.ws30{word-spacing:0.240000px;}
.ws47{word-spacing:0.300000px;}
.ws5a{word-spacing:0.540000px;}
.ws8{word-spacing:0.720000px;}
.ws4a{word-spacing:0.840000px;}
.ws7{word-spacing:0.900000px;}
.ws2c{word-spacing:0.960000px;}
.ws2d{word-spacing:1.020000px;}
.ws26{word-spacing:1.500000px;}
.ws11{word-spacing:1.560000px;}
.ws2e{word-spacing:1.620000px;}
.ws35{word-spacing:1.800000px;}
.ws45{word-spacing:1.860000px;}
.ws25{word-spacing:1.920000px;}
.ws4f{word-spacing:2.100000px;}
.ws2{word-spacing:2.160000px;}
.ws5b{word-spacing:2.220000px;}
.ws28{word-spacing:2.280000px;}
.ws23{word-spacing:2.400000px;}
.ws1e{word-spacing:2.640000px;}
.ws4b{word-spacing:2.820000px;}
.ws1d{word-spacing:3.060000px;}
.ws3f{word-spacing:3.120000px;}
.ws12{word-spacing:3.300000px;}
.ws2b{word-spacing:3.360000px;}
.ws33{word-spacing:3.420000px;}
.ws40{word-spacing:3.600000px;}
.ws3b{word-spacing:3.960000px;}
.ws51{word-spacing:4.320000px;}
.ws4e{word-spacing:4.440000px;}
.ws1b{word-spacing:4.560000px;}
.ws16{word-spacing:4.800000px;}
.ws9{word-spacing:4.860000px;}
.ws3d{word-spacing:5.040000px;}
.ws34{word-spacing:5.400000px;}
.ws3c{word-spacing:5.460000px;}
.ws58{word-spacing:5.700000px;}
.ws61{word-spacing:5.820000px;}
.ws20{word-spacing:5.880000px;}
.ws57{word-spacing:6.060000px;}
.ws46{word-spacing:6.120000px;}
.ws1f{word-spacing:6.180000px;}
.ws1c{word-spacing:6.240000px;}
.ws5e{word-spacing:6.300000px;}
.ws39{word-spacing:6.540000px;}
.ws53{word-spacing:6.780000px;}
.ws5d{word-spacing:7.020000px;}
.ws52{word-spacing:7.320000px;}
.ws32{word-spacing:7.440000px;}
.ws22{word-spacing:7.560000px;}
.ws24{word-spacing:8.220000px;}
.ws50{word-spacing:8.280000px;}
.ws4d{word-spacing:8.340000px;}
.ws5c{word-spacing:8.400000px;}
.ws1{word-spacing:9.000000px;}
.ws17{word-spacing:9.180000px;}
.wsb{word-spacing:9.540000px;}
.ws49{word-spacing:9.600000px;}
.ws18{word-spacing:9.960000px;}
.ws29{word-spacing:10.500000px;}
.ws3a{word-spacing:11.100000px;}
.ws2a{word-spacing:11.340000px;}
.ws48{word-spacing:17.340000px;}
.ws59{word-spacing:17.460000px;}
._4{margin-left:-75.720000px;}
._7{margin-left:-5.145600px;}
._2{margin-left:-3.660000px;}
._0{margin-left:-1.800000px;}
._1{width:1.788000px;}
._3{width:4.134000px;}
._5{width:5.490000px;}
._6{width:8.116800px;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(129,139,177);}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(124,155,99);}
.fc0{color:rgb(87,121,61);}
.fs0{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.889650px;}
.yac{bottom:168.976200px;}
.y4a{bottom:169.843950px;}
.y49{bottom:189.343950px;}
.yab{bottom:196.980150px;}
.y48{bottom:217.347900px;}
.yaa{bottom:224.984100px;}
.y47{bottom:236.847900px;}
.ya9{bottom:244.484100px;}
.y13{bottom:249.914400px;}
.y46{bottom:256.347900px;}
.y12{bottom:269.414400px;}
.ya8{bottom:272.488050px;}
.y45{bottom:284.351850px;}
.y11{bottom:288.914400px;}
.y44{bottom:303.851850px;}
.y10{bottom:308.414400px;}
.y43{bottom:323.351850px;}
.ya7{bottom:326.299050px;}
.yf{bottom:327.914400px;}
.y42{bottom:342.851850px;}
.ye{bottom:347.414400px;}
.ya6{bottom:354.303000px;}
.y41{bottom:370.855800px;}
.y32{bottom:376.917150px;}
.ya5{bottom:382.306950px;}
.y40{bottom:390.355800px;}
.y31{bottom:396.417000px;}
.y3f{bottom:409.855800px;}
.ya4{bottom:410.310900px;}
.y30{bottom:415.917000px;}
.y8a{bottom:429.326550px;}
.y2f{bottom:435.417000px;}
.y3e{bottom:437.859750px;}
.ya3{bottom:438.314850px;}
.y89{bottom:448.826550px;}
.y2e{bottom:454.917000px;}
.y3d{bottom:457.359750px;}
.y88{bottom:468.326550px;}
.ya2{bottom:473.436750px;}
.y2d{bottom:474.417000px;}
.y3c{bottom:476.859750px;}
.y87{bottom:487.826550px;}
.ya1{bottom:492.936750px;}
.y2c{bottom:502.421100px;}
.y3b{bottom:504.863700px;}
.y80{bottom:508.625700px;}
.y77{bottom:514.928850px;}
.ya0{bottom:520.940700px;}
.y2b{bottom:521.921100px;}
.y3a{bottom:524.363700px;}
.y7f{bottom:528.125700px;}
.y76{bottom:534.428850px;}
.y9f{bottom:540.440700px;}
.y2a{bottom:541.421100px;}
.y51{bottom:542.183850px;}
.y86{bottom:543.834300px;}
.y39{bottom:543.863700px;}
.y7e{bottom:547.625700px;}
.y75{bottom:553.928850px;}
.y9e{bottom:559.940700px;}
.y29{bottom:560.921100px;}
.y50{bottom:561.683850px;}
.y85{bottom:563.334300px;}
.y7d{bottom:567.125700px;}
.y38{bottom:571.867650px;}
.y74{bottom:573.428850px;}
.y28{bottom:580.421100px;}
.y4f{bottom:581.183850px;}
.y84{bottom:582.834300px;}
.y7c{bottom:586.625700px;}
.y9d{bottom:587.944650px;}
.y37{bottom:591.367650px;}
.y27{bottom:599.921100px;}
.y4e{bottom:600.683850px;}
.y73{bottom:601.432800px;}
.y83{bottom:602.334300px;}
.y7b{bottom:606.125700px;}
.y9c{bottom:607.444650px;}
.y36{bottom:610.867650px;}
.y4d{bottom:620.183850px;}
.y72{bottom:620.932800px;}
.y82{bottom:621.834300px;}
.y7a{bottom:625.625700px;}
.y9b{bottom:635.448600px;}
.y35{bottom:638.871600px;}
.y4c{bottom:639.683850px;}
.y71{bottom:640.432800px;}
.y81{bottom:641.334300px;}
.y79{bottom:645.125700px;}
.y34{bottom:658.371600px;}
.y70{bottom:659.932800px;}
.y9a{bottom:663.452550px;}
.y78{bottom:664.625700px;}
.y6f{bottom:679.432800px;}
.y99{bottom:682.952550px;}
.y63{bottom:690.480150px;}
.y6e{bottom:698.932800px;}
.y62{bottom:709.980150px;}
.y98{bottom:710.956500px;}
.y97{bottom:730.456500px;}
.y6d{bottom:735.440700px;}
.y61{bottom:737.984100px;}
.y96{bottom:749.956500px;}
.y60{bottom:757.484100px;}
.y5f{bottom:776.984100px;}
.y95{bottom:777.960450px;}
.y6c{bottom:784.952550px;}
.y5e{bottom:796.484100px;}
.y94{bottom:797.460450px;}
.y1e{bottom:799.952550px;}
.y6b{bottom:804.452550px;}
.y5d{bottom:815.984100px;}
.y93{bottom:816.960450px;}
.y1d{bottom:819.452550px;}
.y6a{bottom:823.952550px;}
.yd{bottom:833.968200px;}
.y92{bottom:844.964400px;}
.y1c{bottom:847.456350px;}
.y69{bottom:851.956350px;}
.yc{bottom:853.468200px;}
.y91{bottom:864.464400px;}
.y1b{bottom:866.956350px;}
.y68{bottom:871.456350px;}
.y5c{bottom:871.992000px;}
.yb{bottom:872.968200px;}
.y26{bottom:879.960450px;}
.y90{bottom:883.964400px;}
.y67{bottom:890.956350px;}
.y5b{bottom:891.492000px;}
.ya{bottom:892.468200px;}
.y1a{bottom:894.960450px;}
.yad{bottom:896.445450px;}
.y25{bottom:899.460450px;}
.y8f{bottom:903.464400px;}
.y66{bottom:910.456350px;}
.y5a{bottom:910.992000px;}
.y9{bottom:911.968200px;}
.y19{bottom:914.460450px;}
.y24{bottom:918.960450px;}
.y65{bottom:929.956350px;}
.y59{bottom:930.492000px;}
.y8{bottom:931.468200px;}
.y23{bottom:938.460450px;}
.y18{bottom:942.464400px;}
.y64{bottom:949.456350px;}
.y8e{bottom:950.968200px;}
.y22{bottom:957.960450px;}
.y17{bottom:961.964400px;}
.y58{bottom:966.999900px;}
.y8d{bottom:970.468200px;}
.y21{bottom:977.460450px;}
.y7{bottom:987.476100px;}
.y16{bottom:989.968200px;}
.y8c{bottom:998.472150px;}
.y6{bottom:1006.976100px;}
.y15{bottom:1009.468200px;}
.y20{bottom:1013.968200px;}
.y8b{bottom:1017.972150px;}
.y5{bottom:1026.476100px;}
.y14{bottom:1037.472150px;}
.y57{bottom:1044.515550px;}
.y4{bottom:1045.976100px;}
.y56{bottom:1064.015550px;}
.y3{bottom:1065.476100px;}
.y55{bottom:1083.515550px;}
.y1f{bottom:1097.495850px;}
.y54{bottom:1103.015550px;}
.y4b{bottom:1109.303700px;}
.y53{bottom:1122.515550px;}
.y2{bottom:1127.495850px;}
.y33{bottom:1133.303700px;}
.y52{bottom:1142.015550px;}
.h2{height:47.220000px;}
.h4{height:58.560000px;}
.h5{height:93.696000px;}
.h3{height:117.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x4{left:100.039350px;}
.x5{left:106.299150px;}
.x6{left:439.132950px;}
.x3{left:442.740300px;}
.x1{left:444.225300px;}
.x7{left:469.842450px;}
.x8{left:484.077900px;}
.x9{left:502.795200px;}
.xa{left:531.588750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:7.138667pt;}
.ls1{letter-spacing:7.139200pt;}
.ws37{word-spacing:-22.357333pt;}
.ws15{word-spacing:-15.093333pt;}
.ws44{word-spacing:-14.773333pt;}
.ws43{word-spacing:-14.293333pt;}
.ws10{word-spacing:-13.973333pt;}
.ws62{word-spacing:-13.440000pt;}
.ws38{word-spacing:-2.506667pt;}
.wsf{word-spacing:-2.453333pt;}
.ws5f{word-spacing:-2.400000pt;}
.ws54{word-spacing:-2.293333pt;}
.wsc{word-spacing:-2.240000pt;}
.ws36{word-spacing:-1.973333pt;}
.ws27{word-spacing:-1.760000pt;}
.ws4{word-spacing:-1.653333pt;}
.ws42{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.546667pt;}
.ws4c{word-spacing:-1.440000pt;}
.wse{word-spacing:-1.386667pt;}
.ws56{word-spacing:-1.333333pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws60{word-spacing:-1.226667pt;}
.ws31{word-spacing:-1.120000pt;}
.wsa{word-spacing:-1.066667pt;}
.ws3{word-spacing:-0.906667pt;}
.wsd{word-spacing:-0.853333pt;}
.ws14{word-spacing:-0.426667pt;}
.ws41{word-spacing:-0.320000pt;}
.ws6{word-spacing:-0.266667pt;}
.ws5{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws55{word-spacing:0.053333pt;}
.ws21{word-spacing:0.106667pt;}
.ws13{word-spacing:0.160000pt;}
.ws30{word-spacing:0.213333pt;}
.ws47{word-spacing:0.266667pt;}
.ws5a{word-spacing:0.480000pt;}
.ws8{word-spacing:0.640000pt;}
.ws4a{word-spacing:0.746667pt;}
.ws7{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.853333pt;}
.ws2d{word-spacing:0.906667pt;}
.ws26{word-spacing:1.333333pt;}
.ws11{word-spacing:1.386667pt;}
.ws2e{word-spacing:1.440000pt;}
.ws35{word-spacing:1.600000pt;}
.ws45{word-spacing:1.653333pt;}
.ws25{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.866667pt;}
.ws2{word-spacing:1.920000pt;}
.ws5b{word-spacing:1.973333pt;}
.ws28{word-spacing:2.026667pt;}
.ws23{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.346667pt;}
.ws4b{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.720000pt;}
.ws3f{word-spacing:2.773333pt;}
.ws12{word-spacing:2.933333pt;}
.ws2b{word-spacing:2.986667pt;}
.ws33{word-spacing:3.040000pt;}
.ws40{word-spacing:3.200000pt;}
.ws3b{word-spacing:3.520000pt;}
.ws51{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.946667pt;}
.ws1b{word-spacing:4.053333pt;}
.ws16{word-spacing:4.266667pt;}
.ws9{word-spacing:4.320000pt;}
.ws3d{word-spacing:4.480000pt;}
.ws34{word-spacing:4.800000pt;}
.ws3c{word-spacing:4.853333pt;}
.ws58{word-spacing:5.066667pt;}
.ws61{word-spacing:5.173333pt;}
.ws20{word-spacing:5.226667pt;}
.ws57{word-spacing:5.386667pt;}
.ws46{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.493333pt;}
.ws1c{word-spacing:5.546667pt;}
.ws5e{word-spacing:5.600000pt;}
.ws39{word-spacing:5.813333pt;}
.ws53{word-spacing:6.026667pt;}
.ws5d{word-spacing:6.240000pt;}
.ws52{word-spacing:6.506667pt;}
.ws32{word-spacing:6.613333pt;}
.ws22{word-spacing:6.720000pt;}
.ws24{word-spacing:7.306667pt;}
.ws50{word-spacing:7.360000pt;}
.ws4d{word-spacing:7.413333pt;}
.ws5c{word-spacing:7.466667pt;}
.ws1{word-spacing:8.000000pt;}
.ws17{word-spacing:8.160000pt;}
.wsb{word-spacing:8.480000pt;}
.ws49{word-spacing:8.533333pt;}
.ws18{word-spacing:8.853333pt;}
.ws29{word-spacing:9.333333pt;}
.ws3a{word-spacing:9.866667pt;}
.ws2a{word-spacing:10.080000pt;}
.ws48{word-spacing:15.413333pt;}
.ws59{word-spacing:15.520000pt;}
._4{margin-left:-67.306667pt;}
._7{margin-left:-4.573867pt;}
._2{margin-left:-3.253333pt;}
._0{margin-left:-1.600000pt;}
._1{width:1.589333pt;}
._3{width:3.674667pt;}
._5{width:4.880000pt;}
._6{width:7.214933pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.790800pt;}
.yac{bottom:150.201067pt;}
.y4a{bottom:150.972400pt;}
.y49{bottom:168.305733pt;}
.yab{bottom:175.093467pt;}
.y48{bottom:193.198133pt;}
.yaa{bottom:199.985867pt;}
.y47{bottom:210.531467pt;}
.ya9{bottom:217.319200pt;}
.y13{bottom:222.146133pt;}
.y46{bottom:227.864800pt;}
.y12{bottom:239.479467pt;}
.ya8{bottom:242.211600pt;}
.y45{bottom:252.757200pt;}
.y11{bottom:256.812800pt;}
.y44{bottom:270.090533pt;}
.y10{bottom:274.146133pt;}
.y43{bottom:287.423867pt;}
.ya7{bottom:290.043600pt;}
.yf{bottom:291.479467pt;}
.y42{bottom:304.757200pt;}
.ye{bottom:308.812800pt;}
.ya6{bottom:314.936000pt;}
.y41{bottom:329.649600pt;}
.y32{bottom:335.037467pt;}
.ya5{bottom:339.828400pt;}
.y40{bottom:346.982933pt;}
.y31{bottom:352.370667pt;}
.y3f{bottom:364.316267pt;}
.ya4{bottom:364.720800pt;}
.y30{bottom:369.704000pt;}
.y8a{bottom:381.623600pt;}
.y2f{bottom:387.037333pt;}
.y3e{bottom:389.208667pt;}
.ya3{bottom:389.613200pt;}
.y89{bottom:398.956933pt;}
.y2e{bottom:404.370667pt;}
.y3d{bottom:406.542000pt;}
.y88{bottom:416.290267pt;}
.ya2{bottom:420.832667pt;}
.y2d{bottom:421.704000pt;}
.y3c{bottom:423.875333pt;}
.y87{bottom:433.623600pt;}
.ya1{bottom:438.166000pt;}
.y2c{bottom:446.596533pt;}
.y3b{bottom:448.767733pt;}
.y80{bottom:452.111733pt;}
.y77{bottom:457.714533pt;}
.ya0{bottom:463.058400pt;}
.y2b{bottom:463.929867pt;}
.y3a{bottom:466.101067pt;}
.y7f{bottom:469.445067pt;}
.y76{bottom:475.047867pt;}
.y9f{bottom:480.391733pt;}
.y2a{bottom:481.263200pt;}
.y51{bottom:481.941200pt;}
.y86{bottom:483.408267pt;}
.y39{bottom:483.434400pt;}
.y7e{bottom:486.778400pt;}
.y75{bottom:492.381200pt;}
.y9e{bottom:497.725067pt;}
.y29{bottom:498.596533pt;}
.y50{bottom:499.274533pt;}
.y85{bottom:500.741600pt;}
.y7d{bottom:504.111733pt;}
.y38{bottom:508.326800pt;}
.y74{bottom:509.714533pt;}
.y28{bottom:515.929867pt;}
.y4f{bottom:516.607867pt;}
.y84{bottom:518.074933pt;}
.y7c{bottom:521.445067pt;}
.y9d{bottom:522.617467pt;}
.y37{bottom:525.660133pt;}
.y27{bottom:533.263200pt;}
.y4e{bottom:533.941200pt;}
.y73{bottom:534.606933pt;}
.y83{bottom:535.408267pt;}
.y7b{bottom:538.778400pt;}
.y9c{bottom:539.950800pt;}
.y36{bottom:542.993467pt;}
.y4d{bottom:551.274533pt;}
.y72{bottom:551.940267pt;}
.y82{bottom:552.741600pt;}
.y7a{bottom:556.111733pt;}
.y9b{bottom:564.843200pt;}
.y35{bottom:567.885867pt;}
.y4c{bottom:568.607867pt;}
.y71{bottom:569.273600pt;}
.y81{bottom:570.074933pt;}
.y79{bottom:573.445067pt;}
.y34{bottom:585.219200pt;}
.y70{bottom:586.606933pt;}
.y9a{bottom:589.735600pt;}
.y78{bottom:590.778400pt;}
.y6f{bottom:603.940267pt;}
.y99{bottom:607.068933pt;}
.y63{bottom:613.760133pt;}
.y6e{bottom:621.273600pt;}
.y62{bottom:631.093467pt;}
.y98{bottom:631.961333pt;}
.y97{bottom:649.294667pt;}
.y6d{bottom:653.725067pt;}
.y61{bottom:655.985867pt;}
.y96{bottom:666.628000pt;}
.y60{bottom:673.319200pt;}
.y5f{bottom:690.652533pt;}
.y95{bottom:691.520400pt;}
.y6c{bottom:697.735600pt;}
.y5e{bottom:707.985867pt;}
.y94{bottom:708.853733pt;}
.y1e{bottom:711.068933pt;}
.y6b{bottom:715.068933pt;}
.y5d{bottom:725.319200pt;}
.y93{bottom:726.187067pt;}
.y1d{bottom:728.402267pt;}
.y6a{bottom:732.402267pt;}
.yd{bottom:741.305067pt;}
.y92{bottom:751.079467pt;}
.y1c{bottom:753.294533pt;}
.y69{bottom:757.294533pt;}
.yc{bottom:758.638400pt;}
.y91{bottom:768.412800pt;}
.y1b{bottom:770.627867pt;}
.y68{bottom:774.627867pt;}
.y5c{bottom:775.104000pt;}
.yb{bottom:775.971733pt;}
.y26{bottom:782.187067pt;}
.y90{bottom:785.746133pt;}
.y67{bottom:791.961200pt;}
.y5b{bottom:792.437333pt;}
.ya{bottom:793.305067pt;}
.y1a{bottom:795.520400pt;}
.yad{bottom:796.840400pt;}
.y25{bottom:799.520400pt;}
.y8f{bottom:803.079467pt;}
.y66{bottom:809.294533pt;}
.y5a{bottom:809.770667pt;}
.y9{bottom:810.638400pt;}
.y19{bottom:812.853733pt;}
.y24{bottom:816.853733pt;}
.y65{bottom:826.627867pt;}
.y59{bottom:827.104000pt;}
.y8{bottom:827.971733pt;}
.y23{bottom:834.187067pt;}
.y18{bottom:837.746133pt;}
.y64{bottom:843.961200pt;}
.y8e{bottom:845.305067pt;}
.y22{bottom:851.520400pt;}
.y17{bottom:855.079467pt;}
.y58{bottom:859.555467pt;}
.y8d{bottom:862.638400pt;}
.y21{bottom:868.853733pt;}
.y7{bottom:877.756533pt;}
.y16{bottom:879.971733pt;}
.y8c{bottom:887.530800pt;}
.y6{bottom:895.089867pt;}
.y15{bottom:897.305067pt;}
.y20{bottom:901.305067pt;}
.y8b{bottom:904.864133pt;}
.y5{bottom:912.423200pt;}
.y14{bottom:922.197467pt;}
.y57{bottom:928.458267pt;}
.y4{bottom:929.756533pt;}
.y56{bottom:945.791600pt;}
.y3{bottom:947.089867pt;}
.y55{bottom:963.124933pt;}
.y1f{bottom:975.551867pt;}
.y54{bottom:980.458267pt;}
.y4b{bottom:986.047733pt;}
.y53{bottom:997.791600pt;}
.y2{bottom:1002.218533pt;}
.y33{bottom:1007.381067pt;}
.y52{bottom:1015.124933pt;}
.h2{height:41.973333pt;}
.h4{height:52.053333pt;}
.h5{height:83.285333pt;}
.h3{height:104.106667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x4{left:88.923867pt;}
.x5{left:94.488133pt;}
.x6{left:390.340400pt;}
.x3{left:393.546933pt;}
.x1{left:394.866933pt;}
.x7{left:417.637733pt;}
.x8{left:430.291467pt;}
.x9{left:446.929067pt;}
.xa{left:472.523333pt;}
}




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