
    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_f74c362221979c0740bee5c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_df6248f02185e663ef882edb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905000;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_28c0467499f060cfed532331.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_18f54b61d86806c6efa82756.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_c811f082b8b5bfb1c9bf560e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_bb07fc9096afbfd4b1390579.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_deafeaef0925d517867c6d0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_0f7e6655d613a75217730231.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eae5bfb27ad0a0a72291febf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f8a6547670029fd4bcfa6426.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_17dcf91b6ffe81442ef3ef57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_352a97f6825a7879fb3f5a1a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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:ffd;src:url('chunks/assets/font_247d4bf53affe4a54eef1031.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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:ffe;src:url('chunks/assets/font_4993bf24f49f0ae0c0d5a19d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687000;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:fff;src:url('chunks/assets/font_c95c72b70a68759be1cc5362.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;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:ff10;src:url('chunks/assets/font_27d134bbf41ebf6965e6bdb5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.698000;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:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.034000px;}
.v2{vertical-align:31.236000px;}
.v1{vertical-align:44.988000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.992226px;}
.ls1{letter-spacing:2.992894px;}
.lsc{letter-spacing:5.629096px;}
.lsa{letter-spacing:27.246479px;}
.ls5{letter-spacing:28.884479px;}
.ls4{letter-spacing:35.083666px;}
.ls0{letter-spacing:35.148288px;}
.ls6{letter-spacing:61.584479px;}
.lsf{letter-spacing:63.163689px;}
.ls8{letter-spacing:64.276417px;}
.ls9{letter-spacing:64.865509px;}
.lsb{letter-spacing:65.389145px;}
.ls7{letter-spacing:65.716418px;}
.lsd{letter-spacing:227.782008px;}
.lse{letter-spacing:228.043826px;}
.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;}
}
.ws1b{word-spacing:-35.112422px;}
.ws32{word-spacing:-29.881822px;}
.ws39{word-spacing:-19.546752px;}
.ws4a{word-spacing:-18.901171px;}
.ws4b{word-spacing:-17.896934px;}
.ws25{word-spacing:-16.103654px;}
.ws67{word-spacing:-15.673267px;}
.ws18{word-spacing:-15.529805px;}
.ws6{word-spacing:-15.027686px;}
.ws28{word-spacing:-14.669030px;}
.ws5{word-spacing:-13.836948px;}
.ws16{word-spacing:-13.808256px;}
.ws14{word-spacing:-13.736525px;}
.ws55{word-spacing:-13.664794px;}
.ws68{word-spacing:-13.306138px;}
.ws8{word-spacing:-13.234406px;}
.wse{word-spacing:-12.014976px;}
.wsc{word-spacing:-12.006949px;}
.ws19{word-spacing:-11.943245px;}
.ws57{word-spacing:-11.745130px;}
.ws7{word-spacing:-11.728051px;}
.ws6a{word-spacing:-11.679676px;}
.ws53{word-spacing:-11.512858px;}
.ws48{word-spacing:-11.297664px;}
.ws38{word-spacing:-11.082470px;}
.ws47{word-spacing:-10.867277px;}
.ws45{word-spacing:-10.828766px;}
.ws21{word-spacing:-10.752507px;}
.ws22{word-spacing:-10.723814px;}
.ws4{word-spacing:-10.365158px;}
.wsb{word-spacing:-10.006502px;}
.ws11{word-spacing:-9.976548px;}
.ws35{word-spacing:-9.934771px;}
.ws4d{word-spacing:-9.791309px;}
.ws4e{word-spacing:-9.781492px;}
.ws56{word-spacing:-9.719578px;}
.ws52{word-spacing:-9.647846px;}
.ws33{word-spacing:-9.378792px;}
.ws24{word-spacing:-9.217459px;}
.ws13{word-spacing:-8.930534px;}
.ws50{word-spacing:-8.643610px;}
.ws2d{word-spacing:-8.428416px;}
.ws37{word-spacing:-6.850330px;}
.ws17{word-spacing:-6.778598px;}
.ws49{word-spacing:-6.706867px;}
.ws5c{word-spacing:-5.694550px;}
.ws20{word-spacing:-5.516129px;}
.ws5a{word-spacing:-5.373826px;}
.ws43{word-spacing:-5.272243px;}
.ws2e{word-spacing:-4.913587px;}
.ws4c{word-spacing:-4.841856px;}
.ws3a{word-spacing:-4.414215px;}
.ws3c{word-spacing:-4.411469px;}
.ws9{word-spacing:-3.837619px;}
.ws1a{word-spacing:-3.550694px;}
.ws2c{word-spacing:-2.546458px;}
.ws2b{word-spacing:-2.259533px;}
.ws44{word-spacing:-1.040102px;}
.ws10{word-spacing:-0.065455px;}
.ws12{word-spacing:0.000000px;}
.ws31{word-spacing:0.005978px;}
.ws1f{word-spacing:0.007173px;}
.ws1d{word-spacing:0.078904px;}
.ws5d{word-spacing:9.229099px;}
.ws64{word-spacing:9.360008px;}
.ws5e{word-spacing:9.425462px;}
.ws62{word-spacing:9.490917px;}
.ws3f{word-spacing:9.556372px;}
.ws5f{word-spacing:9.752735px;}
.ws34{word-spacing:19.839820px;}
.ws5b{word-spacing:19.899596px;}
.ws29{word-spacing:20.377937px;}
.ws15{word-spacing:21.310443px;}
.ws26{word-spacing:21.734554px;}
.ws69{word-spacing:21.806285px;}
.wsf{word-spacing:23.031992px;}
.wsd{word-spacing:23.103723px;}
.ws3d{word-spacing:23.318917px;}
.ws23{word-spacing:23.390648px;}
.ws27{word-spacing:23.456102px;}
.ws54{word-spacing:23.534110px;}
.ws46{word-spacing:24.179691px;}
.ws36{word-spacing:25.183928px;}
.ws51{word-spacing:25.399121px;}
.ws66{word-spacing:26.116433px;}
.ws4f{word-spacing:26.475089px;}
.ws30{word-spacing:26.827469px;}
.ws1{word-spacing:27.200395px;}
.ws2{word-spacing:27.286472px;}
.ws3b{word-spacing:30.635499px;}
.ws1c{word-spacing:31.418178px;}
.ws65{word-spacing:31.504255px;}
.ws2a{word-spacing:32.787435px;}
.ws2f{word-spacing:34.646170px;}
.ws1e{word-spacing:35.154565px;}
.wsa{word-spacing:37.081972px;}
.ws0{word-spacing:38.060325px;}
.ws60{word-spacing:38.290941px;}
.ws61{word-spacing:47.258221px;}
.ws59{word-spacing:48.829132px;}
.ws40{word-spacing:50.138224px;}
.ws41{word-spacing:50.989133px;}
.ws58{word-spacing:51.250952px;}
.ws42{word-spacing:51.381861px;}
.ws3e{word-spacing:51.840043px;}
.ws63{word-spacing:65.156916px;}
.ws3{word-spacing:111.349207px;}
._8{margin-left:-9.296316px;}
._23{margin-left:-7.919102px;}
._1{margin-left:-6.800099px;}
._4{margin-left:-4.489199px;}
._0{margin-left:-3.099375px;}
._3{margin-left:-1.304908px;}
._1c{width:1.020583px;}
._2{width:2.238007px;}
._9{width:3.347434px;}
._17{width:4.647277px;}
._16{width:5.890914px;}
._19{width:7.069097px;}
._1b{width:9.883645px;}
._1e{width:10.899869px;}
._1f{width:16.232741px;}
._13{width:21.892949px;}
._11{width:25.435871px;}
._5{width:26.453879px;}
._a{width:27.690884px;}
._c{width:29.911910px;}
._6{width:31.346534px;}
._10{width:33.109948px;}
._15{width:34.616865px;}
._14{width:35.643511px;}
._12{width:37.700296px;}
._1d{width:39.919655px;}
._f{width:40.931851px;}
._b{width:45.907968px;}
._22{width:47.510791px;}
._20{width:49.156405px;}
._21{width:50.325338px;}
._18{width:51.512770px;}
._1a{width:52.560044px;}
._d{width:55.663411px;}
._e{width:94.684920px;}
._7{width:111.452500px;}
.fc3{color:rgb(178,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y16{bottom:134.794500px;}
.y55{bottom:188.820000px;}
.y33{bottom:206.913000px;}
.y15{bottom:211.083000px;}
.y54{bottom:212.175000px;}
.y14{bottom:229.090500px;}
.y32{bottom:230.269500px;}
.y53{bottom:241.542000px;}
.y31{bottom:242.779500px;}
.y13{bottom:247.156500px;}
.y52{bottom:261.865500px;}
.y12{bottom:265.222500px;}
.y30{bottom:266.134500px;}
.y51{bottom:287.151000px;}
.y11{bottom:292.126500px;}
.y2f{bottom:292.890000px;}
.y10{bottom:313.795500px;}
.y2e{bottom:314.559000px;}
.y50{bottom:322.269000px;}
.yf{bottom:335.464500px;}
.y2d{bottom:336.228000px;}
.y4f{bottom:343.938000px;}
.ye{bottom:357.133500px;}
.y2c{bottom:357.897000px;}
.y4e{bottom:365.607000px;}
.y2b{bottom:379.566000px;}
.y4d{bottom:387.276000px;}
.yd{bottom:396.556500px;}
.y2a{bottom:401.233500px;}
.y4c{bottom:408.945000px;}
.y29{bottom:422.902500px;}
.y4b{bottom:430.612500px;}
.y28{bottom:444.571500px;}
.y4a{bottom:452.281500px;}
.yc{bottom:456.450000px;}
.y49{bottom:473.950500px;}
.y27{bottom:481.185000px;}
.yb{bottom:493.062000px;}
.y48{bottom:495.619500px;}
.ya{bottom:514.731000px;}
.y47{bottom:517.288500px;}
.y26{bottom:517.797000px;}
.y46{bottom:538.957500px;}
.y9{bottom:551.344500px;}
.y25{bottom:554.410500px;}
.y45{bottom:560.625000px;}
.y44{bottom:582.294000px;}
.y8{bottom:587.956500px;}
.y24{bottom:591.022500px;}
.y43{bottom:603.963000px;}
.y7{bottom:609.625500px;}
.y23{bottom:612.691500px;}
.y42{bottom:625.632000px;}
.y6{bottom:631.294500px;}
.y41{bottom:647.301000px;}
.y22{bottom:652.293000px;}
.y62{bottom:653.476500px;}
.y40{bottom:668.970000px;}
.y5{bottom:670.717500px;}
.y21{bottom:673.962000px;}
.y61{bottom:675.144000px;}
.y3f{bottom:690.637500px;}
.y20{bottom:695.629500px;}
.y60{bottom:696.813000px;}
.y5f{bottom:718.482000px;}
.y3e{bottom:727.371000px;}
.y1f{bottom:746.811000px;}
.y3d{bottom:747.694500px;}
.y5e{bottom:751.729500px;}
.y3c{bottom:768.018000px;}
.y4{bottom:776.370000px;}
.y3b{bottom:788.341500px;}
.y1e{bottom:791.463000px;}
.y3a{bottom:818.110500px;}
.y3{bottom:818.308500px;}
.y5d{bottom:818.779500px;}
.y5c{bottom:839.103000px;}
.y39{bottom:839.778000px;}
.y1d{bottom:851.358000px;}
.y5b{bottom:859.426500px;}
.y38{bottom:861.447000px;}
.y2{bottom:871.540500px;}
.y1c{bottom:873.025500px;}
.y5a{bottom:879.751500px;}
.y37{bottom:883.116000px;}
.y1b{bottom:894.694500px;}
.y59{bottom:900.075000px;}
.y36{bottom:904.785000px;}
.y1{bottom:908.899500px;}
.y1a{bottom:916.363500px;}
.y58{bottom:920.398500px;}
.y35{bottom:926.454000px;}
.y19{bottom:938.032500px;}
.y57{bottom:940.722000px;}
.y34{bottom:948.123000px;}
.y18{bottom:959.701500px;}
.y56{bottom:961.045500px;}
.y17{bottom:981.370500px;}
.he{height:24.281011px;}
.h7{height:29.499174px;}
.hc{height:44.891476px;}
.hd{height:45.490947px;}
.h9{height:51.287808px;}
.h6{height:53.870131px;}
.hb{height:57.924340px;}
.ha{height:57.930340px;}
.h4{height:60.426194px;}
.h8{height:64.643977px;}
.h5{height:72.407972px;}
.h3{height:76.127476px;}
.h1{height:87.402375px;}
.h2{height:105.414194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:140.380500px;}
.xc{left:145.860000px;}
.x7{left:166.281000px;}
.x2{left:174.100500px;}
.xa{left:186.471000px;}
.x8{left:192.622500px;}
.x9{left:210.178500px;}
.x3{left:223.297500px;}
.x1{left:256.999500px;}
.xd{left:328.227000px;}
.x4{left:394.828500px;}
.x6{left:397.662000px;}
.xb{left:453.300000px;}
.x5{left:514.006500px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.141333pt;}
.v2{vertical-align:27.765333pt;}
.v1{vertical-align:39.989333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.659757pt;}
.ls1{letter-spacing:2.660350pt;}
.lsc{letter-spacing:5.003641pt;}
.lsa{letter-spacing:24.219093pt;}
.ls5{letter-spacing:25.675093pt;}
.ls4{letter-spacing:31.185481pt;}
.ls0{letter-spacing:31.242923pt;}
.ls6{letter-spacing:54.741759pt;}
.lsf{letter-spacing:56.145501pt;}
.ls8{letter-spacing:57.134593pt;}
.ls9{letter-spacing:57.658230pt;}
.lsb{letter-spacing:58.123685pt;}
.ls7{letter-spacing:58.414594pt;}
.lsd{letter-spacing:202.472896pt;}
.lse{letter-spacing:202.705623pt;}
.ws1b{word-spacing:-31.211042pt;}
.ws32{word-spacing:-26.561620pt;}
.ws39{word-spacing:-17.374891pt;}
.ws4a{word-spacing:-16.801041pt;}
.ws4b{word-spacing:-15.908386pt;}
.ws25{word-spacing:-14.314359pt;}
.ws67{word-spacing:-13.931793pt;}
.ws18{word-spacing:-13.804271pt;}
.ws6{word-spacing:-13.357943pt;}
.ws28{word-spacing:-13.039138pt;}
.ws5{word-spacing:-12.299510pt;}
.ws16{word-spacing:-12.274005pt;}
.ws14{word-spacing:-12.210244pt;}
.ws55{word-spacing:-12.146483pt;}
.ws68{word-spacing:-11.827678pt;}
.ws8{word-spacing:-11.763917pt;}
.wse{word-spacing:-10.679979pt;}
.wsc{word-spacing:-10.672843pt;}
.ws19{word-spacing:-10.616218pt;}
.ws57{word-spacing:-10.440116pt;}
.ws7{word-spacing:-10.424934pt;}
.ws6a{word-spacing:-10.381934pt;}
.ws53{word-spacing:-10.233651pt;}
.ws48{word-spacing:-10.042368pt;}
.ws38{word-spacing:-9.851085pt;}
.ws47{word-spacing:-9.659802pt;}
.ws45{word-spacing:-9.625570pt;}
.ws21{word-spacing:-9.557784pt;}
.ws22{word-spacing:-9.532279pt;}
.ws4{word-spacing:-9.213474pt;}
.wsb{word-spacing:-8.894669pt;}
.ws11{word-spacing:-8.868042pt;}
.ws35{word-spacing:-8.830908pt;}
.ws4d{word-spacing:-8.703386pt;}
.ws4e{word-spacing:-8.694660pt;}
.ws56{word-spacing:-8.639625pt;}
.ws52{word-spacing:-8.575863pt;}
.ws33{word-spacing:-8.336704pt;}
.ws24{word-spacing:-8.193297pt;}
.ws13{word-spacing:-7.938253pt;}
.ws50{word-spacing:-7.683209pt;}
.ws2d{word-spacing:-7.491925pt;}
.ws37{word-spacing:-6.089182pt;}
.ws17{word-spacing:-6.025421pt;}
.ws49{word-spacing:-5.961660pt;}
.ws5c{word-spacing:-5.061822pt;}
.ws20{word-spacing:-4.903226pt;}
.ws5a{word-spacing:-4.776735pt;}
.ws43{word-spacing:-4.686438pt;}
.ws2e{word-spacing:-4.367633pt;}
.ws4c{word-spacing:-4.303872pt;}
.ws3a{word-spacing:-3.923747pt;}
.ws3c{word-spacing:-3.921306pt;}
.ws9{word-spacing:-3.411217pt;}
.ws1a{word-spacing:-3.156173pt;}
.ws2c{word-spacing:-2.263518pt;}
.ws2b{word-spacing:-2.008474pt;}
.ws44{word-spacing:-0.924535pt;}
.ws10{word-spacing:-0.058182pt;}
.ws12{word-spacing:0.000000pt;}
.ws31{word-spacing:0.005313pt;}
.ws1f{word-spacing:0.006376pt;}
.ws1d{word-spacing:0.070137pt;}
.ws5d{word-spacing:8.203643pt;}
.ws64{word-spacing:8.320007pt;}
.ws5e{word-spacing:8.378189pt;}
.ws62{word-spacing:8.436371pt;}
.ws3f{word-spacing:8.494553pt;}
.ws5f{word-spacing:8.669098pt;}
.ws34{word-spacing:17.635396pt;}
.ws5b{word-spacing:17.688530pt;}
.ws29{word-spacing:18.113722pt;}
.ws15{word-spacing:18.942616pt;}
.ws26{word-spacing:19.319603pt;}
.ws69{word-spacing:19.383364pt;}
.wsf{word-spacing:20.472882pt;}
.wsd{word-spacing:20.536643pt;}
.ws3d{word-spacing:20.727926pt;}
.ws23{word-spacing:20.791687pt;}
.ws27{word-spacing:20.849869pt;}
.ws54{word-spacing:20.919209pt;}
.ws46{word-spacing:21.493059pt;}
.ws36{word-spacing:22.385714pt;}
.ws51{word-spacing:22.576997pt;}
.ws66{word-spacing:23.214607pt;}
.ws4f{word-spacing:23.533413pt;}
.ws30{word-spacing:23.846639pt;}
.ws1{word-spacing:24.178129pt;}
.ws2{word-spacing:24.254642pt;}
.ws3b{word-spacing:27.231555pt;}
.ws1c{word-spacing:27.927269pt;}
.ws65{word-spacing:28.003782pt;}
.ws2a{word-spacing:29.144387pt;}
.ws2f{word-spacing:30.796595pt;}
.ws1e{word-spacing:31.248502pt;}
.wsa{word-spacing:32.961753pt;}
.ws0{word-spacing:33.831400pt;}
.ws60{word-spacing:34.036392pt;}
.ws61{word-spacing:42.007308pt;}
.ws59{word-spacing:43.403673pt;}
.ws40{word-spacing:44.567310pt;}
.ws41{word-spacing:45.323674pt;}
.ws58{word-spacing:45.556402pt;}
.ws42{word-spacing:45.672765pt;}
.ws3e{word-spacing:46.080038pt;}
.ws63{word-spacing:57.917259pt;}
.ws3{word-spacing:98.977073pt;}
._8{margin-left:-8.263392pt;}
._23{margin-left:-7.039202pt;}
._1{margin-left:-6.044532pt;}
._4{margin-left:-3.990399pt;}
._0{margin-left:-2.755000pt;}
._3{margin-left:-1.159918pt;}
._1c{width:0.907185pt;}
._2{width:1.989340pt;}
._9{width:2.975497pt;}
._17{width:4.130913pt;}
._16{width:5.236368pt;}
._19{width:6.283642pt;}
._1b{width:8.785462pt;}
._1e{width:9.688773pt;}
._1f{width:14.429103pt;}
._13{width:19.460399pt;}
._11{width:22.609663pt;}
._5{width:23.514559pt;}
._a{width:24.614119pt;}
._c{width:26.588365pt;}
._6{width:27.863586pt;}
._10{width:29.431065pt;}
._15{width:30.770547pt;}
._14{width:31.683121pt;}
._12{width:33.511374pt;}
._1d{width:35.484138pt;}
._f{width:36.383868pt;}
._b{width:40.807083pt;}
._22{width:42.231814pt;}
._20{width:43.694582pt;}
._21{width:44.733634pt;}
._18{width:45.789129pt;}
._1a{width:46.720039pt;}
._d{width:49.478588pt;}
._e{width:84.164373pt;}
._7{width:99.068889pt;}
.fs8{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:119.817333pt;}
.y55{bottom:167.840000pt;}
.y33{bottom:183.922667pt;}
.y15{bottom:187.629333pt;}
.y54{bottom:188.600000pt;}
.y14{bottom:203.636000pt;}
.y32{bottom:204.684000pt;}
.y53{bottom:214.704000pt;}
.y31{bottom:215.804000pt;}
.y13{bottom:219.694667pt;}
.y52{bottom:232.769333pt;}
.y12{bottom:235.753333pt;}
.y30{bottom:236.564000pt;}
.y51{bottom:255.245333pt;}
.y11{bottom:259.668000pt;}
.y2f{bottom:260.346667pt;}
.y10{bottom:278.929333pt;}
.y2e{bottom:279.608000pt;}
.y50{bottom:286.461333pt;}
.yf{bottom:298.190667pt;}
.y2d{bottom:298.869333pt;}
.y4f{bottom:305.722667pt;}
.ye{bottom:317.452000pt;}
.y2c{bottom:318.130667pt;}
.y4e{bottom:324.984000pt;}
.y2b{bottom:337.392000pt;}
.y4d{bottom:344.245333pt;}
.yd{bottom:352.494667pt;}
.y2a{bottom:356.652000pt;}
.y4c{bottom:363.506667pt;}
.y29{bottom:375.913333pt;}
.y4b{bottom:382.766667pt;}
.y28{bottom:395.174667pt;}
.y4a{bottom:402.028000pt;}
.yc{bottom:405.733333pt;}
.y49{bottom:421.289333pt;}
.y27{bottom:427.720000pt;}
.yb{bottom:438.277333pt;}
.y48{bottom:440.550667pt;}
.ya{bottom:457.538667pt;}
.y47{bottom:459.812000pt;}
.y26{bottom:460.264000pt;}
.y46{bottom:479.073333pt;}
.y9{bottom:490.084000pt;}
.y25{bottom:492.809333pt;}
.y45{bottom:498.333333pt;}
.y44{bottom:517.594667pt;}
.y8{bottom:522.628000pt;}
.y24{bottom:525.353333pt;}
.y43{bottom:536.856000pt;}
.y7{bottom:541.889333pt;}
.y23{bottom:544.614667pt;}
.y42{bottom:556.117333pt;}
.y6{bottom:561.150667pt;}
.y41{bottom:575.378667pt;}
.y22{bottom:579.816000pt;}
.y62{bottom:580.868000pt;}
.y40{bottom:594.640000pt;}
.y5{bottom:596.193333pt;}
.y21{bottom:599.077333pt;}
.y61{bottom:600.128000pt;}
.y3f{bottom:613.900000pt;}
.y20{bottom:618.337333pt;}
.y60{bottom:619.389333pt;}
.y5f{bottom:638.650667pt;}
.y3e{bottom:646.552000pt;}
.y1f{bottom:663.832000pt;}
.y3d{bottom:664.617333pt;}
.y5e{bottom:668.204000pt;}
.y3c{bottom:682.682667pt;}
.y4{bottom:690.106667pt;}
.y3b{bottom:700.748000pt;}
.y1e{bottom:703.522667pt;}
.y3a{bottom:727.209333pt;}
.y3{bottom:727.385333pt;}
.y5d{bottom:727.804000pt;}
.y5c{bottom:745.869333pt;}
.y39{bottom:746.469333pt;}
.y1d{bottom:756.762667pt;}
.y5b{bottom:763.934667pt;}
.y38{bottom:765.730667pt;}
.y2{bottom:774.702667pt;}
.y1c{bottom:776.022667pt;}
.y5a{bottom:782.001333pt;}
.y37{bottom:784.992000pt;}
.y1b{bottom:795.284000pt;}
.y59{bottom:800.066667pt;}
.y36{bottom:804.253333pt;}
.y1{bottom:807.910667pt;}
.y1a{bottom:814.545333pt;}
.y58{bottom:818.132000pt;}
.y35{bottom:823.514667pt;}
.y19{bottom:833.806667pt;}
.y57{bottom:836.197333pt;}
.y34{bottom:842.776000pt;}
.y18{bottom:853.068000pt;}
.y56{bottom:854.262667pt;}
.y17{bottom:872.329333pt;}
.he{height:21.583121pt;}
.h7{height:26.221488pt;}
.hc{height:39.903534pt;}
.hd{height:40.436397pt;}
.h9{height:45.589163pt;}
.h6{height:47.884561pt;}
.hb{height:51.488302pt;}
.ha{height:51.493636pt;}
.h4{height:53.712173pt;}
.h8{height:57.461313pt;}
.h5{height:64.362642pt;}
.h3{height:67.668867pt;}
.h1{height:77.691000pt;}
.h2{height:93.701506pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:124.782667pt;}
.xc{left:129.653333pt;}
.x7{left:147.805333pt;}
.x2{left:154.756000pt;}
.xa{left:165.752000pt;}
.x8{left:171.220000pt;}
.x9{left:186.825333pt;}
.x3{left:198.486667pt;}
.x1{left:228.444000pt;}
.xd{left:291.757333pt;}
.x4{left:350.958667pt;}
.x6{left:353.477333pt;}
.xb{left:402.933333pt;}
.x5{left:456.894667pt;}
}




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