
    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_ac7e0a8de5e2b88693d0982a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.833984;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_e6865f41cdbb12e67476faa7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.833984;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_9ec5b908ef3fa6b1430dd27d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_7df7cf6af919457f92658617.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_28de149b9b9561f2d1e2a195.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_adb6bdb62c1e057139b76d0e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_f0993daed9fe904e44908dcc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_1a704e202120bfd96380119f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6fa9f7dc8d2fdc0524f7eb33.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_deb2d3d2ae68df9249b8a39f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_7aac53111290215bebec2e6a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_565015f1e29a8a7d2ec04101.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-3.780000px;}
.ls34{letter-spacing:-1.458000px;}
.ls1a{letter-spacing:-0.900000px;}
.ls36{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.738000px;}
.ls1c{letter-spacing:-0.690000px;}
.ls17{letter-spacing:-0.684000px;}
.ls15{letter-spacing:-0.378600px;}
.ls16{letter-spacing:-0.369600px;}
.ls14{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.341400px;}
.ls2d{letter-spacing:-0.238800px;}
.ls19{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.037440px;}
.ls35{letter-spacing:-0.028080px;}
.ls13{letter-spacing:-0.018720px;}
.lse{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.013440px;}
.ls2{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.037440px;}
.ls31{letter-spacing:0.106560px;}
.ls30{letter-spacing:0.115920px;}
.lsa{letter-spacing:0.125280px;}
.ls21{letter-spacing:0.129600px;}
.ls32{letter-spacing:0.134640px;}
.ls7{letter-spacing:0.157440px;}
.ls3{letter-spacing:0.161280px;}
.ls9{letter-spacing:0.172080px;}
.ls2e{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.217440px;}
.ls29{letter-spacing:0.252720px;}
.lsb{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.341280px;}
.ls1b{letter-spacing:0.341400px;}
.ls18{letter-spacing:0.350400px;}
.ls27{letter-spacing:0.350640px;}
.ls22{letter-spacing:0.354720px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.369360px;}
.ls37{letter-spacing:0.369600px;}
.ls24{letter-spacing:0.371400px;}
.ls11{letter-spacing:0.378600px;}
.ls1{letter-spacing:0.378720px;}
.ls28{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.513360px;}
.lsd{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.757440px;}
.ls20{letter-spacing:4.140000px;}
.ls33{letter-spacing:8.460000px;}
.ls1d{letter-spacing:10.620000px;}
.ls23{letter-spacing:17.820000px;}
.ls2b{letter-spacing:21.420000px;}
.ls2a{letter-spacing:37.260000px;}
.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;}
}
.wse{word-spacing:-84.600000px;}
.ws2{word-spacing:-84.240000px;}
.ws7{word-spacing:-84.221280px;}
.ws6{word-spacing:-83.502000px;}
.ws18{word-spacing:-82.782000px;}
.ws14{word-spacing:-66.611400px;}
.ws15{word-spacing:-66.240000px;}
.ws19{word-spacing:-66.202560px;}
.ws17{word-spacing:-66.001200px;}
.ws16{word-spacing:-65.891400px;}
.ws0{word-spacing:-27.000000px;}
.ws5{word-spacing:-21.438600px;}
.ws1c{word-spacing:-21.429600px;}
.wsc{word-spacing:-21.420000px;}
.ws10{word-spacing:-21.410400px;}
.ws11{word-spacing:-21.401400px;}
.ws9{word-spacing:-21.097440px;}
.wsb{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws1a{word-spacing:-21.031920px;}
.ws4{word-spacing:-21.022560px;}
.ws3{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.wsd{word-spacing:-20.690400px;}
.wsa{word-spacing:-20.681400px;}
.wsf{word-spacing:-20.376000px;}
.ws12{word-spacing:-20.370000px;}
.ws1b{word-spacing:-20.310000px;}
.ws13{word-spacing:0.000000px;}
._1b{margin-left:-19.818720px;}
._28{margin-left:-6.624480px;}
._5{margin-left:-5.325840px;}
._7{margin-left:-4.296240px;}
._13{margin-left:-3.090480px;}
._6{margin-left:-2.039760px;}
._0{margin-left:-1.008000px;}
._1{width:1.896000px;}
._f{width:3.293520px;}
._d{width:4.971120px;}
._9{width:6.699120px;}
._8{width:7.918560px;}
._20{width:9.198000px;}
._14{width:10.614240px;}
._1f{width:12.045360px;}
._1e{width:13.222800px;}
._1c{width:16.380000px;}
._1d{width:17.953200px;}
._c{width:19.523760px;}
._11{width:22.239360px;}
._12{width:23.334480px;}
._10{width:24.450240px;}
._24{width:25.497600px;}
._19{width:26.532960px;}
._18{width:28.280400px;}
._17{width:29.315520px;}
._26{width:30.421800px;}
._16{width:31.505760px;}
._27{width:32.625360px;}
._23{width:34.107840px;}
._15{width:35.128080px;}
._e{width:36.320880px;}
._21{width:37.596480px;}
._22{width:38.843040px;}
._b{width:40.097280px;}
._a{width:41.628000px;}
._1a{width:57.624000px;}
._25{width:59.631240px;}
._3{width:64.902720px;}
._4{width:66.025440px;}
._2{width:78.645360px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y5{bottom:16.920000px;}
.y4{bottom:34.740000px;}
.y5e{bottom:87.696000px;}
.y40{bottom:95.256000px;}
.y63{bottom:97.776000px;}
.y24{bottom:109.656000px;}
.y5d{bottom:123.876000px;}
.y3f{bottom:131.256000px;}
.y62{bottom:133.956000px;}
.y23{bottom:145.836000px;}
.y5c{bottom:160.050000px;}
.y3e{bottom:169.050000px;}
.y61{bottom:170.130000px;}
.y22{bottom:182.190000px;}
.y5b{bottom:196.410000px;}
.y60{bottom:206.310000px;}
.y3d{bottom:206.850000px;}
.y21{bottom:218.370000px;}
.y5a{bottom:232.590000px;}
.y5f{bottom:242.490000px;}
.y3c{bottom:243.030000px;}
.y20{bottom:254.550000px;}
.y59{bottom:268.770000px;}
.y3b{bottom:279.210000px;}
.y1f{bottom:290.730000px;}
.y58{bottom:304.950000px;}
.y3a{bottom:317.010000px;}
.y1e{bottom:327.090000px;}
.y57{bottom:341.175000px;}
.y39{bottom:353.235000px;}
.y1d{bottom:363.315000px;}
.y56{bottom:377.535000px;}
.y38{bottom:391.035000px;}
.y1c{bottom:399.495000px;}
.y55{bottom:413.715000px;}
.y37{bottom:427.215000px;}
.y1b{bottom:435.675000px;}
.y54{bottom:449.895000px;}
.y36{bottom:463.575000px;}
.y1a{bottom:472.035000px;}
.y53{bottom:487.515000px;}
.y35{bottom:499.755000px;}
.y19{bottom:508.215000px;}
.y52{bottom:525.315000px;}
.y34{bottom:535.935000px;}
.y18{bottom:544.395000px;}
.y51{bottom:561.495000px;}
.y33{bottom:572.115000px;}
.y17{bottom:580.575000px;}
.y50{bottom:599.295000px;}
.y32{bottom:608.325000px;}
.y16{bottom:616.785000px;}
.y4f{bottom:635.505000px;}
.y31{bottom:644.685000px;}
.y15{bottom:653.145000px;}
.y4e{bottom:673.305000px;}
.y30{bottom:680.865000px;}
.y14{bottom:689.325000px;}
.y4d{bottom:709.485000px;}
.y2f{bottom:717.045000px;}
.y13{bottom:725.505000px;}
.y4c{bottom:747.285000px;}
.y2e{bottom:753.225000px;}
.y12{bottom:761.685000px;}
.y4b{bottom:783.465000px;}
.y2d{bottom:789.585000px;}
.y11{bottom:798.045000px;}
.y4a{bottom:821.265000px;}
.y2c{bottom:825.765000px;}
.y10{bottom:834.225000px;}
.y49{bottom:857.445000px;}
.y2b{bottom:861.945000px;}
.yf{bottom:870.405000px;}
.y48{bottom:893.670000px;}
.y2a{bottom:898.170000px;}
.ye{bottom:906.630000px;}
.y47{bottom:929.850000px;}
.y29{bottom:934.530000px;}
.yd{bottom:942.990000px;}
.y46{bottom:967.650000px;}
.y28{bottom:970.710000px;}
.yc{bottom:979.170000px;}
.y45{bottom:1003.830000px;}
.y27{bottom:1006.890000px;}
.yb{bottom:1015.350000px;}
.y44{bottom:1040.010000px;}
.y26{bottom:1043.070000px;}
.ya{bottom:1051.530000px;}
.y43{bottom:1077.810000px;}
.y25{bottom:1079.430000px;}
.y9{bottom:1087.710000px;}
.y42{bottom:1113.990000px;}
.y8{bottom:1115.610000px;}
.y41{bottom:1150.200000px;}
.y7{bottom:1151.820000px;}
.y3{bottom:1176.120000px;}
.y1{bottom:1200.240000px;}
.h2{height:22.140000px;}
.h6{height:28.440000px;}
.h4{height:48.761719px;}
.h3{height:53.015625px;}
.h5{height:65.884219px;}
.h8{height:82.676953px;}
.h9{height:84.898125px;}
.ha{height:86.585445px;}
.h7{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:70.200000px;}
.w5{width:102.060000px;}
.w3{width:802.080000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3{left:-1.800000px;}
.x0{left:0.000000px;}
.x1{left:8.640000px;}
.x7{left:37.590000px;}
.x4{left:74.339987px;}
.x2{left:78.840000px;}
.x5{left:84.959987px;}
.x9{left:125.135987px;}
.x8{left:127.475987px;}
.xf{left:239.609987px;}
.xd{left:279.074987px;}
.xa{left:299.054987px;}
.xc{left:309.314987px;}
.xe{left:313.814987px;}
.x10{left:368.894987px;}
.xb{left:446.474987px;}
.x6{left:737.820000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-3.360000pt;}
.ls34{letter-spacing:-1.296000pt;}
.ls1a{letter-spacing:-0.800000pt;}
.ls36{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.656000pt;}
.ls1c{letter-spacing:-0.613333pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls15{letter-spacing:-0.336533pt;}
.ls16{letter-spacing:-0.328533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls2d{letter-spacing:-0.212267pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls35{letter-spacing:-0.024960pt;}
.ls13{letter-spacing:-0.016640pt;}
.lse{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.011947pt;}
.ls2{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.033280pt;}
.ls31{letter-spacing:0.094720pt;}
.ls30{letter-spacing:0.103040pt;}
.lsa{letter-spacing:0.111360pt;}
.ls21{letter-spacing:0.115200pt;}
.ls32{letter-spacing:0.119680pt;}
.ls7{letter-spacing:0.139947pt;}
.ls3{letter-spacing:0.143360pt;}
.ls9{letter-spacing:0.152960pt;}
.ls2e{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.193280pt;}
.ls29{letter-spacing:0.224640pt;}
.lsb{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.303360pt;}
.ls1b{letter-spacing:0.303467pt;}
.ls18{letter-spacing:0.311467pt;}
.ls27{letter-spacing:0.311680pt;}
.ls22{letter-spacing:0.315307pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.328320pt;}
.ls37{letter-spacing:0.328533pt;}
.ls24{letter-spacing:0.330133pt;}
.ls11{letter-spacing:0.336533pt;}
.ls1{letter-spacing:0.336640pt;}
.ls28{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.456320pt;}
.lsd{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.673280pt;}
.ls20{letter-spacing:3.680000pt;}
.ls33{letter-spacing:7.520000pt;}
.ls1d{letter-spacing:9.440000pt;}
.ls23{letter-spacing:15.840000pt;}
.ls2b{letter-spacing:19.040000pt;}
.ls2a{letter-spacing:33.120000pt;}
.wse{word-spacing:-75.200000pt;}
.ws2{word-spacing:-74.880000pt;}
.ws7{word-spacing:-74.863360pt;}
.ws6{word-spacing:-74.224000pt;}
.ws18{word-spacing:-73.584000pt;}
.ws14{word-spacing:-59.210133pt;}
.ws15{word-spacing:-58.880000pt;}
.ws19{word-spacing:-58.846720pt;}
.ws17{word-spacing:-58.667733pt;}
.ws16{word-spacing:-58.570133pt;}
.ws0{word-spacing:-24.000000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws1c{word-spacing:-19.048533pt;}
.wsc{word-spacing:-19.040000pt;}
.ws10{word-spacing:-19.031467pt;}
.ws11{word-spacing:-19.023467pt;}
.ws9{word-spacing:-18.753280pt;}
.wsb{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws1a{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.686720pt;}
.ws3{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.wsd{word-spacing:-18.391467pt;}
.wsa{word-spacing:-18.383467pt;}
.wsf{word-spacing:-18.112000pt;}
.ws12{word-spacing:-18.106667pt;}
.ws1b{word-spacing:-18.053333pt;}
.ws13{word-spacing:0.000000pt;}
._1b{margin-left:-17.616640pt;}
._28{margin-left:-5.888427pt;}
._5{margin-left:-4.734080pt;}
._7{margin-left:-3.818880pt;}
._13{margin-left:-2.747093pt;}
._6{margin-left:-1.813120pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.685333pt;}
._f{width:2.927573pt;}
._d{width:4.418773pt;}
._9{width:5.954773pt;}
._8{width:7.038720pt;}
._20{width:8.176000pt;}
._14{width:9.434880pt;}
._1f{width:10.706987pt;}
._1e{width:11.753600pt;}
._1c{width:14.560000pt;}
._1d{width:15.958400pt;}
._c{width:17.354453pt;}
._11{width:19.768320pt;}
._12{width:20.741760pt;}
._10{width:21.733547pt;}
._24{width:22.664533pt;}
._19{width:23.584853pt;}
._18{width:25.138133pt;}
._17{width:26.058240pt;}
._26{width:27.041600pt;}
._16{width:28.005120pt;}
._27{width:29.000320pt;}
._23{width:30.318080pt;}
._15{width:31.224960pt;}
._e{width:32.285227pt;}
._21{width:33.419093pt;}
._22{width:34.527147pt;}
._b{width:35.642027pt;}
._a{width:37.002667pt;}
._1a{width:51.221333pt;}
._25{width:53.005547pt;}
._3{width:57.691307pt;}
._4{width:58.689280pt;}
._2{width:69.906987pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y5{bottom:15.040000pt;}
.y4{bottom:30.880000pt;}
.y5e{bottom:77.952000pt;}
.y40{bottom:84.672000pt;}
.y63{bottom:86.912000pt;}
.y24{bottom:97.472000pt;}
.y5d{bottom:110.112000pt;}
.y3f{bottom:116.672000pt;}
.y62{bottom:119.072000pt;}
.y23{bottom:129.632000pt;}
.y5c{bottom:142.266667pt;}
.y3e{bottom:150.266667pt;}
.y61{bottom:151.226667pt;}
.y22{bottom:161.946667pt;}
.y5b{bottom:174.586667pt;}
.y60{bottom:183.386667pt;}
.y3d{bottom:183.866667pt;}
.y21{bottom:194.106667pt;}
.y5a{bottom:206.746667pt;}
.y5f{bottom:215.546667pt;}
.y3c{bottom:216.026667pt;}
.y20{bottom:226.266667pt;}
.y59{bottom:238.906667pt;}
.y3b{bottom:248.186667pt;}
.y1f{bottom:258.426667pt;}
.y58{bottom:271.066667pt;}
.y3a{bottom:281.786667pt;}
.y1e{bottom:290.746667pt;}
.y57{bottom:303.266667pt;}
.y39{bottom:313.986667pt;}
.y1d{bottom:322.946667pt;}
.y56{bottom:335.586667pt;}
.y38{bottom:347.586667pt;}
.y1c{bottom:355.106667pt;}
.y55{bottom:367.746667pt;}
.y37{bottom:379.746667pt;}
.y1b{bottom:387.266667pt;}
.y54{bottom:399.906667pt;}
.y36{bottom:412.066667pt;}
.y1a{bottom:419.586667pt;}
.y53{bottom:433.346667pt;}
.y35{bottom:444.226667pt;}
.y19{bottom:451.746667pt;}
.y52{bottom:466.946667pt;}
.y34{bottom:476.386667pt;}
.y18{bottom:483.906667pt;}
.y51{bottom:499.106667pt;}
.y33{bottom:508.546667pt;}
.y17{bottom:516.066667pt;}
.y50{bottom:532.706667pt;}
.y32{bottom:540.733333pt;}
.y16{bottom:548.253333pt;}
.y4f{bottom:564.893333pt;}
.y31{bottom:573.053333pt;}
.y15{bottom:580.573333pt;}
.y4e{bottom:598.493333pt;}
.y30{bottom:605.213333pt;}
.y14{bottom:612.733333pt;}
.y4d{bottom:630.653333pt;}
.y2f{bottom:637.373333pt;}
.y13{bottom:644.893333pt;}
.y4c{bottom:664.253333pt;}
.y2e{bottom:669.533333pt;}
.y12{bottom:677.053333pt;}
.y4b{bottom:696.413333pt;}
.y2d{bottom:701.853333pt;}
.y11{bottom:709.373333pt;}
.y4a{bottom:730.013333pt;}
.y2c{bottom:734.013333pt;}
.y10{bottom:741.533333pt;}
.y49{bottom:762.173333pt;}
.y2b{bottom:766.173333pt;}
.yf{bottom:773.693333pt;}
.y48{bottom:794.373333pt;}
.y2a{bottom:798.373333pt;}
.ye{bottom:805.893333pt;}
.y47{bottom:826.533333pt;}
.y29{bottom:830.693333pt;}
.yd{bottom:838.213333pt;}
.y46{bottom:860.133333pt;}
.y28{bottom:862.853333pt;}
.yc{bottom:870.373333pt;}
.y45{bottom:892.293333pt;}
.y27{bottom:895.013333pt;}
.yb{bottom:902.533333pt;}
.y44{bottom:924.453333pt;}
.y26{bottom:927.173333pt;}
.ya{bottom:934.693333pt;}
.y43{bottom:958.053333pt;}
.y25{bottom:959.493333pt;}
.y9{bottom:966.853333pt;}
.y42{bottom:990.213333pt;}
.y8{bottom:991.653333pt;}
.y41{bottom:1022.400000pt;}
.y7{bottom:1023.840000pt;}
.y3{bottom:1045.440000pt;}
.y1{bottom:1066.880000pt;}
.h2{height:19.680000pt;}
.h6{height:25.280000pt;}
.h4{height:43.343750pt;}
.h3{height:47.125000pt;}
.h5{height:58.563750pt;}
.h8{height:73.490625pt;}
.h9{height:75.465000pt;}
.ha{height:76.964840pt;}
.h7{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:62.400000pt;}
.w5{width:90.720000pt;}
.w3{width:712.960000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x1{left:7.680000pt;}
.x7{left:33.413333pt;}
.x4{left:66.079988pt;}
.x2{left:70.080000pt;}
.x5{left:75.519988pt;}
.x9{left:111.231988pt;}
.x8{left:113.311988pt;}
.xf{left:212.986655pt;}
.xd{left:248.066655pt;}
.xa{left:265.826655pt;}
.xc{left:274.946655pt;}
.xe{left:278.946655pt;}
.x10{left:327.906655pt;}
.xb{left:396.866655pt;}
.x6{left:655.840000pt;}
}




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