
    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_d4b90c3776cf721c1954c9d3.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_05841d9f791a484e32154cdd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8279d535d77f951df329ddf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_147f0c593df60540272c3a58.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e9826fb71de443780c65198.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222168;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_a8b743d03db7ad4aaa92bc73.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa84268239f1656298afd6dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_54d1ee3cb5b42b1fa14f672e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfb967e01954d7262b579da7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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;}
.v3{vertical-align:-7.920000px;}
.v4{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.040000px;}
.v2{vertical-align:7.920000px;}
.lsf{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.157800px;}
.ls22{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.028080px;}
.lsa{letter-spacing:-0.018720px;}
.ls21{letter-spacing:-0.017280px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls1e{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.129600px;}
.ls19{letter-spacing:0.147000px;}
.ls1{letter-spacing:0.208080px;}
.ls14{letter-spacing:0.341280px;}
.ls20{letter-spacing:0.341400px;}
.lsd{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378600px;}
.ls0{letter-spacing:0.378720px;}
.ls10{letter-spacing:0.522720px;}
.ls1d{letter-spacing:0.720000px;}
.ls7{letter-spacing:2.700000px;}
.ls8{letter-spacing:3.420000px;}
.ls1c{letter-spacing:3.941280px;}
.ls5{letter-spacing:7.020000px;}
.ls4{letter-spacing:7.740000px;}
.ls1b{letter-spacing:8.261280px;}
.ls6{letter-spacing:12.060000px;}
.ls25{letter-spacing:21.221280px;}
.ls3{letter-spacing:27.180000px;}
.ls13{letter-spacing:48.060000px;}
.ls23{letter-spacing:61.541280px;}
.ls1a{letter-spacing:118.421280px;}
.ls18{letter-spacing:193.301280px;}
.ls24{letter-spacing:673.896000px;}
.ls11{letter-spacing:861.816000px;}
.ls12{letter-spacing:1371.000000px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.wse{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws1{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.376000px;}
.wsd{word-spacing:-16.506480px;}
.ws7{word-spacing:-0.174240px;}
.wsb{word-spacing:-0.084240px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:0.073560px;}
.wsa{word-spacing:34.524960px;}
._1f{margin-left:-2546.428080px;}
._1c{margin-left:-2490.941280px;}
._1b{margin-left:-1621.115280px;}
._25{margin-left:-1566.352800px;}
._22{margin-left:-1500.253200px;}
._24{margin-left:-1180.560000px;}
._29{margin-left:-936.779040px;}
._28{margin-left:-847.228320px;}
._1d{margin-left:-630.815760px;}
._2a{margin-left:-187.506720px;}
._34{margin-left:-127.439760px;}
._38{margin-left:-95.892000px;}
._26{margin-left:-93.364560px;}
._27{margin-left:-80.640000px;}
._3a{margin-left:-75.268800px;}
._23{margin-left:-63.000000px;}
._1e{margin-left:-59.940000px;}
._37{margin-left:-23.322720px;}
._21{margin-left:-21.818160px;}
._32{margin-left:-5.656080px;}
._6{margin-left:-4.200000px;}
._5{margin-left:-3.157440px;}
._36{margin-left:-2.145600px;}
._0{margin-left:-1.095120px;}
._9{width:1.012560px;}
._c{width:2.020800px;}
._2{width:3.900000px;}
._2f{width:5.441280px;}
._3{width:7.130640px;}
._4{width:8.152560px;}
._d{width:9.166080px;}
._e{width:10.193040px;}
._7{width:11.506800px;}
._8{width:12.557040px;}
._18{width:13.639920px;}
._a{width:15.752880px;}
._b{width:17.238000px;}
._f{width:19.290960px;}
._39{width:20.993040px;}
._16{width:22.155120px;}
._19{width:23.599200px;}
._15{width:24.859680px;}
._14{width:25.937040px;}
._1a{width:27.032160px;}
._1{width:28.043040px;}
._30{width:29.472480px;}
._33{width:30.948960px;}
._12{width:32.263920px;}
._17{width:40.872240px;}
._11{width:41.890080px;}
._31{width:42.995040px;}
._2c{width:44.454720px;}
._2e{width:46.332000px;}
._2d{width:47.595600px;}
._3b{width:53.820000px;}
._35{width:68.981520px;}
._10{width:75.452160px;}
._13{width:98.055360px;}
._3c{width:843.240000px;}
._2b{width:974.880000px;}
._20{width:2527.476000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5a{bottom:88.416000px;}
.y59{bottom:105.696000px;}
.y58{bottom:110.196000px;}
.y2f{bottom:110.736000px;}
.y57{bottom:122.976000px;}
.y2e{bottom:134.856000px;}
.y56{bottom:140.256000px;}
.y55{bottom:157.530000px;}
.y2d{bottom:159.150000px;}
.y54{bottom:162.030000px;}
.y53{bottom:176.070000px;}
.y2c{bottom:183.270000px;}
.y52{bottom:202.890000px;}
.y2b{bottom:207.390000px;}
.y51{bottom:227.010000px;}
.y2a{bottom:231.510000px;}
.y50{bottom:252.570000px;}
.y29{bottom:255.630000px;}
.y4f{bottom:276.735000px;}
.y28{bottom:279.795000px;}
.y4e{bottom:302.475000px;}
.y27{bottom:303.915000px;}
.y74{bottom:311.655000px;}
.y4d{bottom:326.595000px;}
.y26{bottom:328.215000px;}
.y73{bottom:347.835000px;}
.y4c{bottom:350.715000px;}
.y25{bottom:352.335000px;}
.y72{bottom:371.955000px;}
.y4b{bottom:375.015000px;}
.y24{bottom:376.455000px;}
.y71{bottom:396.075000px;}
.y4a{bottom:399.135000px;}
.y23{bottom:400.575000px;}
.y70{bottom:420.195000px;}
.y49{bottom:423.255000px;}
.y22{bottom:424.695000px;}
.y6f{bottom:444.315000px;}
.y48{bottom:447.375000px;}
.y21{bottom:448.815000px;}
.y6e{bottom:468.435000px;}
.y47{bottom:471.495000px;}
.y20{bottom:473.115000px;}
.y6d{bottom:492.735000px;}
.y46{bottom:495.615000px;}
.y1f{bottom:497.235000px;}
.y6c{bottom:516.855000px;}
.y45{bottom:519.915000px;}
.y1e{bottom:521.355000px;}
.y6b{bottom:540.975000px;}
.y44{bottom:544.035000px;}
.y1d{bottom:545.475000px;}
.y43{bottom:568.185000px;}
.y1c{bottom:569.625000px;}
.y6a{bottom:589.245000px;}
.y42{bottom:592.305000px;}
.y1b{bottom:593.745000px;}
.y69{bottom:613.365000px;}
.y41{bottom:616.425000px;}
.y1a{bottom:618.045000px;}
.y68{bottom:637.665000px;}
.y40{bottom:640.545000px;}
.y19{bottom:642.165000px;}
.y67{bottom:661.785000px;}
.y3f{bottom:664.665000px;}
.y18{bottom:666.285000px;}
.y66{bottom:685.905000px;}
.y17{bottom:690.405000px;}
.y65{bottom:710.025000px;}
.y3e{bottom:713.085000px;}
.y16{bottom:714.525000px;}
.y64{bottom:734.145000px;}
.y15{bottom:738.645000px;}
.y63{bottom:758.265000px;}
.y3d{bottom:761.325000px;}
.y14{bottom:762.765000px;}
.y62{bottom:782.385000px;}
.y3c{bottom:785.445000px;}
.y13{bottom:787.065000px;}
.y61{bottom:806.685000px;}
.y3a{bottom:809.565000px;}
.y12{bottom:811.185000px;}
.y3b{bottom:817.125000px;}
.y60{bottom:830.805000px;}
.y39{bottom:833.865000px;}
.y11{bottom:835.305000px;}
.y5f{bottom:854.970000px;}
.y38{bottom:858.030000px;}
.y10{bottom:859.470000px;}
.y5e{bottom:879.090000px;}
.y37{bottom:882.150000px;}
.yf{bottom:883.590000px;}
.y5d{bottom:904.830000px;}
.y36{bottom:906.270000px;}
.ye{bottom:907.710000px;}
.y5c{bottom:928.950000px;}
.y35{bottom:930.390000px;}
.yd{bottom:932.010000px;}
.y5b{bottom:953.070000px;}
.y34{bottom:954.510000px;}
.yc{bottom:956.130000px;}
.y33{bottom:978.630000px;}
.yb{bottom:980.250000px;}
.y32{bottom:1002.750000px;}
.ya{bottom:1004.370000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y31{bottom:1060.170000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y30{bottom:1156.860000px;}
.y1{bottom:1190.160000px;}
.h9{height:40.550625px;}
.hb{height:52.961133px;}
.h6{height:52.998047px;}
.ha{height:62.327813px;}
.h5{height:78.604805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h4{height:85.103789px;}
.h8{height:86.524805px;}
.h7{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:75.779987px;}
.x1{left:85.319987px;}
.x11{left:94.139987px;}
.x24{left:96.119987px;}
.x3{left:107.135987px;}
.x1c{left:112.355987px;}
.x22{left:127.835987px;}
.x6{left:134.315987px;}
.xd{left:139.355987px;}
.x1a{left:149.975987px;}
.x8{left:151.949987px;}
.x25{left:160.589987px;}
.x1b{left:166.349987px;}
.x21{left:181.829987px;}
.x20{left:193.349987px;}
.x19{left:203.969987px;}
.x4{left:214.409987px;}
.x1f{left:220.349987px;}
.x17{left:255.629973px;}
.x18{left:269.309987px;}
.xa{left:277.049987px;}
.x9{left:278.129987px;}
.xe{left:283.349987px;}
.x1d{left:298.334973px;}
.x23{left:301.394987px;}
.x1e{left:312.014987px;}
.xb{left:331.094987px;}
.x7{left:333.614987px;}
.xf{left:389.234987px;}
.x10{left:429.374987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xc{left:473.474987px;}
.x12{left:600.944987px;}
.x14{left:615.344987px;}
.x15{left:804.029973px;}
.x16{left:807.809987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v3{vertical-align:-7.040000pt;}
.v4{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.480000pt;}
.v2{vertical-align:7.040000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.140267pt;}
.ls22{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.024960pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls21{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls1e{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.115200pt;}
.ls19{letter-spacing:0.130667pt;}
.ls1{letter-spacing:0.184960pt;}
.ls14{letter-spacing:0.303360pt;}
.ls20{letter-spacing:0.303467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336533pt;}
.ls0{letter-spacing:0.336640pt;}
.ls10{letter-spacing:0.464640pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls7{letter-spacing:2.400000pt;}
.ls8{letter-spacing:3.040000pt;}
.ls1c{letter-spacing:3.503360pt;}
.ls5{letter-spacing:6.240000pt;}
.ls4{letter-spacing:6.880000pt;}
.ls1b{letter-spacing:7.343360pt;}
.ls6{letter-spacing:10.720000pt;}
.ls25{letter-spacing:18.863360pt;}
.ls3{letter-spacing:24.160000pt;}
.ls13{letter-spacing:42.720000pt;}
.ls23{letter-spacing:54.703360pt;}
.ls1a{letter-spacing:105.263360pt;}
.ls18{letter-spacing:171.823360pt;}
.ls24{letter-spacing:599.018667pt;}
.ls11{letter-spacing:766.058667pt;}
.ls12{letter-spacing:1218.666667pt;}
.ws8{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws1{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.112000pt;}
.wsd{word-spacing:-14.672427pt;}
.ws7{word-spacing:-0.154880pt;}
.wsb{word-spacing:-0.074880pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:0.065387pt;}
.wsa{word-spacing:30.688853pt;}
._1f{margin-left:-2263.491627pt;}
._1c{margin-left:-2214.170027pt;}
._1b{margin-left:-1440.991360pt;}
._25{margin-left:-1392.313600pt;}
._22{margin-left:-1333.558400pt;}
._24{margin-left:-1049.386667pt;}
._29{margin-left:-832.692480pt;}
._28{margin-left:-753.091840pt;}
._1d{margin-left:-560.725120pt;}
._2a{margin-left:-166.672640pt;}
._34{margin-left:-113.279787pt;}
._38{margin-left:-85.237333pt;}
._26{margin-left:-82.990720pt;}
._27{margin-left:-71.680000pt;}
._3a{margin-left:-66.905600pt;}
._23{margin-left:-56.000000pt;}
._1e{margin-left:-53.280000pt;}
._37{margin-left:-20.731307pt;}
._21{margin-left:-19.393920pt;}
._32{margin-left:-5.027627pt;}
._6{margin-left:-3.733333pt;}
._5{margin-left:-2.806613pt;}
._36{margin-left:-1.907200pt;}
._0{margin-left:-0.973440pt;}
._9{width:0.900053pt;}
._c{width:1.796267pt;}
._2{width:3.466667pt;}
._2f{width:4.836693pt;}
._3{width:6.338347pt;}
._4{width:7.246720pt;}
._d{width:8.147627pt;}
._e{width:9.060480pt;}
._7{width:10.228267pt;}
._8{width:11.161813pt;}
._18{width:12.124373pt;}
._a{width:14.002560pt;}
._b{width:15.322667pt;}
._f{width:17.147520pt;}
._39{width:18.660480pt;}
._16{width:19.693440pt;}
._19{width:20.977067pt;}
._15{width:22.097493pt;}
._14{width:23.055147pt;}
._1a{width:24.028587pt;}
._1{width:24.927147pt;}
._30{width:26.197760pt;}
._33{width:27.510187pt;}
._12{width:28.679040pt;}
._17{width:36.330880pt;}
._11{width:37.235627pt;}
._31{width:38.217813pt;}
._2c{width:39.515307pt;}
._2e{width:41.184000pt;}
._2d{width:42.307200pt;}
._3b{width:47.840000pt;}
._35{width:61.316907pt;}
._10{width:67.068587pt;}
._13{width:87.160320pt;}
._3c{width:749.546667pt;}
._2b{width:866.560000pt;}
._20{width:2246.645333pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5a{bottom:78.592000pt;}
.y59{bottom:93.952000pt;}
.y58{bottom:97.952000pt;}
.y2f{bottom:98.432000pt;}
.y57{bottom:109.312000pt;}
.y2e{bottom:119.872000pt;}
.y56{bottom:124.672000pt;}
.y55{bottom:140.026667pt;}
.y2d{bottom:141.466667pt;}
.y54{bottom:144.026667pt;}
.y53{bottom:156.506667pt;}
.y2c{bottom:162.906667pt;}
.y52{bottom:180.346667pt;}
.y2b{bottom:184.346667pt;}
.y51{bottom:201.786667pt;}
.y2a{bottom:205.786667pt;}
.y50{bottom:224.506667pt;}
.y29{bottom:227.226667pt;}
.y4f{bottom:245.986667pt;}
.y28{bottom:248.706667pt;}
.y4e{bottom:268.866667pt;}
.y27{bottom:270.146667pt;}
.y74{bottom:277.026667pt;}
.y4d{bottom:290.306667pt;}
.y26{bottom:291.746667pt;}
.y73{bottom:309.186667pt;}
.y4c{bottom:311.746667pt;}
.y25{bottom:313.186667pt;}
.y72{bottom:330.626667pt;}
.y4b{bottom:333.346667pt;}
.y24{bottom:334.626667pt;}
.y71{bottom:352.066667pt;}
.y4a{bottom:354.786667pt;}
.y23{bottom:356.066667pt;}
.y70{bottom:373.506667pt;}
.y49{bottom:376.226667pt;}
.y22{bottom:377.506667pt;}
.y6f{bottom:394.946667pt;}
.y48{bottom:397.666667pt;}
.y21{bottom:398.946667pt;}
.y6e{bottom:416.386667pt;}
.y47{bottom:419.106667pt;}
.y20{bottom:420.546667pt;}
.y6d{bottom:437.986667pt;}
.y46{bottom:440.546667pt;}
.y1f{bottom:441.986667pt;}
.y6c{bottom:459.426667pt;}
.y45{bottom:462.146667pt;}
.y1e{bottom:463.426667pt;}
.y6b{bottom:480.866667pt;}
.y44{bottom:483.586667pt;}
.y1d{bottom:484.866667pt;}
.y43{bottom:505.053333pt;}
.y1c{bottom:506.333333pt;}
.y6a{bottom:523.773333pt;}
.y42{bottom:526.493333pt;}
.y1b{bottom:527.773333pt;}
.y69{bottom:545.213333pt;}
.y41{bottom:547.933333pt;}
.y1a{bottom:549.373333pt;}
.y68{bottom:566.813333pt;}
.y40{bottom:569.373333pt;}
.y19{bottom:570.813333pt;}
.y67{bottom:588.253333pt;}
.y3f{bottom:590.813333pt;}
.y18{bottom:592.253333pt;}
.y66{bottom:609.693333pt;}
.y17{bottom:613.693333pt;}
.y65{bottom:631.133333pt;}
.y3e{bottom:633.853333pt;}
.y16{bottom:635.133333pt;}
.y64{bottom:652.573333pt;}
.y15{bottom:656.573333pt;}
.y63{bottom:674.013333pt;}
.y3d{bottom:676.733333pt;}
.y14{bottom:678.013333pt;}
.y62{bottom:695.453333pt;}
.y3c{bottom:698.173333pt;}
.y13{bottom:699.613333pt;}
.y61{bottom:717.053333pt;}
.y3a{bottom:719.613333pt;}
.y12{bottom:721.053333pt;}
.y3b{bottom:726.333333pt;}
.y60{bottom:738.493333pt;}
.y39{bottom:741.213333pt;}
.y11{bottom:742.493333pt;}
.y5f{bottom:759.973333pt;}
.y38{bottom:762.693333pt;}
.y10{bottom:763.973333pt;}
.y5e{bottom:781.413333pt;}
.y37{bottom:784.133333pt;}
.yf{bottom:785.413333pt;}
.y5d{bottom:804.293333pt;}
.y36{bottom:805.573333pt;}
.ye{bottom:806.853333pt;}
.y5c{bottom:825.733333pt;}
.y35{bottom:827.013333pt;}
.yd{bottom:828.453333pt;}
.y5b{bottom:847.173333pt;}
.y34{bottom:848.453333pt;}
.yc{bottom:849.893333pt;}
.y33{bottom:869.893333pt;}
.yb{bottom:871.333333pt;}
.y32{bottom:891.333333pt;}
.ya{bottom:892.773333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y31{bottom:942.373333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y30{bottom:1028.320000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:36.045000pt;}
.hb{height:47.076563pt;}
.h6{height:47.109375pt;}
.ha{height:55.402500pt;}
.h5{height:69.870937pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h4{height:75.647813pt;}
.h8{height:76.910938pt;}
.h7{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:67.359988pt;}
.x1{left:75.839988pt;}
.x11{left:83.679988pt;}
.x24{left:85.439988pt;}
.x3{left:95.231988pt;}
.x1c{left:99.871988pt;}
.x22{left:113.631988pt;}
.x6{left:119.391988pt;}
.xd{left:123.871988pt;}
.x1a{left:133.311988pt;}
.x8{left:135.066655pt;}
.x25{left:142.746655pt;}
.x1b{left:147.866655pt;}
.x21{left:161.626655pt;}
.x20{left:171.866655pt;}
.x19{left:181.306655pt;}
.x4{left:190.586655pt;}
.x1f{left:195.866655pt;}
.x17{left:227.226643pt;}
.x18{left:239.386655pt;}
.xa{left:246.266655pt;}
.x9{left:247.226655pt;}
.xe{left:251.866655pt;}
.x1d{left:265.186643pt;}
.x23{left:267.906655pt;}
.x1e{left:277.346655pt;}
.xb{left:294.306655pt;}
.x7{left:296.546655pt;}
.xf{left:345.986655pt;}
.x10{left:381.666655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xc{left:420.866655pt;}
.x12{left:534.173322pt;}
.x14{left:546.973322pt;}
.x15{left:714.693310pt;}
.x16{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; }
  