
    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_26e0ce4e5c2e5d5454cf46e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_ce009067bf1d91e257a6c3c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_31331e1c5e2d33c8541d4dba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_8bc9acca4753443c51419d9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_1ca2aa3041425c840955a46a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_0c4d0427f3fc1f6427a93623.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b6b973b570b4861e513e78d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_fe88a30857e0b1a469ac4295.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_57f0ab7fa30b1a42b5c2b675.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_854b3bf8499660c3f3d99485.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_688a3247885bd71c72f8b6d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.918000px;}
.ls2{letter-spacing:1.890000px;}
.ls0{letter-spacing:2.758200px;}
.ls1{letter-spacing:2.971200px;}
.ls5{letter-spacing:3.912000px;}
.ls6{letter-spacing:18.336000px;}
.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;}
}
.ws0{word-spacing:-22.121400px;}
.ws33{word-spacing:-21.984000px;}
.ws2{word-spacing:-16.902000px;}
.ws1{word-spacing:-13.344000px;}
.ws6{word-spacing:-4.224000px;}
.ws47{word-spacing:-4.080000px;}
.ws5{word-spacing:-2.448000px;}
.ws37{word-spacing:-2.352000px;}
.ws45{word-spacing:-2.208000px;}
.wse{word-spacing:-1.890000px;}
.wsa{word-spacing:-1.872000px;}
.ws2e{word-spacing:-1.152000px;}
.ws14{word-spacing:-0.912000px;}
.ws24{word-spacing:-0.816000px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:0.336000px;}
.ws1b{word-spacing:0.624000px;}
.ws2c{word-spacing:0.672000px;}
.ws2b{word-spacing:0.720000px;}
.ws23{word-spacing:1.008000px;}
.ws18{word-spacing:1.344000px;}
.ws48{word-spacing:1.584000px;}
.ws17{word-spacing:2.064000px;}
.ws3b{word-spacing:2.112000px;}
.wsb{word-spacing:2.256000px;}
.ws8{word-spacing:2.400000px;}
.ws42{word-spacing:2.736000px;}
.ws3f{word-spacing:2.880000px;}
.ws16{word-spacing:2.928000px;}
.ws10{word-spacing:3.360000px;}
.wsc{word-spacing:3.744000px;}
.ws9{word-spacing:4.224000px;}
.ws13{word-spacing:4.800000px;}
.ws1e{word-spacing:4.992000px;}
.ws3{word-spacing:5.508000px;}
.ws25{word-spacing:6.048000px;}
.ws46{word-spacing:6.480000px;}
.ws3a{word-spacing:6.528000px;}
.ws2d{word-spacing:6.912000px;}
.ws20{word-spacing:6.960000px;}
.ws22{word-spacing:7.008000px;}
.ws29{word-spacing:7.200000px;}
.ws15{word-spacing:7.248000px;}
.ws1a{word-spacing:7.344000px;}
.ws40{word-spacing:7.536000px;}
.ws12{word-spacing:7.728000px;}
.ws21{word-spacing:7.776000px;}
.ws35{word-spacing:8.112000px;}
.ws19{word-spacing:8.256000px;}
.ws31{word-spacing:8.496000px;}
.wsf{word-spacing:8.736000px;}
.ws3e{word-spacing:8.784000px;}
.ws27{word-spacing:8.880000px;}
.ws32{word-spacing:8.928000px;}
.ws43{word-spacing:9.072000px;}
.ws3d{word-spacing:9.648000px;}
.ws2f{word-spacing:10.128000px;}
.ws7{word-spacing:10.176000px;}
.ws1c{word-spacing:10.464000px;}
.ws1d{word-spacing:12.096000px;}
.ws28{word-spacing:13.296000px;}
.wsd{word-spacing:13.968000px;}
.ws26{word-spacing:14.400000px;}
.ws30{word-spacing:15.456000px;}
.ws39{word-spacing:15.984000px;}
.ws38{word-spacing:16.560000px;}
.ws41{word-spacing:17.280000px;}
.ws34{word-spacing:17.472000px;}
.ws1f{word-spacing:17.760000px;}
.ws3c{word-spacing:18.336000px;}
.ws11{word-spacing:20.976000px;}
.ws36{word-spacing:24.960000px;}
.ws44{word-spacing:38.112000px;}
._18{margin-left:-5.853000px;}
._6{margin-left:-4.530600px;}
._1{margin-left:-3.243600px;}
._11{margin-left:-2.121600px;}
._0{margin-left:-1.029600px;}
._2{width:1.288800px;}
._3{width:2.753100px;}
._4{width:4.132800px;}
._e{width:5.160000px;}
._8{width:6.355200px;}
._d{width:7.612800px;}
._9{width:8.736000px;}
._7{width:9.878400px;}
._13{width:11.126400px;}
._f{width:12.234600px;}
._12{width:15.052800px;}
._a{width:16.963200px;}
._b{width:18.076800px;}
._10{width:19.208400px;}
._c{width:20.976000px;}
._14{width:21.993600px;}
._19{width:23.294400px;}
._1a{width:25.012800px;}
._1b{width:26.246400px;}
._15{width:35.121600px;}
._16{width:37.492800px;}
._1c{width:38.739600px;}
._17{width:40.123200px;}
._5{width:77.856000px;}
.fc5{color:rgb(158,198,104);}
.fc4{color:rgb(71,62,56);}
.fc6{color:transparent;}
.fc2{color:rgb(214,35,33);}
.fc3{color:rgb(61,116,84);}
.fc1{color:rgb(61,116,84);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs3{font-size:96.600000px;}
.fs8{font-size:120.000000px;}
.fs5{font-size:126.000000px;}
.fsa{font-size:132.000000px;}
.fs4{font-size:138.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:31.007550px;}
.y27{bottom:38.395800px;}
.y3{bottom:41.807550px;}
.y2{bottom:52.607550px;}
.y1{bottom:63.407550px;}
.y9c{bottom:211.167750px;}
.y4e{bottom:213.654900px;}
.y9b{bottom:225.567750px;}
.y4d{bottom:228.054900px;}
.y25{bottom:231.362100px;}
.y9a{bottom:239.967750px;}
.y4c{bottom:242.454900px;}
.y24{bottom:250.010100px;}
.y99{bottom:254.367750px;}
.y4b{bottom:256.854900px;}
.y23{bottom:264.410100px;}
.y1a{bottom:264.913800px;}
.y98{bottom:268.767750px;}
.y4a{bottom:271.254900px;}
.y22{bottom:278.810100px;}
.y19{bottom:279.313800px;}
.y97{bottom:283.167750px;}
.y49{bottom:285.654900px;}
.y21{bottom:293.210100px;}
.y18{bottom:293.713800px;}
.y9d{bottom:297.567750px;}
.y48{bottom:300.054900px;}
.y20{bottom:307.610100px;}
.y17{bottom:308.113800px;}
.y96{bottom:311.967750px;}
.y47{bottom:314.454900px;}
.y16{bottom:322.513800px;}
.y95{bottom:326.367750px;}
.y15{bottom:336.913800px;}
.y94{bottom:340.767750px;}
.y1e{bottom:341.271300px;}
.y46{bottom:343.254900px;}
.y6d{bottom:348.425400px;}
.y14{bottom:351.313800px;}
.y93{bottom:355.167750px;}
.y1d{bottom:357.471300px;}
.y45{bottom:357.654900px;}
.y6c{bottom:362.825400px;}
.y92{bottom:369.567750px;}
.y44{bottom:372.054900px;}
.y13{bottom:380.113800px;}
.y43{bottom:386.454900px;}
.y6b{bottom:389.225400px;}
.y12{bottom:394.513800px;}
.y42{bottom:400.854900px;}
.y6a{bottom:403.625400px;}
.y1f{bottom:404.632800px;}
.y11{bottom:408.913800px;}
.y91{bottom:411.076800px;}
.y41{bottom:415.254900px;}
.y69{bottom:418.025400px;}
.y10{bottom:423.313800px;}
.y40{bottom:429.654900px;}
.y68{bottom:432.425400px;}
.yf{bottom:437.713800px;}
.y3f{bottom:444.054900px;}
.y67{bottom:446.825400px;}
.y1c{bottom:455.705850px;}
.y3e{bottom:458.454900px;}
.y66{bottom:461.225400px;}
.ye{bottom:466.513800px;}
.yd{bottom:480.913800px;}
.y3d{bottom:487.254900px;}
.y65{bottom:487.625400px;}
.yc{bottom:495.313800px;}
.y3c{bottom:501.654900px;}
.y64{bottom:502.025400px;}
.y1b{bottom:504.717000px;}
.yb{bottom:509.713800px;}
.y3b{bottom:516.054900px;}
.y63{bottom:516.425400px;}
.yc0{bottom:520.496850px;}
.y3a{bottom:530.454900px;}
.y62{bottom:530.825400px;}
.ybf{bottom:534.896850px;}
.y61{bottom:545.225400px;}
.y26{bottom:556.044300px;}
.ybe{bottom:557.800800px;}
.y39{bottom:559.254900px;}
.y60{bottom:559.625400px;}
.yd8{bottom:560.200800px;}
.y38{bottom:573.654900px;}
.yd7{bottom:574.600800px;}
.y5f{bottom:586.025400px;}
.y37{bottom:588.054900px;}
.yd6{bottom:589.000800px;}
.y5e{bottom:600.425400px;}
.ybd{bottom:601.000800px;}
.y36{bottom:602.454900px;}
.yd5{bottom:603.400800px;}
.y5d{bottom:614.825400px;}
.ybc{bottom:615.400800px;}
.y35{bottom:616.854900px;}
.yd4{bottom:617.800800px;}
.y5c{bottom:629.225400px;}
.ybb{bottom:629.800800px;}
.y34{bottom:631.254900px;}
.y5b{bottom:643.625400px;}
.yd3{bottom:646.600800px;}
.y86{bottom:651.247800px;}
.y5a{bottom:658.025400px;}
.yba{bottom:658.600800px;}
.y33{bottom:660.054900px;}
.yd2{bottom:661.000800px;}
.y85{bottom:665.647800px;}
.yb9{bottom:673.000800px;}
.y32{bottom:674.454900px;}
.yd1{bottom:675.400800px;}
.y84{bottom:680.047800px;}
.y59{bottom:684.425400px;}
.yb8{bottom:687.400800px;}
.y31{bottom:688.854900px;}
.yd0{bottom:689.800800px;}
.y58{bottom:698.825400px;}
.yb7{bottom:701.800800px;}
.y30{bottom:703.254900px;}
.ycf{bottom:704.200800px;}
.y83{bottom:706.447800px;}
.y57{bottom:713.225400px;}
.yb6{bottom:716.200800px;}
.y2f{bottom:717.654900px;}
.yce{bottom:718.600800px;}
.y82{bottom:720.847800px;}
.y56{bottom:727.625400px;}
.yb5{bottom:730.600800px;}
.y2e{bottom:732.054900px;}
.yb4{bottom:745.000800px;}
.y81{bottom:747.247800px;}
.y55{bottom:754.025400px;}
.yb3{bottom:759.400800px;}
.y2d{bottom:760.854900px;}
.y80{bottom:761.647800px;}
.y54{bottom:768.425400px;}
.y2c{bottom:775.254900px;}
.y7f{bottom:776.047800px;}
.ycd{bottom:782.304750px;}
.y53{bottom:782.825400px;}
.yb2{bottom:788.200800px;}
.y2b{bottom:789.654900px;}
.y7e{bottom:790.447800px;}
.y8e{bottom:792.847800px;}
.y52{bottom:797.225400px;}
.yb1{bottom:802.600800px;}
.y2a{bottom:804.054900px;}
.y7d{bottom:804.847800px;}
.y8d{bottom:807.247800px;}
.y51{bottom:811.625400px;}
.yb0{bottom:817.000800px;}
.y29{bottom:818.454900px;}
.y7c{bottom:819.247800px;}
.y8c{bottom:821.647800px;}
.y50{bottom:826.025400px;}
.yaf{bottom:831.400800px;}
.y28{bottom:832.854900px;}
.y7b{bottom:833.647800px;}
.y8b{bottom:836.047800px;}
.ycc{bottom:837.504750px;}
.yae{bottom:845.800800px;}
.ya{bottom:849.245700px;}
.ycb{bottom:851.904750px;}
.y7a{bottom:860.047800px;}
.yad{bottom:860.200800px;}
.y8a{bottom:862.447800px;}
.yca{bottom:866.304750px;}
.y70{bottom:868.038450px;}
.y79{bottom:874.447800px;}
.yac{bottom:874.600800px;}
.y89{bottom:876.847800px;}
.y72{bottom:878.838450px;}
.yc9{bottom:880.704750px;}
.y78{bottom:888.847800px;}
.yab{bottom:889.000800px;}
.y6f{bottom:889.638450px;}
.y88{bottom:891.247800px;}
.yc8{bottom:895.104750px;}
.y71{bottom:900.438300px;}
.y77{bottom:903.247800px;}
.yaa{bottom:903.400800px;}
.y87{bottom:905.647800px;}
.y9{bottom:906.845700px;}
.yc7{bottom:909.504750px;}
.y6e{bottom:911.238300px;}
.y76{bottom:917.647800px;}
.yc6{bottom:923.904750px;}
.y75{bottom:932.047800px;}
.ya9{bottom:932.200800px;}
.yc5{bottom:938.304750px;}
.y74{bottom:946.447800px;}
.ya8{bottom:946.600800px;}
.y8{bottom:948.245700px;}
.y73{bottom:960.847800px;}
.ya7{bottom:961.000800px;}
.yc4{bottom:967.104750px;}
.yc3{bottom:981.504750px;}
.ya6{bottom:983.904750px;}
.y4f{bottom:987.209700px;}
.y7{bottom:995.045700px;}
.yc2{bottom:995.904750px;}
.y90{bottom:1008.736050px;}
.yc1{bottom:1010.304750px;}
.ya5{bottom:1024.704750px;}
.y8f{bottom:1030.336050px;}
.ya4{bottom:1039.104750px;}
.y6{bottom:1041.845700px;}
.ya3{bottom:1053.504750px;}
.ya2{bottom:1067.904750px;}
.ya1{bottom:1082.304750px;}
.ya0{bottom:1096.704750px;}
.y5{bottom:1106.645700px;}
.y9f{bottom:1141.295550px;}
.y9e{bottom:1180.895550px;}
.h2{height:24.943359px;}
.ha{height:34.272000px;}
.hb{height:34.945312px;}
.h7{height:34.968750px;}
.h8{height:39.339844px;}
.hc{height:51.984000px;}
.h3{height:69.792000px;}
.h9{height:87.240000px;}
.h6{height:91.602000px;}
.hd{height:95.964000px;}
.h5{height:100.326000px;}
.h4{height:113.412000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:54.000000px;}
.xc{left:66.661350px;}
.x8{left:71.220450px;}
.x11{left:81.013350px;}
.x9{left:98.220450px;}
.x3{left:100.125450px;}
.x4{left:114.711450px;}
.x10{left:162.992100px;}
.x1{left:178.582650px;}
.x2{left:219.360300px;}
.x6{left:317.666400px;}
.x7{left:323.944200px;}
.x5{left:337.869450px;}
.xe{left:455.456700px;}
.x12{left:482.473350px;}
.xf{left:564.448800px;}
.xb{left:576.070500px;}
.xa{left:626.745900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.816000pt;}
.ls2{letter-spacing:1.680000pt;}
.ls0{letter-spacing:2.451733pt;}
.ls1{letter-spacing:2.641067pt;}
.ls5{letter-spacing:3.477333pt;}
.ls6{letter-spacing:16.298667pt;}
.ws0{word-spacing:-19.663467pt;}
.ws33{word-spacing:-19.541333pt;}
.ws2{word-spacing:-15.024000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws6{word-spacing:-3.754667pt;}
.ws47{word-spacing:-3.626667pt;}
.ws5{word-spacing:-2.176000pt;}
.ws37{word-spacing:-2.090667pt;}
.ws45{word-spacing:-1.962667pt;}
.wse{word-spacing:-1.680000pt;}
.wsa{word-spacing:-1.664000pt;}
.ws2e{word-spacing:-1.024000pt;}
.ws14{word-spacing:-0.810667pt;}
.ws24{word-spacing:-0.725333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.298667pt;}
.ws1b{word-spacing:0.554667pt;}
.ws2c{word-spacing:0.597333pt;}
.ws2b{word-spacing:0.640000pt;}
.ws23{word-spacing:0.896000pt;}
.ws18{word-spacing:1.194667pt;}
.ws48{word-spacing:1.408000pt;}
.ws17{word-spacing:1.834667pt;}
.ws3b{word-spacing:1.877333pt;}
.wsb{word-spacing:2.005333pt;}
.ws8{word-spacing:2.133333pt;}
.ws42{word-spacing:2.432000pt;}
.ws3f{word-spacing:2.560000pt;}
.ws16{word-spacing:2.602667pt;}
.ws10{word-spacing:2.986667pt;}
.wsc{word-spacing:3.328000pt;}
.ws9{word-spacing:3.754667pt;}
.ws13{word-spacing:4.266667pt;}
.ws1e{word-spacing:4.437333pt;}
.ws3{word-spacing:4.896000pt;}
.ws25{word-spacing:5.376000pt;}
.ws46{word-spacing:5.760000pt;}
.ws3a{word-spacing:5.802667pt;}
.ws2d{word-spacing:6.144000pt;}
.ws20{word-spacing:6.186667pt;}
.ws22{word-spacing:6.229333pt;}
.ws29{word-spacing:6.400000pt;}
.ws15{word-spacing:6.442667pt;}
.ws1a{word-spacing:6.528000pt;}
.ws40{word-spacing:6.698667pt;}
.ws12{word-spacing:6.869333pt;}
.ws21{word-spacing:6.912000pt;}
.ws35{word-spacing:7.210667pt;}
.ws19{word-spacing:7.338667pt;}
.ws31{word-spacing:7.552000pt;}
.wsf{word-spacing:7.765333pt;}
.ws3e{word-spacing:7.808000pt;}
.ws27{word-spacing:7.893333pt;}
.ws32{word-spacing:7.936000pt;}
.ws43{word-spacing:8.064000pt;}
.ws3d{word-spacing:8.576000pt;}
.ws2f{word-spacing:9.002667pt;}
.ws7{word-spacing:9.045333pt;}
.ws1c{word-spacing:9.301333pt;}
.ws1d{word-spacing:10.752000pt;}
.ws28{word-spacing:11.818667pt;}
.wsd{word-spacing:12.416000pt;}
.ws26{word-spacing:12.800000pt;}
.ws30{word-spacing:13.738667pt;}
.ws39{word-spacing:14.208000pt;}
.ws38{word-spacing:14.720000pt;}
.ws41{word-spacing:15.360000pt;}
.ws34{word-spacing:15.530667pt;}
.ws1f{word-spacing:15.786667pt;}
.ws3c{word-spacing:16.298667pt;}
.ws11{word-spacing:18.645333pt;}
.ws36{word-spacing:22.186667pt;}
.ws44{word-spacing:33.877333pt;}
._18{margin-left:-5.202667pt;}
._6{margin-left:-4.027200pt;}
._1{margin-left:-2.883200pt;}
._11{margin-left:-1.885867pt;}
._0{margin-left:-0.915200pt;}
._2{width:1.145600pt;}
._3{width:2.447200pt;}
._4{width:3.673600pt;}
._e{width:4.586667pt;}
._8{width:5.649067pt;}
._d{width:6.766933pt;}
._9{width:7.765333pt;}
._7{width:8.780800pt;}
._13{width:9.890133pt;}
._f{width:10.875200pt;}
._12{width:13.380267pt;}
._a{width:15.078400pt;}
._b{width:16.068267pt;}
._10{width:17.074133pt;}
._c{width:18.645333pt;}
._14{width:19.549867pt;}
._19{width:20.706133pt;}
._1a{width:22.233600pt;}
._1b{width:23.330133pt;}
._15{width:31.219200pt;}
._16{width:33.326933pt;}
._1c{width:34.435200pt;}
._17{width:35.665067pt;}
._5{width:69.205333pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs3{font-size:85.866667pt;}
.fs8{font-size:106.666667pt;}
.fs5{font-size:112.000000pt;}
.fsa{font-size:117.333333pt;}
.fs4{font-size:122.666667pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:27.562267pt;}
.y27{bottom:34.129600pt;}
.y3{bottom:37.162267pt;}
.y2{bottom:46.762267pt;}
.y1{bottom:56.362267pt;}
.y9c{bottom:187.704667pt;}
.y4e{bottom:189.915467pt;}
.y9b{bottom:200.504667pt;}
.y4d{bottom:202.715467pt;}
.y25{bottom:205.655200pt;}
.y9a{bottom:213.304667pt;}
.y4c{bottom:215.515467pt;}
.y24{bottom:222.231200pt;}
.y99{bottom:226.104667pt;}
.y4b{bottom:228.315467pt;}
.y23{bottom:235.031200pt;}
.y1a{bottom:235.478933pt;}
.y98{bottom:238.904667pt;}
.y4a{bottom:241.115467pt;}
.y22{bottom:247.831200pt;}
.y19{bottom:248.278933pt;}
.y97{bottom:251.704667pt;}
.y49{bottom:253.915467pt;}
.y21{bottom:260.631200pt;}
.y18{bottom:261.078933pt;}
.y9d{bottom:264.504667pt;}
.y48{bottom:266.715467pt;}
.y20{bottom:273.431200pt;}
.y17{bottom:273.878933pt;}
.y96{bottom:277.304667pt;}
.y47{bottom:279.515467pt;}
.y16{bottom:286.678933pt;}
.y95{bottom:290.104667pt;}
.y15{bottom:299.478933pt;}
.y94{bottom:302.904667pt;}
.y1e{bottom:303.352267pt;}
.y46{bottom:305.115467pt;}
.y6d{bottom:309.711467pt;}
.y14{bottom:312.278933pt;}
.y93{bottom:315.704667pt;}
.y1d{bottom:317.752267pt;}
.y45{bottom:317.915467pt;}
.y6c{bottom:322.511467pt;}
.y92{bottom:328.504667pt;}
.y44{bottom:330.715467pt;}
.y13{bottom:337.878933pt;}
.y43{bottom:343.515467pt;}
.y6b{bottom:345.978133pt;}
.y12{bottom:350.678933pt;}
.y42{bottom:356.315467pt;}
.y6a{bottom:358.778133pt;}
.y1f{bottom:359.673600pt;}
.y11{bottom:363.478933pt;}
.y91{bottom:365.401600pt;}
.y41{bottom:369.115467pt;}
.y69{bottom:371.578133pt;}
.y10{bottom:376.278933pt;}
.y40{bottom:381.915467pt;}
.y68{bottom:384.378133pt;}
.yf{bottom:389.078933pt;}
.y3f{bottom:394.715467pt;}
.y67{bottom:397.178133pt;}
.y1c{bottom:405.071867pt;}
.y3e{bottom:407.515467pt;}
.y66{bottom:409.978133pt;}
.ye{bottom:414.678933pt;}
.yd{bottom:427.478933pt;}
.y3d{bottom:433.115467pt;}
.y65{bottom:433.444800pt;}
.yc{bottom:440.278933pt;}
.y3c{bottom:445.915467pt;}
.y64{bottom:446.244800pt;}
.y1b{bottom:448.637333pt;}
.yb{bottom:453.078933pt;}
.y3b{bottom:458.715467pt;}
.y63{bottom:459.044800pt;}
.yc0{bottom:462.663867pt;}
.y3a{bottom:471.515467pt;}
.y62{bottom:471.844800pt;}
.ybf{bottom:475.463867pt;}
.y61{bottom:484.644800pt;}
.y26{bottom:494.261600pt;}
.ybe{bottom:495.822933pt;}
.y39{bottom:497.115467pt;}
.y60{bottom:497.444800pt;}
.yd8{bottom:497.956267pt;}
.y38{bottom:509.915467pt;}
.yd7{bottom:510.756267pt;}
.y5f{bottom:520.911467pt;}
.y37{bottom:522.715467pt;}
.yd6{bottom:523.556267pt;}
.y5e{bottom:533.711467pt;}
.ybd{bottom:534.222933pt;}
.y36{bottom:535.515467pt;}
.yd5{bottom:536.356267pt;}
.y5d{bottom:546.511467pt;}
.ybc{bottom:547.022933pt;}
.y35{bottom:548.315467pt;}
.yd4{bottom:549.156267pt;}
.y5c{bottom:559.311467pt;}
.ybb{bottom:559.822933pt;}
.y34{bottom:561.115467pt;}
.y5b{bottom:572.111467pt;}
.yd3{bottom:574.756267pt;}
.y86{bottom:578.886933pt;}
.y5a{bottom:584.911467pt;}
.yba{bottom:585.422933pt;}
.y33{bottom:586.715467pt;}
.yd2{bottom:587.556267pt;}
.y85{bottom:591.686933pt;}
.yb9{bottom:598.222933pt;}
.y32{bottom:599.515467pt;}
.yd1{bottom:600.356267pt;}
.y84{bottom:604.486933pt;}
.y59{bottom:608.378133pt;}
.yb8{bottom:611.022933pt;}
.y31{bottom:612.315467pt;}
.yd0{bottom:613.156267pt;}
.y58{bottom:621.178133pt;}
.yb7{bottom:623.822933pt;}
.y30{bottom:625.115467pt;}
.ycf{bottom:625.956267pt;}
.y83{bottom:627.953600pt;}
.y57{bottom:633.978133pt;}
.yb6{bottom:636.622933pt;}
.y2f{bottom:637.915467pt;}
.yce{bottom:638.756267pt;}
.y82{bottom:640.753600pt;}
.y56{bottom:646.778133pt;}
.yb5{bottom:649.422933pt;}
.y2e{bottom:650.715467pt;}
.yb4{bottom:662.222933pt;}
.y81{bottom:664.220267pt;}
.y55{bottom:670.244800pt;}
.yb3{bottom:675.022933pt;}
.y2d{bottom:676.315467pt;}
.y80{bottom:677.020267pt;}
.y54{bottom:683.044800pt;}
.y2c{bottom:689.115467pt;}
.y7f{bottom:689.820267pt;}
.ycd{bottom:695.382000pt;}
.y53{bottom:695.844800pt;}
.yb2{bottom:700.622933pt;}
.y2b{bottom:701.915467pt;}
.y7e{bottom:702.620267pt;}
.y8e{bottom:704.753600pt;}
.y52{bottom:708.644800pt;}
.yb1{bottom:713.422933pt;}
.y2a{bottom:714.715467pt;}
.y7d{bottom:715.420267pt;}
.y8d{bottom:717.553600pt;}
.y51{bottom:721.444800pt;}
.yb0{bottom:726.222933pt;}
.y29{bottom:727.515467pt;}
.y7c{bottom:728.220267pt;}
.y8c{bottom:730.353600pt;}
.y50{bottom:734.244800pt;}
.yaf{bottom:739.022933pt;}
.y28{bottom:740.315467pt;}
.y7b{bottom:741.020267pt;}
.y8b{bottom:743.153600pt;}
.ycc{bottom:744.448667pt;}
.yae{bottom:751.822933pt;}
.ya{bottom:754.885067pt;}
.ycb{bottom:757.248667pt;}
.y7a{bottom:764.486933pt;}
.yad{bottom:764.622933pt;}
.y8a{bottom:766.620267pt;}
.yca{bottom:770.048667pt;}
.y70{bottom:771.589733pt;}
.y79{bottom:777.286933pt;}
.yac{bottom:777.422933pt;}
.y89{bottom:779.420267pt;}
.y72{bottom:781.189733pt;}
.yc9{bottom:782.848667pt;}
.y78{bottom:790.086933pt;}
.yab{bottom:790.222933pt;}
.y6f{bottom:790.789733pt;}
.y88{bottom:792.220267pt;}
.yc8{bottom:795.648667pt;}
.y71{bottom:800.389600pt;}
.y77{bottom:802.886933pt;}
.yaa{bottom:803.022933pt;}
.y87{bottom:805.020267pt;}
.y9{bottom:806.085067pt;}
.yc7{bottom:808.448667pt;}
.y6e{bottom:809.989600pt;}
.y76{bottom:815.686933pt;}
.yc6{bottom:821.248667pt;}
.y75{bottom:828.486933pt;}
.ya9{bottom:828.622933pt;}
.yc5{bottom:834.048667pt;}
.y74{bottom:841.286933pt;}
.ya8{bottom:841.422933pt;}
.y8{bottom:842.885067pt;}
.y73{bottom:854.086933pt;}
.ya7{bottom:854.222933pt;}
.yc4{bottom:859.648667pt;}
.yc3{bottom:872.448667pt;}
.ya6{bottom:874.582000pt;}
.y4f{bottom:877.519733pt;}
.y7{bottom:884.485067pt;}
.yc2{bottom:885.248667pt;}
.y90{bottom:896.654267pt;}
.yc1{bottom:898.048667pt;}
.ya5{bottom:910.848667pt;}
.y8f{bottom:915.854267pt;}
.ya4{bottom:923.648667pt;}
.y6{bottom:926.085067pt;}
.ya3{bottom:936.448667pt;}
.ya2{bottom:949.248667pt;}
.ya1{bottom:962.048667pt;}
.ya0{bottom:974.848667pt;}
.y5{bottom:983.685067pt;}
.y9f{bottom:1014.484933pt;}
.y9e{bottom:1049.684933pt;}
.h2{height:22.171875pt;}
.ha{height:30.464000pt;}
.hb{height:31.062500pt;}
.h7{height:31.083333pt;}
.h8{height:34.968750pt;}
.hc{height:46.208000pt;}
.h3{height:62.037333pt;}
.h9{height:77.546667pt;}
.h6{height:81.424000pt;}
.hd{height:85.301333pt;}
.h5{height:89.178667pt;}
.h4{height:100.810667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:48.000000pt;}
.xc{left:59.254533pt;}
.x8{left:63.307067pt;}
.x11{left:72.011867pt;}
.x9{left:87.307067pt;}
.x3{left:89.000400pt;}
.x4{left:101.965733pt;}
.x10{left:144.881867pt;}
.x1{left:158.740133pt;}
.x2{left:194.986933pt;}
.x6{left:282.370133pt;}
.x7{left:287.950400pt;}
.x5{left:300.328400pt;}
.xe{left:404.850400pt;}
.x12{left:428.865200pt;}
.xf{left:501.732267pt;}
.xb{left:512.062667pt;}
.xa{left:557.107467pt;}
}




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