
    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_083ba63ff4b5504d6c1c692b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f10221e13e125b13d4a80fa4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_c063787253cdf88e18561d42.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_44be111dab0fca77fbc07d84.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_88c2fd16a96367b555462a72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_cbb2d5c7d9065d1ebeb0d7f4.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_55282c099b5438ff23ec53b7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.822000;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_f7450db3ac2ed721b8cfa9b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_c8fafbcaf1519153629f282b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_9a7b6e01da4a89fdf935182d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082031;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_fca6feb3ba00841933f22b82.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:177.600000px;}
.ls17{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-1.008000px;}
.ls23{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.100800px;}
.ls1d{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.151200px;}
.ls1f{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls28{letter-spacing:2.928000px;}
.ls27{letter-spacing:2.966400px;}
.ls26{letter-spacing:2.976000px;}
.ls1e{letter-spacing:3.168000px;}
.ls2{letter-spacing:4.320000px;}
.ls25{letter-spacing:4.752000px;}
.ls10{letter-spacing:5.112000px;}
.ls15{letter-spacing:6.465600px;}
.ls0{letter-spacing:8.436000px;}
.ls13{letter-spacing:8.928000px;}
.ls3{letter-spacing:10.481254px;}
.ls1{letter-spacing:10.740000px;}
.lsd{letter-spacing:10.800000px;}
.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;}
}
.ws10{word-spacing:-20.232000px;}
.ws11{word-spacing:-17.784000px;}
.ws20{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.136000px;}
.wsd{word-spacing:-10.800000px;}
.ws0{word-spacing:-8.496000px;}
.ws16{word-spacing:-0.864000px;}
.ws14{word-spacing:-0.792000px;}
.ws22{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.648000px;}
.ws27{word-spacing:-0.576000px;}
.wsc{word-spacing:-0.504000px;}
.wse{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.072000px;}
.wsb{word-spacing:0.144000px;}
.ws29{word-spacing:0.216000px;}
.ws24{word-spacing:0.288000px;}
.ws6{word-spacing:0.300000px;}
.ws9{word-spacing:0.360000px;}
.ws2c{word-spacing:0.432000px;}
.ws2f{word-spacing:0.576000px;}
.ws13{word-spacing:0.600000px;}
.ws1d{word-spacing:0.648000px;}
.ws1c{word-spacing:0.720000px;}
.ws8{word-spacing:0.792000px;}
.ws2b{word-spacing:0.864000px;}
.ws2a{word-spacing:1.008000px;}
.ws4{word-spacing:1.140000px;}
.ws2{word-spacing:1.440000px;}
.ws1f{word-spacing:1.872000px;}
.ws23{word-spacing:2.376000px;}
.ws2e{word-spacing:2.976000px;}
.ws2d{word-spacing:3.360000px;}
.ws15{word-spacing:3.528000px;}
.ws1{word-spacing:4.200000px;}
.ws5{word-spacing:4.464000px;}
.ws1b{word-spacing:5.256000px;}
.ws19{word-spacing:6.264000px;}
.ws1e{word-spacing:6.552000px;}
.ws1a{word-spacing:6.984000px;}
.ws21{word-spacing:7.200000px;}
.ws18{word-spacing:7.344000px;}
.wsf{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._14{margin-left:-14.368200px;}
._c{margin-left:-13.349400px;}
._b{margin-left:-10.792800px;}
._a{margin-left:-7.569600px;}
._1{margin-left:-5.964000px;}
._15{margin-left:-4.872000px;}
._10{margin-left:-3.808800px;}
._5{margin-left:-2.436000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._7{width:3.371400px;}
._8{width:4.464600px;}
._9{width:5.572800px;}
._4{width:7.032000px;}
._6{width:8.328000px;}
._11{width:9.861600px;}
._f{width:11.148000px;}
._12{width:12.336000px;}
._e{width:15.213600px;}
._d{width:16.617600px;}
._13{width:17.809200px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:419.376600px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y43{bottom:117.000000px;}
.y67{bottom:118.110000px;}
.y1f{bottom:118.862550px;}
.y90{bottom:121.044150px;}
.y42{bottom:139.500000px;}
.y8f{bottom:140.244150px;}
.y1e{bottom:141.056550px;}
.y66{bottom:141.204000px;}
.y8e{bottom:159.444150px;}
.y41{bottom:162.000000px;}
.y1d{bottom:163.250550px;}
.y65{bottom:164.298000px;}
.y8d{bottom:178.644150px;}
.y40{bottom:184.500000px;}
.y1c{bottom:185.444550px;}
.y64{bottom:187.392000px;}
.y8c{bottom:204.150000px;}
.y3f{bottom:207.000000px;}
.y1b{bottom:207.638550px;}
.y63{bottom:210.486000px;}
.y3e{bottom:229.500000px;}
.y1a{bottom:229.832550px;}
.y62{bottom:233.580000px;}
.y8b{bottom:250.050000px;}
.y3d{bottom:252.000000px;}
.y19{bottom:252.026550px;}
.y61{bottom:256.674000px;}
.y8a{bottom:265.506000px;}
.y18{bottom:274.220550px;}
.y3c{bottom:274.500000px;}
.y60{bottom:279.768000px;}
.y89{bottom:280.962000px;}
.y88{bottom:296.406000px;}
.y17{bottom:296.414550px;}
.y3b{bottom:297.000000px;}
.y5f{bottom:302.862000px;}
.y87{bottom:311.862000px;}
.y16{bottom:318.608550px;}
.y3a{bottom:319.500000px;}
.y5e{bottom:325.956000px;}
.y86{bottom:327.318000px;}
.y15{bottom:340.802550px;}
.y39{bottom:342.000000px;}
.y85{bottom:342.774000px;}
.y5d{bottom:349.050000px;}
.y84{bottom:358.218000px;}
.y14{bottom:362.996550px;}
.y38{bottom:364.500000px;}
.y5c{bottom:372.144000px;}
.y83{bottom:373.674000px;}
.y13{bottom:385.190550px;}
.y37{bottom:387.000000px;}
.y82{bottom:389.130000px;}
.y5b{bottom:395.238000px;}
.y81{bottom:404.586000px;}
.y12{bottom:407.384550px;}
.y36{bottom:409.500000px;}
.y5a{bottom:418.332000px;}
.y80{bottom:420.042000px;}
.y11{bottom:429.578550px;}
.y35{bottom:432.000000px;}
.y7f{bottom:435.486000px;}
.y59{bottom:441.426000px;}
.y7e{bottom:450.942000px;}
.y10{bottom:451.772550px;}
.y34{bottom:454.500000px;}
.y58{bottom:464.520000px;}
.y7d{bottom:466.398000px;}
.yf{bottom:473.966550px;}
.y33{bottom:477.000000px;}
.y7c{bottom:481.854000px;}
.y57{bottom:487.614000px;}
.ye{bottom:496.160550px;}
.y7b{bottom:497.310000px;}
.y32{bottom:499.500000px;}
.y56{bottom:510.708000px;}
.y7a{bottom:512.754000px;}
.yd{bottom:518.354550px;}
.y31{bottom:522.000000px;}
.y79{bottom:528.210000px;}
.y55{bottom:533.802000px;}
.yc{bottom:540.548550px;}
.y78{bottom:543.666000px;}
.y30{bottom:544.500000px;}
.y54{bottom:556.896000px;}
.y77{bottom:559.122000px;}
.yb{bottom:562.742550px;}
.y2f{bottom:567.000000px;}
.y53{bottom:579.990000px;}
.y76{bottom:580.950000px;}
.ya{bottom:584.936550px;}
.y2e{bottom:589.500000px;}
.y52{bottom:603.084000px;}
.y7{bottom:607.118550px;}
.y9{bottom:607.130550px;}
.y2d{bottom:612.000000px;}
.y51{bottom:626.178000px;}
.y75{bottom:626.904000px;}
.y8{bottom:629.324550px;}
.y2c{bottom:634.500000px;}
.y50{bottom:649.272000px;}
.y74{bottom:649.998000px;}
.y2b{bottom:657.000000px;}
.y4f{bottom:672.366000px;}
.y73{bottom:673.092000px;}
.y2a{bottom:679.500000px;}
.y9b{bottom:686.250000px;}
.y4e{bottom:695.460000px;}
.y72{bottom:696.186000px;}
.y29{bottom:702.000000px;}
.y9a{bottom:705.000000px;}
.y4d{bottom:718.554000px;}
.y71{bottom:719.280000px;}
.y99{bottom:723.750000px;}
.y28{bottom:724.500000px;}
.y6{bottom:727.718550px;}
.y4c{bottom:741.648000px;}
.y70{bottom:742.374000px;}
.y98{bottom:742.500000px;}
.y27{bottom:747.000000px;}
.y4b{bottom:764.742000px;}
.y6f{bottom:765.468000px;}
.y26{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y97{bottom:772.500000px;}
.y4a{bottom:787.836000px;}
.y6e{bottom:788.562000px;}
.y25{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.y49{bottom:810.930000px;}
.y6d{bottom:811.656000px;}
.y24{bottom:814.500000px;}
.y96{bottom:818.250000px;}
.y48{bottom:834.024000px;}
.y6c{bottom:834.750000px;}
.y23{bottom:837.000000px;}
.y95{bottom:855.750000px;}
.y47{bottom:857.118000px;}
.y6b{bottom:857.700000px;}
.y3{bottom:859.500000px;}
.y94{bottom:874.500000px;}
.y46{bottom:880.212000px;}
.y6a{bottom:880.650000px;}
.y22{bottom:882.000000px;}
.y2{bottom:889.500000px;}
.y93{bottom:893.250000px;}
.y45{bottom:903.306000px;}
.y69{bottom:903.600000px;}
.y21{bottom:904.500000px;}
.y92{bottom:912.000000px;}
.y44{bottom:926.400000px;}
.y68{bottom:926.550000px;}
.y20{bottom:927.000000px;}
.y91{bottom:930.750000px;}
.h9{height:39.072000px;}
.ha{height:40.757812px;}
.h1{height:41.396484px;}
.h5{height:47.988281px;}
.h4{height:50.580000px;}
.h6{height:50.947266px;}
.h8{height:61.136719px;}
.h2{height:82.792969px;}
.h3{height:101.894531px;}
.h7{height:293.563620px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.381950px;}
.x2{left:112.500000px;}
.x4{left:127.381350px;}
.x7{left:135.526950px;}
.x3{left:157.477350px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:157.866667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.089600pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.134400pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls28{letter-spacing:2.602667pt;}
.ls27{letter-spacing:2.636800pt;}
.ls26{letter-spacing:2.645333pt;}
.ls1e{letter-spacing:2.816000pt;}
.ls2{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.224000pt;}
.ls10{letter-spacing:4.544000pt;}
.ls15{letter-spacing:5.747200pt;}
.ls0{letter-spacing:7.498667pt;}
.ls13{letter-spacing:7.936000pt;}
.ls3{letter-spacing:9.316670pt;}
.ls1{letter-spacing:9.546667pt;}
.lsd{letter-spacing:9.600000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws20{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.232000pt;}
.wsd{word-spacing:-9.600000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws14{word-spacing:-0.704000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.576000pt;}
.ws27{word-spacing:-0.512000pt;}
.wsc{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.064000pt;}
.wsb{word-spacing:0.128000pt;}
.ws29{word-spacing:0.192000pt;}
.ws24{word-spacing:0.256000pt;}
.ws6{word-spacing:0.266667pt;}
.ws9{word-spacing:0.320000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws13{word-spacing:0.533333pt;}
.ws1d{word-spacing:0.576000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws8{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.768000pt;}
.ws2a{word-spacing:0.896000pt;}
.ws4{word-spacing:1.013333pt;}
.ws2{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.664000pt;}
.ws23{word-spacing:2.112000pt;}
.ws2e{word-spacing:2.645333pt;}
.ws2d{word-spacing:2.986667pt;}
.ws15{word-spacing:3.136000pt;}
.ws1{word-spacing:3.733333pt;}
.ws5{word-spacing:3.968000pt;}
.ws1b{word-spacing:4.672000pt;}
.ws19{word-spacing:5.568000pt;}
.ws1e{word-spacing:5.824000pt;}
.ws1a{word-spacing:6.208000pt;}
.ws21{word-spacing:6.400000pt;}
.ws18{word-spacing:6.528000pt;}
.wsf{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._14{margin-left:-12.771733pt;}
._c{margin-left:-11.866133pt;}
._b{margin-left:-9.593600pt;}
._a{margin-left:-6.728533pt;}
._1{margin-left:-5.301333pt;}
._15{margin-left:-4.330667pt;}
._10{margin-left:-3.385600pt;}
._5{margin-left:-2.165333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._7{width:2.996800pt;}
._8{width:3.968533pt;}
._9{width:4.953600pt;}
._4{width:6.250667pt;}
._6{width:7.402667pt;}
._11{width:8.765867pt;}
._f{width:9.909333pt;}
._12{width:10.965333pt;}
._e{width:13.523200pt;}
._d{width:14.771200pt;}
._13{width:15.830400pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:372.779200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y43{bottom:104.000000pt;}
.y67{bottom:104.986667pt;}
.y1f{bottom:105.655600pt;}
.y90{bottom:107.594800pt;}
.y42{bottom:124.000000pt;}
.y8f{bottom:124.661467pt;}
.y1e{bottom:125.383600pt;}
.y66{bottom:125.514667pt;}
.y8e{bottom:141.728133pt;}
.y41{bottom:144.000000pt;}
.y1d{bottom:145.111600pt;}
.y65{bottom:146.042667pt;}
.y8d{bottom:158.794800pt;}
.y40{bottom:164.000000pt;}
.y1c{bottom:164.839600pt;}
.y64{bottom:166.570667pt;}
.y8c{bottom:181.466667pt;}
.y3f{bottom:184.000000pt;}
.y1b{bottom:184.567600pt;}
.y63{bottom:187.098667pt;}
.y3e{bottom:204.000000pt;}
.y1a{bottom:204.295600pt;}
.y62{bottom:207.626667pt;}
.y8b{bottom:222.266667pt;}
.y3d{bottom:224.000000pt;}
.y19{bottom:224.023600pt;}
.y61{bottom:228.154667pt;}
.y8a{bottom:236.005333pt;}
.y18{bottom:243.751600pt;}
.y3c{bottom:244.000000pt;}
.y60{bottom:248.682667pt;}
.y89{bottom:249.744000pt;}
.y88{bottom:263.472000pt;}
.y17{bottom:263.479600pt;}
.y3b{bottom:264.000000pt;}
.y5f{bottom:269.210667pt;}
.y87{bottom:277.210667pt;}
.y16{bottom:283.207600pt;}
.y3a{bottom:284.000000pt;}
.y5e{bottom:289.738667pt;}
.y86{bottom:290.949333pt;}
.y15{bottom:302.935600pt;}
.y39{bottom:304.000000pt;}
.y85{bottom:304.688000pt;}
.y5d{bottom:310.266667pt;}
.y84{bottom:318.416000pt;}
.y14{bottom:322.663600pt;}
.y38{bottom:324.000000pt;}
.y5c{bottom:330.794667pt;}
.y83{bottom:332.154667pt;}
.y13{bottom:342.391600pt;}
.y37{bottom:344.000000pt;}
.y82{bottom:345.893333pt;}
.y5b{bottom:351.322667pt;}
.y81{bottom:359.632000pt;}
.y12{bottom:362.119600pt;}
.y36{bottom:364.000000pt;}
.y5a{bottom:371.850667pt;}
.y80{bottom:373.370667pt;}
.y11{bottom:381.847600pt;}
.y35{bottom:384.000000pt;}
.y7f{bottom:387.098667pt;}
.y59{bottom:392.378667pt;}
.y7e{bottom:400.837333pt;}
.y10{bottom:401.575600pt;}
.y34{bottom:404.000000pt;}
.y58{bottom:412.906667pt;}
.y7d{bottom:414.576000pt;}
.yf{bottom:421.303600pt;}
.y33{bottom:424.000000pt;}
.y7c{bottom:428.314667pt;}
.y57{bottom:433.434667pt;}
.ye{bottom:441.031600pt;}
.y7b{bottom:442.053333pt;}
.y32{bottom:444.000000pt;}
.y56{bottom:453.962667pt;}
.y7a{bottom:455.781333pt;}
.yd{bottom:460.759600pt;}
.y31{bottom:464.000000pt;}
.y79{bottom:469.520000pt;}
.y55{bottom:474.490667pt;}
.yc{bottom:480.487600pt;}
.y78{bottom:483.258667pt;}
.y30{bottom:484.000000pt;}
.y54{bottom:495.018667pt;}
.y77{bottom:496.997333pt;}
.yb{bottom:500.215600pt;}
.y2f{bottom:504.000000pt;}
.y53{bottom:515.546667pt;}
.y76{bottom:516.400000pt;}
.ya{bottom:519.943600pt;}
.y2e{bottom:524.000000pt;}
.y52{bottom:536.074667pt;}
.y7{bottom:539.660933pt;}
.y9{bottom:539.671600pt;}
.y2d{bottom:544.000000pt;}
.y51{bottom:556.602667pt;}
.y75{bottom:557.248000pt;}
.y8{bottom:559.399600pt;}
.y2c{bottom:564.000000pt;}
.y50{bottom:577.130667pt;}
.y74{bottom:577.776000pt;}
.y2b{bottom:584.000000pt;}
.y4f{bottom:597.658667pt;}
.y73{bottom:598.304000pt;}
.y2a{bottom:604.000000pt;}
.y9b{bottom:610.000000pt;}
.y4e{bottom:618.186667pt;}
.y72{bottom:618.832000pt;}
.y29{bottom:624.000000pt;}
.y9a{bottom:626.666667pt;}
.y4d{bottom:638.714667pt;}
.y71{bottom:639.360000pt;}
.y99{bottom:643.333333pt;}
.y28{bottom:644.000000pt;}
.y6{bottom:646.860933pt;}
.y4c{bottom:659.242667pt;}
.y70{bottom:659.888000pt;}
.y98{bottom:660.000000pt;}
.y27{bottom:664.000000pt;}
.y4b{bottom:679.770667pt;}
.y6f{bottom:680.416000pt;}
.y26{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y97{bottom:686.666667pt;}
.y4a{bottom:700.298667pt;}
.y6e{bottom:700.944000pt;}
.y25{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.y49{bottom:720.826667pt;}
.y6d{bottom:721.472000pt;}
.y24{bottom:724.000000pt;}
.y96{bottom:727.333333pt;}
.y48{bottom:741.354667pt;}
.y6c{bottom:742.000000pt;}
.y23{bottom:744.000000pt;}
.y95{bottom:760.666667pt;}
.y47{bottom:761.882667pt;}
.y6b{bottom:762.400000pt;}
.y3{bottom:764.000000pt;}
.y94{bottom:777.333333pt;}
.y46{bottom:782.410667pt;}
.y6a{bottom:782.800000pt;}
.y22{bottom:784.000000pt;}
.y2{bottom:790.666667pt;}
.y93{bottom:794.000000pt;}
.y45{bottom:802.938667pt;}
.y69{bottom:803.200000pt;}
.y21{bottom:804.000000pt;}
.y92{bottom:810.666667pt;}
.y44{bottom:823.466667pt;}
.y68{bottom:823.600000pt;}
.y20{bottom:824.000000pt;}
.y91{bottom:827.333333pt;}
.h9{height:34.730667pt;}
.ha{height:36.229167pt;}
.h1{height:36.796875pt;}
.h5{height:42.656250pt;}
.h4{height:44.960000pt;}
.h6{height:45.286458pt;}
.h8{height:54.343750pt;}
.h2{height:73.593750pt;}
.h3{height:90.572917pt;}
.h7{height:260.945440pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.228400pt;}
.x2{left:100.000000pt;}
.x4{left:113.227867pt;}
.x7{left:120.468400pt;}
.x3{left:139.979867pt;}
.x1{left:556.250000pt;}
}




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