
    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_02a79c6d72834ae2858b88a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_d43b2071f5cae291ff273fde.woff')format("woff");}.ff2{font-family:ff2;line-height:0.801758;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_8ce024ae8a06668da5145c76.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_3c38c27cf4fb77dbbe1795fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.860840;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_dcc86f8cd5aedeb79a82e8e1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.734863;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_9afdf6e77762a3a53687a254.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112793;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_0ac244fdc86ef01ceaaf93a0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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_cc43d16c57f5afed4b3ac2eb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_d252d00a1404525c5e6ff7aa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.107000;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_bbd068142402bf975df240ae.woff')format("woff");}.ffa{font-family:ffa;line-height:1.075000;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_d0024226258279cc7206a0b5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.085000;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_933a35c9549285d5b956101e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.074000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-3.096000px;}
.ls3{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.368000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.257331px;}
.ls1{letter-spacing:7.487533px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(157,157,156),0 0.015em rgb(157,157,156),0.015em 0 rgb(157,157,156),0 -0.015em  rgb(157,157,156);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(157,157,156);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-28.512000px;}
.ws2{word-spacing:-16.344000px;}
.ws22{word-spacing:-15.624000px;}
.ws5{word-spacing:-7.487533px;}
.wse{word-spacing:-6.408000px;}
.ws25{word-spacing:-4.968000px;}
.ws15{word-spacing:-4.104000px;}
.wsc{word-spacing:-4.032000px;}
.ws34{word-spacing:-3.960000px;}
.ws30{word-spacing:-3.888000px;}
.wsf{word-spacing:-3.816000px;}
.ws13{word-spacing:-3.672000px;}
.ws24{word-spacing:-3.456000px;}
.wsb{word-spacing:-3.168000px;}
.ws28{word-spacing:-2.808000px;}
.ws3d{word-spacing:-2.736000px;}
.ws2e{word-spacing:-2.592000px;}
.ws2f{word-spacing:-2.376000px;}
.ws6{word-spacing:-2.257331px;}
.ws36{word-spacing:-2.160000px;}
.ws35{word-spacing:-2.016000px;}
.ws19{word-spacing:-1.656000px;}
.ws32{word-spacing:-1.584000px;}
.ws1d{word-spacing:-1.368000px;}
.ws1b{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.080000px;}
.ws1e{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.504000px;}
.ws26{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.144000px;}
.ws3c{word-spacing:0.432000px;}
.ws39{word-spacing:0.504000px;}
.ws2d{word-spacing:1.080000px;}
.ws23{word-spacing:1.224000px;}
.ws3a{word-spacing:1.296000px;}
.ws12{word-spacing:1.368000px;}
.ws8{word-spacing:1.440000px;}
.ws38{word-spacing:1.656000px;}
.ws3b{word-spacing:1.944000px;}
.wsd{word-spacing:2.088000px;}
.ws2a{word-spacing:2.736000px;}
.wsa{word-spacing:3.096000px;}
.ws27{word-spacing:3.384000px;}
.ws2b{word-spacing:4.176000px;}
.ws2c{word-spacing:5.328000px;}
.ws1f{word-spacing:5.472000px;}
.ws17{word-spacing:6.192000px;}
.ws21{word-spacing:6.264000px;}
.ws11{word-spacing:7.272000px;}
.ws1a{word-spacing:7.560000px;}
.ws20{word-spacing:8.064000px;}
.ws10{word-spacing:9.144000px;}
.ws9{word-spacing:14.472000px;}
.ws37{word-spacing:18.576000px;}
.ws33{word-spacing:19.296000px;}
.ws14{word-spacing:20.592000px;}
.ws0{word-spacing:726.208200px;}
.ws4{word-spacing:1110.984000px;}
._b{margin-left:-2854.261200px;}
._7{margin-left:-13.760400px;}
._6{margin-left:-12.608400px;}
._a{margin-left:-9.968400px;}
._5{margin-left:-7.568400px;}
._0{margin-left:-6.006000px;}
._d{margin-left:-4.698000px;}
._2{margin-left:-3.684000px;}
._9{margin-left:-2.523600px;}
._1{margin-left:-1.364400px;}
._3{width:1.420800px;}
._8{width:3.096000px;}
._4{width:28.391400px;}
._c{width:32.088000px;}
.fc7{color:rgb(0,91,36);}
.fc4{color:rgb(0,79,159);}
.fc2{color:rgb(147,16,4);}
.fc6{color:rgb(205,23,25);}
.fc5{color:transparent;}
.fc1{color:rgb(102,96,93);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.442200px;}
.fs4{font-size:44.261400px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.323200px;}
.y5{bottom:9.381900px;}
.y2{bottom:41.811000px;}
.y3{bottom:42.873000px;}
.y30{bottom:116.943450px;}
.y86{bottom:124.121400px;}
.y5b{bottom:134.682150px;}
.y2f{bottom:138.543300px;}
.y85{bottom:145.721400px;}
.y5a{bottom:156.282150px;}
.y2e{bottom:160.143450px;}
.y84{bottom:175.825350px;}
.y59{bottom:177.882150px;}
.y2d{bottom:181.743300px;}
.y83{bottom:197.425200px;}
.y2c{bottom:203.343450px;}
.y58{bottom:212.734200px;}
.y2b{bottom:224.943450px;}
.y82{bottom:227.529300px;}
.y57{bottom:234.334050px;}
.y2a{bottom:246.543300px;}
.y81{bottom:257.633100px;}
.y56{bottom:269.186100px;}
.y80{bottom:279.233250px;}
.y29{bottom:280.899300px;}
.y55{bottom:290.786100px;}
.y7f{bottom:300.833100px;}
.y28{bottom:302.499300px;}
.y7e{bottom:322.433100px;}
.y27{bottom:324.099300px;}
.y54{bottom:325.638000px;}
.y7d{bottom:344.033100px;}
.y26{bottom:345.699300px;}
.y53{bottom:347.238150px;}
.y7c{bottom:365.633100px;}
.y25{bottom:367.299300px;}
.y52{bottom:382.090050px;}
.y7b{bottom:387.233250px;}
.y24{bottom:388.899300px;}
.y51{bottom:403.690050px;}
.y7a{bottom:408.833100px;}
.y23{bottom:410.499300px;}
.y79{bottom:430.433100px;}
.y50{bottom:438.541950px;}
.y22{bottom:444.855150px;}
.y4f{bottom:460.141950px;}
.y78{bottom:460.537050px;}
.y31{bottom:464.193750px;}
.y21{bottom:466.455150px;}
.y77{bottom:482.137050px;}
.y20{bottom:488.055150px;}
.y4e{bottom:494.994000px;}
.y76{bottom:503.737050px;}
.y1f{bottom:509.655150px;}
.y75{bottom:525.337050px;}
.y1e{bottom:531.255150px;}
.y4d{bottom:543.097950px;}
.y74{bottom:546.937050px;}
.y1d{bottom:552.855150px;}
.y4c{bottom:564.697950px;}
.y73{bottom:577.041000px;}
.y4b{bottom:586.297950px;}
.y1c{bottom:587.211150px;}
.y72{bottom:598.641000px;}
.y4a{bottom:607.897950px;}
.y1b{bottom:608.811150px;}
.y71{bottom:620.241000px;}
.y49{bottom:629.497950px;}
.y1a{bottom:630.411150px;}
.y70{bottom:641.841000px;}
.y48{bottom:651.097950px;}
.y19{bottom:652.011150px;}
.y6f{bottom:663.441000px;}
.y47{bottom:672.697950px;}
.y18{bottom:673.611150px;}
.y6e{bottom:685.041000px;}
.y17{bottom:695.211150px;}
.y6d{bottom:706.641000px;}
.y46{bottom:707.053800px;}
.y6c{bottom:728.241000px;}
.y45{bottom:728.653800px;}
.y16{bottom:729.567000px;}
.y44{bottom:750.253800px;}
.y15{bottom:751.167000px;}
.y6b{bottom:758.344950px;}
.y43{bottom:771.853800px;}
.y14{bottom:772.767000px;}
.y6a{bottom:793.197000px;}
.y42{bottom:793.453800px;}
.y13{bottom:794.367000px;}
.y41{bottom:815.053800px;}
.y12{bottom:815.967000px;}
.y69{bottom:823.300800px;}
.y40{bottom:836.653800px;}
.y11{bottom:837.567000px;}
.y68{bottom:853.404750px;}
.y3f{bottom:871.009800px;}
.y10{bottom:871.922850px;}
.y67{bottom:875.004750px;}
.y3e{bottom:892.609650px;}
.yf{bottom:893.522850px;}
.y66{bottom:905.108700px;}
.y3d{bottom:914.209650px;}
.ye{bottom:915.122850px;}
.y65{bottom:935.212650px;}
.y3c{bottom:935.809800px;}
.yd{bottom:936.722850px;}
.y3b{bottom:957.409650px;}
.yc{bottom:958.323000px;}
.y64{bottom:965.316600px;}
.y3a{bottom:979.009800px;}
.yb{bottom:979.922850px;}
.y63{bottom:986.916600px;}
.y39{bottom:1000.609650px;}
.y62{bottom:1008.516600px;}
.ya{bottom:1014.774900px;}
.y61{bottom:1030.116600px;}
.y38{bottom:1034.965650px;}
.y8c{bottom:1048.205550px;}
.y60{bottom:1051.716600px;}
.y37{bottom:1056.565650px;}
.y9{bottom:1058.626800px;}
.y8b{bottom:1069.805550px;}
.y5f{bottom:1073.316600px;}
.y36{bottom:1078.165650px;}
.y8{bottom:1084.478850px;}
.y8a{bottom:1091.405700px;}
.y5e{bottom:1094.916600px;}
.y35{bottom:1099.765650px;}
.y7{bottom:1113.278850px;}
.y34{bottom:1121.365650px;}
.y89{bottom:1121.509500px;}
.y5d{bottom:1125.020550px;}
.y33{bottom:1142.965650px;}
.y88{bottom:1143.109500px;}
.y6{bottom:1154.834700px;}
.y32{bottom:1164.565650px;}
.y5c{bottom:1164.620550px;}
.y87{bottom:1164.709500px;}
.y1{bottom:1219.658400px;}
.h5{height:12.805082px;}
.h4{height:19.603500px;}
.h6{height:32.526078px;}
.h2{height:52.558594px;}
.hc{height:58.896000px;}
.h9{height:58.968000px;}
.he{height:59.400000px;}
.hd{height:60.552000px;}
.h3{height:63.000000px;}
.hb{height:63.216000px;}
.ha{height:66.585938px;}
.h8{height:84.281250px;}
.h7{height:94.816406px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:62.079000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:22.827300px;}
.xc{left:72.283500px;}
.x1{left:85.039350px;}
.x6{left:88.155900px;}
.xa{left:110.551200px;}
.xb{left:127.559100px;}
.x2{left:147.118050px;}
.x8{left:329.818500px;}
.xd{left:339.388350px;}
.x9{left:344.688150px;}
.x5{left:358.008000px;}
.xe{left:362.745300px;}
.x7{left:379.185150px;}
.x3{left:745.795500px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.752000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.216000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.006517pt;}
.ls1{letter-spacing:6.655585pt;}
.ws1{word-spacing:-25.344000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws22{word-spacing:-13.888000pt;}
.ws5{word-spacing:-6.655585pt;}
.wse{word-spacing:-5.696000pt;}
.ws25{word-spacing:-4.416000pt;}
.ws15{word-spacing:-3.648000pt;}
.wsc{word-spacing:-3.584000pt;}
.ws34{word-spacing:-3.520000pt;}
.ws30{word-spacing:-3.456000pt;}
.wsf{word-spacing:-3.392000pt;}
.ws13{word-spacing:-3.264000pt;}
.ws24{word-spacing:-3.072000pt;}
.wsb{word-spacing:-2.816000pt;}
.ws28{word-spacing:-2.496000pt;}
.ws3d{word-spacing:-2.432000pt;}
.ws2e{word-spacing:-2.304000pt;}
.ws2f{word-spacing:-2.112000pt;}
.ws6{word-spacing:-2.006517pt;}
.ws36{word-spacing:-1.920000pt;}
.ws35{word-spacing:-1.792000pt;}
.ws19{word-spacing:-1.472000pt;}
.ws32{word-spacing:-1.408000pt;}
.ws1d{word-spacing:-1.216000pt;}
.ws1b{word-spacing:-1.152000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.448000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.128000pt;}
.ws3c{word-spacing:0.384000pt;}
.ws39{word-spacing:0.448000pt;}
.ws2d{word-spacing:0.960000pt;}
.ws23{word-spacing:1.088000pt;}
.ws3a{word-spacing:1.152000pt;}
.ws12{word-spacing:1.216000pt;}
.ws8{word-spacing:1.280000pt;}
.ws38{word-spacing:1.472000pt;}
.ws3b{word-spacing:1.728000pt;}
.wsd{word-spacing:1.856000pt;}
.ws2a{word-spacing:2.432000pt;}
.wsa{word-spacing:2.752000pt;}
.ws27{word-spacing:3.008000pt;}
.ws2b{word-spacing:3.712000pt;}
.ws2c{word-spacing:4.736000pt;}
.ws1f{word-spacing:4.864000pt;}
.ws17{word-spacing:5.504000pt;}
.ws21{word-spacing:5.568000pt;}
.ws11{word-spacing:6.464000pt;}
.ws1a{word-spacing:6.720000pt;}
.ws20{word-spacing:7.168000pt;}
.ws10{word-spacing:8.128000pt;}
.ws9{word-spacing:12.864000pt;}
.ws37{word-spacing:16.512000pt;}
.ws33{word-spacing:17.152000pt;}
.ws14{word-spacing:18.304000pt;}
.ws0{word-spacing:645.518400pt;}
.ws4{word-spacing:987.541333pt;}
._b{margin-left:-2537.121067pt;}
._7{margin-left:-12.231467pt;}
._6{margin-left:-11.207467pt;}
._a{margin-left:-8.860800pt;}
._5{margin-left:-6.727467pt;}
._0{margin-left:-5.338667pt;}
._d{margin-left:-4.176000pt;}
._2{margin-left:-3.274667pt;}
._9{margin-left:-2.243200pt;}
._1{margin-left:-1.212800pt;}
._3{width:1.262933pt;}
._8{width:2.752000pt;}
._4{width:25.236800pt;}
._c{width:28.522667pt;}
.fs3{font-size:16.393067pt;}
.fs4{font-size:39.343467pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.065067pt;}
.y5{bottom:8.339467pt;}
.y2{bottom:37.165333pt;}
.y3{bottom:38.109333pt;}
.y30{bottom:103.949733pt;}
.y86{bottom:110.330133pt;}
.y5b{bottom:119.717467pt;}
.y2f{bottom:123.149600pt;}
.y85{bottom:129.530133pt;}
.y5a{bottom:138.917467pt;}
.y2e{bottom:142.349733pt;}
.y84{bottom:156.289200pt;}
.y59{bottom:158.117467pt;}
.y2d{bottom:161.549600pt;}
.y83{bottom:175.489067pt;}
.y2c{bottom:180.749733pt;}
.y58{bottom:189.097067pt;}
.y2b{bottom:199.949733pt;}
.y82{bottom:202.248267pt;}
.y57{bottom:208.296933pt;}
.y2a{bottom:219.149600pt;}
.y81{bottom:229.007200pt;}
.y56{bottom:239.276533pt;}
.y80{bottom:248.207333pt;}
.y29{bottom:249.688267pt;}
.y55{bottom:258.476533pt;}
.y7f{bottom:267.407200pt;}
.y28{bottom:268.888267pt;}
.y7e{bottom:286.607200pt;}
.y27{bottom:288.088267pt;}
.y54{bottom:289.456000pt;}
.y7d{bottom:305.807200pt;}
.y26{bottom:307.288267pt;}
.y53{bottom:308.656133pt;}
.y7c{bottom:325.007200pt;}
.y25{bottom:326.488267pt;}
.y52{bottom:339.635600pt;}
.y7b{bottom:344.207333pt;}
.y24{bottom:345.688267pt;}
.y51{bottom:358.835600pt;}
.y7a{bottom:363.407200pt;}
.y23{bottom:364.888267pt;}
.y79{bottom:382.607200pt;}
.y50{bottom:389.815067pt;}
.y22{bottom:395.426800pt;}
.y4f{bottom:409.015067pt;}
.y78{bottom:409.366267pt;}
.y31{bottom:412.616667pt;}
.y21{bottom:414.626800pt;}
.y77{bottom:428.566267pt;}
.y20{bottom:433.826800pt;}
.y4e{bottom:439.994667pt;}
.y76{bottom:447.766267pt;}
.y1f{bottom:453.026800pt;}
.y75{bottom:466.966267pt;}
.y1e{bottom:472.226800pt;}
.y4d{bottom:482.753733pt;}
.y74{bottom:486.166267pt;}
.y1d{bottom:491.426800pt;}
.y4c{bottom:501.953733pt;}
.y73{bottom:512.925333pt;}
.y4b{bottom:521.153733pt;}
.y1c{bottom:521.965467pt;}
.y72{bottom:532.125333pt;}
.y4a{bottom:540.353733pt;}
.y1b{bottom:541.165467pt;}
.y71{bottom:551.325333pt;}
.y49{bottom:559.553733pt;}
.y1a{bottom:560.365467pt;}
.y70{bottom:570.525333pt;}
.y48{bottom:578.753733pt;}
.y19{bottom:579.565467pt;}
.y6f{bottom:589.725333pt;}
.y47{bottom:597.953733pt;}
.y18{bottom:598.765467pt;}
.y6e{bottom:608.925333pt;}
.y17{bottom:617.965467pt;}
.y6d{bottom:628.125333pt;}
.y46{bottom:628.492267pt;}
.y6c{bottom:647.325333pt;}
.y45{bottom:647.692267pt;}
.y16{bottom:648.504000pt;}
.y44{bottom:666.892267pt;}
.y15{bottom:667.704000pt;}
.y6b{bottom:674.084400pt;}
.y43{bottom:686.092267pt;}
.y14{bottom:686.904000pt;}
.y6a{bottom:705.064000pt;}
.y42{bottom:705.292267pt;}
.y13{bottom:706.104000pt;}
.y41{bottom:724.492267pt;}
.y12{bottom:725.304000pt;}
.y69{bottom:731.822933pt;}
.y40{bottom:743.692267pt;}
.y11{bottom:744.504000pt;}
.y68{bottom:758.582000pt;}
.y3f{bottom:774.230933pt;}
.y10{bottom:775.042533pt;}
.y67{bottom:777.782000pt;}
.y3e{bottom:793.430800pt;}
.yf{bottom:794.242533pt;}
.y66{bottom:804.541067pt;}
.y3d{bottom:812.630800pt;}
.ye{bottom:813.442533pt;}
.y65{bottom:831.300133pt;}
.y3c{bottom:831.830933pt;}
.yd{bottom:832.642533pt;}
.y3b{bottom:851.030800pt;}
.yc{bottom:851.842667pt;}
.y64{bottom:858.059200pt;}
.y3a{bottom:870.230933pt;}
.yb{bottom:871.042533pt;}
.y63{bottom:877.259200pt;}
.y39{bottom:889.430800pt;}
.y62{bottom:896.459200pt;}
.ya{bottom:902.022133pt;}
.y61{bottom:915.659200pt;}
.y38{bottom:919.969467pt;}
.y8c{bottom:931.738267pt;}
.y60{bottom:934.859200pt;}
.y37{bottom:939.169467pt;}
.y9{bottom:941.001600pt;}
.y8b{bottom:950.938267pt;}
.y5f{bottom:954.059200pt;}
.y36{bottom:958.369467pt;}
.y8{bottom:963.981200pt;}
.y8a{bottom:970.138400pt;}
.y5e{bottom:973.259200pt;}
.y35{bottom:977.569467pt;}
.y7{bottom:989.581200pt;}
.y34{bottom:996.769467pt;}
.y89{bottom:996.897333pt;}
.y5d{bottom:1000.018267pt;}
.y33{bottom:1015.969467pt;}
.y88{bottom:1016.097333pt;}
.y6{bottom:1026.519733pt;}
.y32{bottom:1035.169467pt;}
.y5c{bottom:1035.218267pt;}
.y87{bottom:1035.297333pt;}
.y1{bottom:1084.140800pt;}
.h5{height:11.382295pt;}
.h4{height:17.425333pt;}
.h6{height:28.912069pt;}
.h2{height:46.718750pt;}
.hc{height:52.352000pt;}
.h9{height:52.416000pt;}
.he{height:52.800000pt;}
.hd{height:53.824000pt;}
.h3{height:56.000000pt;}
.hb{height:56.192000pt;}
.ha{height:59.187500pt;}
.h8{height:74.916667pt;}
.h7{height:84.281250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.181333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:20.290933pt;}
.xc{left:64.252000pt;}
.x1{left:75.590533pt;}
.x6{left:78.360800pt;}
.xa{left:98.267733pt;}
.xb{left:113.385867pt;}
.x2{left:130.771600pt;}
.x8{left:293.172000pt;}
.xd{left:301.678533pt;}
.x9{left:306.389467pt;}
.x5{left:318.229333pt;}
.xe{left:322.440267pt;}
.x7{left:337.053467pt;}
.x3{left:662.929333pt;}
}




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