
    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_d15bb2ea4857519c1390e073.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_0a360636416542324ea7cce3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_1e35891aa3b5129bc3f0acfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_1a23c333a9f4a431a6dbf3f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_83f29f99ea23ad13cab65fe5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.756836;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;}
.m4{transform:matrix(0.210528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210528,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v4{vertical-align:-129.720000px;}
.v7{vertical-align:-108.000000px;}
.v5{vertical-align:-93.600000px;}
.v2{vertical-align:-45.600000px;}
.v6{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.540000px;}
.v1{vertical-align:45.600000px;}
.ls8{letter-spacing:-1.140000px;}
.lsd{letter-spacing:-0.588000px;}
.lsf{letter-spacing:-0.354000px;}
.ls11{letter-spacing:-0.150000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012000px;}
.ls14{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.138000px;}
.lse{letter-spacing:0.183600px;}
.lsc{letter-spacing:0.426000px;}
.ls13{letter-spacing:0.486000px;}
.lsb{letter-spacing:0.612000px;}
.ls0{letter-spacing:1.680000px;}
.ls7{letter-spacing:3.120000px;}
.ls4{letter-spacing:6.130489px;}
.ls3{letter-spacing:6.420000px;}
.ls5{letter-spacing:253.693805px;}
.ls15{letter-spacing:269.580000px;}
.ls9{letter-spacing:273.336000px;}
.lsa{letter-spacing:274.896000px;}
.ls1{letter-spacing:428.970000px;}
.ls2{letter-spacing:1628.202670px;}
.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;}
}
.wsd{word-spacing:-28.170000px;}
.ws4{word-spacing:-27.516000px;}
.wsb{word-spacing:-24.552000px;}
.wsc{word-spacing:-24.480000px;}
.ws9{word-spacing:-24.426000px;}
.ws6{word-spacing:-24.414000px;}
.wsa{word-spacing:-24.264000px;}
.ws8{word-spacing:-24.060000px;}
.ws7{word-spacing:-23.826000px;}
.ws0{word-spacing:-22.080000px;}
.ws3{word-spacing:-21.096000px;}
.ws2{word-spacing:-18.780000px;}
.ws1{word-spacing:-17.820000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-13.440000px;}
._5{margin-left:-12.300000px;}
._9{margin-left:-10.890000px;}
._7{margin-left:-2.970000px;}
._6{margin-left:-1.920000px;}
._8{width:1.110000px;}
._3{width:2.520000px;}
._0{width:4.260000px;}
._1{width:5.520000px;}
._2{width:6.720000px;}
._f{width:8.259985px;}
._c{width:9.504000px;}
._b{width:10.512000px;}
._d{width:11.664000px;}
._e{width:13.180781px;}
._10{width:44.940000px;}
._a{width:197.040000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:51.600000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs9{font-size:96.150000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:20.805000px;}
.y6{bottom:57.300000px;}
.y5{bottom:91.800000px;}
.y4{bottom:103.500000px;}
.yf8{bottom:109.500000px;}
.y3{bottom:138.037500px;}
.y67{bottom:161.730000px;}
.yb1{bottom:170.430000px;}
.y3c{bottom:179.130000px;}
.yd9{bottom:180.330000px;}
.y66{bottom:185.130000px;}
.yf7{bottom:192.330000px;}
.yb0{bottom:194.130000px;}
.y3b{bottom:202.530000px;}
.y8f{bottom:202.830000px;}
.yd8{bottom:204.030000px;}
.y65{bottom:208.830000px;}
.yaf{bottom:217.530000px;}
.yf6{bottom:219.030000px;}
.y3a{bottom:226.230000px;}
.y64{bottom:232.230000px;}
.yd7{bottom:236.445000px;}
.yae{bottom:241.230000px;}
.yf5{bottom:246.030000px;}
.y39{bottom:249.630000px;}
.y8e{bottom:249.945000px;}
.yd6{bottom:251.130000px;}
.y63{bottom:255.945000px;}
.yad{bottom:264.630000px;}
.yf4{bottom:272.730000px;}
.y38{bottom:273.330000px;}
.yd5{bottom:274.530000px;}
.y62{bottom:279.375000px;}
.yac{bottom:288.075000px;}
.y37{bottom:296.775000px;}
.y8d{bottom:297.075000px;}
.y61{bottom:303.075000px;}
.yd4{bottom:307.275000px;}
.yab{bottom:311.775000px;}
.yf3{bottom:314.775000px;}
.y36{bottom:320.475000px;}
.yd3{bottom:321.675000px;}
.y60{bottom:326.475000px;}
.y7a{bottom:328.875000px;}
.yaa{bottom:335.175000px;}
.y35{bottom:343.875000px;}
.yd2{bottom:345.375000px;}
.y5f{bottom:350.175000px;}
.y79{bottom:352.275000px;}
.yf2{bottom:356.475000px;}
.ya9{bottom:358.875000px;}
.y34{bottom:367.575000px;}
.y5e{bottom:373.575000px;}
.y78{bottom:375.975000px;}
.yd1{bottom:377.775000px;}
.ya8{bottom:382.275000px;}
.y8c{bottom:390.975000px;}
.yd0{bottom:392.175000px;}
.y5d{bottom:397.275000px;}
.yf1{bottom:398.475000px;}
.y77{bottom:399.375000px;}
.ya7{bottom:405.975000px;}
.y33{bottom:414.375000px;}
.y8b{bottom:414.675000px;}
.y5c{bottom:420.675000px;}
.y76{bottom:423.075000px;}
.ycf{bottom:424.875000px;}
.y18{bottom:434.400000px;}
.y8a{bottom:438.105000px;}
.yce{bottom:439.320000px;}
.yf0{bottom:440.205000px;}
.y5b{bottom:444.405000px;}
.y75{bottom:446.505000px;}
.y90{bottom:446.820000px;}
.y89{bottom:461.820000px;}
.ycd{bottom:463.005000px;}
.y5a{bottom:467.820000px;}
.y74{bottom:469.905000px;}
.yef{bottom:482.205000px;}
.y88{bottom:485.205000px;}
.y16{bottom:490.320000px;}
.y59{bottom:491.205000px;}
.y73{bottom:493.605000px;}
.ycc{bottom:495.405000px;}
.ya6{bottom:503.505000px;}
.y87{bottom:508.905000px;}
.ycb{bottom:510.105000px;}
.y72{bottom:513.105000px;}
.y58{bottom:514.905000px;}
.y15{bottom:518.205000px;}
.y32{bottom:520.605000px;}
.yee{bottom:523.905000px;}
.ya5{bottom:526.905000px;}
.y86{bottom:532.305000px;}
.y57{bottom:538.305000px;}
.yca{bottom:542.505000px;}
.y31{bottom:544.005000px;}
.y14{bottom:546.105000px;}
.ya4{bottom:550.605000px;}
.y85{bottom:556.005000px;}
.yc9{bottom:557.205000px;}
.y56{bottom:562.005000px;}
.yed{bottom:565.905000px;}
.y30{bottom:567.705000px;}
.ya3{bottom:574.005000px;}
.y84{bottom:579.405000px;}
.yc8{bottom:580.605000px;}
.y55{bottom:585.450000px;}
.y2f{bottom:591.150000px;}
.ya2{bottom:597.750000px;}
.y83{bottom:603.150000px;}
.yc7{bottom:604.350000px;}
.y13{bottom:607.050000px;}
.yec{bottom:607.650000px;}
.y54{bottom:609.150000px;}
.y2e{bottom:614.850000px;}
.ydf{bottom:618.150000px;}
.ya1{bottom:621.150000px;}
.y82{bottom:626.550000px;}
.y53{bottom:632.550000px;}
.yc6{bottom:636.750000px;}
.y2d{bottom:638.250000px;}
.y12{bottom:639.750000px;}
.ya0{bottom:644.850000px;}
.yeb{bottom:649.650000px;}
.y81{bottom:649.950000px;}
.yc5{bottom:651.150000px;}
.y52{bottom:656.250000px;}
.y2c{bottom:661.950000px;}
.y9f{bottom:668.250000px;}
.y11{bottom:670.050000px;}
.y80{bottom:673.650000px;}
.yc4{bottom:674.850000px;}
.y51{bottom:679.650000px;}
.y2b{bottom:685.350000px;}
.yea{bottom:691.350000px;}
.y9e{bottom:691.650000px;}
.y10{bottom:694.050000px;}
.y7f{bottom:697.050000px;}
.y50{bottom:703.350000px;}
.yc3{bottom:707.250000px;}
.y2a{bottom:709.050000px;}
.yde{bottom:712.350000px;}
.y9d{bottom:715.350000px;}
.y7e{bottom:720.750000px;}
.yc2{bottom:721.950000px;}
.y4f{bottom:726.750000px;}
.y29{bottom:732.450000px;}
.ye9{bottom:733.380000px;}
.y9c{bottom:738.780000px;}
.y7d{bottom:744.180000px;}
.y4e{bottom:750.180000px;}
.yc1{bottom:754.380000px;}
.y28{bottom:756.180000px;}
.yf{bottom:759.180000px;}
.y9b{bottom:762.480000px;}
.y7c{bottom:767.880000px;}
.yc0{bottom:769.080000px;}
.y4d{bottom:773.880000px;}
.ye8{bottom:775.080000px;}
.y27{bottom:779.580000px;}
.y9a{bottom:785.880000px;}
.y7b{bottom:787.380000px;}
.ye{bottom:796.695000px;}
.y4c{bottom:797.280000px;}
.ybf{bottom:801.480000px;}
.y26{bottom:803.280000px;}
.y99{bottom:809.580000px;}
.ybe{bottom:816.195000px;}
.ye7{bottom:817.080000px;}
.y4b{bottom:820.980000px;}
.y25{bottom:826.695000px;}
.y98{bottom:832.980000px;}
.ybd{bottom:839.580000px;}
.yd{bottom:842.880000px;}
.y4a{bottom:844.380000px;}
.y24{bottom:850.080000px;}
.y97{bottom:856.695000px;}
.ye6{bottom:858.780000px;}
.ybc{bottom:863.280000px;}
.y49{bottom:868.080000px;}
.y71{bottom:870.480000px;}
.y23{bottom:873.780000px;}
.y96{bottom:880.080000px;}
.ybb{bottom:886.725000px;}
.yc{bottom:889.425000px;}
.y48{bottom:891.525000px;}
.y70{bottom:893.925000px;}
.y22{bottom:897.225000px;}
.ye5{bottom:900.825000px;}
.y95{bottom:903.825000px;}
.yba{bottom:910.425000px;}
.y47{bottom:915.225000px;}
.y6f{bottom:917.625000px;}
.y21{bottom:920.925000px;}
.ydd{bottom:924.225000px;}
.y94{bottom:927.225000px;}
.yb{bottom:933.225000px;}
.yb9{bottom:933.825000px;}
.y46{bottom:938.625000px;}
.y6e{bottom:941.025000px;}
.ye4{bottom:942.825000px;}
.y20{bottom:944.325000px;}
.y93{bottom:950.625000px;}
.yb8{bottom:957.225000px;}
.y45{bottom:962.325000px;}
.y6d{bottom:964.725000px;}
.y1f{bottom:968.025000px;}
.ydc{bottom:971.325000px;}
.y92{bottom:974.325000px;}
.yb7{bottom:980.925000px;}
.ye3{bottom:984.525000px;}
.y44{bottom:985.725000px;}
.y6c{bottom:988.125000px;}
.y1e{bottom:991.425000px;}
.y91{bottom:993.825000px;}
.y43{bottom:1009.125000px;}
.y6b{bottom:1011.825000px;}
.yb6{bottom:1013.325000px;}
.yb2{bottom:1014.825000px;}
.y1d{bottom:1015.125000px;}
.ya{bottom:1019.025000px;}
.yb5{bottom:1028.025000px;}
.y42{bottom:1032.825000px;}
.y6a{bottom:1035.225000px;}
.y1c{bottom:1038.570000px;}
.ye2{bottom:1038.855000px;}
.yb4{bottom:1051.455000px;}
.y41{bottom:1056.255000px;}
.y69{bottom:1058.955000px;}
.y1b{bottom:1062.255000px;}
.ydb{bottom:1065.255000px;}
.y9{bottom:1066.155000px;}
.y40{bottom:1079.955000px;}
.y1a{bottom:1085.655000px;}
.yb3{bottom:1091.955000px;}
.ye1{bottom:1093.155000px;}
.y68{bottom:1099.755000px;}
.y3f{bottom:1103.355000px;}
.y8{bottom:1113.255000px;}
.y17{bottom:1126.455000px;}
.y3e{bottom:1127.070000px;}
.ye0{bottom:1147.455000px;}
.y3d{bottom:1150.455000px;}
.y7{bottom:1154.070000px;}
.yda{bottom:1159.455000px;}
.y2{bottom:1173.570000px;}
.y1{bottom:1193.400000px;}
.h3{height:46.259766px;}
.h10{height:51.625195px;}
.hc{height:58.200000px;}
.h5{height:63.569297px;}
.h2{height:66.032227px;}
.hd{height:71.718750px;}
.h9{height:72.035156px;}
.he{height:78.038086px;}
.ha{height:90.043945px;}
.h4{height:91.859766px;}
.hb{height:96.046875px;}
.hf{height:96.196948px;}
.h8{height:108.052734px;}
.h7{height:144.070312px;}
.h6{height:156.076172px;}
.h1{height:1263.750000px;}
.h0{height:1263.900000px;}
.w2{width:297.900000px;}
.w1{width:893.250000px;}
.w0{width:893.400000px;}
.x0{left:0.000000px;}
.x1{left:47.400000px;}
.x2{left:74.437500px;}
.x7{left:77.400000px;}
.x8{left:186.375000px;}
.x6{left:198.675000px;}
.x9{left:236.175000px;}
.xd{left:239.175000px;}
.xe{left:240.975000px;}
.x11{left:275.175000px;}
.x10{left:279.675000px;}
.xb{left:307.020000px;}
.xf{left:316.020000px;}
.x4{left:361.620000px;}
.xc{left:373.020000px;}
.x5{left:420.450000px;}
.xa{left:712.425000px;}
.x3{left:808.170000px;}
@media print{
.v4{vertical-align:-115.306667pt;}
.v7{vertical-align:-96.000000pt;}
.v5{vertical-align:-83.200000pt;}
.v2{vertical-align:-40.533333pt;}
.v6{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.146667pt;}
.v1{vertical-align:40.533333pt;}
.ls8{letter-spacing:-1.013333pt;}
.lsd{letter-spacing:-0.522667pt;}
.lsf{letter-spacing:-0.314667pt;}
.ls11{letter-spacing:-0.133333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.010667pt;}
.ls14{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.122667pt;}
.lse{letter-spacing:0.163200pt;}
.lsc{letter-spacing:0.378667pt;}
.ls13{letter-spacing:0.432000pt;}
.lsb{letter-spacing:0.544000pt;}
.ls0{letter-spacing:1.493333pt;}
.ls7{letter-spacing:2.773333pt;}
.ls4{letter-spacing:5.449324pt;}
.ls3{letter-spacing:5.706667pt;}
.ls5{letter-spacing:225.505605pt;}
.ls15{letter-spacing:239.626667pt;}
.ls9{letter-spacing:242.965333pt;}
.lsa{letter-spacing:244.352000pt;}
.ls1{letter-spacing:381.306667pt;}
.ls2{letter-spacing:1447.291262pt;}
.wsd{word-spacing:-25.040000pt;}
.ws4{word-spacing:-24.458667pt;}
.wsb{word-spacing:-21.824000pt;}
.wsc{word-spacing:-21.760000pt;}
.ws9{word-spacing:-21.712000pt;}
.ws6{word-spacing:-21.701333pt;}
.wsa{word-spacing:-21.568000pt;}
.ws8{word-spacing:-21.386667pt;}
.ws7{word-spacing:-21.178667pt;}
.ws0{word-spacing:-19.626667pt;}
.ws3{word-spacing:-18.752000pt;}
.ws2{word-spacing:-16.693333pt;}
.ws1{word-spacing:-15.840000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-11.946667pt;}
._5{margin-left:-10.933333pt;}
._9{margin-left:-9.680000pt;}
._7{margin-left:-2.640000pt;}
._6{margin-left:-1.706667pt;}
._8{width:0.986667pt;}
._3{width:2.240000pt;}
._0{width:3.786667pt;}
._1{width:4.906667pt;}
._2{width:5.973333pt;}
._f{width:7.342209pt;}
._c{width:8.448000pt;}
._b{width:9.344000pt;}
._d{width:10.368000pt;}
._e{width:11.716250pt;}
._10{width:39.946667pt;}
._a{width:175.146667pt;}
.fsa{font-size:45.866667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs9{font-size:85.466667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:18.493333pt;}
.y6{bottom:50.933333pt;}
.y5{bottom:81.600000pt;}
.y4{bottom:92.000000pt;}
.yf8{bottom:97.333333pt;}
.y3{bottom:122.700000pt;}
.y67{bottom:143.760000pt;}
.yb1{bottom:151.493333pt;}
.y3c{bottom:159.226667pt;}
.yd9{bottom:160.293333pt;}
.y66{bottom:164.560000pt;}
.yf7{bottom:170.960000pt;}
.yb0{bottom:172.560000pt;}
.y3b{bottom:180.026667pt;}
.y8f{bottom:180.293333pt;}
.yd8{bottom:181.360000pt;}
.y65{bottom:185.626667pt;}
.yaf{bottom:193.360000pt;}
.yf6{bottom:194.693333pt;}
.y3a{bottom:201.093333pt;}
.y64{bottom:206.426667pt;}
.yd7{bottom:210.173333pt;}
.yae{bottom:214.426667pt;}
.yf5{bottom:218.693333pt;}
.y39{bottom:221.893333pt;}
.y8e{bottom:222.173333pt;}
.yd6{bottom:223.226667pt;}
.y63{bottom:227.506667pt;}
.yad{bottom:235.226667pt;}
.yf4{bottom:242.426667pt;}
.y38{bottom:242.960000pt;}
.yd5{bottom:244.026667pt;}
.y62{bottom:248.333333pt;}
.yac{bottom:256.066667pt;}
.y37{bottom:263.800000pt;}
.y8d{bottom:264.066667pt;}
.y61{bottom:269.400000pt;}
.yd4{bottom:273.133333pt;}
.yab{bottom:277.133333pt;}
.yf3{bottom:279.800000pt;}
.y36{bottom:284.866667pt;}
.yd3{bottom:285.933333pt;}
.y60{bottom:290.200000pt;}
.y7a{bottom:292.333333pt;}
.yaa{bottom:297.933333pt;}
.y35{bottom:305.666667pt;}
.yd2{bottom:307.000000pt;}
.y5f{bottom:311.266667pt;}
.y79{bottom:313.133333pt;}
.yf2{bottom:316.866667pt;}
.ya9{bottom:319.000000pt;}
.y34{bottom:326.733333pt;}
.y5e{bottom:332.066667pt;}
.y78{bottom:334.200000pt;}
.yd1{bottom:335.800000pt;}
.ya8{bottom:339.800000pt;}
.y8c{bottom:347.533333pt;}
.yd0{bottom:348.600000pt;}
.y5d{bottom:353.133333pt;}
.yf1{bottom:354.200000pt;}
.y77{bottom:355.000000pt;}
.ya7{bottom:360.866667pt;}
.y33{bottom:368.333333pt;}
.y8b{bottom:368.600000pt;}
.y5c{bottom:373.933333pt;}
.y76{bottom:376.066667pt;}
.ycf{bottom:377.666667pt;}
.y18{bottom:386.133333pt;}
.y8a{bottom:389.426667pt;}
.yce{bottom:390.506667pt;}
.yf0{bottom:391.293333pt;}
.y5b{bottom:395.026667pt;}
.y75{bottom:396.893333pt;}
.y90{bottom:397.173333pt;}
.y89{bottom:410.506667pt;}
.ycd{bottom:411.560000pt;}
.y5a{bottom:415.840000pt;}
.y74{bottom:417.693333pt;}
.yef{bottom:428.626667pt;}
.y88{bottom:431.293333pt;}
.y16{bottom:435.840000pt;}
.y59{bottom:436.626667pt;}
.y73{bottom:438.760000pt;}
.ycc{bottom:440.360000pt;}
.ya6{bottom:447.560000pt;}
.y87{bottom:452.360000pt;}
.ycb{bottom:453.426667pt;}
.y72{bottom:456.093333pt;}
.y58{bottom:457.693333pt;}
.y15{bottom:460.626667pt;}
.y32{bottom:462.760000pt;}
.yee{bottom:465.693333pt;}
.ya5{bottom:468.360000pt;}
.y86{bottom:473.160000pt;}
.y57{bottom:478.493333pt;}
.yca{bottom:482.226667pt;}
.y31{bottom:483.560000pt;}
.y14{bottom:485.426667pt;}
.ya4{bottom:489.426667pt;}
.y85{bottom:494.226667pt;}
.yc9{bottom:495.293333pt;}
.y56{bottom:499.560000pt;}
.yed{bottom:503.026667pt;}
.y30{bottom:504.626667pt;}
.ya3{bottom:510.226667pt;}
.y84{bottom:515.026667pt;}
.yc8{bottom:516.093333pt;}
.y55{bottom:520.400000pt;}
.y2f{bottom:525.466667pt;}
.ya2{bottom:531.333333pt;}
.y83{bottom:536.133333pt;}
.yc7{bottom:537.200000pt;}
.y13{bottom:539.600000pt;}
.yec{bottom:540.133333pt;}
.y54{bottom:541.466667pt;}
.y2e{bottom:546.533333pt;}
.ydf{bottom:549.466667pt;}
.ya1{bottom:552.133333pt;}
.y82{bottom:556.933333pt;}
.y53{bottom:562.266667pt;}
.yc6{bottom:566.000000pt;}
.y2d{bottom:567.333333pt;}
.y12{bottom:568.666667pt;}
.ya0{bottom:573.200000pt;}
.yeb{bottom:577.466667pt;}
.y81{bottom:577.733333pt;}
.yc5{bottom:578.800000pt;}
.y52{bottom:583.333333pt;}
.y2c{bottom:588.400000pt;}
.y9f{bottom:594.000000pt;}
.y11{bottom:595.600000pt;}
.y80{bottom:598.800000pt;}
.yc4{bottom:599.866667pt;}
.y51{bottom:604.133333pt;}
.y2b{bottom:609.200000pt;}
.yea{bottom:614.533333pt;}
.y9e{bottom:614.800000pt;}
.y10{bottom:616.933333pt;}
.y7f{bottom:619.600000pt;}
.y50{bottom:625.200000pt;}
.yc3{bottom:628.666667pt;}
.y2a{bottom:630.266667pt;}
.yde{bottom:633.200000pt;}
.y9d{bottom:635.866667pt;}
.y7e{bottom:640.666667pt;}
.yc2{bottom:641.733333pt;}
.y4f{bottom:646.000000pt;}
.y29{bottom:651.066667pt;}
.ye9{bottom:651.893333pt;}
.y9c{bottom:656.693333pt;}
.y7d{bottom:661.493333pt;}
.y4e{bottom:666.826667pt;}
.yc1{bottom:670.560000pt;}
.y28{bottom:672.160000pt;}
.yf{bottom:674.826667pt;}
.y9b{bottom:677.760000pt;}
.y7c{bottom:682.560000pt;}
.yc0{bottom:683.626667pt;}
.y4d{bottom:687.893333pt;}
.ye8{bottom:688.960000pt;}
.y27{bottom:692.960000pt;}
.y9a{bottom:698.560000pt;}
.y7b{bottom:699.893333pt;}
.ye{bottom:708.173333pt;}
.y4c{bottom:708.693333pt;}
.ybf{bottom:712.426667pt;}
.y26{bottom:714.026667pt;}
.y99{bottom:719.626667pt;}
.ybe{bottom:725.506667pt;}
.ye7{bottom:726.293333pt;}
.y4b{bottom:729.760000pt;}
.y25{bottom:734.840000pt;}
.y98{bottom:740.426667pt;}
.ybd{bottom:746.293333pt;}
.yd{bottom:749.226667pt;}
.y4a{bottom:750.560000pt;}
.y24{bottom:755.626667pt;}
.y97{bottom:761.506667pt;}
.ye6{bottom:763.360000pt;}
.ybc{bottom:767.360000pt;}
.y49{bottom:771.626667pt;}
.y71{bottom:773.760000pt;}
.y23{bottom:776.693333pt;}
.y96{bottom:782.293333pt;}
.ybb{bottom:788.200000pt;}
.yc{bottom:790.600000pt;}
.y48{bottom:792.466667pt;}
.y70{bottom:794.600000pt;}
.y22{bottom:797.533333pt;}
.ye5{bottom:800.733333pt;}
.y95{bottom:803.400000pt;}
.yba{bottom:809.266667pt;}
.y47{bottom:813.533333pt;}
.y6f{bottom:815.666667pt;}
.y21{bottom:818.600000pt;}
.ydd{bottom:821.533333pt;}
.y94{bottom:824.200000pt;}
.yb{bottom:829.533333pt;}
.yb9{bottom:830.066667pt;}
.y46{bottom:834.333333pt;}
.y6e{bottom:836.466667pt;}
.ye4{bottom:838.066667pt;}
.y20{bottom:839.400000pt;}
.y93{bottom:845.000000pt;}
.yb8{bottom:850.866667pt;}
.y45{bottom:855.400000pt;}
.y6d{bottom:857.533333pt;}
.y1f{bottom:860.466667pt;}
.ydc{bottom:863.400000pt;}
.y92{bottom:866.066667pt;}
.yb7{bottom:871.933333pt;}
.ye3{bottom:875.133333pt;}
.y44{bottom:876.200000pt;}
.y6c{bottom:878.333333pt;}
.y1e{bottom:881.266667pt;}
.y91{bottom:883.400000pt;}
.y43{bottom:897.000000pt;}
.y6b{bottom:899.400000pt;}
.yb6{bottom:900.733333pt;}
.yb2{bottom:902.066667pt;}
.y1d{bottom:902.333333pt;}
.ya{bottom:905.800000pt;}
.yb5{bottom:913.800000pt;}
.y42{bottom:918.066667pt;}
.y6a{bottom:920.200000pt;}
.y1c{bottom:923.173333pt;}
.ye2{bottom:923.426667pt;}
.yb4{bottom:934.626667pt;}
.y41{bottom:938.893333pt;}
.y69{bottom:941.293333pt;}
.y1b{bottom:944.226667pt;}
.ydb{bottom:946.893333pt;}
.y9{bottom:947.693333pt;}
.y40{bottom:959.960000pt;}
.y1a{bottom:965.026667pt;}
.yb3{bottom:970.626667pt;}
.ye1{bottom:971.693333pt;}
.y68{bottom:977.560000pt;}
.y3f{bottom:980.760000pt;}
.y8{bottom:989.560000pt;}
.y17{bottom:1001.293333pt;}
.y3e{bottom:1001.840000pt;}
.ye0{bottom:1019.960000pt;}
.y3d{bottom:1022.626667pt;}
.y7{bottom:1025.840000pt;}
.yda{bottom:1030.626667pt;}
.y2{bottom:1043.173333pt;}
.y1{bottom:1060.800000pt;}
.h3{height:41.119792pt;}
.h10{height:45.889062pt;}
.hc{height:51.733333pt;}
.h5{height:56.506042pt;}
.h2{height:58.695312pt;}
.hd{height:63.750000pt;}
.h9{height:64.031250pt;}
.he{height:69.367188pt;}
.ha{height:80.039062pt;}
.h4{height:81.653125pt;}
.hb{height:85.375000pt;}
.hf{height:85.508398pt;}
.h8{height:96.046875pt;}
.h7{height:128.062500pt;}
.h6{height:138.734375pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.466667pt;}
.w2{width:264.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.133333pt;}
.x0{left:0.000000pt;}
.x1{left:42.133333pt;}
.x2{left:66.166667pt;}
.x7{left:68.800000pt;}
.x8{left:165.666667pt;}
.x6{left:176.600000pt;}
.x9{left:209.933333pt;}
.xd{left:212.600000pt;}
.xe{left:214.200000pt;}
.x11{left:244.600000pt;}
.x10{left:248.600000pt;}
.xb{left:272.906667pt;}
.xf{left:280.906667pt;}
.x4{left:321.440000pt;}
.xc{left:331.573333pt;}
.x5{left:373.733333pt;}
.xa{left:633.266667pt;}
.x3{left:718.373333pt;}
}




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