
    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_79dfb1f810a4f4a0fa04c0f0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.849000;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_8e872dad49e41b89c9b7e50c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.849000;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_28b801332915fc940033be68.woff')format("woff");}.ff3{font-family:ff3;line-height:0.886230;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_24529ce624e11cfd7890bf0d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5e10af88a25a1506e77b15ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774182;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_3d6db930f87a248988f7c432.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_8505fc17ae4a9a94f543d05a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ba67cc688b5de86a4d2dc43c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4fd47d60dcfd0cd2fad9bbb3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dd14abd6c49a0a58e56f0df3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.709473;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_f6e854d2145c93e9dc40bf07.woff')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_d8cef098cd934ba29334f9e2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.034000;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_0ef5872723220274e8ebdf7e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3fb90895049baa4aebf6aa93.woff')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.541200px;}
.lsd{letter-spacing:-0.371400px;}
.lsc{letter-spacing:-0.193200px;}
.ls10{letter-spacing:-0.191400px;}
.ls11{letter-spacing:-0.133200px;}
.ls13{letter-spacing:-0.023040px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.045536px;}
.ls1{letter-spacing:0.057600px;}
.lse{letter-spacing:0.105600px;}
.lsa{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.161400px;}
.ls5{letter-spacing:0.195600px;}
.ls4{letter-spacing:0.201000px;}
.ls7{letter-spacing:0.291600px;}
.ls14{letter-spacing:0.371400px;}
.ls12{letter-spacing:0.586800px;}
.ls2{letter-spacing:0.803210px;}
.ls8{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.044000px;}
.lsb{letter-spacing:72.269280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
}
.ws7{word-spacing:-37.253040px;}
.wsd{word-spacing:-36.879840px;}
.ws6{word-spacing:-36.584640px;}
.ws2{word-spacing:-36.494040px;}
.ws3{word-spacing:-36.488640px;}
.ws5{word-spacing:-36.454440px;}
.ws4{word-spacing:-36.293040px;}
.wse{word-spacing:-36.270000px;}
.wsc{word-spacing:-36.159840px;}
.wsb{word-spacing:-36.101640px;}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.341640px;}
.wsa{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.777040px;}
.ws8{word-spacing:-14.429040px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.047336px;}
._0{width:1.627920px;}
._5{width:2.968560px;}
._6{width:4.920960px;}
._7{width:6.415920px;}
._b{width:7.469280px;}
._4{width:8.522640px;}
._3{width:9.576000px;}
._a{width:10.698720px;}
._c{width:11.735520px;}
._d{width:12.831840px;}
._17{width:14.172480px;}
._16{width:15.387600px;}
._13{width:16.566480px;}
._12{width:17.619840px;}
._1b{width:18.766800px;}
._19{width:20.366856px;}
._18{width:22.120560px;}
._9{width:23.549520px;}
._8{width:24.706080px;}
._14{width:25.781040px;}
._1c{width:26.917920px;}
._15{width:28.147416px;}
._11{width:29.494080px;}
._1e{width:30.930480px;}
._22{width:32.175360px;}
._1a{width:33.516000px;}
._1f{width:35.023920px;}
._e{width:42.517440px;}
._f{width:44.244480px;}
._1d{width:45.383520px;}
._21{width:47.097120px;}
._20{width:48.271440px;}
._10{width:49.795200px;}
._26{width:166.143600px;}
._25{width:167.196960px;}
._2{width:179.682960px;}
._24{width:297.813600px;}
._23{width:299.441520px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,192,0);}
.fs7{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs6{font-size:100.938894px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.780000px;}
.y46{bottom:115.920000px;}
.y38{bottom:117.540000px;}
.y20{bottom:122.400000px;}
.y4b{bottom:129.600000px;}
.y77{bottom:141.660000px;}
.y45{bottom:153.570000px;}
.y37{bottom:155.370000px;}
.y1f{bottom:160.230000px;}
.y56{bottom:167.430000px;}
.y4a{bottom:179.490000px;}
.y44{bottom:191.370000px;}
.y36{bottom:193.170000px;}
.y1e{bottom:198.030000px;}
.y55{bottom:205.230000px;}
.y76{bottom:217.110000px;}
.y43{bottom:229.170000px;}
.y35{bottom:230.970000px;}
.y1d{bottom:235.650000px;}
.y62{bottom:241.230000px;}
.y54{bottom:243.030000px;}
.y75{bottom:254.910000px;}
.y42{bottom:266.970000px;}
.y34{bottom:268.770000px;}
.y1c{bottom:273.450000px;}
.y61{bottom:279.030000px;}
.y53{bottom:280.650000px;}
.y74{bottom:292.710000px;}
.y41{bottom:304.770000px;}
.y33{bottom:306.390000px;}
.y1b{bottom:311.250000px;}
.y60{bottom:316.650000px;}
.y52{bottom:318.450000px;}
.y58{bottom:330.510000px;}
.y40{bottom:342.390000px;}
.y69{bottom:344.190000px;}
.y1a{bottom:349.050000px;}
.y5f{bottom:354.450000px;}
.y32{bottom:356.250000px;}
.y51{bottom:368.310000px;}
.y3f{bottom:380.190000px;}
.y19{bottom:386.850000px;}
.y5e{bottom:392.295000px;}
.y59{bottom:394.095000px;}
.y31{bottom:405.975000px;}
.y3e{bottom:418.035000px;}
.y18{bottom:424.515000px;}
.y5d{bottom:430.095000px;}
.y68{bottom:431.895000px;}
.y30{bottom:443.775000px;}
.y3d{bottom:455.835000px;}
.y17{bottom:462.315000px;}
.y5c{bottom:467.895000px;}
.y67{bottom:469.515000px;}
.y57{bottom:481.575000px;}
.y2f{bottom:493.635000px;}
.y16{bottom:500.115000px;}
.y5b{bottom:505.515000px;}
.y66{bottom:507.315000px;}
.y73{bottom:519.375000px;}
.y2e{bottom:531.255000px;}
.y15{bottom:537.915000px;}
.y5a{bottom:543.315000px;}
.y65{bottom:545.115000px;}
.y72{bottom:557.175000px;}
.y2d{bottom:569.055000px;}
.y14{bottom:575.715000px;}
.y3c{bottom:581.115000px;}
.y64{bottom:582.915000px;}
.y71{bottom:594.795000px;}
.y2c{bottom:606.855000px;}
.y13{bottom:613.335000px;}
.y3b{bottom:618.915000px;}
.y63{bottom:632.595000px;}
.y2b{bottom:644.685000px;}
.y12{bottom:651.165000px;}
.y3a{bottom:656.745000px;}
.y70{bottom:670.425000px;}
.y2a{bottom:682.485000px;}
.y11{bottom:688.965000px;}
.y39{bottom:694.365000px;}
.y6f{bottom:708.225000px;}
.y49{bottom:720.105000px;}
.y10{bottom:726.765000px;}
.y29{bottom:732.165000px;}
.y6e{bottom:746.025000px;}
.y7e{bottom:750.885000px;}
.y48{bottom:757.905000px;}
.yf{bottom:764.565000px;}
.y28{bottom:769.965000px;}
.y7d{bottom:781.125000px;}
.y6d{bottom:783.645000px;}
.y47{bottom:795.705000px;}
.y27{bottom:807.765000px;}
.ye{bottom:814.245000px;}
.y7c{bottom:815.325000px;}
.y6c{bottom:821.445000px;}
.y50{bottom:833.505000px;}
.y26{bottom:845.565000px;}
.y7b{bottom:853.125000px;}
.yd{bottom:853.485000px;}
.y6b{bottom:859.245000px;}
.y4f{bottom:871.305000px;}
.y25{bottom:883.185000px;}
.y7a{bottom:890.790000px;}
.yc{bottom:892.590000px;}
.y6a{bottom:897.090000px;}
.y4e{bottom:908.970000px;}
.yb{bottom:919.770000px;}
.y24{bottom:921.030000px;}
.y79{bottom:928.590000px;}
.y4d{bottom:946.770000px;}
.y23{bottom:958.830000px;}
.ya{bottom:959.010000px;}
.y78{bottom:962.430000px;}
.y4c{bottom:984.570000px;}
.y9{bottom:986.190000px;}
.y22{bottom:996.630000px;}
.y8{bottom:1029.570000px;}
.y21{bottom:1034.430000px;}
.y6{bottom:1058.010000px;}
.y5{bottom:1077.990000px;}
.y4{bottom:1097.970000px;}
.y3{bottom:1116.690000px;}
.y2{bottom:1145.130000px;}
.y1{bottom:1183.500000px;}
.h3{height:50.832611px;}
.h5{height:64.978594px;}
.h7{height:65.010937px;}
.h6{height:65.884219px;}
.h4{height:66.757500px;}
.ha{height:76.703760px;}
.h9{height:80.852054px;}
.h2{height:81.012960px;}
.hb{height:95.245664px;}
.h8{height:96.312240px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.036000px;}
.xa{left:111.636000px;}
.x1{left:126.396000px;}
.x14{left:135.036000px;}
.x8{left:140.076000px;}
.x12{left:145.836000px;}
.x13{left:162.030000px;}
.xc{left:164.190000px;}
.x4{left:168.150000px;}
.x15{left:172.830000px;}
.xf{left:205.950000px;}
.x3{left:226.830000px;}
.x2{left:236.370000px;}
.x9{left:245.910000px;}
.xe{left:264.630000px;}
.xd{left:274.170000px;}
.xb{left:284.970000px;}
.x5{left:295.950000px;}
.x10{left:333.795000px;}
.x6{left:427.575000px;}
.x11{left:465.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.481067pt;}
.lsd{letter-spacing:-0.330133pt;}
.lsc{letter-spacing:-0.171733pt;}
.ls10{letter-spacing:-0.170133pt;}
.ls11{letter-spacing:-0.118400pt;}
.ls13{letter-spacing:-0.020480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.040477pt;}
.ls1{letter-spacing:0.051200pt;}
.lse{letter-spacing:0.093867pt;}
.lsa{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.143467pt;}
.ls5{letter-spacing:0.173867pt;}
.ls4{letter-spacing:0.178667pt;}
.ls7{letter-spacing:0.259200pt;}
.ls14{letter-spacing:0.330133pt;}
.ls12{letter-spacing:0.521600pt;}
.ls2{letter-spacing:0.713965pt;}
.ls8{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.928000pt;}
.lsb{letter-spacing:64.239360pt;}
.ws7{word-spacing:-33.113813pt;}
.wsd{word-spacing:-32.782080pt;}
.ws6{word-spacing:-32.519680pt;}
.ws2{word-spacing:-32.439147pt;}
.ws3{word-spacing:-32.434347pt;}
.ws5{word-spacing:-32.403947pt;}
.ws4{word-spacing:-32.260480pt;}
.wse{word-spacing:-32.240000pt;}
.wsc{word-spacing:-32.142080pt;}
.wsb{word-spacing:-32.090347pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.637013pt;}
.wsa{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.135147pt;}
.ws8{word-spacing:-12.825813pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-0.930965pt;}
._0{width:1.447040pt;}
._5{width:2.638720pt;}
._6{width:4.374187pt;}
._7{width:5.703040pt;}
._b{width:6.639360pt;}
._4{width:7.575680pt;}
._3{width:8.512000pt;}
._a{width:9.509973pt;}
._c{width:10.431573pt;}
._d{width:11.406080pt;}
._17{width:12.597760pt;}
._16{width:13.677867pt;}
._13{width:14.725760pt;}
._12{width:15.662080pt;}
._1b{width:16.681600pt;}
._19{width:18.103872pt;}
._18{width:19.662720pt;}
._9{width:20.932907pt;}
._8{width:21.960960pt;}
._14{width:22.916480pt;}
._1c{width:23.927040pt;}
._15{width:25.019925pt;}
._11{width:26.216960pt;}
._1e{width:27.493760pt;}
._22{width:28.600320pt;}
._1a{width:29.792000pt;}
._1f{width:31.132373pt;}
._e{width:37.793280pt;}
._f{width:39.328427pt;}
._1d{width:40.340907pt;}
._21{width:41.864107pt;}
._20{width:42.907947pt;}
._10{width:44.262400pt;}
._26{width:147.683200pt;}
._25{width:148.619520pt;}
._2{width:159.718187pt;}
._24{width:264.723200pt;}
._23{width:266.170240pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs6{font-size:89.723461pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:51.360000pt;}
.y46{bottom:103.040000pt;}
.y38{bottom:104.480000pt;}
.y20{bottom:108.800000pt;}
.y4b{bottom:115.200000pt;}
.y77{bottom:125.920000pt;}
.y45{bottom:136.506667pt;}
.y37{bottom:138.106667pt;}
.y1f{bottom:142.426667pt;}
.y56{bottom:148.826667pt;}
.y4a{bottom:159.546667pt;}
.y44{bottom:170.106667pt;}
.y36{bottom:171.706667pt;}
.y1e{bottom:176.026667pt;}
.y55{bottom:182.426667pt;}
.y76{bottom:192.986667pt;}
.y43{bottom:203.706667pt;}
.y35{bottom:205.306667pt;}
.y1d{bottom:209.466667pt;}
.y62{bottom:214.426667pt;}
.y54{bottom:216.026667pt;}
.y75{bottom:226.586667pt;}
.y42{bottom:237.306667pt;}
.y34{bottom:238.906667pt;}
.y1c{bottom:243.066667pt;}
.y61{bottom:248.026667pt;}
.y53{bottom:249.466667pt;}
.y74{bottom:260.186667pt;}
.y41{bottom:270.906667pt;}
.y33{bottom:272.346667pt;}
.y1b{bottom:276.666667pt;}
.y60{bottom:281.466667pt;}
.y52{bottom:283.066667pt;}
.y58{bottom:293.786667pt;}
.y40{bottom:304.346667pt;}
.y69{bottom:305.946667pt;}
.y1a{bottom:310.266667pt;}
.y5f{bottom:315.066667pt;}
.y32{bottom:316.666667pt;}
.y51{bottom:327.386667pt;}
.y3f{bottom:337.946667pt;}
.y19{bottom:343.866667pt;}
.y5e{bottom:348.706667pt;}
.y59{bottom:350.306667pt;}
.y31{bottom:360.866667pt;}
.y3e{bottom:371.586667pt;}
.y18{bottom:377.346667pt;}
.y5d{bottom:382.306667pt;}
.y68{bottom:383.906667pt;}
.y30{bottom:394.466667pt;}
.y3d{bottom:405.186667pt;}
.y17{bottom:410.946667pt;}
.y5c{bottom:415.906667pt;}
.y67{bottom:417.346667pt;}
.y57{bottom:428.066667pt;}
.y2f{bottom:438.786667pt;}
.y16{bottom:444.546667pt;}
.y5b{bottom:449.346667pt;}
.y66{bottom:450.946667pt;}
.y73{bottom:461.666667pt;}
.y2e{bottom:472.226667pt;}
.y15{bottom:478.146667pt;}
.y5a{bottom:482.946667pt;}
.y65{bottom:484.546667pt;}
.y72{bottom:495.266667pt;}
.y2d{bottom:505.826667pt;}
.y14{bottom:511.746667pt;}
.y3c{bottom:516.546667pt;}
.y64{bottom:518.146667pt;}
.y71{bottom:528.706667pt;}
.y2c{bottom:539.426667pt;}
.y13{bottom:545.186667pt;}
.y3b{bottom:550.146667pt;}
.y63{bottom:562.306667pt;}
.y2b{bottom:573.053333pt;}
.y12{bottom:578.813333pt;}
.y3a{bottom:583.773333pt;}
.y70{bottom:595.933333pt;}
.y2a{bottom:606.653333pt;}
.y11{bottom:612.413333pt;}
.y39{bottom:617.213333pt;}
.y6f{bottom:629.533333pt;}
.y49{bottom:640.093333pt;}
.y10{bottom:646.013333pt;}
.y29{bottom:650.813333pt;}
.y6e{bottom:663.133333pt;}
.y7e{bottom:667.453333pt;}
.y48{bottom:673.693333pt;}
.yf{bottom:679.613333pt;}
.y28{bottom:684.413333pt;}
.y7d{bottom:694.333333pt;}
.y6d{bottom:696.573333pt;}
.y47{bottom:707.293333pt;}
.y27{bottom:718.013333pt;}
.ye{bottom:723.773333pt;}
.y7c{bottom:724.733333pt;}
.y6c{bottom:730.173333pt;}
.y50{bottom:740.893333pt;}
.y26{bottom:751.613333pt;}
.y7b{bottom:758.333333pt;}
.yd{bottom:758.653333pt;}
.y6b{bottom:763.773333pt;}
.y4f{bottom:774.493333pt;}
.y25{bottom:785.053333pt;}
.y7a{bottom:791.813333pt;}
.yc{bottom:793.413333pt;}
.y6a{bottom:797.413333pt;}
.y4e{bottom:807.973333pt;}
.yb{bottom:817.573333pt;}
.y24{bottom:818.693333pt;}
.y79{bottom:825.413333pt;}
.y4d{bottom:841.573333pt;}
.y23{bottom:852.293333pt;}
.ya{bottom:852.453333pt;}
.y78{bottom:855.493333pt;}
.y4c{bottom:875.173333pt;}
.y9{bottom:876.613333pt;}
.y22{bottom:885.893333pt;}
.y8{bottom:915.173333pt;}
.y21{bottom:919.493333pt;}
.y6{bottom:940.453333pt;}
.y5{bottom:958.213333pt;}
.y4{bottom:975.973333pt;}
.y3{bottom:992.613333pt;}
.y2{bottom:1017.893333pt;}
.y1{bottom:1052.000000pt;}
.h3{height:45.184543pt;}
.h5{height:57.758750pt;}
.h7{height:57.787500pt;}
.h6{height:58.563750pt;}
.h4{height:59.340000pt;}
.ha{height:68.181120pt;}
.h9{height:71.868492pt;}
.h2{height:72.011520pt;}
.hb{height:84.662813pt;}
.h8{height:85.610880pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.032000pt;}
.xa{left:99.232000pt;}
.x1{left:112.352000pt;}
.x14{left:120.032000pt;}
.x8{left:124.512000pt;}
.x12{left:129.632000pt;}
.x13{left:144.026667pt;}
.xc{left:145.946667pt;}
.x4{left:149.466667pt;}
.x15{left:153.626667pt;}
.xf{left:183.066667pt;}
.x3{left:201.626667pt;}
.x2{left:210.106667pt;}
.x9{left:218.586667pt;}
.xe{left:235.226667pt;}
.xd{left:243.706667pt;}
.xb{left:253.306667pt;}
.x5{left:263.066667pt;}
.x10{left:296.706667pt;}
.x6{left:380.066667pt;}
.x11{left:413.666667pt;}
}




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