
    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_cb813ef2815a2d5ed7b91777.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_3ea89b7db5c78297362c6356.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d2b0246c2a2d68fa291d239.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_4449ee84e69280ef948f5376.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_8aca3c1b5fc91d65ae081df9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad00a49e34f5d4d1a08c1191.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_83819540204fc0ca644d946a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8e8c0a8776b00763a4a81c1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_3b54dc506956091bffea658c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.640000;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_4f47891e402361245a29ba1f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fb67f85d81c68160021203f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.604000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.794654px;}
.ls14{letter-spacing:1.820137px;}
.ls7{letter-spacing:1.825566px;}
.lsd{letter-spacing:1.838539px;}
.ls3{letter-spacing:2.356366px;}
.ls4{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.lsa{letter-spacing:18.130924px;}
.ls9{letter-spacing:18.196379px;}
.lsc{letter-spacing:20.029108px;}
.ls13{letter-spacing:21.272745px;}
.ls12{letter-spacing:21.861836px;}
.lsf{letter-spacing:21.992746px;}
.ls8{letter-spacing:22.058200px;}
.ls6{letter-spacing:23.884834px;}
.ls2{letter-spacing:32.727300px;}
.lsb{letter-spacing:399.273060px;}
.ls10{letter-spacing:461.847658px;}
.lse{letter-spacing:466.953116px;}
.ls11{letter-spacing:962.182620px;}
.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;}
}
.ws1d{word-spacing:-18.183288px;}
.ws18{word-spacing:-3.652367px;}
.ws33{word-spacing:-3.390548px;}
.ws30{word-spacing:-2.343275px;}
.ws1e{word-spacing:-1.492365px;}
.ws2b{word-spacing:-1.361456px;}
.ws1b{word-spacing:-0.706910px;}
.ws12{word-spacing:-0.071731px;}
.ws38{word-spacing:-0.059776px;}
.ws11{word-spacing:0.000000px;}
.ws1f{word-spacing:0.733092px;}
.wsa{word-spacing:0.798546px;}
.wsb{word-spacing:1.518547px;}
.ws28{word-spacing:2.696730px;}
.ws2f{word-spacing:3.024003px;}
.ws36{word-spacing:3.299613px;}
.ws39{word-spacing:3.359389px;}
.ws5{word-spacing:3.613094px;}
.ws14{word-spacing:3.678549px;}
.wsf{word-spacing:3.809458px;}
.ws9{word-spacing:4.136731px;}
.ws13{word-spacing:4.162913px;}
.ws31{word-spacing:5.773096px;}
.ws20{word-spacing:5.838550px;}
.wse{word-spacing:6.165823px;}
.ws1c{word-spacing:6.296733px;}
.ws8{word-spacing:6.624006px;}
.wsc{word-spacing:6.951279px;}
.ws2c{word-spacing:7.082188px;}
.ws2e{word-spacing:7.213097px;}
.wsd{word-spacing:7.474915px;}
.ws10{word-spacing:7.736734px;}
.ws25{word-spacing:7.802188px;}
.ws34{word-spacing:9.373099px;}
.ws19{word-spacing:9.504008px;}
.ws29{word-spacing:10.800009px;}
.ws6{word-spacing:10.878555px;}
.ws23{word-spacing:11.140373px;}
.ws1a{word-spacing:12.122192px;}
.ws24{word-spacing:12.187647px;}
.ws21{word-spacing:12.318556px;}
.ws26{word-spacing:12.384010px;}
.ws22{word-spacing:12.842193px;}
.ws35{word-spacing:13.431284px;}
.ws2d{word-spacing:13.627648px;}
.ws2a{word-spacing:14.465467px;}
.ws37{word-spacing:21.339889px;}
.ws3{word-spacing:26.253619px;}
.ws17{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws16{word-spacing:39.639306px;}
.ws15{word-spacing:48.711313px;}
.ws1{word-spacing:54.283749px;}
.ws27{word-spacing:54.366591px;}
.ws2{word-spacing:54.432472px;}
.ws7{word-spacing:62.830139px;}
.ws32{word-spacing:80.625869px;}
._3{margin-left:-5.432732px;}
._5{margin-left:-3.600003px;}
._1{margin-left:-2.223667px;}
._f{margin-left:-1.179972px;}
._7{width:1.179972px;}
._2{width:2.223667px;}
._0{width:4.759123px;}
._24{width:15.643649px;}
._1f{width:19.178198px;}
._28{width:20.745530px;}
._20{width:22.840077px;}
._25{width:25.265476px;}
._9{width:26.963717px;}
._4{width:28.801813px;}
._2a{width:32.697253px;}
._29{width:33.905483px;}
._26{width:34.950967px;}
._8{width:36.849151px;}
._6{width:38.618214px;}
._27{width:40.318244px;}
._1e{width:47.189188px;}
._23{width:54.258285px;}
._22{width:56.749138px;}
._a{width:60.545505px;}
._d{width:66.894601px;}
._21{width:75.272790px;}
._1d{width:80.697600px;}
._1a{width:1331.081167px;}
._c{width:1380.370270px;}
._19{width:1442.813959px;}
._12{width:1455.513940px;}
._11{width:1473.577621px;}
._17{width:1504.144919px;}
._18{width:1556.050417px;}
._10{width:1576.670405px;}
._14{width:1635.839574px;}
._e{width:1645.199582px;}
._15{width:1712.617820px;}
._16{width:1830.699707px;}
._b{width:1937.781644px;}
._1b{width:1998.719876px;}
._13{width:2040.154427px;}
._1c{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y33{bottom:93.813000px;}
.y77{bottom:93.814500px;}
.y58{bottom:187.287000px;}
.y57{bottom:207.610500px;}
.y32{bottom:211.999500px;}
.y31{bottom:232.324500px;}
.y56{bottom:237.648000px;}
.y76{bottom:244.245000px;}
.y55{bottom:257.971500px;}
.y75{bottom:264.568500px;}
.y30{bottom:266.097000px;}
.y74{bottom:284.892000px;}
.y2f{bottom:286.420500px;}
.y54{bottom:286.750500px;}
.y73{bottom:305.215500px;}
.y53{bottom:318.361500px;}
.y2e{bottom:320.194500px;}
.y52{bottom:323.512500px;}
.y72{bottom:325.540500px;}
.y2d{bottom:340.518000px;}
.y51{bottom:343.168500px;}
.y71{bottom:345.864000px;}
.y50{bottom:348.319500px;}
.y4f{bottom:373.126500px;}
.y2c{bottom:374.292000px;}
.y70{bottom:382.392000px;}
.y2b{bottom:394.615500px;}
.y11{bottom:403.464000px;}
.y4e{bottom:409.888500px;}
.y10{bottom:423.789000px;}
.y6f{bottom:427.972500px;}
.y2a{bottom:428.388000px;}
.y4d{bottom:438.667500px;}
.yf{bottom:444.112500px;}
.y6e{bottom:448.296000px;}
.y29{bottom:448.713000px;}
.ye{bottom:464.436000px;}
.y28{bottom:469.036500px;}
.y4c{bottom:475.195500px;}
.y6d{bottom:477.075000px;}
.yd{bottom:484.759500px;}
.y27{bottom:489.360000px;}
.y4b{bottom:495.519000px;}
.yc{bottom:505.083000px;}
.y26{bottom:509.683500px;}
.y6c{bottom:513.603000px;}
.y4a{bottom:524.142000px;}
.yb{bottom:525.408000px;}
.y49{bottom:529.293000px;}
.y25{bottom:530.007000px;}
.y6b{bottom:533.926500px;}
.ya{bottom:545.731500px;}
.y6a{bottom:562.705500px;}
.y48{bottom:563.065500px;}
.y9{bottom:566.055000px;}
.y24{bottom:566.536500px;}
.y8{bottom:586.378500px;}
.y47{bottom:596.839500px;}
.y69{bottom:599.233500px;}
.y23{bottom:612.117000px;}
.y68{bottom:619.557000px;}
.y46{bottom:625.617000px;}
.y7{bottom:626.130000px;}
.y67{bottom:648.336000px;}
.y22{bottom:658.644000px;}
.y45{bottom:662.145000px;}
.y6{bottom:662.853000px;}
.y66{bottom:679.713000px;}
.y65{bottom:684.864000px;}
.y5{bottom:691.584000px;}
.y21{bottom:695.331000px;}
.y44{bottom:698.674500px;}
.y64{bottom:705.187500px;}
.y20{bottom:715.654500px;}
.y63{bottom:733.965000px;}
.y1f{bottom:735.978000px;}
.y43{bottom:744.255000px;}
.y1e{bottom:756.303000px;}
.y42{bottom:764.578500px;}
.y62{bottom:770.494500px;}
.y1d{bottom:776.626500px;}
.y41{bottom:779.751000px;}
.y40{bottom:784.902000px;}
.y61{bottom:790.818000px;}
.y4{bottom:813.258000px;}
.y1c{bottom:813.313500px;}
.y3f{bottom:813.681000px;}
.y60{bottom:827.346000px;}
.y1b{bottom:850.000500px;}
.y3e{bottom:850.209000px;}
.y3{bottom:850.537500px;}
.y1a{bottom:870.325500px;}
.y3d{bottom:870.532500px;}
.y5f{bottom:872.926500px;}
.y19{bottom:890.649000px;}
.y3c{bottom:890.856000px;}
.y5e{bottom:893.250000px;}
.y2{bottom:895.369500px;}
.y18{bottom:910.972500px;}
.y5d{bottom:913.573500px;}
.y3b{bottom:919.635000px;}
.y7f{bottom:929.415000px;}
.y5c{bottom:947.347500px;}
.y17{bottom:947.659500px;}
.y7e{bottom:954.819000px;}
.y3a{bottom:956.163000px;}
.y16{bottom:967.984500px;}
.y7d{bottom:972.751500px;}
.y39{bottom:976.486500px;}
.y5b{bottom:981.121500px;}
.y15{bottom:988.308000px;}
.y38{bottom:996.810000px;}
.y7c{bottom:998.157000px;}
.y14{bottom:1008.631500px;}
.y5a{bottom:1014.894000px;}
.y7b{bottom:1016.089500px;}
.y37{bottom:1025.589000px;}
.y7a{bottom:1041.495000px;}
.y13{bottom:1045.318500px;}
.y59{bottom:1048.668000px;}
.y36{bottom:1062.117000px;}
.y79{bottom:1066.899000px;}
.y12{bottom:1082.007000px;}
.y35{bottom:1082.440500px;}
.y78{bottom:1084.831500px;}
.y1{bottom:1087.587000px;}
.y34{bottom:1118.968500px;}
.h6{height:32.661470px;}
.h2{height:41.484266px;}
.hc{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:53.169988px;}
.hb{height:69.694950px;}
.h5{height:72.062735px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x12{left:137.107500px;}
.x4{left:139.332000px;}
.x11{left:140.974500px;}
.x5{left:151.972500px;}
.x13{left:161.064000px;}
.x6{left:164.010000px;}
.x7{left:168.336000px;}
.xc{left:260.886000px;}
.xb{left:263.259000px;}
.xe{left:264.393000px;}
.x1{left:286.581000px;}
.xd{left:317.511000px;}
.xf{left:339.538500px;}
.x10{left:401.622000px;}
.x8{left:438.466500px;}
.xa{left:500.385000px;}
.x9{left:749.295000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.314667pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.595248pt;}
.ls14{letter-spacing:1.617899pt;}
.ls7{letter-spacing:1.622725pt;}
.lsd{letter-spacing:1.634256pt;}
.ls3{letter-spacing:2.094547pt;}
.ls4{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.lsa{letter-spacing:16.116377pt;}
.ls9{letter-spacing:16.174559pt;}
.lsc{letter-spacing:17.803651pt;}
.ls13{letter-spacing:18.909107pt;}
.ls12{letter-spacing:19.432743pt;}
.lsf{letter-spacing:19.549107pt;}
.ls8{letter-spacing:19.607289pt;}
.ls6{letter-spacing:21.230964pt;}
.ls2{letter-spacing:29.090933pt;}
.lsb{letter-spacing:354.909387pt;}
.ls10{letter-spacing:410.531251pt;}
.lse{letter-spacing:415.069437pt;}
.ls11{letter-spacing:855.273440pt;}
.ws1d{word-spacing:-16.162923pt;}
.ws18{word-spacing:-3.246548pt;}
.ws33{word-spacing:-3.013821pt;}
.ws30{word-spacing:-2.082911pt;}
.ws1e{word-spacing:-1.326547pt;}
.ws2b{word-spacing:-1.210183pt;}
.ws1b{word-spacing:-0.628364pt;}
.ws12{word-spacing:-0.063761pt;}
.ws38{word-spacing:-0.053134pt;}
.ws11{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.651637pt;}
.wsa{word-spacing:0.709819pt;}
.wsb{word-spacing:1.349819pt;}
.ws28{word-spacing:2.397093pt;}
.ws2f{word-spacing:2.688002pt;}
.ws36{word-spacing:2.932989pt;}
.ws39{word-spacing:2.986123pt;}
.ws5{word-spacing:3.211639pt;}
.ws14{word-spacing:3.269821pt;}
.wsf{word-spacing:3.386185pt;}
.ws9{word-spacing:3.677094pt;}
.ws13{word-spacing:3.700367pt;}
.ws31{word-spacing:5.131641pt;}
.ws20{word-spacing:5.189823pt;}
.wse{word-spacing:5.480732pt;}
.ws1c{word-spacing:5.597096pt;}
.ws8{word-spacing:5.888005pt;}
.wsc{word-spacing:6.178914pt;}
.ws2c{word-spacing:6.295278pt;}
.ws2e{word-spacing:6.411642pt;}
.wsd{word-spacing:6.644369pt;}
.ws10{word-spacing:6.877097pt;}
.ws25{word-spacing:6.935279pt;}
.ws34{word-spacing:8.331643pt;}
.ws19{word-spacing:8.448007pt;}
.ws29{word-spacing:9.600008pt;}
.ws6{word-spacing:9.669826pt;}
.ws23{word-spacing:9.902554pt;}
.ws1a{word-spacing:10.775282pt;}
.ws24{word-spacing:10.833464pt;}
.ws21{word-spacing:10.949827pt;}
.ws26{word-spacing:11.008009pt;}
.ws22{word-spacing:11.415282pt;}
.ws35{word-spacing:11.938919pt;}
.ws2d{word-spacing:12.113465pt;}
.ws2a{word-spacing:12.858193pt;}
.ws37{word-spacing:18.968790pt;}
.ws3{word-spacing:23.336550pt;}
.ws17{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws16{word-spacing:35.234938pt;}
.ws15{word-spacing:43.298945pt;}
.ws1{word-spacing:48.252221pt;}
.ws27{word-spacing:48.325858pt;}
.ws2{word-spacing:48.384419pt;}
.ws7{word-spacing:55.849013pt;}
.ws32{word-spacing:71.667439pt;}
._3{margin-left:-4.829095pt;}
._5{margin-left:-3.200003pt;}
._1{margin-left:-1.976593pt;}
._f{margin-left:-1.048864pt;}
._7{width:1.048864pt;}
._2{width:1.976593pt;}
._0{width:4.230332pt;}
._24{width:13.905466pt;}
._1f{width:17.047287pt;}
._28{width:18.440471pt;}
._20{width:20.302291pt;}
._25{width:22.458201pt;}
._9{width:23.967748pt;}
._4{width:25.601612pt;}
._2a{width:29.064225pt;}
._29{width:30.138207pt;}
._26{width:31.067526pt;}
._8{width:32.754801pt;}
._6{width:34.327301pt;}
._27{width:35.838439pt;}
._1e{width:41.945945pt;}
._23{width:48.229587pt;}
._22{width:50.443678pt;}
._a{width:53.818227pt;}
._d{width:59.461868pt;}
._21{width:66.909147pt;}
._1d{width:71.731200pt;}
._1a{width:1183.183260pt;}
._c{width:1226.995796pt;}
._19{width:1282.501297pt;}
._12{width:1293.790169pt;}
._11{width:1309.846774pt;}
._17{width:1337.017706pt;}
._18{width:1383.155926pt;}
._10{width:1401.484804pt;}
._14{width:1454.079621pt;}
._e{width:1462.399628pt;}
._15{width:1522.326951pt;}
._16{width:1627.288629pt;}
._b{width:1722.472572pt;}
._1b{width:1776.639890pt;}
._13{width:1813.470602pt;}
._1c{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:83.389333pt;}
.y77{bottom:83.390667pt;}
.y58{bottom:166.477333pt;}
.y57{bottom:184.542667pt;}
.y32{bottom:188.444000pt;}
.y31{bottom:206.510667pt;}
.y56{bottom:211.242667pt;}
.y76{bottom:217.106667pt;}
.y55{bottom:229.308000pt;}
.y75{bottom:235.172000pt;}
.y30{bottom:236.530667pt;}
.y74{bottom:253.237333pt;}
.y2f{bottom:254.596000pt;}
.y54{bottom:254.889333pt;}
.y73{bottom:271.302667pt;}
.y53{bottom:282.988000pt;}
.y2e{bottom:284.617333pt;}
.y52{bottom:287.566667pt;}
.y72{bottom:289.369333pt;}
.y2d{bottom:302.682667pt;}
.y51{bottom:305.038667pt;}
.y71{bottom:307.434667pt;}
.y50{bottom:309.617333pt;}
.y4f{bottom:331.668000pt;}
.y2c{bottom:332.704000pt;}
.y70{bottom:339.904000pt;}
.y2b{bottom:350.769333pt;}
.y11{bottom:358.634667pt;}
.y4e{bottom:364.345333pt;}
.y10{bottom:376.701333pt;}
.y6f{bottom:380.420000pt;}
.y2a{bottom:380.789333pt;}
.y4d{bottom:389.926667pt;}
.yf{bottom:394.766667pt;}
.y6e{bottom:398.485333pt;}
.y29{bottom:398.856000pt;}
.ye{bottom:412.832000pt;}
.y28{bottom:416.921333pt;}
.y4c{bottom:422.396000pt;}
.y6d{bottom:424.066667pt;}
.yd{bottom:430.897333pt;}
.y27{bottom:434.986667pt;}
.y4b{bottom:440.461333pt;}
.yc{bottom:448.962667pt;}
.y26{bottom:453.052000pt;}
.y6c{bottom:456.536000pt;}
.y4a{bottom:465.904000pt;}
.yb{bottom:467.029333pt;}
.y49{bottom:470.482667pt;}
.y25{bottom:471.117333pt;}
.y6b{bottom:474.601333pt;}
.ya{bottom:485.094667pt;}
.y6a{bottom:500.182667pt;}
.y48{bottom:500.502667pt;}
.y9{bottom:503.160000pt;}
.y24{bottom:503.588000pt;}
.y8{bottom:521.225333pt;}
.y47{bottom:530.524000pt;}
.y69{bottom:532.652000pt;}
.y23{bottom:544.104000pt;}
.y68{bottom:550.717333pt;}
.y46{bottom:556.104000pt;}
.y7{bottom:556.560000pt;}
.y67{bottom:576.298667pt;}
.y22{bottom:585.461333pt;}
.y45{bottom:588.573333pt;}
.y6{bottom:589.202667pt;}
.y66{bottom:604.189333pt;}
.y65{bottom:608.768000pt;}
.y5{bottom:614.741333pt;}
.y21{bottom:618.072000pt;}
.y44{bottom:621.044000pt;}
.y64{bottom:626.833333pt;}
.y20{bottom:636.137333pt;}
.y63{bottom:652.413333pt;}
.y1f{bottom:654.202667pt;}
.y43{bottom:661.560000pt;}
.y1e{bottom:672.269333pt;}
.y42{bottom:679.625333pt;}
.y62{bottom:684.884000pt;}
.y1d{bottom:690.334667pt;}
.y41{bottom:693.112000pt;}
.y40{bottom:697.690667pt;}
.y61{bottom:702.949333pt;}
.y4{bottom:722.896000pt;}
.y1c{bottom:722.945333pt;}
.y3f{bottom:723.272000pt;}
.y60{bottom:735.418667pt;}
.y1b{bottom:755.556000pt;}
.y3e{bottom:755.741333pt;}
.y3{bottom:756.033333pt;}
.y1a{bottom:773.622667pt;}
.y3d{bottom:773.806667pt;}
.y5f{bottom:775.934667pt;}
.y19{bottom:791.688000pt;}
.y3c{bottom:791.872000pt;}
.y5e{bottom:794.000000pt;}
.y2{bottom:795.884000pt;}
.y18{bottom:809.753333pt;}
.y5d{bottom:812.065333pt;}
.y3b{bottom:817.453333pt;}
.y7f{bottom:826.146667pt;}
.y5c{bottom:842.086667pt;}
.y17{bottom:842.364000pt;}
.y7e{bottom:848.728000pt;}
.y3a{bottom:849.922667pt;}
.y16{bottom:860.430667pt;}
.y7d{bottom:864.668000pt;}
.y39{bottom:867.988000pt;}
.y5b{bottom:872.108000pt;}
.y15{bottom:878.496000pt;}
.y38{bottom:886.053333pt;}
.y7c{bottom:887.250667pt;}
.y14{bottom:896.561333pt;}
.y5a{bottom:902.128000pt;}
.y7b{bottom:903.190667pt;}
.y37{bottom:911.634667pt;}
.y7a{bottom:925.773333pt;}
.y13{bottom:929.172000pt;}
.y59{bottom:932.149333pt;}
.y36{bottom:944.104000pt;}
.y79{bottom:948.354667pt;}
.y12{bottom:961.784000pt;}
.y35{bottom:962.169333pt;}
.y78{bottom:964.294667pt;}
.y1{bottom:966.744000pt;}
.y34{bottom:994.638667pt;}
.h6{height:29.032418pt;}
.h2{height:36.874903pt;}
.hc{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:47.262211pt;}
.hb{height:61.951067pt;}
.h5{height:64.055764pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x12{left:121.873333pt;}
.x4{left:123.850667pt;}
.x11{left:125.310667pt;}
.x5{left:135.086667pt;}
.x13{left:143.168000pt;}
.x6{left:145.786667pt;}
.x7{left:149.632000pt;}
.xc{left:231.898667pt;}
.xb{left:234.008000pt;}
.xe{left:235.016000pt;}
.x1{left:254.738667pt;}
.xd{left:282.232000pt;}
.xf{left:301.812000pt;}
.x10{left:356.997333pt;}
.x8{left:389.748000pt;}
.xa{left:444.786667pt;}
.x9{left:666.040000pt;}
}




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