
    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_055cdc07e0500485335c8507.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_a3ad4d58474b1fb552ad96e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_ed6b3f95235ab088a3255811.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_f4c574f41351d688456f7e91.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996094;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_b8b29d7c13a0645783fe8a29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_0755e37593d81d9b3709258e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_12b5b1c8be9b7c12e9678b08.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_3efd26737813dbeb5e556196.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_c2f80de7833c24f442df4f5a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_05deb7a551716dc31c95a526.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_9da50cede08b983bc32d11e6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_b67057766512827bf6fa6ee1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.996094;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v6{vertical-align:-10.080000px;}
.v1{vertical-align:-7.200000px;}
.v2{vertical-align:-6.071512px;}
.v8{vertical-align:-2.880000px;}
.v4{vertical-align:-1.517878px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v9{vertical-align:2.880000px;}
.v3{vertical-align:6.071512px;}
.v5{vertical-align:7.589390px;}
.v7{vertical-align:10.080000px;}
.ls2b{letter-spacing:-15.180000px;}
.ls12{letter-spacing:-1.014000px;}
.ls15{letter-spacing:-0.999270px;}
.ls1a{letter-spacing:-0.948000px;}
.ls1c{letter-spacing:-0.912000px;}
.ls1b{letter-spacing:-0.858000px;}
.ls2a{letter-spacing:-0.548400px;}
.ls23{letter-spacing:-0.483600px;}
.lsd{letter-spacing:-0.420600px;}
.ls18{letter-spacing:-0.366000px;}
.ls2c{letter-spacing:-0.276600px;}
.ls13{letter-spacing:-0.241596px;}
.ls16{letter-spacing:-0.229200px;}
.ls29{letter-spacing:-0.083400px;}
.ls11{letter-spacing:-0.038880px;}
.lse{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.015840px;}
.lsf{letter-spacing:0.078000px;}
.ls21{letter-spacing:0.156000px;}
.ls27{letter-spacing:0.198720px;}
.ls7{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.345600px;}
.ls4{letter-spacing:0.414720px;}
.lsb{letter-spacing:0.493800px;}
.ls20{letter-spacing:0.516960px;}
.ls2{letter-spacing:0.520506px;}
.ls17{letter-spacing:0.525600px;}
.ls14{letter-spacing:0.554026px;}
.ls10{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.584400px;}
.ls8{letter-spacing:0.675360px;}
.ls22{letter-spacing:0.686880px;}
.ls25{letter-spacing:0.901440px;}
.ls1f{letter-spacing:1.254240px;}
.ls26{letter-spacing:1.356480px;}
.ls1e{letter-spacing:1.435680px;}
.ls9{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.440466px;}
.ls1{letter-spacing:1.517878px;}
.ls6{letter-spacing:4.320000px;}
.lsc{letter-spacing:11.520000px;}
.ls1d{letter-spacing:12.960000px;}
.ls5{letter-spacing:14.400000px;}
.ls0{letter-spacing:15.178781px;}
.ls28{letter-spacing:30.939840px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-90.720000px;}
.ws2{word-spacing:-83.520000px;}
.ws8{word-spacing:-60.480000px;}
.ws0{word-spacing:-23.549640px;}
.ws5{word-spacing:-19.693440px;}
.ws7{word-spacing:-19.627682px;}
.ws1{word-spacing:-19.010880px;}
.wsb{word-spacing:-18.976385px;}
.ws6{word-spacing:-18.620640px;}
.wsa{word-spacing:-18.455880px;}
.wsf{word-spacing:-18.093360px;}
.ws15{word-spacing:-18.025920px;}
.ws11{word-spacing:-18.002760px;}
.ws14{word-spacing:-17.890800px;}
.wsd{word-spacing:-17.508960px;}
.wsc{word-spacing:-17.456610px;}
.ws16{word-spacing:-17.425560px;}
.ws19{word-spacing:-17.232360px;}
.ws17{word-spacing:-16.960560px;}
.ws12{word-spacing:-16.650960px;}
.ws10{word-spacing:-16.560960px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:-14.647524px;}
.ws13{word-spacing:0.000000px;}
.ws18{word-spacing:27.456480px;}
._2d{margin-left:-15.503227px;}
._3{margin-left:-14.325120px;}
._5{margin-left:-12.446600px;}
._c{margin-left:-4.568813px;}
._8{margin-left:-3.123793px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._d{width:4.553634px;}
._1f{width:5.653920px;}
._19{width:7.003680px;}
._16{width:8.308800px;}
._1e{width:9.365760px;}
._a{width:11.105165px;}
._6{width:12.143025px;}
._b{width:13.393314px;}
._4{width:14.400000px;}
._15{width:16.272600px;}
._24{width:18.518040px;}
._9{width:19.634902px;}
._7{width:20.731867px;}
._20{width:22.010992px;}
._14{width:23.529600px;}
._13{width:24.948960px;}
._17{width:26.309213px;}
._12{width:27.501120px;}
._1a{width:28.527000px;}
._18{width:29.571840px;}
._f{width:31.026240px;}
._e{width:32.659200px;}
._10{width:33.940080px;}
._11{width:35.320393px;}
._28{width:36.598680px;}
._27{width:37.797120px;}
._1b{width:42.819840px;}
._1d{width:44.182226px;}
._1c{width:45.281760px;}
._29{width:47.174400px;}
._30{width:48.533760px;}
._2f{width:49.622400px;}
._2e{width:52.218720px;}
._25{width:56.426400px;}
._26{width:58.192273px;}
._2b{width:60.238080px;}
._2c{width:62.623680px;}
._2a{width:73.324440px;}
._23{width:154.994280px;}
._21{width:190.248600px;}
._22{width:197.745600px;}
._31{width:892.751641px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsd{font-size:90.720000px;}
.fsb{font-size:93.600000px;}
.fsc{font-size:95.626320px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y19{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y10{bottom:20.160000px;}
.y16{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.120000px;}
.y15{bottom:57.615000px;}
.y49{bottom:77.796000px;}
.y14{bottom:89.655000px;}
.y6c{bottom:121.356000px;}
.y36{bottom:122.796000px;}
.y46{bottom:147.276000px;}
.y6b{bottom:155.190000px;}
.y35{bottom:156.270000px;}
.y45{bottom:181.110000px;}
.y6a{bottom:187.590000px;}
.y69{bottom:189.030000px;}
.y34{bottom:190.110000px;}
.y44{bottom:214.635000px;}
.y33{bottom:222.555000px;}
.y32{bottom:223.995000px;}
.y43{bottom:251.715000px;}
.y42{bottom:253.155000px;}
.y68{bottom:256.395000px;}
.y31{bottom:257.475000px;}
.y41{bottom:285.195000px;}
.y40{bottom:286.635000px;}
.y67{bottom:288.795000px;}
.y66{bottom:290.235000px;}
.y30{bottom:291.315000px;}
.y3f{bottom:320.475000px;}
.y65{bottom:323.715000px;}
.y2f{bottom:325.155000px;}
.y3e{bottom:352.905000px;}
.y3d{bottom:354.345000px;}
.y64{bottom:357.585000px;}
.y2e{bottom:358.665000px;}
.y3c{bottom:386.385000px;}
.y3b{bottom:387.825000px;}
.y6e{bottom:389.985000px;}
.y63{bottom:391.425000px;}
.y2d{bottom:392.505000px;}
.y3a{bottom:421.665000px;}
.y62{bottom:424.905000px;}
.y2c{bottom:426.345000px;}
.y39{bottom:454.110000px;}
.y38{bottom:455.550000px;}
.y6d{bottom:457.350000px;}
.y61{bottom:458.790000px;}
.y2b{bottom:459.870000px;}
.y37{bottom:489.030000px;}
.y60{bottom:492.630000px;}
.y2a{bottom:493.710000px;}
.y5f{bottom:526.110000px;}
.y29{bottom:527.550000px;}
.y28{bottom:559.590000px;}
.y5e{bottom:559.950000px;}
.y27{bottom:561.030000px;}
.y5d{bottom:593.820000px;}
.y26{bottom:594.900000px;}
.y5c{bottom:627.300000px;}
.y25{bottom:628.740000px;}
.y5b{bottom:661.140000px;}
.y24{bottom:662.220000px;}
.y5a{bottom:694.980000px;}
.y23{bottom:696.060000px;}
.y59{bottom:728.490000px;}
.y22{bottom:729.930000px;}
.y21{bottom:761.610000px;}
.y58{bottom:762.330000px;}
.y20{bottom:790.410000px;}
.y1f{bottom:791.850000px;}
.y57{bottom:796.170000px;}
.y1e{bottom:819.930000px;}
.y1d{bottom:821.370000px;}
.y56{bottom:830.055000px;}
.y1c{bottom:854.535000px;}
.y1b{bottom:855.975000px;}
.y55{bottom:863.535000px;}
.y1a{bottom:885.855000px;}
.y54{bottom:897.375000px;}
.y18{bottom:903.870000px;}
.y13{bottom:911.070000px;}
.y17{bottom:915.594772px;}
.y53{bottom:931.215000px;}
.y52{bottom:964.725000px;}
.y51{bottom:998.565000px;}
.y11{bottom:1029.165000px;}
.y50{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y4f{bottom:1064.445000px;}
.y4e{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y4d{bottom:1098.330000px;}
.y4c{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y4b{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y4a{bottom:1167.090000px;}
.y48{bottom:1187.250000px;}
.y47{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h19{height:7.185000px;}
.hd{height:13.857187px;}
.h1a{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h21{height:30.480469px;}
.he{height:41.070000px;}
.h5{height:52.950000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1e{height:62.015625px;}
.h17{height:63.984375px;}
.h1d{height:66.046641px;}
.h1f{height:66.445312px;}
.h1b{height:70.038809px;}
.h13{height:70.664062px;}
.h6{height:70.714687px;}
.h20{height:72.205312px;}
.h18{height:72.562500px;}
.h14{height:74.485717px;}
.hf{height:74.882812px;}
.h1c{height:76.110321px;}
.h4{height:79.925027px;}
.h22{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:118.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x14{left:100.465500px;}
.x12{left:106.225500px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x1a{left:162.075000px;}
.x4{left:168.930000px;}
.x15{left:184.735500px;}
.x6{left:208.860000px;}
.x2c{left:209.916000px;}
.x13{left:238.060500px;}
.x18{left:325.030998px;}
.x11{left:335.650500px;}
.x16{left:340.330500px;}
.x1c{left:368.625048px;}
.x2a{left:371.310000px;}
.x20{left:377.745000px;}
.x1b{left:389.550048px;}
.x1f{left:392.190000px;}
.x2b{left:398.310000px;}
.xa{left:445.860000px;}
.x21{left:473.580000px;}
.x27{left:482.580000px;}
.x17{left:493.405500px;}
.x2f{left:500.610000px;}
.x22{left:527.610000px;}
.x2e{left:536.610000px;}
.x1d{left:556.410000px;}
.x1e{left:569.010000px;}
.x23{left:603.930000px;}
.x26{left:629.535000px;}
.x28{left:643.935000px;}
.x2d{left:684.615000px;}
.x25{left:708.765000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
.x29{left:758.085000px;}
.x24{left:763.845000px;}
@media print{
.v6{vertical-align:-8.960000pt;}
.v1{vertical-align:-6.400000pt;}
.v2{vertical-align:-5.396900pt;}
.v8{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.349225pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v9{vertical-align:2.560000pt;}
.v3{vertical-align:5.396900pt;}
.v5{vertical-align:6.746125pt;}
.v7{vertical-align:8.960000pt;}
.ls2b{letter-spacing:-13.493333pt;}
.ls12{letter-spacing:-0.901333pt;}
.ls15{letter-spacing:-0.888240pt;}
.ls1a{letter-spacing:-0.842667pt;}
.ls1c{letter-spacing:-0.810667pt;}
.ls1b{letter-spacing:-0.762667pt;}
.ls2a{letter-spacing:-0.487467pt;}
.ls23{letter-spacing:-0.429867pt;}
.lsd{letter-spacing:-0.373867pt;}
.ls18{letter-spacing:-0.325333pt;}
.ls2c{letter-spacing:-0.245867pt;}
.ls13{letter-spacing:-0.214752pt;}
.ls16{letter-spacing:-0.203733pt;}
.ls29{letter-spacing:-0.074133pt;}
.ls11{letter-spacing:-0.034560pt;}
.lse{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.014080pt;}
.lsf{letter-spacing:0.069333pt;}
.ls21{letter-spacing:0.138667pt;}
.ls27{letter-spacing:0.176640pt;}
.ls7{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.307200pt;}
.ls4{letter-spacing:0.368640pt;}
.lsb{letter-spacing:0.438933pt;}
.ls20{letter-spacing:0.459520pt;}
.ls2{letter-spacing:0.462672pt;}
.ls17{letter-spacing:0.467200pt;}
.ls14{letter-spacing:0.492467pt;}
.ls10{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.519467pt;}
.ls8{letter-spacing:0.600320pt;}
.ls22{letter-spacing:0.610560pt;}
.ls25{letter-spacing:0.801280pt;}
.ls1f{letter-spacing:1.114880pt;}
.ls26{letter-spacing:1.205760pt;}
.ls1e{letter-spacing:1.276160pt;}
.ls9{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.280415pt;}
.ls1{letter-spacing:1.349225pt;}
.ls6{letter-spacing:3.840000pt;}
.lsc{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:11.520000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls0{letter-spacing:13.492250pt;}
.ls28{letter-spacing:27.502080pt;}
.wse{word-spacing:-80.640000pt;}
.ws2{word-spacing:-74.240000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws5{word-spacing:-17.505280pt;}
.ws7{word-spacing:-17.446828pt;}
.ws1{word-spacing:-16.898560pt;}
.wsb{word-spacing:-16.867898pt;}
.ws6{word-spacing:-16.551680pt;}
.wsa{word-spacing:-16.405226pt;}
.wsf{word-spacing:-16.082987pt;}
.ws15{word-spacing:-16.023040pt;}
.ws11{word-spacing:-16.002453pt;}
.ws14{word-spacing:-15.902933pt;}
.wsd{word-spacing:-15.563520pt;}
.wsc{word-spacing:-15.516987pt;}
.ws16{word-spacing:-15.489387pt;}
.ws19{word-spacing:-15.317653pt;}
.ws17{word-spacing:-15.076053pt;}
.ws12{word-spacing:-14.800853pt;}
.ws10{word-spacing:-14.720853pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:-13.020021pt;}
.ws13{word-spacing:0.000000pt;}
.ws18{word-spacing:24.405760pt;}
._2d{margin-left:-13.780646pt;}
._3{margin-left:-12.733440pt;}
._5{margin-left:-11.063645pt;}
._c{margin-left:-4.061167pt;}
._8{margin-left:-2.776705pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._d{width:4.047675pt;}
._1f{width:5.025707pt;}
._19{width:6.225493pt;}
._16{width:7.385600pt;}
._1e{width:8.325120pt;}
._a{width:9.871258pt;}
._6{width:10.793800pt;}
._b{width:11.905168pt;}
._4{width:12.800000pt;}
._15{width:14.464533pt;}
._24{width:16.460480pt;}
._9{width:17.453246pt;}
._7{width:18.428326pt;}
._20{width:19.565326pt;}
._14{width:20.915200pt;}
._13{width:22.176853pt;}
._17{width:23.385967pt;}
._12{width:24.445440pt;}
._1a{width:25.357333pt;}
._18{width:26.286080pt;}
._f{width:27.578880pt;}
._e{width:29.030400pt;}
._10{width:30.168960pt;}
._11{width:31.395905pt;}
._28{width:32.532160pt;}
._27{width:33.597440pt;}
._1b{width:38.062080pt;}
._1d{width:39.273090pt;}
._1c{width:40.250453pt;}
._29{width:41.932800pt;}
._30{width:43.141120pt;}
._2f{width:44.108800pt;}
._2e{width:46.416640pt;}
._25{width:50.156800pt;}
._26{width:51.726465pt;}
._2b{width:53.544960pt;}
._2c{width:55.665493pt;}
._2a{width:65.177280pt;}
._23{width:137.772693pt;}
._21{width:169.109867pt;}
._22{width:175.773867pt;}
._31{width:793.557014pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsd{font-size:80.640000pt;}
.fsb{font-size:83.200000pt;}
.fsc{font-size:85.001174pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y19{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:17.920000pt;}
.y16{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.440000pt;}
.y15{bottom:51.213333pt;}
.y49{bottom:69.152000pt;}
.y14{bottom:79.693333pt;}
.y6c{bottom:107.872000pt;}
.y36{bottom:109.152000pt;}
.y46{bottom:130.912000pt;}
.y6b{bottom:137.946667pt;}
.y35{bottom:138.906667pt;}
.y45{bottom:160.986667pt;}
.y6a{bottom:166.746667pt;}
.y69{bottom:168.026667pt;}
.y34{bottom:168.986667pt;}
.y44{bottom:190.786667pt;}
.y33{bottom:197.826667pt;}
.y32{bottom:199.106667pt;}
.y43{bottom:223.746667pt;}
.y42{bottom:225.026667pt;}
.y68{bottom:227.906667pt;}
.y31{bottom:228.866667pt;}
.y41{bottom:253.506667pt;}
.y40{bottom:254.786667pt;}
.y67{bottom:256.706667pt;}
.y66{bottom:257.986667pt;}
.y30{bottom:258.946667pt;}
.y3f{bottom:284.866667pt;}
.y65{bottom:287.746667pt;}
.y2f{bottom:289.026667pt;}
.y3e{bottom:313.693333pt;}
.y3d{bottom:314.973333pt;}
.y64{bottom:317.853333pt;}
.y2e{bottom:318.813333pt;}
.y3c{bottom:343.453333pt;}
.y3b{bottom:344.733333pt;}
.y6e{bottom:346.653333pt;}
.y63{bottom:347.933333pt;}
.y2d{bottom:348.893333pt;}
.y3a{bottom:374.813333pt;}
.y62{bottom:377.693333pt;}
.y2c{bottom:378.973333pt;}
.y39{bottom:403.653333pt;}
.y38{bottom:404.933333pt;}
.y6d{bottom:406.533333pt;}
.y61{bottom:407.813333pt;}
.y2b{bottom:408.773333pt;}
.y37{bottom:434.693333pt;}
.y60{bottom:437.893333pt;}
.y2a{bottom:438.853333pt;}
.y5f{bottom:467.653333pt;}
.y29{bottom:468.933333pt;}
.y28{bottom:497.413333pt;}
.y5e{bottom:497.733333pt;}
.y27{bottom:498.693333pt;}
.y5d{bottom:527.840000pt;}
.y26{bottom:528.800000pt;}
.y5c{bottom:557.600000pt;}
.y25{bottom:558.880000pt;}
.y5b{bottom:587.680000pt;}
.y24{bottom:588.640000pt;}
.y5a{bottom:617.760000pt;}
.y23{bottom:618.720000pt;}
.y59{bottom:647.546667pt;}
.y22{bottom:648.826667pt;}
.y21{bottom:676.986667pt;}
.y58{bottom:677.626667pt;}
.y20{bottom:702.586667pt;}
.y1f{bottom:703.866667pt;}
.y57{bottom:707.706667pt;}
.y1e{bottom:728.826667pt;}
.y1d{bottom:730.106667pt;}
.y56{bottom:737.826667pt;}
.y1c{bottom:759.586667pt;}
.y1b{bottom:760.866667pt;}
.y55{bottom:767.586667pt;}
.y1a{bottom:787.426667pt;}
.y54{bottom:797.666667pt;}
.y18{bottom:803.440000pt;}
.y13{bottom:809.840000pt;}
.y17{bottom:813.862020pt;}
.y53{bottom:827.746667pt;}
.y52{bottom:857.533333pt;}
.y51{bottom:887.613333pt;}
.y11{bottom:914.813333pt;}
.y50{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y4f{bottom:946.173333pt;}
.y4e{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y4d{bottom:976.293333pt;}
.y4c{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y4b{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y4a{bottom:1037.413333pt;}
.y48{bottom:1055.333333pt;}
.y47{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h19{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1a{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h21{height:27.093750pt;}
.he{height:36.506667pt;}
.h5{height:47.066667pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1e{height:55.125000pt;}
.h17{height:56.875000pt;}
.h1d{height:58.708125pt;}
.h1f{height:59.062500pt;}
.h1b{height:62.256719pt;}
.h13{height:62.812500pt;}
.h6{height:62.857500pt;}
.h20{height:64.182500pt;}
.h18{height:64.500000pt;}
.h14{height:66.209526pt;}
.hf{height:66.562500pt;}
.h1c{height:67.653619pt;}
.h4{height:71.044468pt;}
.h22{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:104.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x14{left:89.302667pt;}
.x12{left:94.422667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x1a{left:144.066667pt;}
.x4{left:150.160000pt;}
.x15{left:164.209333pt;}
.x6{left:185.653333pt;}
.x2c{left:186.592000pt;}
.x13{left:211.609333pt;}
.x18{left:288.916443pt;}
.x11{left:298.356000pt;}
.x16{left:302.516000pt;}
.x1c{left:327.666709pt;}
.x2a{left:330.053333pt;}
.x20{left:335.773333pt;}
.x1b{left:346.266709pt;}
.x1f{left:348.613333pt;}
.x2b{left:354.053333pt;}
.xa{left:396.320000pt;}
.x21{left:420.960000pt;}
.x27{left:428.960000pt;}
.x17{left:438.582667pt;}
.x2f{left:444.986667pt;}
.x22{left:468.986667pt;}
.x2e{left:476.986667pt;}
.x1d{left:494.586667pt;}
.x1e{left:505.786667pt;}
.x23{left:536.826667pt;}
.x26{left:559.586667pt;}
.x28{left:572.386667pt;}
.x2d{left:608.546667pt;}
.x25{left:630.013333pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
.x29{left:673.853333pt;}
.x24{left:678.973333pt;}
}




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