
    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_ac9f5dbb1bca87f8a6fda6f9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_6b858a826e14a78433cbc172.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_d03f2d87e1ea160d28809a54.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_3c6f076f0dc95f3be374a8bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_9e252c40c50018ab28a6528a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_54bb9a41666fd45d40d8a290.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_e8a54296f5cd349a2627f4dc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.825195;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_ad2850dd190279ef32b45d10.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_e27868835c263c207fae18d2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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_2225cf1ce7f9d4412ddd6b55.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_b21b574028c346d87c7a9b82.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_33db5fd29655bb49997a5abc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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:ff12;src:url('chunks/assets/font_ad1f04b6f8754bfe6c9c808f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url('chunks/assets/font_7cd13491fbaa6a08a1f0f08b.woff')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v2{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.003906px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000023px;}
.ls6{letter-spacing:1463.849146px;}
.ls4{letter-spacing:1766.821591px;}
.ls5{letter-spacing:2088.847549px;}
.ls2{letter-spacing:2252.731379px;}
.ls3{letter-spacing:2253.441718px;}
.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;}
}
.ws8{word-spacing:-29.999999px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.414062px;}
.ws4{word-spacing:-13.599610px;}
.ws3{word-spacing:-13.212891px;}
.ws0{word-spacing:-12.011718px;}
.ws7{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.648438px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-5.273437px;}
._d{margin-left:-4.231090px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.003734px;}
._6{width:4.500003px;}
._4{width:8.085943px;}
._5{width:9.914058px;}
._7{width:12.585940px;}
._a{width:17.183798px;}
._9{width:18.703123px;}
._8{width:22.500002px;}
._b{width:27.000002px;}
._c{width:31.500003px;}
._3{width:2229.138593px;}
.fc7{color:rgb(17,85,204);}
.fc5{color:rgb(255,153,0);}
.fc2{color:rgb(25,96,150);}
.fc1{color:rgb(244,125,32);}
.fc6{color:rgb(67,67,67);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.028323px;}
.y2b{bottom:9.921295px;}
.y18{bottom:9.921340px;}
.y2e{bottom:9.921375px;}
.y29{bottom:9.921378px;}
.y22{bottom:9.921383px;}
.y11{bottom:9.921387px;}
.yf{bottom:9.921423px;}
.y9{bottom:9.921432px;}
.y25{bottom:9.921437px;}
.y52{bottom:11.768547px;}
.y57{bottom:11.768551px;}
.y5d{bottom:11.768555px;}
.y4e{bottom:12.708978px;}
.y4a{bottom:12.708981px;}
.y44{bottom:12.708985px;}
.y47{bottom:12.708996px;}
.y42{bottom:18.565528px;}
.y3d{bottom:18.565606px;}
.y40{bottom:18.565613px;}
.yb{bottom:22.338913px;}
.y2d{bottom:29.696685px;}
.y24{bottom:29.696731px;}
.ye{bottom:29.696778px;}
.y34{bottom:31.458988px;}
.y56{bottom:32.466796px;}
.y21{bottom:32.696693px;}
.y51{bottom:33.407223px;}
.y4d{bottom:34.681638px;}
.y46{bottom:34.681641px;}
.y36{bottom:39.149963px;}
.y2{bottom:39.150008px;}
.y6d{bottom:39.150146px;}
.y3f{bottom:40.538183px;}
.y3c{bottom:43.538266px;}
.y50{bottom:55.379883px;}
.y20{bottom:55.472168px;}
.y4c{bottom:56.654298px;}
.y33{bottom:62.840332px;}
.y3b{bottom:65.510926px;}
.y1f{bottom:75.247508px;}
.y32{bottom:83.538577px;}
.y3a{bottom:87.483496px;}
.y1e{bottom:95.022908px;}
.ya7{bottom:104.128423px;}
.y1d{bottom:117.798247px;}
.ya6{bottom:127.068975px;}
.y94{bottom:192.122317px;}
.y31{bottom:210.277765px;}
.y93{bottom:212.820555px;}
.y92{bottom:234.459221px;}
.y30{bottom:235.912532px;}
.y91{bottom:256.431878px;}
.y90{bottom:278.404539px;}
.y2f{bottom:278.741638px;}
.y2c{bottom:297.005316px;}
.y8f{bottom:300.377196px;}
.y2a{bottom:316.780705px;}
.ya5{bottom:320.776618px;}
.y8e{bottom:322.349852px;}
.ya4{bottom:342.749274px;}
.y28{bottom:343.681098px;}
.y8d{bottom:344.322508px;}
.y27{bottom:363.456489px;}
.ya3{bottom:364.721930px;}
.y8c{bottom:366.295164px;}
.ya2{bottom:386.694586px;}
.y8b{bottom:388.267821px;}
.y26{bottom:390.356874px;}
.y63{bottom:393.173762px;}
.ya1{bottom:408.667243px;}
.y8a{bottom:410.240477px;}
.y1c{bottom:417.257264px;}
.ya0{bottom:430.639888px;}
.y89{bottom:432.213133px;}
.y62{bottom:432.293883px;}
.y9f{bottom:452.612551px;}
.y88{bottom:455.797493px;}
.y9e{bottom:474.585208px;}
.y61{bottom:478.810728px;}
.y9d{bottom:496.557868px;}
.y87{bottom:501.079841px;}
.y23{bottom:505.358780px;}
.y60{bottom:505.379143px;}
.y9c{bottom:518.530524px;}
.y86{bottom:521.624264px;}
.y1b{bottom:525.134171px;}
.y9b{bottom:540.503180px;}
.y85{bottom:543.596920px;}
.y5f{bottom:545.351803px;}
.y1a{bottom:552.034614px;}
.y9a{bottom:562.475836px;}
.y5e{bottom:563.615478px;}
.y84{bottom:565.569579px;}
.y19{bottom:578.935001px;}
.y99{bottom:584.448493px;}
.y83{bottom:587.542235px;}
.y5b{bottom:602.463138px;}
.y5c{bottom:603.737553px;}
.y98{bottom:605.480707px;}
.y17{bottom:609.310001px;}
.y82{bottom:609.514891px;}
.y97{bottom:627.119383px;}
.y81{bottom:631.487548px;}
.y59{bottom:641.310787px;}
.y5a{bottom:643.859616px;}
.y96{bottom:648.151612px;}
.y80{bottom:653.460204px;}
.y16{bottom:657.655703px;}
.y58{bottom:663.283443px;}
.y95{bottom:668.849850px;}
.y7f{bottom:675.432860px;}
.y7e{bottom:697.405516px;}
.y54{bottom:702.131107px;}
.y15{bottom:702.400778px;}
.y55{bottom:704.679936px;}
.y7d{bottom:719.378173px;}
.y14{bottom:720.330459px;}
.y53{bottom:724.103763px;}
.y7c{bottom:741.350833px;}
.y13{bottom:747.230844px;}
.y4b{bottom:762.951416px;}
.y7b{bottom:763.323493px;}
.y4f{bottom:764.225831px;}
.y12{bottom:774.131244px;}
.y49{bottom:784.924073px;}
.y7a{bottom:785.296149px;}
.y6b{bottom:792.310176px;}
.yd{bottom:801.031638px;}
.y48{bottom:806.896728px;}
.y79{bottom:807.268805px;}
.y10{bottom:810.919329px;}
.y78{bottom:829.241461px;}
.y6a{bottom:841.926457px;}
.y45{bottom:845.744378px;}
.ya{bottom:847.707416px;}
.y77{bottom:851.214118px;}
.y8{bottom:853.130259px;}
.y43{bottom:867.717033px;}
.y76{bottom:873.186763px;}
.y69{bottom:887.208986px;}
.y7{bottom:891.898823px;}
.y75{bottom:895.159423px;}
.y39{bottom:906.564697px;}
.y68{bottom:911.850956px;}
.y74{bottom:917.132083px;}
.y67{bottom:936.492371px;}
.y73{bottom:939.104731px;}
.y6{bottom:939.195698px;}
.y3e{bottom:953.510010px;}
.y66{bottom:960.199408px;}
.y72{bottom:961.077388px;}
.y41{bottom:975.482666px;}
.y71{bottom:983.050048px;}
.y5{bottom:984.075578px;}
.y65{bottom:984.607181px;}
.y70{bottom:1005.022705px;}
.y4{bottom:1006.414467px;}
.y64{bottom:1009.249145px;}
.y38{bottom:1025.164398px;}
.y6f{bottom:1026.592529px;}
.y3{bottom:1043.035537px;}
.y6e{bottom:1048.748290px;}
.y37{bottom:1048.748474px;}
.y6c{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y35{bottom:1071.600036px;}
.h2b{height:25.013672px;}
.h10{height:25.775300px;}
.hc{height:25.775344px;}
.ha{height:25.775391px;}
.h6{height:25.775436px;}
.hf{height:35.991211px;}
.h1f{height:36.448242px;}
.h8{height:36.621140px;}
.h1a{height:37.722657px;}
.h7{height:38.179688px;}
.hb{height:38.838867px;}
.h2c{height:41.689452px;}
.h17{height:42.421874px;}
.h4{height:43.154296px;}
.h19{height:43.722748px;}
.h28{height:43.989259px;}
.h11{height:45.550689px;}
.he{height:45.550735px;}
.h9{height:45.550782px;}
.h24{height:46.664064px;}
.h23{height:47.437501px;}
.h22{height:47.469728px;}
.h29{height:47.988281px;}
.h2{height:50.027344px;}
.h20{height:51.750000px;}
.h12{height:51.785156px;}
.h13{height:55.986326px;}
.h1e{height:57.146484px;}
.h1b{height:59.695312px;}
.h2a{height:60.075001px;}
.h21{height:60.416013px;}
.h25{height:63.984377px;}
.h18{height:65.695404px;}
.h27{height:67.875002px;}
.h5{height:69.046877px;}
.h1d{height:80.393555px;}
.h1c{height:81.667970px;}
.h3{height:86.308592px;}
.h14{height:100.343265px;}
.h16{height:112.640717px;}
.hd{height:133.652252px;}
.h15{height:191.399964px;}
.h1{height:191.400009px;}
.h26{height:191.400147px;}
.h0{height:1263.000000px;}
.w6{width:111.375000px;}
.w4{width:122.625000px;}
.w8{width:132.750000px;}
.w9{width:135.000000px;}
.w5{width:167.625000px;}
.w2{width:174.375000px;}
.wa{width:182.250000px;}
.w7{width:261.000000px;}
.wb{width:490.500000px;}
.w3{width:493.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:6.750000px;}
.x8{left:7.875000px;}
.x10{left:15.750000px;}
.x6{left:16.875000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.xf{left:111.375000px;}
.x18{left:135.000000px;}
.x2{left:216.815100px;}
.x9{left:232.875000px;}
.x1{left:244.125000px;}
.x11{left:245.250000px;}
.xc{left:282.375000px;}
.x7{left:284.625000px;}
.x16{left:292.500000px;}
.x3{left:358.241659px;}
.x12{left:381.375000px;}
.xa{left:401.625000px;}
.xd{left:446.456700px;}
.xb{left:514.125000px;}
.x13{left:517.500000px;}
.x14{left:653.625000px;}
.x17{left:775.720046px;}
.xe{left:776.845046px;}
.x19{left:789.750000px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.781250pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000020pt;}
.ls6{letter-spacing:1301.199241pt;}
.ls4{letter-spacing:1570.508081pt;}
.ls5{letter-spacing:1856.753377pt;}
.ls2{letter-spacing:2002.427893pt;}
.ls3{letter-spacing:2003.059305pt;}
.ws8{word-spacing:-26.666666pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.812500pt;}
.ws4{word-spacing:-12.088542pt;}
.ws3{word-spacing:-11.744792pt;}
.ws0{word-spacing:-10.677083pt;}
.ws7{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.687500pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-4.687500pt;}
._d{margin-left:-3.760969pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-0.892208pt;}
._6{width:4.000003pt;}
._4{width:7.187504pt;}
._5{width:8.812496pt;}
._7{width:11.187502pt;}
._a{width:15.274487pt;}
._9{width:16.624999pt;}
._8{width:20.000002pt;}
._b{width:24.000002pt;}
._c{width:28.000002pt;}
._3{width:1981.456527pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.580731pt;}
.y2b{bottom:8.818929pt;}
.y18{bottom:8.818969pt;}
.y2e{bottom:8.819000pt;}
.y29{bottom:8.819003pt;}
.y22{bottom:8.819007pt;}
.y11{bottom:8.819010pt;}
.yf{bottom:8.819043pt;}
.y9{bottom:8.819050pt;}
.y25{bottom:8.819055pt;}
.y52{bottom:10.460931pt;}
.y57{bottom:10.460935pt;}
.y5d{bottom:10.460937pt;}
.y4e{bottom:11.296869pt;}
.y4a{bottom:11.296872pt;}
.y44{bottom:11.296876pt;}
.y47{bottom:11.296885pt;}
.y42{bottom:16.502691pt;}
.y3d{bottom:16.502761pt;}
.y40{bottom:16.502768pt;}
.yb{bottom:19.856812pt;}
.y2d{bottom:26.397053pt;}
.y24{bottom:26.397094pt;}
.ye{bottom:26.397136pt;}
.y34{bottom:27.963545pt;}
.y56{bottom:28.859375pt;}
.y21{bottom:29.063727pt;}
.y51{bottom:29.695309pt;}
.y4d{bottom:30.828122pt;}
.y46{bottom:30.828125pt;}
.y36{bottom:34.799967pt;}
.y2{bottom:34.800007pt;}
.y6d{bottom:34.800130pt;}
.y3f{bottom:36.033941pt;}
.y3c{bottom:38.700681pt;}
.y50{bottom:49.226562pt;}
.y20{bottom:49.308593pt;}
.y4c{bottom:50.359376pt;}
.y33{bottom:55.858073pt;}
.y3b{bottom:58.231934pt;}
.y1f{bottom:66.886673pt;}
.y32{bottom:74.256513pt;}
.y3a{bottom:77.763107pt;}
.y1e{bottom:84.464807pt;}
.ya7{bottom:92.558598pt;}
.y1d{bottom:104.709553pt;}
.ya6{bottom:112.950200pt;}
.y94{bottom:170.775393pt;}
.y31{bottom:186.913569pt;}
.y93{bottom:189.173827pt;}
.y92{bottom:208.408197pt;}
.y30{bottom:209.700029pt;}
.y91{bottom:227.939447pt;}
.y90{bottom:247.470702pt;}
.y2f{bottom:247.770345pt;}
.y2c{bottom:264.004725pt;}
.y8f{bottom:267.001952pt;}
.y2a{bottom:281.582849pt;}
.ya5{bottom:285.134771pt;}
.y8e{bottom:286.533202pt;}
.ya4{bottom:304.666021pt;}
.y28{bottom:305.494309pt;}
.y8d{bottom:306.064452pt;}
.y27{bottom:323.072435pt;}
.ya3{bottom:324.197271pt;}
.y8c{bottom:325.595702pt;}
.ya2{bottom:343.728521pt;}
.y8b{bottom:345.126952pt;}
.y26{bottom:346.983888pt;}
.y63{bottom:349.487789pt;}
.ya1{bottom:363.259772pt;}
.y8a{bottom:364.658202pt;}
.y1c{bottom:370.895345pt;}
.ya0{bottom:382.791012pt;}
.y89{bottom:384.189452pt;}
.y62{bottom:384.261229pt;}
.y9f{bottom:402.322268pt;}
.y88{bottom:405.153327pt;}
.y9e{bottom:421.853518pt;}
.y61{bottom:425.609536pt;}
.y9d{bottom:441.384771pt;}
.y87{bottom:445.404303pt;}
.y23{bottom:449.207804pt;}
.y60{bottom:449.225905pt;}
.y9c{bottom:460.916021pt;}
.y86{bottom:463.666013pt;}
.y1b{bottom:466.785929pt;}
.y9b{bottom:480.447271pt;}
.y85{bottom:483.197263pt;}
.y5f{bottom:484.757158pt;}
.y1a{bottom:490.697435pt;}
.y9a{bottom:499.978521pt;}
.y5e{bottom:500.991536pt;}
.y84{bottom:502.728515pt;}
.y19{bottom:514.608889pt;}
.y99{bottom:519.509772pt;}
.y83{bottom:522.259764pt;}
.y5b{bottom:535.522789pt;}
.y5c{bottom:536.655603pt;}
.y98{bottom:538.205073pt;}
.y17{bottom:541.608889pt;}
.y82{bottom:541.791015pt;}
.y97{bottom:557.439452pt;}
.y81{bottom:561.322265pt;}
.y59{bottom:570.054033pt;}
.y5a{bottom:572.319659pt;}
.y96{bottom:576.134767pt;}
.y80{bottom:580.853515pt;}
.y16{bottom:584.582847pt;}
.y58{bottom:589.585283pt;}
.y95{bottom:594.533200pt;}
.y7f{bottom:600.384765pt;}
.y7e{bottom:619.916015pt;}
.y54{bottom:624.116540pt;}
.y15{bottom:624.356247pt;}
.y55{bottom:626.382165pt;}
.y7d{bottom:639.447265pt;}
.y14{bottom:640.293741pt;}
.y53{bottom:643.647789pt;}
.y7c{bottom:658.978518pt;}
.y13{bottom:664.205195pt;}
.y4b{bottom:678.179036pt;}
.y7b{bottom:678.509772pt;}
.y4f{bottom:679.311849pt;}
.y12{bottom:688.116661pt;}
.y49{bottom:697.710287pt;}
.y7a{bottom:698.041021pt;}
.y6b{bottom:704.275712pt;}
.yd{bottom:712.028123pt;}
.y48{bottom:717.241536pt;}
.y79{bottom:717.572271pt;}
.y10{bottom:720.817181pt;}
.y78{bottom:737.103521pt;}
.y6a{bottom:748.379073pt;}
.y45{bottom:751.772780pt;}
.ya{bottom:753.517703pt;}
.y77{bottom:756.634772pt;}
.y8{bottom:758.338008pt;}
.y43{bottom:771.304029pt;}
.y76{bottom:776.166012pt;}
.y69{bottom:788.630210pt;}
.y7{bottom:792.798953pt;}
.y75{bottom:795.697265pt;}
.y39{bottom:805.835287pt;}
.y68{bottom:810.534183pt;}
.y74{bottom:815.228518pt;}
.y67{bottom:832.437663pt;}
.y73{bottom:834.759761pt;}
.y6{bottom:834.840620pt;}
.y3e{bottom:847.564453pt;}
.y66{bottom:853.510585pt;}
.y72{bottom:854.291012pt;}
.y41{bottom:867.095703pt;}
.y71{bottom:873.822265pt;}
.y5{bottom:874.733847pt;}
.y65{bottom:875.206383pt;}
.y70{bottom:893.353516pt;}
.y4{bottom:894.590637pt;}
.y64{bottom:897.110351pt;}
.y38{bottom:911.257242pt;}
.y6f{bottom:912.526692pt;}
.y3{bottom:927.142700pt;}
.y6e{bottom:932.220703pt;}
.y37{bottom:932.220865pt;}
.y6c{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y35{bottom:952.533365pt;}
.h2b{height:22.234375pt;}
.h10{height:22.911377pt;}
.hc{height:22.911417pt;}
.ha{height:22.911459pt;}
.h6{height:22.911499pt;}
.hf{height:31.992188pt;}
.h1f{height:32.398437pt;}
.h8{height:32.552124pt;}
.h1a{height:33.531251pt;}
.h7{height:33.937500pt;}
.hb{height:34.523438pt;}
.h2c{height:37.057291pt;}
.h17{height:37.708332pt;}
.h4{height:38.359374pt;}
.h19{height:38.864665pt;}
.h28{height:39.101563pt;}
.h11{height:40.489501pt;}
.he{height:40.489543pt;}
.h9{height:40.489584pt;}
.h24{height:41.479168pt;}
.h23{height:42.166668pt;}
.h22{height:42.195313pt;}
.h29{height:42.656250pt;}
.h2{height:44.468750pt;}
.h20{height:46.000000pt;}
.h12{height:46.031250pt;}
.h13{height:49.765623pt;}
.h1e{height:50.796875pt;}
.h1b{height:53.062500pt;}
.h2a{height:53.400001pt;}
.h21{height:53.703123pt;}
.h25{height:56.875002pt;}
.h18{height:58.395915pt;}
.h27{height:60.333335pt;}
.h5{height:61.375002pt;}
.h1d{height:71.460937pt;}
.h1c{height:72.593751pt;}
.h3{height:76.718748pt;}
.h14{height:89.194013pt;}
.h16{height:100.125081pt;}
.hd{height:118.802001pt;}
.h15{height:170.133301pt;}
.h1{height:170.133341pt;}
.h26{height:170.133464pt;}
.h0{height:1122.666667pt;}
.w6{width:99.000000pt;}
.w4{width:109.000000pt;}
.w8{width:118.000000pt;}
.w9{width:120.000000pt;}
.w5{width:149.000000pt;}
.w2{width:155.000000pt;}
.wa{width:162.000000pt;}
.w7{width:232.000000pt;}
.wb{width:436.000000pt;}
.w3{width:439.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.000000pt;}
.x8{left:7.000000pt;}
.x10{left:14.000000pt;}
.x6{left:15.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.xf{left:99.000000pt;}
.x18{left:120.000000pt;}
.x2{left:192.724533pt;}
.x9{left:207.000000pt;}
.x1{left:217.000000pt;}
.x11{left:218.000000pt;}
.xc{left:251.000000pt;}
.x7{left:253.000000pt;}
.x16{left:260.000000pt;}
.x3{left:318.437030pt;}
.x12{left:339.000000pt;}
.xa{left:357.000000pt;}
.xd{left:396.850400pt;}
.xb{left:457.000000pt;}
.x13{left:460.000000pt;}
.x14{left:581.000000pt;}
.x17{left:689.528930pt;}
.xe{left:690.528930pt;}
.x19{left:702.000000pt;}
}




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