
    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_3610a74d2d95393eb7601a28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_9621003bde77a3ffe989a5c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_8e67c6a691b9de9281c01b7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_e738a7472faf51dd63550452.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_39f3d74c10505db1ed4c0c24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_ae8cfe2d799de7e3a0c37798.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_ee4a143257b07527b3601e51.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_1e53e310e52635cbedf4c19d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.584400px;}
.lsf{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.233280px;}
.ls11{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.666000px;}
.lsa{letter-spacing:0.900000px;}
.ls13{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.818560px;}
.ws1{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-1433.796480px;}
._4{margin-left:-1087.505280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-557.671680px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._9{margin-left:-8.650800px;}
._1a{margin-left:-7.248960px;}
._15{margin-left:-5.582880px;}
._8{margin-left:-4.532400px;}
._b{margin-left:-3.409200px;}
._c{margin-left:-2.216880px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._a{width:3.071760px;}
._d{width:4.078320px;}
._10{width:6.018480px;}
._14{width:7.142400px;}
._13{width:8.143920px;}
._f{width:9.382320px;}
._e{width:10.697040px;}
._17{width:12.193200px;}
._16{width:13.206960px;}
._1b{width:16.413120px;}
._12{width:17.769600px;}
._11{width:19.540560px;}
._18{width:33.366960px;}
._19{width:34.842000px;}
._1c{width:55.000080px;}
._1d{width:56.667600px;}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:6.120000px;}
.ya{bottom:7.920000px;}
.y6{bottom:25.920000px;}
.y9{bottom:32.220000px;}
.y5{bottom:45.720000px;}
.y8{bottom:59.070000px;}
.yd{bottom:59.580000px;}
.y4{bottom:65.550000px;}
.y107{bottom:81.900000px;}
.ya1{bottom:83.700000px;}
.y3{bottom:85.350000px;}
.y3d{bottom:91.980000px;}
.y7{bottom:93.270000px;}
.y74{bottom:99.900000px;}
.y106{bottom:101.700000px;}
.ya0{bottom:103.500000px;}
.ycc{bottom:104.220000px;}
.y2{bottom:105.150000px;}
.yed{bottom:107.280000px;}
.y3c{bottom:111.780000px;}
.y73{bottom:119.700000px;}
.y105{bottom:121.500000px;}
.y9f{bottom:123.480000px;}
.ycb{bottom:124.020000px;}
.y3b{bottom:131.580000px;}
.yec{bottom:136.080000px;}
.y72{bottom:139.500000px;}
.y104{bottom:141.480000px;}
.y9e{bottom:143.280000px;}
.yca{bottom:144.000000px;}
.y3a{bottom:151.560000px;}
.y71{bottom:159.510000px;}
.y103{bottom:161.310000px;}
.y9d{bottom:163.110000px;}
.yc9{bottom:163.830000px;}
.yeb{bottom:164.910000px;}
.y39{bottom:171.390000px;}
.y70{bottom:179.310000px;}
.y102{bottom:181.110000px;}
.y9c{bottom:182.910000px;}
.yc8{bottom:183.630000px;}
.yea{bottom:184.710000px;}
.y38{bottom:191.190000px;}
.y6f{bottom:199.110000px;}
.y101{bottom:200.910000px;}
.y9b{bottom:202.710000px;}
.yc7{bottom:203.430000px;}
.ye9{bottom:204.690000px;}
.y37{bottom:210.990000px;}
.y6e{bottom:218.910000px;}
.y100{bottom:220.710000px;}
.y9a{bottom:222.690000px;}
.yc6{bottom:223.230000px;}
.ye8{bottom:224.490000px;}
.y36{bottom:230.790000px;}
.y6d{bottom:238.710000px;}
.yff{bottom:240.690000px;}
.y99{bottom:242.490000px;}
.yc5{bottom:243.210000px;}
.ye7{bottom:244.290000px;}
.y35{bottom:250.770000px;}
.y6c{bottom:258.690000px;}
.yfe{bottom:260.490000px;}
.yc4{bottom:263.010000px;}
.ye6{bottom:264.090000px;}
.y34{bottom:270.570000px;}
.y98{bottom:271.290000px;}
.y6b{bottom:278.490000px;}
.yfd{bottom:280.290000px;}
.ye5{bottom:283.890000px;}
.y33{bottom:290.370000px;}
.y97{bottom:291.090000px;}
.yc3{bottom:291.810000px;}
.y6a{bottom:298.290000px;}
.yfc{bottom:300.090000px;}
.ye4{bottom:303.870000px;}
.y32{bottom:310.170000px;}
.y96{bottom:310.890000px;}
.yc2{bottom:311.610000px;}
.y69{bottom:318.090000px;}
.yfb{bottom:319.890000px;}
.ye3{bottom:323.670000px;}
.y31{bottom:329.970000px;}
.y95{bottom:330.870000px;}
.yc1{bottom:331.410000px;}
.y68{bottom:337.890000px;}
.yfa{bottom:339.870000px;}
.y30{bottom:349.950000px;}
.y94{bottom:350.670000px;}
.yc0{bottom:351.390000px;}
.ye2{bottom:352.470000px;}
.y67{bottom:357.870000px;}
.yf9{bottom:359.670000px;}
.y2f{bottom:369.750000px;}
.y93{bottom:370.470000px;}
.ybf{bottom:371.190000px;}
.ye1{bottom:372.270000px;}
.y66{bottom:377.670000px;}
.yf8{bottom:379.470000px;}
.y2e{bottom:389.550000px;}
.y92{bottom:390.270000px;}
.ybe{bottom:390.990000px;}
.ye0{bottom:392.070000px;}
.y65{bottom:397.470000px;}
.yf7{bottom:399.270000px;}
.y2d{bottom:409.395000px;}
.y91{bottom:410.115000px;}
.ybd{bottom:410.835000px;}
.ydf{bottom:412.095000px;}
.y64{bottom:417.315000px;}
.yf6{bottom:419.115000px;}
.y2c{bottom:429.195000px;}
.y90{bottom:430.095000px;}
.ybc{bottom:430.635000px;}
.yde{bottom:431.895000px;}
.y63{bottom:437.115000px;}
.yf5{bottom:448.095000px;}
.y2b{bottom:449.175000px;}
.y8f{bottom:449.895000px;}
.ybb{bottom:450.435000px;}
.ydd{bottom:451.695000px;}
.y62{bottom:457.095000px;}
.yf4{bottom:467.895000px;}
.y2a{bottom:468.975000px;}
.y8e{bottom:469.695000px;}
.y61{bottom:476.895000px;}
.ydc{bottom:480.495000px;}
.yf3{bottom:487.695000px;}
.y29{bottom:488.775000px;}
.yba{bottom:491.295000px;}
.y60{bottom:496.695000px;}
.y8d{bottom:498.495000px;}
.ydb{bottom:500.295000px;}
.yf2{bottom:507.495000px;}
.y28{bottom:508.575000px;}
.yb9{bottom:511.275000px;}
.y5f{bottom:516.495000px;}
.y8c{bottom:518.295000px;}
.yda{bottom:520.275000px;}
.yf1{bottom:527.295000px;}
.y27{bottom:528.375000px;}
.yb8{bottom:531.075000px;}
.y5e{bottom:536.295000px;}
.y8b{bottom:538.275000px;}
.yd9{bottom:540.075000px;}
.yf0{bottom:547.275000px;}
.y26{bottom:548.355000px;}
.yb7{bottom:550.875000px;}
.y5d{bottom:556.275000px;}
.y8a{bottom:558.075000px;}
.yd8{bottom:559.875000px;}
.yef{bottom:567.075000px;}
.y25{bottom:568.155000px;}
.yb6{bottom:570.675000px;}
.y5c{bottom:576.075000px;}
.y89{bottom:577.875000px;}
.yee{bottom:586.875000px;}
.yd7{bottom:588.675000px;}
.y24{bottom:590.115000px;}
.yb5{bottom:590.475000px;}
.y5b{bottom:595.875000px;}
.y88{bottom:597.675000px;}
.yd6{bottom:608.475000px;}
.y23{bottom:610.095000px;}
.yb4{bottom:610.455000px;}
.y5a{bottom:615.675000px;}
.y87{bottom:617.475000px;}
.yd5{bottom:628.455000px;}
.y22{bottom:629.895000px;}
.y59{bottom:635.475000px;}
.y86{bottom:637.455000px;}
.yb3{bottom:639.255000px;}
.yd4{bottom:648.255000px;}
.y21{bottom:649.725000px;}
.y58{bottom:655.485000px;}
.y85{bottom:657.285000px;}
.yb2{bottom:659.085000px;}
.yd3{bottom:668.085000px;}
.y20{bottom:669.525000px;}
.y57{bottom:675.285000px;}
.y84{bottom:677.085000px;}
.yb1{bottom:678.885000px;}
.yd2{bottom:687.885000px;}
.y1f{bottom:689.325000px;}
.y56{bottom:695.085000px;}
.y83{bottom:696.885000px;}
.yb0{bottom:707.685000px;}
.y1e{bottom:709.305000px;}
.y55{bottom:714.885000px;}
.y82{bottom:725.685000px;}
.yaf{bottom:727.665000px;}
.y1d{bottom:729.105000px;}
.y54{bottom:734.685000px;}
.yd1{bottom:736.665000px;}
.y81{bottom:745.665000px;}
.yae{bottom:747.465000px;}
.y1c{bottom:748.905000px;}
.y53{bottom:754.665000px;}
.yd0{bottom:756.465000px;}
.y80{bottom:765.465000px;}
.yad{bottom:767.265000px;}
.y1b{bottom:768.705000px;}
.y52{bottom:774.465000px;}
.ycf{bottom:776.265000px;}
.y7f{bottom:785.265000px;}
.y1a{bottom:788.505000px;}
.y51{bottom:794.265000px;}
.yac{bottom:796.065000px;}
.y7e{bottom:805.065000px;}
.y19{bottom:808.485000px;}
.y50{bottom:814.065000px;}
.yab{bottom:815.865000px;}
.y7d{bottom:824.865000px;}
.y18{bottom:828.285000px;}
.y4f{bottom:833.865000px;}
.yaa{bottom:835.845000px;}
.y7c{bottom:844.845000px;}
.y17{bottom:848.085000px;}
.y4e{bottom:853.845000px;}
.ya9{bottom:855.645000px;}
.y7b{bottom:864.645000px;}
.y16{bottom:867.885000px;}
.y4d{bottom:873.645000px;}
.ya8{bottom:875.445000px;}
.y7a{bottom:884.445000px;}
.y15{bottom:887.685000px;}
.y4c{bottom:893.445000px;}
.ya7{bottom:895.245000px;}
.y79{bottom:904.290000px;}
.y14{bottom:907.530000px;}
.y4b{bottom:913.290000px;}
.ya6{bottom:915.090000px;}
.y78{bottom:924.090000px;}
.y13{bottom:929.670000px;}
.y4a{bottom:933.090000px;}
.ya5{bottom:935.070000px;}
.y77{bottom:944.070000px;}
.y12{bottom:949.650000px;}
.y49{bottom:953.070000px;}
.y76{bottom:963.870000px;}
.y11{bottom:969.990000px;}
.y48{bottom:972.870000px;}
.y75{bottom:983.670000px;}
.y10{bottom:991.230000px;}
.y47{bottom:992.670000px;}
.ya4{bottom:1003.470000px;}
.y46{bottom:1012.470000px;}
.yf{bottom:1014.630000px;}
.ya3{bottom:1023.270000px;}
.y45{bottom:1032.270000px;}
.ya2{bottom:1043.250000px;}
.ye{bottom:1046.490000px;}
.y44{bottom:1052.250000px;}
.yce{bottom:1063.050000px;}
.yc{bottom:1072.050000px;}
.ycd{bottom:1082.850000px;}
.y1{bottom:1088.250000px;}
.y43{bottom:1091.850000px;}
.y42{bottom:1111.650000px;}
.y41{bottom:1131.450000px;}
.y40{bottom:1151.460000px;}
.y3f{bottom:1171.260000px;}
.y3e{bottom:1197.180000px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.hc{height:43.506914px;}
.ha{height:46.736719px;}
.hb{height:49.255313px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.h5{height:55.987031px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:116.676000px;}
.w4{width:167.610000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.xd{left:30.240000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.x1{left:54.000000px;}
.x9{left:75.960000px;}
.xe{left:80.999987px;}
.x2{left:97.230000px;}
.xf{left:108.035987px;}
.x8{left:120.285000px;}
.xc{left:148.170000px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.xa{left:670.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.519467pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls11{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.592000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls13{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws0{word-spacing:-15.838720pt;}
.ws1{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-1274.485760pt;}
._4{margin-left:-966.671360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-495.708160pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._9{margin-left:-7.689600pt;}
._1a{margin-left:-6.443520pt;}
._15{margin-left:-4.962560pt;}
._8{margin-left:-4.028800pt;}
._b{margin-left:-3.030400pt;}
._c{margin-left:-1.970560pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._a{width:2.730453pt;}
._d{width:3.625173pt;}
._10{width:5.349760pt;}
._14{width:6.348800pt;}
._13{width:7.239040pt;}
._f{width:8.339840pt;}
._e{width:9.508480pt;}
._17{width:10.838400pt;}
._16{width:11.739520pt;}
._1b{width:14.589440pt;}
._12{width:15.795200pt;}
._11{width:17.369387pt;}
._18{width:29.659520pt;}
._19{width:30.970667pt;}
._1c{width:48.888960pt;}
._1d{width:50.371200pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.040000pt;}
.y6{bottom:23.040000pt;}
.y9{bottom:28.640000pt;}
.y5{bottom:40.640000pt;}
.y8{bottom:52.506667pt;}
.yd{bottom:52.960000pt;}
.y4{bottom:58.266667pt;}
.y107{bottom:72.800000pt;}
.ya1{bottom:74.400000pt;}
.y3{bottom:75.866667pt;}
.y3d{bottom:81.760000pt;}
.y7{bottom:82.906667pt;}
.y74{bottom:88.800000pt;}
.y106{bottom:90.400000pt;}
.ya0{bottom:92.000000pt;}
.ycc{bottom:92.640000pt;}
.y2{bottom:93.466667pt;}
.yed{bottom:95.360000pt;}
.y3c{bottom:99.360000pt;}
.y73{bottom:106.400000pt;}
.y105{bottom:108.000000pt;}
.y9f{bottom:109.760000pt;}
.ycb{bottom:110.240000pt;}
.y3b{bottom:116.960000pt;}
.yec{bottom:120.960000pt;}
.y72{bottom:124.000000pt;}
.y104{bottom:125.760000pt;}
.y9e{bottom:127.360000pt;}
.yca{bottom:128.000000pt;}
.y3a{bottom:134.720000pt;}
.y71{bottom:141.786667pt;}
.y103{bottom:143.386667pt;}
.y9d{bottom:144.986667pt;}
.yc9{bottom:145.626667pt;}
.yeb{bottom:146.586667pt;}
.y39{bottom:152.346667pt;}
.y70{bottom:159.386667pt;}
.y102{bottom:160.986667pt;}
.y9c{bottom:162.586667pt;}
.yc8{bottom:163.226667pt;}
.yea{bottom:164.186667pt;}
.y38{bottom:169.946667pt;}
.y6f{bottom:176.986667pt;}
.y101{bottom:178.586667pt;}
.y9b{bottom:180.186667pt;}
.yc7{bottom:180.826667pt;}
.ye9{bottom:181.946667pt;}
.y37{bottom:187.546667pt;}
.y6e{bottom:194.586667pt;}
.y100{bottom:196.186667pt;}
.y9a{bottom:197.946667pt;}
.yc6{bottom:198.426667pt;}
.ye8{bottom:199.546667pt;}
.y36{bottom:205.146667pt;}
.y6d{bottom:212.186667pt;}
.yff{bottom:213.946667pt;}
.y99{bottom:215.546667pt;}
.yc5{bottom:216.186667pt;}
.ye7{bottom:217.146667pt;}
.y35{bottom:222.906667pt;}
.y6c{bottom:229.946667pt;}
.yfe{bottom:231.546667pt;}
.yc4{bottom:233.786667pt;}
.ye6{bottom:234.746667pt;}
.y34{bottom:240.506667pt;}
.y98{bottom:241.146667pt;}
.y6b{bottom:247.546667pt;}
.yfd{bottom:249.146667pt;}
.ye5{bottom:252.346667pt;}
.y33{bottom:258.106667pt;}
.y97{bottom:258.746667pt;}
.yc3{bottom:259.386667pt;}
.y6a{bottom:265.146667pt;}
.yfc{bottom:266.746667pt;}
.ye4{bottom:270.106667pt;}
.y32{bottom:275.706667pt;}
.y96{bottom:276.346667pt;}
.yc2{bottom:276.986667pt;}
.y69{bottom:282.746667pt;}
.yfb{bottom:284.346667pt;}
.ye3{bottom:287.706667pt;}
.y31{bottom:293.306667pt;}
.y95{bottom:294.106667pt;}
.yc1{bottom:294.586667pt;}
.y68{bottom:300.346667pt;}
.yfa{bottom:302.106667pt;}
.y30{bottom:311.066667pt;}
.y94{bottom:311.706667pt;}
.yc0{bottom:312.346667pt;}
.ye2{bottom:313.306667pt;}
.y67{bottom:318.106667pt;}
.yf9{bottom:319.706667pt;}
.y2f{bottom:328.666667pt;}
.y93{bottom:329.306667pt;}
.ybf{bottom:329.946667pt;}
.ye1{bottom:330.906667pt;}
.y66{bottom:335.706667pt;}
.yf8{bottom:337.306667pt;}
.y2e{bottom:346.266667pt;}
.y92{bottom:346.906667pt;}
.ybe{bottom:347.546667pt;}
.ye0{bottom:348.506667pt;}
.y65{bottom:353.306667pt;}
.yf7{bottom:354.906667pt;}
.y2d{bottom:363.906667pt;}
.y91{bottom:364.546667pt;}
.ybd{bottom:365.186667pt;}
.ydf{bottom:366.306667pt;}
.y64{bottom:370.946667pt;}
.yf6{bottom:372.546667pt;}
.y2c{bottom:381.506667pt;}
.y90{bottom:382.306667pt;}
.ybc{bottom:382.786667pt;}
.yde{bottom:383.906667pt;}
.y63{bottom:388.546667pt;}
.yf5{bottom:398.306667pt;}
.y2b{bottom:399.266667pt;}
.y8f{bottom:399.906667pt;}
.ybb{bottom:400.386667pt;}
.ydd{bottom:401.506667pt;}
.y62{bottom:406.306667pt;}
.yf4{bottom:415.906667pt;}
.y2a{bottom:416.866667pt;}
.y8e{bottom:417.506667pt;}
.y61{bottom:423.906667pt;}
.ydc{bottom:427.106667pt;}
.yf3{bottom:433.506667pt;}
.y29{bottom:434.466667pt;}
.yba{bottom:436.706667pt;}
.y60{bottom:441.506667pt;}
.y8d{bottom:443.106667pt;}
.ydb{bottom:444.706667pt;}
.yf2{bottom:451.106667pt;}
.y28{bottom:452.066667pt;}
.yb9{bottom:454.466667pt;}
.y5f{bottom:459.106667pt;}
.y8c{bottom:460.706667pt;}
.yda{bottom:462.466667pt;}
.yf1{bottom:468.706667pt;}
.y27{bottom:469.666667pt;}
.yb8{bottom:472.066667pt;}
.y5e{bottom:476.706667pt;}
.y8b{bottom:478.466667pt;}
.yd9{bottom:480.066667pt;}
.yf0{bottom:486.466667pt;}
.y26{bottom:487.426667pt;}
.yb7{bottom:489.666667pt;}
.y5d{bottom:494.466667pt;}
.y8a{bottom:496.066667pt;}
.yd8{bottom:497.666667pt;}
.yef{bottom:504.066667pt;}
.y25{bottom:505.026667pt;}
.yb6{bottom:507.266667pt;}
.y5c{bottom:512.066667pt;}
.y89{bottom:513.666667pt;}
.yee{bottom:521.666667pt;}
.yd7{bottom:523.266667pt;}
.y24{bottom:524.546667pt;}
.yb5{bottom:524.866667pt;}
.y5b{bottom:529.666667pt;}
.y88{bottom:531.266667pt;}
.yd6{bottom:540.866667pt;}
.y23{bottom:542.306667pt;}
.yb4{bottom:542.626667pt;}
.y5a{bottom:547.266667pt;}
.y87{bottom:548.866667pt;}
.yd5{bottom:558.626667pt;}
.y22{bottom:559.906667pt;}
.y59{bottom:564.866667pt;}
.y86{bottom:566.626667pt;}
.yb3{bottom:568.226667pt;}
.yd4{bottom:576.226667pt;}
.y21{bottom:577.533333pt;}
.y58{bottom:582.653333pt;}
.y85{bottom:584.253333pt;}
.yb2{bottom:585.853333pt;}
.yd3{bottom:593.853333pt;}
.y20{bottom:595.133333pt;}
.y57{bottom:600.253333pt;}
.y84{bottom:601.853333pt;}
.yb1{bottom:603.453333pt;}
.yd2{bottom:611.453333pt;}
.y1f{bottom:612.733333pt;}
.y56{bottom:617.853333pt;}
.y83{bottom:619.453333pt;}
.yb0{bottom:629.053333pt;}
.y1e{bottom:630.493333pt;}
.y55{bottom:635.453333pt;}
.y82{bottom:645.053333pt;}
.yaf{bottom:646.813333pt;}
.y1d{bottom:648.093333pt;}
.y54{bottom:653.053333pt;}
.yd1{bottom:654.813333pt;}
.y81{bottom:662.813333pt;}
.yae{bottom:664.413333pt;}
.y1c{bottom:665.693333pt;}
.y53{bottom:670.813333pt;}
.yd0{bottom:672.413333pt;}
.y80{bottom:680.413333pt;}
.yad{bottom:682.013333pt;}
.y1b{bottom:683.293333pt;}
.y52{bottom:688.413333pt;}
.ycf{bottom:690.013333pt;}
.y7f{bottom:698.013333pt;}
.y1a{bottom:700.893333pt;}
.y51{bottom:706.013333pt;}
.yac{bottom:707.613333pt;}
.y7e{bottom:715.613333pt;}
.y19{bottom:718.653333pt;}
.y50{bottom:723.613333pt;}
.yab{bottom:725.213333pt;}
.y7d{bottom:733.213333pt;}
.y18{bottom:736.253333pt;}
.y4f{bottom:741.213333pt;}
.yaa{bottom:742.973333pt;}
.y7c{bottom:750.973333pt;}
.y17{bottom:753.853333pt;}
.y4e{bottom:758.973333pt;}
.ya9{bottom:760.573333pt;}
.y7b{bottom:768.573333pt;}
.y16{bottom:771.453333pt;}
.y4d{bottom:776.573333pt;}
.ya8{bottom:778.173333pt;}
.y7a{bottom:786.173333pt;}
.y15{bottom:789.053333pt;}
.y4c{bottom:794.173333pt;}
.ya7{bottom:795.773333pt;}
.y79{bottom:803.813333pt;}
.y14{bottom:806.693333pt;}
.y4b{bottom:811.813333pt;}
.ya6{bottom:813.413333pt;}
.y78{bottom:821.413333pt;}
.y13{bottom:826.373333pt;}
.y4a{bottom:829.413333pt;}
.ya5{bottom:831.173333pt;}
.y77{bottom:839.173333pt;}
.y12{bottom:844.133333pt;}
.y49{bottom:847.173333pt;}
.y76{bottom:856.773333pt;}
.y11{bottom:862.213333pt;}
.y48{bottom:864.773333pt;}
.y75{bottom:874.373333pt;}
.y10{bottom:881.093333pt;}
.y47{bottom:882.373333pt;}
.ya4{bottom:891.973333pt;}
.y46{bottom:899.973333pt;}
.yf{bottom:901.893333pt;}
.ya3{bottom:909.573333pt;}
.y45{bottom:917.573333pt;}
.ya2{bottom:927.333333pt;}
.ye{bottom:930.213333pt;}
.y44{bottom:935.333333pt;}
.yce{bottom:944.933333pt;}
.yc{bottom:952.933333pt;}
.ycd{bottom:962.533333pt;}
.y1{bottom:967.333333pt;}
.y43{bottom:970.533333pt;}
.y42{bottom:988.133333pt;}
.y41{bottom:1005.733333pt;}
.y40{bottom:1023.520000pt;}
.y3f{bottom:1041.120000pt;}
.y3e{bottom:1064.160000pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.hc{height:38.672812pt;}
.ha{height:41.543750pt;}
.hb{height:43.782500pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.h5{height:49.766250pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:103.712000pt;}
.w4{width:148.986667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.xd{left:26.880000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.x1{left:48.000000pt;}
.x9{left:67.520000pt;}
.xe{left:71.999988pt;}
.x2{left:86.426667pt;}
.xf{left:96.031988pt;}
.x8{left:106.920000pt;}
.xc{left:131.706667pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.xa{left:596.293333pt;}
}




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