
    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_2894a29ec9eb7109c31b9eb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_ef0f43267acf704a1d73e922.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_3eb0075cb9daa233ead55486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862305;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_dd00e3203e2df11e5e2228d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_c2ba3a4e26f0934810318309.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715820;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_6e743eb26374c1a99c370e0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_bc1d15373e0db203f6cdb27a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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:-27.600000px;}
.v3{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.276000px;}
.ls5{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.408000px;}
.ls3{letter-spacing:1.470000px;}
.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;}
}
.wsa{word-spacing:-36.894000px;}
.ws1{word-spacing:-36.762000px;}
.ws4{word-spacing:-34.914000px;}
.ws8{word-spacing:-30.078000px;}
.ws7{word-spacing:-28.566000px;}
.ws0{word-spacing:-21.388800px;}
.ws9{word-spacing:-14.916000px;}
.ws3{word-spacing:-11.932800px;}
.ws5{word-spacing:-0.066000px;}
.ws6{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.022400px;}
._1{width:1.932000px;}
._6{width:3.064800px;}
._5{width:4.198800px;}
._4{width:5.215200px;}
._2{width:8.580000px;}
._3{width:9.636000px;}
._8{width:128.976000px;}
._7{width:162.372000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.400000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:52.800000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y104{bottom:91.291500px;}
.ye1{bottom:95.491500px;}
.y6d{bottom:98.641500px;}
.yba{bottom:99.541500px;}
.y45{bottom:108.691500px;}
.y103{bottom:111.541500px;}
.ye0{bottom:111.991500px;}
.y6c{bottom:118.891500px;}
.yb9{bottom:122.641500px;}
.ydf{bottom:128.491500px;}
.y97{bottom:131.641500px;}
.y44{bottom:131.941500px;}
.y6b{bottom:138.991500px;}
.yde{bottom:144.991500px;}
.yb8{bottom:145.891500px;}
.y102{bottom:151.891500px;}
.y43{bottom:155.041500px;}
.ydd{bottom:161.491500px;}
.yb7{bottom:168.991500px;}
.y96{bottom:171.991500px;}
.y42{bottom:178.291500px;}
.y6a{bottom:179.341500px;}
.yd1{bottom:189.391500px;}
.y95{bottom:192.241500px;}
.y9d{bottom:199.591500px;}
.y41{bottom:201.391500px;}
.y94{bottom:212.341500px;}
.yd0{bottom:212.641500px;}
.yb6{bottom:215.341500px;}
.yfd{bottom:219.091500px;}
.y69{bottom:219.691500px;}
.y40{bottom:224.641500px;}
.y93{bottom:232.591500px;}
.ycf{bottom:235.741500px;}
.yb5{bottom:238.591500px;}
.y68{bottom:239.941500px;}
.yfc{bottom:242.341500px;}
.ydc{bottom:242.941500px;}
.y92{bottom:252.691500px;}
.yce{bottom:258.991500px;}
.y67{bottom:260.041500px;}
.yb4{bottom:261.691500px;}
.y3f{bottom:262.741500px;}
.yfb{bottom:265.441500px;}
.ydb{bottom:266.041500px;}
.y91{bottom:272.941500px;}
.y66{bottom:280.291500px;}
.ycd{bottom:282.091500px;}
.yb3{bottom:284.941500px;}
.y3e{bottom:285.991500px;}
.yfa{bottom:288.691500px;}
.yda{bottom:289.291500px;}
.y90{bottom:293.041500px;}
.y65{bottom:300.391500px;}
.yc{bottom:300.991500px;}
.ycc{bottom:305.341500px;}
.yb2{bottom:308.041500px;}
.y3d{bottom:309.091500px;}
.yf9{bottom:311.791500px;}
.yd9{bottom:312.391500px;}
.y8f{bottom:313.291500px;}
.y64{bottom:320.641500px;}
.yb{bottom:321.091500px;}
.ycb{bottom:328.441500px;}
.yb1{bottom:331.291500px;}
.y3c{bottom:332.341500px;}
.y8e{bottom:333.391500px;}
.y63{bottom:340.741500px;}
.yd8{bottom:346.891500px;}
.yf8{bottom:350.041500px;}
.yca{bottom:351.691500px;}
.y8d{bottom:353.641500px;}
.y3b{bottom:355.441500px;}
.y62{bottom:360.991500px;}
.yd7{bottom:363.391500px;}
.yb0{bottom:365.641500px;}
.y8c{bottom:373.741500px;}
.yc9{bottom:374.791500px;}
.y3a{bottom:378.691500px;}
.yd6{bottom:379.891500px;}
.y61{bottom:381.091500px;}
.yaf{bottom:382.141500px;}
.y8b{bottom:393.991500px;}
.yd5{bottom:396.391500px;}
.yc8{bottom:398.041500px;}
.yae{bottom:398.641500px;}
.y60{bottom:401.341500px;}
.y39{bottom:401.791500px;}
.yac{bottom:403.591500px;}
.yd4{bottom:412.891500px;}
.y8a{bottom:414.091500px;}
.yad{bottom:415.141500px;}
.ya4{bottom:415.741500px;}
.yc7{bottom:421.141500px;}
.y9c{bottom:421.441500px;}
.y38{bottom:425.041500px;}
.yf7{bottom:426.391500px;}
.yab{bottom:426.691500px;}
.yd3{bottom:429.391500px;}
.ya3{bottom:432.241500px;}
.y89{bottom:434.341500px;}
.y5f{bottom:441.691500px;}
.yc6{bottom:444.391500px;}
.yd2{bottom:445.891500px;}
.y37{bottom:448.141500px;}
.ya2{bottom:448.741500px;}
.yf6{bottom:449.491500px;}
.yaa{bottom:449.941500px;}
.y88{bottom:454.441500px;}
.y9b{bottom:461.791500px;}
.ya1{bottom:465.241500px;}
.yc5{bottom:467.491500px;}
.y36{bottom:471.391500px;}
.yf5{bottom:472.741500px;}
.ya9{bottom:473.041500px;}
.y101{bottom:474.691500px;}
.ya0{bottom:481.741500px;}
.y5e{bottom:482.041500px;}
.yc4{bottom:490.741500px;}
.y35{bottom:494.491500px;}
.y87{bottom:494.791500px;}
.yf4{bottom:495.841500px;}
.y9f{bottom:498.241500px;}
.y5d{bottom:502.141500px;}
.ya8{bottom:511.291500px;}
.yc3{bottom:513.841500px;}
.y9e{bottom:514.741500px;}
.y100{bottom:515.041500px;}
.y34{bottom:517.741500px;}
.y5c{bottom:522.391500px;}
.yf3{bottom:534.091500px;}
.y86{bottom:535.141500px;}
.yc2{bottom:537.091500px;}
.y33{bottom:540.841500px;}
.y5b{bottom:542.491500px;}
.ya{bottom:552.841500px;}
.y85{bottom:555.391500px;}
.yc1{bottom:560.191500px;}
.y5a{bottom:562.741500px;}
.y32{bottom:564.091500px;}
.y84{bottom:575.491500px;}
.yf2{bottom:577.441500px;}
.y59{bottom:582.841500px;}
.ya7{bottom:586.291500px;}
.y31{bottom:587.191500px;}
.y9{bottom:593.191500px;}
.y83{bottom:595.741500px;}
.yc0{bottom:598.441500px;}
.yf1{bottom:600.541500px;}
.y58{bottom:603.091500px;}
.ya6{bottom:605.341500px;}
.y30{bottom:610.441500px;}
.y82{bottom:615.841500px;}
.y57{bottom:623.191500px;}
.yf0{bottom:623.791500px;}
.ya5{bottom:624.241500px;}
.ybf{bottom:632.791500px;}
.y2f{bottom:633.541500px;}
.y81{bottom:636.091500px;}
.y56{bottom:643.441500px;}
.yef{bottom:646.891500px;}
.ybe{bottom:649.291500px;}
.y80{bottom:656.191500px;}
.y2e{bottom:656.791500px;}
.y9a{bottom:663.541500px;}
.ybd{bottom:665.791500px;}
.yee{bottom:670.141500px;}
.yff{bottom:676.441500px;}
.y2d{bottom:679.891500px;}
.ybc{bottom:682.291500px;}
.y55{bottom:683.791500px;}
.yed{bottom:693.241500px;}
.y7f{bottom:696.541500px;}
.ybb{bottom:698.791500px;}
.y2c{bottom:703.141500px;}
.y8{bottom:703.891500px;}
.yec{bottom:716.491500px;}
.yfe{bottom:716.791500px;}
.y54{bottom:724.141500px;}
.y2b{bottom:726.241500px;}
.y7e{bottom:736.891500px;}
.yeb{bottom:739.591500px;}
.y53{bottom:744.241500px;}
.y2a{bottom:749.491500px;}
.y7d{bottom:757.141500px;}
.yea{bottom:762.841500px;}
.y52{bottom:764.491500px;}
.y29{bottom:772.591500px;}
.y7c{bottom:777.241500px;}
.y51{bottom:784.591500px;}
.ye9{bottom:785.941500px;}
.y28{bottom:795.841500px;}
.y7b{bottom:797.491500px;}
.y1a{bottom:799.591500px;}
.y50{bottom:804.841500px;}
.ye8{bottom:809.191500px;}
.y7a{bottom:817.591500px;}
.y27{bottom:818.941500px;}
.y19{bottom:819.841500px;}
.y4f{bottom:824.941500px;}
.y7{bottom:826.591500px;}
.ye7{bottom:832.291500px;}
.y79{bottom:837.841500px;}
.y18{bottom:839.941500px;}
.y26{bottom:842.191500px;}
.y4e{bottom:845.191500px;}
.ye6{bottom:855.541500px;}
.y78{bottom:857.941500px;}
.y17{bottom:860.191500px;}
.y25{bottom:865.291500px;}
.y6{bottom:866.941500px;}
.y77{bottom:878.191500px;}
.y16{bottom:880.291500px;}
.y4d{bottom:885.541500px;}
.y24{bottom:888.541500px;}
.ye5{bottom:893.641500px;}
.y76{bottom:898.291500px;}
.y5{bottom:900.541500px;}
.y23{bottom:911.641500px;}
.y75{bottom:918.541500px;}
.y15{bottom:920.641500px;}
.y4c{bottom:925.891500px;}
.y4{bottom:927.541500px;}
.ye4{bottom:931.891500px;}
.y22{bottom:934.891500px;}
.y74{bottom:938.641500px;}
.y14{bottom:940.891500px;}
.ye3{bottom:954.991500px;}
.y21{bottom:957.991500px;}
.y99{bottom:958.891500px;}
.y13{bottom:960.991500px;}
.y4b{bottom:966.241500px;}
.ye2{bottom:978.241500px;}
.y73{bottom:978.991500px;}
.y12{bottom:981.241500px;}
.y98{bottom:999.241500px;}
.y11{bottom:1001.341500px;}
.y20{bottom:1004.341500px;}
.y72{bottom:1019.341500px;}
.y3{bottom:1021.591500px;}
.y4a{bottom:1024.591500px;}
.y1f{bottom:1027.591500px;}
.y71{bottom:1039.591500px;}
.y10{bottom:1041.691500px;}
.y49{bottom:1047.691500px;}
.y1e{bottom:1050.691500px;}
.y70{bottom:1059.691500px;}
.yf{bottom:1061.941500px;}
.y48{bottom:1070.941500px;}
.y1d{bottom:1073.941500px;}
.y6f{bottom:1079.941500px;}
.ye{bottom:1082.041500px;}
.y47{bottom:1094.041500px;}
.y1c{bottom:1097.041500px;}
.y6e{bottom:1100.041500px;}
.yd{bottom:1102.291500px;}
.y46{bottom:1117.291500px;}
.y1b{bottom:1120.291500px;}
.y2{bottom:1140.391500px;}
.h5{height:31.668750px;}
.hb{height:36.966797px;}
.ha{height:44.534180px;}
.h7{height:44.859375px;}
.h8{height:45.149414px;}
.h3{height:45.181641px;}
.h6{height:54.430664px;}
.h4{height:58.668750px;}
.h9{height:59.268750px;}
.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;}
.x1{left:106.500000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v3{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.245333pt;}
.ls5{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.362667pt;}
.ls3{letter-spacing:1.306667pt;}
.wsa{word-spacing:-32.794667pt;}
.ws1{word-spacing:-32.677333pt;}
.ws4{word-spacing:-31.034667pt;}
.ws8{word-spacing:-26.736000pt;}
.ws7{word-spacing:-25.392000pt;}
.ws0{word-spacing:-19.012267pt;}
.ws9{word-spacing:-13.258667pt;}
.ws3{word-spacing:-10.606933pt;}
.ws5{word-spacing:-0.058667pt;}
.ws6{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.908800pt;}
._1{width:1.717333pt;}
._6{width:2.724267pt;}
._5{width:3.732267pt;}
._4{width:4.635733pt;}
._2{width:7.626667pt;}
._3{width:8.565333pt;}
._8{width:114.645333pt;}
._7{width:144.330667pt;}
.fs1{font-size:34.133333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:46.933333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y104{bottom:81.148000pt;}
.ye1{bottom:84.881333pt;}
.y6d{bottom:87.681333pt;}
.yba{bottom:88.481333pt;}
.y45{bottom:96.614667pt;}
.y103{bottom:99.148000pt;}
.ye0{bottom:99.548000pt;}
.y6c{bottom:105.681333pt;}
.yb9{bottom:109.014667pt;}
.ydf{bottom:114.214667pt;}
.y97{bottom:117.014667pt;}
.y44{bottom:117.281333pt;}
.y6b{bottom:123.548000pt;}
.yde{bottom:128.881333pt;}
.yb8{bottom:129.681333pt;}
.y102{bottom:135.014667pt;}
.y43{bottom:137.814667pt;}
.ydd{bottom:143.548000pt;}
.yb7{bottom:150.214667pt;}
.y96{bottom:152.881333pt;}
.y42{bottom:158.481333pt;}
.y6a{bottom:159.414667pt;}
.yd1{bottom:168.348000pt;}
.y95{bottom:170.881333pt;}
.y9d{bottom:177.414667pt;}
.y41{bottom:179.014667pt;}
.y94{bottom:188.748000pt;}
.yd0{bottom:189.014667pt;}
.yb6{bottom:191.414667pt;}
.yfd{bottom:194.748000pt;}
.y69{bottom:195.281333pt;}
.y40{bottom:199.681333pt;}
.y93{bottom:206.748000pt;}
.ycf{bottom:209.548000pt;}
.yb5{bottom:212.081333pt;}
.y68{bottom:213.281333pt;}
.yfc{bottom:215.414667pt;}
.ydc{bottom:215.948000pt;}
.y92{bottom:224.614667pt;}
.yce{bottom:230.214667pt;}
.y67{bottom:231.148000pt;}
.yb4{bottom:232.614667pt;}
.y3f{bottom:233.548000pt;}
.yfb{bottom:235.948000pt;}
.ydb{bottom:236.481333pt;}
.y91{bottom:242.614667pt;}
.y66{bottom:249.148000pt;}
.ycd{bottom:250.748000pt;}
.yb3{bottom:253.281333pt;}
.y3e{bottom:254.214667pt;}
.yfa{bottom:256.614667pt;}
.yda{bottom:257.148000pt;}
.y90{bottom:260.481333pt;}
.y65{bottom:267.014667pt;}
.yc{bottom:267.548000pt;}
.ycc{bottom:271.414667pt;}
.yb2{bottom:273.814667pt;}
.y3d{bottom:274.748000pt;}
.yf9{bottom:277.148000pt;}
.yd9{bottom:277.681333pt;}
.y8f{bottom:278.481333pt;}
.y64{bottom:285.014667pt;}
.yb{bottom:285.414667pt;}
.ycb{bottom:291.948000pt;}
.yb1{bottom:294.481333pt;}
.y3c{bottom:295.414667pt;}
.y8e{bottom:296.348000pt;}
.y63{bottom:302.881333pt;}
.yd8{bottom:308.348000pt;}
.yf8{bottom:311.148000pt;}
.yca{bottom:312.614667pt;}
.y8d{bottom:314.348000pt;}
.y3b{bottom:315.948000pt;}
.y62{bottom:320.881333pt;}
.yd7{bottom:323.014667pt;}
.yb0{bottom:325.014667pt;}
.y8c{bottom:332.214667pt;}
.yc9{bottom:333.148000pt;}
.y3a{bottom:336.614667pt;}
.yd6{bottom:337.681333pt;}
.y61{bottom:338.748000pt;}
.yaf{bottom:339.681333pt;}
.y8b{bottom:350.214667pt;}
.yd5{bottom:352.348000pt;}
.yc8{bottom:353.814667pt;}
.yae{bottom:354.348000pt;}
.y60{bottom:356.748000pt;}
.y39{bottom:357.148000pt;}
.yac{bottom:358.748000pt;}
.yd4{bottom:367.014667pt;}
.y8a{bottom:368.081333pt;}
.yad{bottom:369.014667pt;}
.ya4{bottom:369.548000pt;}
.yc7{bottom:374.348000pt;}
.y9c{bottom:374.614667pt;}
.y38{bottom:377.814667pt;}
.yf7{bottom:379.014667pt;}
.yab{bottom:379.281333pt;}
.yd3{bottom:381.681333pt;}
.ya3{bottom:384.214667pt;}
.y89{bottom:386.081333pt;}
.y5f{bottom:392.614667pt;}
.yc6{bottom:395.014667pt;}
.yd2{bottom:396.348000pt;}
.y37{bottom:398.348000pt;}
.ya2{bottom:398.881333pt;}
.yf6{bottom:399.548000pt;}
.yaa{bottom:399.948000pt;}
.y88{bottom:403.948000pt;}
.y9b{bottom:410.481333pt;}
.ya1{bottom:413.548000pt;}
.yc5{bottom:415.548000pt;}
.y36{bottom:419.014667pt;}
.yf5{bottom:420.214667pt;}
.ya9{bottom:420.481333pt;}
.y101{bottom:421.948000pt;}
.ya0{bottom:428.214667pt;}
.y5e{bottom:428.481333pt;}
.yc4{bottom:436.214667pt;}
.y35{bottom:439.548000pt;}
.y87{bottom:439.814667pt;}
.yf4{bottom:440.748000pt;}
.y9f{bottom:442.881333pt;}
.y5d{bottom:446.348000pt;}
.ya8{bottom:454.481333pt;}
.yc3{bottom:456.748000pt;}
.y9e{bottom:457.548000pt;}
.y100{bottom:457.814667pt;}
.y34{bottom:460.214667pt;}
.y5c{bottom:464.348000pt;}
.yf3{bottom:474.748000pt;}
.y86{bottom:475.681333pt;}
.yc2{bottom:477.414667pt;}
.y33{bottom:480.748000pt;}
.y5b{bottom:482.214667pt;}
.ya{bottom:491.414667pt;}
.y85{bottom:493.681333pt;}
.yc1{bottom:497.948000pt;}
.y5a{bottom:500.214667pt;}
.y32{bottom:501.414667pt;}
.y84{bottom:511.548000pt;}
.yf2{bottom:513.281333pt;}
.y59{bottom:518.081333pt;}
.ya7{bottom:521.148000pt;}
.y31{bottom:521.948000pt;}
.y9{bottom:527.281333pt;}
.y83{bottom:529.548000pt;}
.yc0{bottom:531.948000pt;}
.yf1{bottom:533.814667pt;}
.y58{bottom:536.081333pt;}
.ya6{bottom:538.081333pt;}
.y30{bottom:542.614667pt;}
.y82{bottom:547.414667pt;}
.y57{bottom:553.948000pt;}
.yf0{bottom:554.481333pt;}
.ya5{bottom:554.881333pt;}
.ybf{bottom:562.481333pt;}
.y2f{bottom:563.148000pt;}
.y81{bottom:565.414667pt;}
.y56{bottom:571.948000pt;}
.yef{bottom:575.014667pt;}
.ybe{bottom:577.148000pt;}
.y80{bottom:583.281333pt;}
.y2e{bottom:583.814667pt;}
.y9a{bottom:589.814667pt;}
.ybd{bottom:591.814667pt;}
.yee{bottom:595.681333pt;}
.yff{bottom:601.281333pt;}
.y2d{bottom:604.348000pt;}
.ybc{bottom:606.481333pt;}
.y55{bottom:607.814667pt;}
.yed{bottom:616.214667pt;}
.y7f{bottom:619.148000pt;}
.ybb{bottom:621.148000pt;}
.y2c{bottom:625.014667pt;}
.y8{bottom:625.681333pt;}
.yec{bottom:636.881333pt;}
.yfe{bottom:637.148000pt;}
.y54{bottom:643.681333pt;}
.y2b{bottom:645.548000pt;}
.y7e{bottom:655.014667pt;}
.yeb{bottom:657.414667pt;}
.y53{bottom:661.548000pt;}
.y2a{bottom:666.214667pt;}
.y7d{bottom:673.014667pt;}
.yea{bottom:678.081333pt;}
.y52{bottom:679.548000pt;}
.y29{bottom:686.748000pt;}
.y7c{bottom:690.881333pt;}
.y51{bottom:697.414667pt;}
.ye9{bottom:698.614667pt;}
.y28{bottom:707.414667pt;}
.y7b{bottom:708.881333pt;}
.y1a{bottom:710.748000pt;}
.y50{bottom:715.414667pt;}
.ye8{bottom:719.281333pt;}
.y7a{bottom:726.748000pt;}
.y27{bottom:727.948000pt;}
.y19{bottom:728.748000pt;}
.y4f{bottom:733.281333pt;}
.y7{bottom:734.748000pt;}
.ye7{bottom:739.814667pt;}
.y79{bottom:744.748000pt;}
.y18{bottom:746.614667pt;}
.y26{bottom:748.614667pt;}
.y4e{bottom:751.281333pt;}
.ye6{bottom:760.481333pt;}
.y78{bottom:762.614667pt;}
.y17{bottom:764.614667pt;}
.y25{bottom:769.148000pt;}
.y6{bottom:770.614667pt;}
.y77{bottom:780.614667pt;}
.y16{bottom:782.481333pt;}
.y4d{bottom:787.148000pt;}
.y24{bottom:789.814667pt;}
.ye5{bottom:794.348000pt;}
.y76{bottom:798.481333pt;}
.y5{bottom:800.481333pt;}
.y23{bottom:810.348000pt;}
.y75{bottom:816.481333pt;}
.y15{bottom:818.348000pt;}
.y4c{bottom:823.014667pt;}
.y4{bottom:824.481333pt;}
.ye4{bottom:828.348000pt;}
.y22{bottom:831.014667pt;}
.y74{bottom:834.348000pt;}
.y14{bottom:836.348000pt;}
.ye3{bottom:848.881333pt;}
.y21{bottom:851.548000pt;}
.y99{bottom:852.348000pt;}
.y13{bottom:854.214667pt;}
.y4b{bottom:858.881333pt;}
.ye2{bottom:869.548000pt;}
.y73{bottom:870.214667pt;}
.y12{bottom:872.214667pt;}
.y98{bottom:888.214667pt;}
.y11{bottom:890.081333pt;}
.y20{bottom:892.748000pt;}
.y72{bottom:906.081333pt;}
.y3{bottom:908.081333pt;}
.y4a{bottom:910.748000pt;}
.y1f{bottom:913.414667pt;}
.y71{bottom:924.081333pt;}
.y10{bottom:925.948000pt;}
.y49{bottom:931.281333pt;}
.y1e{bottom:933.948000pt;}
.y70{bottom:941.948000pt;}
.yf{bottom:943.948000pt;}
.y48{bottom:951.948000pt;}
.y1d{bottom:954.614667pt;}
.y6f{bottom:959.948000pt;}
.ye{bottom:961.814667pt;}
.y47{bottom:972.481333pt;}
.y1c{bottom:975.148000pt;}
.y6e{bottom:977.814667pt;}
.yd{bottom:979.814667pt;}
.y46{bottom:993.148000pt;}
.y1b{bottom:995.814667pt;}
.y2{bottom:1013.681333pt;}
.h5{height:28.150000pt;}
.hb{height:32.859375pt;}
.ha{height:39.585938pt;}
.h7{height:39.875000pt;}
.h8{height:40.132812pt;}
.h3{height:40.161458pt;}
.h6{height:48.382812pt;}
.h4{height:52.150000pt;}
.h9{height:52.683333pt;}
.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;}
.x1{left:94.666667pt;}
}




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