
    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_402f5998d6a4d71263e30b04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854980;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_1646b0a5a12e2b807fecd4e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_86a65e5a169e5e2ba189a635.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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_70b22017c822b9928419c2ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_c6e44fe698b098492c169de0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d233a51c65c49c132ae81538.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_879d819840971d0ef7fd4153.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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_ec156c01b780afd5084d4ed0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.709473;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.043200px;}
.ls19{letter-spacing:-0.032400px;}
.ls10{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003516px;}
.ls3{letter-spacing:0.004686px;}
.ls14{letter-spacing:0.005274px;}
.ls12{letter-spacing:0.005859px;}
.ls9{letter-spacing:0.006444px;}
.lse{letter-spacing:0.007032px;}
.ls1{letter-spacing:0.008202px;}
.ls0{letter-spacing:0.008400px;}
.lsb{letter-spacing:0.009360px;}
.ls11{letter-spacing:0.010800px;}
.lsd{letter-spacing:12.915858px;}
.lsc{letter-spacing:17.846670px;}
.lsa{letter-spacing:21.719616px;}
.ls2{letter-spacing:23.715828px;}
.ls16{letter-spacing:27.588786px;}
.lsf{letter-spacing:29.584998px;}
.ls4{letter-spacing:30.523374px;}
.ls13{letter-spacing:35.454171px;}
.ls6{letter-spacing:36.392544px;}
.ls15{letter-spacing:38.388756px;}
.ls17{letter-spacing:41.323344px;}
.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:-24.000000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.057600px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-7.488000px;}
._5{margin-left:-5.308800px;}
._0{margin-left:-4.114800px;}
._1{margin-left:-2.689200px;}
._3{margin-left:-1.404000px;}
._2{width:1.404000px;}
._7{width:3.600000px;}
._9{width:6.885000px;}
._a{width:8.078400px;}
._6{width:9.408000px;}
._8{width:11.151600px;}
._e{width:49.577370px;}
._d{width:61.643400px;}
._b{width:75.719400px;}
._c{width:191.074800px;}
._f{width:212.298600px;}
.fc8{color:rgb(254,55,55);}
.fc6{color:transparent;}
.fc5{color:rgb(173,1,1);}
.fc7{color:rgb(217,217,217);}
.fc4{color:rgb(38,38,38);}
.fc3{color:rgb(69,69,69);}
.fc2{color:rgb(48,48,48);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:43.292609px;}
.fs5{font-size:48.000000px;}
.fse{font-size:49.477268px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:55.661926px;}
.fs4{font-size:60.000000px;}
.fsf{font-size:64.799970px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:68.031243px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:75.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs11{font-size:195.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:7.733850px;}
.y3{bottom:9.187455px;}
.y87{bottom:9.768750px;}
.y15{bottom:22.758750px;}
.y8f{bottom:23.853750px;}
.y85{bottom:28.593750px;}
.y14{bottom:35.784450px;}
.y7f{bottom:45.913650px;}
.y71{bottom:47.193600px;}
.y17{bottom:48.000150px;}
.y23{bottom:48.600000px;}
.y13{bottom:50.784450px;}
.y90{bottom:53.979300px;}
.y12{bottom:65.784450px;}
.yb5{bottom:67.514550px;}
.y80{bottom:71.899200px;}
.y96{bottom:72.752288px;}
.y11{bottom:81.054450px;}
.y68{bottom:82.629757px;}
.y86{bottom:83.262188px;}
.y91{bottom:84.104850px;}
.y1{bottom:91.690935px;}
.y10{bottom:93.534450px;}
.y8d{bottom:94.328700px;}
.y81{bottom:97.884750px;}
.y4b{bottom:102.305550px;}
.y44{bottom:102.348300px;}
.y67{bottom:104.379757px;}
.y7d{bottom:104.859750px;}
.yf{bottom:108.534300px;}
.yb4{bottom:108.534450px;}
.y8c{bottom:108.578550px;}
.y4a{bottom:112.805550px;}
.y43{bottom:112.848300px;}
.y92{bottom:114.230250px;}
.y7c{bottom:119.109750px;}
.y82{bottom:123.870150px;}
.ye{bottom:123.924450px;}
.y49{bottom:124.055550px;}
.y42{bottom:124.098300px;}
.y22{bottom:131.449950px;}
.y48{bottom:134.555550px;}
.y41{bottom:134.598300px;}
.y7b{bottom:140.194800px;}
.ya2{bottom:141.421058px;}
.yd{bottom:141.804300px;}
.yb3{bottom:141.804450px;}
.y93{bottom:144.355950px;}
.y47{bottom:145.055550px;}
.y40{bottom:145.098300px;}
.y66{bottom:147.129757px;}
.y83{bottom:149.855700px;}
.y31{bottom:151.501950px;}
.y9c{bottom:155.653350px;}
.y2b{bottom:155.872357px;}
.y46{bottom:156.305550px;}
.y3f{bottom:156.348300px;}
.y4e{bottom:157.175257px;}
.y7a{bottom:157.834807px;}
.yc{bottom:159.804300px;}
.yb2{bottom:159.804450px;}
.y21{bottom:162.199950px;}
.y8b{bottom:164.436300px;}
.y8a{bottom:165.358800px;}
.y45{bottom:167.555550px;}
.y3e{bottom:167.598300px;}
.y65{bottom:168.729600px;}
.y94{bottom:174.481500px;}
.y84{bottom:175.841250px;}
.y36{bottom:176.645250px;}
.y79{bottom:177.334807px;}
.yb{bottom:177.804300px;}
.yb1{bottom:177.804450px;}
.y70{bottom:178.834808px;}
.y9b{bottom:180.613350px;}
.y30{bottom:181.501950px;}
.y2a{bottom:182.122357px;}
.ya9{bottom:185.474400px;}
.y39{bottom:185.675258px;}
.y64{bottom:186.879758px;}
.y20{bottom:189.829957px;}
.y4d{bottom:191.675258px;}
.y16{bottom:194.290950px;}
.ya1{bottom:194.521050px;}
.y97{bottom:195.360008px;}
.ya{bottom:195.804300px;}
.yb0{bottom:195.804450px;}
.y78{bottom:196.834807px;}
.y88{bottom:197.019907px;}
.y6f{bottom:198.334808px;}
.yaf{bottom:198.911700px;}
.y1f{bottom:202.579957px;}
.y35{bottom:205.685250px;}
.y29{bottom:207.232350px;}
.y63{bottom:208.479750px;}
.y55{bottom:210.368407px;}
.ya8{bottom:210.974400px;}
.y2f{bottom:211.501950px;}
.y1e{bottom:216.079957px;}
.y77{bottom:216.334807px;}
.y6e{bottom:217.834808px;}
.ya0{bottom:219.481050px;}
.y38{bottom:220.175258px;}
.y5a{bottom:220.585650px;}
.y4c{bottom:225.935250px;}
.y62{bottom:226.629607px;}
.y34{bottom:228.395250px;}
.y1d{bottom:228.829957px;}
.y28{bottom:231.232350px;}
.y76{bottom:235.834807px;}
.y3d{bottom:235.897957px;}
.ya7{bottom:235.934400px;}
.y6d{bottom:237.334808px;}
.y9a{bottom:241.153350px;}
.y1c{bottom:241.579957px;}
.y2e{bottom:242.251950px;}
.y54{bottom:244.868557px;}
.y59{bottom:245.545650px;}
.y61{bottom:248.229600px;}
.y9f{bottom:250.231050px;}
.yae{bottom:252.911700px;}
.y37{bottom:254.675258px;}
.y1b{bottom:255.109950px;}
.y75{bottom:255.334807px;}
.y27{bottom:255.652350px;}
.y9{bottom:255.911700px;}
.y6c{bottom:257.254808px;}
.y33{bottom:258.395250px;}
.y3c{bottom:262.147957px;}
.y60{bottom:263.979750px;}
.ya6{bottom:266.474400px;}
.y99{bottom:266.653350px;}
.y2d{bottom:272.251950px;}
.y1a{bottom:274.699950px;}
.y74{bottom:274.834807px;}
.y58{bottom:276.295650px;}
.y53{bottom:279.128550px;}
.y9e{bottom:280.231050px;}
.y5f{bottom:280.239757px;}
.y8{bottom:280.661700px;}
.yad{bottom:281.411700px;}
.y6b{bottom:283.504808px;}
.y26{bottom:286.402350px;}
.y3b{bottom:287.647957px;}
.y32{bottom:288.935250px;}
.y98{bottom:291.403350px;}
.ya5{bottom:291.434400px;}
.y5e{bottom:300.129607px;}
.y2c{bottom:302.041950px;}
.y19{bottom:304.699950px;}
.y7{bottom:306.161700px;}
.y57{bottom:306.295650px;}
.y52{bottom:307.868407px;}
.y6a{bottom:309.574800px;}
.y9d{bottom:310.021050px;}
.yac{bottom:310.661700px;}
.y3a{bottom:314.467950px;}
.y73{bottom:315.574800px;}
.y25{bottom:316.402350px;}
.y50{bottom:317.352000px;}
.y5d{bottom:321.729600px;}
.ya4{bottom:321.974400px;}
.y69{bottom:330.574800px;}
.y6{bottom:332.411700px;}
.y72{bottom:333.574800px;}
.y18{bottom:334.489950px;}
.y56{bottom:336.085650px;}
.y89{bottom:337.145550px;}
.y5c{bottom:337.239607px;}
.y7e{bottom:337.636500px;}
.yab{bottom:339.161700px;}
.y51{bottom:342.128400px;}
.y4f{bottom:345.852000px;}
.y24{bottom:346.192350px;}
.ya3{bottom:346.724400px;}
.y5b{bottom:356.979600px;}
.y5{bottom:364.661700px;}
.yaa{bottom:367.661700px;}
.y4{bottom:664.090950px;}
.y8e{bottom:824.618250px;}
.y2{bottom:1056.599865px;}
.h18{height:29.162109px;}
.h9{height:31.518203px;}
.hd{height:32.484375px;}
.hb{height:32.531250px;}
.h1a{height:36.597656px;}
.h19{height:37.494141px;}
.ha{height:37.898438px;}
.h15{height:38.733398px;}
.h16{height:40.523404px;}
.h8{height:43.312500px;}
.h1b{height:43.917167px;}
.h11{height:47.340820px;}
.h14{height:48.726562px;}
.h10{height:49.528605px;}
.h2{height:51.679688px;}
.h7{height:54.140625px;}
.hf{height:59.554688px;}
.h12{height:64.968750px;}
.h5{height:75.796875px;}
.hc{height:77.484375px;}
.h13{height:86.625000px;}
.he{height:87.169922px;}
.h4{height:97.453125px;}
.h1d{height:175.957031px;}
.h6{height:194.906250px;}
.h1c{height:219.436350px;}
.h17{height:219.927150px;}
.h3{height:405.000000px;}
.h1{height:1079.999850px;}
.h0{height:1263.000000px;}
.w5{width:359.836350px;}
.w3{width:422.181600px;}
.w4{width:422.181750px;}
.w2{width:540.000000px;}
.w1{width:810.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x41{left:24.618000px;}
.x40{left:29.943000px;}
.x3b{left:33.462000px;}
.x3f{left:36.693000px;}
.x39{left:38.787000px;}
.x1{left:41.236365px;}
.x38{left:44.037000px;}
.x37{left:49.287000px;}
.x6{left:50.400000px;}
.x45{left:51.894150px;}
.x35{left:55.719000px;}
.xa{left:57.413250px;}
.x43{left:59.235450px;}
.x30{left:60.821850px;}
.x5{left:63.907650px;}
.x2f{left:66.150000px;}
.xf{left:67.420500px;}
.x13{left:70.581925px;}
.x3a{left:74.602703px;}
.x32{left:76.571850px;}
.x31{left:79.571850px;}
.x2e{left:83.170500px;}
.x14{left:86.303362px;}
.x12{left:89.653095px;}
.x15{left:92.257950px;}
.x42{left:93.462382px;}
.xe{left:94.913250px;}
.x33{left:99.069750px;}
.x10{left:104.920500px;}
.xb{left:111.413250px;}
.x34{left:112.569765px;}
.x11{left:118.420500px;}
.xd{left:124.913265px;}
.xc{left:129.038265px;}
.x8{left:141.437250px;}
.x1a{left:167.208622px;}
.x19{left:168.327030px;}
.x17{left:172.141485px;}
.x16{left:174.391485px;}
.x4{left:176.236350px;}
.x9{left:178.937250px;}
.x18{left:184.784550px;}
.x3c{left:202.455300px;}
.x36{left:226.309050px;}
.x46{left:232.245600px;}
.x7{left:238.800150px;}
.x3e{left:247.909050px;}
.x1c{left:253.138831px;}
.x21{left:257.445472px;}
.x20{left:258.563880px;}
.x1d{left:262.378335px;}
.x1f{left:263.964757px;}
.x1b{left:268.405432px;}
.x3d{left:272.861069px;}
.x1e{left:275.021400px;}
.x27{left:345.207172px;}
.x26{left:346.325580px;}
.x24{left:350.140035px;}
.x23{left:352.390035px;}
.x22{left:356.025412px;}
.x25{left:362.783100px;}
.x29{left:426.492782px;}
.x2d{left:430.799423px;}
.x2c{left:431.917830px;}
.x2a{left:435.732285px;}
.x28{left:441.617663px;}
.x2b{left:448.375350px;}
.x2{left:740.092935px;}
.x44{left:781.366335px;}
.x3{left:790.489485px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.038400pt;}
.ls19{letter-spacing:-0.028800pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003125pt;}
.ls3{letter-spacing:0.004165pt;}
.ls14{letter-spacing:0.004688pt;}
.ls12{letter-spacing:0.005208pt;}
.ls9{letter-spacing:0.005728pt;}
.lse{letter-spacing:0.006251pt;}
.ls1{letter-spacing:0.007291pt;}
.ls0{letter-spacing:0.007467pt;}
.lsb{letter-spacing:0.008320pt;}
.ls11{letter-spacing:0.009600pt;}
.lsd{letter-spacing:11.480763pt;}
.lsc{letter-spacing:15.863707pt;}
.lsa{letter-spacing:19.306325pt;}
.ls2{letter-spacing:21.080736pt;}
.ls16{letter-spacing:24.523365pt;}
.lsf{letter-spacing:26.297776pt;}
.ls4{letter-spacing:27.131888pt;}
.ls13{letter-spacing:31.514819pt;}
.ls6{letter-spacing:32.348928pt;}
.ls15{letter-spacing:34.123339pt;}
.ls17{letter-spacing:36.731861pt;}
.ws3{word-spacing:-21.333333pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.051200pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-6.656000pt;}
._5{margin-left:-4.718933pt;}
._0{margin-left:-3.657600pt;}
._1{margin-left:-2.390400pt;}
._3{margin-left:-1.248000pt;}
._2{width:1.248000pt;}
._7{width:3.200000pt;}
._9{width:6.120000pt;}
._a{width:7.180800pt;}
._6{width:8.362667pt;}
._8{width:9.912533pt;}
._e{width:44.068773pt;}
._d{width:54.794133pt;}
._b{width:67.306133pt;}
._c{width:169.844267pt;}
._f{width:188.709867pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:38.482319pt;}
.fs5{font-size:42.666667pt;}
.fse{font-size:43.979793pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:49.477268pt;}
.fs4{font-size:53.333333pt;}
.fsf{font-size:57.599973pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:60.472216pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:66.666667pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs11{font-size:173.333333pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:6.874533pt;}
.y3{bottom:8.166627pt;}
.y87{bottom:8.683333pt;}
.y15{bottom:20.230000pt;}
.y8f{bottom:21.203333pt;}
.y85{bottom:25.416667pt;}
.y14{bottom:31.808400pt;}
.y7f{bottom:40.812133pt;}
.y71{bottom:41.949867pt;}
.y17{bottom:42.666800pt;}
.y23{bottom:43.200000pt;}
.y13{bottom:45.141733pt;}
.y90{bottom:47.981600pt;}
.y12{bottom:58.475067pt;}
.yb5{bottom:60.012933pt;}
.y80{bottom:63.910400pt;}
.y96{bottom:64.668700pt;}
.y11{bottom:72.048400pt;}
.y68{bottom:73.448673pt;}
.y86{bottom:74.010833pt;}
.y91{bottom:74.759867pt;}
.y1{bottom:81.503053pt;}
.y10{bottom:83.141733pt;}
.y8d{bottom:83.847733pt;}
.y81{bottom:87.008667pt;}
.y4b{bottom:90.938267pt;}
.y44{bottom:90.976267pt;}
.y67{bottom:92.782007pt;}
.y7d{bottom:93.208667pt;}
.yf{bottom:96.474933pt;}
.yb4{bottom:96.475067pt;}
.y8c{bottom:96.514267pt;}
.y4a{bottom:100.271600pt;}
.y43{bottom:100.309600pt;}
.y92{bottom:101.538000pt;}
.y7c{bottom:105.875333pt;}
.y82{bottom:110.106800pt;}
.ye{bottom:110.155067pt;}
.y49{bottom:110.271600pt;}
.y42{bottom:110.309600pt;}
.y22{bottom:116.844400pt;}
.y48{bottom:119.604933pt;}
.y41{bottom:119.642933pt;}
.y7b{bottom:124.617600pt;}
.ya2{bottom:125.707607pt;}
.yd{bottom:126.048267pt;}
.yb3{bottom:126.048400pt;}
.y93{bottom:128.316400pt;}
.y47{bottom:128.938267pt;}
.y40{bottom:128.976267pt;}
.y66{bottom:130.782007pt;}
.y83{bottom:133.205067pt;}
.y31{bottom:134.668400pt;}
.y9c{bottom:138.358533pt;}
.y2b{bottom:138.553207pt;}
.y46{bottom:138.938267pt;}
.y3f{bottom:138.976267pt;}
.y4e{bottom:139.711340pt;}
.y7a{bottom:140.297607pt;}
.yc{bottom:142.048267pt;}
.yb2{bottom:142.048400pt;}
.y21{bottom:144.177733pt;}
.y8b{bottom:146.165600pt;}
.y8a{bottom:146.985600pt;}
.y45{bottom:148.938267pt;}
.y3e{bottom:148.976267pt;}
.y65{bottom:149.981867pt;}
.y94{bottom:155.094667pt;}
.y84{bottom:156.303333pt;}
.y36{bottom:157.018000pt;}
.y79{bottom:157.630940pt;}
.yb{bottom:158.048267pt;}
.yb1{bottom:158.048400pt;}
.y70{bottom:158.964273pt;}
.y9b{bottom:160.545200pt;}
.y30{bottom:161.335067pt;}
.y2a{bottom:161.886540pt;}
.ya9{bottom:164.866133pt;}
.y39{bottom:165.044673pt;}
.y64{bottom:166.115340pt;}
.y20{bottom:168.737740pt;}
.y4d{bottom:170.378007pt;}
.y16{bottom:172.703067pt;}
.ya1{bottom:172.907600pt;}
.y97{bottom:173.653340pt;}
.ya{bottom:174.048267pt;}
.yb0{bottom:174.048400pt;}
.y78{bottom:174.964273pt;}
.y88{bottom:175.128807pt;}
.y6f{bottom:176.297607pt;}
.yaf{bottom:176.810400pt;}
.y1f{bottom:180.071073pt;}
.y35{bottom:182.831333pt;}
.y29{bottom:184.206533pt;}
.y63{bottom:185.315333pt;}
.y55{bottom:186.994140pt;}
.ya8{bottom:187.532800pt;}
.y2f{bottom:188.001733pt;}
.y1e{bottom:192.071073pt;}
.y77{bottom:192.297607pt;}
.y6e{bottom:193.630940pt;}
.ya0{bottom:195.094267pt;}
.y38{bottom:195.711340pt;}
.y5a{bottom:196.076133pt;}
.y4c{bottom:200.831333pt;}
.y62{bottom:201.448540pt;}
.y34{bottom:203.018000pt;}
.y1d{bottom:203.404407pt;}
.y28{bottom:205.539867pt;}
.y76{bottom:209.630940pt;}
.y3d{bottom:209.687073pt;}
.ya7{bottom:209.719467pt;}
.y6d{bottom:210.964273pt;}
.y9a{bottom:214.358533pt;}
.y1c{bottom:214.737740pt;}
.y2e{bottom:215.335067pt;}
.y54{bottom:217.660940pt;}
.y59{bottom:218.262800pt;}
.y61{bottom:220.648533pt;}
.y9f{bottom:222.427600pt;}
.yae{bottom:224.810400pt;}
.y37{bottom:226.378007pt;}
.y1b{bottom:226.764400pt;}
.y75{bottom:226.964273pt;}
.y27{bottom:227.246533pt;}
.y9{bottom:227.477067pt;}
.y6c{bottom:228.670940pt;}
.y33{bottom:229.684667pt;}
.y3c{bottom:233.020407pt;}
.y60{bottom:234.648667pt;}
.ya6{bottom:236.866133pt;}
.y99{bottom:237.025200pt;}
.y2d{bottom:242.001733pt;}
.y1a{bottom:244.177733pt;}
.y74{bottom:244.297607pt;}
.y58{bottom:245.596133pt;}
.y53{bottom:248.114267pt;}
.y9e{bottom:249.094267pt;}
.y5f{bottom:249.102007pt;}
.y8{bottom:249.477067pt;}
.yad{bottom:250.143733pt;}
.y6b{bottom:252.004273pt;}
.y26{bottom:254.579867pt;}
.y3b{bottom:255.687073pt;}
.y32{bottom:256.831333pt;}
.y98{bottom:259.025200pt;}
.ya5{bottom:259.052800pt;}
.y5e{bottom:266.781873pt;}
.y2c{bottom:268.481733pt;}
.y19{bottom:270.844400pt;}
.y7{bottom:272.143733pt;}
.y57{bottom:272.262800pt;}
.y52{bottom:273.660807pt;}
.y6a{bottom:275.177600pt;}
.y9d{bottom:275.574267pt;}
.yac{bottom:276.143733pt;}
.y3a{bottom:279.527067pt;}
.y73{bottom:280.510933pt;}
.y25{bottom:281.246533pt;}
.y50{bottom:282.090667pt;}
.y5d{bottom:285.981867pt;}
.ya4{bottom:286.199467pt;}
.y69{bottom:293.844267pt;}
.y6{bottom:295.477067pt;}
.y72{bottom:296.510933pt;}
.y18{bottom:297.324400pt;}
.y56{bottom:298.742800pt;}
.y89{bottom:299.684933pt;}
.y5c{bottom:299.768540pt;}
.y7e{bottom:300.121333pt;}
.yab{bottom:301.477067pt;}
.y51{bottom:304.114133pt;}
.y4f{bottom:307.424000pt;}
.y24{bottom:307.726533pt;}
.ya3{bottom:308.199467pt;}
.y5b{bottom:317.315200pt;}
.y5{bottom:324.143733pt;}
.yaa{bottom:326.810400pt;}
.y4{bottom:590.303067pt;}
.y8e{bottom:732.994000pt;}
.y2{bottom:939.199880pt;}
.h18{height:25.921875pt;}
.h9{height:28.016181pt;}
.hd{height:28.875000pt;}
.hb{height:28.916667pt;}
.h1a{height:32.531250pt;}
.h19{height:33.328125pt;}
.ha{height:33.687500pt;}
.h15{height:34.429688pt;}
.h16{height:36.020804pt;}
.h8{height:38.500000pt;}
.h1b{height:39.037482pt;}
.h11{height:42.080729pt;}
.h14{height:43.312500pt;}
.h10{height:44.025427pt;}
.h2{height:45.937500pt;}
.h7{height:48.125000pt;}
.hf{height:52.937500pt;}
.h12{height:57.750000pt;}
.h5{height:67.375000pt;}
.hc{height:68.875000pt;}
.h13{height:77.000000pt;}
.he{height:77.484375pt;}
.h4{height:86.625000pt;}
.h1d{height:156.406250pt;}
.h6{height:173.250000pt;}
.h1c{height:195.054533pt;}
.h17{height:195.490800pt;}
.h3{height:360.000000pt;}
.h1{height:959.999867pt;}
.h0{height:1122.666667pt;}
.w5{width:319.854533pt;}
.w3{width:375.272533pt;}
.w4{width:375.272667pt;}
.w2{width:480.000000pt;}
.w1{width:720.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x41{left:21.882667pt;}
.x40{left:26.616000pt;}
.x3b{left:29.744000pt;}
.x3f{left:32.616000pt;}
.x39{left:34.477333pt;}
.x1{left:36.654547pt;}
.x38{left:39.144000pt;}
.x37{left:43.810667pt;}
.x6{left:44.800000pt;}
.x45{left:46.128133pt;}
.x35{left:49.528000pt;}
.xa{left:51.034000pt;}
.x43{left:52.653733pt;}
.x30{left:54.063867pt;}
.x5{left:56.806800pt;}
.x2f{left:58.800000pt;}
.xf{left:59.929333pt;}
.x13{left:62.739489pt;}
.x3a{left:66.313513pt;}
.x32{left:68.063867pt;}
.x31{left:70.730533pt;}
.x2e{left:73.929333pt;}
.x14{left:76.714100pt;}
.x12{left:79.691640pt;}
.x15{left:82.007067pt;}
.x42{left:83.077673pt;}
.xe{left:84.367333pt;}
.x33{left:88.062000pt;}
.x10{left:93.262667pt;}
.xb{left:99.034000pt;}
.x34{left:100.062013pt;}
.x11{left:105.262667pt;}
.xd{left:111.034013pt;}
.xc{left:114.700680pt;}
.x8{left:125.722000pt;}
.x1a{left:148.629887pt;}
.x19{left:149.624027pt;}
.x17{left:153.014653pt;}
.x16{left:155.014653pt;}
.x4{left:156.654533pt;}
.x9{left:159.055333pt;}
.x18{left:164.252933pt;}
.x3c{left:179.960267pt;}
.x36{left:201.163600pt;}
.x46{left:206.440533pt;}
.x7{left:212.266800pt;}
.x3e{left:220.363600pt;}
.x1c{left:225.012295pt;}
.x21{left:228.840420pt;}
.x20{left:229.834560pt;}
.x1d{left:233.225187pt;}
.x1f{left:234.635340pt;}
.x1b{left:238.582607pt;}
.x3d{left:242.543173pt;}
.x1e{left:244.463467pt;}
.x27{left:306.850820pt;}
.x26{left:307.844960pt;}
.x24{left:311.235587pt;}
.x23{left:313.235587pt;}
.x22{left:316.467033pt;}
.x25{left:322.473867pt;}
.x29{left:379.104695pt;}
.x2d{left:382.932820pt;}
.x2c{left:383.926960pt;}
.x2a{left:387.317587pt;}
.x28{left:392.549033pt;}
.x2b{left:398.555867pt;}
.x2{left:657.860387pt;}
.x44{left:694.547853pt;}
.x3{left:702.657320pt;}
}




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