
    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_5185535fa8351c13c5af0089.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_1ba186007a084ed0c528b8ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_81c09ffea303620cbe0d6ea5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_37073f0dee1edde7e66a7aa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_d25b0e3a604867f963bb9578.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e7b63da5971c872c046057d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_33b15d593cc5f197b71af047.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_b29d213e5b23b8e5d3990792.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_8c6fd4328148705332687b62.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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_58a0adde12e0a129005c59f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.078000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005749px;}
.ls0{letter-spacing:2.986053px;}
.lsa{letter-spacing:4.647277px;}
.ls3{letter-spacing:4.712731px;}
.ls2{letter-spacing:9.098189px;}
.ls5{letter-spacing:14.530921px;}
.ls7{letter-spacing:19.767289px;}
.lsc{letter-spacing:25.003657px;}
.lsd{letter-spacing:25.461839px;}
.ls9{letter-spacing:27.556387px;}
.lse{letter-spacing:29.912752px;}
.ls6{letter-spacing:30.370934px;}
.ls4{letter-spacing:31.025480px;}
.ls8{letter-spacing:32.727300px;}
.lsb{letter-spacing:35.280029px;}
.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;}
}
.ws31{word-spacing:-42.637126px;}
.ws7{word-spacing:-22.416000px;}
.ws44{word-spacing:-18.183288px;}
.ws2f{word-spacing:-3.652367px;}
.ws42{word-spacing:-2.277820px;}
.ws13{word-spacing:-1.950547px;}
.wsc{word-spacing:-1.819638px;}
.ws46{word-spacing:-1.754183px;}
.ws2d{word-spacing:-1.426910px;}
.ws2b{word-spacing:-1.296001px;}
.ws14{word-spacing:-0.052364px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:0.013091px;}
.ws2e{word-spacing:0.798546px;}
.ws43{word-spacing:1.453092px;}
.ws35{word-spacing:1.584001px;}
.ws4b{word-spacing:1.911274px;}
.ws12{word-spacing:1.976729px;}
.ws24{word-spacing:2.042184px;}
.ws4a{word-spacing:2.762184px;}
.ws2a{word-spacing:2.827639px;}
.ws22{word-spacing:2.893093px;}
.ws1e{word-spacing:3.220366px;}
.ws3f{word-spacing:3.351276px;}
.ws4{word-spacing:3.613094px;}
.wsa{word-spacing:3.678549px;}
.ws3c{word-spacing:3.809458px;}
.ws15{word-spacing:4.071276px;}
.ws9{word-spacing:4.162913px;}
.ws2c{word-spacing:4.228367px;}
.ws34{word-spacing:4.464004px;}
.ws29{word-spacing:4.483200px;}
.ws38{word-spacing:4.791277px;}
.ws18{word-spacing:4.856731px;}
.ws1f{word-spacing:4.987641px;}
.ws33{word-spacing:5.144732px;}
.wsd{word-spacing:5.380368px;}
.ws28{word-spacing:5.707641px;}
.ws1a{word-spacing:6.034914px;}
.ws3b{word-spacing:6.427642px;}
.ws11{word-spacing:6.493096px;}
.ws26{word-spacing:6.885824px;}
.ws23{word-spacing:7.474915px;}
.ws1d{word-spacing:7.540370px;}
.ws37{word-spacing:7.802188px;}
.ws2{word-spacing:7.990856px;}
.wsb{word-spacing:8.129461px;}
.ws10{word-spacing:8.194916px;}
.ws1b{word-spacing:8.260371px;}
.ws1c{word-spacing:9.111280px;}
.ws19{word-spacing:9.242190px;}
.ws3{word-spacing:9.589000px;}
.wsf{word-spacing:9.831281px;}
.ws39{word-spacing:9.896736px;}
.ws4d{word-spacing:10.158554px;}
.ws48{word-spacing:10.682191px;}
.ws5{word-spacing:10.878555px;}
.wse{word-spacing:11.205828px;}
.ws36{word-spacing:11.533101px;}
.ws25{word-spacing:12.056737px;}
.ws4c{word-spacing:12.122192px;}
.ws30{word-spacing:12.253101px;}
.ws21{word-spacing:12.907647px;}
.ws20{word-spacing:12.973102px;}
.ws3e{word-spacing:13.496739px;}
.ws32{word-spacing:14.470046px;}
.ws49{word-spacing:14.476046px;}
.ws1{word-spacing:16.418975px;}
.ws17{word-spacing:16.965832px;}
.ws41{word-spacing:24.938203px;}
.ws45{word-spacing:25.396385px;}
.ws3a{word-spacing:27.752750px;}
.ws47{word-spacing:30.370934px;}
.ws0{word-spacing:31.322414px;}
.ws27{word-spacing:32.334572px;}
.ws3d{word-spacing:39.403669px;}
.ws8{word-spacing:39.639306px;}
.ws16{word-spacing:58.281600px;}
._d{margin-left:-6.283642px;}
._1{margin-left:-4.312955px;}
._27{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._15{margin-left:-1.050852px;}
._1e{width:1.116307px;}
._3{width:2.223667px;}
._21{width:3.600003px;}
._0{width:4.610401px;}
._22{width:16.168748px;}
._13{width:17.476378px;}
._24{width:21.298068px;}
._18{width:23.301838px;}
._25{width:24.939992px;}
._16{width:26.185418px;}
._26{width:27.812837px;}
._1b{width:28.865479px;}
._28{width:30.172781px;}
._14{width:31.418208px;}
._1d{width:33.641875px;}
._17{width:37.636395px;}
._1a{width:39.929095px;}
._1c{width:41.103700px;}
._19{width:42.872763px;}
._23{width:54.187571px;}
._5{width:60.545505px;}
._7{width:66.894601px;}
._20{width:75.272790px;}
._1f{width:80.697600px;}
._f{width:656.506060px;}
._e{width:1223.477383px;}
._6{width:1258.624714px;}
._c{width:1320.810163px;}
._11{width:1349.604819px;}
._b{width:1443.210265px;}
._10{width:1552.581323px;}
._8{width:1712.881427px;}
._a{width:1756.997828px;}
._9{width:1759.025131px;}
._4{width:2079.361733px;}
._12{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:93.813000px;}
.y2b{bottom:176.005500px;}
.y2a{bottom:196.329000px;}
.y50{bottom:209.458500px;}
.y29{bottom:216.652500px;}
.y73{bottom:227.011500px;}
.y28{bottom:236.976000px;}
.y4f{bottom:242.911500px;}
.y27{bottom:257.419500px;}
.y72{bottom:259.548000px;}
.y4e{bottom:275.884500px;}
.y26{bottom:277.743000px;}
.y71{bottom:292.084500px;}
.y25{bottom:298.066500px;}
.y4d{bottom:312.111000px;}
.y24{bottom:318.391500px;}
.y70{bottom:322.767000px;}
.y6f{bottom:343.090500px;}
.y23{bottom:355.263000px;}
.y4c{bottom:357.162000px;}
.y6e{bottom:363.415500px;}
.y4b{bottom:377.487000px;}
.y6d{bottom:383.739000px;}
.y22{bottom:401.692500px;}
.y4a{bottom:410.458500px;}
.y6c{bottom:419.101500px;}
.y21{bottom:422.016000px;}
.y49{bottom:430.783500px;}
.y20{bottom:442.341000px;}
.y48{bottom:451.107000px;}
.y6b{bottom:462.642000px;}
.y1f{bottom:462.664500px;}
.y47{bottom:479.658000px;}
.y6a{bottom:482.965500px;}
.y1e{bottom:483.106500px;}
.y87{bottom:492.319500px;}
.y1d{bottom:503.431500px;}
.y69{bottom:508.468500px;}
.y86{bottom:512.644500px;}
.y46{bottom:515.809500px;}
.y1c{bottom:523.755000px;}
.y68{bottom:528.792000px;}
.y7{bottom:532.603500px;}
.y85{bottom:532.968000px;}
.y45{bottom:536.133000px;}
.y1b{bottom:544.078500px;}
.y84{bottom:553.291500px;}
.y67{bottom:554.295000px;}
.y44{bottom:556.456500px;}
.y1a{bottom:564.402000px;}
.y6{bottom:569.326500px;}
.y83{bottom:573.615000px;}
.y66{bottom:574.618500px;}
.y19{bottom:584.845500px;}
.y43{bottom:585.009000px;}
.y82{bottom:593.938500px;}
.y65{bottom:594.942000px;}
.y5{bottom:598.059000px;}
.y18{bottom:605.169000px;}
.y64{bottom:615.265500px;}
.y42{bottom:621.159000px;}
.y17{bottom:625.492500px;}
.y81{bottom:630.468000px;}
.y63{bottom:635.590500px;}
.y41{bottom:641.482500px;}
.y16{bottom:645.816000px;}
.y40{bottom:661.807500px;}
.y15{bottom:666.141000px;}
.y62{bottom:670.953000px;}
.y80{bottom:676.048500px;}
.y14{bottom:687.426000px;}
.y3f{bottom:690.358500px;}
.y7f{bottom:709.821000px;}
.y61{bottom:714.492000px;}
.y13{bottom:724.351500px;}
.y3e{bottom:726.510000px;}
.y60{bottom:734.817000px;}
.y7e{bottom:743.595000px;}
.y3d{bottom:746.833500px;}
.y4{bottom:759.814500px;}
.y5f{bottom:760.320000px;}
.y12{bottom:761.277000px;}
.y7d{bottom:777.367500px;}
.y5e{bottom:780.643500px;}
.y3c{bottom:783.060000px;}
.y3{bottom:797.095500px;}
.y11{bottom:798.202500px;}
.y5d{bottom:800.967000px;}
.y7c{bottom:811.141500px;}
.y5c{bottom:821.290500px;}
.y3b{bottom:828.111000px;}
.y7b{bottom:831.465000px;}
.y10{bottom:835.128000px;}
.y5b{bottom:841.614000px;}
.y2{bottom:841.927500px;}
.y3a{bottom:848.436000px;}
.y7a{bottom:867.993000px;}
.y39{bottom:868.759500px;}
.yf{bottom:872.053500px;}
.y5a{bottom:876.976500px;}
.y38{bottom:895.407000px;}
.ye{bottom:908.979000px;}
.y79{bottom:913.573500px;}
.y37{bottom:915.730500px;}
.y59{bottom:920.517000px;}
.y36{bottom:936.055500px;}
.y58{bottom:940.840500px;}
.yd{bottom:945.906000px;}
.y78{bottom:947.347500px;}
.y35{bottom:956.379000px;}
.y57{bottom:966.343500px;}
.yc{bottom:966.372000px;}
.y34{bottom:976.702500px;}
.y77{bottom:981.121500px;}
.y56{bottom:986.668500px;}
.yb{bottom:986.839500px;}
.y33{bottom:997.026000px;}
.y55{bottom:1006.992000px;}
.ya{bottom:1007.305500px;}
.y76{bottom:1014.894000px;}
.y32{bottom:1017.349500px;}
.y54{bottom:1027.315500px;}
.y31{bottom:1037.674500px;}
.y9{bottom:1044.231000px;}
.y53{bottom:1047.639000px;}
.y75{bottom:1048.668000px;}
.y30{bottom:1057.998000px;}
.y52{bottom:1067.962500px;}
.y2f{bottom:1078.321500px;}
.y8{bottom:1081.156500px;}
.y74{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y51{bottom:1088.287500px;}
.y2e{bottom:1098.645000px;}
.y2d{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:61.168950px;}
.h5{height:72.062735px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x6{left:164.010000px;}
.x8{left:251.563500px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
.x9{left:456.876000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.736000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.005110pt;}
.ls0{letter-spacing:2.654270pt;}
.lsa{letter-spacing:4.130913pt;}
.ls3{letter-spacing:4.189094pt;}
.ls2{letter-spacing:8.087279pt;}
.ls5{letter-spacing:12.916374pt;}
.ls7{letter-spacing:17.570924pt;}
.lsc{letter-spacing:22.225473pt;}
.lsd{letter-spacing:22.632746pt;}
.ls9{letter-spacing:24.494566pt;}
.lse{letter-spacing:26.589113pt;}
.ls6{letter-spacing:26.996386pt;}
.ls4{letter-spacing:27.578205pt;}
.ls8{letter-spacing:29.090933pt;}
.lsb{letter-spacing:31.360026pt;}
.ws31{word-spacing:-37.899668pt;}
.ws7{word-spacing:-19.925333pt;}
.ws44{word-spacing:-16.162923pt;}
.ws2f{word-spacing:-3.246548pt;}
.ws42{word-spacing:-2.024729pt;}
.ws13{word-spacing:-1.733820pt;}
.wsc{word-spacing:-1.617456pt;}
.ws46{word-spacing:-1.559274pt;}
.ws2d{word-spacing:-1.268365pt;}
.ws2b{word-spacing:-1.152001pt;}
.ws14{word-spacing:-0.046545pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:0.011636pt;}
.ws2e{word-spacing:0.709819pt;}
.ws43{word-spacing:1.291637pt;}
.ws35{word-spacing:1.408001pt;}
.ws4b{word-spacing:1.698911pt;}
.ws12{word-spacing:1.757092pt;}
.ws24{word-spacing:1.815274pt;}
.ws4a{word-spacing:2.455275pt;}
.ws2a{word-spacing:2.513457pt;}
.ws22{word-spacing:2.571639pt;}
.ws1e{word-spacing:2.862548pt;}
.ws3f{word-spacing:2.978912pt;}
.ws4{word-spacing:3.211639pt;}
.wsa{word-spacing:3.269821pt;}
.ws3c{word-spacing:3.386185pt;}
.ws15{word-spacing:3.618912pt;}
.ws9{word-spacing:3.700367pt;}
.ws2c{word-spacing:3.758549pt;}
.ws34{word-spacing:3.968003pt;}
.ws29{word-spacing:3.985067pt;}
.ws38{word-spacing:4.258913pt;}
.ws18{word-spacing:4.317095pt;}
.ws1f{word-spacing:4.433458pt;}
.ws33{word-spacing:4.573095pt;}
.wsd{word-spacing:4.782549pt;}
.ws28{word-spacing:5.073459pt;}
.ws1a{word-spacing:5.364368pt;}
.ws3b{word-spacing:5.713459pt;}
.ws11{word-spacing:5.771641pt;}
.ws26{word-spacing:6.120732pt;}
.ws23{word-spacing:6.644369pt;}
.ws1d{word-spacing:6.702551pt;}
.ws37{word-spacing:6.935279pt;}
.ws2{word-spacing:7.102983pt;}
.wsb{word-spacing:7.226188pt;}
.ws10{word-spacing:7.284370pt;}
.ws1b{word-spacing:7.342552pt;}
.ws1c{word-spacing:8.098916pt;}
.ws19{word-spacing:8.215280pt;}
.ws3{word-spacing:8.523556pt;}
.wsf{word-spacing:8.738916pt;}
.ws39{word-spacing:8.797098pt;}
.ws4d{word-spacing:9.029826pt;}
.ws48{word-spacing:9.495281pt;}
.ws5{word-spacing:9.669826pt;}
.wse{word-spacing:9.960736pt;}
.ws36{word-spacing:10.251645pt;}
.ws25{word-spacing:10.717100pt;}
.ws4c{word-spacing:10.775282pt;}
.ws30{word-spacing:10.891645pt;}
.ws21{word-spacing:11.473464pt;}
.ws20{word-spacing:11.531646pt;}
.ws3e{word-spacing:11.997101pt;}
.ws32{word-spacing:12.862263pt;}
.ws49{word-spacing:12.867596pt;}
.ws1{word-spacing:14.594644pt;}
.ws17{word-spacing:15.080740pt;}
.ws41{word-spacing:22.167291pt;}
.ws45{word-spacing:22.574564pt;}
.ws3a{word-spacing:24.669111pt;}
.ws47{word-spacing:26.996386pt;}
.ws0{word-spacing:27.842146pt;}
.ws27{word-spacing:28.741842pt;}
.ws3d{word-spacing:35.025484pt;}
.ws8{word-spacing:35.234938pt;}
.ws16{word-spacing:51.805867pt;}
._d{margin-left:-5.585459pt;}
._1{margin-left:-3.833738pt;}
._27{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._15{margin-left:-0.934091pt;}
._1e{width:0.992273pt;}
._3{width:1.976593pt;}
._21{width:3.200003pt;}
._0{width:4.098134pt;}
._22{width:14.372220pt;}
._13{width:15.534558pt;}
._24{width:18.931616pt;}
._18{width:20.712745pt;}
._25{width:22.168882pt;}
._16{width:23.275927pt;}
._26{width:24.722522pt;}
._1b{width:25.658203pt;}
._28{width:26.820250pt;}
._14{width:27.927296pt;}
._1d{width:29.903889pt;}
._17{width:33.454573pt;}
._1a{width:35.492529pt;}
._1c{width:36.536622pt;}
._19{width:38.109123pt;}
._23{width:48.166730pt;}
._5{width:53.818227pt;}
._7{width:59.461868pt;}
._20{width:66.909147pt;}
._1f{width:71.731200pt;}
._f{width:583.560942pt;}
._e{width:1087.535452pt;}
._6{width:1118.777524pt;}
._c{width:1174.053478pt;}
._11{width:1199.648728pt;}
._b{width:1282.853569pt;}
._10{width:1380.072287pt;}
._8{width:1522.561269pt;}
._a{width:1561.775847pt;}
._9{width:1563.577894pt;}
._4{width:1848.321540pt;}
._12{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.389333pt;}
.y2b{bottom:156.449333pt;}
.y2a{bottom:174.514667pt;}
.y50{bottom:186.185333pt;}
.y29{bottom:192.580000pt;}
.y73{bottom:201.788000pt;}
.y28{bottom:210.645333pt;}
.y4f{bottom:215.921333pt;}
.y27{bottom:228.817333pt;}
.y72{bottom:230.709333pt;}
.y4e{bottom:245.230667pt;}
.y26{bottom:246.882667pt;}
.y71{bottom:259.630667pt;}
.y25{bottom:264.948000pt;}
.y4d{bottom:277.432000pt;}
.y24{bottom:283.014667pt;}
.y70{bottom:286.904000pt;}
.y6f{bottom:304.969333pt;}
.y23{bottom:315.789333pt;}
.y4c{bottom:317.477333pt;}
.y6e{bottom:323.036000pt;}
.y4b{bottom:335.544000pt;}
.y6d{bottom:341.101333pt;}
.y22{bottom:357.060000pt;}
.y4a{bottom:364.852000pt;}
.y6c{bottom:372.534667pt;}
.y21{bottom:375.125333pt;}
.y49{bottom:382.918667pt;}
.y20{bottom:393.192000pt;}
.y48{bottom:400.984000pt;}
.y6b{bottom:411.237333pt;}
.y1f{bottom:411.257333pt;}
.y47{bottom:426.362667pt;}
.y6a{bottom:429.302667pt;}
.y1e{bottom:429.428000pt;}
.y87{bottom:437.617333pt;}
.y1d{bottom:447.494667pt;}
.y69{bottom:451.972000pt;}
.y86{bottom:455.684000pt;}
.y46{bottom:458.497333pt;}
.y1c{bottom:465.560000pt;}
.y68{bottom:470.037333pt;}
.y7{bottom:473.425333pt;}
.y85{bottom:473.749333pt;}
.y45{bottom:476.562667pt;}
.y1b{bottom:483.625333pt;}
.y84{bottom:491.814667pt;}
.y67{bottom:492.706667pt;}
.y44{bottom:494.628000pt;}
.y1a{bottom:501.690667pt;}
.y6{bottom:506.068000pt;}
.y83{bottom:509.880000pt;}
.y66{bottom:510.772000pt;}
.y19{bottom:519.862667pt;}
.y43{bottom:520.008000pt;}
.y82{bottom:527.945333pt;}
.y65{bottom:528.837333pt;}
.y5{bottom:531.608000pt;}
.y18{bottom:537.928000pt;}
.y64{bottom:546.902667pt;}
.y42{bottom:552.141333pt;}
.y17{bottom:555.993333pt;}
.y81{bottom:560.416000pt;}
.y63{bottom:564.969333pt;}
.y41{bottom:570.206667pt;}
.y16{bottom:574.058667pt;}
.y40{bottom:588.273333pt;}
.y15{bottom:592.125333pt;}
.y62{bottom:596.402667pt;}
.y80{bottom:600.932000pt;}
.y14{bottom:611.045333pt;}
.y3f{bottom:613.652000pt;}
.y7f{bottom:630.952000pt;}
.y61{bottom:635.104000pt;}
.y13{bottom:643.868000pt;}
.y3e{bottom:645.786667pt;}
.y60{bottom:653.170667pt;}
.y7e{bottom:660.973333pt;}
.y3d{bottom:663.852000pt;}
.y4{bottom:675.390667pt;}
.y5f{bottom:675.840000pt;}
.y12{bottom:676.690667pt;}
.y7d{bottom:690.993333pt;}
.y5e{bottom:693.905333pt;}
.y3c{bottom:696.053333pt;}
.y3{bottom:708.529333pt;}
.y11{bottom:709.513333pt;}
.y5d{bottom:711.970667pt;}
.y7c{bottom:721.014667pt;}
.y5c{bottom:730.036000pt;}
.y3b{bottom:736.098667pt;}
.y7b{bottom:739.080000pt;}
.y10{bottom:742.336000pt;}
.y5b{bottom:748.101333pt;}
.y2{bottom:748.380000pt;}
.y3a{bottom:754.165333pt;}
.y7a{bottom:771.549333pt;}
.y39{bottom:772.230667pt;}
.yf{bottom:775.158667pt;}
.y5a{bottom:779.534667pt;}
.y38{bottom:795.917333pt;}
.ye{bottom:807.981333pt;}
.y79{bottom:812.065333pt;}
.y37{bottom:813.982667pt;}
.y59{bottom:818.237333pt;}
.y36{bottom:832.049333pt;}
.y58{bottom:836.302667pt;}
.yd{bottom:840.805333pt;}
.y78{bottom:842.086667pt;}
.y35{bottom:850.114667pt;}
.y57{bottom:858.972000pt;}
.yc{bottom:858.997333pt;}
.y34{bottom:868.180000pt;}
.y77{bottom:872.108000pt;}
.y56{bottom:877.038667pt;}
.yb{bottom:877.190667pt;}
.y33{bottom:886.245333pt;}
.y55{bottom:895.104000pt;}
.ya{bottom:895.382667pt;}
.y76{bottom:902.128000pt;}
.y32{bottom:904.310667pt;}
.y54{bottom:913.169333pt;}
.y31{bottom:922.377333pt;}
.y9{bottom:928.205333pt;}
.y53{bottom:931.234667pt;}
.y75{bottom:932.149333pt;}
.y30{bottom:940.442667pt;}
.y52{bottom:949.300000pt;}
.y2f{bottom:958.508000pt;}
.y8{bottom:961.028000pt;}
.y74{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y51{bottom:967.366667pt;}
.y2e{bottom:976.573333pt;}
.y2d{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:54.372400pt;}
.h5{height:64.055764pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x6{left:145.786667pt;}
.x8{left:223.612000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
.x9{left:406.112000pt;}
}




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