
    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_b586ed33c7586367a5f3796b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_83dc45180a19b1c03770f2e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ca2e784cb8ed2758f2d09d13.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_43399bd2c3b1bfc2dc360b7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_462b4de1390690b5e4c1f102.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d3c21d65b72546b1cdbfe6b5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dc46309939d5a494c0508fe5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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);}
.v1{vertical-align:-96.480000px;}
.v5{vertical-align:-8.640000px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v4{vertical-align:8.640000px;}
.ls7{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.025920px;}
.ls9{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.720000px;}
.ls13{letter-spacing:7.762320px;}
.lsc{letter-spacing:25.740000px;}
.ls4{letter-spacing:30.780000px;}
.lsd{letter-spacing:124.380000px;}
.lse{letter-spacing:472.140000px;}
.ls0{letter-spacing:894.360000px;}
.lsf{letter-spacing:1666.896000px;}
.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:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-19.474560px;}
.ws6{word-spacing:-19.465920px;}
.ws5{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1385.580240px;}
._5{margin-left:-1255.973040px;}
._4{margin-left:-1037.661120px;}
._5f{margin-left:-961.380000px;}
._61{margin-left:-921.699840px;}
._42{margin-left:-896.557920px;}
._67{margin-left:-856.980000px;}
._68{margin-left:-818.123520px;}
._7{margin-left:-809.876160px;}
._6{margin-left:-787.260000px;}
._31{margin-left:-603.672000px;}
._30{margin-left:-597.576000px;}
._51{margin-left:-502.740000px;}
._4f{margin-left:-464.335200px;}
._52{margin-left:-462.847680px;}
._39{margin-left:-422.121600px;}
._46{margin-left:-365.961600px;}
._35{margin-left:-354.776640px;}
._45{margin-left:-345.421920px;}
._65{margin-left:-334.980000px;}
._66{margin-left:-333.590400px;}
._6d{margin-left:-329.173440px;}
._6b{margin-left:-319.800000px;}
._3b{margin-left:-314.092800px;}
._6c{margin-left:-309.060000px;}
._6a{margin-left:-290.526720px;}
._69{margin-left:-270.000000px;}
._4c{margin-left:-259.502880px;}
._44{margin-left:-252.237600px;}
._48{margin-left:-244.234800px;}
._4a{margin-left:-237.916800px;}
._47{margin-left:-223.621920px;}
._49{margin-left:-217.141920px;}
._3e{margin-left:-212.400000px;}
._4b{margin-left:-203.641920px;}
._62{margin-left:-198.000000px;}
._5a{margin-left:-191.520000px;}
._37{margin-left:-190.454400px;}
._64{margin-left:-189.438720px;}
._33{margin-left:-181.278720px;}
._2d{margin-left:-179.645760px;}
._3d{margin-left:-172.782720px;}
._63{margin-left:-169.200000px;}
._5e{margin-left:-153.360000px;}
._2f{margin-left:-145.742400px;}
._56{margin-left:-140.921280px;}
._55{margin-left:-120.960000px;}
._59{margin-left:-81.362880px;}
._5c{margin-left:-79.920000px;}
._58{margin-left:-75.000000px;}
._53{margin-left:-69.698880px;}
._32{margin-left:-62.038080px;}
._5b{margin-left:-59.607360px;}
._54{margin-left:-45.334080px;}
._5d{margin-left:-42.016320px;}
._57{margin-left:-38.880000px;}
._41{margin-left:-22.382160px;}
._60{margin-left:-20.139840px;}
._71{margin-left:-11.520000px;}
._6f{margin-left:-8.100000px;}
._28{margin-left:-6.621360px;}
._18{margin-left:-5.307120px;}
._12{margin-left:-4.296240px;}
._11{margin-left:-2.695680px;}
._0{margin-left:-1.263600px;}
._1{width:1.239360px;}
._6e{width:2.347440px;}
._e{width:3.369600px;}
._f{width:4.633200px;}
._10{width:5.644080px;}
._15{width:7.413120px;}
._1e{width:8.592480px;}
._70{width:9.945360px;}
._2a{width:12.214800px;}
._2b{width:13.562640px;}
._b{width:15.163200px;}
._29{width:16.763760px;}
._20{width:18.280080px;}
._1f{width:19.543680px;}
._26{width:22.576320px;}
._4e{width:23.736000px;}
._14{width:25.524720px;}
._27{width:26.872560px;}
._24{width:29.315520px;}
._16{width:30.494880px;}
._73{width:31.926960px;}
._72{width:32.937840px;}
._23{width:37.318320px;}
._21{width:38.666160px;}
._22{width:40.014000px;}
._2c{width:41.349840px;}
._19{width:44.478720px;}
._a{width:45.573840px;}
._17{width:46.913520px;}
._1d{width:52.481520px;}
._1c{width:53.576640px;}
._9{width:56.100720px;}
._8{width:57.579600px;}
._40{width:59.092800px;}
._1a{width:61.772160px;}
._1b{width:63.804720px;}
._25{width:72.530640px;}
._13{width:76.237200px;}
._d{width:79.101360px;}
._c{width:80.112240px;}
._2e{width:159.840000px;}
._34{width:162.000000px;}
._38{width:171.360000px;}
._3{width:198.000000px;}
._3c{width:295.320000px;}
._36{width:334.920000px;}
._3f{width:366.575040px;}
._3a{width:403.200000px;}
._50{width:439.924320px;}
._43{width:548.668800px;}
._74{width:843.240000px;}
._4d{width:1707.372480px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:4.140000px;}
.y62{bottom:8.100000px;}
.y4f{bottom:11.520000px;}
.y5e{bottom:12.960000px;}
.y53{bottom:26.640000px;}
.y61{bottom:30.420000px;}
.y4e{bottom:34.020000px;}
.y5d{bottom:35.490000px;}
.y3{bottom:38.376000px;}
.y52{bottom:48.960000px;}
.y5c{bottom:57.810000px;}
.y2{bottom:62.676000px;}
.y51{bottom:71.505000px;}
.y5a{bottom:88.416000px;}
.y85{bottom:90.396000px;}
.y59{bottom:93.636000px;}
.y58{bottom:105.696000px;}
.y2a{bottom:111.276000px;}
.y84{bottom:113.616000px;}
.y57{bottom:122.976000px;}
.y56{bottom:128.196000px;}
.y29{bottom:135.396000px;}
.y83{bottom:136.836000px;}
.y55{bottom:141.516000px;}
.y28{bottom:159.510000px;}
.y82{bottom:159.870000px;}
.y81{bottom:183.090000px;}
.y27{bottom:183.630000px;}
.y50{bottom:204.150000px;}
.y80{bottom:206.310000px;}
.y8b{bottom:207.390000px;}
.y26{bottom:219.810000px;}
.y8a{bottom:231.510000px;}
.y7f{bottom:234.030000px;}
.y25{bottom:243.930000px;}
.y89{bottom:255.630000px;}
.y7e{bottom:258.150000px;}
.y24{bottom:268.050000px;}
.y88{bottom:279.795000px;}
.y7d{bottom:282.315000px;}
.y23{bottom:292.215000px;}
.y4d{bottom:294.735000px;}
.y87{bottom:303.915000px;}
.y7c{bottom:306.435000px;}
.y22{bottom:316.515000px;}
.y86{bottom:328.215000px;}
.y7b{bottom:330.555000px;}
.y21{bottom:340.635000px;}
.y4c{bottom:352.335000px;}
.y7a{bottom:354.675000px;}
.y20{bottom:364.755000px;}
.y4b{bottom:376.455000px;}
.y79{bottom:378.975000px;}
.y1f{bottom:388.875000px;}
.y4a{bottom:400.575000px;}
.y78{bottom:403.095000px;}
.y1e{bottom:412.995000px;}
.y49{bottom:424.695000px;}
.y77{bottom:427.215000px;}
.y48{bottom:448.815000px;}
.y1d{bottom:449.175000px;}
.y76{bottom:451.335000px;}
.y47{bottom:473.115000px;}
.y1c{bottom:473.295000px;}
.y75{bottom:475.455000px;}
.y46{bottom:497.235000px;}
.y1b{bottom:497.415000px;}
.y74{bottom:499.575000px;}
.y45{bottom:521.355000px;}
.y1a{bottom:521.715000px;}
.y73{bottom:523.875000px;}
.y44{bottom:545.475000px;}
.y19{bottom:545.835000px;}
.y72{bottom:547.995000px;}
.y43{bottom:569.625000px;}
.y18{bottom:569.985000px;}
.y71{bottom:572.145000px;}
.y42{bottom:593.745000px;}
.y17{bottom:594.105000px;}
.y70{bottom:596.265000px;}
.y40{bottom:618.045000px;}
.y16{bottom:618.225000px;}
.y6f{bottom:620.385000px;}
.y41{bottom:625.605000px;}
.y3f{bottom:642.165000px;}
.y15{bottom:642.345000px;}
.y6e{bottom:644.505000px;}
.y3e{bottom:666.285000px;}
.y14{bottom:666.465000px;}
.y6d{bottom:668.805000px;}
.y3d{bottom:690.405000px;}
.y6c{bottom:692.925000px;}
.y13{bottom:702.645000px;}
.y3c{bottom:714.525000px;}
.y6b{bottom:717.045000px;}
.y12{bottom:726.765000px;}
.y3b{bottom:738.645000px;}
.y6a{bottom:741.165000px;}
.y11{bottom:751.065000px;}
.y3a{bottom:762.765000px;}
.y69{bottom:765.285000px;}
.y10{bottom:775.185000px;}
.y39{bottom:787.065000px;}
.y68{bottom:789.405000px;}
.yf{bottom:799.305000px;}
.y38{bottom:811.185000px;}
.y67{bottom:813.525000px;}
.ye{bottom:823.425000px;}
.y37{bottom:835.305000px;}
.y66{bottom:837.825000px;}
.yd{bottom:847.590000px;}
.y36{bottom:859.470000px;}
.y65{bottom:861.990000px;}
.yc{bottom:871.710000px;}
.y35{bottom:883.590000px;}
.y64{bottom:886.110000px;}
.yb{bottom:896.010000px;}
.y63{bottom:906.450000px;}
.y34{bottom:907.710000px;}
.ya{bottom:920.130000px;}
.y33{bottom:932.010000px;}
.y32{bottom:956.130000px;}
.y60{bottom:974.490000px;}
.y31{bottom:980.250000px;}
.y9{bottom:986.370000px;}
.y2f{bottom:1004.370000px;}
.y30{bottom:1011.930000px;}
.y5f{bottom:1023.990000px;}
.y2e{bottom:1028.490000px;}
.y8{bottom:1034.610000px;}
.y2d{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y2c{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y5b{bottom:1092.030000px;}
.y2b{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h12{height:22.320000px;}
.h13{height:22.500000px;}
.hc{height:38.158594px;}
.h11{height:48.780000px;}
.h8{height:52.200000px;}
.h7{height:52.998047px;}
.hd{height:58.651172px;}
.h10{height:67.320000px;}
.hf{height:69.710625px;}
.hb{height:72.558281px;}
.h3{height:74.820586px;}
.h6{height:75.519844px;}
.he{height:76.176000px;}
.h9{height:76.317188px;}
.h5{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h14{height:87.244805px;}
.ha{height:89.676000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:215.310000px;}
.w4{width:215.355000px;}
.w9{width:220.710000px;}
.w8{width:220.755000px;}
.wa{width:257.790000px;}
.w6{width:279.210000px;}
.w7{width:700.710000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:2.700000px;}
.xe{left:7.740000px;}
.x12{left:12.600000px;}
.x15{left:65.700000px;}
.x1{left:85.319987px;}
.x13{left:95.039987px;}
.x3{left:105.335987px;}
.x4{left:111.635987px;}
.x5{left:128.735987px;}
.x9{left:139.355987px;}
.xc{left:167.069973px;}
.x14{left:176.430000px;}
.xd{left:180.749987px;}
.x1c{left:199.290000px;}
.x17{left:202.170000px;}
.x19{left:208.290000px;}
.x6{left:229.529987px;}
.x1b{left:246.285000px;}
.x7{left:279.389987px;}
.x8{left:295.409987px;}
.xf{left:302.115000px;}
.x18{left:307.515000px;}
.x1e{left:327.854987px;}
.x2{left:430.814987px;}
.x1d{left:446.474987px;}
.x10{left:518.145000px;}
.x1a{left:528.945000px;}
.x16{left:673.710000px;}
.xa{left:794.129973px;}
.xb{left:807.809987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v5{vertical-align:-7.680000pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v4{vertical-align:7.680000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.023040pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls13{letter-spacing:6.899840pt;}
.lsc{letter-spacing:22.880000pt;}
.ls4{letter-spacing:27.360000pt;}
.lsd{letter-spacing:110.560000pt;}
.lse{letter-spacing:419.680000pt;}
.ls0{letter-spacing:794.986667pt;}
.lsf{letter-spacing:1481.685333pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-17.310720pt;}
.ws6{word-spacing:-17.303040pt;}
.ws5{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-1231.626880pt;}
._5{margin-left:-1116.420480pt;}
._4{margin-left:-922.365440pt;}
._5f{margin-left:-854.560000pt;}
._61{margin-left:-819.288747pt;}
._42{margin-left:-796.940373pt;}
._67{margin-left:-761.760000pt;}
._68{margin-left:-727.220907pt;}
._7{margin-left:-719.889920pt;}
._6{margin-left:-699.786667pt;}
._31{margin-left:-536.597333pt;}
._30{margin-left:-531.178667pt;}
._51{margin-left:-446.880000pt;}
._4f{margin-left:-412.742400pt;}
._52{margin-left:-411.420160pt;}
._39{margin-left:-375.219200pt;}
._46{margin-left:-325.299200pt;}
._35{margin-left:-315.357013pt;}
._45{margin-left:-307.041707pt;}
._65{margin-left:-297.760000pt;}
._66{margin-left:-296.524800pt;}
._6d{margin-left:-292.598613pt;}
._6b{margin-left:-284.266667pt;}
._3b{margin-left:-279.193600pt;}
._6c{margin-left:-274.720000pt;}
._6a{margin-left:-258.245973pt;}
._69{margin-left:-240.000000pt;}
._4c{margin-left:-230.669227pt;}
._44{margin-left:-224.211200pt;}
._48{margin-left:-217.097600pt;}
._4a{margin-left:-211.481600pt;}
._47{margin-left:-198.775040pt;}
._49{margin-left:-193.015040pt;}
._3e{margin-left:-188.800000pt;}
._4b{margin-left:-181.015040pt;}
._62{margin-left:-176.000000pt;}
._5a{margin-left:-170.240000pt;}
._37{margin-left:-169.292800pt;}
._64{margin-left:-168.389973pt;}
._33{margin-left:-161.136640pt;}
._2d{margin-left:-159.685120pt;}
._3d{margin-left:-153.584640pt;}
._63{margin-left:-150.400000pt;}
._5e{margin-left:-136.320000pt;}
._2f{margin-left:-129.548800pt;}
._56{margin-left:-125.263360pt;}
._55{margin-left:-107.520000pt;}
._59{margin-left:-72.322560pt;}
._5c{margin-left:-71.040000pt;}
._58{margin-left:-66.666667pt;}
._53{margin-left:-61.954560pt;}
._32{margin-left:-55.144960pt;}
._5b{margin-left:-52.984320pt;}
._54{margin-left:-40.296960pt;}
._5d{margin-left:-37.347840pt;}
._57{margin-left:-34.560000pt;}
._41{margin-left:-19.895253pt;}
._60{margin-left:-17.902080pt;}
._71{margin-left:-10.240000pt;}
._6f{margin-left:-7.200000pt;}
._28{margin-left:-5.885653pt;}
._18{margin-left:-4.717440pt;}
._12{margin-left:-3.818880pt;}
._11{margin-left:-2.396160pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.101653pt;}
._6e{width:2.086613pt;}
._e{width:2.995200pt;}
._f{width:4.118400pt;}
._10{width:5.016960pt;}
._15{width:6.589440pt;}
._1e{width:7.637760pt;}
._70{width:8.840320pt;}
._2a{width:10.857600pt;}
._2b{width:12.055680pt;}
._b{width:13.478400pt;}
._29{width:14.901120pt;}
._20{width:16.248960pt;}
._1f{width:17.372160pt;}
._26{width:20.067840pt;}
._4e{width:21.098667pt;}
._14{width:22.688640pt;}
._27{width:23.886720pt;}
._24{width:26.058240pt;}
._16{width:27.106560pt;}
._73{width:28.379520pt;}
._72{width:29.278080pt;}
._23{width:33.171840pt;}
._21{width:34.369920pt;}
._22{width:35.568000pt;}
._2c{width:36.755413pt;}
._19{width:39.536640pt;}
._a{width:40.510080pt;}
._17{width:41.700907pt;}
._1d{width:46.650240pt;}
._1c{width:47.623680pt;}
._9{width:49.867307pt;}
._8{width:51.181867pt;}
._40{width:52.526933pt;}
._1a{width:54.908587pt;}
._1b{width:56.715307pt;}
._25{width:64.471680pt;}
._13{width:67.766400pt;}
._d{width:70.312320pt;}
._c{width:71.210880pt;}
._2e{width:142.080000pt;}
._34{width:144.000000pt;}
._38{width:152.320000pt;}
._3{width:176.000000pt;}
._3c{width:262.506667pt;}
._36{width:297.706667pt;}
._3f{width:325.844480pt;}
._3a{width:358.400000pt;}
._50{width:391.043840pt;}
._43{width:487.705600pt;}
._74{width:749.546667pt;}
._4d{width:1517.664427pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.680000pt;}
.y62{bottom:7.200000pt;}
.y4f{bottom:10.240000pt;}
.y5e{bottom:11.520000pt;}
.y53{bottom:23.680000pt;}
.y61{bottom:27.040000pt;}
.y4e{bottom:30.240000pt;}
.y5d{bottom:31.546667pt;}
.y3{bottom:34.112000pt;}
.y52{bottom:43.520000pt;}
.y5c{bottom:51.386667pt;}
.y2{bottom:55.712000pt;}
.y51{bottom:63.560000pt;}
.y5a{bottom:78.592000pt;}
.y85{bottom:80.352000pt;}
.y59{bottom:83.232000pt;}
.y58{bottom:93.952000pt;}
.y2a{bottom:98.912000pt;}
.y84{bottom:100.992000pt;}
.y57{bottom:109.312000pt;}
.y56{bottom:113.952000pt;}
.y29{bottom:120.352000pt;}
.y83{bottom:121.632000pt;}
.y55{bottom:125.792000pt;}
.y28{bottom:141.786667pt;}
.y82{bottom:142.106667pt;}
.y81{bottom:162.746667pt;}
.y27{bottom:163.226667pt;}
.y50{bottom:181.466667pt;}
.y80{bottom:183.386667pt;}
.y8b{bottom:184.346667pt;}
.y26{bottom:195.386667pt;}
.y8a{bottom:205.786667pt;}
.y7f{bottom:208.026667pt;}
.y25{bottom:216.826667pt;}
.y89{bottom:227.226667pt;}
.y7e{bottom:229.466667pt;}
.y24{bottom:238.266667pt;}
.y88{bottom:248.706667pt;}
.y7d{bottom:250.946667pt;}
.y23{bottom:259.746667pt;}
.y4d{bottom:261.986667pt;}
.y87{bottom:270.146667pt;}
.y7c{bottom:272.386667pt;}
.y22{bottom:281.346667pt;}
.y86{bottom:291.746667pt;}
.y7b{bottom:293.826667pt;}
.y21{bottom:302.786667pt;}
.y4c{bottom:313.186667pt;}
.y7a{bottom:315.266667pt;}
.y20{bottom:324.226667pt;}
.y4b{bottom:334.626667pt;}
.y79{bottom:336.866667pt;}
.y1f{bottom:345.666667pt;}
.y4a{bottom:356.066667pt;}
.y78{bottom:358.306667pt;}
.y1e{bottom:367.106667pt;}
.y49{bottom:377.506667pt;}
.y77{bottom:379.746667pt;}
.y48{bottom:398.946667pt;}
.y1d{bottom:399.266667pt;}
.y76{bottom:401.186667pt;}
.y47{bottom:420.546667pt;}
.y1c{bottom:420.706667pt;}
.y75{bottom:422.626667pt;}
.y46{bottom:441.986667pt;}
.y1b{bottom:442.146667pt;}
.y74{bottom:444.066667pt;}
.y45{bottom:463.426667pt;}
.y1a{bottom:463.746667pt;}
.y73{bottom:465.666667pt;}
.y44{bottom:484.866667pt;}
.y19{bottom:485.186667pt;}
.y72{bottom:487.106667pt;}
.y43{bottom:506.333333pt;}
.y18{bottom:506.653333pt;}
.y71{bottom:508.573333pt;}
.y42{bottom:527.773333pt;}
.y17{bottom:528.093333pt;}
.y70{bottom:530.013333pt;}
.y40{bottom:549.373333pt;}
.y16{bottom:549.533333pt;}
.y6f{bottom:551.453333pt;}
.y41{bottom:556.093333pt;}
.y3f{bottom:570.813333pt;}
.y15{bottom:570.973333pt;}
.y6e{bottom:572.893333pt;}
.y3e{bottom:592.253333pt;}
.y14{bottom:592.413333pt;}
.y6d{bottom:594.493333pt;}
.y3d{bottom:613.693333pt;}
.y6c{bottom:615.933333pt;}
.y13{bottom:624.573333pt;}
.y3c{bottom:635.133333pt;}
.y6b{bottom:637.373333pt;}
.y12{bottom:646.013333pt;}
.y3b{bottom:656.573333pt;}
.y6a{bottom:658.813333pt;}
.y11{bottom:667.613333pt;}
.y3a{bottom:678.013333pt;}
.y69{bottom:680.253333pt;}
.y10{bottom:689.053333pt;}
.y39{bottom:699.613333pt;}
.y68{bottom:701.693333pt;}
.yf{bottom:710.493333pt;}
.y38{bottom:721.053333pt;}
.y67{bottom:723.133333pt;}
.ye{bottom:731.933333pt;}
.y37{bottom:742.493333pt;}
.y66{bottom:744.733333pt;}
.yd{bottom:753.413333pt;}
.y36{bottom:763.973333pt;}
.y65{bottom:766.213333pt;}
.yc{bottom:774.853333pt;}
.y35{bottom:785.413333pt;}
.y64{bottom:787.653333pt;}
.yb{bottom:796.453333pt;}
.y63{bottom:805.733333pt;}
.y34{bottom:806.853333pt;}
.ya{bottom:817.893333pt;}
.y33{bottom:828.453333pt;}
.y32{bottom:849.893333pt;}
.y60{bottom:866.213333pt;}
.y31{bottom:871.333333pt;}
.y9{bottom:876.773333pt;}
.y2f{bottom:892.773333pt;}
.y30{bottom:899.493333pt;}
.y5f{bottom:910.213333pt;}
.y2e{bottom:914.213333pt;}
.y8{bottom:919.653333pt;}
.y2d{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y2c{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y5b{bottom:970.693333pt;}
.y2b{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h12{height:19.840000pt;}
.h13{height:20.000000pt;}
.hc{height:33.918750pt;}
.h11{height:43.360000pt;}
.h8{height:46.400000pt;}
.h7{height:47.109375pt;}
.hd{height:52.134375pt;}
.h10{height:59.840000pt;}
.hf{height:61.965000pt;}
.hb{height:64.496250pt;}
.h3{height:66.507188pt;}
.h6{height:67.128750pt;}
.he{height:67.712000pt;}
.h9{height:67.837500pt;}
.h5{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h14{height:77.550937pt;}
.ha{height:79.712000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:191.386667pt;}
.w4{width:191.426667pt;}
.w9{width:196.186667pt;}
.w8{width:196.226667pt;}
.wa{width:229.146667pt;}
.w6{width:248.186667pt;}
.w7{width:622.853333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:2.400000pt;}
.xe{left:6.880000pt;}
.x12{left:11.200000pt;}
.x15{left:58.400000pt;}
.x1{left:75.839988pt;}
.x13{left:84.479988pt;}
.x3{left:93.631988pt;}
.x4{left:99.231988pt;}
.x5{left:114.431988pt;}
.x9{left:123.871988pt;}
.xc{left:148.506643pt;}
.x14{left:156.826667pt;}
.xd{left:160.666655pt;}
.x1c{left:177.146667pt;}
.x17{left:179.706667pt;}
.x19{left:185.146667pt;}
.x6{left:204.026655pt;}
.x1b{left:218.920000pt;}
.x7{left:248.346655pt;}
.x8{left:262.586655pt;}
.xf{left:268.546667pt;}
.x18{left:273.346667pt;}
.x1e{left:291.426655pt;}
.x2{left:382.946655pt;}
.x1d{left:396.866655pt;}
.x10{left:460.573333pt;}
.x1a{left:470.173333pt;}
.x16{left:598.853333pt;}
.xa{left:705.893310pt;}
.xb{left:718.053322pt;}
}




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