
    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_636ffe4e4554aa07fd743300.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_6193fc93719873dbca485474.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e355c25e9534fae43c71c078.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0a2c86b6f3153d04317ef5e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104000;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_e9686e0dbc696e0cff6e6ef5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_7f3b29d2712816c2f3f9e036.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_f1e27bc2271a79a926169d94.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.081000;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_659ba57653b6f169fb992d7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.081000;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_2424bbf5adcafac50ece0e2d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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;}
.v1{vertical-align:30.240000px;}
.ls18{letter-spacing:-0.349200px;}
.ls19{letter-spacing:-0.340800px;}
.lsd{letter-spacing:-0.166200px;}
.ls1a{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.019440px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls1b{letter-spacing:0.062400px;}
.ls16{letter-spacing:0.123000px;}
.ls15{letter-spacing:0.139200px;}
.ls3{letter-spacing:0.157200px;}
.ls17{letter-spacing:0.270600px;}
.ls7{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.309000px;}
.ls14{letter-spacing:0.331200px;}
.ls12{letter-spacing:4.661280px;}
.ls11{letter-spacing:7.541280px;}
.lsa{letter-spacing:8.261280px;}
.lsb{letter-spacing:9.701280px;}
.lse{letter-spacing:11.861280px;}
.lsf{letter-spacing:16.181280px;}
.ls10{letter-spacing:19.061280px;}
.ls9{letter-spacing:33.858720px;}
.ls13{letter-spacing:41.381280px;}
.ls4{letter-spacing:71.040000px;}
.ls2{letter-spacing:132.984000px;}
.ls6{letter-spacing:834.276000px;}
.ls1{letter-spacing:840.881280px;}
.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;}
}
.ws4{word-spacing:-25.236000px;}
.wsf{word-spacing:-24.948000px;}
.ws5{word-spacing:-22.120560px;}
.ws8{word-spacing:-19.790640px;}
.ws6{word-spacing:-19.768440px;}
.wsb{word-spacing:-19.730040px;}
.ws2{word-spacing:-19.616640px;}
.ws9{word-spacing:-19.598640px;}
.wsa{word-spacing:-19.582440px;}
.ws10{word-spacing:-19.521840px;}
.ws1{word-spacing:-19.468080px;}
.ws3{word-spacing:-19.459440px;}
.ws7{word-spacing:-19.293240px;}
.wsd{word-spacing:-19.118640px;}
.wsc{word-spacing:-19.110240px;}
.wse{word-spacing:-12.438000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-17.509920px;}
._3{margin-left:-14.882400px;}
._1{margin-left:-12.185760px;}
._11{margin-left:-10.080000px;}
._27{margin-left:-8.210880px;}
._19{margin-left:-7.127760px;}
._2{margin-left:-5.411040px;}
._a{margin-left:-4.380480px;}
._4{margin-left:-3.044400px;}
._0{margin-left:-1.224000px;}
._8{width:1.179360px;}
._17{width:2.363760px;}
._9{width:4.212000px;}
._6{width:5.644080px;}
._7{width:6.654960px;}
._16{width:7.750080px;}
._10{width:9.097920px;}
._21{width:10.174560px;}
._b{width:11.203920px;}
._c{width:12.804480px;}
._d{width:14.443680px;}
._e{width:15.467520px;}
._22{width:16.641600px;}
._12{width:20.891520px;}
._13{width:21.902400px;}
._26{width:23.131440px;}
._1f{width:24.434640px;}
._f{width:25.608960px;}
._20{width:27.125280px;}
._25{width:28.592400px;}
._1b{width:32.348160px;}
._1c{width:34.097280px;}
._18{width:36.307440px;}
._24{width:38.190960px;}
._15{width:40.772160px;}
._1d{width:45.405360px;}
._1e{width:47.005920px;}
._1a{width:48.943440px;}
._14{width:54.082080px;}
._23{width:79.302480px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(0,76,62);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:19.620000px;}
.y9a{bottom:19.800000px;}
.y7{bottom:25.200000px;}
.y45{bottom:39.780000px;}
.y1{bottom:64.836000px;}
.y44{bottom:85.896000px;}
.y66{bottom:112.176000px;}
.yb9{bottom:120.096000px;}
.y38{bottom:131.976000px;}
.y86{bottom:133.956000px;}
.y65{bottom:138.096000px;}
.yb8{bottom:149.436000px;}
.y37{bottom:159.690000px;}
.y85{bottom:159.870000px;}
.y98{bottom:162.210000px;}
.y64{bottom:164.190000px;}
.yb7{bottom:177.330000px;}
.y84{bottom:185.970000px;}
.y36{bottom:187.410000px;}
.y97{bottom:200.190000px;}
.y63{bottom:202.170000px;}
.y35{bottom:215.130000px;}
.yb6{bottom:215.310000px;}
.y83{bottom:223.950000px;}
.y62{bottom:228.270000px;}
.y96{bottom:238.350000px;}
.y34{bottom:242.850000px;}
.y82{bottom:250.050000px;}
.yb5{bottom:253.290000px;}
.y61{bottom:254.370000px;}
.y95{bottom:264.270000px;}
.y33{bottom:270.750000px;}
.y81{bottom:276.150000px;}
.y60{bottom:280.290000px;}
.y94{bottom:290.415000px;}
.yb4{bottom:291.495000px;}
.y32{bottom:298.515000px;}
.y80{bottom:302.115000px;}
.y93{bottom:316.515000px;}
.yb3{bottom:317.415000px;}
.y5f{bottom:318.495000px;}
.y31{bottom:326.235000px;}
.y7f{bottom:328.215000px;}
.y92{bottom:342.435000px;}
.yb2{bottom:343.515000px;}
.y5e{bottom:344.415000px;}
.y30{bottom:353.955000px;}
.y7e{bottom:354.315000px;}
.y91{bottom:368.535000px;}
.yb1{bottom:369.615000px;}
.y5d{bottom:370.515000px;}
.y7d{bottom:380.235000px;}
.y2f{bottom:381.675000px;}
.yb0{bottom:395.535000px;}
.y5c{bottom:396.435000px;}
.y7c{bottom:406.335000px;}
.y90{bottom:406.515000px;}
.y2e{bottom:419.655000px;}
.y5b{bottom:429.375000px;}
.y7b{bottom:432.435000px;}
.y8f{bottom:432.615000px;}
.yaf{bottom:433.695000px;}
.y1b{bottom:435.675000px;}
.y2d{bottom:455.475000px;}
.y8e{bottom:458.715000px;}
.yae{bottom:459.615000px;}
.y1a{bottom:468.615000px;}
.y7a{bottom:470.415000px;}
.y5a{bottom:472.035000px;}
.y8d{bottom:484.635000px;}
.yad{bottom:485.715000px;}
.y19{bottom:491.295000px;}
.y79{bottom:496.515000px;}
.y59{bottom:499.755000px;}
.y8c{bottom:510.735000px;}
.y2c{bottom:516.135000px;}
.y18{bottom:517.395000px;}
.yac{bottom:517.755000px;}
.y58{bottom:527.475000px;}
.y78{bottom:534.495000px;}
.y8b{bottom:536.835000px;}
.y17{bottom:543.495000px;}
.y2b{bottom:543.855000px;}
.y57{bottom:555.195000px;}
.yab{bottom:557.535000px;}
.y77{bottom:560.595000px;}
.y8a{bottom:562.755000px;}
.y16{bottom:569.445000px;}
.y2a{bottom:571.605000px;}
.y56{bottom:583.125000px;}
.yaa{bottom:585.285000px;}
.y76{bottom:586.545000px;}
.y89{bottom:588.885000px;}
.y15{bottom:595.545000px;}
.y29{bottom:599.505000px;}
.y55{bottom:610.845000px;}
.y75{bottom:612.645000px;}
.ya9{bottom:613.005000px;}
.y88{bottom:614.985000px;}
.y14{bottom:621.645000px;}
.y28{bottom:627.225000px;}
.y54{bottom:638.565000px;}
.ya8{bottom:640.725000px;}
.y74{bottom:650.625000px;}
.y87{bottom:652.965000px;}
.y13{bottom:659.625000px;}
.y53{bottom:666.285000px;}
.y27{bottom:667.005000px;}
.ya7{bottom:668.445000px;}
.y99{bottom:673.125000px;}
.y73{bottom:676.725000px;}
.y12{bottom:689.505000px;}
.y52{bottom:694.005000px;}
.y26{bottom:694.725000px;}
.ya6{bottom:696.165000px;}
.y72{bottom:702.825000px;}
.y43{bottom:718.305000px;}
.y51{bottom:721.725000px;}
.y25{bottom:722.445000px;}
.ya5{bottom:724.065000px;}
.y71{bottom:728.745000px;}
.y11{bottom:740.985000px;}
.y42{bottom:746.025000px;}
.y50{bottom:749.625000px;}
.y24{bottom:750.165000px;}
.ya4{bottom:751.785000px;}
.y70{bottom:766.905000px;}
.y41{bottom:773.745000px;}
.y10{bottom:774.645000px;}
.y4f{bottom:777.345000px;}
.y23{bottom:777.885000px;}
.ya3{bottom:779.505000px;}
.y6f{bottom:792.825000px;}
.y40{bottom:801.465000px;}
.y4e{bottom:805.065000px;}
.y22{bottom:805.605000px;}
.ya2{bottom:807.225000px;}
.yf{bottom:808.125000px;}
.y6e{bottom:818.925000px;}
.y3f{bottom:829.185000px;}
.y4d{bottom:832.785000px;}
.y21{bottom:833.505000px;}
.ya1{bottom:834.945000px;}
.ye{bottom:841.605000px;}
.y6d{bottom:845.025000px;}
.y3e{bottom:857.130000px;}
.y4c{bottom:860.550000px;}
.ya0{bottom:862.710000px;}
.y6{bottom:867.030000px;}
.y20{bottom:871.530000px;}
.yd{bottom:875.310000px;}
.y6c{bottom:883.050000px;}
.y3d{bottom:884.850000px;}
.y4b{bottom:888.270000px;}
.y9f{bottom:890.610000px;}
.y1f{bottom:907.350000px;}
.yc{bottom:908.790000px;}
.y6b{bottom:909.150000px;}
.y3c{bottom:912.570000px;}
.y4a{bottom:915.990000px;}
.y9e{bottom:918.330000px;}
.y5{bottom:932.010000px;}
.y6a{bottom:935.070000px;}
.y3b{bottom:940.290000px;}
.yb{bottom:942.270000px;}
.y49{bottom:943.890000px;}
.y9d{bottom:946.050000px;}
.y1e{bottom:968.010000px;}
.y48{bottom:971.610000px;}
.y4{bottom:971.790000px;}
.y69{bottom:973.230000px;}
.y9c{bottom:973.770000px;}
.ya{bottom:975.930000px;}
.y3a{bottom:995.730000px;}
.y68{bottom:999.150000px;}
.y47{bottom:1009.590000px;}
.y1d{bottom:1009.770000px;}
.y3{bottom:1011.570000px;}
.y9b{bottom:1011.750000px;}
.y9{bottom:1015.530000px;}
.y39{bottom:1023.630000px;}
.y67{bottom:1025.250000px;}
.y8{bottom:1045.410000px;}
.y1c{bottom:1045.590000px;}
.y2{bottom:1051.350000px;}
.hd{height:35.280000px;}
.h8{height:55.260000px;}
.h9{height:57.248437px;}
.h6{height:60.855469px;}
.h3{height:77.040000px;}
.h2{height:78.511680px;}
.hc{height:80.568000px;}
.hb{height:89.248320px;}
.ha{height:96.336000px;}
.h7{height:98.928000px;}
.h5{height:100.656000px;}
.h4{height:201.312000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:321.735000px;}
.w4{width:396.255000px;}
.w5{width:743.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:10.845000px;}
.x1{left:84.959987px;}
.x4{left:101.555987px;}
.x7{left:111.995987px;}
.x5{left:139.715987px;}
.x6{left:212.789987px;}
.x8{left:248.430000px;}
.x2{left:285.690000px;}
.x9{left:769.109987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls18{letter-spacing:-0.310400pt;}
.ls19{letter-spacing:-0.302933pt;}
.lsd{letter-spacing:-0.147733pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.017280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls1b{letter-spacing:0.055467pt;}
.ls16{letter-spacing:0.109333pt;}
.ls15{letter-spacing:0.123733pt;}
.ls3{letter-spacing:0.139733pt;}
.ls17{letter-spacing:0.240533pt;}
.ls7{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.274667pt;}
.ls14{letter-spacing:0.294400pt;}
.ls12{letter-spacing:4.143360pt;}
.ls11{letter-spacing:6.703360pt;}
.lsa{letter-spacing:7.343360pt;}
.lsb{letter-spacing:8.623360pt;}
.lse{letter-spacing:10.543360pt;}
.lsf{letter-spacing:14.383360pt;}
.ls10{letter-spacing:16.943360pt;}
.ls9{letter-spacing:30.096640pt;}
.ls13{letter-spacing:36.783360pt;}
.ls4{letter-spacing:63.146667pt;}
.ls2{letter-spacing:118.208000pt;}
.ls6{letter-spacing:741.578667pt;}
.ls1{letter-spacing:747.450027pt;}
.ws4{word-spacing:-22.432000pt;}
.wsf{word-spacing:-22.176000pt;}
.ws5{word-spacing:-19.662720pt;}
.ws8{word-spacing:-17.591680pt;}
.ws6{word-spacing:-17.571947pt;}
.wsb{word-spacing:-17.537813pt;}
.ws2{word-spacing:-17.437013pt;}
.ws9{word-spacing:-17.421013pt;}
.wsa{word-spacing:-17.406613pt;}
.ws10{word-spacing:-17.352747pt;}
.ws1{word-spacing:-17.304960pt;}
.ws3{word-spacing:-17.297280pt;}
.ws7{word-spacing:-17.149547pt;}
.wsd{word-spacing:-16.994347pt;}
.wsc{word-spacing:-16.986880pt;}
.wse{word-spacing:-11.056000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-15.564373pt;}
._3{margin-left:-13.228800pt;}
._1{margin-left:-10.831787pt;}
._11{margin-left:-8.960000pt;}
._27{margin-left:-7.298560pt;}
._19{margin-left:-6.335787pt;}
._2{margin-left:-4.809813pt;}
._a{margin-left:-3.893760pt;}
._4{margin-left:-2.706133pt;}
._0{margin-left:-1.088000pt;}
._8{width:1.048320pt;}
._17{width:2.101120pt;}
._9{width:3.744000pt;}
._6{width:5.016960pt;}
._7{width:5.915520pt;}
._16{width:6.888960pt;}
._10{width:8.087040pt;}
._21{width:9.044053pt;}
._b{width:9.959040pt;}
._c{width:11.381760pt;}
._d{width:12.838827pt;}
._e{width:13.748907pt;}
._22{width:14.792533pt;}
._12{width:18.570240pt;}
._13{width:19.468800pt;}
._26{width:20.561280pt;}
._1f{width:21.719680pt;}
._f{width:22.763520pt;}
._20{width:24.111360pt;}
._25{width:25.415467pt;}
._1b{width:28.753920pt;}
._1c{width:30.308693pt;}
._18{width:32.273280pt;}
._24{width:33.947520pt;}
._15{width:36.241920pt;}
._1d{width:40.360320pt;}
._1e{width:41.783040pt;}
._1a{width:43.505280pt;}
._14{width:48.072960pt;}
._23{width:70.491093pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:17.440000pt;}
.y9a{bottom:17.600000pt;}
.y7{bottom:22.400000pt;}
.y45{bottom:35.360000pt;}
.y1{bottom:57.632000pt;}
.y44{bottom:76.352000pt;}
.y66{bottom:99.712000pt;}
.yb9{bottom:106.752000pt;}
.y38{bottom:117.312000pt;}
.y86{bottom:119.072000pt;}
.y65{bottom:122.752000pt;}
.yb8{bottom:132.832000pt;}
.y37{bottom:141.946667pt;}
.y85{bottom:142.106667pt;}
.y98{bottom:144.186667pt;}
.y64{bottom:145.946667pt;}
.yb7{bottom:157.626667pt;}
.y84{bottom:165.306667pt;}
.y36{bottom:166.586667pt;}
.y97{bottom:177.946667pt;}
.y63{bottom:179.706667pt;}
.y35{bottom:191.226667pt;}
.yb6{bottom:191.386667pt;}
.y83{bottom:199.066667pt;}
.y62{bottom:202.906667pt;}
.y96{bottom:211.866667pt;}
.y34{bottom:215.866667pt;}
.y82{bottom:222.266667pt;}
.yb5{bottom:225.146667pt;}
.y61{bottom:226.106667pt;}
.y95{bottom:234.906667pt;}
.y33{bottom:240.666667pt;}
.y81{bottom:245.466667pt;}
.y60{bottom:249.146667pt;}
.y94{bottom:258.146667pt;}
.yb4{bottom:259.106667pt;}
.y32{bottom:265.346667pt;}
.y80{bottom:268.546667pt;}
.y93{bottom:281.346667pt;}
.yb3{bottom:282.146667pt;}
.y5f{bottom:283.106667pt;}
.y31{bottom:289.986667pt;}
.y7f{bottom:291.746667pt;}
.y92{bottom:304.386667pt;}
.yb2{bottom:305.346667pt;}
.y5e{bottom:306.146667pt;}
.y30{bottom:314.626667pt;}
.y7e{bottom:314.946667pt;}
.y91{bottom:327.586667pt;}
.yb1{bottom:328.546667pt;}
.y5d{bottom:329.346667pt;}
.y7d{bottom:337.986667pt;}
.y2f{bottom:339.266667pt;}
.yb0{bottom:351.586667pt;}
.y5c{bottom:352.386667pt;}
.y7c{bottom:361.186667pt;}
.y90{bottom:361.346667pt;}
.y2e{bottom:373.026667pt;}
.y5b{bottom:381.666667pt;}
.y7b{bottom:384.386667pt;}
.y8f{bottom:384.546667pt;}
.yaf{bottom:385.506667pt;}
.y1b{bottom:387.266667pt;}
.y2d{bottom:404.866667pt;}
.y8e{bottom:407.746667pt;}
.yae{bottom:408.546667pt;}
.y1a{bottom:416.546667pt;}
.y7a{bottom:418.146667pt;}
.y5a{bottom:419.586667pt;}
.y8d{bottom:430.786667pt;}
.yad{bottom:431.746667pt;}
.y19{bottom:436.706667pt;}
.y79{bottom:441.346667pt;}
.y59{bottom:444.226667pt;}
.y8c{bottom:453.986667pt;}
.y2c{bottom:458.786667pt;}
.y18{bottom:459.906667pt;}
.yac{bottom:460.226667pt;}
.y58{bottom:468.866667pt;}
.y78{bottom:475.106667pt;}
.y8b{bottom:477.186667pt;}
.y17{bottom:483.106667pt;}
.y2b{bottom:483.426667pt;}
.y57{bottom:493.506667pt;}
.yab{bottom:495.586667pt;}
.y77{bottom:498.306667pt;}
.y8a{bottom:500.226667pt;}
.y16{bottom:506.173333pt;}
.y2a{bottom:508.093333pt;}
.y56{bottom:518.333333pt;}
.yaa{bottom:520.253333pt;}
.y76{bottom:521.373333pt;}
.y89{bottom:523.453333pt;}
.y15{bottom:529.373333pt;}
.y29{bottom:532.893333pt;}
.y55{bottom:542.973333pt;}
.y75{bottom:544.573333pt;}
.ya9{bottom:544.893333pt;}
.y88{bottom:546.653333pt;}
.y14{bottom:552.573333pt;}
.y28{bottom:557.533333pt;}
.y54{bottom:567.613333pt;}
.ya8{bottom:569.533333pt;}
.y74{bottom:578.333333pt;}
.y87{bottom:580.413333pt;}
.y13{bottom:586.333333pt;}
.y53{bottom:592.253333pt;}
.y27{bottom:592.893333pt;}
.ya7{bottom:594.173333pt;}
.y99{bottom:598.333333pt;}
.y73{bottom:601.533333pt;}
.y12{bottom:612.893333pt;}
.y52{bottom:616.893333pt;}
.y26{bottom:617.533333pt;}
.ya6{bottom:618.813333pt;}
.y72{bottom:624.733333pt;}
.y43{bottom:638.493333pt;}
.y51{bottom:641.533333pt;}
.y25{bottom:642.173333pt;}
.ya5{bottom:643.613333pt;}
.y71{bottom:647.773333pt;}
.y11{bottom:658.653333pt;}
.y42{bottom:663.133333pt;}
.y50{bottom:666.333333pt;}
.y24{bottom:666.813333pt;}
.ya4{bottom:668.253333pt;}
.y70{bottom:681.693333pt;}
.y41{bottom:687.773333pt;}
.y10{bottom:688.573333pt;}
.y4f{bottom:690.973333pt;}
.y23{bottom:691.453333pt;}
.ya3{bottom:692.893333pt;}
.y6f{bottom:704.733333pt;}
.y40{bottom:712.413333pt;}
.y4e{bottom:715.613333pt;}
.y22{bottom:716.093333pt;}
.ya2{bottom:717.533333pt;}
.yf{bottom:718.333333pt;}
.y6e{bottom:727.933333pt;}
.y3f{bottom:737.053333pt;}
.y4d{bottom:740.253333pt;}
.y21{bottom:740.893333pt;}
.ya1{bottom:742.173333pt;}
.ye{bottom:748.093333pt;}
.y6d{bottom:751.133333pt;}
.y3e{bottom:761.893333pt;}
.y4c{bottom:764.933333pt;}
.ya0{bottom:766.853333pt;}
.y6{bottom:770.693333pt;}
.y20{bottom:774.693333pt;}
.yd{bottom:778.053333pt;}
.y6c{bottom:784.933333pt;}
.y3d{bottom:786.533333pt;}
.y4b{bottom:789.573333pt;}
.y9f{bottom:791.653333pt;}
.y1f{bottom:806.533333pt;}
.yc{bottom:807.813333pt;}
.y6b{bottom:808.133333pt;}
.y3c{bottom:811.173333pt;}
.y4a{bottom:814.213333pt;}
.y9e{bottom:816.293333pt;}
.y5{bottom:828.453333pt;}
.y6a{bottom:831.173333pt;}
.y3b{bottom:835.813333pt;}
.yb{bottom:837.573333pt;}
.y49{bottom:839.013333pt;}
.y9d{bottom:840.933333pt;}
.y1e{bottom:860.453333pt;}
.y48{bottom:863.653333pt;}
.y4{bottom:863.813333pt;}
.y69{bottom:865.093333pt;}
.y9c{bottom:865.573333pt;}
.ya{bottom:867.493333pt;}
.y3a{bottom:885.093333pt;}
.y68{bottom:888.133333pt;}
.y47{bottom:897.413333pt;}
.y1d{bottom:897.573333pt;}
.y3{bottom:899.173333pt;}
.y9b{bottom:899.333333pt;}
.y9{bottom:902.693333pt;}
.y39{bottom:909.893333pt;}
.y67{bottom:911.333333pt;}
.y8{bottom:929.253333pt;}
.y1c{bottom:929.413333pt;}
.y2{bottom:934.533333pt;}
.hd{height:31.360000pt;}
.h8{height:49.120000pt;}
.h9{height:50.887500pt;}
.h6{height:54.093750pt;}
.h3{height:68.480000pt;}
.h2{height:69.788160pt;}
.hc{height:71.616000pt;}
.hb{height:79.331840pt;}
.ha{height:85.632000pt;}
.h7{height:87.936000pt;}
.h5{height:89.472000pt;}
.h4{height:178.944000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:285.986667pt;}
.w4{width:352.226667pt;}
.w5{width:660.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.640000pt;}
.x1{left:75.519988pt;}
.x4{left:90.271988pt;}
.x7{left:99.551988pt;}
.x5{left:124.191988pt;}
.x6{left:189.146655pt;}
.x8{left:220.826667pt;}
.x2{left:253.946667pt;}
.x9{left:683.653322pt;}
}




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