
    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_2261c78f6f66625831ae66d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_3c9403ffd31ef23d59d5e565.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_a507db4a033f88bbcf654e71.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_a344d78fa1d8179a9a8b1bec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_1961ac5666682efd5577327e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_971add9faaa2c475a71a142b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_5fdf71bca001bdd5874cb2a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.656000;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_c1257d7b76613b81b1587998.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_032210bd351246313a74bef0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.749000;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_e4f80d1b2f38418a53b0193d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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_733f674376080afd8ede1774.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.705000;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_bc907710a2814aee5b43d8e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703091;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);}
.v5{vertical-align:-54.990000px;}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:24.708000px;}
.v3{vertical-align:48.528000px;}
.v2{vertical-align:58.104000px;}
.v4{vertical-align:74.556000px;}
.v6{vertical-align:97.734000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000472px;}
.ls1d{letter-spacing:0.003231px;}
.ls12{letter-spacing:0.004381px;}
.lsb{letter-spacing:0.005591px;}
.ls2{letter-spacing:0.019768px;}
.ls8{letter-spacing:0.021218px;}
.ls1c{letter-spacing:0.027932px;}
.lsd{letter-spacing:0.028550px;}
.lse{letter-spacing:0.030666px;}
.ls15{letter-spacing:0.502118px;}
.lsa{letter-spacing:1.936742px;}
.ls4{letter-spacing:2.984915px;}
.ls6{letter-spacing:2.988960px;}
.lsf{letter-spacing:2.990915px;}
.ls22{letter-spacing:7.172759px;}
.ls13{letter-spacing:7.174105px;}
.ls5{letter-spacing:7.675238px;}
.lsc{letter-spacing:15.924326px;}
.ls1b{letter-spacing:19.869542px;}
.ls1{letter-spacing:19.941274px;}
.ls10{letter-spacing:20.371661px;}
.ls19{letter-spacing:21.375898px;}
.ls1e{letter-spacing:22.595328px;}
.ls14{letter-spacing:23.456102px;}
.ls1a{letter-spacing:23.599565px;}
.ls23{letter-spacing:23.886490px;}
.ls20{letter-spacing:24.173414px;}
.ls9{letter-spacing:26.400960px;}
.ls17{letter-spacing:27.097473px;}
.ls0{letter-spacing:35.148288px;}
.ls18{letter-spacing:36.438472px;}
.ls16{letter-spacing:56.821809px;}
.ls1f{letter-spacing:73.658024px;}
.ls11{letter-spacing:98.267666px;}
.ls21{letter-spacing:132.788141px;}
.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;}
}
.wsc{word-spacing:-45.664082px;}
.wse{word-spacing:-27.093034px;}
.ws1f{word-spacing:-23.047576px;}
.wsd{word-spacing:-7.173034px;}
.ws24{word-spacing:-4.483200px;}
.ws25{word-spacing:-3.945216px;}
.ws26{word-spacing:-3.730022px;}
.wsf{word-spacing:-3.681034px;}
.ws3{word-spacing:-2.605093px;}
.ws19{word-spacing:-1.721549px;}
.ws16{word-spacing:-1.075968px;}
.ws2c{word-spacing:-0.215194px;}
.ws13{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws1d{word-spacing:1.434624px;}
.ws1c{word-spacing:1.506355px;}
.ws7{word-spacing:1.714911px;}
.ws29{word-spacing:1.793280px;}
.ws4{word-spacing:2.369457px;}
.ws10{word-spacing:2.725786px;}
.ws2b{word-spacing:3.156173px;}
.ws28{word-spacing:3.227904px;}
.ws22{word-spacing:3.371366px;}
.ws8{word-spacing:3.613094px;}
.ws21{word-spacing:3.837619px;}
.wsb{word-spacing:3.873485px;}
.wsa{word-spacing:3.945216px;}
.ws1a{word-spacing:4.303872px;}
.ws23{word-spacing:4.483200px;}
.ws1{word-spacing:4.734246px;}
.ws2e{word-spacing:4.949453px;}
.ws2d{word-spacing:5.666765px;}
.ws2{word-spacing:6.100369px;}
.ws9{word-spacing:6.455775px;}
.ws20{word-spacing:6.599270px;}
.ws5{word-spacing:7.474915px;}
.ws0{word-spacing:7.748438px;}
.ws6{word-spacing:8.718553px;}
.ws17{word-spacing:13.915853px;}
.ws14{word-spacing:15.278746px;}
.ws27{word-spacing:18.004531px;}
.ws2a{word-spacing:19.367325px;}
.ws11{word-spacing:22.844786px;}
.ws18{word-spacing:22.860045px;}
.ws15{word-spacing:22.892607px;}
.ws1e{word-spacing:26.378607px;}
.ws1b{word-spacing:944.130530px;}
._d{margin-left:-9.709486px;}
._3{margin-left:-7.058330px;}
._7{margin-left:-5.432732px;}
._1{margin-left:-3.843225px;}
._2{margin-left:-2.496239px;}
._5{margin-left:-1.234673px;}
._4{width:1.832729px;}
._0{width:3.843225px;}
._9{width:20.954436px;}
._11{width:22.868789px;}
._e{width:24.399371px;}
._6{width:27.163659px;}
._a{width:28.734569px;}
._b{width:29.790807px;}
._f{width:31.060499px;}
._10{width:32.995442px;}
._13{width:34.951024px;}
._12{width:36.831278px;}
._8{width:44.378219px;}
._c{width:51.646200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:63.168000px;}
.y19{bottom:112.099500px;}
.y35{bottom:132.652500px;}
.y18{bottom:151.701000px;}
.y34{bottom:154.321500px;}
.y33{bottom:190.933500px;}
.y17{bottom:191.128500px;}
.y51{bottom:208.368000px;}
.y32{bottom:227.547000px;}
.y50{bottom:244.980000px;}
.y16{bottom:251.029500px;}
.y31{bottom:264.159000px;}
.y15{bottom:272.697000px;}
.y4f{bottom:281.593500px;}
.y30{bottom:285.828000px;}
.y2f{bottom:307.497000px;}
.y14{bottom:313.794000px;}
.y4e{bottom:318.205500px;}
.y2e{bottom:347.098500px;}
.y13{bottom:350.406000px;}
.y4d{bottom:354.819000px;}
.y4c{bottom:376.488000px;}
.y64{bottom:385.380000px;}
.y2d{bottom:386.700000px;}
.y12{bottom:390.007500px;}
.y63{bottom:407.049000px;}
.y4b{bottom:415.914000px;}
.y2c{bottom:426.127500px;}
.y62{bottom:428.716500px;}
.y11{bottom:429.609000px;}
.y61{bottom:450.385500px;}
.y10{bottom:466.222500px;}
.y60{bottom:472.054500px;}
.y4a{bottom:475.815000px;}
.y2b{bottom:486.027000px;}
.y49{bottom:497.484000px;}
.yf{bottom:502.834500px;}
.y2a{bottom:507.696000px;}
.y5f{bottom:511.482000px;}
.y48{bottom:534.096000px;}
.ye{bottom:543.930000px;}
.y29{bottom:548.791500px;}
.y47{bottom:570.709500px;}
.y5e{bottom:571.383000px;}
.yd{bottom:583.357500px;}
.y28{bottom:585.405000px;}
.y5d{bottom:593.050500px;}
.y46{bottom:607.321500px;}
.y5c{bottom:614.719500px;}
.y27{bottom:622.017000px;}
.y45{bottom:635.266500px;}
.y5b{bottom:636.388500px;}
.yc{bottom:643.258500px;}
.y26{bottom:643.686000px;}
.y44{bottom:647.568000px;}
.yb{bottom:663.582000px;}
.y5a{bottom:675.816000px;}
.ya{bottom:683.905500px;}
.y25{bottom:684.781500px;}
.y42{bottom:686.848500px;}
.y41{bottom:691.842000px;}
.y40{bottom:704.143500px;}
.y9{bottom:704.229000px;}
.y43{bottom:716.275500px;}
.y24{bottom:724.209000px;}
.y8{bottom:724.552500px;}
.y59{bottom:735.715500px;}
.y7{bottom:744.877500px;}
.y3f{bottom:751.642500px;}
.y6{bottom:765.201000px;}
.y58{bottom:776.812500px;}
.y23{bottom:784.110000px;}
.y3e{bottom:791.070000px;}
.y5{bottom:795.543000px;}
.y22{bottom:805.779000px;}
.y57{bottom:813.424500px;}
.y21{bottom:846.874500px;}
.y56{bottom:850.038000px;}
.y3d{bottom:850.969500px;}
.y4{bottom:861.631500px;}
.y3c{bottom:872.638500px;}
.y20{bottom:883.486500px;}
.y55{bottom:886.650000px;}
.y3b{bottom:896.299500px;}
.y3{bottom:914.869500px;}
.y1f{bottom:920.100000px;}
.y54{bottom:923.263500px;}
.y3a{bottom:934.480500px;}
.y2{bottom:952.230000px;}
.y39{bottom:956.149500px;}
.y53{bottom:959.875500px;}
.y1e{bottom:961.195500px;}
.y52{bottom:981.544500px;}
.y38{bottom:982.501500px;}
.y1{bottom:989.589000px;}
.y37{bottom:994.801500px;}
.y1d{bottom:1000.797000px;}
.y36{bottom:1022.640000px;}
.y1c{bottom:1040.398500px;}
.y1b{bottom:1062.067500px;}
.hf{height:33.187496px;}
.h3{height:45.687311px;}
.h4{height:46.145493px;}
.h8{height:51.287808px;}
.h6{height:53.798400px;}
.he{height:57.895496px;}
.h7{height:60.973248px;}
.h2{height:64.557900px;}
.h5{height:72.304680px;}
.h1{height:86.782500px;}
.h10{height:99.815808px;}
.ha{height:100.487808px;}
.hc{height:100.493808px;}
.hd{height:102.326400px;}
.h9{height:107.743496px;}
.hb{height:151.532400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x9{left:134.340000px;}
.x7{left:151.897500px;}
.x2{left:167.968500px;}
.x6{left:176.443500px;}
.x1{left:276.028500px;}
.x4{left:293.313000px;}
.x13{left:337.246500px;}
.x3{left:354.067500px;}
.xd{left:371.223000px;}
.x18{left:391.032000px;}
.xb{left:400.626000px;}
.xf{left:411.907500px;}
.xe{left:417.544500px;}
.x5{left:422.998500px;}
.x11{left:426.076500px;}
.xa{left:432.957000px;}
.x10{left:448.603500px;}
.xc{left:454.609500px;}
.x19{left:458.389500px;}
.x12{left:479.488500px;}
.x14{left:512.140500px;}
.x15{left:519.697500px;}
.x16{left:549.789000px;}
.x17{left:553.642500px;}
@media print{
.v5{vertical-align:-48.880000pt;}
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:21.962667pt;}
.v3{vertical-align:43.136000pt;}
.v2{vertical-align:51.648000pt;}
.v4{vertical-align:66.272000pt;}
.v6{vertical-align:86.874667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000420pt;}
.ls1d{letter-spacing:0.002872pt;}
.ls12{letter-spacing:0.003895pt;}
.lsb{letter-spacing:0.004970pt;}
.ls2{letter-spacing:0.017572pt;}
.ls8{letter-spacing:0.018860pt;}
.ls1c{letter-spacing:0.024829pt;}
.lsd{letter-spacing:0.025378pt;}
.lse{letter-spacing:0.027259pt;}
.ls15{letter-spacing:0.446327pt;}
.lsa{letter-spacing:1.721549pt;}
.ls4{letter-spacing:2.653258pt;}
.ls6{letter-spacing:2.656853pt;}
.lsf{letter-spacing:2.658591pt;}
.ls22{letter-spacing:6.375786pt;}
.ls13{letter-spacing:6.376982pt;}
.ls5{letter-spacing:6.822434pt;}
.lsc{letter-spacing:14.154957pt;}
.ls1b{letter-spacing:17.661815pt;}
.ls1{letter-spacing:17.725577pt;}
.ls10{letter-spacing:18.108143pt;}
.ls19{letter-spacing:19.000798pt;}
.ls1e{letter-spacing:20.084736pt;}
.ls14{letter-spacing:20.849869pt;}
.ls1a{letter-spacing:20.977391pt;}
.ls23{letter-spacing:21.232435pt;}
.ls20{letter-spacing:21.487479pt;}
.ls9{letter-spacing:23.467520pt;}
.ls17{letter-spacing:24.086642pt;}
.ls0{letter-spacing:31.242923pt;}
.ls18{letter-spacing:32.389753pt;}
.ls16{letter-spacing:50.508274pt;}
.ls1f{letter-spacing:65.473799pt;}
.ls11{letter-spacing:87.349036pt;}
.ls21{letter-spacing:118.033903pt;}
.wsc{word-spacing:-40.590295pt;}
.wse{word-spacing:-24.082697pt;}
.ws1f{word-spacing:-20.486735pt;}
.wsd{word-spacing:-6.376030pt;}
.ws24{word-spacing:-3.985067pt;}
.ws25{word-spacing:-3.506859pt;}
.ws26{word-spacing:-3.315575pt;}
.wsf{word-spacing:-3.272030pt;}
.ws3{word-spacing:-2.315638pt;}
.ws19{word-spacing:-1.530266pt;}
.ws16{word-spacing:-0.956416pt;}
.ws2c{word-spacing:-0.191283pt;}
.ws13{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws1d{word-spacing:1.275221pt;}
.ws1c{word-spacing:1.338982pt;}
.ws7{word-spacing:1.524365pt;}
.ws29{word-spacing:1.594027pt;}
.ws4{word-spacing:2.106184pt;}
.ws10{word-spacing:2.422921pt;}
.ws2b{word-spacing:2.805487pt;}
.ws28{word-spacing:2.869248pt;}
.ws22{word-spacing:2.996770pt;}
.ws8{word-spacing:3.211639pt;}
.ws21{word-spacing:3.411217pt;}
.wsb{word-spacing:3.443098pt;}
.wsa{word-spacing:3.506859pt;}
.ws1a{word-spacing:3.825664pt;}
.ws23{word-spacing:3.985067pt;}
.ws1{word-spacing:4.208219pt;}
.ws2e{word-spacing:4.399514pt;}
.ws2d{word-spacing:5.037124pt;}
.ws2{word-spacing:5.422550pt;}
.ws9{word-spacing:5.738467pt;}
.ws20{word-spacing:5.866018pt;}
.ws5{word-spacing:6.644369pt;}
.ws0{word-spacing:6.887500pt;}
.ws6{word-spacing:7.749825pt;}
.ws17{word-spacing:12.369647pt;}
.ws14{word-spacing:13.581107pt;}
.ws27{word-spacing:16.004028pt;}
.ws2a{word-spacing:17.215400pt;}
.ws11{word-spacing:20.306477pt;}
.ws18{word-spacing:20.320040pt;}
.ws15{word-spacing:20.348984pt;}
.ws1e{word-spacing:23.447651pt;}
.ws1b{word-spacing:839.227138pt;}
._d{margin-left:-8.630654pt;}
._3{margin-left:-6.274071pt;}
._7{margin-left:-4.829095pt;}
._1{margin-left:-3.416200pt;}
._2{margin-left:-2.218879pt;}
._5{margin-left:-1.097487pt;}
._4{width:1.629092pt;}
._0{width:3.416200pt;}
._9{width:18.626165pt;}
._11{width:20.327813pt;}
._e{width:21.688330pt;}
._6{width:24.145475pt;}
._a{width:25.541839pt;}
._b{width:26.480717pt;}
._f{width:27.609333pt;}
._10{width:29.329282pt;}
._13{width:31.067577pt;}
._12{width:32.738914pt;}
._8{width:39.447306pt;}
._c{width:45.907733pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:56.149333pt;}
.y19{bottom:99.644000pt;}
.y35{bottom:117.913333pt;}
.y18{bottom:134.845333pt;}
.y34{bottom:137.174667pt;}
.y33{bottom:169.718667pt;}
.y17{bottom:169.892000pt;}
.y51{bottom:185.216000pt;}
.y32{bottom:202.264000pt;}
.y50{bottom:217.760000pt;}
.y16{bottom:223.137333pt;}
.y31{bottom:234.808000pt;}
.y15{bottom:242.397333pt;}
.y4f{bottom:250.305333pt;}
.y30{bottom:254.069333pt;}
.y2f{bottom:273.330667pt;}
.y14{bottom:278.928000pt;}
.y4e{bottom:282.849333pt;}
.y2e{bottom:308.532000pt;}
.y13{bottom:311.472000pt;}
.y4d{bottom:315.394667pt;}
.y4c{bottom:334.656000pt;}
.y64{bottom:342.560000pt;}
.y2d{bottom:343.733333pt;}
.y12{bottom:346.673333pt;}
.y63{bottom:361.821333pt;}
.y4b{bottom:369.701333pt;}
.y2c{bottom:378.780000pt;}
.y62{bottom:381.081333pt;}
.y11{bottom:381.874667pt;}
.y61{bottom:400.342667pt;}
.y10{bottom:414.420000pt;}
.y60{bottom:419.604000pt;}
.y4a{bottom:422.946667pt;}
.y2b{bottom:432.024000pt;}
.y49{bottom:442.208000pt;}
.yf{bottom:446.964000pt;}
.y2a{bottom:451.285333pt;}
.y5f{bottom:454.650667pt;}
.y48{bottom:474.752000pt;}
.ye{bottom:483.493333pt;}
.y29{bottom:487.814667pt;}
.y47{bottom:507.297333pt;}
.y5e{bottom:507.896000pt;}
.yd{bottom:518.540000pt;}
.y28{bottom:520.360000pt;}
.y5d{bottom:527.156000pt;}
.y46{bottom:539.841333pt;}
.y5c{bottom:546.417333pt;}
.y27{bottom:552.904000pt;}
.y45{bottom:564.681333pt;}
.y5b{bottom:565.678667pt;}
.yc{bottom:571.785333pt;}
.y26{bottom:572.165333pt;}
.y44{bottom:575.616000pt;}
.yb{bottom:589.850667pt;}
.y5a{bottom:600.725333pt;}
.ya{bottom:607.916000pt;}
.y25{bottom:608.694667pt;}
.y42{bottom:610.532000pt;}
.y41{bottom:614.970667pt;}
.y40{bottom:625.905333pt;}
.y9{bottom:625.981333pt;}
.y43{bottom:636.689333pt;}
.y24{bottom:643.741333pt;}
.y8{bottom:644.046667pt;}
.y59{bottom:653.969333pt;}
.y7{bottom:662.113333pt;}
.y3f{bottom:668.126667pt;}
.y6{bottom:680.178667pt;}
.y58{bottom:690.500000pt;}
.y23{bottom:696.986667pt;}
.y3e{bottom:703.173333pt;}
.y5{bottom:707.149333pt;}
.y22{bottom:716.248000pt;}
.y57{bottom:723.044000pt;}
.y21{bottom:752.777333pt;}
.y56{bottom:755.589333pt;}
.y3d{bottom:756.417333pt;}
.y4{bottom:765.894667pt;}
.y3c{bottom:775.678667pt;}
.y20{bottom:785.321333pt;}
.y55{bottom:788.133333pt;}
.y3b{bottom:796.710667pt;}
.y3{bottom:813.217333pt;}
.y1f{bottom:817.866667pt;}
.y54{bottom:820.678667pt;}
.y3a{bottom:830.649333pt;}
.y2{bottom:846.426667pt;}
.y39{bottom:849.910667pt;}
.y53{bottom:853.222667pt;}
.y1e{bottom:854.396000pt;}
.y52{bottom:872.484000pt;}
.y38{bottom:873.334667pt;}
.y1{bottom:879.634667pt;}
.y37{bottom:884.268000pt;}
.y1d{bottom:889.597333pt;}
.y36{bottom:909.013333pt;}
.y1c{bottom:924.798667pt;}
.y1b{bottom:944.060000pt;}
.hf{height:29.499997pt;}
.h3{height:40.610943pt;}
.h4{height:41.018216pt;}
.h8{height:45.589163pt;}
.h6{height:47.820800pt;}
.he{height:51.462663pt;}
.h7{height:54.198443pt;}
.h2{height:57.384800pt;}
.h5{height:64.270827pt;}
.h1{height:77.140000pt;}
.h10{height:88.725163pt;}
.ha{height:89.322496pt;}
.hc{height:89.327829pt;}
.hd{height:90.956800pt;}
.h9{height:95.771997pt;}
.hb{height:134.695467pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x9{left:119.413333pt;}
.x7{left:135.020000pt;}
.x2{left:149.305333pt;}
.x6{left:156.838667pt;}
.x1{left:245.358667pt;}
.x4{left:260.722667pt;}
.x13{left:299.774667pt;}
.x3{left:314.726667pt;}
.xd{left:329.976000pt;}
.x18{left:347.584000pt;}
.xb{left:356.112000pt;}
.xf{left:366.140000pt;}
.xe{left:371.150667pt;}
.x5{left:375.998667pt;}
.x11{left:378.734667pt;}
.xa{left:384.850667pt;}
.x10{left:398.758667pt;}
.xc{left:404.097333pt;}
.x19{left:407.457333pt;}
.x12{left:426.212000pt;}
.x14{left:455.236000pt;}
.x15{left:461.953333pt;}
.x16{left:488.701333pt;}
.x17{left:492.126667pt;}
}




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