
    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_388c152a9d6d65d93c73770e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_63bf606b9339a855b4ca3543.woff')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_d7554512164d5b63c3fb1d17.woff')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_de7b3308fc87cd448e42fc1e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95489900aac72b0464806f5e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_899999181535306a167b3d4a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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(0.367650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-30.420000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v1{vertical-align:30.420000px;}
.lsf{letter-spacing:-2.880000px;}
.lsd{letter-spacing:-1.908000px;}
.ls6{letter-spacing:-1.902000px;}
.ls8{letter-spacing:-1.476000px;}
.ls16{letter-spacing:-1.458000px;}
.lsa{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.422000px;}
.lsc{letter-spacing:-0.978000px;}
.lsb{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.954000px;}
.lse{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.507000px;}
.ls1f{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.463800px;}
.ls1d{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.466800px;}
.ls1a{letter-spacing:0.486600px;}
.ls11{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.434000px;}
.ls18{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.896000px;}
.ls3{letter-spacing:2.160000px;}
.ls15{letter-spacing:5.040000px;}
.ls1c{letter-spacing:9.360000px;}
.ls2{letter-spacing:10.080000px;}
.ls1b{letter-spacing:16.306560px;}
.ls19{letter-spacing:46.558560px;}
.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;}
}
.ws2{word-spacing:-20.874000px;}
.ws4{word-spacing:-18.456000px;}
.ws3{word-spacing:-17.964000px;}
.wsa{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.627000px;}
.ws17{word-spacing:-15.606600px;}
.wse{word-spacing:-15.586800px;}
.ws14{word-spacing:-15.140160px;}
.ws13{word-spacing:-15.120000px;}
.ws18{word-spacing:-15.099840px;}
.ws16{word-spacing:-14.653200px;}
.ws1a{word-spacing:-14.633400px;}
.ws19{word-spacing:-14.613000px;}
.ws0{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.400000px;}
.wsc{word-spacing:-14.184000px;}
.ws10{word-spacing:-14.166000px;}
.ws6{word-spacing:-14.148000px;}
.ws12{word-spacing:-13.698000px;}
.ws5{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.662000px;}
.ws9{word-spacing:-13.422000px;}
.wsb{word-spacing:-13.212000px;}
.ws1{word-spacing:-13.068240px;}
.ws8{word-spacing:-12.960000px;}
.wsd{word-spacing:-12.240000px;}
.ws11{word-spacing:0.000000px;}
._10{margin-left:-3.793920px;}
._1{margin-left:-2.652000px;}
._0{margin-left:-1.080000px;}
._2{width:1.320000px;}
._3{width:2.328000px;}
._9{width:3.559200px;}
._f{width:5.260800px;}
._c{width:7.202400px;}
._a{width:9.132000px;}
._b{width:10.159200px;}
._d{width:11.522400px;}
._11{width:12.947520px;}
._12{width:13.986240px;}
._4{width:17.069280px;}
._5{width:18.423360px;}
._6{width:20.171040px;}
._16{width:21.282720px;}
._e{width:22.394400px;}
._15{width:23.580960px;}
._14{width:25.191840px;}
._13{width:26.606880px;}
._7{width:30.737760px;}
._8{width:31.939680px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,175,239);}
.fc5{color:rgb(32,32,32);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(126,126,126);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y2{bottom:28.440000px;}
.y7{bottom:57.240000px;}
.y6{bottom:76.716000px;}
.y58{bottom:113.436000px;}
.y75{bottom:113.796000px;}
.y64{bottom:114.516000px;}
.y2f{bottom:121.356000px;}
.y3f{bottom:126.756000px;}
.y4b{bottom:133.596000px;}
.y57{bottom:139.356000px;}
.y63{bottom:142.956000px;}
.y2e{bottom:147.276000px;}
.y3e{bottom:152.670000px;}
.y4a{bottom:159.510000px;}
.y56{bottom:165.270000px;}
.y62{bottom:171.390000px;}
.y2d{bottom:173.190000px;}
.y3d{bottom:178.590000px;}
.y49{bottom:185.430000px;}
.y74{bottom:191.190000px;}
.y2c{bottom:198.795000px;}
.y8c{bottom:199.155000px;}
.y3c{bottom:205.635000px;}
.y48{bottom:211.395000px;}
.y73{bottom:217.155000px;}
.ya5{bottom:221.115000px;}
.y61{bottom:224.355000px;}
.y2b{bottom:224.715000px;}
.y8b{bottom:225.075000px;}
.y3b{bottom:234.075000px;}
.y47{bottom:237.315000px;}
.y72{bottom:243.075000px;}
.ya4{bottom:249.555000px;}
.y60{bottom:250.275000px;}
.y2a{bottom:250.635000px;}
.y8a{bottom:250.995000px;}
.y46{bottom:263.235000px;}
.y71{bottom:269.715000px;}
.y5f{bottom:276.195000px;}
.y29{bottom:276.555000px;}
.y89{bottom:276.915000px;}
.ya3{bottom:277.995000px;}
.y45{bottom:289.155000px;}
.y70{bottom:298.515000px;}
.y5e{bottom:301.755000px;}
.y28{bottom:302.475000px;}
.ya2{bottom:306.435000px;}
.y44{bottom:314.715000px;}
.y6f{bottom:325.905000px;}
.y27{bottom:328.425000px;}
.y5d{bottom:329.145000px;}
.ya1{bottom:334.905000px;}
.y43{bottom:341.745000px;}
.y6e{bottom:351.825000px;}
.y26{bottom:354.345000px;}
.y5c{bottom:356.505000px;}
.ya0{bottom:363.345000px;}
.y42{bottom:368.745000px;}
.y6d{bottom:377.745000px;}
.y25{bottom:380.265000px;}
.y5b{bottom:382.425000px;}
.y9f{bottom:390.705000px;}
.y41{bottom:395.745000px;}
.y6c{bottom:403.665000px;}
.y24{bottom:405.825000px;}
.y88{bottom:406.185000px;}
.y5a{bottom:409.065000px;}
.y9e{bottom:416.625000px;}
.y40{bottom:420.225000px;}
.y6b{bottom:429.225000px;}
.y87{bottom:432.105000px;}
.y23{bottom:432.825000px;}
.y59{bottom:436.785000px;}
.y9d{bottom:442.545000px;}
.y6a{bottom:455.190000px;}
.y86{bottom:458.070000px;}
.y22{bottom:460.230000px;}
.y9c{bottom:468.150000px;}
.y69{bottom:481.110000px;}
.y85{bottom:484.710000px;}
.y21{bottom:486.150000px;}
.y9b{bottom:494.070000px;}
.y68{bottom:507.030000px;}
.y20{bottom:512.070000px;}
.y84{bottom:513.510000px;}
.y9a{bottom:519.990000px;}
.y67{bottom:532.590000px;}
.y1f{bottom:537.990000px;}
.y83{bottom:540.870000px;}
.y99{bottom:545.910000px;}
.y66{bottom:559.590000px;}
.y1e{bottom:563.910000px;}
.y82{bottom:566.790000px;}
.y98{bottom:571.830000px;}
.y65{bottom:588.420000px;}
.y1d{bottom:589.860000px;}
.y81{bottom:592.380000px;}
.y97{bottom:597.780000px;}
.y1c{bottom:615.780000px;}
.y80{bottom:618.300000px;}
.y96{bottom:623.700000px;}
.y1b{bottom:641.340000px;}
.y7f{bottom:644.220000px;}
.y95{bottom:649.260000px;}
.y1a{bottom:667.260000px;}
.y7e{bottom:670.140000px;}
.y94{bottom:675.180000px;}
.y19{bottom:693.900000px;}
.y7d{bottom:696.060000px;}
.y93{bottom:701.130000px;}
.y18{bottom:713.010000px;}
.y7c{bottom:722.010000px;}
.y92{bottom:727.050000px;}
.y17{bottom:742.170000px;}
.y7b{bottom:747.930000px;}
.y91{bottom:752.970000px;}
.y16{bottom:767.010000px;}
.y7a{bottom:773.490000px;}
.y90{bottom:778.890000px;}
.y15{bottom:791.850000px;}
.y79{bottom:799.410000px;}
.y8f{bottom:804.810000px;}
.y14{bottom:816.330000px;}
.y78{bottom:826.095000px;}
.y8e{bottom:830.775000px;}
.y13{bottom:840.855000px;}
.y55{bottom:852.015000px;}
.y77{bottom:854.895000px;}
.y8d{bottom:856.335000px;}
.y12{bottom:865.335000px;}
.y54{bottom:877.935000px;}
.y3a{bottom:880.815000px;}
.y76{bottom:882.255000px;}
.y11{bottom:890.175000px;}
.y53{bottom:903.855000px;}
.y39{bottom:908.175000px;}
.y10{bottom:914.655000px;}
.y52{bottom:929.775000px;}
.y38{bottom:934.095000px;}
.yf{bottom:939.135000px;}
.y51{bottom:955.365000px;}
.y37{bottom:960.045000px;}
.ye{bottom:967.605000px;}
.y50{bottom:981.285000px;}
.y36{bottom:985.965000px;}
.yd{bottom:998.925000px;}
.y4f{bottom:1007.205000px;}
.y35{bottom:1011.885000px;}
.yc{bottom:1019.445000px;}
.y4e{bottom:1033.125000px;}
.y34{bottom:1037.805000px;}
.yb{bottom:1050.765000px;}
.y4d{bottom:1059.045000px;}
.y33{bottom:1063.365000px;}
.ya{bottom:1072.005000px;}
.y4c{bottom:1085.010000px;}
.y32{bottom:1089.330000px;}
.y9{bottom:1103.370000px;}
.y31{bottom:1115.250000px;}
.y8{bottom:1136.850000px;}
.y30{bottom:1141.170000px;}
.y1{bottom:1165.290000px;}
.y5{bottom:1192.650000px;}
.y4{bottom:1208.880000px;}
.h8{height:38.158594px;}
.h10{height:42.229688px;}
.h2{height:45.756000px;}
.h5{height:53.302500px;}
.hb{height:56.531250px;}
.h3{height:57.867188px;}
.h4{height:57.937500px;}
.ha{height:58.050000px;}
.h9{height:59.357813px;}
.he{height:60.952500px;}
.h11{height:62.163910px;}
.hd{height:65.010937px;}
.hc{height:66.757500px;}
.h7{height:72.506250px;}
.hf{height:78.077813px;}
.h6{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:440.820000px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1{left:106.596000px;}
.x3{left:108.035987px;}
.x4{left:119.195987px;}
.x9{left:135.035987px;}
.xa{left:162.074987px;}
.x7{left:241.664987px;}
.x8{left:252.824987px;}
.x5{left:304.304987px;}
.x6{left:785.444987px;}
@media print{
.v2{vertical-align:-27.040000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v1{vertical-align:27.040000pt;}
.lsf{letter-spacing:-2.560000pt;}
.lsd{letter-spacing:-1.696000pt;}
.ls6{letter-spacing:-1.690667pt;}
.ls8{letter-spacing:-1.312000pt;}
.ls16{letter-spacing:-1.296000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.264000pt;}
.lsc{letter-spacing:-0.869333pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.848000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.450667pt;}
.ls1f{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1d{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.414933pt;}
.ls1a{letter-spacing:0.432533pt;}
.ls11{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.274667pt;}
.ls18{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.685333pt;}
.ls3{letter-spacing:1.920000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls2{letter-spacing:8.960000pt;}
.ls1b{letter-spacing:14.494720pt;}
.ls19{letter-spacing:41.385387pt;}
.ws2{word-spacing:-18.554667pt;}
.ws4{word-spacing:-16.405333pt;}
.ws3{word-spacing:-15.968000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.890667pt;}
.ws17{word-spacing:-13.872533pt;}
.wse{word-spacing:-13.854933pt;}
.ws14{word-spacing:-13.457920pt;}
.ws13{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.422080pt;}
.ws16{word-spacing:-13.025067pt;}
.ws1a{word-spacing:-13.007467pt;}
.ws19{word-spacing:-12.989333pt;}
.ws0{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.800000pt;}
.wsc{word-spacing:-12.608000pt;}
.ws10{word-spacing:-12.592000pt;}
.ws6{word-spacing:-12.576000pt;}
.ws12{word-spacing:-12.176000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws15{word-spacing:-12.144000pt;}
.ws9{word-spacing:-11.930667pt;}
.wsb{word-spacing:-11.744000pt;}
.ws1{word-spacing:-11.616213pt;}
.ws8{word-spacing:-11.520000pt;}
.wsd{word-spacing:-10.880000pt;}
.ws11{word-spacing:0.000000pt;}
._10{margin-left:-3.372373pt;}
._1{margin-left:-2.357333pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.173333pt;}
._3{width:2.069333pt;}
._9{width:3.163733pt;}
._f{width:4.676267pt;}
._c{width:6.402133pt;}
._a{width:8.117333pt;}
._b{width:9.030400pt;}
._d{width:10.242133pt;}
._11{width:11.508907pt;}
._12{width:12.432213pt;}
._4{width:15.172693pt;}
._5{width:16.376320pt;}
._6{width:17.929813pt;}
._16{width:18.917973pt;}
._e{width:19.906133pt;}
._15{width:20.960853pt;}
._14{width:22.392747pt;}
._13{width:23.650560pt;}
._7{width:27.322453pt;}
._8{width:28.390827pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y2{bottom:25.280000pt;}
.y7{bottom:50.880000pt;}
.y6{bottom:68.192000pt;}
.y58{bottom:100.832000pt;}
.y75{bottom:101.152000pt;}
.y64{bottom:101.792000pt;}
.y2f{bottom:107.872000pt;}
.y3f{bottom:112.672000pt;}
.y4b{bottom:118.752000pt;}
.y57{bottom:123.872000pt;}
.y63{bottom:127.072000pt;}
.y2e{bottom:130.912000pt;}
.y3e{bottom:135.706667pt;}
.y4a{bottom:141.786667pt;}
.y56{bottom:146.906667pt;}
.y62{bottom:152.346667pt;}
.y2d{bottom:153.946667pt;}
.y3d{bottom:158.746667pt;}
.y49{bottom:164.826667pt;}
.y74{bottom:169.946667pt;}
.y2c{bottom:176.706667pt;}
.y8c{bottom:177.026667pt;}
.y3c{bottom:182.786667pt;}
.y48{bottom:187.906667pt;}
.y73{bottom:193.026667pt;}
.ya5{bottom:196.546667pt;}
.y61{bottom:199.426667pt;}
.y2b{bottom:199.746667pt;}
.y8b{bottom:200.066667pt;}
.y3b{bottom:208.066667pt;}
.y47{bottom:210.946667pt;}
.y72{bottom:216.066667pt;}
.ya4{bottom:221.826667pt;}
.y60{bottom:222.466667pt;}
.y2a{bottom:222.786667pt;}
.y8a{bottom:223.106667pt;}
.y46{bottom:233.986667pt;}
.y71{bottom:239.746667pt;}
.y5f{bottom:245.506667pt;}
.y29{bottom:245.826667pt;}
.y89{bottom:246.146667pt;}
.ya3{bottom:247.106667pt;}
.y45{bottom:257.026667pt;}
.y70{bottom:265.346667pt;}
.y5e{bottom:268.226667pt;}
.y28{bottom:268.866667pt;}
.ya2{bottom:272.386667pt;}
.y44{bottom:279.746667pt;}
.y6f{bottom:289.693333pt;}
.y27{bottom:291.933333pt;}
.y5d{bottom:292.573333pt;}
.ya1{bottom:297.693333pt;}
.y43{bottom:303.773333pt;}
.y6e{bottom:312.733333pt;}
.y26{bottom:314.973333pt;}
.y5c{bottom:316.893333pt;}
.ya0{bottom:322.973333pt;}
.y42{bottom:327.773333pt;}
.y6d{bottom:335.773333pt;}
.y25{bottom:338.013333pt;}
.y5b{bottom:339.933333pt;}
.y9f{bottom:347.293333pt;}
.y41{bottom:351.773333pt;}
.y6c{bottom:358.813333pt;}
.y24{bottom:360.733333pt;}
.y88{bottom:361.053333pt;}
.y5a{bottom:363.613333pt;}
.y9e{bottom:370.333333pt;}
.y40{bottom:373.533333pt;}
.y6b{bottom:381.533333pt;}
.y87{bottom:384.093333pt;}
.y23{bottom:384.733333pt;}
.y59{bottom:388.253333pt;}
.y9d{bottom:393.373333pt;}
.y6a{bottom:404.613333pt;}
.y86{bottom:407.173333pt;}
.y22{bottom:409.093333pt;}
.y9c{bottom:416.133333pt;}
.y69{bottom:427.653333pt;}
.y85{bottom:430.853333pt;}
.y21{bottom:432.133333pt;}
.y9b{bottom:439.173333pt;}
.y68{bottom:450.693333pt;}
.y20{bottom:455.173333pt;}
.y84{bottom:456.453333pt;}
.y9a{bottom:462.213333pt;}
.y67{bottom:473.413333pt;}
.y1f{bottom:478.213333pt;}
.y83{bottom:480.773333pt;}
.y99{bottom:485.253333pt;}
.y66{bottom:497.413333pt;}
.y1e{bottom:501.253333pt;}
.y82{bottom:503.813333pt;}
.y98{bottom:508.293333pt;}
.y65{bottom:523.040000pt;}
.y1d{bottom:524.320000pt;}
.y81{bottom:526.560000pt;}
.y97{bottom:531.360000pt;}
.y1c{bottom:547.360000pt;}
.y80{bottom:549.600000pt;}
.y96{bottom:554.400000pt;}
.y1b{bottom:570.080000pt;}
.y7f{bottom:572.640000pt;}
.y95{bottom:577.120000pt;}
.y1a{bottom:593.120000pt;}
.y7e{bottom:595.680000pt;}
.y94{bottom:600.160000pt;}
.y19{bottom:616.800000pt;}
.y7d{bottom:618.720000pt;}
.y93{bottom:623.226667pt;}
.y18{bottom:633.786667pt;}
.y7c{bottom:641.786667pt;}
.y92{bottom:646.266667pt;}
.y17{bottom:659.706667pt;}
.y7b{bottom:664.826667pt;}
.y91{bottom:669.306667pt;}
.y16{bottom:681.786667pt;}
.y7a{bottom:687.546667pt;}
.y90{bottom:692.346667pt;}
.y15{bottom:703.866667pt;}
.y79{bottom:710.586667pt;}
.y8f{bottom:715.386667pt;}
.y14{bottom:725.626667pt;}
.y78{bottom:734.306667pt;}
.y8e{bottom:738.466667pt;}
.y13{bottom:747.426667pt;}
.y55{bottom:757.346667pt;}
.y77{bottom:759.906667pt;}
.y8d{bottom:761.186667pt;}
.y12{bottom:769.186667pt;}
.y54{bottom:780.386667pt;}
.y3a{bottom:782.946667pt;}
.y76{bottom:784.226667pt;}
.y11{bottom:791.266667pt;}
.y53{bottom:803.426667pt;}
.y39{bottom:807.266667pt;}
.y10{bottom:813.026667pt;}
.y52{bottom:826.466667pt;}
.y38{bottom:830.306667pt;}
.yf{bottom:834.786667pt;}
.y51{bottom:849.213333pt;}
.y37{bottom:853.373333pt;}
.ye{bottom:860.093333pt;}
.y50{bottom:872.253333pt;}
.y36{bottom:876.413333pt;}
.yd{bottom:887.933333pt;}
.y4f{bottom:895.293333pt;}
.y35{bottom:899.453333pt;}
.yc{bottom:906.173333pt;}
.y4e{bottom:918.333333pt;}
.y34{bottom:922.493333pt;}
.yb{bottom:934.013333pt;}
.y4d{bottom:941.373333pt;}
.y33{bottom:945.213333pt;}
.ya{bottom:952.893333pt;}
.y4c{bottom:964.453333pt;}
.y32{bottom:968.293333pt;}
.y9{bottom:980.773333pt;}
.y31{bottom:991.333333pt;}
.y8{bottom:1010.533333pt;}
.y30{bottom:1014.373333pt;}
.y1{bottom:1035.813333pt;}
.y5{bottom:1060.133333pt;}
.y4{bottom:1074.560000pt;}
.h8{height:33.918750pt;}
.h10{height:37.537500pt;}
.h2{height:40.672000pt;}
.h5{height:47.380000pt;}
.hb{height:50.250000pt;}
.h3{height:51.437500pt;}
.h4{height:51.500000pt;}
.ha{height:51.600000pt;}
.h9{height:52.762500pt;}
.he{height:54.180000pt;}
.h11{height:55.256809pt;}
.hd{height:57.787500pt;}
.hc{height:59.340000pt;}
.h7{height:64.450000pt;}
.hf{height:69.402500pt;}
.h6{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:391.840000pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1{left:94.752000pt;}
.x3{left:96.031988pt;}
.x4{left:105.951988pt;}
.x9{left:120.031988pt;}
.xa{left:144.066655pt;}
.x7{left:214.813322pt;}
.x8{left:224.733322pt;}
.x5{left:270.493322pt;}
.x6{left:698.173322pt;}
}




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