
    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_e1ef0365f879daa3025abf07.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de228349ee6be42e21e27bab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_479b0b97b36a272d2430e6e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_6ea966306898229488167a73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928711;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_1fcfae61f37319e6091b0490.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6350b40f4d569b7ff08461e9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_de6802a0967cdf19b5081152.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.772949;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.672000px;}
.ls5{letter-spacing:-0.642000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.462000px;}
.ls1{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.294000px;}
.ls18{letter-spacing:-0.192000px;}
.lsc{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.114000px;}
.ls19{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.084000px;}
.ls14{letter-spacing:0.132000px;}
.ls17{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.558000px;}
.lsd{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.804000px;}
.ls9{letter-spacing:0.822000px;}
.ls1b{letter-spacing:1.500000px;}
.ls6{letter-spacing:39.660000px;}
.lse{letter-spacing:42.312000px;}
.ls10{letter-spacing:42.648000px;}
.ls11{letter-spacing:47.634000px;}
.ls12{letter-spacing:53.652000px;}
.ls13{letter-spacing:53.802000px;}
.ls15{letter-spacing:55.302000px;}
.ls7{letter-spacing:57.660000px;}
.ls8{letter-spacing:68.310000px;}
.lsb{letter-spacing:849.414000px;}
.ls1f{letter-spacing:2644.398000px;}
.ls2{letter-spacing:2678.898000px;}
.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;}
}
.wsb{word-spacing:-66.000000px;}
.ws8{word-spacing:-21.024000px;}
.ws4{word-spacing:-19.152000px;}
.ws9{word-spacing:-18.984000px;}
.wsa{word-spacing:-16.272000px;}
.ws11{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.738000px;}
.ws7{word-spacing:-15.696000px;}
.wsc{word-spacing:-15.096000px;}
.ws2{word-spacing:-14.916000px;}
.ws10{word-spacing:-14.802000px;}
.ws6{word-spacing:-14.784000px;}
.wsd{word-spacing:-14.724000px;}
.wse{word-spacing:-14.622000px;}
.ws3{word-spacing:-14.454000px;}
.ws0{word-spacing:-13.140000px;}
.wsf{word-spacing:-9.492000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-3.066000px;}
._1{margin-left:-1.248000px;}
._0{width:1.092000px;}
._3{width:2.100000px;}
._4{width:4.032000px;}
._15{width:5.400000px;}
._13{width:7.386000px;}
._14{width:8.460000px;}
._19{width:9.792000px;}
._16{width:10.824000px;}
._1b{width:12.330000px;}
._1a{width:13.752000px;}
._1c{width:16.362000px;}
._1d{width:18.048000px;}
._17{width:19.404000px;}
._18{width:21.246000px;}
._1e{width:22.836000px;}
._1f{width:24.564000px;}
._2{width:849.414000px;}
._d{width:867.714000px;}
._f{width:945.900000px;}
._b{width:1288.290000px;}
._8{width:1660.740000px;}
._a{width:1763.508000px;}
._11{width:2030.070000px;}
._10{width:2051.370000px;}
._e{width:2147.334000px;}
._9{width:2167.836000px;}
._6{width:2187.228000px;}
._c{width:2310.552000px;}
._5{width:2458.422000px;}
._7{width:2581.116000px;}
.fcd{color:rgb(234,83,85);}
.fc0{color:rgb(197,225,232);}
.fcb{color:rgb(189,93,92);}
.fc7{color:rgb(11,162,173);}
.fc2{color:rgb(48,55,49);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(12,172,183);}
.fc9{color:rgb(32,90,94);}
.fc4{color:rgb(123,201,216);}
.fc6{color:transparent;}
.fc8{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fca{color:rgb(245,165,85);}
.fcc{color:rgb(21,130,138);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:156.000000px;}
.yc{bottom:-23.250000px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.500000px;}
.y38{bottom:8.610000px;}
.y18{bottom:8.625000px;}
.y52{bottom:8.655000px;}
.y1d{bottom:8.985000px;}
.y12{bottom:9.000000px;}
.y16{bottom:9.030000px;}
.y22{bottom:9.045000px;}
.y4{bottom:10.500000px;}
.yf{bottom:28.875000px;}
.y37{bottom:28.905000px;}
.y14{bottom:29.250000px;}
.y2e{bottom:31.132500px;}
.y30{bottom:35.632500px;}
.ye{bottom:46.875000px;}
.y2f{bottom:54.787500px;}
.y10{bottom:57.412500px;}
.yd{bottom:65.242500px;}
.ya{bottom:93.037500px;}
.y73{bottom:135.037500px;}
.y2d{bottom:135.787500px;}
.y72{bottom:138.787500px;}
.y9e{bottom:141.037500px;}
.y71{bottom:152.280000px;}
.y9d{bottom:160.920000px;}
.y9c{bottom:181.200000px;}
.y70{bottom:196.200000px;}
.y9b{bottom:201.450000px;}
.y6f{bottom:219.450000px;}
.y9a{bottom:221.700000px;}
.yc5{bottom:233.700000px;}
.y99{bottom:241.575000px;}
.yc4{bottom:253.950000px;}
.y98{bottom:261.825000px;}
.yc3{bottom:273.825000px;}
.y97{bottom:282.075000px;}
.y64{bottom:293.325000px;}
.yc2{bottom:294.075000px;}
.y96{bottom:301.950000px;}
.yc1{bottom:314.355000px;}
.y63{bottom:316.245000px;}
.y95{bottom:322.245000px;}
.y94{bottom:342.495000px;}
.y62{bottom:345.495000px;}
.y93{bottom:362.745000px;}
.y61{bottom:374.745000px;}
.y2c{bottom:385.995000px;}
.y92{bottom:391.980000px;}
.yc0{bottom:399.870000px;}
.y60{bottom:403.995000px;}
.y2b{bottom:406.245000px;}
.ybf{bottom:419.745000px;}
.y2a{bottom:426.120000px;}
.y91{bottom:428.745000px;}
.y5f{bottom:432.900000px;}
.ybe{bottom:440.025000px;}
.y29{bottom:446.400000px;}
.y90{bottom:449.025000px;}
.ybd{bottom:460.275000px;}
.y5e{bottom:462.150000px;}
.y8f{bottom:468.900000px;}
.y28{bottom:480.150000px;}
.ybc{bottom:480.525000px;}
.y8e{bottom:489.150000px;}
.y5d{bottom:491.400000px;}
.ybb{bottom:500.400000px;}
.y27{bottom:509.025000px;}
.y8d{bottom:509.400000px;}
.y5c{bottom:520.275000px;}
.yba{bottom:520.650000px;}
.y8c{bottom:529.275000px;}
.y26{bottom:538.275000px;}
.yb9{bottom:540.900000px;}
.y9{bottom:542.025000px;}
.y5b{bottom:549.525000px;}
.yb8{bottom:560.820000px;}
.y8{bottom:561.945000px;}
.y25{bottom:567.570000px;}
.y8b{bottom:569.820000px;}
.y5a{bottom:578.820000px;}
.y7{bottom:582.195000px;}
.y8a{bottom:590.070000px;}
.yb7{bottom:590.445000px;}
.y24{bottom:601.320000px;}
.y6{bottom:602.445000px;}
.y59{bottom:608.070000px;}
.y89{bottom:609.945000px;}
.y5{bottom:618.195000px;}
.yb6{bottom:627.195000px;}
.y88{bottom:630.195000px;}
.y48{bottom:631.695000px;}
.y58{bottom:636.945000px;}
.yb5{bottom:647.070000px;}
.y87{bottom:650.445000px;}
.y47{bottom:651.570000px;}
.y57{bottom:666.195000px;}
.yb4{bottom:667.320000px;}
.y3{bottom:669.195000px;}
.y86{bottom:670.320000px;}
.y46{bottom:676.695000px;}
.yb3{bottom:687.570000px;}
.y85{bottom:690.600000px;}
.y56{bottom:695.475000px;}
.yb2{bottom:707.850000px;}
.y84{bottom:710.850000px;}
.y45{bottom:721.350000px;}
.y55{bottom:724.350000px;}
.yb1{bottom:727.725000px;}
.y83{bottom:731.100000px;}
.yb0{bottom:747.975000px;}
.y54{bottom:753.600000px;}
.y44{bottom:759.600000px;}
.y82{bottom:760.350000px;}
.yaf{bottom:768.225000px;}
.y23{bottom:778.725000px;}
.y53{bottom:782.850000px;}
.y43{bottom:783.975000px;}
.yae{bottom:788.100000px;}
.y81{bottom:798.225000px;}
.y21{bottom:807.975000px;}
.yad{bottom:808.350000px;}
.y42{bottom:808.725000px;}
.y51{bottom:812.100000px;}
.yac{bottom:828.645000px;}
.y41{bottom:833.505000px;}
.y20{bottom:837.255000px;}
.y80{bottom:840.630000px;}
.y50{bottom:841.005000px;}
.yab{bottom:848.505000px;}
.y40{bottom:857.880000px;}
.y2{bottom:860.505000px;}
.y7f{bottom:860.880000px;}
.y1f{bottom:866.130000px;}
.yaa{bottom:878.130000px;}
.y7e{bottom:881.130000px;}
.y3f{bottom:882.630000px;}
.yc9{bottom:884.505000px;}
.y4f{bottom:890.505000px;}
.y1e{bottom:895.380000px;}
.y39{bottom:898.005000px;}
.yc8{bottom:904.380000px;}
.y3e{bottom:907.380000px;}
.y7d{bottom:910.005000px;}
.ya9{bottom:914.880000px;}
.y4e{bottom:919.395000px;}
.yc7{bottom:924.630000px;}
.y1c{bottom:924.645000px;}
.y7c{bottom:930.255000px;}
.y36{bottom:931.395000px;}
.ya8{bottom:934.755000px;}
.y3d{bottom:936.630000px;}
.yc6{bottom:944.880000px;}
.y4d{bottom:948.675000px;}
.y7b{bottom:950.550000px;}
.y1b{bottom:953.925000px;}
.ya7{bottom:955.050000px;}
.y7a{bottom:970.425000px;}
.y6c{bottom:973.800000px;}
.ya6{bottom:975.300000px;}
.y4c{bottom:977.925000px;}
.y3c{bottom:981.300000px;}
.y1a{bottom:982.800000px;}
.y35{bottom:984.675000px;}
.y6b{bottom:994.050000px;}
.ya5{bottom:995.550000px;}
.y79{bottom:999.675000px;}
.y19{bottom:1012.050000px;}
.y6a{bottom:1014.300000px;}
.ya4{bottom:1015.425000px;}
.y34{bottom:1018.050000px;}
.y6e{bottom:1019.550000px;}
.y78{bottom:1019.925000px;}
.y3b{bottom:1025.925000px;}
.y4b{bottom:1031.550000px;}
.y69{bottom:1034.550000px;}
.ya3{bottom:1035.675000px;}
.y77{bottom:1040.175000px;}
.y17{bottom:1041.300000px;}
.y6d{bottom:1043.550000px;}
.ya2{bottom:1055.925000px;}
.y76{bottom:1060.050000px;}
.y68{bottom:1063.425000px;}
.y15{bottom:1070.175000px;}
.y33{bottom:1071.675000px;}
.ya1{bottom:1075.830000px;}
.y75{bottom:1080.330000px;}
.y4a{bottom:1081.455000px;}
.y67{bottom:1083.705000px;}
.ya0{bottom:1096.080000px;}
.y13{bottom:1099.455000px;}
.y66{bottom:1103.955000px;}
.y32{bottom:1105.080000px;}
.y49{bottom:1110.330000px;}
.y74{bottom:1110.705000px;}
.y3a{bottom:1114.830000px;}
.y65{bottom:1123.830000px;}
.y9f{bottom:1125.330000px;}
.y11{bottom:1148.580000px;}
.y31{bottom:1154.955000px;}
.y1{bottom:1162.080000px;}
.he{height:28.875000px;}
.h16{height:28.912500px;}
.h17{height:29.235000px;}
.ha{height:29.250000px;}
.hf{height:29.272500px;}
.hd{height:29.287500px;}
.h19{height:35.806641px;}
.h18{height:41.774414px;}
.h3{height:47.287500px;}
.h5{height:47.625000px;}
.h7{height:48.049805px;}
.h11{height:48.694336px;}
.hc{height:49.125000px;}
.h14{height:49.147500px;}
.h13{height:49.500000px;}
.h1a{height:53.709961px;}
.h8{height:61.435547px;}
.h15{height:62.841797px;}
.h1{height:65.645508px;}
.hb{height:67.579102px;}
.h9{height:71.613281px;}
.h2{height:73.722656px;}
.h1b{height:86.009766px;}
.h12{height:98.296875px;}
.h10{height:102.787500px;}
.h6{height:106.537500px;}
.h4{height:159.732422px;}
.h0{height:1263.000000px;}
.w9{width:63.787500px;}
.wa{width:106.162500px;}
.wd{width:129.787500px;}
.w3{width:135.825000px;}
.w7{width:147.450000px;}
.w5{width:178.950000px;}
.wb{width:198.075000px;}
.wc{width:355.275000px;}
.w6{width:540.975000px;}
.w4{width:565.350000px;}
.w8{width:566.100000px;}
.we{width:590.520000px;}
.wf{width:592.020000px;}
.w2{width:723.300000px;}
.w10{width:892.499973px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x20{left:4.125000px;}
.xd{left:6.750000px;}
.x9{left:8.250000px;}
.xf{left:27.750000px;}
.x1e{left:33.750000px;}
.x1f{left:36.000000px;}
.x2b{left:38.250000px;}
.x12{left:41.625000px;}
.x11{left:55.537500px;}
.xb{left:60.412500px;}
.x18{left:63.787500px;}
.x14{left:65.662500px;}
.x7{left:67.537500px;}
.x24{left:80.287500px;}
.x28{left:83.662500px;}
.x1{left:85.162487px;}
.x15{left:86.287500px;}
.x1c{left:89.662500px;}
.xe{left:91.162500px;}
.x29{left:93.787500px;}
.x5{left:95.287500px;}
.x27{left:96.412500px;}
.x2e{left:97.537500px;}
.x2a{left:99.412500px;}
.x2d{left:100.537500px;}
.x19{left:102.787500px;}
.x2c{left:104.662500px;}
.x17{left:109.912500px;}
.x13{left:111.037500px;}
.x35{left:112.162487px;}
.x16{left:118.912500px;}
.xa{left:125.662487px;}
.x6{left:127.582500px;}
.x1b{left:129.412500px;}
.x1a{left:130.537500px;}
.x32{left:132.449987px;}
.x10{left:136.162500px;}
.x34{left:138.824987px;}
.x21{left:148.950000px;}
.x4{left:193.582500px;}
.x26{left:216.450000px;}
.x25{left:217.950000px;}
.x3{left:227.362500px;}
.x8{left:231.120000px;}
.x1d{left:237.120000px;}
.x22{left:255.120000px;}
.xc{left:267.495000px;}
.x33{left:301.244987px;}
.x23{left:453.195000px;}
.x2{left:632.519987px;}
.x2f{left:695.174973px;}
.x30{left:700.424987px;}
.x31{left:709.799987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.597333pt;}
.ls5{letter-spacing:-0.570667pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.410667pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.261333pt;}
.ls18{letter-spacing:-0.170667pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.101333pt;}
.ls19{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.074667pt;}
.ls14{letter-spacing:0.117333pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.496000pt;}
.lsd{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.714667pt;}
.ls9{letter-spacing:0.730667pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls6{letter-spacing:35.253333pt;}
.lse{letter-spacing:37.610667pt;}
.ls10{letter-spacing:37.909333pt;}
.ls11{letter-spacing:42.341333pt;}
.ls12{letter-spacing:47.690667pt;}
.ls13{letter-spacing:47.824000pt;}
.ls15{letter-spacing:49.157333pt;}
.ls7{letter-spacing:51.253333pt;}
.ls8{letter-spacing:60.720000pt;}
.lsb{letter-spacing:755.034667pt;}
.ls1f{letter-spacing:2350.576000pt;}
.ls2{letter-spacing:2381.242667pt;}
.wsb{word-spacing:-58.666667pt;}
.ws8{word-spacing:-18.688000pt;}
.ws4{word-spacing:-17.024000pt;}
.ws9{word-spacing:-16.874667pt;}
.wsa{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.989333pt;}
.ws7{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.418667pt;}
.ws2{word-spacing:-13.258667pt;}
.ws10{word-spacing:-13.157333pt;}
.ws6{word-spacing:-13.141333pt;}
.wsd{word-spacing:-13.088000pt;}
.wse{word-spacing:-12.997333pt;}
.ws3{word-spacing:-12.848000pt;}
.ws0{word-spacing:-11.680000pt;}
.wsf{word-spacing:-8.437333pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-2.725333pt;}
._1{margin-left:-1.109333pt;}
._0{width:0.970667pt;}
._3{width:1.866667pt;}
._4{width:3.584000pt;}
._15{width:4.800000pt;}
._13{width:6.565333pt;}
._14{width:7.520000pt;}
._19{width:8.704000pt;}
._16{width:9.621333pt;}
._1b{width:10.960000pt;}
._1a{width:12.224000pt;}
._1c{width:14.544000pt;}
._1d{width:16.042667pt;}
._17{width:17.248000pt;}
._18{width:18.885333pt;}
._1e{width:20.298667pt;}
._1f{width:21.834667pt;}
._2{width:755.034667pt;}
._d{width:771.301333pt;}
._f{width:840.800000pt;}
._b{width:1145.146667pt;}
._8{width:1476.213333pt;}
._a{width:1567.562667pt;}
._11{width:1804.506667pt;}
._10{width:1823.440000pt;}
._e{width:1908.741333pt;}
._9{width:1926.965333pt;}
._6{width:1944.202667pt;}
._c{width:2053.824000pt;}
._5{width:2185.264000pt;}
._7{width:2294.325333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:138.666667pt;}
.yc{bottom:-20.666667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:1.333333pt;}
.y38{bottom:7.653333pt;}
.y18{bottom:7.666667pt;}
.y52{bottom:7.693333pt;}
.y1d{bottom:7.986667pt;}
.y12{bottom:8.000000pt;}
.y16{bottom:8.026667pt;}
.y22{bottom:8.040000pt;}
.y4{bottom:9.333333pt;}
.yf{bottom:25.666667pt;}
.y37{bottom:25.693333pt;}
.y14{bottom:26.000000pt;}
.y2e{bottom:27.673333pt;}
.y30{bottom:31.673333pt;}
.ye{bottom:41.666667pt;}
.y2f{bottom:48.700000pt;}
.y10{bottom:51.033333pt;}
.yd{bottom:57.993333pt;}
.ya{bottom:82.700000pt;}
.y73{bottom:120.033333pt;}
.y2d{bottom:120.700000pt;}
.y72{bottom:123.366667pt;}
.y9e{bottom:125.366667pt;}
.y71{bottom:135.360000pt;}
.y9d{bottom:143.040000pt;}
.y9c{bottom:161.066667pt;}
.y70{bottom:174.400000pt;}
.y9b{bottom:179.066667pt;}
.y6f{bottom:195.066667pt;}
.y9a{bottom:197.066667pt;}
.yc5{bottom:207.733333pt;}
.y99{bottom:214.733333pt;}
.yc4{bottom:225.733333pt;}
.y98{bottom:232.733333pt;}
.yc3{bottom:243.400000pt;}
.y97{bottom:250.733333pt;}
.y64{bottom:260.733333pt;}
.yc2{bottom:261.400000pt;}
.y96{bottom:268.400000pt;}
.yc1{bottom:279.426667pt;}
.y63{bottom:281.106667pt;}
.y95{bottom:286.440000pt;}
.y94{bottom:304.440000pt;}
.y62{bottom:307.106667pt;}
.y93{bottom:322.440000pt;}
.y61{bottom:333.106667pt;}
.y2c{bottom:343.106667pt;}
.y92{bottom:348.426667pt;}
.yc0{bottom:355.440000pt;}
.y60{bottom:359.106667pt;}
.y2b{bottom:361.106667pt;}
.ybf{bottom:373.106667pt;}
.y2a{bottom:378.773333pt;}
.y91{bottom:381.106667pt;}
.y5f{bottom:384.800000pt;}
.ybe{bottom:391.133333pt;}
.y29{bottom:396.800000pt;}
.y90{bottom:399.133333pt;}
.ybd{bottom:409.133333pt;}
.y5e{bottom:410.800000pt;}
.y8f{bottom:416.800000pt;}
.y28{bottom:426.800000pt;}
.ybc{bottom:427.133333pt;}
.y8e{bottom:434.800000pt;}
.y5d{bottom:436.800000pt;}
.ybb{bottom:444.800000pt;}
.y27{bottom:452.466667pt;}
.y8d{bottom:452.800000pt;}
.y5c{bottom:462.466667pt;}
.yba{bottom:462.800000pt;}
.y8c{bottom:470.466667pt;}
.y26{bottom:478.466667pt;}
.yb9{bottom:480.800000pt;}
.y9{bottom:481.800000pt;}
.y5b{bottom:488.466667pt;}
.yb8{bottom:498.506667pt;}
.y8{bottom:499.506667pt;}
.y25{bottom:504.506667pt;}
.y8b{bottom:506.506667pt;}
.y5a{bottom:514.506667pt;}
.y7{bottom:517.506667pt;}
.y8a{bottom:524.506667pt;}
.yb7{bottom:524.840000pt;}
.y24{bottom:534.506667pt;}
.y6{bottom:535.506667pt;}
.y59{bottom:540.506667pt;}
.y89{bottom:542.173333pt;}
.y5{bottom:549.506667pt;}
.yb6{bottom:557.506667pt;}
.y88{bottom:560.173333pt;}
.y48{bottom:561.506667pt;}
.y58{bottom:566.173333pt;}
.yb5{bottom:575.173333pt;}
.y87{bottom:578.173333pt;}
.y47{bottom:579.173333pt;}
.y57{bottom:592.173333pt;}
.yb4{bottom:593.173333pt;}
.y3{bottom:594.840000pt;}
.y86{bottom:595.840000pt;}
.y46{bottom:601.506667pt;}
.yb3{bottom:611.173333pt;}
.y85{bottom:613.866667pt;}
.y56{bottom:618.200000pt;}
.yb2{bottom:629.200000pt;}
.y84{bottom:631.866667pt;}
.y45{bottom:641.200000pt;}
.y55{bottom:643.866667pt;}
.yb1{bottom:646.866667pt;}
.y83{bottom:649.866667pt;}
.yb0{bottom:664.866667pt;}
.y54{bottom:669.866667pt;}
.y44{bottom:675.200000pt;}
.y82{bottom:675.866667pt;}
.yaf{bottom:682.866667pt;}
.y23{bottom:692.200000pt;}
.y53{bottom:695.866667pt;}
.y43{bottom:696.866667pt;}
.yae{bottom:700.533333pt;}
.y81{bottom:709.533333pt;}
.y21{bottom:718.200000pt;}
.yad{bottom:718.533333pt;}
.y42{bottom:718.866667pt;}
.y51{bottom:721.866667pt;}
.yac{bottom:736.573333pt;}
.y41{bottom:740.893333pt;}
.y20{bottom:744.226667pt;}
.y80{bottom:747.226667pt;}
.y50{bottom:747.560000pt;}
.yab{bottom:754.226667pt;}
.y40{bottom:762.560000pt;}
.y2{bottom:764.893333pt;}
.y7f{bottom:765.226667pt;}
.y1f{bottom:769.893333pt;}
.yaa{bottom:780.560000pt;}
.y7e{bottom:783.226667pt;}
.y3f{bottom:784.560000pt;}
.yc9{bottom:786.226667pt;}
.y4f{bottom:791.560000pt;}
.y1e{bottom:795.893333pt;}
.y39{bottom:798.226667pt;}
.yc8{bottom:803.893333pt;}
.y3e{bottom:806.560000pt;}
.y7d{bottom:808.893333pt;}
.ya9{bottom:813.226667pt;}
.y4e{bottom:817.240000pt;}
.yc7{bottom:821.893333pt;}
.y1c{bottom:821.906667pt;}
.y7c{bottom:826.893333pt;}
.y36{bottom:827.906667pt;}
.ya8{bottom:830.893333pt;}
.y3d{bottom:832.560000pt;}
.yc6{bottom:839.893333pt;}
.y4d{bottom:843.266667pt;}
.y7b{bottom:844.933333pt;}
.y1b{bottom:847.933333pt;}
.ya7{bottom:848.933333pt;}
.y7a{bottom:862.600000pt;}
.y6c{bottom:865.600000pt;}
.ya6{bottom:866.933333pt;}
.y4c{bottom:869.266667pt;}
.y3c{bottom:872.266667pt;}
.y1a{bottom:873.600000pt;}
.y35{bottom:875.266667pt;}
.y6b{bottom:883.600000pt;}
.ya5{bottom:884.933333pt;}
.y79{bottom:888.600000pt;}
.y19{bottom:899.600000pt;}
.y6a{bottom:901.600000pt;}
.ya4{bottom:902.600000pt;}
.y34{bottom:904.933333pt;}
.y6e{bottom:906.266667pt;}
.y78{bottom:906.600000pt;}
.y3b{bottom:911.933333pt;}
.y4b{bottom:916.933333pt;}
.y69{bottom:919.600000pt;}
.ya3{bottom:920.600000pt;}
.y77{bottom:924.600000pt;}
.y17{bottom:925.600000pt;}
.y6d{bottom:927.600000pt;}
.ya2{bottom:938.600000pt;}
.y76{bottom:942.266667pt;}
.y68{bottom:945.266667pt;}
.y15{bottom:951.266667pt;}
.y33{bottom:952.600000pt;}
.ya1{bottom:956.293333pt;}
.y75{bottom:960.293333pt;}
.y4a{bottom:961.293333pt;}
.y67{bottom:963.293333pt;}
.ya0{bottom:974.293333pt;}
.y13{bottom:977.293333pt;}
.y66{bottom:981.293333pt;}
.y32{bottom:982.293333pt;}
.y49{bottom:986.960000pt;}
.y74{bottom:987.293333pt;}
.y3a{bottom:990.960000pt;}
.y65{bottom:998.960000pt;}
.y9f{bottom:1000.293333pt;}
.y11{bottom:1020.960000pt;}
.y31{bottom:1026.626667pt;}
.y1{bottom:1032.960000pt;}
.he{height:25.666667pt;}
.h16{height:25.700000pt;}
.h17{height:25.986667pt;}
.ha{height:26.000000pt;}
.hf{height:26.020000pt;}
.hd{height:26.033333pt;}
.h19{height:31.828125pt;}
.h18{height:37.132812pt;}
.h3{height:42.033333pt;}
.h5{height:42.333333pt;}
.h7{height:42.710938pt;}
.h11{height:43.283854pt;}
.hc{height:43.666667pt;}
.h14{height:43.686667pt;}
.h13{height:44.000000pt;}
.h1a{height:47.742188pt;}
.h8{height:54.609375pt;}
.h15{height:55.859375pt;}
.h1{height:58.351562pt;}
.hb{height:60.070312pt;}
.h9{height:63.656250pt;}
.h2{height:65.531250pt;}
.h1b{height:76.453125pt;}
.h12{height:87.375000pt;}
.h10{height:91.366667pt;}
.h6{height:94.700000pt;}
.h4{height:141.984375pt;}
.h0{height:1122.666667pt;}
.w9{width:56.700000pt;}
.wa{width:94.366667pt;}
.wd{width:115.366667pt;}
.w3{width:120.733333pt;}
.w7{width:131.066667pt;}
.w5{width:159.066667pt;}
.wb{width:176.066667pt;}
.wc{width:315.800000pt;}
.w6{width:480.866667pt;}
.w4{width:502.533333pt;}
.w8{width:503.200000pt;}
.we{width:524.906667pt;}
.wf{width:526.240000pt;}
.w2{width:642.933333pt;}
.w10{width:793.333310pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x20{left:3.666667pt;}
.xd{left:6.000000pt;}
.x9{left:7.333333pt;}
.xf{left:24.666667pt;}
.x1e{left:30.000000pt;}
.x1f{left:32.000000pt;}
.x2b{left:34.000000pt;}
.x12{left:37.000000pt;}
.x11{left:49.366667pt;}
.xb{left:53.700000pt;}
.x18{left:56.700000pt;}
.x14{left:58.366667pt;}
.x7{left:60.033333pt;}
.x24{left:71.366667pt;}
.x28{left:74.366667pt;}
.x1{left:75.699988pt;}
.x15{left:76.700000pt;}
.x1c{left:79.700000pt;}
.xe{left:81.033333pt;}
.x29{left:83.366667pt;}
.x5{left:84.700000pt;}
.x27{left:85.700000pt;}
.x2e{left:86.700000pt;}
.x2a{left:88.366667pt;}
.x2d{left:89.366667pt;}
.x19{left:91.366667pt;}
.x2c{left:93.033333pt;}
.x17{left:97.700000pt;}
.x13{left:98.700000pt;}
.x35{left:99.699988pt;}
.x16{left:105.700000pt;}
.xa{left:111.699988pt;}
.x6{left:113.406667pt;}
.x1b{left:115.033333pt;}
.x1a{left:116.033333pt;}
.x32{left:117.733322pt;}
.x10{left:121.033333pt;}
.x34{left:123.399988pt;}
.x21{left:132.400000pt;}
.x4{left:172.073333pt;}
.x26{left:192.400000pt;}
.x25{left:193.733333pt;}
.x3{left:202.100000pt;}
.x8{left:205.440000pt;}
.x1d{left:210.773333pt;}
.x22{left:226.773333pt;}
.xc{left:237.773333pt;}
.x33{left:267.773322pt;}
.x23{left:402.840000pt;}
.x2{left:562.239988pt;}
.x2f{left:617.933310pt;}
.x30{left:622.599988pt;}
.x31{left:630.933322pt;}
}




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