
    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_f272675bad5cdbbdb6ab3c6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_e1f73488b1a7a2565836343b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_310fdd5a7bf4120c204f6d21.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e5eaaf52cd4cee7c5e401b60.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_3e0fdc93b6ea4424410f0bf0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_3d929cb5384ead7593608b16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_45453489c11165abaea20df1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_e4d518921e8ebedf94709d7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_c9d2f0b4dcc8006f84744048.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8744d3f5afb56ae965080352.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_829e0538081c9f3a92d90124.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_a26596b409972dad7caf06aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922000;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_11de1c2efa76eec134633ecc.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_274e5e781f287a3de22fae45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.305000;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);}
.v2{vertical-align:-16.878000px;}
.v4{vertical-align:-11.580000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.114000px;}
.v1{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.003810px;}
.ls5{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.988532px;}
.ls4{letter-spacing:2.990525px;}
.ls1{letter-spacing:21.260525px;}
.ls3{letter-spacing:25.814525px;}
.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;}
}
.ws58{word-spacing:-16.605662px;}
.ws44{word-spacing:-2.379069px;}
.ws4a{word-spacing:-2.199742px;}
.ws4e{word-spacing:-1.542210px;}
.ws5b{word-spacing:-1.362884px;}
.ws59{word-spacing:-0.406474px;}
.ws5e{word-spacing:-0.059776px;}
.ws47{word-spacing:-0.047821px;}
.ws1f{word-spacing:0.000000px;}
.ws3a{word-spacing:0.310833px;}
.ws52{word-spacing:1.207467px;}
.ws31{word-spacing:1.267243px;}
.ws60{word-spacing:1.386794px;}
.ws23{word-spacing:1.566121px;}
.wsb{word-spacing:1.625896px;}
.ws45{word-spacing:1.685672px;}
.ws13{word-spacing:1.745448px;}
.ws63{word-spacing:1.864999px;}
.ws2d{word-spacing:1.984550px;}
.ws51{word-spacing:2.104101px;}
.ws3f{word-spacing:2.223652px;}
.ws30{word-spacing:2.761633px;}
.ws10{word-spacing:2.881184px;}
.wsd{word-spacing:3.060511px;}
.ws4c{word-spacing:3.120286px;}
.ws8{word-spacing:3.239838px;}
.wsc{word-spacing:3.299613px;}
.ws5d{word-spacing:3.319134px;}
.ws6a{word-spacing:3.321477px;}
.ws18{word-spacing:3.359389px;}
.ws17{word-spacing:3.419164px;}
.ws16{word-spacing:3.658267px;}
.ws4d{word-spacing:3.718042px;}
.ws1a{word-spacing:3.801728px;}
.ws32{word-spacing:3.861504px;}
.ws3{word-spacing:3.873485px;}
.ws2{word-spacing:3.945216px;}
.ws5a{word-spacing:3.957145px;}
.ws46{word-spacing:4.256023px;}
.ws2b{word-spacing:4.267978px;}
.ws4f{word-spacing:4.315798px;}
.wsa{word-spacing:4.566856px;}
.ws26{word-spacing:4.674452px;}
.ws15{word-spacing:4.734228px;}
.ws3e{word-spacing:4.794003px;}
.ws50{word-spacing:4.913554px;}
.ws67{word-spacing:5.033106px;}
.ws40{word-spacing:5.045061px;}
.ws14{word-spacing:5.212432px;}
.ws5c{word-spacing:5.451535px;}
.ws2e{word-spacing:5.511310px;}
.ws2c{word-spacing:5.571086px;}
.ws2f{word-spacing:5.750413px;}
.ws43{word-spacing:5.869964px;}
.ws9{word-spacing:6.061246px;}
.ws19{word-spacing:6.109066px;}
.ws1b{word-spacing:6.121021px;}
.ws4b{word-spacing:6.168842px;}
.ws25{word-spacing:6.180797px;}
.ws48{word-spacing:6.228618px;}
.wsf{word-spacing:6.467720px;}
.ws11{word-spacing:6.587271px;}
.ws22{word-spacing:6.766598px;}
.ws53{word-spacing:6.945925px;}
.ws33{word-spacing:7.125252px;}
.ws3b{word-spacing:7.185027px;}
.wse{word-spacing:7.244803px;}
.ws29{word-spacing:7.316533px;}
.ws69{word-spacing:7.424130px;}
.ws24{word-spacing:7.734963px;}
.ws73{word-spacing:7.782783px;}
.ws74{word-spacing:7.842559px;}
.ws70{word-spacing:7.962110px;}
.ws38{word-spacing:8.021886px;}
.ws20{word-spacing:8.440315px;}
.ws49{word-spacing:8.751148px;}
.ws21{word-spacing:8.978295px;}
.ws39{word-spacing:9.221947px;}
.ws1d{word-spacing:9.229353px;}
.ws36{word-spacing:9.289128px;}
.ws34{word-spacing:9.647782px;}
.ws71{word-spacing:9.815154px;}
.ws41{word-spacing:10.114032px;}
.ws37{word-spacing:10.484640px;}
.ws35{word-spacing:10.843294px;}
.ws42{word-spacing:10.891114px;}
.ws5f{word-spacing:11.010666px;}
.ws62{word-spacing:11.189992px;}
.ws6e{word-spacing:11.548646px;}
.ws12{word-spacing:11.967075px;}
.ws3c{word-spacing:12.325729px;}
.ws3d{word-spacing:12.385504px;}
.ws2a{word-spacing:12.457235px;}
.ws68{word-spacing:12.564831px;}
.ws72{word-spacing:12.744158px;}
.ws28{word-spacing:13.413645px;}
.ws1e{word-spacing:13.891849px;}
.ws66{word-spacing:14.238548px;}
.ws27{word-spacing:14.609157px;}
.ws1c{word-spacing:14.848259px;}
.ws64{word-spacing:14.896080px;}
.ws65{word-spacing:15.553611px;}
.ws61{word-spacing:16.211143px;}
.ws6f{word-spacing:17.466430px;}
.ws6{word-spacing:18.399053px;}
.ws4{word-spacing:24.541928px;}
.ws5{word-spacing:28.190362px;}
.ws6b{word-spacing:30.856165px;}
.ws0{word-spacing:31.091012px;}
.ws6c{word-spacing:32.171228px;}
.ws56{word-spacing:35.100232px;}
.ws57{word-spacing:35.160008px;}
.ws1{word-spacing:36.049048px;}
.ws54{word-spacing:40.683296px;}
.ws55{word-spacing:40.698357px;}
.ws6d{word-spacing:43.229714px;}
.ws7{word-spacing:96.750773px;}
._1a{margin-left:-29.880463px;}
._20{margin-left:-27.999513px;}
._22{margin-left:-22.474307px;}
._5{margin-left:-8.091257px;}
._2{margin-left:-5.237044px;}
._7{margin-left:-3.834238px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.299130px;}
._6{width:1.673717px;}
._0{width:2.685602px;}
._d{width:4.187669px;}
._1b{width:6.715254px;}
._3{width:11.101213px;}
._1c{width:16.243825px;}
._19{width:17.254916px;}
._18{width:19.542322px;}
._b{width:20.781676px;}
._c{width:22.455393px;}
._8{width:24.791214px;}
._10{width:26.126237px;}
._9{width:27.138524px;}
._17{width:29.708473px;}
._a{width:30.743969px;}
._e{width:32.278824px;}
._14{width:34.450360px;}
._11{width:35.868737px;}
._f{width:37.364050px;}
._15{width:41.496233px;}
._21{width:43.224196px;}
._13{width:46.385866px;}
._12{width:49.976701px;}
._16{width:53.558938px;}
._25{width:54.607332px;}
._1d{width:59.835376px;}
._1e{width:67.386412px;}
._24{width:69.817901px;}
._23{width:81.892572px;}
._1f{width:90.261156px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:115.875000px;}
.y57{bottom:164.926500px;}
.y25{bottom:171.138000px;}
.y56{bottom:185.685000px;}
.y24{bottom:189.070500px;}
.y7c{bottom:195.048000px;}
.y55{bottom:203.617500px;}
.y23{bottom:207.003000px;}
.y7b{bottom:213.463500px;}
.y22{bottom:224.937000px;}
.y54{bottom:226.839000px;}
.y7a{bottom:227.721000px;}
.y79{bottom:241.977000px;}
.y53{bottom:244.773000px;}
.y21{bottom:257.812500px;}
.y52{bottom:262.705500px;}
.y78{bottom:264.525000px;}
.y51{bottom:280.638000px;}
.y77{bottom:282.459000px;}
.y20{bottom:290.544000px;}
.y50{bottom:298.570500px;}
.y76{bottom:312.346500px;}
.y4f{bottom:327.082500px;}
.y75{bottom:330.279000px;}
.y1f{bottom:339.963000px;}
.y4e{bottom:345.016500px;}
.y74{bottom:348.211500px;}
.y1e{bottom:357.895500px;}
.y4d{bottom:362.949000px;}
.y1d{bottom:375.829500px;}
.y73{bottom:378.099000px;}
.y4c{bottom:380.881500px;}
.y1c{bottom:393.762000px;}
.y72{bottom:396.033000px;}
.y4b{bottom:398.814000px;}
.y1b{bottom:411.694500px;}
.y4a{bottom:416.746500px;}
.y71{bottom:425.920500px;}
.y1a{bottom:429.627000px;}
.y49{bottom:439.969500px;}
.y70{bottom:443.853000px;}
.y19{bottom:447.559500px;}
.y48{bottom:457.902000px;}
.y6f{bottom:461.785500px;}
.y18{bottom:465.492000px;}
.y47{bottom:475.834500px;}
.y17{bottom:483.426000px;}
.y6e{bottom:491.674500px;}
.y46{bottom:493.768500px;}
.y16{bottom:501.358500px;}
.y95{bottom:502.072500px;}
.y6d{bottom:509.607000px;}
.y45{bottom:516.990000px;}
.y15{bottom:519.291000px;}
.y94{bottom:520.005000px;}
.y44{bottom:534.922500px;}
.y14{bottom:537.223500px;}
.y93{bottom:537.937500px;}
.y6c{bottom:539.494500px;}
.y43{bottom:552.856500px;}
.y13{bottom:555.156000px;}
.y6b{bottom:557.427000px;}
.y92{bottom:567.825000px;}
.y42{bottom:570.789000px;}
.y12{bottom:573.088500px;}
.y6a{bottom:575.359500px;}
.y91{bottom:585.759000px;}
.y41{bottom:588.721500px;}
.y90{bottom:603.691500px;}
.y69{bottom:605.248500px;}
.y11{bottom:605.820000px;}
.y40{bottom:606.654000px;}
.y68{bottom:623.181000px;}
.y8f{bottom:633.579000px;}
.y3f{bottom:635.166000px;}
.y67{bottom:641.113500px;}
.y8e{bottom:651.511500px;}
.y3e{bottom:653.100000px;}
.y10{bottom:655.239000px;}
.y66{bottom:671.001000px;}
.y3d{bottom:671.032500px;}
.yf{bottom:673.171500px;}
.y8d{bottom:681.399000px;}
.y65{bottom:688.933500px;}
.y3c{bottom:688.965000px;}
.ye{bottom:691.105500px;}
.y8c{bottom:699.333000px;}
.y64{bottom:706.867500px;}
.yd{bottom:709.038000px;}
.y3b{bottom:712.188000px;}
.y8b{bottom:717.265500px;}
.yc{bottom:726.970500px;}
.y3a{bottom:730.120500px;}
.y63{bottom:739.599000px;}
.yb{bottom:744.903000px;}
.y8a{bottom:747.153000px;}
.y39{bottom:748.053000px;}
.ya{bottom:762.835500px;}
.y89{bottom:765.085500px;}
.y38{bottom:765.985500px;}
.y88{bottom:783.018000px;}
.y37{bottom:783.918000px;}
.y62{bottom:789.016500px;}
.y9{bottom:795.567000px;}
.y87{bottom:800.952000px;}
.y36{bottom:812.431500px;}
.y86{bottom:818.884500px;}
.y61{bottom:827.860500px;}
.y35{bottom:830.364000px;}
.y34{bottom:848.296500px;}
.y85{bottom:848.772000px;}
.y8{bottom:859.930500px;}
.y33{bottom:866.229000px;}
.y60{bottom:866.704500px;}
.y32{bottom:884.161500px;}
.y5f{bottom:884.637000px;}
.y7{bottom:895.098000px;}
.y31{bottom:902.094000px;}
.y5e{bottom:902.571000px;}
.y6{bottom:916.020000px;}
.y84{bottom:920.503500px;}
.y5d{bottom:926.481000px;}
.y30{bottom:930.607500px;}
.y5{bottom:936.942000px;}
.y83{bottom:938.436000px;}
.y5c{bottom:944.413500px;}
.y2f{bottom:948.540000px;}
.y82{bottom:956.368500px;}
.y4{bottom:957.862500px;}
.y5b{bottom:974.301000px;}
.y3{bottom:978.784500px;}
.y2e{bottom:979.353000px;}
.y81{bottom:986.256000px;}
.y5a{bottom:992.233500px;}
.y2d{bottom:997.285500px;}
.y80{bottom:1004.190000px;}
.y59{bottom:1010.167500px;}
.y2c{bottom:1015.219500px;}
.y2{bottom:1022.122500px;}
.y58{bottom:1028.100000px;}
.y7f{bottom:1034.077500px;}
.y2b{bottom:1046.032500px;}
.y7e{bottom:1052.010000px;}
.y1{bottom:1054.998000px;}
.y2a{bottom:1063.965000px;}
.y7d{bottom:1069.942500px;}
.y29{bottom:1081.897500px;}
.y28{bottom:1099.830000px;}
.y27{bottom:1117.764000px;}
.h8{height:24.209280px;}
.hc{height:33.187496px;}
.h4{height:37.336090px;}
.h3{height:40.348800px;}
.ha{height:41.484266px;}
.h6{height:44.831700px;}
.h7{height:49.892047px;}
.h9{height:49.898047px;}
.h2{height:53.798400px;}
.hb{height:59.945700px;}
.h5{height:60.254040px;}
.h1{height:72.717850px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xe{left:124.638000px;}
.xa{left:130.416000px;}
.xd{left:145.360500px;}
.x6{left:149.419500px;}
.xb{left:178.236000px;}
.x2{left:190.426500px;}
.x3{left:191.772000px;}
.x5{left:249.955500px;}
.x4{left:257.350500px;}
.x1{left:259.248000px;}
.x7{left:307.189500px;}
.x8{left:368.893500px;}
.xc{left:455.263500px;}
.xf{left:686.431500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v4{vertical-align:-10.293333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.434667pt;}
.v1{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.003387pt;}
.ls5{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.656473pt;}
.ls4{letter-spacing:2.658245pt;}
.ls1{letter-spacing:18.898245pt;}
.ls3{letter-spacing:22.946245pt;}
.ws58{word-spacing:-14.760588pt;}
.ws44{word-spacing:-2.114728pt;}
.ws4a{word-spacing:-1.955326pt;}
.ws4e{word-spacing:-1.370854pt;}
.ws5b{word-spacing:-1.211452pt;}
.ws59{word-spacing:-0.361310pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws47{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.276296pt;}
.ws52{word-spacing:1.073304pt;}
.ws31{word-spacing:1.126438pt;}
.ws60{word-spacing:1.232706pt;}
.ws23{word-spacing:1.392107pt;}
.wsb{word-spacing:1.445241pt;}
.ws45{word-spacing:1.498375pt;}
.ws13{word-spacing:1.551509pt;}
.ws63{word-spacing:1.657777pt;}
.ws2d{word-spacing:1.764044pt;}
.ws51{word-spacing:1.870312pt;}
.ws3f{word-spacing:1.976580pt;}
.ws30{word-spacing:2.454785pt;}
.ws10{word-spacing:2.561052pt;}
.wsd{word-spacing:2.720454pt;}
.ws4c{word-spacing:2.773588pt;}
.ws8{word-spacing:2.879856pt;}
.wsc{word-spacing:2.932989pt;}
.ws5d{word-spacing:2.950341pt;}
.ws6a{word-spacing:2.952424pt;}
.ws18{word-spacing:2.986123pt;}
.ws17{word-spacing:3.039257pt;}
.ws16{word-spacing:3.251793pt;}
.ws4d{word-spacing:3.304927pt;}
.ws1a{word-spacing:3.379314pt;}
.ws32{word-spacing:3.432448pt;}
.ws3{word-spacing:3.443098pt;}
.ws2{word-spacing:3.506859pt;}
.ws5a{word-spacing:3.517462pt;}
.ws46{word-spacing:3.783131pt;}
.ws2b{word-spacing:3.793758pt;}
.ws4f{word-spacing:3.836265pt;}
.wsa{word-spacing:4.059427pt;}
.ws26{word-spacing:4.155068pt;}
.ws15{word-spacing:4.208202pt;}
.ws3e{word-spacing:4.261336pt;}
.ws50{word-spacing:4.367604pt;}
.ws67{word-spacing:4.473872pt;}
.ws40{word-spacing:4.484498pt;}
.ws14{word-spacing:4.633273pt;}
.ws5c{word-spacing:4.845809pt;}
.ws2e{word-spacing:4.898943pt;}
.ws2c{word-spacing:4.952076pt;}
.ws2f{word-spacing:5.111478pt;}
.ws43{word-spacing:5.217746pt;}
.ws9{word-spacing:5.387774pt;}
.ws19{word-spacing:5.430281pt;}
.ws1b{word-spacing:5.440908pt;}
.ws4b{word-spacing:5.483415pt;}
.ws25{word-spacing:5.494042pt;}
.ws48{word-spacing:5.536549pt;}
.wsf{word-spacing:5.749084pt;}
.ws11{word-spacing:5.855352pt;}
.ws22{word-spacing:6.014754pt;}
.ws53{word-spacing:6.174155pt;}
.ws33{word-spacing:6.333557pt;}
.ws3b{word-spacing:6.386691pt;}
.wse{word-spacing:6.439825pt;}
.ws29{word-spacing:6.503585pt;}
.ws69{word-spacing:6.599226pt;}
.ws24{word-spacing:6.875522pt;}
.ws73{word-spacing:6.918029pt;}
.ws74{word-spacing:6.971163pt;}
.ws70{word-spacing:7.077431pt;}
.ws38{word-spacing:7.130565pt;}
.ws20{word-spacing:7.502502pt;}
.ws49{word-spacing:7.778798pt;}
.ws21{word-spacing:7.980707pt;}
.ws39{word-spacing:8.197286pt;}
.ws1d{word-spacing:8.203869pt;}
.ws36{word-spacing:8.257003pt;}
.ws34{word-spacing:8.575806pt;}
.ws71{word-spacing:8.724581pt;}
.ws41{word-spacing:8.990250pt;}
.ws37{word-spacing:9.319680pt;}
.ws35{word-spacing:9.638483pt;}
.ws42{word-spacing:9.680991pt;}
.ws5f{word-spacing:9.787258pt;}
.ws62{word-spacing:9.946660pt;}
.ws6e{word-spacing:10.265463pt;}
.ws12{word-spacing:10.637400pt;}
.ws3c{word-spacing:10.956203pt;}
.ws3d{word-spacing:11.009337pt;}
.ws2a{word-spacing:11.073098pt;}
.ws68{word-spacing:11.168739pt;}
.ws72{word-spacing:11.328140pt;}
.ws28{word-spacing:11.923240pt;}
.ws1e{word-spacing:12.348311pt;}
.ws66{word-spacing:12.656487pt;}
.ws27{word-spacing:12.985917pt;}
.ws1c{word-spacing:13.198452pt;}
.ws64{word-spacing:13.240960pt;}
.ws65{word-spacing:13.825432pt;}
.ws61{word-spacing:14.409905pt;}
.ws6f{word-spacing:15.525716pt;}
.ws6{word-spacing:16.354714pt;}
.ws4{word-spacing:21.815047pt;}
.ws5{word-spacing:25.058099pt;}
.ws6b{word-spacing:27.427702pt;}
.ws0{word-spacing:27.636455pt;}
.ws6c{word-spacing:28.596647pt;}
.ws56{word-spacing:31.200207pt;}
.ws57{word-spacing:31.253340pt;}
.ws1{word-spacing:32.043598pt;}
.ws54{word-spacing:36.162930pt;}
.ws55{word-spacing:36.176317pt;}
.ws6d{word-spacing:38.426412pt;}
.ws7{word-spacing:86.000687pt;}
._1a{margin-left:-26.560411pt;}
._20{margin-left:-24.888456pt;}
._22{margin-left:-19.977162pt;}
._5{margin-left:-7.192228pt;}
._2{margin-left:-4.655150pt;}
._7{margin-left:-3.408211pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.154782pt;}
._6{width:1.487748pt;}
._0{width:2.387202pt;}
._d{width:3.722373pt;}
._1b{width:5.969114pt;}
._3{width:9.867745pt;}
._1c{width:14.438956pt;}
._19{width:15.337703pt;}
._18{width:17.370953pt;}
._b{width:18.472601pt;}
._c{width:19.960349pt;}
._8{width:22.036635pt;}
._10{width:23.223322pt;}
._9{width:24.123132pt;}
._17{width:26.407532pt;}
._a{width:27.327972pt;}
._e{width:28.692288pt;}
._14{width:30.622542pt;}
._11{width:31.883322pt;}
._f{width:33.212489pt;}
._15{width:36.885540pt;}
._21{width:38.421507pt;}
._13{width:41.231881pt;}
._12{width:44.423734pt;}
._16{width:47.607945pt;}
._25{width:48.539851pt;}
._1d{width:53.187001pt;}
._1e{width:59.899033pt;}
._24{width:62.060356pt;}
._23{width:72.793397pt;}
._1f{width:80.232139pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:103.000000pt;}
.y57{bottom:146.601333pt;}
.y25{bottom:152.122667pt;}
.y56{bottom:165.053333pt;}
.y24{bottom:168.062667pt;}
.y7c{bottom:173.376000pt;}
.y55{bottom:180.993333pt;}
.y23{bottom:184.002667pt;}
.y7b{bottom:189.745333pt;}
.y22{bottom:199.944000pt;}
.y54{bottom:201.634667pt;}
.y7a{bottom:202.418667pt;}
.y79{bottom:215.090667pt;}
.y53{bottom:217.576000pt;}
.y21{bottom:229.166667pt;}
.y52{bottom:233.516000pt;}
.y78{bottom:235.133333pt;}
.y51{bottom:249.456000pt;}
.y77{bottom:251.074667pt;}
.y20{bottom:258.261333pt;}
.y50{bottom:265.396000pt;}
.y76{bottom:277.641333pt;}
.y4f{bottom:290.740000pt;}
.y75{bottom:293.581333pt;}
.y1f{bottom:302.189333pt;}
.y4e{bottom:306.681333pt;}
.y74{bottom:309.521333pt;}
.y1e{bottom:318.129333pt;}
.y4d{bottom:322.621333pt;}
.y1d{bottom:334.070667pt;}
.y73{bottom:336.088000pt;}
.y4c{bottom:338.561333pt;}
.y1c{bottom:350.010667pt;}
.y72{bottom:352.029333pt;}
.y4b{bottom:354.501333pt;}
.y1b{bottom:365.950667pt;}
.y4a{bottom:370.441333pt;}
.y71{bottom:378.596000pt;}
.y1a{bottom:381.890667pt;}
.y49{bottom:391.084000pt;}
.y70{bottom:394.536000pt;}
.y19{bottom:397.830667pt;}
.y48{bottom:407.024000pt;}
.y6f{bottom:410.476000pt;}
.y18{bottom:413.770667pt;}
.y47{bottom:422.964000pt;}
.y17{bottom:429.712000pt;}
.y6e{bottom:437.044000pt;}
.y46{bottom:438.905333pt;}
.y16{bottom:445.652000pt;}
.y95{bottom:446.286667pt;}
.y6d{bottom:452.984000pt;}
.y45{bottom:459.546667pt;}
.y15{bottom:461.592000pt;}
.y94{bottom:462.226667pt;}
.y44{bottom:475.486667pt;}
.y14{bottom:477.532000pt;}
.y93{bottom:478.166667pt;}
.y6c{bottom:479.550667pt;}
.y43{bottom:491.428000pt;}
.y13{bottom:493.472000pt;}
.y6b{bottom:495.490667pt;}
.y92{bottom:504.733333pt;}
.y42{bottom:507.368000pt;}
.y12{bottom:509.412000pt;}
.y6a{bottom:511.430667pt;}
.y91{bottom:520.674667pt;}
.y41{bottom:523.308000pt;}
.y90{bottom:536.614667pt;}
.y69{bottom:537.998667pt;}
.y11{bottom:538.506667pt;}
.y40{bottom:539.248000pt;}
.y68{bottom:553.938667pt;}
.y8f{bottom:563.181333pt;}
.y3f{bottom:564.592000pt;}
.y67{bottom:569.878667pt;}
.y8e{bottom:579.121333pt;}
.y3e{bottom:580.533333pt;}
.y10{bottom:582.434667pt;}
.y66{bottom:596.445333pt;}
.y3d{bottom:596.473333pt;}
.yf{bottom:598.374667pt;}
.y8d{bottom:605.688000pt;}
.y65{bottom:612.385333pt;}
.y3c{bottom:612.413333pt;}
.ye{bottom:614.316000pt;}
.y8c{bottom:621.629333pt;}
.y64{bottom:628.326667pt;}
.yd{bottom:630.256000pt;}
.y3b{bottom:633.056000pt;}
.y8b{bottom:637.569333pt;}
.yc{bottom:646.196000pt;}
.y3a{bottom:648.996000pt;}
.y63{bottom:657.421333pt;}
.yb{bottom:662.136000pt;}
.y8a{bottom:664.136000pt;}
.y39{bottom:664.936000pt;}
.ya{bottom:678.076000pt;}
.y89{bottom:680.076000pt;}
.y38{bottom:680.876000pt;}
.y88{bottom:696.016000pt;}
.y37{bottom:696.816000pt;}
.y62{bottom:701.348000pt;}
.y9{bottom:707.170667pt;}
.y87{bottom:711.957333pt;}
.y36{bottom:722.161333pt;}
.y86{bottom:727.897333pt;}
.y61{bottom:735.876000pt;}
.y35{bottom:738.101333pt;}
.y34{bottom:754.041333pt;}
.y85{bottom:754.464000pt;}
.y8{bottom:764.382667pt;}
.y33{bottom:769.981333pt;}
.y60{bottom:770.404000pt;}
.y32{bottom:785.921333pt;}
.y5f{bottom:786.344000pt;}
.y7{bottom:795.642667pt;}
.y31{bottom:801.861333pt;}
.y5e{bottom:802.285333pt;}
.y6{bottom:814.240000pt;}
.y84{bottom:818.225333pt;}
.y5d{bottom:823.538667pt;}
.y30{bottom:827.206667pt;}
.y5{bottom:832.837333pt;}
.y83{bottom:834.165333pt;}
.y5c{bottom:839.478667pt;}
.y2f{bottom:843.146667pt;}
.y82{bottom:850.105333pt;}
.y4{bottom:851.433333pt;}
.y5b{bottom:866.045333pt;}
.y3{bottom:870.030667pt;}
.y2e{bottom:870.536000pt;}
.y81{bottom:876.672000pt;}
.y5a{bottom:881.985333pt;}
.y2d{bottom:886.476000pt;}
.y80{bottom:892.613333pt;}
.y59{bottom:897.926667pt;}
.y2c{bottom:902.417333pt;}
.y2{bottom:908.553333pt;}
.y58{bottom:913.866667pt;}
.y7f{bottom:919.180000pt;}
.y2b{bottom:929.806667pt;}
.y7e{bottom:935.120000pt;}
.y1{bottom:937.776000pt;}
.y2a{bottom:945.746667pt;}
.y7d{bottom:951.060000pt;}
.y29{bottom:961.686667pt;}
.y28{bottom:977.626667pt;}
.y27{bottom:993.568000pt;}
.h8{height:21.519360pt;}
.hc{height:29.499997pt;}
.h4{height:33.187635pt;}
.h3{height:35.865600pt;}
.ha{height:36.874903pt;}
.h6{height:39.850400pt;}
.h7{height:44.348486pt;}
.h9{height:44.353820pt;}
.h2{height:47.820800pt;}
.hb{height:53.285067pt;}
.h5{height:53.559147pt;}
.h1{height:64.638089pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xe{left:110.789333pt;}
.xa{left:115.925333pt;}
.xd{left:129.209333pt;}
.x6{left:132.817333pt;}
.xb{left:158.432000pt;}
.x2{left:169.268000pt;}
.x3{left:170.464000pt;}
.x5{left:222.182667pt;}
.x4{left:228.756000pt;}
.x1{left:230.442667pt;}
.x7{left:273.057333pt;}
.x8{left:327.905333pt;}
.xc{left:404.678667pt;}
.xf{left:610.161333pt;}
}




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