
    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_9ca35a406c0a15807382b3a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.995605;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_8c537fb290ead4dff41c03b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_f8146d52030bbd1d51fc004b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892090;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_4a251976d92c0c95b162ea93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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;}
.v2{vertical-align:23.400000px;}
.v1{vertical-align:25.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.078000px;}
.ls3{letter-spacing:10.380000px;}
.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;}
}
.ws0{word-spacing:-29.232000px;}
.ws5{word-spacing:-27.144000px;}
.ws1{word-spacing:-25.056000px;}
.ws4{word-spacing:-22.968000px;}
.ws6{word-spacing:-20.922000px;}
.ws9{word-spacing:-20.880000px;}
.ws3{word-spacing:-19.020000px;}
.wsb{word-spacing:-18.792000px;}
.ws2{word-spacing:-12.172800px;}
.wsa{word-spacing:-11.031600px;}
.ws8{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.056000px;}
._7{width:1.044000px;}
._1{width:2.046000px;}
._2{width:3.168000px;}
._4{width:4.434000px;}
._3{width:5.544000px;}
._5{width:7.116000px;}
._6{width:11.154000px;}
._8{width:15.120000px;}
._9{width:16.320000px;}
.fc4{color:rgb(7,55,99);}
.fc3{color:rgb(0,0,128);}
.fc5{color:rgb(12,52,61);}
.fc2{color:rgb(17,85,204);}
.fc6{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fs7{font-size:34.800000px;}
.fs3{font-size:38.400000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1e{bottom:33.691500px;}
.yb7{bottom:114.241500px;}
.y12b{bottom:120.691500px;}
.y6b{bottom:124.141500px;}
.yec{bottom:129.991500px;}
.yf2{bottom:137.491500px;}
.y116{bottom:138.841500px;}
.y138{bottom:139.141500px;}
.yb6{bottom:143.041500px;}
.y1d{bottom:146.791500px;}
.y81{bottom:148.141500px;}
.y12a{bottom:149.491500px;}
.y6a{bottom:152.941500px;}
.yeb{bottom:158.791500px;}
.ydd{bottom:160.141500px;}
.y112{bottom:164.041500px;}
.yf1{bottom:166.291500px;}
.y137{bottom:167.941500px;}
.yb5{bottom:171.841500px;}
.y1c{bottom:175.591500px;}
.y80{bottom:176.941500px;}
.y129{bottom:178.291500px;}
.y69{bottom:181.741500px;}
.yea{bottom:187.591500px;}
.ydc{bottom:188.941500px;}
.y111{bottom:192.841500px;}
.yf0{bottom:195.091500px;}
.y136{bottom:196.741500px;}
.yb4{bottom:200.641500px;}
.y39{bottom:202.741500px;}
.y1b{bottom:204.391500px;}
.ya4{bottom:205.591500px;}
.y7f{bottom:205.741500px;}
.y92{bottom:206.341500px;}
.y128{bottom:207.091500px;}
.y68{bottom:210.541500px;}
.ye9{bottom:216.391500px;}
.y54{bottom:217.141500px;}
.ydb{bottom:217.741500px;}
.y110{bottom:221.641500px;}
.yef{bottom:223.891500px;}
.y135{bottom:225.541500px;}
.yb3{bottom:229.441500px;}
.y38{bottom:231.541500px;}
.y1a{bottom:233.191500px;}
.ya3{bottom:234.391500px;}
.y7e{bottom:234.541500px;}
.y91{bottom:235.141500px;}
.y127{bottom:235.891500px;}
.y67{bottom:239.341500px;}
.ye8{bottom:245.191500px;}
.y53{bottom:245.941500px;}
.yda{bottom:246.541500px;}
.yd1{bottom:249.541500px;}
.y10f{bottom:250.441500px;}
.yf9{bottom:252.691500px;}
.yee{bottom:255.091500px;}
.y11d{bottom:256.891500px;}
.yb2{bottom:258.241500px;}
.y37{bottom:260.341500px;}
.y19{bottom:261.991500px;}
.ya2{bottom:263.191500px;}
.y7d{bottom:263.341500px;}
.y90{bottom:263.941500px;}
.y126{bottom:267.091500px;}
.y66{bottom:268.141500px;}
.ye7{bottom:273.991500px;}
.y52{bottom:274.741500px;}
.yd9{bottom:275.341500px;}
.yd0{bottom:278.341500px;}
.y10e{bottom:279.241500px;}
.yf8{bottom:281.491500px;}
.y115{bottom:283.891500px;}
.y11c{bottom:285.691500px;}
.yb1{bottom:287.041500px;}
.y36{bottom:289.141500px;}
.y103{bottom:290.641500px;}
.ya1{bottom:291.991500px;}
.y8f{bottom:292.741500px;}
.y18{bottom:293.341500px;}
.y7c{bottom:294.541500px;}
.y65{bottom:296.941500px;}
.y51{bottom:303.541500px;}
.ye6{bottom:305.341500px;}
.yd8{bottom:306.691500px;}
.ycf{bottom:307.141500px;}
.y10d{bottom:308.041500px;}
.y134{bottom:308.341500px;}
.yf7{bottom:310.291500px;}
.y114{bottom:312.691500px;}
.y11b{bottom:314.491500px;}
.y35{bottom:317.941500px;}
.yb0{bottom:318.391500px;}
.y125{bottom:318.541500px;}
.y102{bottom:319.441500px;}
.ya0{bottom:320.791500px;}
.y8e{bottom:321.541500px;}
.y64{bottom:328.291500px;}
.y50{bottom:332.341500px;}
.y133{bottom:332.791500px;}
.yce{bottom:335.941500px;}
.y10c{bottom:339.391500px;}
.yf6{bottom:341.491500px;}
.y124{bottom:342.991500px;}
.y11a{bottom:343.291500px;}
.y34{bottom:346.741500px;}
.y101{bottom:348.241500px;}
.yd4{bottom:349.591500px;}
.y9f{bottom:351.991500px;}
.y8d{bottom:352.891500px;}
.y17{bottom:353.341500px;}
.y7b{bottom:354.541500px;}
.y4f{bottom:363.541500px;}
.ycd{bottom:364.741500px;}
.y119{bottom:372.091500px;}
.ye5{bottom:374.191500px;}
.y33{bottom:375.541500px;}
.y100{bottom:377.041500px;}
.yaf{bottom:378.391500px;}
.yd7{bottom:379.891500px;}
.y16{bottom:382.141500px;}
.y7a{bottom:383.341500px;}
.y63{bottom:388.291500px;}
.ycc{bottom:393.541500px;}
.y147{bottom:396.241500px;}
.ye4{bottom:398.641500px;}
.y118{bottom:403.291500px;}
.y10b{bottom:404.941500px;}
.yff{bottom:405.841500px;}
.y32{bottom:406.891500px;}
.yae{bottom:407.191500px;}
.yd6{bottom:408.541500px;}
.yd3{bottom:409.591500px;}
.y15{bottom:410.941500px;}
.y9e{bottom:411.991500px;}
.y79{bottom:412.141500px;}
.y8c{bottom:412.891500px;}
.y132{bottom:414.691500px;}
.y62{bottom:417.091500px;}
.y146{bottom:422.491500px;}
.y4e{bottom:423.541500px;}
.ycb{bottom:424.741500px;}
.y10a{bottom:433.741500px;}
.yfe{bottom:434.641500px;}
.yad{bottom:435.991500px;}
.y113{bottom:438.391500px;}
.y14{bottom:439.741500px;}
.y9d{bottom:440.791500px;}
.y78{bottom:440.941500px;}
.y8b{bottom:441.691500px;}
.y131{bottom:443.491500px;}
.y61{bottom:445.891500px;}
.y145{bottom:448.591500px;}
.y4d{bottom:452.341500px;}
.y109{bottom:462.541500px;}
.yac{bottom:464.791500px;}
.yfd{bottom:465.991500px;}
.y31{bottom:466.891500px;}
.y13{bottom:468.541500px;}
.y9c{bottom:469.591500px;}
.y77{bottom:469.741500px;}
.y8a{bottom:470.491500px;}
.y130{bottom:472.291500px;}
.y60{bottom:474.691500px;}
.y4c{bottom:481.141500px;}
.yca{bottom:484.741500px;}
.y144{bottom:485.191500px;}
.y108{bottom:491.341500px;}
.yab{bottom:493.591500px;}
.y117{bottom:494.941500px;}
.y30{bottom:495.691500px;}
.yed{bottom:495.991500px;}
.y9b{bottom:498.391500px;}
.y76{bottom:498.541500px;}
.y89{bottom:499.291500px;}
.y12{bottom:499.741500px;}
.y12f{bottom:501.091500px;}
.y143{bottom:503.941500px;}
.y5f{bottom:505.891500px;}
.y4b{bottom:509.941500px;}
.yc9{bottom:513.541500px;}
.y107{bottom:520.141500px;}
.yf5{bottom:522.391500px;}
.y2f{bottom:524.491500px;}
.yaa{bottom:524.791500px;}
.y9a{bottom:527.191500px;}
.y75{bottom:527.341500px;}
.y88{bottom:528.091500px;}
.y12e{bottom:529.891500px;}
.yfc{bottom:534.841500px;}
.y4a{bottom:538.741500px;}
.y142{bottom:538.891500px;}
.y11{bottom:541.741500px;}
.yc8{bottom:542.341500px;}
.y123{bottom:551.191500px;}
.y106{bottom:551.491500px;}
.y2e{bottom:553.291500px;}
.yf4{bottom:553.591500px;}
.y99{bottom:555.991500px;}
.y74{bottom:556.141500px;}
.y87{bottom:556.891500px;}
.y12d{bottom:558.691500px;}
.yfb{bottom:559.291500px;}
.y5e{bottom:565.891500px;}
.y10{bottom:566.191500px;}
.y49{bottom:567.541500px;}
.yc7{bottom:571.141500px;}
.y141{bottom:580.441500px;}
.y122{bottom:582.391500px;}
.y2d{bottom:584.491500px;}
.ya9{bottom:584.791500px;}
.y98{bottom:587.341500px;}
.y73{bottom:587.491500px;}
.y86{bottom:588.091500px;}
.y5d{bottom:594.691500px;}
.y48{bottom:598.891500px;}
.yc6{bottom:599.941500px;}
.y140{bottom:609.241500px;}
.ya8{bottom:613.591500px;}
.ye3{bottom:616.141500px;}
.y105{bottom:618.691500px;}
.y5c{bottom:623.491500px;}
.yc5{bottom:628.741500px;}
.y13f{bottom:638.041500px;}
.y85{bottom:639.541500px;}
.ya7{bottom:642.391500px;}
.y104{bottom:643.141500px;}
.yd2{bottom:644.941500px;}
.y97{bottom:647.341500px;}
.y72{bottom:647.491500px;}
.y2c{bottom:648.241500px;}
.yfa{bottom:648.691500px;}
.y5b{bottom:652.291500px;}
.yf{bottom:654.541500px;}
.y47{bottom:658.891500px;}
.yc4{bottom:660.091500px;}
.y84{bottom:663.991500px;}
.ya6{bottom:671.191500px;}
.y2b{bottom:672.691500px;}
.yd5{bottom:673.741500px;}
.y96{bottom:676.141500px;}
.y71{bottom:676.291500px;}
.y12c{bottom:677.491500px;}
.y5a{bottom:681.091500px;}
.y13e{bottom:682.741500px;}
.ye{bottom:683.341500px;}
.y46{bottom:687.691500px;}
.ye2{bottom:699.991500px;}
.ya5{bottom:702.541500px;}
.y95{bottom:704.941500px;}
.y70{bottom:705.091500px;}
.y13d{bottom:708.841500px;}
.y59{bottom:709.891500px;}
.yd{bottom:712.141500px;}
.y45{bottom:716.491500px;}
.yc3{bottom:720.091500px;}
.ye1{bottom:728.791500px;}
.yf3{bottom:731.341500px;}
.y83{bottom:733.741500px;}
.y6f{bottom:733.891500px;}
.y13c{bottom:735.091500px;}
.yc{bottom:740.941500px;}
.y58{bottom:741.241500px;}
.y44{bottom:745.291500px;}
.yc2{bottom:748.891500px;}
.y121{bottom:757.591500px;}
.ye0{bottom:760.141500px;}
.y13b{bottom:761.191500px;}
.y2a{bottom:762.541500px;}
.y6e{bottom:765.091500px;}
.yb{bottom:769.741500px;}
.y43{bottom:774.091500px;}
.yc1{bottom:777.691500px;}
.y120{bottom:788.941500px;}
.y29{bottom:791.341500px;}
.y13a{bottom:796.141500px;}
.ya{bottom:798.541500px;}
.y42{bottom:802.891500px;}
.yc0{bottom:806.491500px;}
.y139{bottom:815.341500px;}
.y57{bottom:817.291500px;}
.y28{bottom:820.141500px;}
.y6d{bottom:820.891500px;}
.y9{bottom:827.341500px;}
.y41{bottom:834.091500px;}
.ybf{bottom:837.691500px;}
.y56{bottom:841.741500px;}
.y27{bottom:848.941500px;}
.y6c{bottom:849.541500px;}
.y94{bottom:851.341500px;}
.y26{bottom:877.741500px;}
.y8{bottom:878.791500px;}
.y82{bottom:880.141500px;}
.y40{bottom:894.091500px;}
.ybe{bottom:897.691500px;}
.ydf{bottom:906.541500px;}
.y25{bottom:908.941500px;}
.y93{bottom:911.341500px;}
.y3f{bottom:922.891500px;}
.ybd{bottom:926.491500px;}
.y7{bottom:929.941500px;}
.y11f{bottom:935.341500px;}
.yde{bottom:937.741500px;}
.y55{bottom:940.141500px;}
.y3e{bottom:951.691500px;}
.ybc{bottom:955.291500px;}
.y6{bottom:958.741500px;}
.y11e{bottom:966.541500px;}
.y24{bottom:968.941500px;}
.y3d{bottom:980.491500px;}
.ybb{bottom:984.091500px;}
.y5{bottom:987.541500px;}
.y23{bottom:997.741500px;}
.y3c{bottom:1011.841500px;}
.yba{bottom:1015.441500px;}
.y4{bottom:1016.341500px;}
.y22{bottom:1026.541500px;}
.y21{bottom:1055.341500px;}
.y20{bottom:1084.141500px;}
.y3b{bottom:1087.891500px;}
.yb9{bottom:1089.541500px;}
.y3{bottom:1101.391500px;}
.y3a{bottom:1112.641500px;}
.yb8{bottom:1113.991500px;}
.y1f{bottom:1115.491500px;}
.y2{bottom:1135.291500px;}
.he{height:41.027344px;}
.h7{height:45.585938px;}
.hc{height:47.988281px;}
.ha{height:49.500000px;}
.h8{height:50.144531px;}
.hd{height:51.233203px;}
.h5{height:52.787109px;}
.h4{height:54.703125px;}
.h6{height:56.512500px;}
.h9{height:59.261719px;}
.h3{height:63.820312px;}
.hb{height:68.378906px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.150000px;}
.x1{left:114.600000px;}
.x12{left:152.400000px;}
.x9{left:202.050000px;}
.xb{left:205.200000px;}
.x6{left:206.250000px;}
.xa{left:217.350000px;}
.x8{left:227.400000px;}
.x5{left:229.800000px;}
.x7{left:258.000000px;}
.x2{left:349.500000px;}
.x4{left:358.200000px;}
.xf{left:521.400000px;}
.xd{left:552.150000px;}
.xe{left:557.550000px;}
.x11{left:578.550000px;}
.x10{left:580.200000px;}
.xc{left:583.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.800000pt;}
.v1{vertical-align:22.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.069333pt;}
.ls3{letter-spacing:9.226667pt;}
.ws0{word-spacing:-25.984000pt;}
.ws5{word-spacing:-24.128000pt;}
.ws1{word-spacing:-22.272000pt;}
.ws4{word-spacing:-20.416000pt;}
.ws6{word-spacing:-18.597333pt;}
.ws9{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.906667pt;}
.wsb{word-spacing:-16.704000pt;}
.ws2{word-spacing:-10.820267pt;}
.wsa{word-spacing:-9.805867pt;}
.ws8{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.938667pt;}
._7{width:0.928000pt;}
._1{width:1.818667pt;}
._2{width:2.816000pt;}
._4{width:3.941333pt;}
._3{width:4.928000pt;}
._5{width:6.325333pt;}
._6{width:9.914667pt;}
._8{width:13.440000pt;}
._9{width:14.506667pt;}
.fs7{font-size:30.933333pt;}
.fs3{font-size:34.133333pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1e{bottom:29.948000pt;}
.yb7{bottom:101.548000pt;}
.y12b{bottom:107.281333pt;}
.y6b{bottom:110.348000pt;}
.yec{bottom:115.548000pt;}
.yf2{bottom:122.214667pt;}
.y116{bottom:123.414667pt;}
.y138{bottom:123.681333pt;}
.yb6{bottom:127.148000pt;}
.y1d{bottom:130.481333pt;}
.y81{bottom:131.681333pt;}
.y12a{bottom:132.881333pt;}
.y6a{bottom:135.948000pt;}
.yeb{bottom:141.148000pt;}
.ydd{bottom:142.348000pt;}
.y112{bottom:145.814667pt;}
.yf1{bottom:147.814667pt;}
.y137{bottom:149.281333pt;}
.yb5{bottom:152.748000pt;}
.y1c{bottom:156.081333pt;}
.y80{bottom:157.281333pt;}
.y129{bottom:158.481333pt;}
.y69{bottom:161.548000pt;}
.yea{bottom:166.748000pt;}
.ydc{bottom:167.948000pt;}
.y111{bottom:171.414667pt;}
.yf0{bottom:173.414667pt;}
.y136{bottom:174.881333pt;}
.yb4{bottom:178.348000pt;}
.y39{bottom:180.214667pt;}
.y1b{bottom:181.681333pt;}
.ya4{bottom:182.748000pt;}
.y7f{bottom:182.881333pt;}
.y92{bottom:183.414667pt;}
.y128{bottom:184.081333pt;}
.y68{bottom:187.148000pt;}
.ye9{bottom:192.348000pt;}
.y54{bottom:193.014667pt;}
.ydb{bottom:193.548000pt;}
.y110{bottom:197.014667pt;}
.yef{bottom:199.014667pt;}
.y135{bottom:200.481333pt;}
.yb3{bottom:203.948000pt;}
.y38{bottom:205.814667pt;}
.y1a{bottom:207.281333pt;}
.ya3{bottom:208.348000pt;}
.y7e{bottom:208.481333pt;}
.y91{bottom:209.014667pt;}
.y127{bottom:209.681333pt;}
.y67{bottom:212.748000pt;}
.ye8{bottom:217.948000pt;}
.y53{bottom:218.614667pt;}
.yda{bottom:219.148000pt;}
.yd1{bottom:221.814667pt;}
.y10f{bottom:222.614667pt;}
.yf9{bottom:224.614667pt;}
.yee{bottom:226.748000pt;}
.y11d{bottom:228.348000pt;}
.yb2{bottom:229.548000pt;}
.y37{bottom:231.414667pt;}
.y19{bottom:232.881333pt;}
.ya2{bottom:233.948000pt;}
.y7d{bottom:234.081333pt;}
.y90{bottom:234.614667pt;}
.y126{bottom:237.414667pt;}
.y66{bottom:238.348000pt;}
.ye7{bottom:243.548000pt;}
.y52{bottom:244.214667pt;}
.yd9{bottom:244.748000pt;}
.yd0{bottom:247.414667pt;}
.y10e{bottom:248.214667pt;}
.yf8{bottom:250.214667pt;}
.y115{bottom:252.348000pt;}
.y11c{bottom:253.948000pt;}
.yb1{bottom:255.148000pt;}
.y36{bottom:257.014667pt;}
.y103{bottom:258.348000pt;}
.ya1{bottom:259.548000pt;}
.y8f{bottom:260.214667pt;}
.y18{bottom:260.748000pt;}
.y7c{bottom:261.814667pt;}
.y65{bottom:263.948000pt;}
.y51{bottom:269.814667pt;}
.ye6{bottom:271.414667pt;}
.yd8{bottom:272.614667pt;}
.ycf{bottom:273.014667pt;}
.y10d{bottom:273.814667pt;}
.y134{bottom:274.081333pt;}
.yf7{bottom:275.814667pt;}
.y114{bottom:277.948000pt;}
.y11b{bottom:279.548000pt;}
.y35{bottom:282.614667pt;}
.yb0{bottom:283.014667pt;}
.y125{bottom:283.148000pt;}
.y102{bottom:283.948000pt;}
.ya0{bottom:285.148000pt;}
.y8e{bottom:285.814667pt;}
.y64{bottom:291.814667pt;}
.y50{bottom:295.414667pt;}
.y133{bottom:295.814667pt;}
.yce{bottom:298.614667pt;}
.y10c{bottom:301.681333pt;}
.yf6{bottom:303.548000pt;}
.y124{bottom:304.881333pt;}
.y11a{bottom:305.148000pt;}
.y34{bottom:308.214667pt;}
.y101{bottom:309.548000pt;}
.yd4{bottom:310.748000pt;}
.y9f{bottom:312.881333pt;}
.y8d{bottom:313.681333pt;}
.y17{bottom:314.081333pt;}
.y7b{bottom:315.148000pt;}
.y4f{bottom:323.148000pt;}
.ycd{bottom:324.214667pt;}
.y119{bottom:330.748000pt;}
.ye5{bottom:332.614667pt;}
.y33{bottom:333.814667pt;}
.y100{bottom:335.148000pt;}
.yaf{bottom:336.348000pt;}
.yd7{bottom:337.681333pt;}
.y16{bottom:339.681333pt;}
.y7a{bottom:340.748000pt;}
.y63{bottom:345.148000pt;}
.ycc{bottom:349.814667pt;}
.y147{bottom:352.214667pt;}
.ye4{bottom:354.348000pt;}
.y118{bottom:358.481333pt;}
.y10b{bottom:359.948000pt;}
.yff{bottom:360.748000pt;}
.y32{bottom:361.681333pt;}
.yae{bottom:361.948000pt;}
.yd6{bottom:363.148000pt;}
.yd3{bottom:364.081333pt;}
.y15{bottom:365.281333pt;}
.y9e{bottom:366.214667pt;}
.y79{bottom:366.348000pt;}
.y8c{bottom:367.014667pt;}
.y132{bottom:368.614667pt;}
.y62{bottom:370.748000pt;}
.y146{bottom:375.548000pt;}
.y4e{bottom:376.481333pt;}
.ycb{bottom:377.548000pt;}
.y10a{bottom:385.548000pt;}
.yfe{bottom:386.348000pt;}
.yad{bottom:387.548000pt;}
.y113{bottom:389.681333pt;}
.y14{bottom:390.881333pt;}
.y9d{bottom:391.814667pt;}
.y78{bottom:391.948000pt;}
.y8b{bottom:392.614667pt;}
.y131{bottom:394.214667pt;}
.y61{bottom:396.348000pt;}
.y145{bottom:398.748000pt;}
.y4d{bottom:402.081333pt;}
.y109{bottom:411.148000pt;}
.yac{bottom:413.148000pt;}
.yfd{bottom:414.214667pt;}
.y31{bottom:415.014667pt;}
.y13{bottom:416.481333pt;}
.y9c{bottom:417.414667pt;}
.y77{bottom:417.548000pt;}
.y8a{bottom:418.214667pt;}
.y130{bottom:419.814667pt;}
.y60{bottom:421.948000pt;}
.y4c{bottom:427.681333pt;}
.yca{bottom:430.881333pt;}
.y144{bottom:431.281333pt;}
.y108{bottom:436.748000pt;}
.yab{bottom:438.748000pt;}
.y117{bottom:439.948000pt;}
.y30{bottom:440.614667pt;}
.yed{bottom:440.881333pt;}
.y9b{bottom:443.014667pt;}
.y76{bottom:443.148000pt;}
.y89{bottom:443.814667pt;}
.y12{bottom:444.214667pt;}
.y12f{bottom:445.414667pt;}
.y143{bottom:447.948000pt;}
.y5f{bottom:449.681333pt;}
.y4b{bottom:453.281333pt;}
.yc9{bottom:456.481333pt;}
.y107{bottom:462.348000pt;}
.yf5{bottom:464.348000pt;}
.y2f{bottom:466.214667pt;}
.yaa{bottom:466.481333pt;}
.y9a{bottom:468.614667pt;}
.y75{bottom:468.748000pt;}
.y88{bottom:469.414667pt;}
.y12e{bottom:471.014667pt;}
.yfc{bottom:475.414667pt;}
.y4a{bottom:478.881333pt;}
.y142{bottom:479.014667pt;}
.y11{bottom:481.548000pt;}
.yc8{bottom:482.081333pt;}
.y123{bottom:489.948000pt;}
.y106{bottom:490.214667pt;}
.y2e{bottom:491.814667pt;}
.yf4{bottom:492.081333pt;}
.y99{bottom:494.214667pt;}
.y74{bottom:494.348000pt;}
.y87{bottom:495.014667pt;}
.y12d{bottom:496.614667pt;}
.yfb{bottom:497.148000pt;}
.y5e{bottom:503.014667pt;}
.y10{bottom:503.281333pt;}
.y49{bottom:504.481333pt;}
.yc7{bottom:507.681333pt;}
.y141{bottom:515.948000pt;}
.y122{bottom:517.681333pt;}
.y2d{bottom:519.548000pt;}
.ya9{bottom:519.814667pt;}
.y98{bottom:522.081333pt;}
.y73{bottom:522.214667pt;}
.y86{bottom:522.748000pt;}
.y5d{bottom:528.614667pt;}
.y48{bottom:532.348000pt;}
.yc6{bottom:533.281333pt;}
.y140{bottom:541.548000pt;}
.ya8{bottom:545.414667pt;}
.ye3{bottom:547.681333pt;}
.y105{bottom:549.948000pt;}
.y5c{bottom:554.214667pt;}
.yc5{bottom:558.881333pt;}
.y13f{bottom:567.148000pt;}
.y85{bottom:568.481333pt;}
.ya7{bottom:571.014667pt;}
.y104{bottom:571.681333pt;}
.yd2{bottom:573.281333pt;}
.y97{bottom:575.414667pt;}
.y72{bottom:575.548000pt;}
.y2c{bottom:576.214667pt;}
.yfa{bottom:576.614667pt;}
.y5b{bottom:579.814667pt;}
.yf{bottom:581.814667pt;}
.y47{bottom:585.681333pt;}
.yc4{bottom:586.748000pt;}
.y84{bottom:590.214667pt;}
.ya6{bottom:596.614667pt;}
.y2b{bottom:597.948000pt;}
.yd5{bottom:598.881333pt;}
.y96{bottom:601.014667pt;}
.y71{bottom:601.148000pt;}
.y12c{bottom:602.214667pt;}
.y5a{bottom:605.414667pt;}
.y13e{bottom:606.881333pt;}
.ye{bottom:607.414667pt;}
.y46{bottom:611.281333pt;}
.ye2{bottom:622.214667pt;}
.ya5{bottom:624.481333pt;}
.y95{bottom:626.614667pt;}
.y70{bottom:626.748000pt;}
.y13d{bottom:630.081333pt;}
.y59{bottom:631.014667pt;}
.yd{bottom:633.014667pt;}
.y45{bottom:636.881333pt;}
.yc3{bottom:640.081333pt;}
.ye1{bottom:647.814667pt;}
.yf3{bottom:650.081333pt;}
.y83{bottom:652.214667pt;}
.y6f{bottom:652.348000pt;}
.y13c{bottom:653.414667pt;}
.yc{bottom:658.614667pt;}
.y58{bottom:658.881333pt;}
.y44{bottom:662.481333pt;}
.yc2{bottom:665.681333pt;}
.y121{bottom:673.414667pt;}
.ye0{bottom:675.681333pt;}
.y13b{bottom:676.614667pt;}
.y2a{bottom:677.814667pt;}
.y6e{bottom:680.081333pt;}
.yb{bottom:684.214667pt;}
.y43{bottom:688.081333pt;}
.yc1{bottom:691.281333pt;}
.y120{bottom:701.281333pt;}
.y29{bottom:703.414667pt;}
.y13a{bottom:707.681333pt;}
.ya{bottom:709.814667pt;}
.y42{bottom:713.681333pt;}
.yc0{bottom:716.881333pt;}
.y139{bottom:724.748000pt;}
.y57{bottom:726.481333pt;}
.y28{bottom:729.014667pt;}
.y6d{bottom:729.681333pt;}
.y9{bottom:735.414667pt;}
.y41{bottom:741.414667pt;}
.ybf{bottom:744.614667pt;}
.y56{bottom:748.214667pt;}
.y27{bottom:754.614667pt;}
.y6c{bottom:755.148000pt;}
.y94{bottom:756.748000pt;}
.y26{bottom:780.214667pt;}
.y8{bottom:781.148000pt;}
.y82{bottom:782.348000pt;}
.y40{bottom:794.748000pt;}
.ybe{bottom:797.948000pt;}
.ydf{bottom:805.814667pt;}
.y25{bottom:807.948000pt;}
.y93{bottom:810.081333pt;}
.y3f{bottom:820.348000pt;}
.ybd{bottom:823.548000pt;}
.y7{bottom:826.614667pt;}
.y11f{bottom:831.414667pt;}
.yde{bottom:833.548000pt;}
.y55{bottom:835.681333pt;}
.y3e{bottom:845.948000pt;}
.ybc{bottom:849.148000pt;}
.y6{bottom:852.214667pt;}
.y11e{bottom:859.148000pt;}
.y24{bottom:861.281333pt;}
.y3d{bottom:871.548000pt;}
.ybb{bottom:874.748000pt;}
.y5{bottom:877.814667pt;}
.y23{bottom:886.881333pt;}
.y3c{bottom:899.414667pt;}
.yba{bottom:902.614667pt;}
.y4{bottom:903.414667pt;}
.y22{bottom:912.481333pt;}
.y21{bottom:938.081333pt;}
.y20{bottom:963.681333pt;}
.y3b{bottom:967.014667pt;}
.yb9{bottom:968.481333pt;}
.y3{bottom:979.014667pt;}
.y3a{bottom:989.014667pt;}
.yb8{bottom:990.214667pt;}
.y1f{bottom:991.548000pt;}
.y2{bottom:1009.148000pt;}
.he{height:36.468750pt;}
.h7{height:40.520833pt;}
.hc{height:42.656250pt;}
.ha{height:44.000000pt;}
.h8{height:44.572917pt;}
.hd{height:45.540625pt;}
.h5{height:46.921875pt;}
.h4{height:48.625000pt;}
.h6{height:50.233333pt;}
.h9{height:52.677083pt;}
.h3{height:56.729167pt;}
.hb{height:60.781250pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.133333pt;}
.x1{left:101.866667pt;}
.x12{left:135.466667pt;}
.x9{left:179.600000pt;}
.xb{left:182.400000pt;}
.x6{left:183.333333pt;}
.xa{left:193.200000pt;}
.x8{left:202.133333pt;}
.x5{left:204.266667pt;}
.x7{left:229.333333pt;}
.x2{left:310.666667pt;}
.x4{left:318.400000pt;}
.xf{left:463.466667pt;}
.xd{left:490.800000pt;}
.xe{left:495.600000pt;}
.x11{left:514.266667pt;}
.x10{left:515.733333pt;}
.xc{left:518.933333pt;}
}




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