
    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_e8756c14886ac81eecb82e80.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_790e947842ceec25b68f9f02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_6162618ef6acca269724b17a.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_430d7b92c801ebca53ce802f.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_b0d979a2fab9b8f4e7721c8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_29863d9846adda7c41899084.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dc3bf122f19534c5b9462a84.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m9{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);}
.m2{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);}
.ma{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);}
.m14{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);}
.m13{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);}
.mc{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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m15{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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.956683px;}
.ls2{letter-spacing:21.939527px;}
.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;}
}
.wsd{word-spacing:-11.955150px;}
.ws1{word-spacing:-2.914726px;}
.ws3{word-spacing:-2.912536px;}
.ws19{word-spacing:-1.972595px;}
.ws11{word-spacing:-1.853044px;}
.ws21{word-spacing:-1.733492px;}
.ws22{word-spacing:-0.717307px;}
.wsf{word-spacing:-0.298878px;}
.ws10{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.179327px;}
.ws6{word-spacing:-0.119551px;}
.ws0{word-spacing:-0.086077px;}
.ws1b{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.059776px;}
.ws1a{word-spacing:0.119551px;}
.ws15{word-spacing:0.179327px;}
.ws12{word-spacing:0.239102px;}
.ws7{word-spacing:0.298878px;}
.ws14{word-spacing:0.358654px;}
.ws1c{word-spacing:0.597756px;}
.ws1f{word-spacing:0.777083px;}
.ws8{word-spacing:0.836858px;}
.ws1e{word-spacing:1.016185px;}
.wsc{word-spacing:1.386797px;}
.ws24{word-spacing:1.434614px;}
.ws23{word-spacing:2.092146px;}
.ws17{word-spacing:3.168107px;}
.wse{word-spacing:11.907329px;}
.ws4{word-spacing:14.884124px;}
.ws1d{word-spacing:16.167416px;}
.ws5{word-spacing:16.178618px;}
.wsa{word-spacing:16.312497px;}
.ws16{word-spacing:16.675476px;}
.ws13{word-spacing:16.681336px;}
.ws20{word-spacing:17.038239px;}
._7{margin-left:-4.232119px;}
._4{margin-left:-3.120280px;}
._0{margin-left:-1.721544px;}
._1{width:1.570910px;}
._d{width:3.012698px;}
._9{width:14.672795px;}
._2{width:16.187011px;}
._b{width:17.908811px;}
._a{width:23.910300px;}
._5{width:26.899200px;}
._c{width:28.735643px;}
._3{width:59.775600px;}
._6{width:1410.420779px;}
._8{width:1807.213647px;}
.fc0{color:rgb(0,0,0);}
.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;}
.y2d{bottom:152.499000px;}
.y10{bottom:168.975000px;}
.y2c{bottom:170.431500px;}
.yf{bottom:185.413500px;}
.y2b{bottom:188.364000px;}
.ye{bottom:201.852000px;}
.y2a{bottom:206.296500px;}
.y29{bottom:224.229000px;}
.y28{bottom:242.161500px;}
.y27{bottom:260.095500px;}
.yd{bottom:274.239000px;}
.y26{bottom:278.028000px;}
.yc{bottom:289.182000px;}
.y25{bottom:295.960500px;}
.y24{bottom:313.893000px;}
.y23{bottom:347.440500px;}
.yb{bottom:358.599000px;}
.y48{bottom:558.973500px;}
.y47{bottom:573.918000px;}
.y46{bottom:588.862500px;}
.y45{bottom:603.805500px;}
.y44{bottom:623.233500px;}
.y43{bottom:654.615000px;}
.y42{bottom:672.547500px;}
.y41{bottom:690.481500px;}
.y40{bottom:712.897500px;}
.y3f{bottom:744.279000px;}
.y3e{bottom:762.211500px;}
.y3d{bottom:784.627500px;}
.y3c{bottom:816.010500px;}
.y22{bottom:829.459500px;}
.y3b{bottom:838.426500px;}
.y21{bottom:847.392000px;}
.y20{bottom:865.326000px;}
.y3a{bottom:869.808000px;}
.y1f{bottom:883.258500px;}
.y39{bottom:887.740500px;}
.y1e{bottom:901.191000px;}
.y38{bottom:905.674500px;}
.ya{bottom:906.393000px;}
.y1d{bottom:919.123500px;}
.y37{bottom:923.607000px;}
.y9{bottom:924.325500px;}
.y1c{bottom:937.056000px;}
.y36{bottom:941.539500px;}
.y8{bottom:942.258000px;}
.y1b{bottom:954.988500px;}
.y35{bottom:959.472000px;}
.y7{bottom:960.192000px;}
.y1a{bottom:972.922500px;}
.y34{bottom:977.404500px;}
.y6{bottom:978.124500px;}
.y19{bottom:990.855000px;}
.y33{bottom:995.338500px;}
.y5{bottom:996.057000px;}
.y18{bottom:1008.787500px;}
.y32{bottom:1013.271000px;}
.y4{bottom:1018.473000px;}
.y17{bottom:1026.720000px;}
.y31{bottom:1035.687000px;}
.y16{bottom:1044.652500px;}
.y15{bottom:1062.585000px;}
.y30{bottom:1067.068500px;}
.y3{bottom:1071.729000px;}
.y14{bottom:1080.519000px;}
.y2f{bottom:1085.001000px;}
.y2{bottom:1091.157000px;}
.y13{bottom:1098.451500px;}
.y2e{bottom:1102.935000px;}
.y12{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y11{bottom:1161.216000px;}
.h8{height:33.474420px;}
.h9{height:33.856985px;}
.h7{height:35.195962px;}
.h6{height:38.089267px;}
.h4{height:41.723369px;}
.h5{height:43.994842px;}
.h3{height:46.341857px;}
.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.052000px;}
.x5{left:95.641500px;}
.xf{left:103.905000px;}
.xb{left:284.386500px;}
.xc{left:291.336000px;}
.x3{left:304.396500px;}
.x4{left:311.344500px;}
.xa{left:353.923500px;}
.x2{left:367.366500px;}
.x8{left:658.650000px;}
.x9{left:665.598000px;}
.x6{left:708.100500px;}
.x7{left:715.050000px;}
.xd{left:717.819000px;}
.xe{left:724.767000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.628163pt;}
.ls2{letter-spacing:19.501802pt;}
.wsd{word-spacing:-10.626800pt;}
.ws1{word-spacing:-2.590867pt;}
.ws3{word-spacing:-2.588921pt;}
.ws19{word-spacing:-1.753418pt;}
.ws11{word-spacing:-1.647150pt;}
.ws21{word-spacing:-1.540882pt;}
.ws22{word-spacing:-0.637606pt;}
.wsf{word-spacing:-0.265669pt;}
.ws10{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.159402pt;}
.ws6{word-spacing:-0.106268pt;}
.ws0{word-spacing:-0.076513pt;}
.ws1b{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053134pt;}
.ws1a{word-spacing:0.106268pt;}
.ws15{word-spacing:0.159402pt;}
.ws12{word-spacing:0.212535pt;}
.ws7{word-spacing:0.265669pt;}
.ws14{word-spacing:0.318803pt;}
.ws1c{word-spacing:0.531339pt;}
.ws1f{word-spacing:0.690740pt;}
.ws8{word-spacing:0.743874pt;}
.ws1e{word-spacing:0.903276pt;}
.wsc{word-spacing:1.232709pt;}
.ws24{word-spacing:1.275213pt;}
.ws23{word-spacing:1.859685pt;}
.ws17{word-spacing:2.816095pt;}
.wse{word-spacing:10.584293pt;}
.ws4{word-spacing:13.230333pt;}
.ws1d{word-spacing:14.371037pt;}
.ws5{word-spacing:14.380993pt;}
.wsa{word-spacing:14.499997pt;}
.ws16{word-spacing:14.822645pt;}
.ws13{word-spacing:14.827854pt;}
.ws20{word-spacing:15.145101pt;}
._7{margin-left:-3.761884pt;}
._4{margin-left:-2.773582pt;}
._0{margin-left:-1.530261pt;}
._1{width:1.396365pt;}
._d{width:2.677954pt;}
._9{width:13.042484pt;}
._2{width:14.388454pt;}
._b{width:15.918943pt;}
._a{width:21.253600pt;}
._5{width:23.910400pt;}
._c{width:25.542794pt;}
._3{width:53.133867pt;}
._6{width:1253.707359pt;}
._8{width:1606.412131pt;}
.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;}
.y2d{bottom:135.554667pt;}
.y10{bottom:150.200000pt;}
.y2c{bottom:151.494667pt;}
.yf{bottom:164.812000pt;}
.y2b{bottom:167.434667pt;}
.ye{bottom:179.424000pt;}
.y2a{bottom:183.374667pt;}
.y29{bottom:199.314667pt;}
.y28{bottom:215.254667pt;}
.y27{bottom:231.196000pt;}
.yd{bottom:243.768000pt;}
.y26{bottom:247.136000pt;}
.yc{bottom:257.050667pt;}
.y25{bottom:263.076000pt;}
.y24{bottom:279.016000pt;}
.y23{bottom:308.836000pt;}
.yb{bottom:318.754667pt;}
.y48{bottom:496.865333pt;}
.y47{bottom:510.149333pt;}
.y46{bottom:523.433333pt;}
.y45{bottom:536.716000pt;}
.y44{bottom:553.985333pt;}
.y43{bottom:581.880000pt;}
.y42{bottom:597.820000pt;}
.y41{bottom:613.761333pt;}
.y40{bottom:633.686667pt;}
.y3f{bottom:661.581333pt;}
.y3e{bottom:677.521333pt;}
.y3d{bottom:697.446667pt;}
.y3c{bottom:725.342667pt;}
.y22{bottom:737.297333pt;}
.y3b{bottom:745.268000pt;}
.y21{bottom:753.237333pt;}
.y20{bottom:769.178667pt;}
.y3a{bottom:773.162667pt;}
.y1f{bottom:785.118667pt;}
.y39{bottom:789.102667pt;}
.y1e{bottom:801.058667pt;}
.y38{bottom:805.044000pt;}
.ya{bottom:805.682667pt;}
.y1d{bottom:816.998667pt;}
.y37{bottom:820.984000pt;}
.y9{bottom:821.622667pt;}
.y1c{bottom:832.938667pt;}
.y36{bottom:836.924000pt;}
.y8{bottom:837.562667pt;}
.y1b{bottom:848.878667pt;}
.y35{bottom:852.864000pt;}
.y7{bottom:853.504000pt;}
.y1a{bottom:864.820000pt;}
.y34{bottom:868.804000pt;}
.y6{bottom:869.444000pt;}
.y19{bottom:880.760000pt;}
.y33{bottom:884.745333pt;}
.y5{bottom:885.384000pt;}
.y18{bottom:896.700000pt;}
.y32{bottom:900.685333pt;}
.y4{bottom:905.309333pt;}
.y17{bottom:912.640000pt;}
.y31{bottom:920.610667pt;}
.y16{bottom:928.580000pt;}
.y15{bottom:944.520000pt;}
.y30{bottom:948.505333pt;}
.y3{bottom:952.648000pt;}
.y14{bottom:960.461333pt;}
.y2f{bottom:964.445333pt;}
.y2{bottom:969.917333pt;}
.y13{bottom:976.401333pt;}
.y2e{bottom:980.386667pt;}
.y12{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y11{bottom:1032.192000pt;}
.h8{height:29.755040pt;}
.h9{height:30.095098pt;}
.h7{height:31.285299pt;}
.h6{height:33.857126pt;}
.h4{height:37.087439pt;}
.h5{height:39.106526pt;}
.h3{height:41.192762pt;}
.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.157333pt;}
.x5{left:85.014667pt;}
.xf{left:92.360000pt;}
.xb{left:252.788000pt;}
.xc{left:258.965333pt;}
.x3{left:270.574667pt;}
.x4{left:276.750667pt;}
.xa{left:314.598667pt;}
.x2{left:326.548000pt;}
.x8{left:585.466667pt;}
.x9{left:591.642667pt;}
.x6{left:629.422667pt;}
.x7{left:635.600000pt;}
.xd{left:638.061333pt;}
.xe{left:644.237333pt;}
}




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