
    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_195744a64e24042b42bd807c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140625;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_62f9696d928e698b9d2a99c0.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_bc2efea803acd1f2ffee4964.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9dcb38876c0534760d69aa0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_6b157f539c5d240556b923e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_057979d70155a8223aba0f9e.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_f81d4f6c7a66a71f6d3d033c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.834473;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_245cac7a26d1d86abf3072b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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);}
.v3{vertical-align:-30.096000px;}
.v2{vertical-align:-28.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.632000px;}
.v1{vertical-align:28.800000px;}
.ls17{letter-spacing:-0.367800px;}
.lsc{letter-spacing:-0.325200px;}
.ls1e{letter-spacing:-0.311400px;}
.lsd{letter-spacing:-0.306600px;}
.ls29{letter-spacing:-0.303000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.252000px;}
.ls19{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.012960px;}
.ls28{letter-spacing:0.018720px;}
.ls1b{letter-spacing:0.027936px;}
.ls20{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.121200px;}
.ls26{letter-spacing:0.136080px;}
.ls3{letter-spacing:0.136200px;}
.ls4{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.183000px;}
.lsa{letter-spacing:0.190200px;}
.ls7{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.222000px;}
.ls12{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.288000px;}
.lse{letter-spacing:0.319800px;}
.ls2b{letter-spacing:0.339000px;}
.ls16{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.468000px;}
.ls18{letter-spacing:86.054400px;}
.ls24{letter-spacing:101.844000px;}
.ls9{letter-spacing:132.465600px;}
.ls8{letter-spacing:132.516000px;}
.ls6{letter-spacing:132.660000px;}
.ls10{letter-spacing:148.665024px;}
.ls11{letter-spacing:148.752000px;}
.ls22{letter-spacing:149.192064px;}
.ls23{letter-spacing:149.279040px;}
.ls21{letter-spacing:149.423040px;}
.lsb{letter-spacing:150.240960px;}
.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;}
}
.wse{word-spacing:-66.653280px;}
.ws24{word-spacing:-65.016000px;}
.ws6{word-spacing:-53.442720px;}
.wsd{word-spacing:-53.117520px;}
.ws10{word-spacing:-40.072032px;}
.ws13{word-spacing:-40.032000px;}
.wsf{word-spacing:-33.746520px;}
.ws7{word-spacing:-33.426720px;}
.ws19{word-spacing:-32.868000px;}
.ws2e{word-spacing:-32.551344px;}
.ws0{word-spacing:-32.508000px;}
.ws17{word-spacing:-32.256000px;}
.wsc{word-spacing:-31.415160px;}
.ws23{word-spacing:-31.264992px;}
.ws4{word-spacing:-31.224960px;}
.ws15{word-spacing:-30.240000px;}
.ws11{word-spacing:-30.096000px;}
.ws12{word-spacing:-30.024000px;}
.ws21{word-spacing:-29.736000px;}
.ws2d{word-spacing:-29.162760px;}
.ws25{word-spacing:-29.045760px;}
.ws28{word-spacing:-28.842480px;}
.ws2b{word-spacing:-28.836720px;}
.ws2c{word-spacing:-28.823760px;}
.ws14{word-spacing:-26.621280px;}
.ws20{word-spacing:-24.408000px;}
.ws1e{word-spacing:-24.192000px;}
.ws1c{word-spacing:-24.129144px;}
.ws5{word-spacing:-6.880320px;}
.wsa{word-spacing:-2.160000px;}
.ws8{word-spacing:-1.584000px;}
.ws18{word-spacing:-0.612000px;}
.ws1a{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.504000px;}
.ws1d{word-spacing:-0.412176px;}
.ws9{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.036000px;}
.ws2a{word-spacing:0.112320px;}
.ws26{word-spacing:0.403200px;}
.ws3{word-spacing:0.406080px;}
.ws2{word-spacing:0.458640px;}
.ws27{word-spacing:0.832320px;}
.ws16{word-spacing:0.900000px;}
.ws22{word-spacing:1.396560px;}
.ws29{word-spacing:1.870920px;}
._f{margin-left:-21.723120px;}
._14{margin-left:-15.110592px;}
._8{margin-left:-12.985920px;}
._15{margin-left:-11.571264px;}
._9{margin-left:-10.126032px;}
._c{margin-left:-8.059728px;}
._a{margin-left:-6.514560px;}
._3{margin-left:-4.676160px;}
._0{margin-left:-3.172608px;}
._1{margin-left:-2.115072px;}
._7{margin-left:-1.012176px;}
._2{width:1.819440px;}
._d{width:2.835072px;}
._12{width:3.960240px;}
._e{width:26.687664px;}
._b{width:28.288464px;}
._5{width:30.236160px;}
._4{width:31.302000px;}
._13{width:32.522352px;}
._6{width:47.952000px;}
._10{width:2062.937040px;}
._11{width:2155.014240px;}
.fcb{color:rgb(70,120,134);}
.fc9{color:rgb(11,48,65);}
.fc8{color:rgb(192,79,21);}
.fca{color:rgb(21,96,130);}
.fc7{color:rgb(0,110,171);}
.fc5{color:transparent;}
.fc4{color:rgb(25,156,105);}
.fc1{color:rgb(22,62,100);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs19{font-size:54.000000px;}
.fs3{font-size:64.080000px;}
.fse{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fsf{font-size:84.384000px;}
.fs17{font-size:86.400000px;}
.fsc{font-size:87.840000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs13{font-size:108.144000px;}
.fs9{font-size:112.320000px;}
.fs8{font-size:112.464000px;}
.fsa{font-size:120.240000px;}
.fs15{font-size:128.160000px;}
.fs14{font-size:144.000000px;}
.fs11{font-size:144.144000px;}
.fs5{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs18{font-size:174.240000px;}
.fs1a{font-size:185.760000px;}
.fsb{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fs16{font-size:216.144000px;}
.fs10{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fs0{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.708000px;}
.y48{bottom:12.492000px;}
.y55{bottom:13.644000px;}
.y58{bottom:20.268000px;}
.y51{bottom:24.012000px;}
.y16{bottom:30.600000px;}
.y54{bottom:46.404000px;}
.y1f{bottom:57.672000px;}
.y57{bottom:63.900000px;}
.y52{bottom:69.696000px;}
.y1e{bottom:79.272000px;}
.y64{bottom:98.676000px;}
.y2f{bottom:105.516000px;}
.y63{bottom:132.336000px;}
.y2e{bottom:137.916000px;}
.y62{bottom:165.855000px;}
.y2d{bottom:170.310000px;}
.y38{bottom:178.050000px;}
.y61{bottom:199.515000px;}
.y2c{bottom:202.755000px;}
.y42{bottom:203.220000px;}
.y37{bottom:207.615000px;}
.y60{bottom:233.175000px;}
.y2b{bottom:237.135000px;}
.y5{bottom:237.495000px;}
.y36{bottom:241.095000px;}
.y5f{bottom:266.655000px;}
.y6d{bottom:272.490000px;}
.y4{bottom:282.135000px;}
.y5e{bottom:300.315000px;}
.y3{bottom:308.055000px;}
.yc{bottom:315.690000px;}
.y6c{bottom:319.860000px;}
.y35{bottom:322.125000px;}
.y5d{bottom:334.005000px;}
.y26{bottom:349.845000px;}
.y34{bottom:354.525000px;}
.y40{bottom:364.395000px;}
.yb{bottom:366.120000px;}
.y5c{bottom:367.665000px;}
.y33{bottom:386.970000px;}
.y7{bottom:387.750000px;}
.y25{bottom:390.885000px;}
.y5b{bottom:401.145000px;}
.ya{bottom:416.520000px;}
.y32{bottom:419.370000px;}
.y6{bottom:420.150000px;}
.y3b{bottom:422.535000px;}
.y1d{bottom:429.585000px;}
.y5a{bottom:434.805000px;}
.y24{bottom:441.105000px;}
.y31{bottom:451.770000px;}
.y3a{bottom:454.935000px;}
.y9{bottom:466.920000px;}
.y1a{bottom:479.850000px;}
.y23{bottom:482.190000px;}
.y30{bottom:486.150000px;}
.y6a{bottom:487.905000px;}
.y39{bottom:489.315000px;}
.y41{bottom:503.025000px;}
.y19{bottom:515.850000px;}
.y69{bottom:516.705000px;}
.y4b{bottom:519.585000px;}
.y2{bottom:523.155000px;}
.y22{bottom:523.230000px;}
.y6b{bottom:530.070000px;}
.y4f{bottom:530.205000px;}
.y10{bottom:539.175000px;}
.y68{bottom:545.505000px;}
.y18{bottom:551.880000px;}
.y4a{bottom:551.985000px;}
.y3d{bottom:559.410000px;}
.y4e{bottom:562.650000px;}
.yf{bottom:572.835000px;}
.y21{bottom:573.450000px;}
.y67{bottom:574.305000px;}
.y2a{bottom:576.750000px;}
.y12{bottom:581.505000px;}
.y3f{bottom:586.830000px;}
.y45{bottom:592.410000px;}
.y3c{bottom:593.970000px;}
.y17{bottom:595.260000px;}
.y1{bottom:602.385000px;}
.y66{bottom:603.150000px;}
.ye{bottom:606.525000px;}
.y4d{bottom:609.990000px;}
.y29{bottom:612.750000px;}
.y20{bottom:614.490000px;}
.y44{bottom:621.570000px;}
.y11{bottom:632.445000px;}
.y8{bottom:672.915000px;}
.y1c{bottom:676.650000px;}
.y65{bottom:680.190000px;}
.y47{bottom:684.330000px;}
.yd{bottom:685.080000px;}
.y4c{bottom:685.950000px;}
.y59{bottom:692.130000px;}
.y1b{bottom:694.650000px;}
.y13{bottom:694.950000px;}
.y56{bottom:696.240000px;}
.y15{bottom:700.950000px;}
.y3e{bottom:704.235000px;}
.y28{bottom:705.930000px;}
.y27{bottom:707.940000px;}
.y50{bottom:712.230000px;}
.y46{bottom:713.490000px;}
.y43{bottom:740.550000px;}
.y49{bottom:745.950000px;}
.y53{bottom:748.725000px;}
.h1f{height:50.308594px;}
.h4{height:60.413906px;}
.h10{height:67.078125px;}
.he{height:78.747187px;}
.h18{height:82.212891px;}
.h19{height:82.322508px;}
.h17{height:85.847344px;}
.h3{height:89.213906px;}
.h14{height:96.820312px;}
.h13{height:96.949406px;}
.h5{height:100.617188px;}
.hb{height:100.693125px;}
.h1c{height:100.751344px;}
.ha{height:100.822219px;}
.h1e{height:107.419922px;}
.h1a{height:107.563148px;}
.hf{height:107.793281px;}
.hc{height:112.020469px;}
.h16{height:114.893437px;}
.h21{height:115.051922px;}
.h15{height:129.093750px;}
.h12{height:129.222844px;}
.h7{height:150.394219px;}
.h8{height:150.523313px;}
.h1d{height:156.203438px;}
.h20{height:166.530937px;}
.hd{height:172.340156px;}
.h9{height:193.640625px;}
.h1b{height:193.769719px;}
.h22{height:201.234375px;}
.h11{height:214.941094px;}
.h6{height:236.887031px;}
.h2{height:246.176719px;}
.h1{height:246.310875px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x30{left:10.799979px;}
.x18{left:17.495979px;}
.x2a{left:25.487979px;}
.x2b{left:26.495979px;}
.x35{left:36.503979px;}
.x28{left:40.571979px;}
.x23{left:48.887979px;}
.x10{left:51.299979px;}
.xa{left:56.879979px;}
.x8{left:60.119979px;}
.xd{left:61.703979px;}
.x19{left:64.439979px;}
.xe{left:69.839979px;}
.x1c{left:72.827979px;}
.x33{left:82.403979px;}
.x15{left:84.527979px;}
.x2{left:86.111979px;}
.x14{left:89.459979px;}
.x2c{left:90.827979px;}
.x31{left:104.255979px;}
.x1e{left:108.179979px;}
.x1{left:112.031979px;}
.x12{left:116.243979px;}
.x36{left:124.667979px;}
.x2d{left:131.327979px;}
.x2e{left:138.635979px;}
.x13{left:156.779979px;}
.xf{left:188.279979px;}
.x1b{left:222.224979px;}
.x9{left:240.584979px;}
.x5{left:242.819979px;}
.x37{left:249.509979px;}
.x6{left:260.744979px;}
.x1d{left:279.179979px;}
.x3{left:281.339979px;}
.x34{left:303.809979px;}
.x38{left:311.249979px;}
.x4{left:320.789979px;}
.x16{left:330.989979px;}
.x7{left:494.249979px;}
.x26{left:598.319979px;}
.x20{left:627.269979px;}
.x22{left:668.774979px;}
.x1f{left:708.839979px;}
.x21{left:796.214979px;}
.x32{left:812.489979px;}
.x17{left:845.609979px;}
.xb{left:848.774979px;}
.x29{left:850.499979px;}
.x27{left:1014.329979px;}
.x25{left:1021.034979px;}
.x24{left:1034.384979px;}
.xc{left:1064.804979px;}
.x2f{left:1070.564979px;}
.x1a{left:1404.749979px;}
.x11{left:1416.989979px;}
@media print{
.v3{vertical-align:-26.752000pt;}
.v2{vertical-align:-25.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.784000pt;}
.v1{vertical-align:25.600000pt;}
.ls17{letter-spacing:-0.326933pt;}
.lsc{letter-spacing:-0.289067pt;}
.ls1e{letter-spacing:-0.276800pt;}
.lsd{letter-spacing:-0.272533pt;}
.ls29{letter-spacing:-0.269333pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.224000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.011520pt;}
.ls28{letter-spacing:0.016640pt;}
.ls1b{letter-spacing:0.024832pt;}
.ls20{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.107733pt;}
.ls26{letter-spacing:0.120960pt;}
.ls3{letter-spacing:0.121067pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.162667pt;}
.lsa{letter-spacing:0.169067pt;}
.ls7{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.197333pt;}
.ls12{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.284267pt;}
.ls2b{letter-spacing:0.301333pt;}
.ls16{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.416000pt;}
.ls18{letter-spacing:76.492800pt;}
.ls24{letter-spacing:90.528000pt;}
.ls9{letter-spacing:117.747200pt;}
.ls8{letter-spacing:117.792000pt;}
.ls6{letter-spacing:117.920000pt;}
.ls10{letter-spacing:132.146688pt;}
.ls11{letter-spacing:132.224000pt;}
.ls22{letter-spacing:132.615168pt;}
.ls23{letter-spacing:132.692480pt;}
.ls21{letter-spacing:132.820480pt;}
.lsb{letter-spacing:133.547520pt;}
.wse{word-spacing:-59.247360pt;}
.ws24{word-spacing:-57.792000pt;}
.ws6{word-spacing:-47.504640pt;}
.wsd{word-spacing:-47.215573pt;}
.ws10{word-spacing:-35.619584pt;}
.ws13{word-spacing:-35.584000pt;}
.wsf{word-spacing:-29.996907pt;}
.ws7{word-spacing:-29.712640pt;}
.ws19{word-spacing:-29.216000pt;}
.ws2e{word-spacing:-28.934528pt;}
.ws0{word-spacing:-28.896000pt;}
.ws17{word-spacing:-28.672000pt;}
.wsc{word-spacing:-27.924587pt;}
.ws23{word-spacing:-27.791104pt;}
.ws4{word-spacing:-27.755520pt;}
.ws15{word-spacing:-26.880000pt;}
.ws11{word-spacing:-26.752000pt;}
.ws12{word-spacing:-26.688000pt;}
.ws21{word-spacing:-26.432000pt;}
.ws2d{word-spacing:-25.922453pt;}
.ws25{word-spacing:-25.818453pt;}
.ws28{word-spacing:-25.637760pt;}
.ws2b{word-spacing:-25.632640pt;}
.ws2c{word-spacing:-25.621120pt;}
.ws14{word-spacing:-23.663360pt;}
.ws20{word-spacing:-21.696000pt;}
.ws1e{word-spacing:-21.504000pt;}
.ws1c{word-spacing:-21.448128pt;}
.ws5{word-spacing:-6.115840pt;}
.wsa{word-spacing:-1.920000pt;}
.ws8{word-spacing:-1.408000pt;}
.ws18{word-spacing:-0.544000pt;}
.ws1a{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.448000pt;}
.ws1d{word-spacing:-0.366379pt;}
.ws9{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.032000pt;}
.ws2a{word-spacing:0.099840pt;}
.ws26{word-spacing:0.358400pt;}
.ws3{word-spacing:0.360960pt;}
.ws2{word-spacing:0.407680pt;}
.ws27{word-spacing:0.739840pt;}
.ws16{word-spacing:0.800000pt;}
.ws22{word-spacing:1.241387pt;}
.ws29{word-spacing:1.663040pt;}
._f{margin-left:-19.309440pt;}
._14{margin-left:-13.431637pt;}
._8{margin-left:-11.543040pt;}
._15{margin-left:-10.285568pt;}
._9{margin-left:-9.000917pt;}
._c{margin-left:-7.164203pt;}
._a{margin-left:-5.790720pt;}
._3{margin-left:-4.156587pt;}
._0{margin-left:-2.820096pt;}
._1{margin-left:-1.880064pt;}
._7{margin-left:-0.899712pt;}
._2{width:1.617280pt;}
._d{width:2.520064pt;}
._12{width:3.520213pt;}
._e{width:23.722368pt;}
._b{width:25.145301pt;}
._5{width:26.876587pt;}
._4{width:27.824000pt;}
._13{width:28.908757pt;}
._6{width:42.624000pt;}
._10{width:1833.721813pt;}
._11{width:1915.568213pt;}
.fs19{font-size:48.000000pt;}
.fs3{font-size:56.960000pt;}
.fse{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fsf{font-size:75.008000pt;}
.fs17{font-size:76.800000pt;}
.fsc{font-size:78.080000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs13{font-size:96.128000pt;}
.fs9{font-size:99.840000pt;}
.fs8{font-size:99.968000pt;}
.fsa{font-size:106.880000pt;}
.fs15{font-size:113.920000pt;}
.fs14{font-size:128.000000pt;}
.fs11{font-size:128.128000pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs18{font-size:154.880000pt;}
.fs1a{font-size:165.120000pt;}
.fsb{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fs16{font-size:192.128000pt;}
.fs10{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fs0{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.296000pt;}
.y48{bottom:11.104000pt;}
.y55{bottom:12.128000pt;}
.y58{bottom:18.016000pt;}
.y51{bottom:21.344000pt;}
.y16{bottom:27.200000pt;}
.y54{bottom:41.248000pt;}
.y1f{bottom:51.264000pt;}
.y57{bottom:56.800000pt;}
.y52{bottom:61.952000pt;}
.y1e{bottom:70.464000pt;}
.y64{bottom:87.712000pt;}
.y2f{bottom:93.792000pt;}
.y63{bottom:117.632000pt;}
.y2e{bottom:122.592000pt;}
.y62{bottom:147.426667pt;}
.y2d{bottom:151.386667pt;}
.y38{bottom:158.266667pt;}
.y61{bottom:177.346667pt;}
.y2c{bottom:180.226667pt;}
.y42{bottom:180.640000pt;}
.y37{bottom:184.546667pt;}
.y60{bottom:207.266667pt;}
.y2b{bottom:210.786667pt;}
.y5{bottom:211.106667pt;}
.y36{bottom:214.306667pt;}
.y5f{bottom:237.026667pt;}
.y6d{bottom:242.213333pt;}
.y4{bottom:250.786667pt;}
.y5e{bottom:266.946667pt;}
.y3{bottom:273.826667pt;}
.yc{bottom:280.613333pt;}
.y6c{bottom:284.320000pt;}
.y35{bottom:286.333333pt;}
.y5d{bottom:296.893333pt;}
.y26{bottom:310.973333pt;}
.y34{bottom:315.133333pt;}
.y40{bottom:323.906667pt;}
.yb{bottom:325.440000pt;}
.y5c{bottom:326.813333pt;}
.y33{bottom:343.973333pt;}
.y7{bottom:344.666667pt;}
.y25{bottom:347.453333pt;}
.y5b{bottom:356.573333pt;}
.ya{bottom:370.240000pt;}
.y32{bottom:372.773333pt;}
.y6{bottom:373.466667pt;}
.y3b{bottom:375.586667pt;}
.y1d{bottom:381.853333pt;}
.y5a{bottom:386.493333pt;}
.y24{bottom:392.093333pt;}
.y31{bottom:401.573333pt;}
.y3a{bottom:404.386667pt;}
.y9{bottom:415.040000pt;}
.y1a{bottom:426.533333pt;}
.y23{bottom:428.613333pt;}
.y30{bottom:432.133333pt;}
.y6a{bottom:433.693333pt;}
.y39{bottom:434.946667pt;}
.y41{bottom:447.133333pt;}
.y19{bottom:458.533333pt;}
.y69{bottom:459.293333pt;}
.y4b{bottom:461.853333pt;}
.y2{bottom:465.026667pt;}
.y22{bottom:465.093333pt;}
.y6b{bottom:471.173333pt;}
.y4f{bottom:471.293333pt;}
.y10{bottom:479.266667pt;}
.y68{bottom:484.893333pt;}
.y18{bottom:490.560000pt;}
.y4a{bottom:490.653333pt;}
.y3d{bottom:497.253333pt;}
.y4e{bottom:500.133333pt;}
.yf{bottom:509.186667pt;}
.y21{bottom:509.733333pt;}
.y67{bottom:510.493333pt;}
.y2a{bottom:512.666667pt;}
.y12{bottom:516.893333pt;}
.y3f{bottom:521.626667pt;}
.y45{bottom:526.586667pt;}
.y3c{bottom:527.973333pt;}
.y17{bottom:529.120000pt;}
.y1{bottom:535.453333pt;}
.y66{bottom:536.133333pt;}
.ye{bottom:539.133333pt;}
.y4d{bottom:542.213333pt;}
.y29{bottom:544.666667pt;}
.y20{bottom:546.213333pt;}
.y44{bottom:552.506667pt;}
.y11{bottom:562.173333pt;}
.y8{bottom:598.146667pt;}
.y1c{bottom:601.466667pt;}
.y65{bottom:604.613333pt;}
.y47{bottom:608.293333pt;}
.yd{bottom:608.960000pt;}
.y4c{bottom:609.733333pt;}
.y59{bottom:615.226667pt;}
.y1b{bottom:617.466667pt;}
.y13{bottom:617.733333pt;}
.y56{bottom:618.880000pt;}
.y15{bottom:623.066667pt;}
.y3e{bottom:625.986667pt;}
.y28{bottom:627.493333pt;}
.y27{bottom:629.280000pt;}
.y50{bottom:633.093333pt;}
.y46{bottom:634.213333pt;}
.y43{bottom:658.266667pt;}
.y49{bottom:663.066667pt;}
.y53{bottom:665.533333pt;}
.h1f{height:44.718750pt;}
.h4{height:53.701250pt;}
.h10{height:59.625000pt;}
.he{height:69.997500pt;}
.h18{height:73.078125pt;}
.h19{height:73.175562pt;}
.h17{height:76.308750pt;}
.h3{height:79.301250pt;}
.h14{height:86.062500pt;}
.h13{height:86.177250pt;}
.h5{height:89.437500pt;}
.hb{height:89.505000pt;}
.h1c{height:89.556750pt;}
.ha{height:89.619750pt;}
.h1e{height:95.484375pt;}
.h1a{height:95.611688pt;}
.hf{height:95.816250pt;}
.hc{height:99.573750pt;}
.h16{height:102.127500pt;}
.h21{height:102.268375pt;}
.h15{height:114.750000pt;}
.h12{height:114.864750pt;}
.h7{height:133.683750pt;}
.h8{height:133.798500pt;}
.h1d{height:138.847500pt;}
.h20{height:148.027500pt;}
.hd{height:153.191250pt;}
.h9{height:172.125000pt;}
.h1b{height:172.239750pt;}
.h22{height:178.875000pt;}
.h11{height:191.058750pt;}
.h6{height:210.566250pt;}
.h2{height:218.823750pt;}
.h1{height:218.943000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x30{left:9.599981pt;}
.x18{left:15.551981pt;}
.x2a{left:22.655981pt;}
.x2b{left:23.551981pt;}
.x35{left:32.447981pt;}
.x28{left:36.063981pt;}
.x23{left:43.455981pt;}
.x10{left:45.599981pt;}
.xa{left:50.559981pt;}
.x8{left:53.439981pt;}
.xd{left:54.847981pt;}
.x19{left:57.279981pt;}
.xe{left:62.079981pt;}
.x1c{left:64.735981pt;}
.x33{left:73.247981pt;}
.x15{left:75.135981pt;}
.x2{left:76.543981pt;}
.x14{left:79.519981pt;}
.x2c{left:80.735981pt;}
.x31{left:92.671981pt;}
.x1e{left:96.159981pt;}
.x1{left:99.583981pt;}
.x12{left:103.327981pt;}
.x36{left:110.815981pt;}
.x2d{left:116.735981pt;}
.x2e{left:123.231981pt;}
.x13{left:139.359981pt;}
.xf{left:167.359981pt;}
.x1b{left:197.533314pt;}
.x9{left:213.853314pt;}
.x5{left:215.839981pt;}
.x37{left:221.786648pt;}
.x6{left:231.773314pt;}
.x1d{left:248.159981pt;}
.x3{left:250.079981pt;}
.x34{left:270.053314pt;}
.x38{left:276.666648pt;}
.x4{left:285.146648pt;}
.x16{left:294.213314pt;}
.x7{left:439.333314pt;}
.x26{left:531.839981pt;}
.x20{left:557.573314pt;}
.x22{left:594.466648pt;}
.x1f{left:630.079981pt;}
.x21{left:707.746648pt;}
.x32{left:722.213314pt;}
.x17{left:751.653314pt;}
.xb{left:754.466648pt;}
.x29{left:755.999981pt;}
.x27{left:901.626648pt;}
.x25{left:907.586648pt;}
.x24{left:919.453314pt;}
.xc{left:946.493314pt;}
.x2f{left:951.613314pt;}
.x1a{left:1248.666648pt;}
.x11{left:1259.546648pt;}
}




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