
    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_4af863c28a99510ad7151b11.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72bc8abe95894e223d98df0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_a4a63ec547481d7938a46cef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.924316;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_af3ce205c587585a7a7fb728.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984333;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_8021d9cf74cc2d3e7ab9aa8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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_bbfc1f00af8ae719ed471d6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966016;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_4a1d7f4374da922a0c0d5630.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918945;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_695137e0fbe43145590548c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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:-38.760000px;}
.v4{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v6{vertical-align:19.989600px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000264px;}
.ls5{letter-spacing:0.378000px;}
.ls0{letter-spacing:1.674000px;}
.ls3{letter-spacing:4.950000px;}
.ls4{letter-spacing:11.022000px;}
.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;}
}
.ws3{word-spacing:-16.500000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-9.619500px;}
.ws0{word-spacing:-9.427110px;}
.ws2{word-spacing:-7.870500px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:63.240000px;}
.ws9{word-spacing:158.700000px;}
.wsb{word-spacing:168.840000px;}
.wsc{word-spacing:214.380000px;}
.ws8{word-spacing:431.940000px;}
.ws6{word-spacing:446.580000px;}
.ws5{word-spacing:513.840000px;}
._14{margin-left:-2453.400000px;}
._4b{margin-left:-15.708000px;}
._8{margin-left:-6.435660px;}
._0{margin-left:-4.440000px;}
._12{margin-left:-3.410100px;}
._7{margin-left:-2.406780px;}
._6{margin-left:-1.176000px;}
._3{width:1.008000px;}
._2{width:2.184000px;}
._5{width:3.192000px;}
._9{width:4.284000px;}
._10{width:5.310780px;}
._a{width:6.864000px;}
._b{width:8.316000px;}
._13{width:9.372000px;}
._4{width:11.172000px;}
._d{width:12.606000px;}
._c{width:14.520000px;}
._11{width:17.688000px;}
._e{width:19.140000px;}
._f{width:20.328000px;}
._15{width:21.780000px;}
._39{width:38.544000px;}
._3a{width:40.128000px;}
._49{width:66.066780px;}
._48{width:67.860000px;}
._23{width:74.520000px;}
._26{width:99.000000px;}
._1a{width:110.100000px;}
._3d{width:113.700000px;}
._2e{width:129.000000px;}
._28{width:132.000000px;}
._4a{width:154.680000px;}
._2a{width:158.700000px;}
._37{width:159.960000px;}
._2b{width:162.000000px;}
._45{width:164.706780px;}
._41{width:168.306780px;}
._2d{width:176.040000px;}
._1d{width:180.660000px;}
._30{width:186.960000px;}
._40{width:190.560000px;}
._25{width:195.360000px;}
._33{width:198.060000px;}
._3f{width:199.140000px;}
._21{width:208.920000px;}
._27{width:210.000000px;}
._46{width:215.220000px;}
._22{width:233.406780px;}
._1f{width:246.360000px;}
._47{width:252.480000px;}
._34{width:262.740000px;}
._31{width:288.180000px;}
._2f{width:291.120000px;}
._1c{width:305.166780px;}
._17{width:306.600000px;}
._29{width:312.300000px;}
._19{width:320.166780px;}
._3c{width:335.286780px;}
._1b{width:368.100000px;}
._18{width:382.080000px;}
._43{width:386.160000px;}
._1e{width:396.666780px;}
._3e{width:398.760000px;}
._20{width:486.540000px;}
._16{width:492.126780px;}
._35{width:498.480000px;}
._2c{width:500.460000px;}
._38{width:553.506780px;}
._3b{width:656.880000px;}
._32{width:670.515660px;}
._36{width:680.886780px;}
._24{width:682.260000px;}
._44{width:749.040000px;}
._42{width:888.600000px;}
._1{width:1747.380000px;}
.fc1{color:rgb(239,50,57);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:61.097550px;}
.y55{bottom:86.952750px;}
.y52{bottom:93.888450px;}
.y6c{bottom:94.911600px;}
.y21{bottom:106.752750px;}
.y51{bottom:113.268450px;}
.y6b{bottom:114.291600px;}
.y20{bottom:126.552750px;}
.y50{bottom:132.648450px;}
.y6a{bottom:133.671600px;}
.y4f{bottom:134.028450px;}
.y1f{bottom:146.352750px;}
.y4e{bottom:152.028450px;}
.y69{bottom:153.051600px;}
.y1e{bottom:166.152750px;}
.y4d{bottom:171.408450px;}
.y68{bottom:172.431600px;}
.y1d{bottom:185.952750px;}
.y4c{bottom:190.788450px;}
.y67{bottom:198.185400px;}
.y1c{bottom:205.752750px;}
.y4b{bottom:210.168450px;}
.y66{bottom:216.185400px;}
.ya5{bottom:224.172900px;}
.y1b{bottom:225.552750px;}
.y4a{bottom:229.548450px;}
.ya4{bottom:240.372900px;}
.y1a{bottom:245.352750px;}
.y49{bottom:248.928450px;}
.ya3{bottom:256.572900px;}
.y19{bottom:265.152750px;}
.y48{bottom:268.308450px;}
.ya2{bottom:272.772900px;}
.y76{bottom:274.122450px;}
.y18{bottom:284.952750px;}
.y47{bottom:287.688450px;}
.ya1{bottom:288.972900px;}
.y75{bottom:293.501250px;}
.y17{bottom:304.752750px;}
.ya0{bottom:305.166900px;}
.y46{bottom:308.253450px;}
.y74{bottom:312.880050px;}
.y54{bottom:320.432550px;}
.y9f{bottom:321.366900px;}
.y16{bottom:324.552750px;}
.y45{bottom:327.633450px;}
.y73{bottom:332.258850px;}
.y53{bottom:338.432550px;}
.y15{bottom:344.352750px;}
.y72{bottom:351.637650px;}
.y44{bottom:353.376750px;}
.y9e{bottom:353.766900px;}
.y14{bottom:364.152750px;}
.y71{bottom:371.014050px;}
.y43{bottom:371.376750px;}
.y13{bottom:383.952750px;}
.y70{bottom:390.394050px;}
.y7c{bottom:401.952750px;}
.y2c{bottom:403.752750px;}
.y6f{bottom:409.774050px;}
.y2b{bottom:423.552750px;}
.y9d{bottom:428.165400px;}
.y2{bottom:434.087550px;}
.y6e{bottom:435.516600px;}
.y7b{bottom:441.552750px;}
.y2a{bottom:443.352750px;}
.y9c{bottom:444.365400px;}
.y6d{bottom:453.516600px;}
.y7a{bottom:457.752750px;}
.y29{bottom:463.152750px;}
.y12{bottom:464.952750px;}
.y79{bottom:473.952750px;}
.y9b{bottom:482.165400px;}
.y28{bottom:482.952750px;}
.y11{bottom:486.552750px;}
.y78{bottom:490.152750px;}
.y9a{bottom:498.365400px;}
.y2e{bottom:501.185400px;}
.y27{bottom:502.752750px;}
.y77{bottom:506.352750px;}
.y99{bottom:514.565400px;}
.y2d{bottom:519.185400px;}
.y10{bottom:520.752750px;}
.y26{bottom:522.552750px;}
.y98{bottom:530.765400px;}
.yf{bottom:536.952750px;}
.y25{bottom:542.352750px;}
.y97{bottom:546.965400px;}
.ye{bottom:553.152750px;}
.y24{bottom:562.152750px;}
.y96{bottom:563.165400px;}
.yd{bottom:569.352750px;}
.y95{bottom:579.365400px;}
.y23{bottom:581.952750px;}
.yc{bottom:585.552750px;}
.y94{bottom:595.565400px;}
.yb{bottom:601.752750px;}
.y93{bottom:611.765400px;}
.ya{bottom:617.952750px;}
.y22{bottom:621.552750px;}
.y92{bottom:627.965400px;}
.y63{bottom:641.352750px;}
.y91{bottom:644.165400px;}
.y9{bottom:655.752750px;}
.y90{bottom:660.365400px;}
.y65{bottom:661.152750px;}
.y42{bottom:672.621750px;}
.y8{bottom:676.448250px;}
.y8f{bottom:676.565400px;}
.y62{bottom:680.952750px;}
.y7{bottom:688.152750px;}
.y41{bottom:692.001750px;}
.y8e{bottom:692.765400px;}
.y3f{bottom:694.761750px;}
.y61{bottom:700.752750px;}
.y6{bottom:708.848250px;}
.y8d{bottom:708.965400px;}
.y40{bottom:711.381750px;}
.y3e{bottom:712.761750px;}
.y5{bottom:720.552750px;}
.y8c{bottom:725.165400px;}
.y3d{bottom:730.761750px;}
.y60{bottom:740.352750px;}
.y8b{bottom:741.365400px;}
.y3c{bottom:750.141750px;}
.y8a{bottom:757.565400px;}
.y5f{bottom:760.152750px;}
.y3b{bottom:769.521750px;}
.y3a{bottom:770.901750px;}
.y4{bottom:772.344750px;}
.y89{bottom:773.765400px;}
.y5e{bottom:779.952750px;}
.y39{bottom:788.901750px;}
.y88{bottom:789.965400px;}
.y3{bottom:797.544750px;}
.y5d{bottom:799.752750px;}
.y87{bottom:806.165400px;}
.y38{bottom:808.281750px;}
.y5c{bottom:819.552750px;}
.y86{bottom:822.365400px;}
.y37{bottom:827.661750px;}
.y85{bottom:838.565400px;}
.y5b{bottom:839.352750px;}
.y36{bottom:847.041750px;}
.y84{bottom:854.765400px;}
.y5a{bottom:859.152750px;}
.y35{bottom:866.421750px;}
.y83{bottom:870.965400px;}
.y64{bottom:878.952750px;}
.y34{bottom:884.421750px;}
.y33{bottom:885.801750px;}
.y82{bottom:887.165400px;}
.y59{bottom:898.752750px;}
.y81{bottom:903.365400px;}
.y32{bottom:903.801750px;}
.y58{bottom:918.552750px;}
.y80{bottom:919.565400px;}
.y31{bottom:923.181750px;}
.y7f{bottom:935.765400px;}
.y57{bottom:938.352750px;}
.y30{bottom:941.181750px;}
.y7e{bottom:951.965400px;}
.y56{bottom:958.152750px;}
.y2f{bottom:966.935400px;}
.y7d{bottom:968.165400px;}
.h5{height:22.509630px;}
.h12{height:35.991211px;}
.h6{height:38.610000px;}
.h7{height:38.612571px;}
.h11{height:38.628000px;}
.h8{height:40.493129px;}
.h13{height:40.517129px;}
.h2{height:42.900000px;}
.h9{height:42.902857px;}
.hb{height:43.989258px;}
.h10{height:44.992366px;}
.hf{height:45.001966px;}
.hc{height:47.190000px;}
.hd{height:47.193143px;}
.ha{height:47.988281px;}
.he{height:49.491602px;}
.h4{height:49.502596px;}
.h3{height:55.986328px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:43.165350px;}
.x3{left:49.837650px;}
.x5{left:55.304700px;}
.x4{left:67.837650px;}
.xb{left:76.537050px;}
.x9{left:80.785950px;}
.x11{left:144.902550px;}
.xc{left:163.432050px;}
.xe{left:203.953650px;}
.xd{left:325.432050px;}
.x6{left:357.832200px;}
.xf{left:359.111550px;}
.x7{left:370.586700px;}
.x15{left:372.048900px;}
.xa{left:384.798450px;}
.x13{left:394.057950px;}
.x10{left:397.548450px;}
.x12{left:440.302950px;}
.x2{left:475.885350px;}
.x17{left:488.108400px;}
.x16{left:495.654900px;}
.x8{left:529.726200px;}
.x14{left:536.862750px;}
@media print{
.v5{vertical-align:-34.453333pt;}
.v4{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v6{vertical-align:17.768533pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000235pt;}
.ls5{letter-spacing:0.336000pt;}
.ls0{letter-spacing:1.488000pt;}
.ls3{letter-spacing:4.400000pt;}
.ls4{letter-spacing:9.797333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-8.550667pt;}
.ws0{word-spacing:-8.379653pt;}
.ws2{word-spacing:-6.996000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:56.213333pt;}
.ws9{word-spacing:141.066667pt;}
.wsb{word-spacing:150.080000pt;}
.wsc{word-spacing:190.560000pt;}
.ws8{word-spacing:383.946667pt;}
.ws6{word-spacing:396.960000pt;}
.ws5{word-spacing:456.746667pt;}
._14{margin-left:-2180.800000pt;}
._4b{margin-left:-13.962667pt;}
._8{margin-left:-5.720587pt;}
._0{margin-left:-3.946667pt;}
._12{margin-left:-3.031200pt;}
._7{margin-left:-2.139360pt;}
._6{margin-left:-1.045333pt;}
._3{width:0.896000pt;}
._2{width:1.941333pt;}
._5{width:2.837333pt;}
._9{width:3.808000pt;}
._10{width:4.720693pt;}
._a{width:6.101333pt;}
._b{width:7.392000pt;}
._13{width:8.330667pt;}
._4{width:9.930667pt;}
._d{width:11.205333pt;}
._c{width:12.906667pt;}
._11{width:15.722667pt;}
._e{width:17.013333pt;}
._f{width:18.069333pt;}
._15{width:19.360000pt;}
._39{width:34.261333pt;}
._3a{width:35.669333pt;}
._49{width:58.726027pt;}
._48{width:60.320000pt;}
._23{width:66.240000pt;}
._26{width:88.000000pt;}
._1a{width:97.866667pt;}
._3d{width:101.066667pt;}
._2e{width:114.666667pt;}
._28{width:117.333333pt;}
._4a{width:137.493333pt;}
._2a{width:141.066667pt;}
._37{width:142.186667pt;}
._2b{width:144.000000pt;}
._45{width:146.406027pt;}
._41{width:149.606027pt;}
._2d{width:156.480000pt;}
._1d{width:160.586667pt;}
._30{width:166.186667pt;}
._40{width:169.386667pt;}
._25{width:173.653333pt;}
._33{width:176.053333pt;}
._3f{width:177.013333pt;}
._21{width:185.706667pt;}
._27{width:186.666667pt;}
._46{width:191.306667pt;}
._22{width:207.472693pt;}
._1f{width:218.986667pt;}
._47{width:224.426667pt;}
._34{width:233.546667pt;}
._31{width:256.160000pt;}
._2f{width:258.773333pt;}
._1c{width:271.259360pt;}
._17{width:272.533333pt;}
._29{width:277.600000pt;}
._19{width:284.592693pt;}
._3c{width:298.032693pt;}
._1b{width:327.200000pt;}
._18{width:339.626667pt;}
._43{width:343.253333pt;}
._1e{width:352.592693pt;}
._3e{width:354.453333pt;}
._20{width:432.480000pt;}
._16{width:437.446027pt;}
._35{width:443.093333pt;}
._2c{width:444.853333pt;}
._38{width:492.006027pt;}
._3b{width:583.893333pt;}
._32{width:596.013920pt;}
._36{width:605.232693pt;}
._24{width:606.453333pt;}
._44{width:665.813333pt;}
._42{width:789.866667pt;}
._1{width:1553.226667pt;}
.fs4{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:54.308933pt;}
.y55{bottom:77.291333pt;}
.y52{bottom:83.456400pt;}
.y6c{bottom:84.365867pt;}
.y21{bottom:94.891333pt;}
.y51{bottom:100.683067pt;}
.y6b{bottom:101.592533pt;}
.y20{bottom:112.491333pt;}
.y50{bottom:117.909733pt;}
.y6a{bottom:118.819200pt;}
.y4f{bottom:119.136400pt;}
.y1f{bottom:130.091333pt;}
.y4e{bottom:135.136400pt;}
.y69{bottom:136.045867pt;}
.y1e{bottom:147.691333pt;}
.y4d{bottom:152.363067pt;}
.y68{bottom:153.272533pt;}
.y1d{bottom:165.291333pt;}
.y4c{bottom:169.589733pt;}
.y67{bottom:176.164800pt;}
.y1c{bottom:182.891333pt;}
.y4b{bottom:186.816400pt;}
.y66{bottom:192.164800pt;}
.ya5{bottom:199.264800pt;}
.y1b{bottom:200.491333pt;}
.y4a{bottom:204.043067pt;}
.ya4{bottom:213.664800pt;}
.y1a{bottom:218.091333pt;}
.y49{bottom:221.269733pt;}
.ya3{bottom:228.064800pt;}
.y19{bottom:235.691333pt;}
.y48{bottom:238.496400pt;}
.ya2{bottom:242.464800pt;}
.y76{bottom:243.664400pt;}
.y18{bottom:253.291333pt;}
.y47{bottom:255.723067pt;}
.ya1{bottom:256.864800pt;}
.y75{bottom:260.890000pt;}
.y17{bottom:270.891333pt;}
.ya0{bottom:271.259467pt;}
.y46{bottom:274.003067pt;}
.y74{bottom:278.115600pt;}
.y54{bottom:284.828933pt;}
.y9f{bottom:285.659467pt;}
.y16{bottom:288.491333pt;}
.y45{bottom:291.229733pt;}
.y73{bottom:295.341200pt;}
.y53{bottom:300.828933pt;}
.y15{bottom:306.091333pt;}
.y72{bottom:312.566800pt;}
.y44{bottom:314.112667pt;}
.y9e{bottom:314.459467pt;}
.y14{bottom:323.691333pt;}
.y71{bottom:329.790267pt;}
.y43{bottom:330.112667pt;}
.y13{bottom:341.291333pt;}
.y70{bottom:347.016933pt;}
.y7c{bottom:357.291333pt;}
.y2c{bottom:358.891333pt;}
.y6f{bottom:364.243600pt;}
.y2b{bottom:376.491333pt;}
.y9d{bottom:380.591467pt;}
.y2{bottom:385.855600pt;}
.y6e{bottom:387.125867pt;}
.y7b{bottom:392.491333pt;}
.y2a{bottom:394.091333pt;}
.y9c{bottom:394.991467pt;}
.y6d{bottom:403.125867pt;}
.y7a{bottom:406.891333pt;}
.y29{bottom:411.691333pt;}
.y12{bottom:413.291333pt;}
.y79{bottom:421.291333pt;}
.y9b{bottom:428.591467pt;}
.y28{bottom:429.291333pt;}
.y11{bottom:432.491333pt;}
.y78{bottom:435.691333pt;}
.y9a{bottom:442.991467pt;}
.y2e{bottom:445.498133pt;}
.y27{bottom:446.891333pt;}
.y77{bottom:450.091333pt;}
.y99{bottom:457.391467pt;}
.y2d{bottom:461.498133pt;}
.y10{bottom:462.891333pt;}
.y26{bottom:464.491333pt;}
.y98{bottom:471.791467pt;}
.yf{bottom:477.291333pt;}
.y25{bottom:482.091333pt;}
.y97{bottom:486.191467pt;}
.ye{bottom:491.691333pt;}
.y24{bottom:499.691333pt;}
.y96{bottom:500.591467pt;}
.yd{bottom:506.091333pt;}
.y95{bottom:514.991467pt;}
.y23{bottom:517.291333pt;}
.yc{bottom:520.491333pt;}
.y94{bottom:529.391467pt;}
.yb{bottom:534.891333pt;}
.y93{bottom:543.791467pt;}
.ya{bottom:549.291333pt;}
.y22{bottom:552.491333pt;}
.y92{bottom:558.191467pt;}
.y63{bottom:570.091333pt;}
.y91{bottom:572.591467pt;}
.y9{bottom:582.891333pt;}
.y90{bottom:586.991467pt;}
.y65{bottom:587.691333pt;}
.y42{bottom:597.886000pt;}
.y8{bottom:601.287333pt;}
.y8f{bottom:601.391467pt;}
.y62{bottom:605.291333pt;}
.y7{bottom:611.691333pt;}
.y41{bottom:615.112667pt;}
.y8e{bottom:615.791467pt;}
.y3f{bottom:617.566000pt;}
.y61{bottom:622.891333pt;}
.y6{bottom:630.087333pt;}
.y8d{bottom:630.191467pt;}
.y40{bottom:632.339333pt;}
.y3e{bottom:633.566000pt;}
.y5{bottom:640.491333pt;}
.y8c{bottom:644.591467pt;}
.y3d{bottom:649.566000pt;}
.y60{bottom:658.091333pt;}
.y8b{bottom:658.991467pt;}
.y3c{bottom:666.792667pt;}
.y8a{bottom:673.391467pt;}
.y5f{bottom:675.691333pt;}
.y3b{bottom:684.019333pt;}
.y3a{bottom:685.246000pt;}
.y4{bottom:686.528667pt;}
.y89{bottom:687.791467pt;}
.y5e{bottom:693.291333pt;}
.y39{bottom:701.246000pt;}
.y88{bottom:702.191467pt;}
.y3{bottom:708.928667pt;}
.y5d{bottom:710.891333pt;}
.y87{bottom:716.591467pt;}
.y38{bottom:718.472667pt;}
.y5c{bottom:728.491333pt;}
.y86{bottom:730.991467pt;}
.y37{bottom:735.699333pt;}
.y85{bottom:745.391467pt;}
.y5b{bottom:746.091333pt;}
.y36{bottom:752.926000pt;}
.y84{bottom:759.791467pt;}
.y5a{bottom:763.691333pt;}
.y35{bottom:770.152667pt;}
.y83{bottom:774.191467pt;}
.y64{bottom:781.291333pt;}
.y34{bottom:786.152667pt;}
.y33{bottom:787.379333pt;}
.y82{bottom:788.591467pt;}
.y59{bottom:798.891333pt;}
.y81{bottom:802.991467pt;}
.y32{bottom:803.379333pt;}
.y58{bottom:816.491333pt;}
.y80{bottom:817.391467pt;}
.y31{bottom:820.606000pt;}
.y7f{bottom:831.791467pt;}
.y57{bottom:834.091333pt;}
.y30{bottom:836.606000pt;}
.y7e{bottom:846.191467pt;}
.y56{bottom:851.691333pt;}
.y2f{bottom:859.498133pt;}
.y7d{bottom:860.591467pt;}
.h5{height:20.008560pt;}
.h12{height:31.992188pt;}
.h6{height:34.320000pt;}
.h7{height:34.322286pt;}
.h11{height:34.336000pt;}
.h8{height:35.993893pt;}
.h13{height:36.015226pt;}
.h2{height:38.133333pt;}
.h9{height:38.135873pt;}
.hb{height:39.101562pt;}
.h10{height:39.993214pt;}
.hf{height:40.001747pt;}
.hc{height:41.946667pt;}
.hd{height:41.949460pt;}
.ha{height:42.656250pt;}
.he{height:43.992535pt;}
.h4{height:44.002308pt;}
.h3{height:49.765625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:38.369200pt;}
.x3{left:44.300133pt;}
.x5{left:49.159733pt;}
.x4{left:60.300133pt;}
.xb{left:68.032933pt;}
.x9{left:71.809733pt;}
.x11{left:128.802267pt;}
.xc{left:145.272933pt;}
.xe{left:181.292133pt;}
.xd{left:289.272933pt;}
.x6{left:318.073067pt;}
.xf{left:319.210267pt;}
.x7{left:329.410400pt;}
.x15{left:330.710133pt;}
.xa{left:342.043067pt;}
.x13{left:350.273733pt;}
.x10{left:353.376400pt;}
.x12{left:391.380400pt;}
.x2{left:423.009200pt;}
.x17{left:433.874133pt;}
.x16{left:440.582133pt;}
.x8{left:470.867733pt;}
.x14{left:477.211333pt;}
}




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