
    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_414f11c101233eef1b2be761.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_548ddb9e2125c550679ad7f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_880dba49ac7e6010f1700ce9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_7ceffbf767a31fa2030e8774.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.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;}
}
.ws9{word-spacing:-39.666000px;}
.ws2{word-spacing:-17.160000px;}
.ws4{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws3{word-spacing:-10.004280px;}
.ws8{word-spacing:-8.465160px;}
.ws5{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.043200px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-11.728800px;}
._13{margin-left:-8.880300px;}
._d{margin-left:-7.530600px;}
._3{margin-left:-6.063900px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.469600px;}
._0{margin-left:-1.278900px;}
._4{width:1.167300px;}
._7{width:2.461800px;}
._b{width:3.564000px;}
._6{width:4.923600px;}
._a{width:6.514200px;}
._5{width:8.263200px;}
._9{width:9.266400px;}
._e{width:10.276200px;}
._c{width:12.243000px;}
._8{width:13.457400px;}
._15{width:15.576000px;}
._12{width:16.698000px;}
._11{width:18.183000px;}
._17{width:19.575600px;}
._14{width:21.166200px;}
._18{width:22.301400px;}
._16{width:23.456400px;}
._10{width:27.304200px;}
._f{width:28.783800px;}
._1a{width:31.405800px;}
._19{width:32.942700px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y8e{bottom:129.936900px;}
.y22{bottom:133.275900px;}
.yb3{bottom:133.653900px;}
.yd1{bottom:134.136900px;}
.y49{bottom:138.149400px;}
.y8d{bottom:148.686900px;}
.y21{bottom:149.475900px;}
.yd0{bottom:152.886900px;}
.y4a{bottom:156.149400px;}
.y70{bottom:158.736900px;}
.y8c{bottom:167.436900px;}
.y20{bottom:170.171400px;}
.ycf{bottom:171.636900px;}
.yb4{bottom:174.149400px;}
.y6f{bottom:177.786900px;}
.y8b{bottom:186.186900px;}
.y1f{bottom:186.371400px;}
.ydc{bottom:187.653900px;}
.yce{bottom:190.386900px;}
.ye6{bottom:192.149400px;}
.y48{bottom:192.936900px;}
.y6e{bottom:198.336900px;}
.yec{bottom:204.636900px;}
.y8a{bottom:204.936900px;}
.ye8{bottom:205.653900px;}
.yb2{bottom:207.636900px;}
.ycd{bottom:209.136900px;}
.ydb{bottom:210.149400px;}
.y47{bottom:212.136900px;}
.y6d{bottom:217.386900px;}
.yeb{bottom:223.386900px;}
.y89{bottom:223.686900px;}
.y1e{bottom:224.652900px;}
.yb1{bottom:226.386900px;}
.ycc{bottom:227.886900px;}
.ye7{bottom:228.149400px;}
.y46{bottom:231.336900px;}
.y6c{bottom:236.436900px;}
.y88{bottom:242.436900px;}
.y1d{bottom:243.402900px;}
.yda{bottom:243.636900px;}
.yb0{bottom:245.136900px;}
.ycb{bottom:246.636900px;}
.y45{bottom:250.536900px;}
.y6b{bottom:255.486900px;}
.y87{bottom:261.186900px;}
.y1c{bottom:262.152900px;}
.yd9{bottom:262.386900px;}
.yaf{bottom:263.886900px;}
.yca{bottom:265.386900px;}
.y44{bottom:269.736900px;}
.y6a{bottom:274.536900px;}
.y86{bottom:279.936900px;}
.y1b{bottom:280.902900px;}
.yd8{bottom:281.136900px;}
.yae{bottom:282.636900px;}
.yc9{bottom:284.136900px;}
.y43{bottom:288.936900px;}
.y69{bottom:293.586900px;}
.y85{bottom:298.686900px;}
.yd7{bottom:299.886900px;}
.yad{bottom:301.386900px;}
.yc8{bottom:302.886900px;}
.y42{bottom:309.636900px;}
.y68{bottom:312.636900px;}
.yd6{bottom:318.636900px;}
.y84{bottom:318.936900px;}
.yac{bottom:320.136900px;}
.yc7{bottom:321.636900px;}
.y41{bottom:328.836900px;}
.y67{bottom:331.686900px;}
.yd5{bottom:337.386900px;}
.y83{bottom:337.686900px;}
.yab{bottom:338.886900px;}
.yc6{bottom:340.386900px;}
.y10b{bottom:344.652900px;}
.y40{bottom:348.036900px;}
.y66{bottom:350.736900px;}
.yd4{bottom:356.136900px;}
.y82{bottom:356.436900px;}
.yaa{bottom:357.636900px;}
.yc1{bottom:359.136900px;}
.y1a{bottom:359.652900px;}
.y10a{bottom:363.402900px;}
.yf5{bottom:364.386900px;}
.y3f{bottom:367.236900px;}
.y65{bottom:369.786900px;}
.yd3{bottom:374.886900px;}
.y81{bottom:375.186900px;}
.ya9{bottom:376.386900px;}
.yc0{bottom:377.886900px;}
.y19{bottom:378.402900px;}
.yf4{bottom:383.136900px;}
.y109{bottom:383.652900px;}
.y3e{bottom:386.436900px;}
.y64{bottom:388.836900px;}
.yd2{bottom:393.636900px;}
.y80{bottom:393.936900px;}
.ya8{bottom:395.136900px;}
.ybf{bottom:396.636900px;}
.y108{bottom:402.402900px;}
.y3d{bottom:405.636900px;}
.y18{bottom:406.152900px;}
.yf3{bottom:406.386900px;}
.y63{bottom:407.886900px;}
.y7f{bottom:412.686900px;}
.ya7{bottom:413.886900px;}
.ybe{bottom:415.386900px;}
.y107{bottom:421.152900px;}
.y3c{bottom:424.836900px;}
.y17{bottom:424.902900px;}
.yf2{bottom:425.136900px;}
.y62{bottom:426.936900px;}
.y7e{bottom:431.436900px;}
.ya6{bottom:432.636900px;}
.ybd{bottom:434.136900px;}
.y106{bottom:439.902900px;}
.y16{bottom:443.652900px;}
.y3b{bottom:444.036900px;}
.y61{bottom:445.986900px;}
.yf1{bottom:448.386900px;}
.y7d{bottom:450.186900px;}
.ya5{bottom:451.386900px;}
.ybc{bottom:452.886900px;}
.y105{bottom:458.652900px;}
.y15{bottom:462.402900px;}
.y3a{bottom:463.236900px;}
.y60{bottom:465.036900px;}
.y7c{bottom:468.936900px;}
.ya4{bottom:470.136900px;}
.ybb{bottom:471.636900px;}
.y104{bottom:477.402900px;}
.y14{bottom:481.152900px;}
.y39{bottom:482.436900px;}
.y5f{bottom:484.086900px;}
.y7b{bottom:487.686900px;}
.ya3{bottom:488.886900px;}
.yba{bottom:490.386900px;}
.y103{bottom:496.152900px;}
.y13{bottom:499.902900px;}
.y38{bottom:501.636900px;}
.y5e{bottom:503.136900px;}
.y7a{bottom:506.436900px;}
.ya2{bottom:507.636900px;}
.yb9{bottom:509.136900px;}
.yf0{bottom:513.636900px;}
.y102{bottom:514.902900px;}
.y12{bottom:518.652900px;}
.y37{bottom:520.836900px;}
.y5d{bottom:522.186900px;}
.y79{bottom:525.186900px;}
.ya1{bottom:526.386900px;}
.yb8{bottom:527.886900px;}
.yef{bottom:532.386900px;}
.y101{bottom:533.652900px;}
.y11{bottom:537.402900px;}
.y36{bottom:540.036900px;}
.y5c{bottom:541.236900px;}
.y78{bottom:543.936900px;}
.ya0{bottom:545.136900px;}
.yb7{bottom:546.636900px;}
.y100{bottom:552.402900px;}
.yee{bottom:555.636900px;}
.y10{bottom:556.152900px;}
.y35{bottom:559.236900px;}
.y5b{bottom:560.286900px;}
.y77{bottom:562.686900px;}
.y9f{bottom:563.886900px;}
.yb6{bottom:565.386900px;}
.yff{bottom:571.152900px;}
.yf{bottom:574.902900px;}
.y34{bottom:578.436900px;}
.y5a{bottom:579.336900px;}
.y76{bottom:581.436900px;}
.y9e{bottom:582.636900px;}
.yed{bottom:583.386900px;}
.yb5{bottom:584.136900px;}
.ye5{bottom:585.636900px;}
.yfe{bottom:589.902900px;}
.ye{bottom:593.652900px;}
.y33{bottom:597.636900px;}
.y59{bottom:598.386900px;}
.y75{bottom:600.186900px;}
.yea{bottom:601.386900px;}
.y9d{bottom:602.886900px;}
.ye4{bottom:604.386900px;}
.yfd{bottom:608.652900px;}
.yd{bottom:612.402900px;}
.y32{bottom:616.836900px;}
.y58{bottom:618.936900px;}
.ye9{bottom:620.136900px;}
.y9c{bottom:621.636900px;}
.ye3{bottom:623.136900px;}
.yfc{bottom:627.402900px;}
.yc{bottom:631.152900px;}
.y31{bottom:636.036900px;}
.y74{bottom:637.686900px;}
.y57{bottom:637.986900px;}
.y9b{bottom:640.386900px;}
.ye2{bottom:641.886900px;}
.yfb{bottom:646.152900px;}
.y30{bottom:655.236900px;}
.y73{bottom:656.436900px;}
.y56{bottom:657.036900px;}
.y9a{bottom:659.136900px;}
.ye1{bottom:660.636900px;}
.yfa{bottom:664.902900px;}
.y2f{bottom:674.436900px;}
.y72{bottom:675.186900px;}
.y55{bottom:676.086900px;}
.y99{bottom:677.886900px;}
.ye0{bottom:679.386900px;}
.yf9{bottom:683.652900px;}
.y2e{bottom:693.636900px;}
.y71{bottom:693.936900px;}
.y54{bottom:695.136900px;}
.y98{bottom:696.636900px;}
.ydf{bottom:698.136900px;}
.yb{bottom:702.402900px;}
.y2d{bottom:712.836900px;}
.y53{bottom:714.186900px;}
.y97{bottom:715.386900px;}
.yde{bottom:716.886900px;}
.ya{bottom:724.902900px;}
.yf8{bottom:730.152900px;}
.y2c{bottom:732.036900px;}
.y52{bottom:733.236900px;}
.y96{bottom:734.136900px;}
.ydd{bottom:735.636900px;}
.y2b{bottom:751.236900px;}
.y51{bottom:752.286900px;}
.yc5{bottom:752.886900px;}
.y95{bottom:754.386900px;}
.yf7{bottom:762.402900px;}
.y2a{bottom:770.436900px;}
.y50{bottom:771.336900px;}
.yc4{bottom:771.636900px;}
.y94{bottom:773.136900px;}
.yf6{bottom:781.152900px;}
.y29{bottom:789.636900px;}
.y4f{bottom:790.386900px;}
.y93{bottom:791.886900px;}
.y28{bottom:808.836900px;}
.yc3{bottom:809.136900px;}
.y4e{bottom:809.436900px;}
.y92{bottom:810.636900px;}
.y5{bottom:825.798900px;}
.yc2{bottom:827.886900px;}
.y27{bottom:828.036900px;}
.y4d{bottom:828.486900px;}
.y91{bottom:829.386900px;}
.y9{bottom:829.902900px;}
.y26{bottom:847.236900px;}
.y4c{bottom:847.536900px;}
.y90{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y4{bottom:855.338400px;}
.y25{bottom:866.436900px;}
.y4b{bottom:866.586900px;}
.y8f{bottom:866.886900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y24{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y23{bottom:922.796400px;}
.ha{height:29.004328px;}
.hc{height:41.765625px;}
.h3{height:44.586914px;}
.hd{height:46.792969px;}
.hb{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.h9{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.xb{left:108.425100px;}
.xc{left:113.844600px;}
.x7{left:128.093100px;}
.xa{left:133.937100px;}
.x9{left:142.440600px;}
.xd{left:268.509600px;}
.x8{left:317.993100px;}
.xe{left:322.938600px;}
.x5{left:443.360100px;}
.x3{left:481.104600px;}
.x2{left:497.096100px;}
.x4{left:501.255600px;}
.x1{left:605.471100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ws9{word-spacing:-35.258667pt;}
.ws2{word-spacing:-15.253333pt;}
.ws4{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws3{word-spacing:-8.892693pt;}
.ws8{word-spacing:-7.524587pt;}
.ws5{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.038400pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-10.425600pt;}
._13{margin-left:-7.893600pt;}
._d{margin-left:-6.693867pt;}
._3{margin-left:-5.390133pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.195200pt;}
._0{margin-left:-1.136800pt;}
._4{width:1.037600pt;}
._7{width:2.188267pt;}
._b{width:3.168000pt;}
._6{width:4.376533pt;}
._a{width:5.790400pt;}
._5{width:7.345067pt;}
._9{width:8.236800pt;}
._e{width:9.134400pt;}
._c{width:10.882667pt;}
._8{width:11.962133pt;}
._15{width:13.845333pt;}
._12{width:14.842667pt;}
._11{width:16.162667pt;}
._17{width:17.400533pt;}
._14{width:18.814400pt;}
._18{width:19.823467pt;}
._16{width:20.850133pt;}
._10{width:24.270400pt;}
._f{width:25.585600pt;}
._1a{width:27.916267pt;}
._19{width:29.282400pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y8e{bottom:115.499467pt;}
.y22{bottom:118.467467pt;}
.yb3{bottom:118.803467pt;}
.yd1{bottom:119.232800pt;}
.y49{bottom:122.799467pt;}
.y8d{bottom:132.166133pt;}
.y21{bottom:132.867467pt;}
.yd0{bottom:135.899467pt;}
.y4a{bottom:138.799467pt;}
.y70{bottom:141.099467pt;}
.y8c{bottom:148.832800pt;}
.y20{bottom:151.263467pt;}
.ycf{bottom:152.566133pt;}
.yb4{bottom:154.799467pt;}
.y6f{bottom:158.032800pt;}
.y8b{bottom:165.499467pt;}
.y1f{bottom:165.663467pt;}
.ydc{bottom:166.803467pt;}
.yce{bottom:169.232800pt;}
.ye6{bottom:170.799467pt;}
.y48{bottom:171.499467pt;}
.y6e{bottom:176.299467pt;}
.yec{bottom:181.899467pt;}
.y8a{bottom:182.166133pt;}
.ye8{bottom:182.803467pt;}
.yb2{bottom:184.566133pt;}
.ycd{bottom:185.899467pt;}
.ydb{bottom:186.799467pt;}
.y47{bottom:188.566133pt;}
.y6d{bottom:193.232800pt;}
.yeb{bottom:198.566133pt;}
.y89{bottom:198.832800pt;}
.y1e{bottom:199.691467pt;}
.yb1{bottom:201.232800pt;}
.ycc{bottom:202.566133pt;}
.ye7{bottom:202.799467pt;}
.y46{bottom:205.632800pt;}
.y6c{bottom:210.166133pt;}
.y88{bottom:215.499467pt;}
.y1d{bottom:216.358133pt;}
.yda{bottom:216.566133pt;}
.yb0{bottom:217.899467pt;}
.ycb{bottom:219.232800pt;}
.y45{bottom:222.699467pt;}
.y6b{bottom:227.099467pt;}
.y87{bottom:232.166133pt;}
.y1c{bottom:233.024800pt;}
.yd9{bottom:233.232800pt;}
.yaf{bottom:234.566133pt;}
.yca{bottom:235.899467pt;}
.y44{bottom:239.766133pt;}
.y6a{bottom:244.032800pt;}
.y86{bottom:248.832800pt;}
.y1b{bottom:249.691467pt;}
.yd8{bottom:249.899467pt;}
.yae{bottom:251.232800pt;}
.yc9{bottom:252.566133pt;}
.y43{bottom:256.832800pt;}
.y69{bottom:260.966133pt;}
.y85{bottom:265.499467pt;}
.yd7{bottom:266.566133pt;}
.yad{bottom:267.899467pt;}
.yc8{bottom:269.232800pt;}
.y42{bottom:275.232800pt;}
.y68{bottom:277.899467pt;}
.yd6{bottom:283.232800pt;}
.y84{bottom:283.499467pt;}
.yac{bottom:284.566133pt;}
.yc7{bottom:285.899467pt;}
.y41{bottom:292.299467pt;}
.y67{bottom:294.832800pt;}
.yd5{bottom:299.899467pt;}
.y83{bottom:300.166133pt;}
.yab{bottom:301.232800pt;}
.yc6{bottom:302.566133pt;}
.y10b{bottom:306.358133pt;}
.y40{bottom:309.366133pt;}
.y66{bottom:311.766133pt;}
.yd4{bottom:316.566133pt;}
.y82{bottom:316.832800pt;}
.yaa{bottom:317.899467pt;}
.yc1{bottom:319.232800pt;}
.y1a{bottom:319.691467pt;}
.y10a{bottom:323.024800pt;}
.yf5{bottom:323.899467pt;}
.y3f{bottom:326.432800pt;}
.y65{bottom:328.699467pt;}
.yd3{bottom:333.232800pt;}
.y81{bottom:333.499467pt;}
.ya9{bottom:334.566133pt;}
.yc0{bottom:335.899467pt;}
.y19{bottom:336.358133pt;}
.yf4{bottom:340.566133pt;}
.y109{bottom:341.024800pt;}
.y3e{bottom:343.499467pt;}
.y64{bottom:345.632800pt;}
.yd2{bottom:349.899467pt;}
.y80{bottom:350.166133pt;}
.ya8{bottom:351.232800pt;}
.ybf{bottom:352.566133pt;}
.y108{bottom:357.691467pt;}
.y3d{bottom:360.566133pt;}
.y18{bottom:361.024800pt;}
.yf3{bottom:361.232800pt;}
.y63{bottom:362.566133pt;}
.y7f{bottom:366.832800pt;}
.ya7{bottom:367.899467pt;}
.ybe{bottom:369.232800pt;}
.y107{bottom:374.358133pt;}
.y3c{bottom:377.632800pt;}
.y17{bottom:377.691467pt;}
.yf2{bottom:377.899467pt;}
.y62{bottom:379.499467pt;}
.y7e{bottom:383.499467pt;}
.ya6{bottom:384.566133pt;}
.ybd{bottom:385.899467pt;}
.y106{bottom:391.024800pt;}
.y16{bottom:394.358133pt;}
.y3b{bottom:394.699467pt;}
.y61{bottom:396.432800pt;}
.yf1{bottom:398.566133pt;}
.y7d{bottom:400.166133pt;}
.ya5{bottom:401.232800pt;}
.ybc{bottom:402.566133pt;}
.y105{bottom:407.691467pt;}
.y15{bottom:411.024800pt;}
.y3a{bottom:411.766133pt;}
.y60{bottom:413.366133pt;}
.y7c{bottom:416.832800pt;}
.ya4{bottom:417.899467pt;}
.ybb{bottom:419.232800pt;}
.y104{bottom:424.358133pt;}
.y14{bottom:427.691467pt;}
.y39{bottom:428.832800pt;}
.y5f{bottom:430.299467pt;}
.y7b{bottom:433.499467pt;}
.ya3{bottom:434.566133pt;}
.yba{bottom:435.899467pt;}
.y103{bottom:441.024800pt;}
.y13{bottom:444.358133pt;}
.y38{bottom:445.899467pt;}
.y5e{bottom:447.232800pt;}
.y7a{bottom:450.166133pt;}
.ya2{bottom:451.232800pt;}
.yb9{bottom:452.566133pt;}
.yf0{bottom:456.566133pt;}
.y102{bottom:457.691467pt;}
.y12{bottom:461.024800pt;}
.y37{bottom:462.966133pt;}
.y5d{bottom:464.166133pt;}
.y79{bottom:466.832800pt;}
.ya1{bottom:467.899467pt;}
.yb8{bottom:469.232800pt;}
.yef{bottom:473.232800pt;}
.y101{bottom:474.358133pt;}
.y11{bottom:477.691467pt;}
.y36{bottom:480.032800pt;}
.y5c{bottom:481.099467pt;}
.y78{bottom:483.499467pt;}
.ya0{bottom:484.566133pt;}
.yb7{bottom:485.899467pt;}
.y100{bottom:491.024800pt;}
.yee{bottom:493.899467pt;}
.y10{bottom:494.358133pt;}
.y35{bottom:497.099467pt;}
.y5b{bottom:498.032800pt;}
.y77{bottom:500.166133pt;}
.y9f{bottom:501.232800pt;}
.yb6{bottom:502.566133pt;}
.yff{bottom:507.691467pt;}
.yf{bottom:511.024800pt;}
.y34{bottom:514.166133pt;}
.y5a{bottom:514.966133pt;}
.y76{bottom:516.832800pt;}
.y9e{bottom:517.899467pt;}
.yed{bottom:518.566133pt;}
.yb5{bottom:519.232800pt;}
.ye5{bottom:520.566133pt;}
.yfe{bottom:524.358133pt;}
.ye{bottom:527.691467pt;}
.y33{bottom:531.232800pt;}
.y59{bottom:531.899467pt;}
.y75{bottom:533.499467pt;}
.yea{bottom:534.566133pt;}
.y9d{bottom:535.899467pt;}
.ye4{bottom:537.232800pt;}
.yfd{bottom:541.024800pt;}
.yd{bottom:544.358133pt;}
.y32{bottom:548.299467pt;}
.y58{bottom:550.166133pt;}
.ye9{bottom:551.232800pt;}
.y9c{bottom:552.566133pt;}
.ye3{bottom:553.899467pt;}
.yfc{bottom:557.691467pt;}
.yc{bottom:561.024800pt;}
.y31{bottom:565.366133pt;}
.y74{bottom:566.832800pt;}
.y57{bottom:567.099467pt;}
.y9b{bottom:569.232800pt;}
.ye2{bottom:570.566133pt;}
.yfb{bottom:574.358133pt;}
.y30{bottom:582.432800pt;}
.y73{bottom:583.499467pt;}
.y56{bottom:584.032800pt;}
.y9a{bottom:585.899467pt;}
.ye1{bottom:587.232800pt;}
.yfa{bottom:591.024800pt;}
.y2f{bottom:599.499467pt;}
.y72{bottom:600.166133pt;}
.y55{bottom:600.966133pt;}
.y99{bottom:602.566133pt;}
.ye0{bottom:603.899467pt;}
.yf9{bottom:607.691467pt;}
.y2e{bottom:616.566133pt;}
.y71{bottom:616.832800pt;}
.y54{bottom:617.899467pt;}
.y98{bottom:619.232800pt;}
.ydf{bottom:620.566133pt;}
.yb{bottom:624.358133pt;}
.y2d{bottom:633.632800pt;}
.y53{bottom:634.832800pt;}
.y97{bottom:635.899467pt;}
.yde{bottom:637.232800pt;}
.ya{bottom:644.358133pt;}
.yf8{bottom:649.024800pt;}
.y2c{bottom:650.699467pt;}
.y52{bottom:651.766133pt;}
.y96{bottom:652.566133pt;}
.ydd{bottom:653.899467pt;}
.y2b{bottom:667.766133pt;}
.y51{bottom:668.699467pt;}
.yc5{bottom:669.232800pt;}
.y95{bottom:670.566133pt;}
.yf7{bottom:677.691467pt;}
.y2a{bottom:684.832800pt;}
.y50{bottom:685.632800pt;}
.yc4{bottom:685.899467pt;}
.y94{bottom:687.232800pt;}
.yf6{bottom:694.358133pt;}
.y29{bottom:701.899467pt;}
.y4f{bottom:702.566133pt;}
.y93{bottom:703.899467pt;}
.y28{bottom:718.966133pt;}
.yc3{bottom:719.232800pt;}
.y4e{bottom:719.499467pt;}
.y92{bottom:720.566133pt;}
.y5{bottom:734.043467pt;}
.yc2{bottom:735.899467pt;}
.y27{bottom:736.032800pt;}
.y4d{bottom:736.432800pt;}
.y91{bottom:737.232800pt;}
.y9{bottom:737.691467pt;}
.y26{bottom:753.099467pt;}
.y4c{bottom:753.366133pt;}
.y90{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y4{bottom:760.300800pt;}
.y25{bottom:770.166133pt;}
.y4b{bottom:770.299467pt;}
.y8f{bottom:770.566133pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y24{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y23{bottom:820.263467pt;}
.ha{height:25.781625pt;}
.hc{height:37.125000pt;}
.h3{height:39.632812pt;}
.hd{height:41.593750pt;}
.hb{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.h9{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.xb{left:96.377867pt;}
.xc{left:101.195200pt;}
.x7{left:113.860533pt;}
.xa{left:119.055200pt;}
.x9{left:126.613867pt;}
.xd{left:238.675200pt;}
.x8{left:282.660533pt;}
.xe{left:287.056533pt;}
.x5{left:394.097867pt;}
.x3{left:427.648533pt;}
.x2{left:441.863200pt;}
.x4{left:445.560533pt;}
.x1{left:538.196533pt;}
}




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