
    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_38f80d255a3fdd76ff4adcb1.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_b7acff342dd99c4eb4001610.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_ca6fd28cd0eba7d133cca972.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ca2e64d6346a7dec276997d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.683594;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_4607a9985c312ff1df1ff3ff.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5fb98bb802ea6f86112429e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.883789;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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.lse{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.570000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.936000px;}
.ls2{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.560000px;}
.ls7{letter-spacing:4.200000px;}
.lsc{letter-spacing:4.464000px;}
.ls10{letter-spacing:6.000000px;}
.ls4{letter-spacing:7.200000px;}
.lsb{letter-spacing:9.000000px;}
.lsf{letter-spacing:9.396600px;}
.ls3{letter-spacing:10.200000px;}
.ls8{letter-spacing:14.400000px;}
.ls0{letter-spacing:28.860000px;}
.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;}
}
.ws0{word-spacing:-50.778000px;}
.ws3{word-spacing:-20.232000px;}
.ws7{word-spacing:-19.152000px;}
.ws5{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.860000px;}
.ws4{word-spacing:-12.139200px;}
.ws6{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-20.502000px;}
._17{margin-left:-19.476000px;}
._9{margin-left:-15.120000px;}
._18{margin-left:-13.800000px;}
._3{margin-left:-10.404000px;}
._2{margin-left:-8.034000px;}
._4{margin-left:-6.336000px;}
._e{margin-left:-5.040000px;}
._0{margin-left:-3.840000px;}
._7{margin-left:-2.376000px;}
._1{margin-left:-1.344000px;}
._b{width:1.152000px;}
._6{width:2.232000px;}
._5{width:4.032000px;}
._a{width:5.112000px;}
._13{width:6.120000px;}
._d{width:7.128000px;}
._f{width:8.712000px;}
._10{width:10.080000px;}
._12{width:11.160000px;}
._8{width:12.528000px;}
._c{width:14.038800px;}
._15{width:15.192000px;}
._14{width:16.704000px;}
._11{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y39{bottom:145.851300px;}
.yc1{bottom:145.863000px;}
.y7f{bottom:145.863150px;}
.ye3{bottom:147.412500px;}
.y5b{bottom:149.293050px;}
.y18{bottom:150.675150px;}
.y7e{bottom:162.363150px;}
.ye2{bottom:165.412500px;}
.y5a{bottom:170.443050px;}
.y17{bottom:172.869150px;}
.y7d{bottom:178.863150px;}
.y38{bottom:180.356850px;}
.ye1{bottom:183.412500px;}
.yc0{bottom:184.808400px;}
.y59{bottom:191.593050px;}
.y16{bottom:195.063150px;}
.ya0{bottom:195.363150px;}
.ye0{bottom:201.412500px;}
.y37{bottom:202.712850px;}
.ybf{bottom:206.408400px;}
.y58{bottom:212.743050px;}
.y7c{bottom:217.048500px;}
.y15{bottom:217.257150px;}
.y36{bottom:225.068850px;}
.ybe{bottom:228.008400px;}
.y9f{bottom:232.162500px;}
.y57{bottom:233.893050px;}
.y7b{bottom:239.404500px;}
.y14{bottom:239.451150px;}
.y35{bottom:247.424850px;}
.ybd{bottom:249.608400px;}
.y9e{bottom:253.762500px;}
.y56{bottom:255.043050px;}
.ydf{bottom:258.112500px;}
.y13{bottom:261.645150px;}
.y7a{bottom:261.760500px;}
.y34{bottom:269.780850px;}
.ybc{bottom:271.208400px;}
.yde{bottom:275.344500px;}
.y9d{bottom:275.362500px;}
.y55{bottom:276.193050px;}
.y12{bottom:283.839150px;}
.y79{bottom:283.954500px;}
.y33{bottom:292.136850px;}
.ybb{bottom:292.808400px;}
.ydd{bottom:297.088500px;}
.y9c{bottom:297.106500px;}
.y54{bottom:297.343050px;}
.y11{bottom:306.033150px;}
.y78{bottom:306.148500px;}
.yba{bottom:314.408400px;}
.y32{bottom:314.492850px;}
.y53{bottom:318.493050px;}
.ydc{bottom:318.832500px;}
.y9b{bottom:318.850500px;}
.y10{bottom:328.227150px;}
.y77{bottom:328.342500px;}
.yb9{bottom:336.008400px;}
.y31{bottom:336.848850px;}
.ydb{bottom:340.576500px;}
.y9a{bottom:340.594500px;}
.y52{bottom:348.147000px;}
.yf{bottom:350.421150px;}
.y76{bottom:350.536500px;}
.yb8{bottom:357.608400px;}
.y30{bottom:359.204850px;}
.yda{bottom:362.320500px;}
.y99{bottom:362.338500px;}
.ye{bottom:372.615150px;}
.y75{bottom:372.730500px;}
.yb7{bottom:379.208400px;}
.y2f{bottom:381.560850px;}
.yd9{bottom:384.064500px;}
.y98{bottom:384.082500px;}
.yd{bottom:394.809150px;}
.y74{bottom:394.924500px;}
.yb6{bottom:400.808400px;}
.y2e{bottom:403.916850px;}
.yd8{bottom:405.808500px;}
.y97{bottom:405.826500px;}
.y51{bottom:411.596850px;}
.yc{bottom:417.003150px;}
.y73{bottom:417.118500px;}
.yb5{bottom:422.408400px;}
.y2d{bottom:426.272850px;}
.yd7{bottom:427.552500px;}
.y96{bottom:427.570500px;}
.y50{bottom:432.746850px;}
.y72{bottom:439.336500px;}
.yb4{bottom:444.008400px;}
.yb{bottom:447.706950px;}
.y2c{bottom:448.628850px;}
.yd6{bottom:449.296500px;}
.y95{bottom:449.314500px;}
.y4f{bottom:453.896850px;}
.y71{bottom:461.530500px;}
.yb3{bottom:465.608550px;}
.y2b{bottom:470.984850px;}
.yd5{bottom:471.040500px;}
.y94{bottom:471.058500px;}
.y4e{bottom:475.046850px;}
.y70{bottom:483.724500px;}
.yb2{bottom:487.208550px;}
.yd4{bottom:492.784500px;}
.y93{bottom:492.802500px;}
.y2a{bottom:493.340850px;}
.y4d{bottom:496.196850px;}
.y6f{bottom:505.918500px;}
.yb1{bottom:508.808550px;}
.yd3{bottom:514.528500px;}
.y92{bottom:514.546500px;}
.y29{bottom:515.696850px;}
.y4c{bottom:517.346850px;}
.y6e{bottom:528.208500px;}
.yb0{bottom:530.408550px;}
.ya{bottom:535.325100px;}
.yd2{bottom:536.272500px;}
.y91{bottom:536.290500px;}
.y4b{bottom:538.496850px;}
.y28{bottom:546.544800px;}
.y6d{bottom:550.402500px;}
.y9{bottom:557.519100px;}
.yd1{bottom:558.016500px;}
.y90{bottom:558.034500px;}
.y4a{bottom:559.646850px;}
.yaf{bottom:560.512350px;}
.y27{bottom:568.900800px;}
.y6c{bottom:572.596500px;}
.y8{bottom:579.713100px;}
.yd0{bottom:579.760500px;}
.y8f{bottom:579.778500px;}
.y49{bottom:580.796850px;}
.y6b{bottom:594.790500px;}
.ycf{bottom:601.504500px;}
.y8e{bottom:601.522500px;}
.y7{bottom:601.907100px;}
.y48{bottom:601.946850px;}
.y6a{bottom:616.984500px;}
.y47{bottom:623.096850px;}
.yce{bottom:623.248500px;}
.y8d{bottom:623.266500px;}
.yae{bottom:625.312350px;}
.y6{bottom:632.611050px;}
.y69{bottom:639.178500px;}
.y46{bottom:644.246850px;}
.ycd{bottom:644.992500px;}
.y8c{bottom:645.010500px;}
.yad{bottom:646.912350px;}
.y26{bottom:659.590800px;}
.y68{bottom:661.372500px;}
.y45{bottom:665.396850px;}
.ycc{bottom:666.736500px;}
.y8b{bottom:666.754500px;}
.yac{bottom:668.512350px;}
.y25{bottom:681.946800px;}
.y67{bottom:683.566500px;}
.y44{bottom:686.546850px;}
.ycb{bottom:688.480500px;}
.y8a{bottom:688.498500px;}
.yab{bottom:690.112350px;}
.y24{bottom:704.302800px;}
.y66{bottom:705.760500px;}
.y43{bottom:707.696850px;}
.yca{bottom:710.224500px;}
.y89{bottom:710.242500px;}
.yaa{bottom:711.712500px;}
.y5{bottom:716.611050px;}
.y23{bottom:726.658800px;}
.y65{bottom:727.954500px;}
.y42{bottom:728.846850px;}
.yc9{bottom:731.968500px;}
.y88{bottom:731.986500px;}
.ya9{bottom:733.312500px;}
.y4{bottom:742.462950px;}
.y22{bottom:749.014800px;}
.y41{bottom:749.996850px;}
.y64{bottom:750.148500px;}
.y87{bottom:753.730500px;}
.yc8{bottom:753.760500px;}
.ya8{bottom:754.912500px;}
.y40{bottom:771.146850px;}
.y21{bottom:771.370800px;}
.y63{bottom:772.342500px;}
.y3{bottom:773.062950px;}
.y86{bottom:775.474500px;}
.yc7{bottom:775.504500px;}
.ya7{bottom:776.512500px;}
.y3f{bottom:792.296850px;}
.y20{bottom:793.726800px;}
.y62{bottom:794.536500px;}
.y85{bottom:797.218500px;}
.yc6{bottom:797.248500px;}
.ya6{bottom:798.112500px;}
.y3e{bottom:813.446850px;}
.y1f{bottom:816.082800px;}
.y61{bottom:816.730500px;}
.y84{bottom:818.974500px;}
.yc5{bottom:818.992500px;}
.ya5{bottom:819.712500px;}
.y3d{bottom:834.596850px;}
.y1e{bottom:838.438800px;}
.y60{bottom:838.924500px;}
.y83{bottom:840.718500px;}
.yc4{bottom:840.736500px;}
.ya4{bottom:841.312500px;}
.y3c{bottom:855.746850px;}
.y1d{bottom:860.794800px;}
.y5f{bottom:861.118500px;}
.y82{bottom:862.468500px;}
.yc3{bottom:862.480500px;}
.ya3{bottom:862.912500px;}
.y3b{bottom:876.896850px;}
.y1c{bottom:883.150800px;}
.y5e{bottom:883.324500px;}
.y81{bottom:884.218500px;}
.yc2{bottom:884.224500px;}
.ya2{bottom:884.512500px;}
.y3a{bottom:898.046850px;}
.y1b{bottom:905.506800px;}
.y5d{bottom:905.518500px;}
.y80{bottom:905.968500px;}
.ya1{bottom:906.112500px;}
.y2{bottom:926.714850px;}
.y1a{bottom:927.700800px;}
.y5c{bottom:927.712500px;}
.h9{height:26.199902px;}
.h8{height:27.993164px;}
.hd{height:30.568359px;}
.h7{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.hf{height:48.399902px;}
.ha{height:50.947266px;}
.h6{height:61.136719px;}
.hb{height:62.938031px;}
.hc{height:63.226031px;}
.he{height:63.298031px;}
.h4{height:66.231445px;}
.h5{height:86.610352px;}
.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.793400px;}
.x7{left:119.071050px;}
.x5{left:150.670350px;}
.x6{left:270.577950px;}
.x1{left:367.102200px;}
.x8{left:521.949450px;}
.x2{left:572.164350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.506667pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.832000pt;}
.ls2{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.386667pt;}
.ls7{letter-spacing:3.733333pt;}
.lsc{letter-spacing:3.968000pt;}
.ls10{letter-spacing:5.333333pt;}
.ls4{letter-spacing:6.400000pt;}
.lsb{letter-spacing:8.000000pt;}
.lsf{letter-spacing:8.352533pt;}
.ls3{letter-spacing:9.066667pt;}
.ls8{letter-spacing:12.800000pt;}
.ls0{letter-spacing:25.653333pt;}
.ws0{word-spacing:-45.136000pt;}
.ws3{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.024000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws4{word-spacing:-10.790400pt;}
.ws6{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-18.224000pt;}
._17{margin-left:-17.312000pt;}
._9{margin-left:-13.440000pt;}
._18{margin-left:-12.266667pt;}
._3{margin-left:-9.248000pt;}
._2{margin-left:-7.141333pt;}
._4{margin-left:-5.632000pt;}
._e{margin-left:-4.480000pt;}
._0{margin-left:-3.413333pt;}
._7{margin-left:-2.112000pt;}
._1{margin-left:-1.194667pt;}
._b{width:1.024000pt;}
._6{width:1.984000pt;}
._5{width:3.584000pt;}
._a{width:4.544000pt;}
._13{width:5.440000pt;}
._d{width:6.336000pt;}
._f{width:7.744000pt;}
._10{width:8.960000pt;}
._12{width:9.920000pt;}
._8{width:11.136000pt;}
._c{width:12.478933pt;}
._15{width:13.504000pt;}
._14{width:14.848000pt;}
._11{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y39{bottom:129.645600pt;}
.yc1{bottom:129.656000pt;}
.y7f{bottom:129.656133pt;}
.ye3{bottom:131.033333pt;}
.y5b{bottom:132.704933pt;}
.y18{bottom:133.933467pt;}
.y7e{bottom:144.322800pt;}
.ye2{bottom:147.033333pt;}
.y5a{bottom:151.504933pt;}
.y17{bottom:153.661467pt;}
.y7d{bottom:158.989467pt;}
.y38{bottom:160.317200pt;}
.ye1{bottom:163.033333pt;}
.yc0{bottom:164.274133pt;}
.y59{bottom:170.304933pt;}
.y16{bottom:173.389467pt;}
.ya0{bottom:173.656133pt;}
.ye0{bottom:179.033333pt;}
.y37{bottom:180.189200pt;}
.ybf{bottom:183.474133pt;}
.y58{bottom:189.104933pt;}
.y7c{bottom:192.932000pt;}
.y15{bottom:193.117467pt;}
.y36{bottom:200.061200pt;}
.ybe{bottom:202.674133pt;}
.y9f{bottom:206.366667pt;}
.y57{bottom:207.904933pt;}
.y7b{bottom:212.804000pt;}
.y14{bottom:212.845467pt;}
.y35{bottom:219.933200pt;}
.ybd{bottom:221.874133pt;}
.y9e{bottom:225.566667pt;}
.y56{bottom:226.704933pt;}
.ydf{bottom:229.433333pt;}
.y13{bottom:232.573467pt;}
.y7a{bottom:232.676000pt;}
.y34{bottom:239.805200pt;}
.ybc{bottom:241.074133pt;}
.yde{bottom:244.750667pt;}
.y9d{bottom:244.766667pt;}
.y55{bottom:245.504933pt;}
.y12{bottom:252.301467pt;}
.y79{bottom:252.404000pt;}
.y33{bottom:259.677200pt;}
.ybb{bottom:260.274133pt;}
.ydd{bottom:264.078667pt;}
.y9c{bottom:264.094667pt;}
.y54{bottom:264.304933pt;}
.y11{bottom:272.029467pt;}
.y78{bottom:272.132000pt;}
.yba{bottom:279.474133pt;}
.y32{bottom:279.549200pt;}
.y53{bottom:283.104933pt;}
.ydc{bottom:283.406667pt;}
.y9b{bottom:283.422667pt;}
.y10{bottom:291.757467pt;}
.y77{bottom:291.860000pt;}
.yb9{bottom:298.674133pt;}
.y31{bottom:299.421200pt;}
.ydb{bottom:302.734667pt;}
.y9a{bottom:302.750667pt;}
.y52{bottom:309.464000pt;}
.yf{bottom:311.485467pt;}
.y76{bottom:311.588000pt;}
.yb8{bottom:317.874133pt;}
.y30{bottom:319.293200pt;}
.yda{bottom:322.062667pt;}
.y99{bottom:322.078667pt;}
.ye{bottom:331.213467pt;}
.y75{bottom:331.316000pt;}
.yb7{bottom:337.074133pt;}
.y2f{bottom:339.165200pt;}
.yd9{bottom:341.390667pt;}
.y98{bottom:341.406667pt;}
.yd{bottom:350.941467pt;}
.y74{bottom:351.044000pt;}
.yb6{bottom:356.274133pt;}
.y2e{bottom:359.037200pt;}
.yd8{bottom:360.718667pt;}
.y97{bottom:360.734667pt;}
.y51{bottom:365.863867pt;}
.yc{bottom:370.669467pt;}
.y73{bottom:370.772000pt;}
.yb5{bottom:375.474133pt;}
.y2d{bottom:378.909200pt;}
.yd7{bottom:380.046667pt;}
.y96{bottom:380.062667pt;}
.y50{bottom:384.663867pt;}
.y72{bottom:390.521333pt;}
.yb4{bottom:394.674133pt;}
.yb{bottom:397.961733pt;}
.y2c{bottom:398.781200pt;}
.yd6{bottom:399.374667pt;}
.y95{bottom:399.390667pt;}
.y4f{bottom:403.463867pt;}
.y71{bottom:410.249333pt;}
.yb3{bottom:413.874267pt;}
.y2b{bottom:418.653200pt;}
.yd5{bottom:418.702667pt;}
.y94{bottom:418.718667pt;}
.y4e{bottom:422.263867pt;}
.y70{bottom:429.977333pt;}
.yb2{bottom:433.074267pt;}
.yd4{bottom:438.030667pt;}
.y93{bottom:438.046667pt;}
.y2a{bottom:438.525200pt;}
.y4d{bottom:441.063867pt;}
.y6f{bottom:449.705333pt;}
.yb1{bottom:452.274267pt;}
.yd3{bottom:457.358667pt;}
.y92{bottom:457.374667pt;}
.y29{bottom:458.397200pt;}
.y4c{bottom:459.863867pt;}
.y6e{bottom:469.518667pt;}
.yb0{bottom:471.474267pt;}
.ya{bottom:475.844533pt;}
.yd2{bottom:476.686667pt;}
.y91{bottom:476.702667pt;}
.y4b{bottom:478.663867pt;}
.y28{bottom:485.817600pt;}
.y6d{bottom:489.246667pt;}
.y9{bottom:495.572533pt;}
.yd1{bottom:496.014667pt;}
.y90{bottom:496.030667pt;}
.y4a{bottom:497.463867pt;}
.yaf{bottom:498.233200pt;}
.y27{bottom:505.689600pt;}
.y6c{bottom:508.974667pt;}
.y8{bottom:515.300533pt;}
.yd0{bottom:515.342667pt;}
.y8f{bottom:515.358667pt;}
.y49{bottom:516.263867pt;}
.y6b{bottom:528.702667pt;}
.ycf{bottom:534.670667pt;}
.y8e{bottom:534.686667pt;}
.y7{bottom:535.028533pt;}
.y48{bottom:535.063867pt;}
.y6a{bottom:548.430667pt;}
.y47{bottom:553.863867pt;}
.yce{bottom:553.998667pt;}
.y8d{bottom:554.014667pt;}
.yae{bottom:555.833200pt;}
.y6{bottom:562.320933pt;}
.y69{bottom:568.158667pt;}
.y46{bottom:572.663867pt;}
.ycd{bottom:573.326667pt;}
.y8c{bottom:573.342667pt;}
.yad{bottom:575.033200pt;}
.y26{bottom:586.302933pt;}
.y68{bottom:587.886667pt;}
.y45{bottom:591.463867pt;}
.ycc{bottom:592.654667pt;}
.y8b{bottom:592.670667pt;}
.yac{bottom:594.233200pt;}
.y25{bottom:606.174933pt;}
.y67{bottom:607.614667pt;}
.y44{bottom:610.263867pt;}
.ycb{bottom:611.982667pt;}
.y8a{bottom:611.998667pt;}
.yab{bottom:613.433200pt;}
.y24{bottom:626.046933pt;}
.y66{bottom:627.342667pt;}
.y43{bottom:629.063867pt;}
.yca{bottom:631.310667pt;}
.y89{bottom:631.326667pt;}
.yaa{bottom:632.633333pt;}
.y5{bottom:636.987600pt;}
.y23{bottom:645.918933pt;}
.y65{bottom:647.070667pt;}
.y42{bottom:647.863867pt;}
.yc9{bottom:650.638667pt;}
.y88{bottom:650.654667pt;}
.ya9{bottom:651.833333pt;}
.y4{bottom:659.967067pt;}
.y22{bottom:665.790933pt;}
.y41{bottom:666.663867pt;}
.y64{bottom:666.798667pt;}
.y87{bottom:669.982667pt;}
.yc8{bottom:670.009333pt;}
.ya8{bottom:671.033333pt;}
.y40{bottom:685.463867pt;}
.y21{bottom:685.662933pt;}
.y63{bottom:686.526667pt;}
.y3{bottom:687.167067pt;}
.y86{bottom:689.310667pt;}
.yc7{bottom:689.337333pt;}
.ya7{bottom:690.233333pt;}
.y3f{bottom:704.263867pt;}
.y20{bottom:705.534933pt;}
.y62{bottom:706.254667pt;}
.y85{bottom:708.638667pt;}
.yc6{bottom:708.665333pt;}
.ya6{bottom:709.433333pt;}
.y3e{bottom:723.063867pt;}
.y1f{bottom:725.406933pt;}
.y61{bottom:725.982667pt;}
.y84{bottom:727.977333pt;}
.yc5{bottom:727.993333pt;}
.ya5{bottom:728.633333pt;}
.y3d{bottom:741.863867pt;}
.y1e{bottom:745.278933pt;}
.y60{bottom:745.710667pt;}
.y83{bottom:747.305333pt;}
.yc4{bottom:747.321333pt;}
.ya4{bottom:747.833333pt;}
.y3c{bottom:760.663867pt;}
.y1d{bottom:765.150933pt;}
.y5f{bottom:765.438667pt;}
.y82{bottom:766.638667pt;}
.yc3{bottom:766.649333pt;}
.ya3{bottom:767.033333pt;}
.y3b{bottom:779.463867pt;}
.y1c{bottom:785.022933pt;}
.y5e{bottom:785.177333pt;}
.y81{bottom:785.972000pt;}
.yc2{bottom:785.977333pt;}
.ya2{bottom:786.233333pt;}
.y3a{bottom:798.263867pt;}
.y1b{bottom:804.894933pt;}
.y5d{bottom:804.905333pt;}
.y80{bottom:805.305333pt;}
.ya1{bottom:805.433333pt;}
.y2{bottom:823.746533pt;}
.y1a{bottom:824.622933pt;}
.y5c{bottom:824.633333pt;}
.h9{height:23.288802pt;}
.h8{height:24.882812pt;}
.hd{height:27.171875pt;}
.h7{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.hf{height:43.022135pt;}
.ha{height:45.286458pt;}
.h6{height:54.343750pt;}
.hb{height:55.944917pt;}
.hc{height:56.200917pt;}
.he{height:56.264917pt;}
.h4{height:58.872396pt;}
.h5{height:76.986979pt;}
.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.927467pt;}
.x7{left:105.840933pt;}
.x5{left:133.929200pt;}
.x6{left:240.513733pt;}
.x1{left:326.313067pt;}
.x8{left:463.955067pt;}
.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; }
  