
    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_2fb2d4e42361014dfc18a567.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_f36f4f4338a6a417a074ab37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_b06dbf45cc6a2f15566cc98e.woff2')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_fe193a97988ae08480de3eb9.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_80a56d5233e0feca12538e4f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ef002ac3dfabecd5af4ac8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_b16ac5b455c2f4729c242a9f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8151e09ba6b125d4140dd876.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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);}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.235920px;}
.ls15{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.828000px;}
.ls6{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls5{letter-spacing:3.144000px;}
.ls16{letter-spacing:5.220000px;}
.ls11{letter-spacing:46.026720px;}
.lsf{letter-spacing:109.386720px;}
.lse{letter-spacing:125.946720px;}
.lsc{letter-spacing:142.482720px;}
.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:-19.642080px;}
.ws3{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199920px;}
.wsc{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-9.732960px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.715680px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-32.400000px;}
._f{margin-left:-2.371200px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._7{width:5.940960px;}
._e{width:7.286880px;}
._d{width:8.426160px;}
._9{width:10.039680px;}
._8{width:11.772720px;}
._a{width:13.744800px;}
._b{width:16.802160px;}
._15{width:18.915120px;}
._6{width:20.378160px;}
._c{width:21.592560px;}
._14{width:26.652960px;}
._12{width:28.505520px;}
._13{width:29.600400px;}
._11{width:36.035280px;}
._10{width:37.589040px;}
._18{width:38.982720px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
._16{width:2205.195840px;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(26,26,26);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y12{bottom:3.420000px;}
.ya8{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y28{bottom:5.220000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y2f{bottom:20.700000px;}
.y17{bottom:20.880000px;}
.ya6{bottom:21.060000px;}
.y2b{bottom:21.105000px;}
.y27{bottom:22.500000px;}
.y2{bottom:28.980000px;}
.ya5{bottom:37.980000px;}
.y2c{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y2e{bottom:38.340000px;}
.y2a{bottom:38.385000px;}
.y26{bottom:39.780000px;}
.y15{bottom:55.440000px;}
.ya4{bottom:55.620000px;}
.yb{bottom:56.700000px;}
.y25{bottom:57.060000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.ya3{bottom:72.900000px;}
.ya{bottom:73.980000px;}
.y24{bottom:74.340000px;}
.y2d{bottom:89.640000px;}
.ya2{bottom:90.000000px;}
.y23{bottom:91.440000px;}
.ya1{bottom:106.920000px;}
.y22{bottom:108.720000px;}
.y92{bottom:123.336000px;}
.y21{bottom:126.045000px;}
.y54{bottom:126.756000px;}
.y91{bottom:140.616000px;}
.y20{bottom:143.325000px;}
.y53{bottom:144.036000px;}
.y90{bottom:157.890000px;}
.y1f{bottom:160.605000px;}
.y52{bottom:161.310000px;}
.y8f{bottom:175.170000px;}
.y1e{bottom:177.705000px;}
.y51{bottom:178.590000px;}
.y8e{bottom:192.450000px;}
.y1d{bottom:194.985000px;}
.y50{bottom:195.690000px;}
.y8d{bottom:209.550000px;}
.y1c{bottom:212.265000px;}
.y4f{bottom:212.970000px;}
.y8c{bottom:226.830000px;}
.y1b{bottom:229.545000px;}
.y4e{bottom:230.250000px;}
.y8b{bottom:244.110000px;}
.y4d{bottom:247.530000px;}
.y8a{bottom:261.390000px;}
.y4c{bottom:264.810000px;}
.y89{bottom:278.670000px;}
.y4b{bottom:282.090000px;}
.y98{bottom:295.590000px;}
.y88{bottom:295.950000px;}
.y4a{bottom:299.190000px;}
.y97{bottom:312.690000px;}
.y87{bottom:313.050000px;}
.y49{bottom:316.470000px;}
.y86{bottom:330.330000px;}
.y48{bottom:333.750000px;}
.y85{bottom:347.610000px;}
.y47{bottom:351.030000px;}
.y84{bottom:364.935000px;}
.y46{bottom:368.355000px;}
.y83{bottom:382.215000px;}
.y45{bottom:385.635000px;}
.y82{bottom:399.495000px;}
.y44{bottom:402.735000px;}
.y81{bottom:416.595000px;}
.y43{bottom:420.015000px;}
.y80{bottom:433.875000px;}
.y42{bottom:437.295000px;}
.y96{bottom:450.795000px;}
.y7f{bottom:451.155000px;}
.y41{bottom:454.575000px;}
.y7e{bottom:468.435000px;}
.y40{bottom:471.855000px;}
.y7d{bottom:485.715000px;}
.y3f{bottom:489.135000px;}
.y7c{bottom:502.815000px;}
.y3e{bottom:506.235000px;}
.y7b{bottom:520.095000px;}
.y3d{bottom:523.515000px;}
.y7a{bottom:537.375000px;}
.y3c{bottom:540.795000px;}
.y79{bottom:554.655000px;}
.y3b{bottom:558.075000px;}
.y95{bottom:571.575000px;}
.y78{bottom:571.935000px;}
.y3a{bottom:575.355000px;}
.y77{bottom:589.215000px;}
.y39{bottom:592.455000px;}
.y9e{bottom:605.955000px;}
.y76{bottom:606.315000px;}
.y38{bottom:609.735000px;}
.y9d{bottom:623.265000px;}
.y75{bottom:623.625000px;}
.y37{bottom:627.045000px;}
.y74{bottom:640.905000px;}
.y36{bottom:644.325000px;}
.y73{bottom:658.185000px;}
.y35{bottom:661.605000px;}
.y72{bottom:675.465000px;}
.y34{bottom:678.885000px;}
.y71{bottom:692.745000px;}
.y33{bottom:695.985000px;}
.y70{bottom:709.845000px;}
.y32{bottom:713.265000px;}
.y9c{bottom:726.765000px;}
.y6f{bottom:727.125000px;}
.y31{bottom:730.185000px;}
.y6e{bottom:744.405000px;}
.y30{bottom:747.465000px;}
.y6d{bottom:761.685000px;}
.y1a{bottom:762.045000px;}
.y6c{bottom:778.965000px;}
.y6b{bottom:796.065000px;}
.y6a{bottom:813.345000px;}
.y69{bottom:830.625000px;}
.ya9{bottom:845.565000px;}
.y68{bottom:847.905000px;}
.ya7{bottom:859.965000px;}
.y67{bottom:865.185000px;}
.y29{bottom:866.265000px;}
.ya0{bottom:877.110000px;}
.y66{bottom:882.510000px;}
.y65{bottom:899.250000px;}
.y9b{bottom:899.610000px;}
.y64{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.y63{bottom:934.170000px;}
.y62{bottom:951.450000px;}
.y61{bottom:968.730000px;}
.y9a{bottom:985.650000px;}
.y60{bottom:986.010000px;}
.y9f{bottom:998.610000px;}
.y99{bottom:1002.750000px;}
.y5f{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.y5e{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.y5d{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.y5c{bottom:1054.590000px;}
.y94{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.y5b{bottom:1071.870000px;}
.y93{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.y5a{bottom:1089.510000px;}
.yc{bottom:1104.450000px;}
.y59{bottom:1106.610000px;}
.y58{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y57{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y56{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y55{bottom:1196.100000px;}
.h16{height:17.136000px;}
.hc{height:17.280000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h12{height:41.522695px;}
.h2{height:44.280000px;}
.h10{height:51.876000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h13{height:61.423863px;}
.h14{height:65.518594px;}
.h3{height:66.757500px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h11{height:103.500000px;}
.h15{height:120.780000px;}
.hf{height:243.030000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:30.960000px;}
.w6{width:176.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.wa{width:337.755000px;}
.wb{width:340.275000px;}
.w8{width:470.805000px;}
.w3{width:495.645000px;}
.w9{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x5{left:34.920000px;}
.x1{left:90.396000px;}
.x7{left:108.036000px;}
.x9{left:110.016000px;}
.x10{left:135.036000px;}
.x11{left:148.536000px;}
.x12{left:274.539000px;}
.xb{left:278.355000px;}
.xa{left:280.155000px;}
.xd{left:283.755000px;}
.x3{left:306.975000px;}
.xe{left:314.715000px;}
.x13{left:445.245000px;}
.x6{left:576.825000px;}
.x8{left:770.040000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.209707pt;}
.ls15{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls6{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls5{letter-spacing:2.794667pt;}
.ls16{letter-spacing:4.640000pt;}
.ls11{letter-spacing:40.912640pt;}
.lsf{letter-spacing:97.232640pt;}
.lse{letter-spacing:111.952640pt;}
.lsc{letter-spacing:126.651307pt;}
.ws0{word-spacing:-17.459627pt;}
.ws3{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.511040pt;}
.wsc{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-8.651520pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.636160pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-28.800000pt;}
._f{margin-left:-2.107733pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._7{width:5.280853pt;}
._e{width:6.477227pt;}
._d{width:7.489920pt;}
._9{width:8.924160pt;}
._8{width:10.464640pt;}
._a{width:12.217600pt;}
._b{width:14.935253pt;}
._15{width:16.813440pt;}
._6{width:18.113920pt;}
._c{width:19.193387pt;}
._14{width:23.691520pt;}
._12{width:25.338240pt;}
._13{width:26.311467pt;}
._11{width:32.031360pt;}
._10{width:33.412480pt;}
._18{width:34.651307pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
._16{width:1960.174080pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y12{bottom:3.040000pt;}
.ya8{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y28{bottom:4.640000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y2f{bottom:18.400000pt;}
.y17{bottom:18.560000pt;}
.ya6{bottom:18.720000pt;}
.y2b{bottom:18.760000pt;}
.y27{bottom:20.000000pt;}
.y2{bottom:25.760000pt;}
.ya5{bottom:33.760000pt;}
.y2c{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y2e{bottom:34.080000pt;}
.y2a{bottom:34.120000pt;}
.y26{bottom:35.360000pt;}
.y15{bottom:49.280000pt;}
.ya4{bottom:49.440000pt;}
.yb{bottom:50.400000pt;}
.y25{bottom:50.720000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.ya3{bottom:64.800000pt;}
.ya{bottom:65.760000pt;}
.y24{bottom:66.080000pt;}
.y2d{bottom:79.680000pt;}
.ya2{bottom:80.000000pt;}
.y23{bottom:81.280000pt;}
.ya1{bottom:95.040000pt;}
.y22{bottom:96.640000pt;}
.y92{bottom:109.632000pt;}
.y21{bottom:112.040000pt;}
.y54{bottom:112.672000pt;}
.y91{bottom:124.992000pt;}
.y20{bottom:127.400000pt;}
.y53{bottom:128.032000pt;}
.y90{bottom:140.346667pt;}
.y1f{bottom:142.760000pt;}
.y52{bottom:143.386667pt;}
.y8f{bottom:155.706667pt;}
.y1e{bottom:157.960000pt;}
.y51{bottom:158.746667pt;}
.y8e{bottom:171.066667pt;}
.y1d{bottom:173.320000pt;}
.y50{bottom:173.946667pt;}
.y8d{bottom:186.266667pt;}
.y1c{bottom:188.680000pt;}
.y4f{bottom:189.306667pt;}
.y8c{bottom:201.626667pt;}
.y1b{bottom:204.040000pt;}
.y4e{bottom:204.666667pt;}
.y8b{bottom:216.986667pt;}
.y4d{bottom:220.026667pt;}
.y8a{bottom:232.346667pt;}
.y4c{bottom:235.386667pt;}
.y89{bottom:247.706667pt;}
.y4b{bottom:250.746667pt;}
.y98{bottom:262.746667pt;}
.y88{bottom:263.066667pt;}
.y4a{bottom:265.946667pt;}
.y97{bottom:277.946667pt;}
.y87{bottom:278.266667pt;}
.y49{bottom:281.306667pt;}
.y86{bottom:293.626667pt;}
.y48{bottom:296.666667pt;}
.y85{bottom:308.986667pt;}
.y47{bottom:312.026667pt;}
.y84{bottom:324.386667pt;}
.y46{bottom:327.426667pt;}
.y83{bottom:339.746667pt;}
.y45{bottom:342.786667pt;}
.y82{bottom:355.106667pt;}
.y44{bottom:357.986667pt;}
.y81{bottom:370.306667pt;}
.y43{bottom:373.346667pt;}
.y80{bottom:385.666667pt;}
.y42{bottom:388.706667pt;}
.y96{bottom:400.706667pt;}
.y7f{bottom:401.026667pt;}
.y41{bottom:404.066667pt;}
.y7e{bottom:416.386667pt;}
.y40{bottom:419.426667pt;}
.y7d{bottom:431.746667pt;}
.y3f{bottom:434.786667pt;}
.y7c{bottom:446.946667pt;}
.y3e{bottom:449.986667pt;}
.y7b{bottom:462.306667pt;}
.y3d{bottom:465.346667pt;}
.y7a{bottom:477.666667pt;}
.y3c{bottom:480.706667pt;}
.y79{bottom:493.026667pt;}
.y3b{bottom:496.066667pt;}
.y95{bottom:508.066667pt;}
.y78{bottom:508.386667pt;}
.y3a{bottom:511.426667pt;}
.y77{bottom:523.746667pt;}
.y39{bottom:526.626667pt;}
.y9e{bottom:538.626667pt;}
.y76{bottom:538.946667pt;}
.y38{bottom:541.986667pt;}
.y9d{bottom:554.013333pt;}
.y75{bottom:554.333333pt;}
.y37{bottom:557.373333pt;}
.y74{bottom:569.693333pt;}
.y36{bottom:572.733333pt;}
.y73{bottom:585.053333pt;}
.y35{bottom:588.093333pt;}
.y72{bottom:600.413333pt;}
.y34{bottom:603.453333pt;}
.y71{bottom:615.773333pt;}
.y33{bottom:618.653333pt;}
.y70{bottom:630.973333pt;}
.y32{bottom:634.013333pt;}
.y9c{bottom:646.013333pt;}
.y6f{bottom:646.333333pt;}
.y31{bottom:649.053333pt;}
.y6e{bottom:661.693333pt;}
.y30{bottom:664.413333pt;}
.y6d{bottom:677.053333pt;}
.y1a{bottom:677.373333pt;}
.y6c{bottom:692.413333pt;}
.y6b{bottom:707.613333pt;}
.y6a{bottom:722.973333pt;}
.y69{bottom:738.333333pt;}
.ya9{bottom:751.613333pt;}
.y68{bottom:753.693333pt;}
.ya7{bottom:764.413333pt;}
.y67{bottom:769.053333pt;}
.y29{bottom:770.013333pt;}
.ya0{bottom:779.653333pt;}
.y66{bottom:784.453333pt;}
.y65{bottom:799.333333pt;}
.y9b{bottom:799.653333pt;}
.y64{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.y63{bottom:830.373333pt;}
.y62{bottom:845.733333pt;}
.y61{bottom:861.093333pt;}
.y9a{bottom:876.133333pt;}
.y60{bottom:876.453333pt;}
.y9f{bottom:887.653333pt;}
.y99{bottom:891.333333pt;}
.y5f{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.y5e{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.y5d{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.y5c{bottom:937.413333pt;}
.y94{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.y5b{bottom:952.773333pt;}
.y93{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.y5a{bottom:968.453333pt;}
.yc{bottom:981.733333pt;}
.y59{bottom:983.653333pt;}
.y58{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y57{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y56{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y55{bottom:1063.200000pt;}
.h16{height:15.232000pt;}
.hc{height:15.360000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h12{height:36.909063pt;}
.h2{height:39.360000pt;}
.h10{height:46.112000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h13{height:54.598989pt;}
.h14{height:58.238750pt;}
.h3{height:59.340000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h11{height:92.000000pt;}
.h15{height:107.360000pt;}
.hf{height:216.026667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.520000pt;}
.w6{width:156.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.wa{width:300.226667pt;}
.wb{width:302.466667pt;}
.w8{width:418.493333pt;}
.w3{width:440.573333pt;}
.w9{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x5{left:31.040000pt;}
.x1{left:80.352000pt;}
.x7{left:96.032000pt;}
.x9{left:97.792000pt;}
.x10{left:120.032000pt;}
.x11{left:132.032000pt;}
.x12{left:244.034667pt;}
.xb{left:247.426667pt;}
.xa{left:249.026667pt;}
.xd{left:252.226667pt;}
.x3{left:272.866667pt;}
.xe{left:279.746667pt;}
.x13{left:395.773333pt;}
.x6{left:512.733333pt;}
.x8{left:684.480000pt;}
}




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