
    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_37177a53169332c3d81334e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_7e8d5879437cec3219ac2545.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_4475c93838047046c2072028.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6c51032cb10a4868ec986f78.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7a4fd0d39a991dfcc6aa3403.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_ec22ea3370372811f74743b4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10e879496ef6f5bf9e915094.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.ls1e{letter-spacing:-1.458000px;}
.ls21{letter-spacing:-1.092000px;}
.ls19{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.738000px;}
.ls1a{letter-spacing:-0.690000px;}
.ls22{letter-spacing:-0.684000px;}
.ls1c{letter-spacing:-0.378600px;}
.ls18{letter-spacing:-0.369600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.350400px;}
.ls16{letter-spacing:-0.341400px;}
.ls17{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.043200px;}
.ls15{letter-spacing:-0.037440px;}
.ls4b{letter-spacing:-0.028080px;}
.ls14{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.013440px;}
.ls4{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.037440px;}
.ls3d{letter-spacing:0.134640px;}
.ls26{letter-spacing:0.151920px;}
.ls10{letter-spacing:0.157440px;}
.ls2e{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.217440px;}
.ls35{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.341280px;}
.ls1b{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.350400px;}
.ls2d{letter-spacing:0.350640px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378720px;}
.ls5{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.485280px;}
.lse{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.748080px;}
.ls3c{letter-spacing:0.750000px;}
.lsb{letter-spacing:0.757440px;}
.ls2a{letter-spacing:4.140000px;}
.ls34{letter-spacing:5.580000px;}
.ls20{letter-spacing:9.180000px;}
.ls12{letter-spacing:9.900000px;}
.ls2f{letter-spacing:10.620000px;}
.ls33{letter-spacing:12.060000px;}
.ls46{letter-spacing:14.220000px;}
.lsf{letter-spacing:14.940000px;}
.ls42{letter-spacing:15.660000px;}
.ls2c{letter-spacing:17.820000px;}
.lsc{letter-spacing:19.260000px;}
.ls2b{letter-spacing:19.980000px;}
.ls40{letter-spacing:20.700000px;}
.ls31{letter-spacing:21.420000px;}
.ls11{letter-spacing:22.140000px;}
.ls1f{letter-spacing:22.860000px;}
.ls24{letter-spacing:24.300000px;}
.ls4a{letter-spacing:25.020000px;}
.ls47{letter-spacing:25.740000px;}
.ls30{letter-spacing:26.460000px;}
.ls7{letter-spacing:27.900000px;}
.ls28{letter-spacing:30.060000px;}
.ls43{letter-spacing:30.780000px;}
.ls41{letter-spacing:31.476000px;}
.ls3e{letter-spacing:31.500000px;}
.ls25{letter-spacing:32.940000px;}
.ls3f{letter-spacing:33.660000px;}
.ls45{letter-spacing:35.100000px;}
.ls37{letter-spacing:35.820000px;}
.ls48{letter-spacing:36.540000px;}
.ls49{letter-spacing:37.260000px;}
.ls44{letter-spacing:38.160000px;}
.ls4e{letter-spacing:46.620000px;}
.ls4c{letter-spacing:50.220000px;}
.ls39{letter-spacing:50.940000px;}
.ls38{letter-spacing:51.120000px;}
.lsd{letter-spacing:64.620000px;}
.ls36{letter-spacing:65.520000px;}
.ls13{letter-spacing:71.820000px;}
.ls27{letter-spacing:80.460000px;}
.ls4f{letter-spacing:121.500000px;}
.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;}
}
.ws16{word-spacing:-21.810000px;}
.ws3{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.401280px;}
.ws15{word-spacing:-21.312720px;}
.ws6{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws17{word-spacing:-21.031920px;}
.ws1{word-spacing:-21.022560px;}
.ws13{word-spacing:-21.016800px;}
.ws2{word-spacing:-20.718600px;}
.ws11{word-spacing:-20.709600px;}
.wsb{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.690400px;}
.wsa{word-spacing:-20.681400px;}
.ws10{word-spacing:-20.376000px;}
.ws5{word-spacing:-20.370000px;}
.ws14{word-spacing:-20.322000px;}
.wsf{word-spacing:-19.980000px;}
.wse{word-spacing:-19.968000px;}
.wsc{word-spacing:-19.602000px;}
.ws12{word-spacing:0.000000px;}
._13{margin-left:-3.423840px;}
._0{margin-left:-1.432080px;}
._1{width:1.027680px;}
._9{width:2.962320px;}
._22{width:4.127760px;}
._2f{width:5.179440px;}
._f{width:6.253920px;}
._1a{width:7.918560px;}
._7{width:9.287760px;}
._25{width:10.866960px;}
._12{width:12.176160px;}
._11{width:13.271280px;}
._8{width:14.289120px;}
._3{width:15.813600px;}
._2e{width:16.818960px;}
._2d{width:17.978880px;}
._2c{width:19.482960px;}
._19{width:22.093920px;}
._10{width:23.126160px;}
._1b{width:24.425760px;}
._38{width:25.585680px;}
._a{width:26.622000px;}
._2{width:27.650640px;}
._4{width:28.724400px;}
._18{width:29.811600px;}
._17{width:30.905280px;}
._39{width:32.334000px;}
._1c{width:33.471120px;}
._21{width:34.622640px;}
._1e{width:35.970480px;}
._3a{width:37.163280px;}
._3b{width:38.843760px;}
._31{width:39.862560px;}
._d{width:41.137920px;}
._2a{width:42.419520px;}
._2b{width:43.422360px;}
._1d{width:45.573840px;}
._3c{width:46.923600px;}
._23{width:48.029760px;}
._e{width:49.358160px;}
._24{width:50.369040px;}
._32{width:51.383280px;}
._33{width:52.927920px;}
._36{width:54.447840px;}
._6{width:55.542960px;}
._26{width:60.484320px;}
._c{width:63.701520px;}
._b{width:64.722480px;}
._5{width:66.602880px;}
._30{width:68.418240px;}
._16{width:71.358480px;}
._14{width:72.487920px;}
._28{width:73.839120px;}
._27{width:75.563280px;}
._37{width:78.076080px;}
._29{width:80.340480px;}
._15{width:83.312640px;}
._34{width:94.075200px;}
._35{width:104.529360px;}
._1f{width:130.066560px;}
._20{width:131.313360px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.660000px;}
.y3{bottom:31.140000px;}
.y2{bottom:57.600000px;}
.y1e{bottom:93.420000px;}
.y52{bottom:116.460000px;}
.y39{bottom:123.660000px;}
.y1d{bottom:129.636000px;}
.y51{bottom:152.670000px;}
.y65{bottom:153.030000px;}
.y38{bottom:162.570000px;}
.y1c{bottom:168.510000px;}
.y50{bottom:188.850000px;}
.y64{bottom:189.210000px;}
.y37{bottom:198.750000px;}
.y1b{bottom:204.690000px;}
.y4f{bottom:225.210000px;}
.y63{bottom:225.390000px;}
.y36{bottom:235.110000px;}
.y1a{bottom:244.110000px;}
.y4e{bottom:261.390000px;}
.y62{bottom:261.750000px;}
.y35{bottom:271.290000px;}
.y19{bottom:280.470000px;}
.y4d{bottom:297.570000px;}
.y61{bottom:297.930000px;}
.y34{bottom:307.470000px;}
.y18{bottom:316.650000px;}
.y4c{bottom:333.750000px;}
.y60{bottom:334.110000px;}
.y33{bottom:343.650000px;}
.y17{bottom:352.830000px;}
.y4b{bottom:370.110000px;}
.y5f{bottom:370.290000px;}
.y32{bottom:380.055000px;}
.y16{bottom:389.055000px;}
.y76{bottom:390.495000px;}
.y4a{bottom:406.335000px;}
.y5e{bottom:406.515000px;}
.y31{bottom:416.235000px;}
.y15{bottom:425.415000px;}
.y75{bottom:427.755000px;}
.y49{bottom:442.515000px;}
.y5d{bottom:442.875000px;}
.y30{bottom:452.415000px;}
.y14{bottom:461.595000px;}
.y74{bottom:464.115000px;}
.y48{bottom:478.695000px;}
.y5c{bottom:479.055000px;}
.y2f{bottom:488.595000px;}
.y13{bottom:497.775000px;}
.y73{bottom:500.295000px;}
.y47{bottom:515.055000px;}
.y5b{bottom:515.235000px;}
.y2e{bottom:524.955000px;}
.y12{bottom:533.955000px;}
.y72{bottom:536.475000px;}
.y46{bottom:551.235000px;}
.y5a{bottom:551.415000px;}
.y2d{bottom:561.135000px;}
.y11{bottom:570.315000px;}
.y71{bottom:572.655000px;}
.y59{bottom:587.775000px;}
.y45{bottom:590.475000px;}
.y2c{bottom:597.315000px;}
.y70{bottom:609.015000px;}
.y10{bottom:609.195000px;}
.y58{bottom:623.955000px;}
.y44{bottom:626.655000px;}
.y2b{bottom:633.525000px;}
.y6f{bottom:645.225000px;}
.yf{bottom:645.405000px;}
.y57{bottom:660.165000px;}
.y43{bottom:662.865000px;}
.y2a{bottom:669.705000px;}
.y6e{bottom:681.405000px;}
.ye{bottom:681.585000px;}
.y56{bottom:696.345000px;}
.y42{bottom:699.045000px;}
.y29{bottom:706.065000px;}
.y6d{bottom:717.585000px;}
.yd{bottom:717.765000px;}
.y55{bottom:732.705000px;}
.y41{bottom:735.405000px;}
.y28{bottom:742.245000px;}
.y6c{bottom:753.765000px;}
.yc{bottom:754.125000px;}
.y54{bottom:768.885000px;}
.y40{bottom:777.525000px;}
.y27{bottom:781.125000px;}
.y6b{bottom:790.125000px;}
.yb{bottom:790.305000px;}
.y3f{bottom:813.705000px;}
.y26{bottom:817.305000px;}
.y53{bottom:820.005000px;}
.y6a{bottom:826.305000px;}
.ya{bottom:832.605000px;}
.y3e{bottom:850.065000px;}
.y25{bottom:856.365000px;}
.y69{bottom:862.485000px;}
.y9{bottom:880.845000px;}
.y3d{bottom:886.290000px;}
.y24{bottom:892.590000px;}
.y68{bottom:898.710000px;}
.y3c{bottom:922.470000px;}
.y23{bottom:928.770000px;}
.y8{bottom:929.130000px;}
.y67{bottom:935.070000px;}
.y3b{bottom:958.650000px;}
.y22{bottom:964.950000px;}
.y7{bottom:977.370000px;}
.y66{bottom:985.830000px;}
.y3a{bottom:1000.950000px;}
.y21{bottom:1001.310000px;}
.y6{bottom:1025.070000px;}
.y20{bottom:1037.490000px;}
.y5{bottom:1061.430000px;}
.y1f{bottom:1073.670000px;}
.y1{bottom:1194.300000px;}
.h3{height:22.320000px;}
.h7{height:59.066719px;}
.h2{height:65.884219px;}
.h6{height:82.635820px;}
.h5{height:82.676953px;}
.h8{height:83.787539px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.856000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:18.900000px;}
.x4{left:70.560000px;}
.xb{left:73.980000px;}
.x1{left:84.960000px;}
.xd{left:90.936000px;}
.xf{left:95.436000px;}
.xc{left:110.916000px;}
.x10{left:137.916000px;}
.x12{left:148.896000px;}
.xa{left:181.470000px;}
.x8{left:200.550000px;}
.x7{left:264.270000px;}
.x5{left:325.155000px;}
.x9{left:346.395000px;}
.x11{left:367.095000px;}
.x2{left:415.155000px;}
.x6{left:430.455000px;}
.xe{left:797.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.296000pt;}
.ls21{letter-spacing:-0.970667pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.656000pt;}
.ls1a{letter-spacing:-0.613333pt;}
.ls22{letter-spacing:-0.608000pt;}
.ls1c{letter-spacing:-0.336533pt;}
.ls18{letter-spacing:-0.328533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.311467pt;}
.ls16{letter-spacing:-0.303467pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.038400pt;}
.ls15{letter-spacing:-0.033280pt;}
.ls4b{letter-spacing:-0.024960pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011947pt;}
.ls4{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.033280pt;}
.ls3d{letter-spacing:0.119680pt;}
.ls26{letter-spacing:0.135040pt;}
.ls10{letter-spacing:0.139947pt;}
.ls2e{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.193280pt;}
.ls35{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.303360pt;}
.ls1b{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.311467pt;}
.ls2d{letter-spacing:0.311680pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336640pt;}
.ls5{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.431360pt;}
.lse{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.664960pt;}
.ls3c{letter-spacing:0.666667pt;}
.lsb{letter-spacing:0.673280pt;}
.ls2a{letter-spacing:3.680000pt;}
.ls34{letter-spacing:4.960000pt;}
.ls20{letter-spacing:8.160000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls2f{letter-spacing:9.440000pt;}
.ls33{letter-spacing:10.720000pt;}
.ls46{letter-spacing:12.640000pt;}
.lsf{letter-spacing:13.280000pt;}
.ls42{letter-spacing:13.920000pt;}
.ls2c{letter-spacing:15.840000pt;}
.lsc{letter-spacing:17.120000pt;}
.ls2b{letter-spacing:17.760000pt;}
.ls40{letter-spacing:18.400000pt;}
.ls31{letter-spacing:19.040000pt;}
.ls11{letter-spacing:19.680000pt;}
.ls1f{letter-spacing:20.320000pt;}
.ls24{letter-spacing:21.600000pt;}
.ls4a{letter-spacing:22.240000pt;}
.ls47{letter-spacing:22.880000pt;}
.ls30{letter-spacing:23.520000pt;}
.ls7{letter-spacing:24.800000pt;}
.ls28{letter-spacing:26.720000pt;}
.ls43{letter-spacing:27.360000pt;}
.ls41{letter-spacing:27.978667pt;}
.ls3e{letter-spacing:28.000000pt;}
.ls25{letter-spacing:29.280000pt;}
.ls3f{letter-spacing:29.920000pt;}
.ls45{letter-spacing:31.200000pt;}
.ls37{letter-spacing:31.840000pt;}
.ls48{letter-spacing:32.480000pt;}
.ls49{letter-spacing:33.120000pt;}
.ls44{letter-spacing:33.920000pt;}
.ls4e{letter-spacing:41.440000pt;}
.ls4c{letter-spacing:44.640000pt;}
.ls39{letter-spacing:45.280000pt;}
.ls38{letter-spacing:45.440000pt;}
.lsd{letter-spacing:57.440000pt;}
.ls36{letter-spacing:58.240000pt;}
.ls13{letter-spacing:63.840000pt;}
.ls27{letter-spacing:71.520000pt;}
.ls4f{letter-spacing:108.000000pt;}
.ws16{word-spacing:-19.386667pt;}
.ws3{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws7{word-spacing:-19.023467pt;}
.wsd{word-spacing:-19.023360pt;}
.ws15{word-spacing:-18.944640pt;}
.ws6{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws17{word-spacing:-18.695040pt;}
.ws1{word-spacing:-18.686720pt;}
.ws13{word-spacing:-18.681600pt;}
.ws2{word-spacing:-18.416533pt;}
.ws11{word-spacing:-18.408533pt;}
.wsb{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.391467pt;}
.wsa{word-spacing:-18.383467pt;}
.ws10{word-spacing:-18.112000pt;}
.ws5{word-spacing:-18.106667pt;}
.ws14{word-spacing:-18.064000pt;}
.wsf{word-spacing:-17.760000pt;}
.wse{word-spacing:-17.749333pt;}
.wsc{word-spacing:-17.424000pt;}
.ws12{word-spacing:0.000000pt;}
._13{margin-left:-3.043413pt;}
._0{margin-left:-1.272960pt;}
._1{width:0.913493pt;}
._9{width:2.633173pt;}
._22{width:3.669120pt;}
._2f{width:4.603947pt;}
._f{width:5.559040pt;}
._1a{width:7.038720pt;}
._7{width:8.255787pt;}
._25{width:9.659520pt;}
._12{width:10.823253pt;}
._11{width:11.796693pt;}
._8{width:12.701440pt;}
._3{width:14.056533pt;}
._2e{width:14.950187pt;}
._2d{width:15.981227pt;}
._2c{width:17.318187pt;}
._19{width:19.639040pt;}
._10{width:20.556587pt;}
._1b{width:21.711787pt;}
._38{width:22.742827pt;}
._a{width:23.664000pt;}
._2{width:24.578347pt;}
._4{width:25.532800pt;}
._18{width:26.499200pt;}
._17{width:27.471360pt;}
._39{width:28.741333pt;}
._1c{width:29.752107pt;}
._21{width:30.775680pt;}
._1e{width:31.973760pt;}
._3a{width:33.034027pt;}
._3b{width:34.527787pt;}
._31{width:35.433387pt;}
._d{width:36.567040pt;}
._2a{width:37.706240pt;}
._2b{width:38.597653pt;}
._1d{width:40.510080pt;}
._3c{width:41.709867pt;}
._23{width:42.693120pt;}
._e{width:43.873920pt;}
._24{width:44.772480pt;}
._32{width:45.674027pt;}
._33{width:47.047040pt;}
._36{width:48.398080pt;}
._6{width:49.371520pt;}
._26{width:53.763840pt;}
._c{width:56.623573pt;}
._b{width:57.531093pt;}
._5{width:59.202560pt;}
._30{width:60.816213pt;}
._16{width:63.429760pt;}
._14{width:64.433707pt;}
._28{width:65.634773pt;}
._27{width:67.167360pt;}
._37{width:69.400960pt;}
._29{width:71.413760pt;}
._15{width:74.055680pt;}
._34{width:83.622400pt;}
._35{width:92.914987pt;}
._1f{width:115.614720pt;}
._20{width:116.722987pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.920000pt;}
.y3{bottom:27.680000pt;}
.y2{bottom:51.200000pt;}
.y1e{bottom:83.040000pt;}
.y52{bottom:103.520000pt;}
.y39{bottom:109.920000pt;}
.y1d{bottom:115.232000pt;}
.y51{bottom:135.706667pt;}
.y65{bottom:136.026667pt;}
.y38{bottom:144.506667pt;}
.y1c{bottom:149.786667pt;}
.y50{bottom:167.866667pt;}
.y64{bottom:168.186667pt;}
.y37{bottom:176.666667pt;}
.y1b{bottom:181.946667pt;}
.y4f{bottom:200.186667pt;}
.y63{bottom:200.346667pt;}
.y36{bottom:208.986667pt;}
.y1a{bottom:216.986667pt;}
.y4e{bottom:232.346667pt;}
.y62{bottom:232.666667pt;}
.y35{bottom:241.146667pt;}
.y19{bottom:249.306667pt;}
.y4d{bottom:264.506667pt;}
.y61{bottom:264.826667pt;}
.y34{bottom:273.306667pt;}
.y18{bottom:281.466667pt;}
.y4c{bottom:296.666667pt;}
.y60{bottom:296.986667pt;}
.y33{bottom:305.466667pt;}
.y17{bottom:313.626667pt;}
.y4b{bottom:328.986667pt;}
.y5f{bottom:329.146667pt;}
.y32{bottom:337.826667pt;}
.y16{bottom:345.826667pt;}
.y76{bottom:347.106667pt;}
.y4a{bottom:361.186667pt;}
.y5e{bottom:361.346667pt;}
.y31{bottom:369.986667pt;}
.y15{bottom:378.146667pt;}
.y75{bottom:380.226667pt;}
.y49{bottom:393.346667pt;}
.y5d{bottom:393.666667pt;}
.y30{bottom:402.146667pt;}
.y14{bottom:410.306667pt;}
.y74{bottom:412.546667pt;}
.y48{bottom:425.506667pt;}
.y5c{bottom:425.826667pt;}
.y2f{bottom:434.306667pt;}
.y13{bottom:442.466667pt;}
.y73{bottom:444.706667pt;}
.y47{bottom:457.826667pt;}
.y5b{bottom:457.986667pt;}
.y2e{bottom:466.626667pt;}
.y12{bottom:474.626667pt;}
.y72{bottom:476.866667pt;}
.y46{bottom:489.986667pt;}
.y5a{bottom:490.146667pt;}
.y2d{bottom:498.786667pt;}
.y11{bottom:506.946667pt;}
.y71{bottom:509.026667pt;}
.y59{bottom:522.466667pt;}
.y45{bottom:524.866667pt;}
.y2c{bottom:530.946667pt;}
.y70{bottom:541.346667pt;}
.y10{bottom:541.506667pt;}
.y58{bottom:554.626667pt;}
.y44{bottom:557.026667pt;}
.y2b{bottom:563.133333pt;}
.y6f{bottom:573.533333pt;}
.yf{bottom:573.693333pt;}
.y57{bottom:586.813333pt;}
.y43{bottom:589.213333pt;}
.y2a{bottom:595.293333pt;}
.y6e{bottom:605.693333pt;}
.ye{bottom:605.853333pt;}
.y56{bottom:618.973333pt;}
.y42{bottom:621.373333pt;}
.y29{bottom:627.613333pt;}
.y6d{bottom:637.853333pt;}
.yd{bottom:638.013333pt;}
.y55{bottom:651.293333pt;}
.y41{bottom:653.693333pt;}
.y28{bottom:659.773333pt;}
.y6c{bottom:670.013333pt;}
.yc{bottom:670.333333pt;}
.y54{bottom:683.453333pt;}
.y40{bottom:691.133333pt;}
.y27{bottom:694.333333pt;}
.y6b{bottom:702.333333pt;}
.yb{bottom:702.493333pt;}
.y3f{bottom:723.293333pt;}
.y26{bottom:726.493333pt;}
.y53{bottom:728.893333pt;}
.y6a{bottom:734.493333pt;}
.ya{bottom:740.093333pt;}
.y3e{bottom:755.613333pt;}
.y25{bottom:761.213333pt;}
.y69{bottom:766.653333pt;}
.y9{bottom:782.973333pt;}
.y3d{bottom:787.813333pt;}
.y24{bottom:793.413333pt;}
.y68{bottom:798.853333pt;}
.y3c{bottom:819.973333pt;}
.y23{bottom:825.573333pt;}
.y8{bottom:825.893333pt;}
.y67{bottom:831.173333pt;}
.y3b{bottom:852.133333pt;}
.y22{bottom:857.733333pt;}
.y7{bottom:868.773333pt;}
.y66{bottom:876.293333pt;}
.y3a{bottom:889.733333pt;}
.y21{bottom:890.053333pt;}
.y6{bottom:911.173333pt;}
.y20{bottom:922.213333pt;}
.y5{bottom:943.493333pt;}
.y1f{bottom:954.373333pt;}
.y1{bottom:1061.600000pt;}
.h3{height:19.840000pt;}
.h7{height:52.503750pt;}
.h2{height:58.563750pt;}
.h6{height:73.454062pt;}
.h5{height:73.490625pt;}
.h8{height:74.477812pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.872000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:16.800000pt;}
.x4{left:62.720000pt;}
.xb{left:65.760000pt;}
.x1{left:75.520000pt;}
.xd{left:80.832000pt;}
.xf{left:84.832000pt;}
.xc{left:98.592000pt;}
.x10{left:122.592000pt;}
.x12{left:132.352000pt;}
.xa{left:161.306667pt;}
.x8{left:178.266667pt;}
.x7{left:234.906667pt;}
.x5{left:289.026667pt;}
.x9{left:307.906667pt;}
.x11{left:326.306667pt;}
.x2{left:369.026667pt;}
.x6{left:382.626667pt;}
.xe{left:709.093333pt;}
}




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