
    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_f8d424886958548c49177e03.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0d37922191a17a1d6d7d8c0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_653ebd3fae539c0446007062.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_7fff2a4dc3c413c755c73664.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_8abb4282c0d07d89881d524c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_9221d0f96c437be60ae6a3c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_abc48114ff65e12e5f9bef3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls18{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.172200px;}
.ls3{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.069600px;}
.lsd{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.049680px;}
.ls12{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018720px;}
.ls11{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.322800px;}
.ls1a{letter-spacing:1.152000px;}
.ls1{letter-spacing:1.206000px;}
.ls14{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.340640px;}
.ls16{letter-spacing:1.476000px;}
.ls17{letter-spacing:19.458720px;}
.lsf{letter-spacing:33.425280px;}
.ls13{letter-spacing:49.248000px;}
.ls1c{letter-spacing:54.864000px;}
.ls10{letter-spacing:77.321280px;}
.ls7{letter-spacing:199.038240px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws1{word-spacing:-44.640720px;}
.ws0{word-spacing:-43.434720px;}
.wsf{word-spacing:-41.328000px;}
.ws11{word-spacing:-40.032000px;}
.ws12{word-spacing:-28.097280px;}
.ws2{word-spacing:-26.944080px;}
.wsd{word-spacing:-26.658720px;}
.wsc{word-spacing:-26.640000px;}
.ws8{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.wse{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.584000px;}
.ws14{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.224000px;}
.wsa{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-23.441280px;}
._c{margin-left:-19.594320px;}
._f{margin-left:-18.252000px;}
._10{margin-left:-14.964000px;}
._e{margin-left:-13.164000px;}
._6{margin-left:-9.504000px;}
._a{margin-left:-5.954640px;}
._d{margin-left:-4.294320px;}
._3{margin-left:-2.799360px;}
._0{margin-left:-1.406160px;}
._1{width:1.562400px;}
._2{width:2.617680px;}
._4{width:4.032720px;}
._16{width:5.147280px;}
._15{width:6.192000px;}
._8{width:7.928400px;}
._12{width:10.012320px;}
._11{width:11.232000px;}
._14{width:13.176000px;}
._13{width:14.184000px;}
._1d{width:15.300000px;}
._1f{width:16.312080px;}
._1e{width:17.352000px;}
._17{width:18.474480px;}
._1a{width:21.240000px;}
._22{width:23.040000px;}
._1c{width:24.734160px;}
._1b{width:25.920000px;}
._19{width:35.208000px;}
._18{width:36.360000px;}
._20{width:54.864000px;}
._21{width:64.008000px;}
._7{width:169.277760px;}
._9{width:199.038240px;}
._5{width:844.068480px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,110,46);}
.fc2{color:rgb(5,61,39);}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(3,45,28);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(13,29,25);}
.fc7{color:rgb(87,237,144);}
.fc0{color:rgb(34,77,66);}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.780000px;}
.y35{bottom:3.960000px;}
.y24{bottom:6.120000px;}
.y18{bottom:6.300000px;}
.yd1{bottom:24.474000px;}
.y1a{bottom:24.480000px;}
.y1f{bottom:24.525000px;}
.ycb{bottom:25.560000px;}
.yc1{bottom:25.590000px;}
.yc8{bottom:25.740000px;}
.y80{bottom:45.180000px;}
.y1e{bottom:45.225000px;}
.yb8{bottom:46.260000px;}
.yc0{bottom:46.290000px;}
.yd0{bottom:46.434000px;}
.yc5{bottom:46.440000px;}
.yc7{bottom:47.520000px;}
.y7f{bottom:65.880000px;}
.y1d{bottom:65.925000px;}
.yb7{bottom:66.960000px;}
.ycf{bottom:67.134000px;}
.yc4{bottom:67.140000px;}
.ybf{bottom:68.250000px;}
.yc3{bottom:68.400000px;}
.y7a{bottom:76.140000px;}
.y7e{bottom:86.580000px;}
.yce{bottom:87.834000px;}
.y2{bottom:88.236000px;}
.ybe{bottom:88.950000px;}
.yb6{bottom:88.965000px;}
.ycd{bottom:89.094000px;}
.y7d{bottom:107.280000px;}
.yb5{bottom:109.665000px;}
.ybd{bottom:110.910000px;}
.y96{bottom:127.476000px;}
.y7c{bottom:127.980000px;}
.yb4{bottom:130.365000px;}
.ybc{bottom:131.610000px;}
.yca{bottom:131.625000px;}
.ycc{bottom:135.936000px;}
.y7b{bottom:148.680000px;}
.yb3{bottom:151.065000px;}
.y87{bottom:151.590000px;}
.ybb{bottom:152.310000px;}
.yb2{bottom:152.325000px;}
.y36{bottom:166.530000px;}
.y86{bottom:172.290000px;}
.yba{bottom:173.010000px;}
.yb9{bottom:174.270000px;}
.ya9{bottom:181.650000px;}
.y85{bottom:192.990000px;}
.y34{bottom:207.390000px;}
.y84{bottom:213.690000px;}
.y83{bottom:234.390000px;}
.y33{bottom:245.010000px;}
.yc9{bottom:255.450000px;}
.y32{bottom:272.370000px;}
.y82{bottom:274.350000px;}
.y10{bottom:279.570000px;}
.y31{bottom:299.550000px;}
.yf{bottom:300.270000px;}
.ye{bottom:320.970000px;}
.y30{bottom:326.910000px;}
.y81{bottom:336.630000px;}
.yd{bottom:346.395000px;}
.y2f{bottom:354.315000px;}
.y79{bottom:360.075000px;}
.y2e{bottom:381.675000px;}
.ydc{bottom:386.355000px;}
.yc{bottom:391.215000px;}
.ydb{bottom:403.275000px;}
.y2d{bottom:408.855000px;}
.yc6{bottom:417.495000px;}
.y2c{bottom:427.215000px;}
.yb{bottom:436.035000px;}
.y2b{bottom:454.575000px;}
.ya{bottom:476.355000px;}
.y2a{bottom:484.275000px;}
.yc2{bottom:495.435000px;}
.y9{bottom:497.055000px;}
.y4d{bottom:512.355000px;}
.y8{bottom:517.755000px;}
.y29{bottom:520.995000px;}
.y4c{bottom:533.055000px;}
.y78{bottom:535.755000px;}
.y7{bottom:538.455000px;}
.y77{bottom:556.455000px;}
.y28{bottom:557.535000px;}
.y6{bottom:559.155000px;}
.y4b{bottom:562.395000px;}
.y76{bottom:577.155000px;}
.y5{bottom:581.115000px;}
.ya8{bottom:582.195000px;}
.y64{bottom:586.335000px;}
.y4a{bottom:590.655000px;}
.y27{bottom:594.255000px;}
.y75{bottom:597.855000px;}
.y63{bottom:607.065000px;}
.ya7{bottom:610.125000px;}
.y49{bottom:611.385000px;}
.y74{bottom:618.585000px;}
.y62{bottom:627.765000px;}
.y26{bottom:631.005000px;}
.y48{bottom:632.085000px;}
.y4{bottom:637.485000px;}
.ya6{bottom:638.205000px;}
.y73{bottom:639.285000px;}
.y61{bottom:648.465000px;}
.y47{bottom:654.045000px;}
.y72{bottom:659.985000px;}
.ya5{bottom:666.465000px;}
.y60{bottom:669.165000px;}
.y46{bottom:680.325000px;}
.y71{bottom:680.685000px;}
.y3{bottom:682.305000px;}
.y25{bottom:685.905000px;}
.ya4{bottom:689.685000px;}
.y5f{bottom:689.865000px;}
.y45{bottom:701.025000px;}
.y70{bottom:701.385000px;}
.y5e{bottom:710.565000px;}
.y6f{bottom:722.085000px;}
.y23{bottom:722.625000px;}
.y5d{bottom:731.265000px;}
.y44{bottom:732.165000px;}
.y1{bottom:736.845000px;}
.y6e{bottom:742.785000px;}
.y5c{bottom:751.965000px;}
.y22{bottom:759.165000px;}
.ya3{bottom:762.045000px;}
.y6d{bottom:763.485000px;}
.y43{bottom:768.705000px;}
.y5b{bottom:772.665000px;}
.ya2{bottom:782.745000px;}
.y6c{bottom:784.185000px;}
.y21{bottom:792.645000px;}
.y5a{bottom:793.365000px;}
.yb1{bottom:798.945000px;}
.ya1{bottom:803.445000px;}
.y6b{bottom:804.885000px;}
.y42{bottom:805.245000px;}
.y59{bottom:815.685000px;}
.y20{bottom:815.865000px;}
.ya0{bottom:824.145000px;}
.y6a{bottom:825.585000px;}
.y58{bottom:838.005000px;}
.y41{bottom:840.525000px;}
.y9f{bottom:844.845000px;}
.y69{bottom:846.285000px;}
.y1c{bottom:852.585000px;}
.yda{bottom:855.105000px;}
.y57{bottom:860.325000px;}
.y40{bottom:861.225000px;}
.y9e{bottom:865.545000px;}
.y68{bottom:866.985000px;}
.y56{bottom:882.870000px;}
.yd9{bottom:883.410000px;}
.y9d{bottom:886.290000px;}
.y67{bottom:887.730000px;}
.y94{bottom:890.070000px;}
.y3f{bottom:892.410000px;}
.yd8{bottom:903.930000px;}
.y55{bottom:905.190000px;}
.y9c{bottom:906.990000px;}
.y66{bottom:908.430000px;}
.y93{bottom:910.770000px;}
.yd7{bottom:924.630000px;}
.y54{bottom:927.510000px;}
.y3e{bottom:927.690000px;}
.y65{bottom:929.130000px;}
.y92{bottom:931.470000px;}
.yd6{bottom:945.330000px;}
.y9b{bottom:948.390000px;}
.y1b{bottom:948.930000px;}
.y53{bottom:949.830000px;}
.y91{bottom:952.170000px;}
.y3d{bottom:958.650000px;}
.yd5{bottom:966.030000px;}
.y9a{bottom:968.910000px;}
.y52{bottom:970.530000px;}
.y90{bottom:972.870000px;}
.yb0{bottom:981.690000px;}
.y19{bottom:985.650000px;}
.yd4{bottom:986.730000px;}
.y99{bottom:989.610000px;}
.y51{bottom:991.230000px;}
.y8f{bottom:993.570000px;}
.y3c{bottom:995.190000px;}
.yd3{bottom:1010.130000px;}
.y98{bottom:1010.310000px;}
.y50{bottom:1011.930000px;}
.yaf{bottom:1012.470000px;}
.y8e{bottom:1014.270000px;}
.y3b{bottom:1031.730000px;}
.y4f{bottom:1032.630000px;}
.yae{bottom:1033.170000px;}
.y8d{bottom:1036.230000px;}
.y17{bottom:1040.550000px;}
.y39{bottom:1042.530000px;}
.y97{bottom:1050.450000px;}
.y4e{bottom:1053.330000px;}
.yad{bottom:1053.870000px;}
.y8c{bottom:1056.930000px;}
.y3a{bottom:1068.450000px;}
.y16{bottom:1074.030000px;}
.yac{bottom:1074.570000px;}
.y8b{bottom:1078.710000px;}
.y38{bottom:1083.390000px;}
.yd2{bottom:1086.990000px;}
.yab{bottom:1095.270000px;}
.y8a{bottom:1099.410000px;}
.y89{bottom:1120.110000px;}
.y15{bottom:1123.890000px;}
.y37{bottom:1124.070000px;}
.yaa{bottom:1135.230000px;}
.y88{bottom:1140.840000px;}
.y95{bottom:1142.280000px;}
.y12{bottom:1161.540000px;}
.y13{bottom:1178.460000px;}
.y11{bottom:1182.240000px;}
.h6{height:20.700000px;}
.hb{height:23.040000px;}
.h8{height:23.220000px;}
.hc{height:23.256000px;}
.h11{height:27.180000px;}
.he{height:27.360000px;}
.h10{height:27.396000px;}
.h9{height:41.400000px;}
.hd{height:59.439023px;}
.hf{height:61.189805px;}
.h14{height:62.100000px;}
.h3{height:62.327813px;}
.h1c{height:63.360000px;}
.h18{height:64.440000px;}
.h1b{height:64.476000px;}
.h1d{height:64.546875px;}
.h12{height:69.086250px;}
.h2{height:75.093750px;}
.ha{height:82.836000px;}
.h17{height:85.320000px;}
.h5{height:99.874688px;}
.h1a{height:106.020000px;}
.h19{height:148.536000px;}
.h7{height:150.187500px;}
.h4{height:162.953438px;}
.h13{height:165.600000px;}
.h15{height:169.230000px;}
.h16{height:191.190000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:10.080000px;}
.w10{width:20.160000px;}
.w8{width:38.016000px;}
.w9{width:104.940000px;}
.w11{width:116.676000px;}
.wc{width:138.276000px;}
.we{width:159.330000px;}
.w6{width:251.535000px;}
.w4{width:254.415000px;}
.wa{width:260.715000px;}
.wb{width:316.470000px;}
.w5{width:479.955000px;}
.w7{width:483.375000px;}
.wf{width:562.605000px;}
.wd{width:584.385000px;}
.w12{width:605.085000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:6.516000px;}
.x8{left:15.696000px;}
.x15{left:32.940000px;}
.x3{left:84.959987px;}
.xc{left:102.995987px;}
.xe{left:111.995987px;}
.x9{left:123.696000px;}
.xf{left:138.995987px;}
.x14{left:202.530000px;}
.xd{left:223.230000px;}
.xa{left:229.530000px;}
.x11{left:245.010000px;}
.x7{left:337.215000px;}
.x6{left:340.095000px;}
.x2{left:352.334987px;}
.xb{left:491.145000px;}
.x10{left:578.984987px;}
.x12{left:787.470000px;}
.x4{left:797.550000px;}
.x13{left:805.109987px;}
.x1{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.153067pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.061867pt;}
.lsd{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.044160pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016640pt;}
.ls11{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.286933pt;}
.ls1a{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.072000pt;}
.ls14{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.191680pt;}
.ls16{letter-spacing:1.312000pt;}
.ls17{letter-spacing:17.296640pt;}
.lsf{letter-spacing:29.711360pt;}
.ls13{letter-spacing:43.776000pt;}
.ls1c{letter-spacing:48.768000pt;}
.ls10{letter-spacing:68.730027pt;}
.ls7{letter-spacing:176.922880pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1{word-spacing:-39.680640pt;}
.ws0{word-spacing:-38.608640pt;}
.wsf{word-spacing:-36.736000pt;}
.ws11{word-spacing:-35.584000pt;}
.ws12{word-spacing:-24.975360pt;}
.ws2{word-spacing:-23.950293pt;}
.wsd{word-spacing:-23.696640pt;}
.wsc{word-spacing:-23.680000pt;}
.ws8{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.wse{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws14{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.088000pt;}
.wsa{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-20.836693pt;}
._c{margin-left:-17.417173pt;}
._f{margin-left:-16.224000pt;}
._10{margin-left:-13.301333pt;}
._e{margin-left:-11.701333pt;}
._6{margin-left:-8.448000pt;}
._a{margin-left:-5.293013pt;}
._d{margin-left:-3.817173pt;}
._3{margin-left:-2.488320pt;}
._0{margin-left:-1.249920pt;}
._1{width:1.388800pt;}
._2{width:2.326827pt;}
._4{width:3.584640pt;}
._16{width:4.575360pt;}
._15{width:5.504000pt;}
._8{width:7.047467pt;}
._12{width:8.899840pt;}
._11{width:9.984000pt;}
._14{width:11.712000pt;}
._13{width:12.608000pt;}
._1d{width:13.600000pt;}
._1f{width:14.499627pt;}
._1e{width:15.424000pt;}
._17{width:16.421760pt;}
._1a{width:18.880000pt;}
._22{width:20.480000pt;}
._1c{width:21.985920pt;}
._1b{width:23.040000pt;}
._19{width:31.296000pt;}
._18{width:32.320000pt;}
._20{width:48.768000pt;}
._21{width:56.896000pt;}
._7{width:150.469120pt;}
._9{width:176.922880pt;}
._5{width:750.283093pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.360000pt;}
.y35{bottom:3.520000pt;}
.y24{bottom:5.440000pt;}
.y18{bottom:5.600000pt;}
.yd1{bottom:21.754667pt;}
.y1a{bottom:21.760000pt;}
.y1f{bottom:21.800000pt;}
.ycb{bottom:22.720000pt;}
.yc1{bottom:22.746667pt;}
.yc8{bottom:22.880000pt;}
.y80{bottom:40.160000pt;}
.y1e{bottom:40.200000pt;}
.yb8{bottom:41.120000pt;}
.yc0{bottom:41.146667pt;}
.yd0{bottom:41.274667pt;}
.yc5{bottom:41.280000pt;}
.yc7{bottom:42.240000pt;}
.y7f{bottom:58.560000pt;}
.y1d{bottom:58.600000pt;}
.yb7{bottom:59.520000pt;}
.ycf{bottom:59.674667pt;}
.yc4{bottom:59.680000pt;}
.ybf{bottom:60.666667pt;}
.yc3{bottom:60.800000pt;}
.y7a{bottom:67.680000pt;}
.y7e{bottom:76.960000pt;}
.yce{bottom:78.074667pt;}
.y2{bottom:78.432000pt;}
.ybe{bottom:79.066667pt;}
.yb6{bottom:79.080000pt;}
.ycd{bottom:79.194667pt;}
.y7d{bottom:95.360000pt;}
.yb5{bottom:97.480000pt;}
.ybd{bottom:98.586667pt;}
.y96{bottom:113.312000pt;}
.y7c{bottom:113.760000pt;}
.yb4{bottom:115.880000pt;}
.ybc{bottom:116.986667pt;}
.yca{bottom:117.000000pt;}
.ycc{bottom:120.832000pt;}
.y7b{bottom:132.160000pt;}
.yb3{bottom:134.280000pt;}
.y87{bottom:134.746667pt;}
.ybb{bottom:135.386667pt;}
.yb2{bottom:135.400000pt;}
.y36{bottom:148.026667pt;}
.y86{bottom:153.146667pt;}
.yba{bottom:153.786667pt;}
.yb9{bottom:154.906667pt;}
.ya9{bottom:161.466667pt;}
.y85{bottom:171.546667pt;}
.y34{bottom:184.346667pt;}
.y84{bottom:189.946667pt;}
.y83{bottom:208.346667pt;}
.y33{bottom:217.786667pt;}
.yc9{bottom:227.066667pt;}
.y32{bottom:242.106667pt;}
.y82{bottom:243.866667pt;}
.y10{bottom:248.506667pt;}
.y31{bottom:266.266667pt;}
.yf{bottom:266.906667pt;}
.ye{bottom:285.306667pt;}
.y30{bottom:290.586667pt;}
.y81{bottom:299.226667pt;}
.yd{bottom:307.906667pt;}
.y2f{bottom:314.946667pt;}
.y79{bottom:320.066667pt;}
.y2e{bottom:339.266667pt;}
.ydc{bottom:343.426667pt;}
.yc{bottom:347.746667pt;}
.ydb{bottom:358.466667pt;}
.y2d{bottom:363.426667pt;}
.yc6{bottom:371.106667pt;}
.y2c{bottom:379.746667pt;}
.yb{bottom:387.586667pt;}
.y2b{bottom:404.066667pt;}
.ya{bottom:423.426667pt;}
.y2a{bottom:430.466667pt;}
.yc2{bottom:440.386667pt;}
.y9{bottom:441.826667pt;}
.y4d{bottom:455.426667pt;}
.y8{bottom:460.226667pt;}
.y29{bottom:463.106667pt;}
.y4c{bottom:473.826667pt;}
.y78{bottom:476.226667pt;}
.y7{bottom:478.626667pt;}
.y77{bottom:494.626667pt;}
.y28{bottom:495.586667pt;}
.y6{bottom:497.026667pt;}
.y4b{bottom:499.906667pt;}
.y76{bottom:513.026667pt;}
.y5{bottom:516.546667pt;}
.ya8{bottom:517.506667pt;}
.y64{bottom:521.186667pt;}
.y4a{bottom:525.026667pt;}
.y27{bottom:528.226667pt;}
.y75{bottom:531.426667pt;}
.y63{bottom:539.613333pt;}
.ya7{bottom:542.333333pt;}
.y49{bottom:543.453333pt;}
.y74{bottom:549.853333pt;}
.y62{bottom:558.013333pt;}
.y26{bottom:560.893333pt;}
.y48{bottom:561.853333pt;}
.y4{bottom:566.653333pt;}
.ya6{bottom:567.293333pt;}
.y73{bottom:568.253333pt;}
.y61{bottom:576.413333pt;}
.y47{bottom:581.373333pt;}
.y72{bottom:586.653333pt;}
.ya5{bottom:592.413333pt;}
.y60{bottom:594.813333pt;}
.y46{bottom:604.733333pt;}
.y71{bottom:605.053333pt;}
.y3{bottom:606.493333pt;}
.y25{bottom:609.693333pt;}
.ya4{bottom:613.053333pt;}
.y5f{bottom:613.213333pt;}
.y45{bottom:623.133333pt;}
.y70{bottom:623.453333pt;}
.y5e{bottom:631.613333pt;}
.y6f{bottom:641.853333pt;}
.y23{bottom:642.333333pt;}
.y5d{bottom:650.013333pt;}
.y44{bottom:650.813333pt;}
.y1{bottom:654.973333pt;}
.y6e{bottom:660.253333pt;}
.y5c{bottom:668.413333pt;}
.y22{bottom:674.813333pt;}
.ya3{bottom:677.373333pt;}
.y6d{bottom:678.653333pt;}
.y43{bottom:683.293333pt;}
.y5b{bottom:686.813333pt;}
.ya2{bottom:695.773333pt;}
.y6c{bottom:697.053333pt;}
.y21{bottom:704.573333pt;}
.y5a{bottom:705.213333pt;}
.yb1{bottom:710.173333pt;}
.ya1{bottom:714.173333pt;}
.y6b{bottom:715.453333pt;}
.y42{bottom:715.773333pt;}
.y59{bottom:725.053333pt;}
.y20{bottom:725.213333pt;}
.ya0{bottom:732.573333pt;}
.y6a{bottom:733.853333pt;}
.y58{bottom:744.893333pt;}
.y41{bottom:747.133333pt;}
.y9f{bottom:750.973333pt;}
.y69{bottom:752.253333pt;}
.y1c{bottom:757.853333pt;}
.yda{bottom:760.093333pt;}
.y57{bottom:764.733333pt;}
.y40{bottom:765.533333pt;}
.y9e{bottom:769.373333pt;}
.y68{bottom:770.653333pt;}
.y56{bottom:784.773333pt;}
.yd9{bottom:785.253333pt;}
.y9d{bottom:787.813333pt;}
.y67{bottom:789.093333pt;}
.y94{bottom:791.173333pt;}
.y3f{bottom:793.253333pt;}
.yd8{bottom:803.493333pt;}
.y55{bottom:804.613333pt;}
.y9c{bottom:806.213333pt;}
.y66{bottom:807.493333pt;}
.y93{bottom:809.573333pt;}
.yd7{bottom:821.893333pt;}
.y54{bottom:824.453333pt;}
.y3e{bottom:824.613333pt;}
.y65{bottom:825.893333pt;}
.y92{bottom:827.973333pt;}
.yd6{bottom:840.293333pt;}
.y9b{bottom:843.013333pt;}
.y1b{bottom:843.493333pt;}
.y53{bottom:844.293333pt;}
.y91{bottom:846.373333pt;}
.y3d{bottom:852.133333pt;}
.yd5{bottom:858.693333pt;}
.y9a{bottom:861.253333pt;}
.y52{bottom:862.693333pt;}
.y90{bottom:864.773333pt;}
.yb0{bottom:872.613333pt;}
.y19{bottom:876.133333pt;}
.yd4{bottom:877.093333pt;}
.y99{bottom:879.653333pt;}
.y51{bottom:881.093333pt;}
.y8f{bottom:883.173333pt;}
.y3c{bottom:884.613333pt;}
.yd3{bottom:897.893333pt;}
.y98{bottom:898.053333pt;}
.y50{bottom:899.493333pt;}
.yaf{bottom:899.973333pt;}
.y8e{bottom:901.573333pt;}
.y3b{bottom:917.093333pt;}
.y4f{bottom:917.893333pt;}
.yae{bottom:918.373333pt;}
.y8d{bottom:921.093333pt;}
.y17{bottom:924.933333pt;}
.y39{bottom:926.693333pt;}
.y97{bottom:933.733333pt;}
.y4e{bottom:936.293333pt;}
.yad{bottom:936.773333pt;}
.y8c{bottom:939.493333pt;}
.y3a{bottom:949.733333pt;}
.y16{bottom:954.693333pt;}
.yac{bottom:955.173333pt;}
.y8b{bottom:958.853333pt;}
.y38{bottom:963.013333pt;}
.yd2{bottom:966.213333pt;}
.yab{bottom:973.573333pt;}
.y8a{bottom:977.253333pt;}
.y89{bottom:995.653333pt;}
.y15{bottom:999.013333pt;}
.y37{bottom:999.173333pt;}
.yaa{bottom:1009.093333pt;}
.y88{bottom:1014.080000pt;}
.y95{bottom:1015.360000pt;}
.y12{bottom:1032.480000pt;}
.y13{bottom:1047.520000pt;}
.y11{bottom:1050.880000pt;}
.h6{height:18.400000pt;}
.hb{height:20.480000pt;}
.h8{height:20.640000pt;}
.hc{height:20.672000pt;}
.h11{height:24.160000pt;}
.he{height:24.320000pt;}
.h10{height:24.352000pt;}
.h9{height:36.800000pt;}
.hd{height:52.834688pt;}
.hf{height:54.390938pt;}
.h14{height:55.200000pt;}
.h3{height:55.402500pt;}
.h1c{height:56.320000pt;}
.h18{height:57.280000pt;}
.h1b{height:57.312000pt;}
.h1d{height:57.375000pt;}
.h12{height:61.410000pt;}
.h2{height:66.750000pt;}
.ha{height:73.632000pt;}
.h17{height:75.840000pt;}
.h5{height:88.777500pt;}
.h1a{height:94.240000pt;}
.h19{height:132.032000pt;}
.h7{height:133.500000pt;}
.h4{height:144.847500pt;}
.h13{height:147.200000pt;}
.h15{height:150.426667pt;}
.h16{height:169.946667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:8.960000pt;}
.w10{width:17.920000pt;}
.w8{width:33.792000pt;}
.w9{width:93.280000pt;}
.w11{width:103.712000pt;}
.wc{width:122.912000pt;}
.we{width:141.626667pt;}
.w6{width:223.586667pt;}
.w4{width:226.146667pt;}
.wa{width:231.746667pt;}
.wb{width:281.306667pt;}
.w5{width:426.626667pt;}
.w7{width:429.666667pt;}
.wf{width:500.093333pt;}
.wd{width:519.453333pt;}
.w12{width:537.853333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:5.792000pt;}
.x8{left:13.952000pt;}
.x15{left:29.280000pt;}
.x3{left:75.519988pt;}
.xc{left:91.551988pt;}
.xe{left:99.551988pt;}
.x9{left:109.952000pt;}
.xf{left:123.551988pt;}
.x14{left:180.026667pt;}
.xd{left:198.426667pt;}
.xa{left:204.026667pt;}
.x11{left:217.786667pt;}
.x7{left:299.746667pt;}
.x6{left:302.306667pt;}
.x2{left:313.186655pt;}
.xb{left:436.573333pt;}
.x10{left:514.653322pt;}
.x12{left:699.973333pt;}
.x4{left:708.933333pt;}
.x13{left:715.653322pt;}
.x1{left:718.213322pt;}
}




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