
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c6bf2338684e6c0afc09cff0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_861b867ac5ae7e6127f0f10f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_a675a42c505d84b0ba9ae5bd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_ec7f526653e852eefb333929.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_4e2f8d089c1a9084dc6b7c8a.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d9a2682802a31efff3ab1a8e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls4{letter-spacing:0.085800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.102000px;}
.ls16{letter-spacing:0.111000px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.579400px;}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws4{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._f{margin-left:-4.503529px;}
._4{margin-left:-3.410544px;}
._3{margin-left:-2.189880px;}
._0{margin-left:-1.110000px;}
._2{width:1.091363px;}
._5{width:2.164200px;}
._b{width:3.755400px;}
._9{width:4.869600px;}
._e{width:5.952000px;}
._8{width:7.455000px;}
._a{width:9.122917px;}
._6{width:10.227600px;}
._7{width:11.442480px;}
._14{width:15.330600px;}
._15{width:16.658760px;}
._c{width:19.418760px;}
._d{width:20.440800px;}
._12{width:21.673080px;}
._13{width:23.176440px;}
._1{width:27.596436px;}
._10{width:64.087920px;}
._11{width:66.438960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.330000px;}
.y3d{bottom:3.420000px;}
.y3a{bottom:4.500000px;}
.y3b{bottom:6.750000px;}
.y48{bottom:7.920000px;}
.y4c{bottom:9.000000px;}
.y44{bottom:11.250000px;}
.y5b{bottom:11.970000px;}
.y47{bottom:12.420000px;}
.y52{bottom:20.970000px;}
.y46{bottom:29.970000px;}
.y5a{bottom:38.520000px;}
.y59{bottom:56.160000px;}
.y2{bottom:73.380000px;}
.y58{bottom:73.710000px;}
.y23{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y42{bottom:137.010000px;}
.y7b{bottom:152.130000px;}
.y41{bottom:154.560000px;}
.y7a{bottom:169.770000px;}
.y40{bottom:190.200000px;}
.y79{bottom:205.320000px;}
.y21{bottom:209.820000px;}
.y3e{bottom:213.420000px;}
.y55{bottom:215.580000px;}
.y78{bottom:222.870000px;}
.y20{bottom:227.370000px;}
.y3c{bottom:239.970000px;}
.y1f{bottom:245.010000px;}
.y54{bottom:251.130000px;}
.y77{bottom:258.510000px;}
.y53{bottom:265.350000px;}
.y39{bottom:266.610000px;}
.y76{bottom:276.060000px;}
.y1e{bottom:280.560000px;}
.y51{bottom:291.900000px;}
.y1d{bottom:298.110000px;}
.y75{bottom:311.700000px;}
.y1c{bottom:315.750000px;}
.y74{bottom:329.250000px;}
.y50{bottom:336.090000px;}
.y1b{bottom:342.660000px;}
.y73{bottom:346.800000px;}
.y72{bottom:382.440000px;}
.y1a{bottom:391.260000px;}
.y96{bottom:392.340000px;}
.y71{bottom:399.990000px;}
.y95{bottom:409.890000px;}
.y70{bottom:417.630000px;}
.y94{bottom:427.440000px;}
.y19{bottom:428.250000px;}
.y6f{bottom:435.180000px;}
.y18{bottom:445.800000px;}
.y6e{bottom:452.730000px;}
.y93{bottom:454.080000px;}
.y17{bottom:463.440000px;}
.y6d{bottom:470.400000px;}
.y92{bottom:471.660000px;}
.y6c{bottom:487.950000px;}
.y91{bottom:498.300000px;}
.y16{bottom:499.020000px;}
.y90{bottom:515.850000px;}
.y15{bottom:516.660000px;}
.y6b{bottom:523.590000px;}
.y14{bottom:534.210000px;}
.y6a{bottom:541.140000px;}
.y8f{bottom:542.400000px;}
.y4f{bottom:557.790000px;}
.y69{bottom:558.690000px;}
.y8e{bottom:560.040000px;}
.y13{bottom:569.760000px;}
.y4e{bottom:572.010000px;}
.y68{bottom:576.330000px;}
.y8d{bottom:586.590000px;}
.y12{bottom:587.400000px;}
.y67{bottom:593.880000px;}
.y38{bottom:598.470000px;}
.y4d{bottom:598.560000px;}
.y8c{bottom:604.230000px;}
.y11{bottom:604.950000px;}
.y66{bottom:611.520000px;}
.y37{bottom:616.020000px;}
.y8b{bottom:621.780000px;}
.y4b{bottom:625.110000px;}
.y65{bottom:629.070000px;}
.y10{bottom:640.590000px;}
.y8a{bottom:648.330000px;}
.y36{bottom:651.660000px;}
.yf{bottom:658.140000px;}
.y64{bottom:664.620000px;}
.y35{bottom:669.210000px;}
.y89{bottom:674.970000px;}
.ye{bottom:675.690000px;}
.y63{bottom:682.260000px;}
.y88{bottom:692.520000px;}
.yd{bottom:693.330000px;}
.y62{bottom:699.810000px;}
.y34{bottom:704.850000px;}
.y87{bottom:719.160000px;}
.yc{bottom:720.240000px;}
.y33{bottom:731.760000px;}
.y61{bottom:735.450000px;}
.y86{bottom:736.710000px;}
.y60{bottom:753.000000px;}
.y85{bottom:763.260000px;}
.yb{bottom:768.480000px;}
.y5f{bottom:770.550000px;}
.y32{bottom:780.000000px;}
.y84{bottom:780.900000px;}
.y5e{bottom:788.190000px;}
.y31{bottom:798.450000px;}
.ya{bottom:804.030000px;}
.y5d{bottom:815.100000px;}
.y30{bottom:816.000000px;}
.y83{bottom:816.090000px;}
.y2f{bottom:834.450000px;}
.y9{bottom:839.850000px;}
.y82{bottom:842.640000px;}
.y4a{bottom:851.280000px;}
.y2e{bottom:852.000000px;}
.y5c{bottom:860.010000px;}
.y81{bottom:860.190000px;}
.y49{bottom:865.500000px;}
.y2d{bottom:879.450000px;}
.y8{bottom:879.630000px;}
.y57{bottom:886.560000px;}
.y80{bottom:887.100000px;}
.y45{bottom:892.050000px;}
.y7{bottom:897.630000px;}
.y2c{bottom:915.000000px;}
.y6{bottom:929.940000px;}
.y2b{bottom:932.550000px;}
.y7f{bottom:935.430000px;}
.y43{bottom:940.740000px;}
.y5{bottom:949.290000px;}
.y2a{bottom:959.190000px;}
.y7e{bottom:962.340000px;}
.y56{bottom:983.490000px;}
.y4{bottom:987.630000px;}
.y29{bottom:994.740000px;}
.y7d{bottom:999.600000px;}
.y3{bottom:1012.320000px;}
.y28{bottom:1029.960000px;}
.y7c{bottom:1047.960000px;}
.y27{bottom:1065.510000px;}
.y26{bottom:1083.150000px;}
.y25{bottom:1100.700000px;}
.y24{bottom:1127.610000px;}
.y22{bottom:1194.300000px;}
.hf{height:26.550000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:44.190000px;}
.h12{height:48.690000px;}
.h10{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h17{height:96.930000px;}
.h16{height:171.030000px;}
.h14{height:200.280000px;}
.h13{height:204.750000px;}
.h11{height:213.780000px;}
.hd{height:310.530000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:135.300000px;}
.w17{width:149.760000px;}
.w15{width:150.660000px;}
.w14{width:151.560000px;}
.w9{width:153.270000px;}
.w16{width:169.860000px;}
.w7{width:182.610000px;}
.w8{width:189.300000px;}
.we{width:200.700000px;}
.w11{width:229.710000px;}
.w6{width:231.960000px;}
.wc{width:251.040000px;}
.wd{width:252.480000px;}
.w12{width:276.390000px;}
.w3{width:301.980000px;}
.w4{width:319.980000px;}
.wf{width:453.180000px;}
.wa{width:525.180000px;}
.w5{width:621.960000px;}
.w10{width:704.220000px;}
.wb{width:757.140000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:5.160000px;}
.x32{left:6.570000px;}
.x14{left:8.100000px;}
.x23{left:11.790000px;}
.x30{left:13.590000px;}
.x31{left:18.450000px;}
.x2e{left:19.980000px;}
.x20{left:21.780000px;}
.x2f{left:28.080000px;}
.x22{left:32.400000px;}
.x21{left:35.820000px;}
.x35{left:40.860000px;}
.xa{left:48.630000px;}
.xb{left:59.760000px;}
.x1{left:68.040000px;}
.x24{left:81.450000px;}
.x34{left:84.900000px;}
.x4{left:95.039987px;}
.x37{left:111.239987px;}
.x1a{left:113.700000px;}
.x5{left:122.039987px;}
.x36{left:124.770000px;}
.x26{left:126.120000px;}
.x6{left:135.630000px;}
.x2d{left:138.960000px;}
.x29{left:140.580000px;}
.x27{left:142.110000px;}
.x13{left:145.350000px;}
.x2b{left:160.320000px;}
.xf{left:174.600000px;}
.x11{left:181.380000px;}
.x19{left:192.600000px;}
.x25{left:200.910000px;}
.x2{left:202.799987px;}
.x1b{left:213.870000px;}
.xd{left:224.130000px;}
.x1d{left:232.320000px;}
.x15{left:234.210000px;}
.x17{left:244.380000px;}
.x1f{left:263.070000px;}
.x7{left:293.880000px;}
.x1c{left:297.750000px;}
.xe{left:300.000000px;}
.x9{left:311.880000px;}
.x16{left:345.540000px;}
.x28{left:354.900000px;}
.x8{left:437.610000px;}
.xc{left:446.609987px;}
.x10{left:482.610000px;}
.x2a{left:505.560000px;}
.x1e{left:548.790000px;}
.x18{left:598.020000px;}
.x12{left:671.910000px;}
.x2c{left:675.420000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls4{letter-spacing:0.076267pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.090667pt;}
.ls16{letter-spacing:0.098667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.959467pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws4{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._f{margin-left:-4.003137pt;}
._4{margin-left:-3.031594pt;}
._3{margin-left:-1.946560pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.970100pt;}
._5{width:1.923733pt;}
._b{width:3.338134pt;}
._9{width:4.328533pt;}
._e{width:5.290667pt;}
._8{width:6.626667pt;}
._a{width:8.109260pt;}
._6{width:9.091200pt;}
._7{width:10.171094pt;}
._14{width:13.627200pt;}
._15{width:14.807787pt;}
._c{width:17.261120pt;}
._d{width:18.169600pt;}
._12{width:19.264960pt;}
._13{width:20.601280pt;}
._1{width:24.530165pt;}
._10{width:56.967040pt;}
._11{width:59.056853pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.960000pt;}
.y3d{bottom:3.040000pt;}
.y3a{bottom:4.000000pt;}
.y3b{bottom:6.000000pt;}
.y48{bottom:7.040000pt;}
.y4c{bottom:8.000000pt;}
.y44{bottom:10.000000pt;}
.y5b{bottom:10.640000pt;}
.y47{bottom:11.040000pt;}
.y52{bottom:18.640000pt;}
.y46{bottom:26.640000pt;}
.y5a{bottom:34.240000pt;}
.y59{bottom:49.920000pt;}
.y2{bottom:65.226667pt;}
.y58{bottom:65.520000pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y42{bottom:121.786667pt;}
.y7b{bottom:135.226667pt;}
.y41{bottom:137.386667pt;}
.y7a{bottom:150.906667pt;}
.y40{bottom:169.066667pt;}
.y79{bottom:182.506667pt;}
.y21{bottom:186.506667pt;}
.y3e{bottom:189.706667pt;}
.y55{bottom:191.626667pt;}
.y78{bottom:198.106667pt;}
.y20{bottom:202.106667pt;}
.y3c{bottom:213.306667pt;}
.y1f{bottom:217.786667pt;}
.y54{bottom:223.226667pt;}
.y77{bottom:229.786667pt;}
.y53{bottom:235.866667pt;}
.y39{bottom:236.986667pt;}
.y76{bottom:245.386667pt;}
.y1e{bottom:249.386667pt;}
.y51{bottom:259.466667pt;}
.y1d{bottom:264.986667pt;}
.y75{bottom:277.066667pt;}
.y1c{bottom:280.666667pt;}
.y74{bottom:292.666667pt;}
.y50{bottom:298.746667pt;}
.y1b{bottom:304.586667pt;}
.y73{bottom:308.266667pt;}
.y72{bottom:339.946667pt;}
.y1a{bottom:347.786667pt;}
.y96{bottom:348.746667pt;}
.y71{bottom:355.546667pt;}
.y95{bottom:364.346667pt;}
.y70{bottom:371.226667pt;}
.y94{bottom:379.946667pt;}
.y19{bottom:380.666667pt;}
.y6f{bottom:386.826667pt;}
.y18{bottom:396.266667pt;}
.y6e{bottom:402.426667pt;}
.y93{bottom:403.626667pt;}
.y17{bottom:411.946667pt;}
.y6d{bottom:418.133333pt;}
.y92{bottom:419.253333pt;}
.y6c{bottom:433.733333pt;}
.y91{bottom:442.933333pt;}
.y16{bottom:443.573333pt;}
.y90{bottom:458.533333pt;}
.y15{bottom:459.253333pt;}
.y6b{bottom:465.413333pt;}
.y14{bottom:474.853333pt;}
.y6a{bottom:481.013333pt;}
.y8f{bottom:482.133333pt;}
.y4f{bottom:495.813333pt;}
.y69{bottom:496.613333pt;}
.y8e{bottom:497.813333pt;}
.y13{bottom:506.453333pt;}
.y4e{bottom:508.453333pt;}
.y68{bottom:512.293333pt;}
.y8d{bottom:521.413333pt;}
.y12{bottom:522.133333pt;}
.y67{bottom:527.893333pt;}
.y38{bottom:531.973333pt;}
.y4d{bottom:532.053333pt;}
.y8c{bottom:537.093333pt;}
.y11{bottom:537.733333pt;}
.y66{bottom:543.573333pt;}
.y37{bottom:547.573333pt;}
.y8b{bottom:552.693333pt;}
.y4b{bottom:555.653333pt;}
.y65{bottom:559.173333pt;}
.y10{bottom:569.413333pt;}
.y8a{bottom:576.293333pt;}
.y36{bottom:579.253333pt;}
.yf{bottom:585.013333pt;}
.y64{bottom:590.773333pt;}
.y35{bottom:594.853333pt;}
.y89{bottom:599.973333pt;}
.ye{bottom:600.613333pt;}
.y63{bottom:606.453333pt;}
.y88{bottom:615.573333pt;}
.yd{bottom:616.293333pt;}
.y62{bottom:622.053333pt;}
.y34{bottom:626.533333pt;}
.y87{bottom:639.253333pt;}
.yc{bottom:640.213333pt;}
.y33{bottom:650.453333pt;}
.y61{bottom:653.733333pt;}
.y86{bottom:654.853333pt;}
.y60{bottom:669.333333pt;}
.y85{bottom:678.453333pt;}
.yb{bottom:683.093333pt;}
.y5f{bottom:684.933333pt;}
.y32{bottom:693.333333pt;}
.y84{bottom:694.133333pt;}
.y5e{bottom:700.613333pt;}
.y31{bottom:709.733333pt;}
.ya{bottom:714.693333pt;}
.y5d{bottom:724.533333pt;}
.y30{bottom:725.333333pt;}
.y83{bottom:725.413333pt;}
.y2f{bottom:741.733333pt;}
.y9{bottom:746.533333pt;}
.y82{bottom:749.013333pt;}
.y4a{bottom:756.693333pt;}
.y2e{bottom:757.333333pt;}
.y5c{bottom:764.453333pt;}
.y81{bottom:764.613333pt;}
.y49{bottom:769.333333pt;}
.y2d{bottom:781.733333pt;}
.y8{bottom:781.893333pt;}
.y57{bottom:788.053333pt;}
.y80{bottom:788.533333pt;}
.y45{bottom:792.933333pt;}
.y7{bottom:797.893333pt;}
.y2c{bottom:813.333333pt;}
.y6{bottom:826.613333pt;}
.y2b{bottom:828.933333pt;}
.y7f{bottom:831.493333pt;}
.y43{bottom:836.213333pt;}
.y5{bottom:843.813333pt;}
.y2a{bottom:852.613333pt;}
.y7e{bottom:855.413333pt;}
.y56{bottom:874.213333pt;}
.y4{bottom:877.893333pt;}
.y29{bottom:884.213333pt;}
.y7d{bottom:888.533333pt;}
.y3{bottom:899.840000pt;}
.y28{bottom:915.520000pt;}
.y7c{bottom:931.520000pt;}
.y27{bottom:947.120000pt;}
.y26{bottom:962.800000pt;}
.y25{bottom:978.400000pt;}
.y24{bottom:1002.320000pt;}
.y22{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:39.280000pt;}
.h12{height:43.280000pt;}
.h10{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h17{height:86.160000pt;}
.h16{height:152.026667pt;}
.h14{height:178.026667pt;}
.h13{height:182.000000pt;}
.h11{height:190.026667pt;}
.hd{height:276.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:120.266667pt;}
.w17{width:133.120000pt;}
.w15{width:133.920000pt;}
.w14{width:134.720000pt;}
.w9{width:136.240000pt;}
.w16{width:150.986667pt;}
.w7{width:162.320000pt;}
.w8{width:168.266667pt;}
.we{width:178.400000pt;}
.w11{width:204.186667pt;}
.w6{width:206.186667pt;}
.wc{width:223.146667pt;}
.wd{width:224.426667pt;}
.w12{width:245.680000pt;}
.w3{width:268.426667pt;}
.w4{width:284.426667pt;}
.wf{width:402.826667pt;}
.wa{width:466.826667pt;}
.w5{width:552.853333pt;}
.w10{width:625.973333pt;}
.wb{width:673.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:4.586667pt;}
.x32{left:5.840000pt;}
.x14{left:7.200000pt;}
.x23{left:10.480000pt;}
.x30{left:12.080000pt;}
.x31{left:16.400000pt;}
.x2e{left:17.760000pt;}
.x20{left:19.360000pt;}
.x2f{left:24.960000pt;}
.x22{left:28.800000pt;}
.x21{left:31.840000pt;}
.x35{left:36.320000pt;}
.xa{left:43.226667pt;}
.xb{left:53.120000pt;}
.x1{left:60.480000pt;}
.x24{left:72.400000pt;}
.x34{left:75.466667pt;}
.x4{left:84.479988pt;}
.x37{left:98.879988pt;}
.x1a{left:101.066667pt;}
.x5{left:108.479988pt;}
.x36{left:110.906667pt;}
.x26{left:112.106667pt;}
.x6{left:120.560000pt;}
.x2d{left:123.520000pt;}
.x29{left:124.960000pt;}
.x27{left:126.320000pt;}
.x13{left:129.200000pt;}
.x2b{left:142.506667pt;}
.xf{left:155.200000pt;}
.x11{left:161.226667pt;}
.x19{left:171.200000pt;}
.x25{left:178.586667pt;}
.x2{left:180.266655pt;}
.x1b{left:190.106667pt;}
.xd{left:199.226667pt;}
.x1d{left:206.506667pt;}
.x15{left:208.186667pt;}
.x17{left:217.226667pt;}
.x1f{left:233.840000pt;}
.x7{left:261.226667pt;}
.x1c{left:264.666667pt;}
.xe{left:266.666667pt;}
.x9{left:277.226667pt;}
.x16{left:307.146667pt;}
.x28{left:315.466667pt;}
.x8{left:388.986667pt;}
.xc{left:396.986655pt;}
.x10{left:428.986667pt;}
.x2a{left:449.386667pt;}
.x1e{left:487.813333pt;}
.x18{left:531.573333pt;}
.x12{left:597.253333pt;}
.x2c{left:600.373333pt;}
.x3{left:704.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; }
  