
    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_3dd80251aca467d3c3c09f71.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e48175515cd90b754ddc5bf1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_60b67638058722531918a033.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_eba44730399d5ed7361dd160.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_b5e10b48ed6fcdb962c64a7f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_0d0d398172a4897c4dc96186.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_f41c86baeeba4d56a32c34b5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8004069013bf936b2e6abb41.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_93d8c14ca21bb02e797e119b.woff2')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_e16f0f14b8886b1911b5ee4a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.280000px;}
.lsf{letter-spacing:-0.428400px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.139200px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.148080px;}
.ls15{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.540000px;}
.ls9{letter-spacing:1.260000px;}
.ls2a{letter-spacing:2.160000px;}
.ls18{letter-spacing:4.140000px;}
.ls1c{letter-spacing:5.580000px;}
.ls24{letter-spacing:6.300000px;}
.ls1{letter-spacing:7.740000px;}
.ls29{letter-spacing:8.640000px;}
.ls19{letter-spacing:9.180000px;}
.ls27{letter-spacing:9.540000px;}
.ls12{letter-spacing:9.900000px;}
.ls13{letter-spacing:10.620000px;}
.ls28{letter-spacing:11.520000px;}
.ls14{letter-spacing:12.060000px;}
.ls1b{letter-spacing:12.780000px;}
.ls21{letter-spacing:13.500000px;}
.ls20{letter-spacing:14.220000px;}
.ls3{letter-spacing:14.940000px;}
.ls22{letter-spacing:16.380000px;}
.ls2{letter-spacing:17.280000px;}
.lsd{letter-spacing:19.980000px;}
.ls26{letter-spacing:23.760000px;}
.ls1d{letter-spacing:26.640000px;}
.lsc{letter-spacing:28.620000px;}
.ls4{letter-spacing:30.060000px;}
.ls25{letter-spacing:33.984000px;}
.ls8{letter-spacing:52.380000px;}
.lsb{letter-spacing:62.460000px;}
.ls2b{letter-spacing:66.384000px;}
.ls1e{letter-spacing:81.180000px;}
.lse{letter-spacing:94.140000px;}
.ls17{letter-spacing:118.800000px;}
.ls11{letter-spacing:119.117280px;}
.ls16{letter-spacing:125.597280px;}
.ls0{letter-spacing:144.000000px;}
.ls1f{letter-spacing:191.316000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws8{word-spacing:-0.444240px;}
.ws4{word-spacing:-0.084240px;}
.ws1{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.054960px;}
._2c{margin-left:-2.106000px;}
._0{margin-left:-1.010880px;}
._1{width:1.056000px;}
._7{width:3.000000px;}
._e{width:4.344000px;}
._10{width:5.921760px;}
._28{width:7.124640px;}
._11{width:8.134320px;}
._22{width:9.204720px;}
._17{width:10.306320px;}
._3{width:11.400000px;}
._2{width:12.792000px;}
._f{width:14.160000px;}
._b{width:16.032000px;}
._1e{width:17.071680px;}
._29{width:19.290960px;}
._19{width:21.099840px;}
._d{width:22.440000px;}
._c{width:23.472000px;}
._4{width:24.624000px;}
._27{width:26.231040px;}
._18{width:27.378000px;}
._15{width:29.147040px;}
._5{width:30.168000px;}
._6{width:31.176000px;}
._3d{width:33.359040px;}
._3e{width:34.493280px;}
._23{width:35.633520px;}
._24{width:36.897120px;}
._36{width:38.160720px;}
._35{width:39.677040px;}
._2b{width:41.109120px;}
._39{width:43.215120px;}
._42{width:44.489040px;}
._8{width:45.504000px;}
._37{width:46.580640px;}
._1a{width:48.522240px;}
._3c{width:49.533120px;}
._1f{width:51.217920px;}
._16{width:52.397280px;}
._31{width:53.576640px;}
._30{width:54.587520px;}
._3f{width:56.058720px;}
._a{width:57.528000px;}
._9{width:58.584000px;}
._25{width:61.495200px;}
._26{width:62.538960px;}
._1c{width:64.022400px;}
._1b{width:65.196480px;}
._20{width:69.919200px;}
._21{width:71.884560px;}
._3a{width:73.081680px;}
._34{width:75.310560px;}
._41{width:80.303760px;}
._40{width:81.685920px;}
._33{width:86.379120px;}
._32{width:87.441120px;}
._13{width:91.086480px;}
._12{width:92.231280px;}
._1d{width:93.326160px;}
._2a{width:94.601520px;}
._2d{width:95.975040px;}
._2e{width:101.340720px;}
._2f{width:110.691360px;}
._14{width:112.376160px;}
._3b{width:118.636080px;}
._38{width:166.795200px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(7,57,118);}
.fc5{color:rgb(26,26,26);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y3{bottom:23.983500px;}
.y2{bottom:31.716000px;}
.y57{bottom:109.836000px;}
.y33{bottom:110.016000px;}
.y56{bottom:137.556000px;}
.y32{bottom:137.736000px;}
.y55{bottom:165.270000px;}
.y31{bottom:165.450000px;}
.y54{bottom:193.170000px;}
.y30{bottom:193.350000px;}
.y53{bottom:220.890000px;}
.y2f{bottom:221.070000px;}
.y52{bottom:248.610000px;}
.y2e{bottom:248.790000px;}
.y2d{bottom:276.555000px;}
.y51{bottom:304.275000px;}
.y2c{bottom:304.455000px;}
.y50{bottom:331.995000px;}
.y2b{bottom:332.175000px;}
.y2a{bottom:355.575000px;}
.y4f{bottom:359.715000px;}
.y29{bottom:359.895000px;}
.y4e{bottom:387.615000px;}
.y28{bottom:387.795000px;}
.y4d{bottom:415.335000px;}
.y27{bottom:415.515000px;}
.y4c{bottom:443.055000px;}
.y26{bottom:443.235000px;}
.y4b{bottom:470.775000px;}
.y25{bottom:470.955000px;}
.y6e{bottom:472.575000px;}
.y4a{bottom:498.675000px;}
.y24{bottom:498.855000px;}
.y6d{bottom:513.975000px;}
.y49{bottom:526.395000px;}
.y23{bottom:526.575000px;}
.y6c{bottom:534.675000px;}
.y48{bottom:554.115000px;}
.y22{bottom:554.295000px;}
.y6b{bottom:555.375000px;}
.y6a{bottom:576.105000px;}
.y21{bottom:577.905000px;}
.y47{bottom:582.045000px;}
.y69{bottom:596.805000px;}
.y20{bottom:598.605000px;}
.y46{bottom:609.765000px;}
.y68{bottom:617.505000px;}
.y1f{bottom:619.305000px;}
.y45{bottom:637.485000px;}
.y67{bottom:638.205000px;}
.y1e{bottom:640.005000px;}
.y66{bottom:658.905000px;}
.y1d{bottom:660.705000px;}
.y44{bottom:665.205000px;}
.y65{bottom:679.605000px;}
.y1c{bottom:681.405000px;}
.y43{bottom:693.105000px;}
.y64{bottom:700.305000px;}
.y1b{bottom:702.105000px;}
.y42{bottom:720.825000px;}
.y63{bottom:721.005000px;}
.y1a{bottom:722.805000px;}
.y62{bottom:741.705000px;}
.y19{bottom:743.505000px;}
.y41{bottom:748.545000px;}
.y61{bottom:762.405000px;}
.y18{bottom:764.205000px;}
.y40{bottom:776.445000px;}
.y60{bottom:783.105000px;}
.y17{bottom:784.905000px;}
.y5f{bottom:803.805000px;}
.y3f{bottom:804.165000px;}
.y16{bottom:805.605000px;}
.y5e{bottom:824.505000px;}
.y15{bottom:826.305000px;}
.y3e{bottom:831.885000px;}
.y5d{bottom:845.250000px;}
.y14{bottom:847.050000px;}
.y3d{bottom:859.650000px;}
.y5c{bottom:865.950000px;}
.y13{bottom:867.750000px;}
.y5b{bottom:886.650000px;}
.y3c{bottom:887.550000px;}
.y12{bottom:888.450000px;}
.y5a{bottom:907.350000px;}
.y11{bottom:909.150000px;}
.y3b{bottom:915.270000px;}
.y59{bottom:927.690000px;}
.y10{bottom:929.850000px;}
.y3a{bottom:942.990000px;}
.y58{bottom:949.470000px;}
.yf{bottom:950.550000px;}
.y39{bottom:970.710000px;}
.ye{bottom:971.250000px;}
.y38{bottom:998.610000px;}
.yd{bottom:1012.650000px;}
.y37{bottom:1026.330000px;}
.yc{bottom:1033.350000px;}
.yb{bottom:1054.050000px;}
.ya{bottom:1074.750000px;}
.y36{bottom:1081.950000px;}
.y9{bottom:1095.450000px;}
.y35{bottom:1109.670000px;}
.y8{bottom:1116.150000px;}
.y7{bottom:1137.060000px;}
.y34{bottom:1137.420000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h3{height:20.692500px;}
.h5{height:23.220000px;}
.hc{height:54.421875px;}
.h8{height:59.343750px;}
.hf{height:64.160156px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.hd{height:72.562500px;}
.he{height:74.004654px;}
.h9{height:75.067383px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:86.585445px;}
.ha{height:99.956953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:13.140000px;}
.x3{left:22.140000px;}
.x1{left:53.100000px;}
.x10{left:58.140000px;}
.x11{left:85.140000px;}
.xd{left:106.236000px;}
.x7{left:131.256000px;}
.xe{left:180.576000px;}
.xa{left:192.090000px;}
.xc{left:296.310000px;}
.x9{left:305.535000px;}
.xb{left:320.655000px;}
.xf{left:361.695000px;}
.x2{left:406.695000px;}
.x4{left:420.015000px;}
.x8{left:446.475000px;}
.x6{left:499.980000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.360000pt;}
.lsf{letter-spacing:-0.380800pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.123733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.131627pt;}
.ls15{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls18{letter-spacing:3.680000pt;}
.ls1c{letter-spacing:4.960000pt;}
.ls24{letter-spacing:5.600000pt;}
.ls1{letter-spacing:6.880000pt;}
.ls29{letter-spacing:7.680000pt;}
.ls19{letter-spacing:8.160000pt;}
.ls27{letter-spacing:8.480000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls13{letter-spacing:9.440000pt;}
.ls28{letter-spacing:10.240000pt;}
.ls14{letter-spacing:10.720000pt;}
.ls1b{letter-spacing:11.360000pt;}
.ls21{letter-spacing:12.000000pt;}
.ls20{letter-spacing:12.640000pt;}
.ls3{letter-spacing:13.280000pt;}
.ls22{letter-spacing:14.560000pt;}
.ls2{letter-spacing:15.360000pt;}
.lsd{letter-spacing:17.760000pt;}
.ls26{letter-spacing:21.120000pt;}
.ls1d{letter-spacing:23.680000pt;}
.lsc{letter-spacing:25.440000pt;}
.ls4{letter-spacing:26.720000pt;}
.ls25{letter-spacing:30.208000pt;}
.ls8{letter-spacing:46.560000pt;}
.lsb{letter-spacing:55.520000pt;}
.ls2b{letter-spacing:59.008000pt;}
.ls1e{letter-spacing:72.160000pt;}
.lse{letter-spacing:83.680000pt;}
.ls17{letter-spacing:105.600000pt;}
.ls11{letter-spacing:105.882027pt;}
.ls16{letter-spacing:111.642027pt;}
.ls0{letter-spacing:128.000000pt;}
.ls1f{letter-spacing:170.058667pt;}
.ws6{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws8{word-spacing:-0.394880pt;}
.ws4{word-spacing:-0.074880pt;}
.ws1{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.048853pt;}
._2c{margin-left:-1.872000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.938667pt;}
._7{width:2.666667pt;}
._e{width:3.861333pt;}
._10{width:5.263787pt;}
._28{width:6.333013pt;}
._11{width:7.230507pt;}
._22{width:8.181973pt;}
._17{width:9.161173pt;}
._3{width:10.133333pt;}
._2{width:11.370667pt;}
._f{width:12.586667pt;}
._b{width:14.250667pt;}
._1e{width:15.174827pt;}
._29{width:17.147520pt;}
._19{width:18.755413pt;}
._d{width:19.946667pt;}
._c{width:20.864000pt;}
._4{width:21.888000pt;}
._27{width:23.316480pt;}
._18{width:24.336000pt;}
._15{width:25.908480pt;}
._5{width:26.816000pt;}
._6{width:27.712000pt;}
._3d{width:29.652480pt;}
._3e{width:30.660693pt;}
._23{width:31.674240pt;}
._24{width:32.797440pt;}
._36{width:33.920640pt;}
._35{width:35.268480pt;}
._2b{width:36.541440pt;}
._39{width:38.413440pt;}
._42{width:39.545813pt;}
._8{width:40.448000pt;}
._37{width:41.405013pt;}
._1a{width:43.130880pt;}
._3c{width:44.029440pt;}
._1f{width:45.527040pt;}
._16{width:46.575360pt;}
._31{width:47.623680pt;}
._30{width:48.522240pt;}
._3f{width:49.829973pt;}
._a{width:51.136000pt;}
._9{width:52.074667pt;}
._25{width:54.662400pt;}
._26{width:55.590187pt;}
._1c{width:56.908800pt;}
._1b{width:57.952427pt;}
._20{width:62.150400pt;}
._21{width:63.897387pt;}
._3a{width:64.961493pt;}
._34{width:66.942720pt;}
._41{width:71.381120pt;}
._40{width:72.609707pt;}
._33{width:76.781440pt;}
._32{width:77.725440pt;}
._13{width:80.965760pt;}
._12{width:81.983360pt;}
._1d{width:82.956587pt;}
._2a{width:84.090240pt;}
._2d{width:85.311147pt;}
._2e{width:90.080640pt;}
._2f{width:98.392320pt;}
._14{width:99.889920pt;}
._3b{width:105.454293pt;}
._38{width:148.262400pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y3{bottom:21.318667pt;}
.y2{bottom:28.192000pt;}
.y57{bottom:97.632000pt;}
.y33{bottom:97.792000pt;}
.y56{bottom:122.272000pt;}
.y32{bottom:122.432000pt;}
.y55{bottom:146.906667pt;}
.y31{bottom:147.066667pt;}
.y54{bottom:171.706667pt;}
.y30{bottom:171.866667pt;}
.y53{bottom:196.346667pt;}
.y2f{bottom:196.506667pt;}
.y52{bottom:220.986667pt;}
.y2e{bottom:221.146667pt;}
.y2d{bottom:245.826667pt;}
.y51{bottom:270.466667pt;}
.y2c{bottom:270.626667pt;}
.y50{bottom:295.106667pt;}
.y2b{bottom:295.266667pt;}
.y2a{bottom:316.066667pt;}
.y4f{bottom:319.746667pt;}
.y29{bottom:319.906667pt;}
.y4e{bottom:344.546667pt;}
.y28{bottom:344.706667pt;}
.y4d{bottom:369.186667pt;}
.y27{bottom:369.346667pt;}
.y4c{bottom:393.826667pt;}
.y26{bottom:393.986667pt;}
.y4b{bottom:418.466667pt;}
.y25{bottom:418.626667pt;}
.y6e{bottom:420.066667pt;}
.y4a{bottom:443.266667pt;}
.y24{bottom:443.426667pt;}
.y6d{bottom:456.866667pt;}
.y49{bottom:467.906667pt;}
.y23{bottom:468.066667pt;}
.y6c{bottom:475.266667pt;}
.y48{bottom:492.546667pt;}
.y22{bottom:492.706667pt;}
.y6b{bottom:493.666667pt;}
.y6a{bottom:512.093333pt;}
.y21{bottom:513.693333pt;}
.y47{bottom:517.373333pt;}
.y69{bottom:530.493333pt;}
.y20{bottom:532.093333pt;}
.y46{bottom:542.013333pt;}
.y68{bottom:548.893333pt;}
.y1f{bottom:550.493333pt;}
.y45{bottom:566.653333pt;}
.y67{bottom:567.293333pt;}
.y1e{bottom:568.893333pt;}
.y66{bottom:585.693333pt;}
.y1d{bottom:587.293333pt;}
.y44{bottom:591.293333pt;}
.y65{bottom:604.093333pt;}
.y1c{bottom:605.693333pt;}
.y43{bottom:616.093333pt;}
.y64{bottom:622.493333pt;}
.y1b{bottom:624.093333pt;}
.y42{bottom:640.733333pt;}
.y63{bottom:640.893333pt;}
.y1a{bottom:642.493333pt;}
.y62{bottom:659.293333pt;}
.y19{bottom:660.893333pt;}
.y41{bottom:665.373333pt;}
.y61{bottom:677.693333pt;}
.y18{bottom:679.293333pt;}
.y40{bottom:690.173333pt;}
.y60{bottom:696.093333pt;}
.y17{bottom:697.693333pt;}
.y5f{bottom:714.493333pt;}
.y3f{bottom:714.813333pt;}
.y16{bottom:716.093333pt;}
.y5e{bottom:732.893333pt;}
.y15{bottom:734.493333pt;}
.y3e{bottom:739.453333pt;}
.y5d{bottom:751.333333pt;}
.y14{bottom:752.933333pt;}
.y3d{bottom:764.133333pt;}
.y5c{bottom:769.733333pt;}
.y13{bottom:771.333333pt;}
.y5b{bottom:788.133333pt;}
.y3c{bottom:788.933333pt;}
.y12{bottom:789.733333pt;}
.y5a{bottom:806.533333pt;}
.y11{bottom:808.133333pt;}
.y3b{bottom:813.573333pt;}
.y59{bottom:824.613333pt;}
.y10{bottom:826.533333pt;}
.y3a{bottom:838.213333pt;}
.y58{bottom:843.973333pt;}
.yf{bottom:844.933333pt;}
.y39{bottom:862.853333pt;}
.ye{bottom:863.333333pt;}
.y38{bottom:887.653333pt;}
.yd{bottom:900.133333pt;}
.y37{bottom:912.293333pt;}
.yc{bottom:918.533333pt;}
.yb{bottom:936.933333pt;}
.ya{bottom:955.333333pt;}
.y36{bottom:961.733333pt;}
.y9{bottom:973.733333pt;}
.y35{bottom:986.373333pt;}
.y8{bottom:992.133333pt;}
.y7{bottom:1010.720000pt;}
.y34{bottom:1011.040000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h3{height:18.393333pt;}
.h5{height:20.640000pt;}
.hc{height:48.375000pt;}
.h8{height:52.750000pt;}
.hf{height:57.031250pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.hd{height:64.500000pt;}
.he{height:65.781915pt;}
.h9{height:66.726562pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:76.964840pt;}
.ha{height:88.850625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:11.680000pt;}
.x3{left:19.680000pt;}
.x1{left:47.200000pt;}
.x10{left:51.680000pt;}
.x11{left:75.680000pt;}
.xd{left:94.432000pt;}
.x7{left:116.672000pt;}
.xe{left:160.512000pt;}
.xa{left:170.746667pt;}
.xc{left:263.386667pt;}
.x9{left:271.586667pt;}
.xb{left:285.026667pt;}
.xf{left:321.506667pt;}
.x2{left:361.506667pt;}
.x4{left:373.346667pt;}
.x8{left:396.866667pt;}
.x6{left:444.426667pt;}
}




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