
    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_31b52d1a904db2221e3f1dd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_2a1ba0eef0f99b46cde40829.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_fce49d4f49cc79d9d06c7a86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_2e925b52b3c5e93dcd56527d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_d7fc8757269a6f0d1edfadbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_99b6a13cba591b0097ae10e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.372000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.mc{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.992728px;}
.ls0{letter-spacing:11.956683px;}
.ls4{letter-spacing:14.943420px;}
.ls7{letter-spacing:21.819527px;}
.ls6{letter-spacing:21.939527px;}
.ls5{letter-spacing:22.539527px;}
.ls3{letter-spacing:23.913527px;}
.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;}
}
.ws2d{word-spacing:-11.955150px;}
.ws10{word-spacing:-2.929004px;}
.ws1{word-spacing:-2.917157px;}
.ws3a{word-spacing:-2.677954px;}
.ws2b{word-spacing:-2.211697px;}
.wsf{word-spacing:-2.092146px;}
.ws1c{word-spacing:-1.434614px;}
.ws30{word-spacing:-1.195512px;}
.ws16{word-spacing:-1.075961px;}
.ws17{word-spacing:-1.016185px;}
.ws3d{word-spacing:-0.860771px;}
.ws6{word-spacing:-0.806976px;}
.ws28{word-spacing:-0.597756px;}
.ws8{word-spacing:-0.376589px;}
.ws24{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.239102px;}
.ws2c{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.119551px;}
.ws31{word-spacing:-0.059776px;}
.ws3c{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws32{word-spacing:0.047821px;}
.ws21{word-spacing:0.059776px;}
.ws38{word-spacing:0.095641px;}
.ws11{word-spacing:0.119551px;}
.ws37{word-spacing:0.143462px;}
.ws7{word-spacing:0.161395px;}
.wsc{word-spacing:0.179327px;}
.ws34{word-spacing:0.191282px;}
.ws18{word-spacing:0.239102px;}
.ws29{word-spacing:0.298878px;}
.ws1d{word-spacing:0.358654px;}
.ws9{word-spacing:0.537984px;}
.wse{word-spacing:0.657532px;}
.wsd{word-spacing:0.836858px;}
.ws23{word-spacing:1.135736px;}
.ws1f{word-spacing:1.434614px;}
.ws13{word-spacing:1.912819px;}
.ws22{word-spacing:2.391024px;}
.ws12{word-spacing:2.510575px;}
.ws3{word-spacing:2.784131px;}
.ws5{word-spacing:2.797517px;}
.ws2f{word-spacing:2.869229px;}
.ws26{word-spacing:3.825638px;}
.ws2e{word-spacing:4.124516px;}
.ws20{word-spacing:5.559131px;}
.ws3b{word-spacing:9.229376px;}
.ws14{word-spacing:11.907329px;}
.ws33{word-spacing:12.002971px;}
.ws36{word-spacing:12.050791px;}
.ws35{word-spacing:12.098612px;}
.ws2a{word-spacing:12.672427px;}
.ws25{word-spacing:14.525471px;}
.ws1e{word-spacing:14.585246px;}
.wsa{word-spacing:14.884124px;}
.wsb{word-spacing:15.063451px;}
.ws1b{word-spacing:15.123227px;}
.ws39{word-spacing:15.492153px;}
.ws4{word-spacing:16.193318px;}
.ws27{word-spacing:18.709763px;}
.ws0{word-spacing:21.433223px;}
._4{margin-left:-4.088678px;}
._1{margin-left:-2.259533px;}
._2{margin-left:-1.237363px;}
._3{width:1.291162px;}
._b{width:2.964877px;}
._f{width:12.271729px;}
._9{width:14.166817px;}
._0{width:16.363650px;}
._6{width:17.963530px;}
._a{width:22.509464px;}
._7{width:26.899200px;}
._10{width:32.397018px;}
._d{width:35.100320px;}
._e{width:36.843525px;}
._5{width:59.775600px;}
._c{width:1544.940124px;}
._8{width:1751.694287px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.060800px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y62{bottom:152.562000px;}
.y78{bottom:156.838500px;}
.y18{bottom:168.481500px;}
.y47{bottom:169.288500px;}
.y61{bottom:170.496000px;}
.y46{bottom:184.233000px;}
.y17{bottom:184.920000px;}
.y60{bottom:188.428500px;}
.y45{bottom:199.176000px;}
.y16{bottom:201.358500px;}
.y5f{bottom:206.361000px;}
.y5e{bottom:227.566500px;}
.y5d{bottom:249.982500px;}
.y15{bottom:268.315500px;}
.y5c{bottom:281.494500px;}
.y5b{bottom:299.427000px;}
.y14{bottom:305.175000px;}
.y5a{bottom:317.359500px;}
.y59{bottom:335.292000px;}
.y44{bottom:356.239500px;}
.y58{bottom:357.708000px;}
.y43{bottom:374.173500px;}
.y57{bottom:389.218500px;}
.y42{bottom:392.106000px;}
.y56{bottom:407.152500px;}
.y41{bottom:410.038500px;}
.y55{bottom:425.085000px;}
.y40{bottom:427.971000px;}
.y54{bottom:443.017500px;}
.y3f{bottom:445.903500px;}
.y53{bottom:460.950000px;}
.y3e{bottom:468.319500px;}
.y52{bottom:483.366000px;}
.y51{bottom:514.876500px;}
.y3d{bottom:524.602500px;}
.y50{bottom:532.810500px;}
.y3c{bottom:542.536500px;}
.y4f{bottom:554.016000px;}
.y3b{bottom:560.469000px;}
.y4e{bottom:571.948500px;}
.y3a{bottom:578.401500px;}
.y4d{bottom:589.881000px;}
.y39{bottom:596.334000px;}
.y4c{bottom:607.813500px;}
.y38{bottom:614.266500px;}
.y4b{bottom:629.020500px;}
.y37{bottom:632.199000px;}
.y77{bottom:635.038500px;}
.y4a{bottom:646.953000px;}
.y76{bottom:649.983000px;}
.y36{bottom:650.133000px;}
.y75{bottom:664.927500px;}
.y35{bottom:668.065500px;}
.y49{bottom:669.369000px;}
.y74{bottom:679.870500px;}
.y34{bottom:685.998000px;}
.y73{bottom:694.815000px;}
.y32{bottom:703.930500px;}
.y33{bottom:709.354500px;}
.y72{bottom:709.758000px;}
.y48{bottom:710.551500px;}
.y31{bottom:721.863000px;}
.y71{bottom:724.702500px;}
.y70{bottom:739.647000px;}
.y30{bottom:739.795500px;}
.y13{bottom:745.489500px;}
.y2f{bottom:757.729500px;}
.y6f{bottom:759.073500px;}
.y12{bottom:763.423500px;}
.y2e{bottom:775.662000px;}
.y11{bottom:781.356000px;}
.y6e{bottom:790.456500px;}
.y2d{bottom:793.594500px;}
.y10{bottom:799.288500px;}
.y6c{bottom:808.389000px;}
.y2c{bottom:811.527000px;}
.y6d{bottom:813.813000px;}
.yf{bottom:817.221000px;}
.y6b{bottom:826.321500px;}
.y2b{bottom:829.459500px;}
.ye{bottom:835.153500px;}
.y2a{bottom:847.392000px;}
.y6a{bottom:848.737500px;}
.yd{bottom:853.086000px;}
.y29{bottom:865.326000px;}
.yc{bottom:871.020000px;}
.y69{bottom:880.120500px;}
.y28{bottom:883.258500px;}
.yb{bottom:888.952500px;}
.y68{bottom:898.053000px;}
.y27{bottom:901.191000px;}
.ya{bottom:911.368500px;}
.y67{bottom:915.985500px;}
.y26{bottom:919.123500px;}
.y66{bottom:933.918000px;}
.y25{bottom:937.056000px;}
.y9{bottom:950.578500px;}
.y24{bottom:954.988500px;}
.y65{bottom:956.334000px;}
.y23{bottom:972.922500px;}
.y8{bottom:977.656500px;}
.y64{bottom:987.717000px;}
.y21{bottom:990.855000px;}
.y7{bottom:994.093500px;}
.y22{bottom:996.279000px;}
.y63{bottom:1005.649500px;}
.y20{bottom:1008.787500px;}
.y6{bottom:1010.532000px;}
.y1f{bottom:1026.720000px;}
.y5{bottom:1026.970500px;}
.y4{bottom:1043.409000px;}
.y1e{bottom:1044.652500px;}
.y3{bottom:1059.847500px;}
.y1d{bottom:1062.585000px;}
.y1c{bottom:1080.519000px;}
.y2{bottom:1086.186000px;}
.y1b{bottom:1098.451500px;}
.y1a{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y19{bottom:1161.216000px;}
.hd{height:26.480591px;}
.hc{height:27.276749px;}
.hb{height:32.116243px;}
.h9{height:33.474420px;}
.ha{height:33.713523px;}
.h8{height:35.195962px;}
.h7{height:37.927872px;}
.h4{height:39.595622px;}
.h5{height:41.723369px;}
.h6{height:43.994842px;}
.h3{height:46.145493px;}
.h2{height:60.081886px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:80.697000px;}
.x3{left:95.641500px;}
.x17{left:100.746000px;}
.x13{left:103.905000px;}
.x14{left:117.310500px;}
.x2{left:243.147000px;}
.xe{left:246.154500px;}
.xf{left:253.104000px;}
.x12{left:260.590500px;}
.xa{left:356.262000px;}
.xb{left:366.181500px;}
.xc{left:429.925500px;}
.xd{left:436.875000px;}
.x10{left:455.236500px;}
.x11{left:462.186000px;}
.x4{left:507.321000px;}
.x5{left:516.879000px;}
.x8{left:632.161500px;}
.x9{left:639.111000px;}
.x6{left:676.534500px;}
.x7{left:682.354500px;}
.x15{left:759.199500px;}
.x16{left:765.019500px;}
@media print{
.v1{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.660203pt;}
.ls0{letter-spacing:10.628163pt;}
.ls4{letter-spacing:13.283040pt;}
.ls7{letter-spacing:19.395135pt;}
.ls6{letter-spacing:19.501802pt;}
.ls5{letter-spacing:20.035135pt;}
.ls3{letter-spacing:21.256468pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws10{word-spacing:-2.603559pt;}
.ws1{word-spacing:-2.593028pt;}
.ws3a{word-spacing:-2.380403pt;}
.ws2b{word-spacing:-1.965953pt;}
.wsf{word-spacing:-1.859685pt;}
.ws1c{word-spacing:-1.275213pt;}
.ws30{word-spacing:-1.062677pt;}
.ws16{word-spacing:-0.956410pt;}
.ws17{word-spacing:-0.903276pt;}
.ws3d{word-spacing:-0.765130pt;}
.ws6{word-spacing:-0.717312pt;}
.ws28{word-spacing:-0.531339pt;}
.ws8{word-spacing:-0.334746pt;}
.ws24{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.212535pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.106268pt;}
.ws31{word-spacing:-0.053134pt;}
.ws3c{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws32{word-spacing:0.042507pt;}
.ws21{word-spacing:0.053134pt;}
.ws38{word-spacing:0.085014pt;}
.ws11{word-spacing:0.106268pt;}
.ws37{word-spacing:0.127522pt;}
.ws7{word-spacing:0.143462pt;}
.wsc{word-spacing:0.159402pt;}
.ws34{word-spacing:0.170029pt;}
.ws18{word-spacing:0.212535pt;}
.ws29{word-spacing:0.265669pt;}
.ws1d{word-spacing:0.318803pt;}
.ws9{word-spacing:0.478208pt;}
.wse{word-spacing:0.584473pt;}
.wsd{word-spacing:0.743874pt;}
.ws23{word-spacing:1.009543pt;}
.ws1f{word-spacing:1.275213pt;}
.ws13{word-spacing:1.700284pt;}
.ws22{word-spacing:2.125355pt;}
.ws12{word-spacing:2.231622pt;}
.ws3{word-spacing:2.474783pt;}
.ws5{word-spacing:2.486682pt;}
.ws2f{word-spacing:2.550426pt;}
.ws26{word-spacing:3.400567pt;}
.ws2e{word-spacing:3.666237pt;}
.ws20{word-spacing:4.941450pt;}
.ws3b{word-spacing:8.203890pt;}
.ws14{word-spacing:10.584293pt;}
.ws33{word-spacing:10.669307pt;}
.ws36{word-spacing:10.711814pt;}
.ws35{word-spacing:10.754322pt;}
.ws2a{word-spacing:11.264380pt;}
.ws25{word-spacing:12.911530pt;}
.ws1e{word-spacing:12.964663pt;}
.wsa{word-spacing:13.230333pt;}
.wsb{word-spacing:13.389734pt;}
.ws1b{word-spacing:13.442868pt;}
.ws39{word-spacing:13.770803pt;}
.ws4{word-spacing:14.394061pt;}
.ws27{word-spacing:16.630900pt;}
.ws0{word-spacing:19.051754pt;}
._4{margin-left:-3.634381pt;}
._1{margin-left:-2.008474pt;}
._2{margin-left:-1.099878pt;}
._3{width:1.147699pt;}
._b{width:2.635446pt;}
._f{width:10.908204pt;}
._9{width:12.592726pt;}
._0{width:14.545467pt;}
._6{width:15.967582pt;}
._a{width:20.008412pt;}
._7{width:23.910400pt;}
._10{width:28.797349pt;}
._d{width:31.200285pt;}
._e{width:32.749800pt;}
._5{width:53.133867pt;}
._c{width:1373.280110pt;}
._8{width:1557.061589pt;}
.fs6{font-size:32.942933pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:135.610667pt;}
.y78{bottom:139.412000pt;}
.y18{bottom:149.761333pt;}
.y47{bottom:150.478667pt;}
.y61{bottom:151.552000pt;}
.y46{bottom:163.762667pt;}
.y17{bottom:164.373333pt;}
.y60{bottom:167.492000pt;}
.y45{bottom:177.045333pt;}
.y16{bottom:178.985333pt;}
.y5f{bottom:183.432000pt;}
.y5e{bottom:202.281333pt;}
.y5d{bottom:222.206667pt;}
.y15{bottom:238.502667pt;}
.y5c{bottom:250.217333pt;}
.y5b{bottom:266.157333pt;}
.y14{bottom:271.266667pt;}
.y5a{bottom:282.097333pt;}
.y59{bottom:298.037333pt;}
.y44{bottom:316.657333pt;}
.y58{bottom:317.962667pt;}
.y43{bottom:332.598667pt;}
.y57{bottom:345.972000pt;}
.y42{bottom:348.538667pt;}
.y56{bottom:361.913333pt;}
.y41{bottom:364.478667pt;}
.y55{bottom:377.853333pt;}
.y40{bottom:380.418667pt;}
.y54{bottom:393.793333pt;}
.y3f{bottom:396.358667pt;}
.y53{bottom:409.733333pt;}
.y3e{bottom:416.284000pt;}
.y52{bottom:429.658667pt;}
.y51{bottom:457.668000pt;}
.y3d{bottom:466.313333pt;}
.y50{bottom:473.609333pt;}
.y3c{bottom:482.254667pt;}
.y4f{bottom:492.458667pt;}
.y3b{bottom:498.194667pt;}
.y4e{bottom:508.398667pt;}
.y3a{bottom:514.134667pt;}
.y4d{bottom:524.338667pt;}
.y39{bottom:530.074667pt;}
.y4c{bottom:540.278667pt;}
.y38{bottom:546.014667pt;}
.y4b{bottom:559.129333pt;}
.y37{bottom:561.954667pt;}
.y77{bottom:564.478667pt;}
.y4a{bottom:575.069333pt;}
.y76{bottom:577.762667pt;}
.y36{bottom:577.896000pt;}
.y75{bottom:591.046667pt;}
.y35{bottom:593.836000pt;}
.y49{bottom:594.994667pt;}
.y74{bottom:604.329333pt;}
.y34{bottom:609.776000pt;}
.y73{bottom:617.613333pt;}
.y32{bottom:625.716000pt;}
.y33{bottom:630.537333pt;}
.y72{bottom:630.896000pt;}
.y48{bottom:631.601333pt;}
.y31{bottom:641.656000pt;}
.y71{bottom:644.180000pt;}
.y70{bottom:657.464000pt;}
.y30{bottom:657.596000pt;}
.y13{bottom:662.657333pt;}
.y2f{bottom:673.537333pt;}
.y6f{bottom:674.732000pt;}
.y12{bottom:678.598667pt;}
.y2e{bottom:689.477333pt;}
.y11{bottom:694.538667pt;}
.y6e{bottom:702.628000pt;}
.y2d{bottom:705.417333pt;}
.y10{bottom:710.478667pt;}
.y6c{bottom:718.568000pt;}
.y2c{bottom:721.357333pt;}
.y6d{bottom:723.389333pt;}
.yf{bottom:726.418667pt;}
.y6b{bottom:734.508000pt;}
.y2b{bottom:737.297333pt;}
.ye{bottom:742.358667pt;}
.y2a{bottom:753.237333pt;}
.y6a{bottom:754.433333pt;}
.yd{bottom:758.298667pt;}
.y29{bottom:769.178667pt;}
.yc{bottom:774.240000pt;}
.y69{bottom:782.329333pt;}
.y28{bottom:785.118667pt;}
.yb{bottom:790.180000pt;}
.y68{bottom:798.269333pt;}
.y27{bottom:801.058667pt;}
.ya{bottom:810.105333pt;}
.y67{bottom:814.209333pt;}
.y26{bottom:816.998667pt;}
.y66{bottom:830.149333pt;}
.y25{bottom:832.938667pt;}
.y9{bottom:844.958667pt;}
.y24{bottom:848.878667pt;}
.y65{bottom:850.074667pt;}
.y23{bottom:864.820000pt;}
.y8{bottom:869.028000pt;}
.y64{bottom:877.970667pt;}
.y21{bottom:880.760000pt;}
.y7{bottom:883.638667pt;}
.y22{bottom:885.581333pt;}
.y63{bottom:893.910667pt;}
.y20{bottom:896.700000pt;}
.y6{bottom:898.250667pt;}
.y1f{bottom:912.640000pt;}
.y5{bottom:912.862667pt;}
.y4{bottom:927.474667pt;}
.y1e{bottom:928.580000pt;}
.y3{bottom:942.086667pt;}
.y1d{bottom:944.520000pt;}
.y1c{bottom:960.461333pt;}
.y2{bottom:965.498667pt;}
.y1b{bottom:976.401333pt;}
.y1a{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y19{bottom:1032.192000pt;}
.hd{height:23.538303pt;}
.hc{height:24.245999pt;}
.hb{height:28.547772pt;}
.h9{height:29.755040pt;}
.ha{height:29.967576pt;}
.h8{height:31.285299pt;}
.h7{height:33.713664pt;}
.h4{height:35.196109pt;}
.h5{height:37.087439pt;}
.h6{height:39.106526pt;}
.h3{height:41.018216pt;}
.h2{height:53.406121pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.730667pt;}
.x3{left:85.014667pt;}
.x17{left:89.552000pt;}
.x13{left:92.360000pt;}
.x14{left:104.276000pt;}
.x2{left:216.130667pt;}
.xe{left:218.804000pt;}
.xf{left:224.981333pt;}
.x12{left:231.636000pt;}
.xa{left:316.677333pt;}
.xb{left:325.494667pt;}
.xc{left:382.156000pt;}
.xd{left:388.333333pt;}
.x10{left:404.654667pt;}
.x11{left:410.832000pt;}
.x4{left:450.952000pt;}
.x5{left:459.448000pt;}
.x8{left:561.921333pt;}
.x9{left:568.098667pt;}
.x6{left:601.364000pt;}
.x7{left:606.537333pt;}
.x15{left:674.844000pt;}
.x16{left:680.017333pt;}
}




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