
    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_5d34bd6ca6bee130688d5eca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_f1125e28435e209b7d07d67e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_60010770baf68e7db3bce845.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_734e3a862c69fb1c845003aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184082;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_66d0c0a252d2f6bb68ab66b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_87259a7f46b7bd3f88a4daf1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_45bc7700fe31b8a3288704c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_d73098699928a0df08db18b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_970cf94d588b31a6553dd9c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-126.000000px;}
.v6{vertical-align:-72.180000px;}
.v1{vertical-align:-69.120000px;}
.v7{vertical-align:-67.680000px;}
.v5{vertical-align:-66.240000px;}
.v8{vertical-align:-64.080000px;}
.v3{vertical-align:-60.480000px;}
.v4{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-2.160000px;}
.ls33{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-0.654000px;}
.ls16{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.291600px;}
.ls12{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.053280px;}
.lse{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.106560px;}
.ls2e{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.109200px;}
.ls29{letter-spacing:0.169200px;}
.ls2d{letter-spacing:0.169920px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.262200px;}
.ls2a{letter-spacing:0.285840px;}
.ls17{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.428400px;}
.ls4{letter-spacing:0.460080px;}
.ls10{letter-spacing:0.612000px;}
.ls32{letter-spacing:0.666000px;}
.ls27{letter-spacing:0.666720px;}
.ls19{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.440000px;}
.ls20{letter-spacing:2.106720px;}
.ls21{letter-spacing:2.826720px;}
.ls1d{letter-spacing:3.600000px;}
.lsa{letter-spacing:5.220000px;}
.ls9{letter-spacing:6.840000px;}
.ls1f{letter-spacing:7.200000px;}
.ls25{letter-spacing:7.920000px;}
.ls1b{letter-spacing:10.080000px;}
.ls2b{letter-spacing:13.626720px;}
.ls8{letter-spacing:14.580000px;}
.ls7{letter-spacing:15.300000px;}
.ls22{letter-spacing:17.585280px;}
.ls1c{letter-spacing:17.976000px;}
.ls1a{letter-spacing:18.000000px;}
.ls0{letter-spacing:23.706720px;}
.ls31{letter-spacing:31.985280px;}
.lsd{letter-spacing:157.860000px;}
.ls2c{letter-spacing:158.004000px;}
.ls5{letter-spacing:381.780000px;}
.ls26{letter-spacing:1293.600000px;}
.lsc{letter-spacing:2066.316000px;}
.ls30{letter-spacing:2180.796000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.wsb{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.020000px;}
.ws12{word-spacing:-15.606000px;}
.ws2{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.368400px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.648400px;}
.ws10{word-spacing:-14.400000px;}
.ws8{word-spacing:-14.286000px;}
.ws13{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.140000px;}
.wsd{word-spacing:0.000000px;}
._15{margin-left:-3.552960px;}
._7{margin-left:-2.309280px;}
._2{margin-left:-1.048080px;}
._0{width:1.015920px;}
._1{width:2.030160px;}
._b{width:3.144960px;}
._a{width:4.374480px;}
._9{width:5.627280px;}
._8{width:7.128480px;}
._e{width:8.426160px;}
._10{width:9.449760px;}
._12{width:10.566960px;}
._5{width:11.689920px;}
._6{width:12.770400px;}
._13{width:13.910400px;}
._11{width:15.096000px;}
._d{width:16.194960px;}
._14{width:17.651040px;}
._f{width:19.068240px;}
._16{width:20.534400px;}
._18{width:21.993600px;}
._17{width:23.051520px;}
._4{width:24.380880px;}
._1b{width:25.419840px;}
._1e{width:27.250560px;}
._19{width:29.013120px;}
._1a{width:30.248160px;}
._1d{width:39.561120px;}
._1c{width:40.756320px;}
._3{width:71.860080px;}
._1f{width:1055.421120px;}
._c{width:1077.741840px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y4{bottom:56.700000px;}
.ycf{bottom:100.296000px;}
.y77{bottom:102.816000px;}
.yce{bottom:115.776000px;}
.y3e{bottom:118.476000px;}
.y97{bottom:120.816000px;}
.y76{bottom:121.716000px;}
.ycd{bottom:131.436000px;}
.y3d{bottom:133.956000px;}
.y96{bottom:135.216000px;}
.y75{bottom:140.796000px;}
.ycc{bottom:147.636000px;}
.y3c{bottom:149.256000px;}
.y95{bottom:152.490000px;}
.y74{bottom:159.690000px;}
.y3b{bottom:164.010000px;}
.ycb{bottom:166.530000px;}
.y94{bottom:169.770000px;}
.y73{bottom:178.590000px;}
.y3a{bottom:183.090000px;}
.yca{bottom:185.610000px;}
.y93{bottom:186.150000px;}
.y72{bottom:197.670000px;}
.y92{bottom:200.370000px;}
.y39{bottom:201.990000px;}
.yc9{bottom:204.510000px;}
.y71{bottom:216.570000px;}
.y91{bottom:217.650000px;}
.y38{bottom:220.890000px;}
.yc8{bottom:223.590000px;}
.y70{bottom:235.650000px;}
.y37{bottom:239.970000px;}
.yc7{bottom:242.490000px;}
.y90{bottom:251.850000px;}
.y6f{bottom:254.550000px;}
.y36{bottom:258.870000px;}
.yc6{bottom:261.390000px;}
.y8f{bottom:265.530000px;}
.y6e{bottom:273.630000px;}
.y35{bottom:277.950000px;}
.y8e{bottom:280.110000px;}
.yc5{bottom:280.470000px;}
.y6d{bottom:292.530000px;}
.y34{bottom:296.850000px;}
.y8d{bottom:297.390000px;}
.yc4{bottom:299.370000px;}
.y6c{bottom:311.430000px;}
.y8c{bottom:314.670000px;}
.yc3{bottom:318.450000px;}
.y6b{bottom:330.555000px;}
.y8b{bottom:331.995000px;}
.y33{bottom:333.795000px;}
.yc2{bottom:337.395000px;}
.y32{bottom:348.375000px;}
.y8a{bottom:349.275000px;}
.y6a{bottom:349.455000px;}
.yc1{bottom:356.295000px;}
.y31{bottom:365.655000px;}
.y89{bottom:366.375000px;}
.y69{bottom:368.535000px;}
.yc0{bottom:375.375000px;}
.y30{bottom:382.755000px;}
.y88{bottom:383.655000px;}
.y68{bottom:387.435000px;}
.ybf{bottom:394.275000px;}
.y2f{bottom:400.035000px;}
.y87{bottom:400.935000px;}
.y67{bottom:406.335000px;}
.ybe{bottom:413.355000px;}
.y2e{bottom:417.315000px;}
.y86{bottom:418.215000px;}
.y66{bottom:425.415000px;}
.ybd{bottom:432.255000px;}
.y2d{bottom:434.595000px;}
.y85{bottom:435.495000px;}
.y65{bottom:444.315000px;}
.ybc{bottom:451.335000px;}
.y2c{bottom:451.875000px;}
.y84{bottom:452.775000px;}
.y64{bottom:463.395000px;}
.y2b{bottom:469.155000px;}
.y83{bottom:469.875000px;}
.ybb{bottom:470.235000px;}
.y63{bottom:482.295000px;}
.y2a{bottom:486.255000px;}
.y82{bottom:487.155000px;}
.yba{bottom:489.135000px;}
.y62{bottom:501.195000px;}
.y81{bottom:504.435000px;}
.yb9{bottom:508.215000px;}
.y29{bottom:520.095000px;}
.y61{bottom:520.275000px;}
.y80{bottom:521.715000px;}
.y28{bottom:534.675000px;}
.y7f{bottom:538.995000px;}
.y60{bottom:539.175000px;}
.yb8{bottom:545.115000px;}
.y27{bottom:551.955000px;}
.y7e{bottom:556.095000px;}
.y5f{bottom:558.255000px;}
.yb7{bottom:559.695000px;}
.y26{bottom:569.055000px;}
.y7d{bottom:573.375000px;}
.yb6{bottom:576.795000px;}
.y5e{bottom:577.155000px;}
.y25{bottom:586.335000px;}
.y7c{bottom:590.655000px;}
.yb5{bottom:594.075000px;}
.y5d{bottom:596.085000px;}
.y24{bottom:603.645000px;}
.y7b{bottom:607.965000px;}
.yb4{bottom:611.385000px;}
.y5c{bottom:615.165000px;}
.y7a{bottom:625.245000px;}
.yb3{bottom:628.665000px;}
.y5b{bottom:634.065000px;}
.y23{bottom:634.425000px;}
.y79{bottom:642.525000px;}
.yb2{bottom:645.945000px;}
.y22{bottom:651.525000px;}
.y5a{bottom:653.145000px;}
.yb1{bottom:663.225000px;}
.y21{bottom:668.805000px;}
.y59{bottom:672.045000px;}
.y78{bottom:676.185000px;}
.yb0{bottom:680.325000px;}
.y20{bottom:685.725000px;}
.y58{bottom:690.945000px;}
.yaf{bottom:697.605000px;}
.y1f{bottom:699.765000px;}
.y57{bottom:710.025000px;}
.yae{bottom:714.885000px;}
.y1e{bottom:715.245000px;}
.y56{bottom:728.925000px;}
.yad{bottom:732.165000px;}
.y1d{bottom:746.025000px;}
.y55{bottom:748.005000px;}
.yac{bottom:748.725000px;}
.y1c{bottom:760.605000px;}
.yab{bottom:763.125000px;}
.y54{bottom:766.905000px;}
.y1b{bottom:777.885000px;}
.yaa{bottom:780.405000px;}
.y53{bottom:785.985000px;}
.y1a{bottom:795.165000px;}
.ya9{bottom:797.685000px;}
.y52{bottom:804.885000px;}
.y19{bottom:812.445000px;}
.ya8{bottom:814.965000px;}
.y51{bottom:823.785000px;}
.y18{bottom:829.545000px;}
.ya7{bottom:832.245000px;}
.y50{bottom:842.865000px;}
.y17{bottom:846.825000px;}
.y4f{bottom:861.765000px;}
.ya6{bottom:862.890000px;}
.y16{bottom:864.150000px;}
.ya5{bottom:880.170000px;}
.y4e{bottom:880.890000px;}
.y15{bottom:881.430000px;}
.ya4{bottom:897.450000px;}
.y14{bottom:898.710000px;}
.y4d{bottom:899.790000px;}
.ya3{bottom:914.190000px;}
.y13{bottom:915.810000px;}
.y4c{bottom:918.690000px;}
.ya2{bottom:928.770000px;}
.y12{bottom:933.090000px;}
.y4b{bottom:937.770000px;}
.ya1{bottom:946.050000px;}
.y11{bottom:950.370000px;}
.y4a{bottom:956.670000px;}
.y10{bottom:967.650000px;}
.y49{bottom:975.750000px;}
.ya0{bottom:979.350000px;}
.yf{bottom:984.930000px;}
.y9f{bottom:992.670000px;}
.y48{bottom:994.650000px;}
.ye{bottom:1002.210000px;}
.y9e{bottom:1009.950000px;}
.y47{bottom:1013.550000px;}
.yd{bottom:1018.590000px;}
.y9d{bottom:1027.050000px;}
.y46{bottom:1032.630000px;}
.yc{bottom:1033.170000px;}
.y9c{bottom:1044.330000px;}
.yb{bottom:1050.450000px;}
.y45{bottom:1051.530000px;}
.y9b{bottom:1061.610000px;}
.y44{bottom:1070.610000px;}
.y9a{bottom:1078.890000px;}
.y43{bottom:1089.510000px;}
.y99{bottom:1096.170000px;}
.ya{bottom:1098.330000px;}
.y42{bottom:1108.410000px;}
.y98{bottom:1113.450000px;}
.y9{bottom:1115.610000px;}
.y41{bottom:1127.490000px;}
.y8{bottom:1130.580000px;}
.y40{bottom:1146.420000px;}
.y7{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y3f{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h10{height:40.985156px;}
.h8{height:47.344922px;}
.hf{height:48.616875px;}
.h6{height:49.394180px;}
.h3{height:49.583118px;}
.ha{height:52.998047px;}
.h9{height:53.252930px;}
.h2{height:58.651172px;}
.hc{height:59.027344px;}
.h7{height:60.226875px;}
.h5{height:61.423863px;}
.hb{height:65.010937px;}
.hd{height:66.757500px;}
.he{height:68.084282px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:14.940000px;}
.w3{width:16.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:63.900000px;}
.x15{left:90.719987px;}
.x1{left:106.415987px;}
.x16{left:117.035987px;}
.xa{left:123.875987px;}
.x17{left:137.015987px;}
.x1f{left:140.795987px;}
.x3{left:148.895987px;}
.x11{left:262.109987px;}
.x1a{left:293.474987px;}
.xc{left:308.774987px;}
.x18{left:331.814987px;}
.xd{left:373.034987px;}
.xb{left:379.154987px;}
.x6{left:423.794987px;}
.x1c{left:431.714987px;}
.x12{left:441.254987px;}
.x19{left:446.474987px;}
.x4{left:467.714987px;}
.x5{left:543.704987px;}
.x20{left:550.184987px;}
.x1b{left:581.684987px;}
.x21{left:585.464987px;}
.xe{left:593.924987px;}
.x9{left:645.764987px;}
.x1d{left:647.384987px;}
.x1e{left:665.429987px;}
.x8{left:669.029987px;}
.x22{left:704.669987px;}
.x10{left:756.869987px;}
.x13{left:786.749987px;}
.xf{left:810.149987px;}
.x2{left:819.150000px;}
.x7{left:829.229987px;}
@media print{
.v2{vertical-align:-112.000000pt;}
.v6{vertical-align:-64.160000pt;}
.v1{vertical-align:-61.440000pt;}
.v7{vertical-align:-60.160000pt;}
.v5{vertical-align:-58.880000pt;}
.v8{vertical-align:-56.960000pt;}
.v3{vertical-align:-53.760000pt;}
.v4{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-1.920000pt;}
.ls33{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.581333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.259200pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.047360pt;}
.lse{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.094720pt;}
.ls2e{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.097067pt;}
.ls29{letter-spacing:0.150400pt;}
.ls2d{letter-spacing:0.151040pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.233067pt;}
.ls2a{letter-spacing:0.254080pt;}
.ls17{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.380800pt;}
.ls4{letter-spacing:0.408960pt;}
.ls10{letter-spacing:0.544000pt;}
.ls32{letter-spacing:0.592000pt;}
.ls27{letter-spacing:0.592640pt;}
.ls19{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.872640pt;}
.ls21{letter-spacing:2.512640pt;}
.ls1d{letter-spacing:3.200000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls9{letter-spacing:6.080000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:8.960000pt;}
.ls2b{letter-spacing:12.112640pt;}
.ls8{letter-spacing:12.960000pt;}
.ls7{letter-spacing:13.600000pt;}
.ls22{letter-spacing:15.631360pt;}
.ls1c{letter-spacing:15.978667pt;}
.ls1a{letter-spacing:16.000000pt;}
.ls0{letter-spacing:21.072640pt;}
.ls31{letter-spacing:28.431360pt;}
.lsd{letter-spacing:140.320000pt;}
.ls2c{letter-spacing:140.448000pt;}
.ls5{letter-spacing:339.360000pt;}
.ls26{letter-spacing:1149.866667pt;}
.lsc{letter-spacing:1836.725333pt;}
.ls30{letter-spacing:1938.485333pt;}
.wsf{word-spacing:-53.120000pt;}
.wsb{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.240000pt;}
.ws12{word-spacing:-13.872000pt;}
.ws2{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.660800pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.020800pt;}
.ws10{word-spacing:-12.800000pt;}
.ws8{word-spacing:-12.698667pt;}
.ws13{word-spacing:-12.320000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsd{word-spacing:0.000000pt;}
._15{margin-left:-3.158187pt;}
._7{margin-left:-2.052693pt;}
._2{margin-left:-0.931627pt;}
._0{width:0.903040pt;}
._1{width:1.804587pt;}
._b{width:2.795520pt;}
._a{width:3.888427pt;}
._9{width:5.002027pt;}
._8{width:6.336427pt;}
._e{width:7.489920pt;}
._10{width:8.399787pt;}
._12{width:9.392853pt;}
._5{width:10.391040pt;}
._6{width:11.351467pt;}
._13{width:12.364800pt;}
._11{width:13.418667pt;}
._d{width:14.395520pt;}
._14{width:15.689813pt;}
._f{width:16.949547pt;}
._16{width:18.252800pt;}
._18{width:19.549867pt;}
._17{width:20.490240pt;}
._4{width:21.671893pt;}
._1b{width:22.595413pt;}
._1e{width:24.222720pt;}
._19{width:25.789440pt;}
._1a{width:26.887253pt;}
._1d{width:35.165440pt;}
._1c{width:36.227840pt;}
._3{width:63.875627pt;}
._1f{width:938.152107pt;}
._c{width:957.992747pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:50.400000pt;}
.ycf{bottom:89.152000pt;}
.y77{bottom:91.392000pt;}
.yce{bottom:102.912000pt;}
.y3e{bottom:105.312000pt;}
.y97{bottom:107.392000pt;}
.y76{bottom:108.192000pt;}
.ycd{bottom:116.832000pt;}
.y3d{bottom:119.072000pt;}
.y96{bottom:120.192000pt;}
.y75{bottom:125.152000pt;}
.ycc{bottom:131.232000pt;}
.y3c{bottom:132.672000pt;}
.y95{bottom:135.546667pt;}
.y74{bottom:141.946667pt;}
.y3b{bottom:145.786667pt;}
.ycb{bottom:148.026667pt;}
.y94{bottom:150.906667pt;}
.y73{bottom:158.746667pt;}
.y3a{bottom:162.746667pt;}
.yca{bottom:164.986667pt;}
.y93{bottom:165.466667pt;}
.y72{bottom:175.706667pt;}
.y92{bottom:178.106667pt;}
.y39{bottom:179.546667pt;}
.yc9{bottom:181.786667pt;}
.y71{bottom:192.506667pt;}
.y91{bottom:193.466667pt;}
.y38{bottom:196.346667pt;}
.yc8{bottom:198.746667pt;}
.y70{bottom:209.466667pt;}
.y37{bottom:213.306667pt;}
.yc7{bottom:215.546667pt;}
.y90{bottom:223.866667pt;}
.y6f{bottom:226.266667pt;}
.y36{bottom:230.106667pt;}
.yc6{bottom:232.346667pt;}
.y8f{bottom:236.026667pt;}
.y6e{bottom:243.226667pt;}
.y35{bottom:247.066667pt;}
.y8e{bottom:248.986667pt;}
.yc5{bottom:249.306667pt;}
.y6d{bottom:260.026667pt;}
.y34{bottom:263.866667pt;}
.y8d{bottom:264.346667pt;}
.yc4{bottom:266.106667pt;}
.y6c{bottom:276.826667pt;}
.y8c{bottom:279.706667pt;}
.yc3{bottom:283.066667pt;}
.y6b{bottom:293.826667pt;}
.y8b{bottom:295.106667pt;}
.y33{bottom:296.706667pt;}
.yc2{bottom:299.906667pt;}
.y32{bottom:309.666667pt;}
.y8a{bottom:310.466667pt;}
.y6a{bottom:310.626667pt;}
.yc1{bottom:316.706667pt;}
.y31{bottom:325.026667pt;}
.y89{bottom:325.666667pt;}
.y69{bottom:327.586667pt;}
.yc0{bottom:333.666667pt;}
.y30{bottom:340.226667pt;}
.y88{bottom:341.026667pt;}
.y68{bottom:344.386667pt;}
.ybf{bottom:350.466667pt;}
.y2f{bottom:355.586667pt;}
.y87{bottom:356.386667pt;}
.y67{bottom:361.186667pt;}
.ybe{bottom:367.426667pt;}
.y2e{bottom:370.946667pt;}
.y86{bottom:371.746667pt;}
.y66{bottom:378.146667pt;}
.ybd{bottom:384.226667pt;}
.y2d{bottom:386.306667pt;}
.y85{bottom:387.106667pt;}
.y65{bottom:394.946667pt;}
.ybc{bottom:401.186667pt;}
.y2c{bottom:401.666667pt;}
.y84{bottom:402.466667pt;}
.y64{bottom:411.906667pt;}
.y2b{bottom:417.026667pt;}
.y83{bottom:417.666667pt;}
.ybb{bottom:417.986667pt;}
.y63{bottom:428.706667pt;}
.y2a{bottom:432.226667pt;}
.y82{bottom:433.026667pt;}
.yba{bottom:434.786667pt;}
.y62{bottom:445.506667pt;}
.y81{bottom:448.386667pt;}
.yb9{bottom:451.746667pt;}
.y29{bottom:462.306667pt;}
.y61{bottom:462.466667pt;}
.y80{bottom:463.746667pt;}
.y28{bottom:475.266667pt;}
.y7f{bottom:479.106667pt;}
.y60{bottom:479.266667pt;}
.yb8{bottom:484.546667pt;}
.y27{bottom:490.626667pt;}
.y7e{bottom:494.306667pt;}
.y5f{bottom:496.226667pt;}
.yb7{bottom:497.506667pt;}
.y26{bottom:505.826667pt;}
.y7d{bottom:509.666667pt;}
.yb6{bottom:512.706667pt;}
.y5e{bottom:513.026667pt;}
.y25{bottom:521.186667pt;}
.y7c{bottom:525.026667pt;}
.yb5{bottom:528.066667pt;}
.y5d{bottom:529.853333pt;}
.y24{bottom:536.573333pt;}
.y7b{bottom:540.413333pt;}
.yb4{bottom:543.453333pt;}
.y5c{bottom:546.813333pt;}
.y7a{bottom:555.773333pt;}
.yb3{bottom:558.813333pt;}
.y5b{bottom:563.613333pt;}
.y23{bottom:563.933333pt;}
.y79{bottom:571.133333pt;}
.yb2{bottom:574.173333pt;}
.y22{bottom:579.133333pt;}
.y5a{bottom:580.573333pt;}
.yb1{bottom:589.533333pt;}
.y21{bottom:594.493333pt;}
.y59{bottom:597.373333pt;}
.y78{bottom:601.053333pt;}
.yb0{bottom:604.733333pt;}
.y20{bottom:609.533333pt;}
.y58{bottom:614.173333pt;}
.yaf{bottom:620.093333pt;}
.y1f{bottom:622.013333pt;}
.y57{bottom:631.133333pt;}
.yae{bottom:635.453333pt;}
.y1e{bottom:635.773333pt;}
.y56{bottom:647.933333pt;}
.yad{bottom:650.813333pt;}
.y1d{bottom:663.133333pt;}
.y55{bottom:664.893333pt;}
.yac{bottom:665.533333pt;}
.y1c{bottom:676.093333pt;}
.yab{bottom:678.333333pt;}
.y54{bottom:681.693333pt;}
.y1b{bottom:691.453333pt;}
.yaa{bottom:693.693333pt;}
.y53{bottom:698.653333pt;}
.y1a{bottom:706.813333pt;}
.ya9{bottom:709.053333pt;}
.y52{bottom:715.453333pt;}
.y19{bottom:722.173333pt;}
.ya8{bottom:724.413333pt;}
.y51{bottom:732.253333pt;}
.y18{bottom:737.373333pt;}
.ya7{bottom:739.773333pt;}
.y50{bottom:749.213333pt;}
.y17{bottom:752.733333pt;}
.y4f{bottom:766.013333pt;}
.ya6{bottom:767.013333pt;}
.y16{bottom:768.133333pt;}
.ya5{bottom:782.373333pt;}
.y4e{bottom:783.013333pt;}
.y15{bottom:783.493333pt;}
.ya4{bottom:797.733333pt;}
.y14{bottom:798.853333pt;}
.y4d{bottom:799.813333pt;}
.ya3{bottom:812.613333pt;}
.y13{bottom:814.053333pt;}
.y4c{bottom:816.613333pt;}
.ya2{bottom:825.573333pt;}
.y12{bottom:829.413333pt;}
.y4b{bottom:833.573333pt;}
.ya1{bottom:840.933333pt;}
.y11{bottom:844.773333pt;}
.y4a{bottom:850.373333pt;}
.y10{bottom:860.133333pt;}
.y49{bottom:867.333333pt;}
.ya0{bottom:870.533333pt;}
.yf{bottom:875.493333pt;}
.y9f{bottom:882.373333pt;}
.y48{bottom:884.133333pt;}
.ye{bottom:890.853333pt;}
.y9e{bottom:897.733333pt;}
.y47{bottom:900.933333pt;}
.yd{bottom:905.413333pt;}
.y9d{bottom:912.933333pt;}
.y46{bottom:917.893333pt;}
.yc{bottom:918.373333pt;}
.y9c{bottom:928.293333pt;}
.yb{bottom:933.733333pt;}
.y45{bottom:934.693333pt;}
.y9b{bottom:943.653333pt;}
.y44{bottom:951.653333pt;}
.y9a{bottom:959.013333pt;}
.y43{bottom:968.453333pt;}
.y99{bottom:974.373333pt;}
.ya{bottom:976.293333pt;}
.y42{bottom:985.253333pt;}
.y98{bottom:989.733333pt;}
.y9{bottom:991.653333pt;}
.y41{bottom:1002.213333pt;}
.y8{bottom:1004.960000pt;}
.y40{bottom:1019.040000pt;}
.y7{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y3f{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h10{height:36.431250pt;}
.h8{height:42.084375pt;}
.hf{height:43.215000pt;}
.h6{height:43.905937pt;}
.h3{height:44.073883pt;}
.ha{height:47.109375pt;}
.h9{height:47.335938pt;}
.h2{height:52.134375pt;}
.hc{height:52.468750pt;}
.h7{height:53.535000pt;}
.h5{height:54.598989pt;}
.hb{height:57.787500pt;}
.hd{height:59.340000pt;}
.he{height:60.519362pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.280000pt;}
.w3{width:15.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:56.800000pt;}
.x15{left:80.639988pt;}
.x1{left:94.591988pt;}
.x16{left:104.031988pt;}
.xa{left:110.111988pt;}
.x17{left:121.791988pt;}
.x1f{left:125.151988pt;}
.x3{left:132.351988pt;}
.x11{left:232.986655pt;}
.x1a{left:260.866655pt;}
.xc{left:274.466655pt;}
.x18{left:294.946655pt;}
.xd{left:331.586655pt;}
.xb{left:337.026655pt;}
.x6{left:376.706655pt;}
.x1c{left:383.746655pt;}
.x12{left:392.226655pt;}
.x19{left:396.866655pt;}
.x4{left:415.746655pt;}
.x5{left:483.293322pt;}
.x20{left:489.053322pt;}
.x1b{left:517.053322pt;}
.x21{left:520.413322pt;}
.xe{left:527.933322pt;}
.x9{left:574.013322pt;}
.x1d{left:575.453322pt;}
.x1e{left:591.493322pt;}
.x8{left:594.693322pt;}
.x22{left:626.373322pt;}
.x10{left:672.773322pt;}
.x13{left:699.333322pt;}
.xf{left:720.133322pt;}
.x2{left:728.133333pt;}
.x7{left:737.093322pt;}
}




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