
    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_d757890771769c4c9693c596.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_d757890771769c4c9693c596.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_bf5732b2e00b8455ee1e6ff8.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_450a078ce913cd4dcdeeab11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_6075929119abe1275f5586cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_3c0fee778601c7ef05bd607b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927500;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_3d563310b0f5e7d1fb0dc7a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_f87c7e961b8e2e93640d53ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_19cb51c377ad921dd3668afd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_830c0eb7af1e894da47ac24d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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_3361bbe349e40b5c5f514690.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9aed387a681eedbe076dc2a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;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_4783fef3d0ef5fe532a6364b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.707000;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_716b581e007f61e8b3a54020.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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_d4477dd1b134371fd58aaff2.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;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_8ecccdd814b0a131175a5930.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_bf5732b2e00b8455ee1e6ff8.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5339fab41daacb57e50f4968.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.945813;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;}
.m8{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.v3{vertical-align:23.976000px;}
.ls2{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000140px;}
.ls5{letter-spacing:17.064000px;}
.ls0{letter-spacing:66.312000px;}
.ls4{letter-spacing:66.316800px;}
.ls3{letter-spacing:66.319800px;}
.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;}
}
.ws7{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.432000px;}
.wsa{word-spacing:-17.064000px;}
.ws2{word-spacing:-15.000000px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-10.913760px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.288000px;}
.ws1{word-spacing:0.720000px;}
.ws4{word-spacing:33.621000px;}
.ws5{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._b{margin-left:-18.756000px;}
._4d{margin-left:-17.064000px;}
._53{margin-left:-15.242400px;}
._d{margin-left:-12.780000px;}
._54{margin-left:-11.325600px;}
._1e{margin-left:-10.267200px;}
._24{margin-left:-8.856000px;}
._31{margin-left:-7.481544px;}
._16{margin-left:-6.436800px;}
._2{margin-left:-4.386000px;}
._3b{margin-left:-3.382800px;}
._34{margin-left:-2.304000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._1f{width:2.719200px;}
._7{width:3.988800px;}
._23{width:5.205600px;}
._52{width:6.220800px;}
._12{width:7.833600px;}
._4{width:9.187200px;}
._3a{width:10.195200px;}
._2b{width:11.354400px;}
._e{width:12.607200px;}
._a{width:14.306400px;}
._25{width:16.308000px;}
._5{width:17.632800px;}
._6{width:19.836000px;}
._26{width:21.384000px;}
._58{width:22.608000px;}
._1c{width:23.738400px;}
._17{width:25.855200px;}
._39{width:26.899200px;}
._57{width:27.972000px;}
._29{width:29.160000px;}
._48{width:30.412800px;}
._3c{width:31.852800px;}
._28{width:33.264000px;}
._5b{width:34.430400px;}
._44{width:35.935200px;}
._56{width:37.051200px;}
._37{width:38.397600px;}
._13{width:40.370400px;}
._43{width:41.637600px;}
._20{width:43.106400px;}
._11{width:44.272800px;}
._21{width:45.741600px;}
._3{width:47.368800px;}
._2a{width:49.219200px;}
._8{width:51.148800px;}
._5a{width:52.293600px;}
._32{width:53.640000px;}
._10{width:55.620000px;}
._f{width:56.692800px;}
._3e{width:57.708000px;}
._50{width:58.879200px;}
._4e{width:60.912000px;}
._63{width:62.092800px;}
._3f{width:63.360000px;}
._5d{width:64.591200px;}
._9{width:66.312000px;}
._1a{width:67.406400px;}
._22{width:68.536800px;}
._2d{width:70.509600px;}
._51{width:71.575200px;}
._5f{width:73.087200px;}
._59{width:75.463200px;}
._18{width:76.824000px;}
._36{width:78.379200px;}
._14{width:80.236800px;}
._45{width:83.253600px;}
._1b{width:85.363200px;}
._c{width:86.508000px;}
._49{width:88.502400px;}
._30{width:90.576000px;}
._42{width:92.188800px;}
._1d{width:93.650400px;}
._2c{width:95.356800px;}
._46{width:98.424000px;}
._35{width:99.612000px;}
._15{width:101.368800px;}
._4a{width:102.794400px;}
._4c{width:107.575200px;}
._5c{width:111.852000px;}
._40{width:113.436000px;}
._38{width:115.243200px;}
._5e{width:118.728000px;}
._19{width:122.587200px;}
._4f{width:127.008000px;}
._3d{width:133.416000px;}
._62{width:135.288000px;}
._55{width:137.239200px;}
._65{width:138.823200px;}
._41{width:140.796000px;}
._2f{width:142.812000px;}
._2e{width:148.428000px;}
._4b{width:151.812000px;}
._33{width:153.108000px;}
._61{width:166.723200px;}
._27{width:170.028000px;}
._47{width:209.959200px;}
._64{width:214.668000px;}
._66{width:248.623200px;}
._60{width:254.527200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y84{bottom:93.960150px;}
.y58{bottom:94.308600px;}
.y9b{bottom:102.960150px;}
.y83{bottom:116.460150px;}
.y57{bottom:116.808600px;}
.y5b{bottom:122.802600px;}
.y9a{bottom:125.460150px;}
.y26{bottom:138.157050px;}
.y82{bottom:138.960150px;}
.y56{bottom:139.308600px;}
.y99{bottom:147.960150px;}
.y25{bottom:161.413050px;}
.y81{bottom:161.460150px;}
.y55{bottom:161.808600px;}
.y98{bottom:170.460150px;}
.y80{bottom:183.960150px;}
.y54{bottom:184.308600px;}
.y24{bottom:184.669050px;}
.y97{bottom:192.960150px;}
.y7f{bottom:206.460150px;}
.y53{bottom:206.808600px;}
.y23{bottom:207.925050px;}
.y7e{bottom:228.960150px;}
.y52{bottom:229.308600px;}
.y22{bottom:231.181050px;}
.y96{bottom:237.960150px;}
.y7d{bottom:251.460150px;}
.y5a{bottom:251.808600px;}
.y21{bottom:254.437050px;}
.y95{bottom:260.460150px;}
.y7c{bottom:273.960150px;}
.y51{bottom:274.308600px;}
.y20{bottom:277.693050px;}
.y94{bottom:282.960150px;}
.y7b{bottom:296.460150px;}
.y50{bottom:296.808600px;}
.y1f{bottom:300.919050px;}
.y93{bottom:305.460150px;}
.y7a{bottom:318.960150px;}
.y4f{bottom:319.308600px;}
.y1e{bottom:324.175050px;}
.y92{bottom:327.960150px;}
.y79{bottom:341.460150px;}
.y4e{bottom:341.808600px;}
.y1d{bottom:347.431050px;}
.y91{bottom:350.460150px;}
.y78{bottom:363.960150px;}
.y4d{bottom:364.308600px;}
.y1c{bottom:370.687050px;}
.y90{bottom:384.960150px;}
.y77{bottom:386.460150px;}
.y4c{bottom:386.808600px;}
.y1b{bottom:393.943050px;}
.y8f{bottom:407.460150px;}
.y76{bottom:408.960150px;}
.y4b{bottom:409.308600px;}
.y1a{bottom:417.127050px;}
.y8e{bottom:429.960150px;}
.y75{bottom:431.460150px;}
.y4a{bottom:431.808600px;}
.y19{bottom:440.383050px;}
.y8d{bottom:452.460150px;}
.y74{bottom:453.960150px;}
.y49{bottom:454.308600px;}
.y2f{bottom:456.139950px;}
.y18{bottom:463.639050px;}
.y8c{bottom:474.960150px;}
.y73{bottom:476.460150px;}
.y48{bottom:476.808600px;}
.y2e{bottom:478.639950px;}
.y17{bottom:486.895050px;}
.y8b{bottom:497.460150px;}
.y72{bottom:498.960150px;}
.y47{bottom:499.308600px;}
.y2d{bottom:501.139950px;}
.y16{bottom:510.151050px;}
.y8a{bottom:519.960150px;}
.y71{bottom:521.460150px;}
.y46{bottom:521.808600px;}
.y15{bottom:533.407050px;}
.y2c{bottom:541.639950px;}
.y70{bottom:543.960150px;}
.y45{bottom:544.308600px;}
.y89{bottom:554.460150px;}
.y14{bottom:556.663050px;}
.y6f{bottom:566.460150px;}
.y44{bottom:566.808600px;}
.y88{bottom:576.960150px;}
.y13{bottom:579.919050px;}
.y2b{bottom:586.639950px;}
.y6e{bottom:588.960150px;}
.y43{bottom:589.308600px;}
.y87{bottom:599.460150px;}
.y12{bottom:603.175050px;}
.y6d{bottom:611.460150px;}
.y42{bottom:611.808600px;}
.y86{bottom:621.960150px;}
.y11{bottom:626.431050px;}
.y2a{bottom:627.139950px;}
.y6c{bottom:633.960150px;}
.y41{bottom:634.308600px;}
.y85{bottom:644.460150px;}
.y10{bottom:649.687050px;}
.y6b{bottom:656.460150px;}
.y59{bottom:656.808600px;}
.y29{bottom:663.139950px;}
.yf{bottom:672.943050px;}
.y6a{bottom:678.960150px;}
.y40{bottom:679.308600px;}
.y28{bottom:699.139950px;}
.y69{bottom:701.460150px;}
.y3f{bottom:701.808600px;}
.ye{bottom:717.943050px;}
.y68{bottom:723.960150px;}
.y3e{bottom:724.308600px;}
.y27{bottom:735.139950px;}
.yd{bottom:738.943050px;}
.y67{bottom:746.460150px;}
.y3d{bottom:746.808600px;}
.y66{bottom:768.960150px;}
.y3c{bottom:769.308600px;}
.yc{bottom:788.425050px;}
.y65{bottom:791.460150px;}
.y3b{bottom:791.808600px;}
.yb{bottom:809.429550px;}
.y64{bottom:813.960150px;}
.y3a{bottom:814.308600px;}
.ya{bottom:830.434050px;}
.y63{bottom:836.460150px;}
.y39{bottom:836.808600px;}
.y9{bottom:851.438550px;}
.y62{bottom:858.960150px;}
.y38{bottom:859.308600px;}
.y8{bottom:872.443050px;}
.y61{bottom:881.460150px;}
.y37{bottom:881.808600px;}
.y7{bottom:893.443050px;}
.y60{bottom:903.960150px;}
.y36{bottom:904.308600px;}
.y5f{bottom:926.460150px;}
.y35{bottom:926.808600px;}
.y6{bottom:942.950550px;}
.y5e{bottom:948.960150px;}
.y34{bottom:949.308600px;}
.y5{bottom:968.443050px;}
.y5d{bottom:971.460150px;}
.y33{bottom:971.808600px;}
.y5c{bottom:993.960150px;}
.y32{bottom:994.308600px;}
.y4{bottom:1024.374150px;}
.y31{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.hf{height:29.383200px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.he{height:53.359200px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x13{left:65.202600px;}
.x12{left:71.253150px;}
.x11{left:73.559100px;}
.x18{left:85.039350px;}
.xf{left:224.187900px;}
.x5{left:237.510900px;}
.x16{left:272.730450px;}
.x17{left:283.751250px;}
.x14{left:297.255450px;}
.xc{left:321.403500px;}
.x15{left:374.424150px;}
.xe{left:390.358950px;}
.x19{left:399.929550px;}
.xb{left:409.992000px;}
.x4{left:412.272150px;}
.x6{left:414.360900px;}
.x1a{left:421.195650px;}
.x1d{left:426.935850px;}
.x9{left:470.596500px;}
.xa{left:499.801500px;}
.x1c{left:512.662800px;}
.xd{left:525.237600px;}
.x8{left:536.365500px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x7{left:636.073350px;}
.x1b{left:692.471550px;}
.x10{left:710.503950px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.v3{vertical-align:21.312000pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000124pt;}
.ls5{letter-spacing:15.168000pt;}
.ls0{letter-spacing:58.944000pt;}
.ls4{letter-spacing:58.948267pt;}
.ls3{letter-spacing:58.950933pt;}
.ws7{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.384000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-9.701120pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.256000pt;}
.ws1{word-spacing:0.640000pt;}
.ws4{word-spacing:29.885333pt;}
.ws5{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._b{margin-left:-16.672000pt;}
._4d{margin-left:-15.168000pt;}
._53{margin-left:-13.548800pt;}
._d{margin-left:-11.360000pt;}
._54{margin-left:-10.067200pt;}
._1e{margin-left:-9.126400pt;}
._24{margin-left:-7.872000pt;}
._31{margin-left:-6.650261pt;}
._16{margin-left:-5.721600pt;}
._2{margin-left:-3.898667pt;}
._3b{margin-left:-3.006933pt;}
._34{margin-left:-2.048000pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._1f{width:2.417067pt;}
._7{width:3.545600pt;}
._23{width:4.627200pt;}
._52{width:5.529600pt;}
._12{width:6.963200pt;}
._4{width:8.166400pt;}
._3a{width:9.062400pt;}
._2b{width:10.092800pt;}
._e{width:11.206400pt;}
._a{width:12.716800pt;}
._25{width:14.496000pt;}
._5{width:15.673600pt;}
._6{width:17.632000pt;}
._26{width:19.008000pt;}
._58{width:20.096000pt;}
._1c{width:21.100800pt;}
._17{width:22.982400pt;}
._39{width:23.910400pt;}
._57{width:24.864000pt;}
._29{width:25.920000pt;}
._48{width:27.033600pt;}
._3c{width:28.313600pt;}
._28{width:29.568000pt;}
._5b{width:30.604800pt;}
._44{width:31.942400pt;}
._56{width:32.934400pt;}
._37{width:34.131200pt;}
._13{width:35.884800pt;}
._43{width:37.011200pt;}
._20{width:38.316800pt;}
._11{width:39.353600pt;}
._21{width:40.659200pt;}
._3{width:42.105600pt;}
._2a{width:43.750400pt;}
._8{width:45.465600pt;}
._5a{width:46.483200pt;}
._32{width:47.680000pt;}
._10{width:49.440000pt;}
._f{width:50.393600pt;}
._3e{width:51.296000pt;}
._50{width:52.337067pt;}
._4e{width:54.144000pt;}
._63{width:55.193600pt;}
._3f{width:56.320000pt;}
._5d{width:57.414400pt;}
._9{width:58.944000pt;}
._1a{width:59.916800pt;}
._22{width:60.921600pt;}
._2d{width:62.675200pt;}
._51{width:63.622400pt;}
._5f{width:64.966400pt;}
._59{width:67.078400pt;}
._18{width:68.288000pt;}
._36{width:69.670400pt;}
._14{width:71.321600pt;}
._45{width:74.003200pt;}
._1b{width:75.878400pt;}
._c{width:76.896000pt;}
._49{width:78.668800pt;}
._30{width:80.512000pt;}
._42{width:81.945600pt;}
._1d{width:83.244800pt;}
._2c{width:84.761600pt;}
._46{width:87.488000pt;}
._35{width:88.544000pt;}
._15{width:90.105600pt;}
._4a{width:91.372800pt;}
._4c{width:95.622400pt;}
._5c{width:99.424000pt;}
._40{width:100.832000pt;}
._38{width:102.438400pt;}
._5e{width:105.536000pt;}
._19{width:108.966400pt;}
._4f{width:112.896000pt;}
._3d{width:118.592000pt;}
._62{width:120.256000pt;}
._55{width:121.990400pt;}
._65{width:123.398400pt;}
._41{width:125.152000pt;}
._2f{width:126.944000pt;}
._2e{width:131.936000pt;}
._4b{width:134.944000pt;}
._33{width:136.096000pt;}
._61{width:148.198400pt;}
._27{width:151.136000pt;}
._47{width:186.630400pt;}
._64{width:190.816000pt;}
._66{width:220.998400pt;}
._60{width:226.246400pt;}
.fs7{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y84{bottom:83.520133pt;}
.y58{bottom:83.829867pt;}
.y9b{bottom:91.520133pt;}
.y83{bottom:103.520133pt;}
.y57{bottom:103.829867pt;}
.y5b{bottom:109.157867pt;}
.y9a{bottom:111.520133pt;}
.y26{bottom:122.806267pt;}
.y82{bottom:123.520133pt;}
.y56{bottom:123.829867pt;}
.y99{bottom:131.520133pt;}
.y25{bottom:143.478267pt;}
.y81{bottom:143.520133pt;}
.y55{bottom:143.829867pt;}
.y98{bottom:151.520133pt;}
.y80{bottom:163.520133pt;}
.y54{bottom:163.829867pt;}
.y24{bottom:164.150267pt;}
.y97{bottom:171.520133pt;}
.y7f{bottom:183.520133pt;}
.y53{bottom:183.829867pt;}
.y23{bottom:184.822267pt;}
.y7e{bottom:203.520133pt;}
.y52{bottom:203.829867pt;}
.y22{bottom:205.494267pt;}
.y96{bottom:211.520133pt;}
.y7d{bottom:223.520133pt;}
.y5a{bottom:223.829867pt;}
.y21{bottom:226.166267pt;}
.y95{bottom:231.520133pt;}
.y7c{bottom:243.520133pt;}
.y51{bottom:243.829867pt;}
.y20{bottom:246.838267pt;}
.y94{bottom:251.520133pt;}
.y7b{bottom:263.520133pt;}
.y50{bottom:263.829867pt;}
.y1f{bottom:267.483600pt;}
.y93{bottom:271.520133pt;}
.y7a{bottom:283.520133pt;}
.y4f{bottom:283.829867pt;}
.y1e{bottom:288.155600pt;}
.y92{bottom:291.520133pt;}
.y79{bottom:303.520133pt;}
.y4e{bottom:303.829867pt;}
.y1d{bottom:308.827600pt;}
.y91{bottom:311.520133pt;}
.y78{bottom:323.520133pt;}
.y4d{bottom:323.829867pt;}
.y1c{bottom:329.499600pt;}
.y90{bottom:342.186800pt;}
.y77{bottom:343.520133pt;}
.y4c{bottom:343.829867pt;}
.y1b{bottom:350.171600pt;}
.y8f{bottom:362.186800pt;}
.y76{bottom:363.520133pt;}
.y4b{bottom:363.829867pt;}
.y1a{bottom:370.779600pt;}
.y8e{bottom:382.186800pt;}
.y75{bottom:383.520133pt;}
.y4a{bottom:383.829867pt;}
.y19{bottom:391.451600pt;}
.y8d{bottom:402.186800pt;}
.y74{bottom:403.520133pt;}
.y49{bottom:403.829867pt;}
.y2f{bottom:405.457733pt;}
.y18{bottom:412.123600pt;}
.y8c{bottom:422.186800pt;}
.y73{bottom:423.520133pt;}
.y48{bottom:423.829867pt;}
.y2e{bottom:425.457733pt;}
.y17{bottom:432.795600pt;}
.y8b{bottom:442.186800pt;}
.y72{bottom:443.520133pt;}
.y47{bottom:443.829867pt;}
.y2d{bottom:445.457733pt;}
.y16{bottom:453.467600pt;}
.y8a{bottom:462.186800pt;}
.y71{bottom:463.520133pt;}
.y46{bottom:463.829867pt;}
.y15{bottom:474.139600pt;}
.y2c{bottom:481.457733pt;}
.y70{bottom:483.520133pt;}
.y45{bottom:483.829867pt;}
.y89{bottom:492.853467pt;}
.y14{bottom:494.811600pt;}
.y6f{bottom:503.520133pt;}
.y44{bottom:503.829867pt;}
.y88{bottom:512.853467pt;}
.y13{bottom:515.483600pt;}
.y2b{bottom:521.457733pt;}
.y6e{bottom:523.520133pt;}
.y43{bottom:523.829867pt;}
.y87{bottom:532.853467pt;}
.y12{bottom:536.155600pt;}
.y6d{bottom:543.520133pt;}
.y42{bottom:543.829867pt;}
.y86{bottom:552.853467pt;}
.y11{bottom:556.827600pt;}
.y2a{bottom:557.457733pt;}
.y6c{bottom:563.520133pt;}
.y41{bottom:563.829867pt;}
.y85{bottom:572.853467pt;}
.y10{bottom:577.499600pt;}
.y6b{bottom:583.520133pt;}
.y59{bottom:583.829867pt;}
.y29{bottom:589.457733pt;}
.yf{bottom:598.171600pt;}
.y6a{bottom:603.520133pt;}
.y40{bottom:603.829867pt;}
.y28{bottom:621.457733pt;}
.y69{bottom:623.520133pt;}
.y3f{bottom:623.829867pt;}
.ye{bottom:638.171600pt;}
.y68{bottom:643.520133pt;}
.y3e{bottom:643.829867pt;}
.y27{bottom:653.457733pt;}
.yd{bottom:656.838267pt;}
.y67{bottom:663.520133pt;}
.y3d{bottom:663.829867pt;}
.y66{bottom:683.520133pt;}
.y3c{bottom:683.829867pt;}
.yc{bottom:700.822267pt;}
.y65{bottom:703.520133pt;}
.y3b{bottom:703.829867pt;}
.yb{bottom:719.492933pt;}
.y64{bottom:723.520133pt;}
.y3a{bottom:723.829867pt;}
.ya{bottom:738.163600pt;}
.y63{bottom:743.520133pt;}
.y39{bottom:743.829867pt;}
.y9{bottom:756.834267pt;}
.y62{bottom:763.520133pt;}
.y38{bottom:763.829867pt;}
.y8{bottom:775.504933pt;}
.y61{bottom:783.520133pt;}
.y37{bottom:783.829867pt;}
.y7{bottom:794.171600pt;}
.y60{bottom:803.520133pt;}
.y36{bottom:803.829867pt;}
.y5f{bottom:823.520133pt;}
.y35{bottom:823.829867pt;}
.y6{bottom:838.178267pt;}
.y5e{bottom:843.520133pt;}
.y34{bottom:843.829867pt;}
.y5{bottom:860.838267pt;}
.y5d{bottom:863.520133pt;}
.y33{bottom:863.829867pt;}
.y5c{bottom:883.520133pt;}
.y32{bottom:883.829867pt;}
.y4{bottom:910.554800pt;}
.y31{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.hf{height:26.118400pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.he{height:47.430400pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x13{left:57.957867pt;}
.x12{left:63.336133pt;}
.x11{left:65.385867pt;}
.x18{left:75.590533pt;}
.xf{left:199.278133pt;}
.x5{left:211.120800pt;}
.x16{left:242.427067pt;}
.x17{left:252.223333pt;}
.x14{left:264.227067pt;}
.xc{left:285.692000pt;}
.x15{left:332.821467pt;}
.xe{left:346.985733pt;}
.x19{left:355.492933pt;}
.xb{left:364.437333pt;}
.x4{left:366.464133pt;}
.x6{left:368.320800pt;}
.x1a{left:374.396133pt;}
.x1d{left:379.498533pt;}
.x9{left:418.308000pt;}
.xa{left:444.268000pt;}
.x1c{left:455.700267pt;}
.xd{left:466.877867pt;}
.x8{left:476.769333pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x7{left:565.398533pt;}
.x1b{left:615.530267pt;}
.x10{left:631.559067pt;}
}




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