
    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_98721db95bf98c4aa98ee6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_1cdbae610ec26a13ecd707d7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_fc640a100a6ca041a97434cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_da070bec395d118f33709f3c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_39fc5f96faa9bdc76fda509b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_55d32301617e194cd5c97d7f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.v1{vertical-align:84.600000px;}
.ls2f{letter-spacing:-1.296000px;}
.ls2e{letter-spacing:-1.152000px;}
.ls30{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.285000px;}
.ls15{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.114000px;}
.ls24{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.057000px;}
.lsd{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.259200px;}
.ls9{letter-spacing:0.260400px;}
.ls2d{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.342000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.639600px;}
.ls2a{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.080000px;}
.ls28{letter-spacing:2.016000px;}
.ls22{letter-spacing:3.135000px;}
.ls0{letter-spacing:4.200000px;}
.ls4{letter-spacing:5.214892px;}
.lsb{letter-spacing:5.586000px;}
.ls1f{letter-spacing:5.700000px;}
.ls31{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls1b{letter-spacing:7.940100px;}
.lsa{letter-spacing:9.216000px;}
.ls29{letter-spacing:10.180800px;}
.ls3{letter-spacing:10.200000px;}
.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;}
}
.ws18{word-spacing:-21.312000px;}
.ws26{word-spacing:-20.232000px;}
.ws29{word-spacing:-18.216000px;}
.ws2a{word-spacing:-17.856000px;}
.ws25{word-spacing:-17.784000px;}
.ws30{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.860000px;}
.ws2{word-spacing:-14.079000px;}
.ws1e{word-spacing:-12.398400px;}
.ws1{word-spacing:-12.139200px;}
.ws7{word-spacing:-10.200000px;}
.ws5{word-spacing:-6.600000px;}
.ws31{word-spacing:-6.000000px;}
.ws1d{word-spacing:-5.700000px;}
.wsc{word-spacing:-5.586000px;}
.ws3{word-spacing:-4.200000px;}
.ws1c{word-spacing:-1.080000px;}
.ws10{word-spacing:-1.008000px;}
.wsf{word-spacing:-0.936000px;}
.ws11{word-spacing:-0.864000px;}
.ws20{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.504000px;}
.wsb{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.144000px;}
.wse{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:0.057000px;}
.ws22{word-spacing:0.072000px;}
.wsd{word-spacing:0.114000px;}
.ws27{word-spacing:0.144000px;}
.ws13{word-spacing:0.216000px;}
.ws24{word-spacing:0.285000px;}
.ws21{word-spacing:0.288000px;}
.ws12{word-spacing:0.360000px;}
.ws23{word-spacing:0.399000px;}
.ws16{word-spacing:0.432000px;}
.ws1a{word-spacing:0.504000px;}
.ws19{word-spacing:0.576000px;}
.ws1b{word-spacing:0.720000px;}
.ws15{word-spacing:0.864000px;}
.ws2f{word-spacing:0.936000px;}
.ws2d{word-spacing:1.152000px;}
.ws2e{word-spacing:1.296000px;}
._c{margin-left:-13.677867px;}
._11{margin-left:-11.673600px;}
._b{margin-left:-8.262000px;}
._6{margin-left:-6.883800px;}
._4{margin-left:-4.996200px;}
._0{margin-left:-3.145800px;}
._3{margin-left:-1.504333px;}
._2{width:1.246933px;}
._e{width:2.251200px;}
._1{width:4.200000px;}
._9{width:5.203800px;}
._7{width:6.600000px;}
._10{width:7.606467px;}
._8{width:8.628000px;}
._d{width:10.200000px;}
._5{width:11.259600px;}
._12{width:12.887700px;}
._a{width:16.906333px;}
._13{width:19.884600px;}
._14{width:38.923200px;}
._f{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs5{font-size:207.997200px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y6b{bottom:140.305950px;}
.y24{bottom:140.310450px;}
.y4a{bottom:140.313450px;}
.yb3{bottom:144.930300px;}
.yd6{bottom:145.014300px;}
.y8f{bottom:145.864950px;}
.y6a{bottom:156.807450px;}
.y8e{bottom:156.810450px;}
.y23{bottom:156.811950px;}
.y49{bottom:162.364950px;}
.yd5{bottom:163.014300px;}
.yb2{bottom:166.674300px;}
.y48{bottom:173.308950px;}
.y8d{bottom:173.311950px;}
.y22{bottom:173.313450px;}
.yd4{bottom:181.014300px;}
.yb1{bottom:188.418300px;}
.y47{bottom:189.810450px;}
.y8c{bottom:189.813450px;}
.y21{bottom:195.364950px;}
.yd3{bottom:199.014300px;}
.y20{bottom:206.308950px;}
.y46{bottom:206.311950px;}
.yb0{bottom:210.162300px;}
.y8b{bottom:211.864950px;}
.y8a{bottom:222.807450px;}
.y1f{bottom:222.810450px;}
.y45{bottom:222.813450px;}
.yaf{bottom:231.906300px;}
.yd2{bottom:238.614300px;}
.y89{bottom:239.308950px;}
.y1e{bottom:239.311950px;}
.y44{bottom:244.864950px;}
.yae{bottom:253.650300px;}
.y69{bottom:255.808950px;}
.y88{bottom:255.810450px;}
.y1d{bottom:255.813450px;}
.yd1{bottom:266.214300px;}
.y68{bottom:272.310450px;}
.y87{bottom:272.311950px;}
.yad{bottom:275.394300px;}
.y1c{bottom:277.864950px;}
.y43{bottom:283.878300px;}
.yd0{bottom:288.264300px;}
.y67{bottom:288.811950px;}
.y1b{bottom:288.813450px;}
.yac{bottom:297.138300px;}
.y66{bottom:305.313450px;}
.y42{bottom:305.334300px;}
.ycf{bottom:310.314300px;}
.y1a{bottom:310.864950px;}
.yab{bottom:318.882300px;}
.y41{bottom:326.790300px;}
.y65{bottom:327.364950px;}
.yce{bottom:332.364300px;}
.yaa{bottom:340.626300px;}
.y40{bottom:348.246300px;}
.y19{bottom:351.492900px;}
.ycd{bottom:354.414300px;}
.y86{bottom:359.892300px;}
.ya9{bottom:362.370300px;}
.y3f{bottom:369.702300px;}
.y64{bottom:370.404300px;}
.y18{bottom:372.642900px;}
.ycc{bottom:376.464300px;}
.y85{bottom:381.636300px;}
.ya8{bottom:384.114300px;}
.y3e{bottom:391.158300px;}
.y63{bottom:391.410300px;}
.y17{bottom:393.792900px;}
.ycb{bottom:398.514300px;}
.y84{bottom:402.642300px;}
.ya7{bottom:405.858300px;}
.y3d{bottom:412.482300px;}
.y62{bottom:412.866300px;}
.y16{bottom:414.942900px;}
.yca{bottom:420.564300px;}
.y83{bottom:423.648300px;}
.ya6{bottom:427.602300px;}
.y3c{bottom:433.938300px;}
.y61{bottom:434.322300px;}
.y15{bottom:436.092900px;}
.yc9{bottom:442.614300px;}
.y82{bottom:444.654300px;}
.ya5{bottom:449.346300px;}
.y3b{bottom:455.394300px;}
.y60{bottom:455.778300px;}
.y14{bottom:457.242900px;}
.yc8{bottom:464.664300px;}
.y81{bottom:465.660300px;}
.ya4{bottom:471.090300px;}
.y3a{bottom:476.850300px;}
.y5f{bottom:477.234300px;}
.y13{bottom:478.392900px;}
.y80{bottom:486.666300px;}
.yc7{bottom:486.714300px;}
.ya3{bottom:492.834300px;}
.y39{bottom:498.306300px;}
.y5e{bottom:498.690300px;}
.y12{bottom:499.542900px;}
.y7f{bottom:507.672300px;}
.yc6{bottom:508.764300px;}
.ya2{bottom:514.578300px;}
.y38{bottom:519.762300px;}
.y5d{bottom:520.146300px;}
.y11{bottom:520.692900px;}
.y7e{bottom:528.678300px;}
.yc5{bottom:530.814300px;}
.ya1{bottom:536.322300px;}
.y37{bottom:541.218300px;}
.y5c{bottom:541.602300px;}
.y10{bottom:541.842900px;}
.y7d{bottom:549.684300px;}
.yc4{bottom:552.864300px;}
.ya0{bottom:558.066300px;}
.y36{bottom:562.674300px;}
.yf{bottom:562.992900px;}
.y5b{bottom:563.058300px;}
.y7c{bottom:570.690300px;}
.yc3{bottom:574.914300px;}
.y9f{bottom:579.810300px;}
.y35{bottom:584.130300px;}
.ye{bottom:584.142900px;}
.y5a{bottom:584.496300px;}
.y7b{bottom:591.696300px;}
.yc2{bottom:596.964300px;}
.y9e{bottom:601.554300px;}
.yd{bottom:605.292900px;}
.y34{bottom:605.586300px;}
.y59{bottom:605.952300px;}
.y7a{bottom:612.702300px;}
.yc1{bottom:619.014300px;}
.y9d{bottom:623.298300px;}
.yc{bottom:626.442900px;}
.y33{bottom:627.042300px;}
.y58{bottom:627.408300px;}
.y79{bottom:633.708300px;}
.yc0{bottom:641.064300px;}
.y9c{bottom:645.042300px;}
.yb{bottom:647.592900px;}
.y32{bottom:648.498300px;}
.y57{bottom:648.786300px;}
.y78{bottom:654.690300px;}
.ybf{bottom:663.114300px;}
.y9b{bottom:666.786300px;}
.y31{bottom:669.954300px;}
.y56{bottom:670.242300px;}
.y77{bottom:675.696300px;}
.ybe{bottom:685.164300px;}
.y9a{bottom:688.530300px;}
.y30{bottom:691.410300px;}
.y55{bottom:691.698300px;}
.y76{bottom:696.702300px;}
.ybd{bottom:707.214300px;}
.y99{bottom:710.274300px;}
.ya{bottom:710.916900px;}
.y2f{bottom:712.866300px;}
.y54{bottom:713.154300px;}
.y75{bottom:717.708300px;}
.ybc{bottom:729.264300px;}
.y98{bottom:732.018300px;}
.y2e{bottom:734.322300px;}
.y53{bottom:734.610300px;}
.y74{bottom:738.660300px;}
.y9{bottom:740.904900px;}
.ybb{bottom:751.314300px;}
.y97{bottom:753.762300px;}
.y2d{bottom:755.778300px;}
.y52{bottom:756.066300px;}
.y73{bottom:759.666300px;}
.y8{bottom:770.892900px;}
.yba{bottom:773.364300px;}
.y96{bottom:775.506300px;}
.y2c{bottom:777.234300px;}
.y51{bottom:777.522300px;}
.y72{bottom:780.672300px;}
.yb9{bottom:795.414300px;}
.y95{bottom:797.250300px;}
.y2b{bottom:798.690300px;}
.y50{bottom:798.978300px;}
.y71{bottom:801.678300px;}
.yb8{bottom:817.464300px;}
.y94{bottom:818.994300px;}
.y2a{bottom:820.146300px;}
.y4f{bottom:820.434300px;}
.y70{bottom:822.684300px;}
.y7{bottom:825.556950px;}
.yb7{bottom:839.514300px;}
.y93{bottom:840.738300px;}
.y29{bottom:841.602300px;}
.y4e{bottom:841.890300px;}
.y6{bottom:842.956950px;}
.y6f{bottom:843.690300px;}
.y5{bottom:860.356950px;}
.yb6{bottom:861.564300px;}
.y92{bottom:862.482300px;}
.y28{bottom:863.058300px;}
.y4d{bottom:863.346300px;}
.y6e{bottom:864.696300px;}
.y4{bottom:877.756950px;}
.yb5{bottom:883.614300px;}
.y91{bottom:884.226300px;}
.y27{bottom:884.514300px;}
.y4c{bottom:884.802300px;}
.y6d{bottom:885.702300px;}
.yb4{bottom:905.664300px;}
.y90{bottom:905.970300px;}
.y26{bottom:906.114300px;}
.y4b{bottom:906.258300px;}
.y6c{bottom:906.708300px;}
.y3{bottom:911.311950px;}
.y25{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.ha{height:30.568359px;}
.hc{height:35.663086px;}
.h2{height:40.757812px;}
.hb{height:48.399902px;}
.h3{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.he{height:61.448719px;}
.h8{height:63.322031px;}
.h9{height:63.322631px;}
.hf{height:63.394031px;}
.h11{height:63.418031px;}
.h10{height:63.538031px;}
.h12{height:63.610031px;}
.hd{height:63.850031px;}
.h5{height:86.610352px;}
.h6{height:176.614810px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.770900px;}
.x5{left:116.682600px;}
.x7{left:119.058300px;}
.x6{left:150.670350px;}
.x1{left:205.683750px;}
.x8{left:518.943600px;}
.x2{left:572.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.v1{vertical-align:75.200000pt;}
.ls2f{letter-spacing:-1.152000pt;}
.ls2e{letter-spacing:-1.024000pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.253333pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.101333pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.050667pt;}
.lsd{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.230400pt;}
.ls9{letter-spacing:0.231467pt;}
.ls2d{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.304000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.568533pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.832000pt;}
.ls13{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.792000pt;}
.ls22{letter-spacing:2.786667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls4{letter-spacing:4.635459pt;}
.lsb{letter-spacing:4.965333pt;}
.ls1f{letter-spacing:5.066667pt;}
.ls31{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls1b{letter-spacing:7.057867pt;}
.lsa{letter-spacing:8.192000pt;}
.ls29{letter-spacing:9.049600pt;}
.ls3{letter-spacing:9.066667pt;}
.ws18{word-spacing:-18.944000pt;}
.ws26{word-spacing:-17.984000pt;}
.ws29{word-spacing:-16.192000pt;}
.ws2a{word-spacing:-15.872000pt;}
.ws25{word-spacing:-15.808000pt;}
.ws30{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws2{word-spacing:-12.514667pt;}
.ws1e{word-spacing:-11.020800pt;}
.ws1{word-spacing:-10.790400pt;}
.ws7{word-spacing:-9.066667pt;}
.ws5{word-spacing:-5.866667pt;}
.ws31{word-spacing:-5.333333pt;}
.ws1d{word-spacing:-5.066667pt;}
.wsc{word-spacing:-4.965333pt;}
.ws3{word-spacing:-3.733333pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.896000pt;}
.wsf{word-spacing:-0.832000pt;}
.ws11{word-spacing:-0.768000pt;}
.ws20{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.448000pt;}
.wsb{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:0.050667pt;}
.ws22{word-spacing:0.064000pt;}
.wsd{word-spacing:0.101333pt;}
.ws27{word-spacing:0.128000pt;}
.ws13{word-spacing:0.192000pt;}
.ws24{word-spacing:0.253333pt;}
.ws21{word-spacing:0.256000pt;}
.ws12{word-spacing:0.320000pt;}
.ws23{word-spacing:0.354667pt;}
.ws16{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.448000pt;}
.ws19{word-spacing:0.512000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws15{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.832000pt;}
.ws2d{word-spacing:1.024000pt;}
.ws2e{word-spacing:1.152000pt;}
._c{margin-left:-12.158104pt;}
._11{margin-left:-10.376533pt;}
._b{margin-left:-7.344000pt;}
._6{margin-left:-6.118933pt;}
._4{margin-left:-4.441067pt;}
._0{margin-left:-2.796267pt;}
._3{margin-left:-1.337185pt;}
._2{width:1.108385pt;}
._e{width:2.001067pt;}
._1{width:3.733333pt;}
._9{width:4.625600pt;}
._7{width:5.866667pt;}
._10{width:6.761304pt;}
._8{width:7.669333pt;}
._d{width:9.066667pt;}
._5{width:10.008533pt;}
._12{width:11.455733pt;}
._a{width:15.027852pt;}
._13{width:17.675200pt;}
._14{width:34.598400pt;}
._f{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs5{font-size:184.886400pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y6b{bottom:124.716400pt;}
.y24{bottom:124.720400pt;}
.y4a{bottom:124.723067pt;}
.yb3{bottom:128.826933pt;}
.yd6{bottom:128.901600pt;}
.y8f{bottom:129.657733pt;}
.y6a{bottom:139.384400pt;}
.y8e{bottom:139.387067pt;}
.y23{bottom:139.388400pt;}
.y49{bottom:144.324400pt;}
.yd5{bottom:144.901600pt;}
.yb2{bottom:148.154933pt;}
.y48{bottom:154.052400pt;}
.y8d{bottom:154.055067pt;}
.y22{bottom:154.056400pt;}
.yd4{bottom:160.901600pt;}
.yb1{bottom:167.482933pt;}
.y47{bottom:168.720400pt;}
.y8c{bottom:168.723067pt;}
.y21{bottom:173.657733pt;}
.yd3{bottom:176.901600pt;}
.y20{bottom:183.385733pt;}
.y46{bottom:183.388400pt;}
.yb0{bottom:186.810933pt;}
.y8b{bottom:188.324400pt;}
.y8a{bottom:198.051067pt;}
.y1f{bottom:198.053733pt;}
.y45{bottom:198.056400pt;}
.yaf{bottom:206.138933pt;}
.yd2{bottom:212.101600pt;}
.y89{bottom:212.719067pt;}
.y1e{bottom:212.721733pt;}
.y44{bottom:217.657733pt;}
.yae{bottom:225.466933pt;}
.y69{bottom:227.385733pt;}
.y88{bottom:227.387067pt;}
.y1d{bottom:227.389733pt;}
.yd1{bottom:236.634933pt;}
.y68{bottom:242.053733pt;}
.y87{bottom:242.055067pt;}
.yad{bottom:244.794933pt;}
.y1c{bottom:246.991067pt;}
.y43{bottom:252.336267pt;}
.yd0{bottom:256.234933pt;}
.y67{bottom:256.721733pt;}
.y1b{bottom:256.723067pt;}
.yac{bottom:264.122933pt;}
.y66{bottom:271.389733pt;}
.y42{bottom:271.408267pt;}
.ycf{bottom:275.834933pt;}
.y1a{bottom:276.324400pt;}
.yab{bottom:283.450933pt;}
.y41{bottom:290.480267pt;}
.y65{bottom:290.991067pt;}
.yce{bottom:295.434933pt;}
.yaa{bottom:302.778933pt;}
.y40{bottom:309.552267pt;}
.y19{bottom:312.438133pt;}
.ycd{bottom:315.034933pt;}
.y86{bottom:319.904267pt;}
.ya9{bottom:322.106933pt;}
.y3f{bottom:328.624267pt;}
.y64{bottom:329.248267pt;}
.y18{bottom:331.238133pt;}
.ycc{bottom:334.634933pt;}
.y85{bottom:339.232267pt;}
.ya8{bottom:341.434933pt;}
.y3e{bottom:347.696267pt;}
.y63{bottom:347.920267pt;}
.y17{bottom:350.038133pt;}
.ycb{bottom:354.234933pt;}
.y84{bottom:357.904267pt;}
.ya7{bottom:360.762933pt;}
.y3d{bottom:366.650933pt;}
.y62{bottom:366.992267pt;}
.y16{bottom:368.838133pt;}
.yca{bottom:373.834933pt;}
.y83{bottom:376.576267pt;}
.ya6{bottom:380.090933pt;}
.y3c{bottom:385.722933pt;}
.y61{bottom:386.064267pt;}
.y15{bottom:387.638133pt;}
.yc9{bottom:393.434933pt;}
.y82{bottom:395.248267pt;}
.ya5{bottom:399.418933pt;}
.y3b{bottom:404.794933pt;}
.y60{bottom:405.136267pt;}
.y14{bottom:406.438133pt;}
.yc8{bottom:413.034933pt;}
.y81{bottom:413.920267pt;}
.ya4{bottom:418.746933pt;}
.y3a{bottom:423.866933pt;}
.y5f{bottom:424.208267pt;}
.y13{bottom:425.238133pt;}
.y80{bottom:432.592267pt;}
.yc7{bottom:432.634933pt;}
.ya3{bottom:438.074933pt;}
.y39{bottom:442.938933pt;}
.y5e{bottom:443.280267pt;}
.y12{bottom:444.038133pt;}
.y7f{bottom:451.264267pt;}
.yc6{bottom:452.234933pt;}
.ya2{bottom:457.402933pt;}
.y38{bottom:462.010933pt;}
.y5d{bottom:462.352267pt;}
.y11{bottom:462.838133pt;}
.y7e{bottom:469.936267pt;}
.yc5{bottom:471.834933pt;}
.ya1{bottom:476.730933pt;}
.y37{bottom:481.082933pt;}
.y5c{bottom:481.424267pt;}
.y10{bottom:481.638133pt;}
.y7d{bottom:488.608267pt;}
.yc4{bottom:491.434933pt;}
.ya0{bottom:496.058933pt;}
.y36{bottom:500.154933pt;}
.yf{bottom:500.438133pt;}
.y5b{bottom:500.496267pt;}
.y7c{bottom:507.280267pt;}
.yc3{bottom:511.034933pt;}
.y9f{bottom:515.386933pt;}
.y35{bottom:519.226933pt;}
.ye{bottom:519.238133pt;}
.y5a{bottom:519.552267pt;}
.y7b{bottom:525.952267pt;}
.yc2{bottom:530.634933pt;}
.y9e{bottom:534.714933pt;}
.yd{bottom:538.038133pt;}
.y34{bottom:538.298933pt;}
.y59{bottom:538.624267pt;}
.y7a{bottom:544.624267pt;}
.yc1{bottom:550.234933pt;}
.y9d{bottom:554.042933pt;}
.yc{bottom:556.838133pt;}
.y33{bottom:557.370933pt;}
.y58{bottom:557.696267pt;}
.y79{bottom:563.296267pt;}
.yc0{bottom:569.834933pt;}
.y9c{bottom:573.370933pt;}
.yb{bottom:575.638133pt;}
.y32{bottom:576.442933pt;}
.y57{bottom:576.698933pt;}
.y78{bottom:581.946933pt;}
.ybf{bottom:589.434933pt;}
.y9b{bottom:592.698933pt;}
.y31{bottom:595.514933pt;}
.y56{bottom:595.770933pt;}
.y77{bottom:600.618933pt;}
.ybe{bottom:609.034933pt;}
.y9a{bottom:612.026933pt;}
.y30{bottom:614.586933pt;}
.y55{bottom:614.842933pt;}
.y76{bottom:619.290933pt;}
.ybd{bottom:628.634933pt;}
.y99{bottom:631.354933pt;}
.ya{bottom:631.926133pt;}
.y2f{bottom:633.658933pt;}
.y54{bottom:633.914933pt;}
.y75{bottom:637.962933pt;}
.ybc{bottom:648.234933pt;}
.y98{bottom:650.682933pt;}
.y2e{bottom:652.730933pt;}
.y53{bottom:652.986933pt;}
.y74{bottom:656.586933pt;}
.y9{bottom:658.582133pt;}
.ybb{bottom:667.834933pt;}
.y97{bottom:670.010933pt;}
.y2d{bottom:671.802933pt;}
.y52{bottom:672.058933pt;}
.y73{bottom:675.258933pt;}
.y8{bottom:685.238133pt;}
.yba{bottom:687.434933pt;}
.y96{bottom:689.338933pt;}
.y2c{bottom:690.874933pt;}
.y51{bottom:691.130933pt;}
.y72{bottom:693.930933pt;}
.yb9{bottom:707.034933pt;}
.y95{bottom:708.666933pt;}
.y2b{bottom:709.946933pt;}
.y50{bottom:710.202933pt;}
.y71{bottom:712.602933pt;}
.yb8{bottom:726.634933pt;}
.y94{bottom:727.994933pt;}
.y2a{bottom:729.018933pt;}
.y4f{bottom:729.274933pt;}
.y70{bottom:731.274933pt;}
.y7{bottom:733.828400pt;}
.yb7{bottom:746.234933pt;}
.y93{bottom:747.322933pt;}
.y29{bottom:748.090933pt;}
.y4e{bottom:748.346933pt;}
.y6{bottom:749.295067pt;}
.y6f{bottom:749.946933pt;}
.y5{bottom:764.761733pt;}
.yb6{bottom:765.834933pt;}
.y92{bottom:766.650933pt;}
.y28{bottom:767.162933pt;}
.y4d{bottom:767.418933pt;}
.y6e{bottom:768.618933pt;}
.y4{bottom:780.228400pt;}
.yb5{bottom:785.434933pt;}
.y91{bottom:785.978933pt;}
.y27{bottom:786.234933pt;}
.y4c{bottom:786.490933pt;}
.y6d{bottom:787.290933pt;}
.yb4{bottom:805.034933pt;}
.y90{bottom:805.306933pt;}
.y26{bottom:805.434933pt;}
.y4b{bottom:805.562933pt;}
.y6c{bottom:805.962933pt;}
.y3{bottom:810.055067pt;}
.y25{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.ha{height:27.171875pt;}
.hc{height:31.700521pt;}
.h2{height:36.229167pt;}
.hb{height:43.022135pt;}
.h3{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.he{height:54.621083pt;}
.h8{height:56.286250pt;}
.h9{height:56.286783pt;}
.hf{height:56.350250pt;}
.h11{height:56.371583pt;}
.h10{height:56.478250pt;}
.h12{height:56.542250pt;}
.hd{height:56.755583pt;}
.h5{height:76.986979pt;}
.h6{height:156.990942pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.907467pt;}
.x5{left:103.717867pt;}
.x7{left:105.829600pt;}
.x6{left:133.929200pt;}
.x1{left:182.830000pt;}
.x8{left:461.283200pt;}
.x2{left:508.590533pt;}
}




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