
    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_b966212622207175d1a418a2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9b73582aca6d9d0a1aa056d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.116699;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_eb91cde90d9c5cfcd42ef729.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_cd3f4718613b37309addb901.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_a6f66a7a6a8e46bc114d34a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_f4e2ea1c75dde838a6585e33.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_f574967a63ad1b0941629481.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3532716f04eaae7412262b9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_cac483bfd067fe7b26f90135.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129395;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);}
.v3{vertical-align:-79.200000px;}
.v2{vertical-align:-69.600000px;}
.v1{vertical-align:-62.460000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-1.200000px;}
.ls18{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.300000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.588000px;}
.lsd{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.780000px;}
.ls13{letter-spacing:0.900000px;}
.ls8{letter-spacing:2.100000px;}
.lse{letter-spacing:3.000000px;}
.ls10{letter-spacing:4.200000px;}
.lsa{letter-spacing:4.500000px;}
.ls7{letter-spacing:5.400000px;}
.ls3{letter-spacing:5.700000px;}
.ls12{letter-spacing:7.740000px;}
.ls11{letter-spacing:13.860000px;}
.lsf{letter-spacing:19.860000px;}
.ls1{letter-spacing:22.500000px;}
.ls2{letter-spacing:202.680000px;}
.ls17{letter-spacing:1050.180000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.460000px;}
.ws5{word-spacing:-14.100000px;}
.ws6{word-spacing:-14.088000px;}
.ws4{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.900000px;}
.ws7{word-spacing:-12.204000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-2.550000px;}
._0{margin-left:-1.320000px;}
._1{width:1.320000px;}
._7{width:3.000000px;}
._b{width:4.752000px;}
._a{width:6.318000px;}
._c{width:7.410000px;}
._19{width:8.820000px;}
._9{width:9.990000px;}
._8{width:11.124000px;}
._e{width:12.360000px;}
._13{width:13.380000px;}
._d{width:14.580000px;}
._11{width:16.176000px;}
._14{width:17.304000px;}
._5{width:18.330000px;}
._4{width:19.656000px;}
._3{width:20.976000px;}
._6{width:22.032000px;}
._2{width:23.088000px;}
._15{width:24.156000px;}
._18{width:25.236000px;}
._17{width:26.460000px;}
._1e{width:27.870000px;}
._1d{width:29.580000px;}
._10{width:30.696000px;}
._f{width:32.724000px;}
._1a{width:35.100000px;}
._1b{width:42.240000px;}
._16{width:48.540000px;}
._23{width:66.210000px;}
._1f{width:236.706000px;}
._20{width:239.676000px;}
._22{width:304.398000px;}
._21{width:305.526000px;}
._12{width:980.100000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(34,122,203);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:39.600000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.785000px;}
.y5{bottom:216.375000px;}
.y4{bottom:234.075000px;}
.y3a{bottom:250.875000px;}
.y99{bottom:252.675000px;}
.y39{bottom:255.375000px;}
.yaf{bottom:261.375000px;}
.yb2{bottom:266.175000px;}
.y62{bottom:266.475000px;}
.y98{bottom:269.775000px;}
.y61{bottom:270.975000px;}
.ye6{bottom:273.075000px;}
.y38{bottom:273.375000px;}
.yae{bottom:278.475000px;}
.yb1{bottom:281.475000px;}
.y60{bottom:282.075000px;}
.y76{bottom:282.975000px;}
.y97{bottom:287.175000px;}
.ye5{bottom:288.375000px;}
.yad{bottom:295.875000px;}
.yb0{bottom:297.075000px;}
.y5f{bottom:297.375000px;}
.ye4{bottom:303.975000px;}
.y96{bottom:304.275000px;}
.y5e{bottom:312.975000px;}
.ye3{bottom:319.575000px;}
.y37{bottom:319.875000px;}
.y95{bottom:321.675000px;}
.y5d{bottom:328.575000px;}
.y75{bottom:330.375000px;}
.y5c{bottom:333.075000px;}
.ye2{bottom:334.875000px;}
.y36{bottom:337.275000px;}
.y94{bottom:338.775000px;}
.y5b{bottom:345.075000px;}
.yac{bottom:345.720000px;}
.y74{bottom:347.505000px;}
.ye1{bottom:350.505000px;}
.y35{bottom:354.405000px;}
.y93{bottom:356.220000px;}
.yab{bottom:363.120000px;}
.y73{bottom:364.905000px;}
.ye0{bottom:366.120000px;}
.y34{bottom:371.820000px;}
.y92{bottom:373.320000px;}
.yaa{bottom:380.205000px;}
.ydf{bottom:381.705000px;}
.y72{bottom:382.020000px;}
.y33{bottom:388.920000px;}
.y91{bottom:390.705000px;}
.yde{bottom:397.005000px;}
.ya9{bottom:397.620000px;}
.y71{bottom:399.420000px;}
.y32{bottom:406.320000px;}
.y90{bottom:407.820000px;}
.ydd{bottom:412.620000px;}
.ya8{bottom:414.420000px;}
.y70{bottom:416.505000px;}
.y31{bottom:423.420000px;}
.y8f{bottom:425.205000px;}
.ydc{bottom:428.205000px;}
.ya7{bottom:430.005000px;}
.y6f{bottom:433.920000px;}
.y30{bottom:440.820000px;}
.y8e{bottom:442.320000px;}
.ydb{bottom:443.820000px;}
.ya6{bottom:445.320000px;}
.y6e{bottom:451.005000px;}
.y2f{bottom:457.905000px;}
.yda{bottom:459.120000px;}
.y8d{bottom:459.705000px;}
.ya5{bottom:460.920000px;}
.y6d{bottom:468.420000px;}
.yd9{bottom:474.705000px;}
.y2e{bottom:475.320000px;}
.y8c{bottom:476.820000px;}
.y6c{bottom:485.505000px;}
.yd8{bottom:490.320000px;}
.y2d{bottom:492.420000px;}
.y8b{bottom:494.205000px;}
.y6b{bottom:502.920000px;}
.yd7{bottom:505.905000px;}
.y2c{bottom:509.820000px;}
.y8a{bottom:511.320000px;}
.y5a{bottom:515.250000px;}
.y6a{bottom:520.050000px;}
.yd6{bottom:521.250000px;}
.y2b{bottom:526.950000px;}
.y89{bottom:528.750000px;}
.yd5{bottom:536.850000px;}
.y69{bottom:537.450000px;}
.y2a{bottom:544.350000px;}
.y88{bottom:545.850000px;}
.yd4{bottom:552.450000px;}
.y68{bottom:554.550000px;}
.y29{bottom:561.450000px;}
.y87{bottom:563.250000px;}
.yd3{bottom:568.050000px;}
.y67{bottom:571.950000px;}
.y28{bottom:578.250000px;}
.y86{bottom:580.350000px;}
.y59{bottom:582.750000px;}
.yd2{bottom:583.350000px;}
.y66{bottom:589.050000px;}
.y27{bottom:593.850000px;}
.y85{bottom:597.750000px;}
.yd1{bottom:598.950000px;}
.y65{bottom:606.450000px;}
.y26{bottom:609.450000px;}
.yd0{bottom:614.550000px;}
.y84{bottom:614.850000px;}
.y64{bottom:623.550000px;}
.y25{bottom:624.750000px;}
.ycf{bottom:630.150000px;}
.y83{bottom:632.250000px;}
.y24{bottom:640.350000px;}
.y58{bottom:640.950000px;}
.yce{bottom:645.450000px;}
.y82{bottom:649.350000px;}
.y23{bottom:655.950000px;}
.y57{bottom:658.050000px;}
.ycd{bottom:661.050000px;}
.y81{bottom:666.750000px;}
.y22{bottom:671.550000px;}
.y56{bottom:675.450000px;}
.ycc{bottom:676.650000px;}
.y80{bottom:683.895000px;}
.y21{bottom:686.895000px;}
.ycb{bottom:692.280000px;}
.y55{bottom:692.595000px;}
.y63{bottom:697.980000px;}
.y7f{bottom:701.280000px;}
.y20{bottom:702.495000px;}
.yca{bottom:707.595000px;}
.y54{bottom:709.980000px;}
.y1f{bottom:718.095000px;}
.y7e{bottom:718.380000px;}
.yc9{bottom:723.195000px;}
.y53{bottom:727.080000px;}
.y1e{bottom:733.695000px;}
.y7d{bottom:735.795000px;}
.yc8{bottom:738.780000px;}
.y52{bottom:744.495000px;}
.y7c{bottom:752.895000px;}
.yc7{bottom:754.395000px;}
.y51{bottom:761.595000px;}
.y1d{bottom:764.595000px;}
.y7b{bottom:769.695000px;}
.ya4{bottom:770.295000px;}
.y50{bottom:778.980000px;}
.y1c{bottom:780.195000px;}
.y7a{bottom:785.295000px;}
.ya3{bottom:787.380000px;}
.y1b{bottom:795.795000px;}
.y4f{bottom:796.080000px;}
.y79{bottom:800.880000px;}
.ya2{bottom:804.795000px;}
.y1a{bottom:811.080000px;}
.y4e{bottom:813.495000px;}
.y78{bottom:816.480000px;}
.ya1{bottom:821.895000px;}
.y19{bottom:826.695000px;}
.y4d{bottom:830.580000px;}
.y77{bottom:831.795000px;}
.ya0{bottom:839.295000px;}
.y18{bottom:842.295000px;}
.yc6{bottom:847.380000px;}
.y4c{bottom:847.995000px;}
.y9f{bottom:856.125000px;}
.y17{bottom:857.925000px;}
.yc5{bottom:863.025000px;}
.y4b{bottom:865.125000px;}
.y9e{bottom:871.725000px;}
.y16{bottom:873.225000px;}
.yc4{bottom:878.625000px;}
.y4a{bottom:882.525000px;}
.y9d{bottom:887.025000px;}
.y15{bottom:888.825000px;}
.yc3{bottom:893.925000px;}
.y49{bottom:899.625000px;}
.y9c{bottom:902.625000px;}
.y14{bottom:904.425000px;}
.yc2{bottom:909.525000px;}
.y48{bottom:917.025000px;}
.y9b{bottom:918.225000px;}
.y13{bottom:920.025000px;}
.yc1{bottom:925.125000px;}
.y47{bottom:934.125000px;}
.y12{bottom:935.325000px;}
.yc0{bottom:940.725000px;}
.y11{bottom:950.925000px;}
.y46{bottom:951.525000px;}
.ybf{bottom:956.025000px;}
.y10{bottom:966.525000px;}
.y45{bottom:968.625000px;}
.yeb{bottom:970.725000px;}
.ybe{bottom:971.625000px;}
.yf{bottom:982.125000px;}
.y44{bottom:986.025000px;}
.yea{bottom:986.325000px;}
.ybd{bottom:987.225000px;}
.ye{bottom:997.425000px;}
.ye9{bottom:1001.625000px;}
.ybc{bottom:1002.825000px;}
.y43{bottom:1003.125000px;}
.yd{bottom:1013.925000px;}
.ye8{bottom:1017.255000px;}
.ybb{bottom:1018.170000px;}
.y42{bottom:1020.570000px;}
.ye7{bottom:1033.455000px;}
.yba{bottom:1033.755000px;}
.yc{bottom:1034.670000px;}
.y41{bottom:1037.670000px;}
.yb9{bottom:1049.370000px;}
.y40{bottom:1055.070000px;}
.yb{bottom:1055.370000px;}
.yb8{bottom:1064.955000px;}
.y3f{bottom:1072.170000px;}
.y9{bottom:1076.070000px;}
.y9a{bottom:1077.570000px;}
.yb7{bottom:1080.255000px;}
.ya{bottom:1082.070000px;}
.y3e{bottom:1089.570000px;}
.yb6{bottom:1095.870000px;}
.y8{bottom:1096.755000px;}
.y3d{bottom:1106.670000px;}
.yb5{bottom:1111.455000px;}
.y7{bottom:1117.455000px;}
.y3c{bottom:1124.070000px;}
.yb4{bottom:1127.070000px;}
.y6{bottom:1138.170000px;}
.y3b{bottom:1141.170000px;}
.yb3{bottom:1142.370000px;}
.y1{bottom:1175.670000px;}
.y3{bottom:1262.100000px;}
.h1{height:19.837500px;}
.hd{height:35.332031px;}
.hf{height:38.845898px;}
.h11{height:38.865234px;}
.h7{height:47.085938px;}
.h12{height:48.410156px;}
.ha{height:48.647461px;}
.h9{height:52.971680px;}
.he{height:52.998047px;}
.hc{height:53.789062px;}
.h10{height:54.052734px;}
.h13{height:54.421875px;}
.h2{height:58.857422px;}
.h4{height:58.886719px;}
.h3{height:59.677734px;}
.hb{height:60.468750px;}
.h5{height:66.093750px;}
.h6{height:70.628906px;}
.h8{height:72.562500px;}
.h0{height:1263.000000px;}
.w1{width:347.520000px;}
.w3{width:892.499973px;}
.w2{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.485000px;}
.x3{left:212.774987px;}
.x10{left:217.274987px;}
.x5{left:224.474987px;}
.x6{left:227.174987px;}
.x11{left:234.374987px;}
.x7{left:255.974987px;}
.xe{left:266.819987px;}
.x1{left:271.920000px;}
.x8{left:277.004987px;}
.x16{left:310.319973px;}
.x17{left:315.419987px;}
.xd{left:320.819987px;}
.xb{left:359.219987px;}
.xf{left:428.849987px;}
.x4{left:471.194987px;}
.xc{left:478.694987px;}
.x12{left:549.194973px;}
.x13{left:553.694987px;}
.x18{left:572.879973px;}
.x19{left:578.024987px;}
.x9{left:674.324973px;}
.xa{left:680.324987px;}
.x14{left:700.469973px;}
.x15{left:705.569987px;}
@media print{
.v3{vertical-align:-70.400000pt;}
.v2{vertical-align:-61.866667pt;}
.v1{vertical-align:-55.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-1.066667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.522667pt;}
.lsd{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.693333pt;}
.ls13{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.866667pt;}
.lse{letter-spacing:2.666667pt;}
.ls10{letter-spacing:3.733333pt;}
.lsa{letter-spacing:4.000000pt;}
.ls7{letter-spacing:4.800000pt;}
.ls3{letter-spacing:5.066667pt;}
.ls12{letter-spacing:6.880000pt;}
.ls11{letter-spacing:12.320000pt;}
.lsf{letter-spacing:17.653333pt;}
.ls1{letter-spacing:20.000000pt;}
.ls2{letter-spacing:180.160000pt;}
.ls17{letter-spacing:933.493333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.853333pt;}
.ws5{word-spacing:-12.533333pt;}
.ws6{word-spacing:-12.522667pt;}
.ws4{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.466667pt;}
.ws7{word-spacing:-10.848000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-2.266667pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.173333pt;}
._7{width:2.666667pt;}
._b{width:4.224000pt;}
._a{width:5.616000pt;}
._c{width:6.586667pt;}
._19{width:7.840000pt;}
._9{width:8.880000pt;}
._8{width:9.888000pt;}
._e{width:10.986667pt;}
._13{width:11.893333pt;}
._d{width:12.960000pt;}
._11{width:14.378667pt;}
._14{width:15.381333pt;}
._5{width:16.293333pt;}
._4{width:17.472000pt;}
._3{width:18.645333pt;}
._6{width:19.584000pt;}
._2{width:20.522667pt;}
._15{width:21.472000pt;}
._18{width:22.432000pt;}
._17{width:23.520000pt;}
._1e{width:24.773333pt;}
._1d{width:26.293333pt;}
._10{width:27.285333pt;}
._f{width:29.088000pt;}
._1a{width:31.200000pt;}
._1b{width:37.546667pt;}
._16{width:43.146667pt;}
._23{width:58.853333pt;}
._1f{width:210.405333pt;}
._20{width:213.045333pt;}
._22{width:270.576000pt;}
._21{width:271.578667pt;}
._12{width:871.200000pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:35.200000pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.253333pt;}
.y5{bottom:192.333333pt;}
.y4{bottom:208.066667pt;}
.y3a{bottom:223.000000pt;}
.y99{bottom:224.600000pt;}
.y39{bottom:227.000000pt;}
.yaf{bottom:232.333333pt;}
.yb2{bottom:236.600000pt;}
.y62{bottom:236.866667pt;}
.y98{bottom:239.800000pt;}
.y61{bottom:240.866667pt;}
.ye6{bottom:242.733333pt;}
.y38{bottom:243.000000pt;}
.yae{bottom:247.533333pt;}
.yb1{bottom:250.200000pt;}
.y60{bottom:250.733333pt;}
.y76{bottom:251.533333pt;}
.y97{bottom:255.266667pt;}
.ye5{bottom:256.333333pt;}
.yad{bottom:263.000000pt;}
.yb0{bottom:264.066667pt;}
.y5f{bottom:264.333333pt;}
.ye4{bottom:270.200000pt;}
.y96{bottom:270.466667pt;}
.y5e{bottom:278.200000pt;}
.ye3{bottom:284.066667pt;}
.y37{bottom:284.333333pt;}
.y95{bottom:285.933333pt;}
.y5d{bottom:292.066667pt;}
.y75{bottom:293.666667pt;}
.y5c{bottom:296.066667pt;}
.ye2{bottom:297.666667pt;}
.y36{bottom:299.800000pt;}
.y94{bottom:301.133333pt;}
.y5b{bottom:306.733333pt;}
.yac{bottom:307.306667pt;}
.y74{bottom:308.893333pt;}
.ye1{bottom:311.560000pt;}
.y35{bottom:315.026667pt;}
.y93{bottom:316.640000pt;}
.yab{bottom:322.773333pt;}
.y73{bottom:324.360000pt;}
.ye0{bottom:325.440000pt;}
.y34{bottom:330.506667pt;}
.y92{bottom:331.840000pt;}
.yaa{bottom:337.960000pt;}
.ydf{bottom:339.293333pt;}
.y72{bottom:339.573333pt;}
.y33{bottom:345.706667pt;}
.y91{bottom:347.293333pt;}
.yde{bottom:352.893333pt;}
.ya9{bottom:353.440000pt;}
.y71{bottom:355.040000pt;}
.y32{bottom:361.173333pt;}
.y90{bottom:362.506667pt;}
.ydd{bottom:366.773333pt;}
.ya8{bottom:368.373333pt;}
.y70{bottom:370.226667pt;}
.y31{bottom:376.373333pt;}
.y8f{bottom:377.960000pt;}
.ydc{bottom:380.626667pt;}
.ya7{bottom:382.226667pt;}
.y6f{bottom:385.706667pt;}
.y30{bottom:391.840000pt;}
.y8e{bottom:393.173333pt;}
.ydb{bottom:394.506667pt;}
.ya6{bottom:395.840000pt;}
.y6e{bottom:400.893333pt;}
.y2f{bottom:407.026667pt;}
.yda{bottom:408.106667pt;}
.y8d{bottom:408.626667pt;}
.ya5{bottom:409.706667pt;}
.y6d{bottom:416.373333pt;}
.yd9{bottom:421.960000pt;}
.y2e{bottom:422.506667pt;}
.y8c{bottom:423.840000pt;}
.y6c{bottom:431.560000pt;}
.yd8{bottom:435.840000pt;}
.y2d{bottom:437.706667pt;}
.y8b{bottom:439.293333pt;}
.y6b{bottom:447.040000pt;}
.yd7{bottom:449.693333pt;}
.y2c{bottom:453.173333pt;}
.y8a{bottom:454.506667pt;}
.y5a{bottom:458.000000pt;}
.y6a{bottom:462.266667pt;}
.yd6{bottom:463.333333pt;}
.y2b{bottom:468.400000pt;}
.y89{bottom:470.000000pt;}
.yd5{bottom:477.200000pt;}
.y69{bottom:477.733333pt;}
.y2a{bottom:483.866667pt;}
.y88{bottom:485.200000pt;}
.yd4{bottom:491.066667pt;}
.y68{bottom:492.933333pt;}
.y29{bottom:499.066667pt;}
.y87{bottom:500.666667pt;}
.yd3{bottom:504.933333pt;}
.y67{bottom:508.400000pt;}
.y28{bottom:514.000000pt;}
.y86{bottom:515.866667pt;}
.y59{bottom:518.000000pt;}
.yd2{bottom:518.533333pt;}
.y66{bottom:523.600000pt;}
.y27{bottom:527.866667pt;}
.y85{bottom:531.333333pt;}
.yd1{bottom:532.400000pt;}
.y65{bottom:539.066667pt;}
.y26{bottom:541.733333pt;}
.yd0{bottom:546.266667pt;}
.y84{bottom:546.533333pt;}
.y64{bottom:554.266667pt;}
.y25{bottom:555.333333pt;}
.ycf{bottom:560.133333pt;}
.y83{bottom:562.000000pt;}
.y24{bottom:569.200000pt;}
.y58{bottom:569.733333pt;}
.yce{bottom:573.733333pt;}
.y82{bottom:577.200000pt;}
.y23{bottom:583.066667pt;}
.y57{bottom:584.933333pt;}
.ycd{bottom:587.600000pt;}
.y81{bottom:592.666667pt;}
.y22{bottom:596.933333pt;}
.y56{bottom:600.400000pt;}
.ycc{bottom:601.466667pt;}
.y80{bottom:607.906667pt;}
.y21{bottom:610.573333pt;}
.ycb{bottom:615.360000pt;}
.y55{bottom:615.640000pt;}
.y63{bottom:620.426667pt;}
.y7f{bottom:623.360000pt;}
.y20{bottom:624.440000pt;}
.yca{bottom:628.973333pt;}
.y54{bottom:631.093333pt;}
.y1f{bottom:638.306667pt;}
.y7e{bottom:638.560000pt;}
.yc9{bottom:642.840000pt;}
.y53{bottom:646.293333pt;}
.y1e{bottom:652.173333pt;}
.y7d{bottom:654.040000pt;}
.yc8{bottom:656.693333pt;}
.y52{bottom:661.773333pt;}
.y7c{bottom:669.240000pt;}
.yc7{bottom:670.573333pt;}
.y51{bottom:676.973333pt;}
.y1d{bottom:679.640000pt;}
.y7b{bottom:684.173333pt;}
.ya4{bottom:684.706667pt;}
.y50{bottom:692.426667pt;}
.y1c{bottom:693.506667pt;}
.y7a{bottom:698.040000pt;}
.ya3{bottom:699.893333pt;}
.y1b{bottom:707.373333pt;}
.y4f{bottom:707.626667pt;}
.y79{bottom:711.893333pt;}
.ya2{bottom:715.373333pt;}
.y1a{bottom:720.960000pt;}
.y4e{bottom:723.106667pt;}
.y78{bottom:725.760000pt;}
.ya1{bottom:730.573333pt;}
.y19{bottom:734.840000pt;}
.y4d{bottom:738.293333pt;}
.y77{bottom:739.373333pt;}
.ya0{bottom:746.040000pt;}
.y18{bottom:748.706667pt;}
.yc6{bottom:753.226667pt;}
.y4c{bottom:753.773333pt;}
.y9f{bottom:761.000000pt;}
.y17{bottom:762.600000pt;}
.yc5{bottom:767.133333pt;}
.y4b{bottom:769.000000pt;}
.y9e{bottom:774.866667pt;}
.y16{bottom:776.200000pt;}
.yc4{bottom:781.000000pt;}
.y4a{bottom:784.466667pt;}
.y9d{bottom:788.466667pt;}
.y15{bottom:790.066667pt;}
.yc3{bottom:794.600000pt;}
.y49{bottom:799.666667pt;}
.y9c{bottom:802.333333pt;}
.y14{bottom:803.933333pt;}
.yc2{bottom:808.466667pt;}
.y48{bottom:815.133333pt;}
.y9b{bottom:816.200000pt;}
.y13{bottom:817.800000pt;}
.yc1{bottom:822.333333pt;}
.y47{bottom:830.333333pt;}
.y12{bottom:831.400000pt;}
.yc0{bottom:836.200000pt;}
.y11{bottom:845.266667pt;}
.y46{bottom:845.800000pt;}
.ybf{bottom:849.800000pt;}
.y10{bottom:859.133333pt;}
.y45{bottom:861.000000pt;}
.yeb{bottom:862.866667pt;}
.ybe{bottom:863.666667pt;}
.yf{bottom:873.000000pt;}
.y44{bottom:876.466667pt;}
.yea{bottom:876.733333pt;}
.ybd{bottom:877.533333pt;}
.ye{bottom:886.600000pt;}
.ye9{bottom:890.333333pt;}
.ybc{bottom:891.400000pt;}
.y43{bottom:891.666667pt;}
.yd{bottom:901.266667pt;}
.ye8{bottom:904.226667pt;}
.ybb{bottom:905.040000pt;}
.y42{bottom:907.173333pt;}
.ye7{bottom:918.626667pt;}
.yba{bottom:918.893333pt;}
.yc{bottom:919.706667pt;}
.y41{bottom:922.373333pt;}
.yb9{bottom:932.773333pt;}
.y40{bottom:937.840000pt;}
.yb{bottom:938.106667pt;}
.yb8{bottom:946.626667pt;}
.y3f{bottom:953.040000pt;}
.y9{bottom:956.506667pt;}
.y9a{bottom:957.840000pt;}
.yb7{bottom:960.226667pt;}
.ya{bottom:961.840000pt;}
.y3e{bottom:968.506667pt;}
.yb6{bottom:974.106667pt;}
.y8{bottom:974.893333pt;}
.y3d{bottom:983.706667pt;}
.yb5{bottom:987.960000pt;}
.y7{bottom:993.293333pt;}
.y3c{bottom:999.173333pt;}
.yb4{bottom:1001.840000pt;}
.y6{bottom:1011.706667pt;}
.y3b{bottom:1014.373333pt;}
.yb3{bottom:1015.440000pt;}
.y1{bottom:1045.040000pt;}
.y3{bottom:1121.866667pt;}
.h1{height:17.633333pt;}
.hd{height:31.406250pt;}
.hf{height:34.529687pt;}
.h11{height:34.546875pt;}
.h7{height:41.854167pt;}
.h12{height:43.031250pt;}
.ha{height:43.242188pt;}
.h9{height:47.085938pt;}
.he{height:47.109375pt;}
.hc{height:47.812500pt;}
.h10{height:48.046875pt;}
.h13{height:48.375000pt;}
.h2{height:52.317708pt;}
.h4{height:52.343750pt;}
.h3{height:53.046875pt;}
.hb{height:53.750000pt;}
.h5{height:58.750000pt;}
.h6{height:62.781250pt;}
.h8{height:64.500000pt;}
.h0{height:1122.666667pt;}
.w1{width:308.906667pt;}
.w3{width:793.333310pt;}
.w2{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.320000pt;}
.x3{left:189.133322pt;}
.x10{left:193.133322pt;}
.x5{left:199.533322pt;}
.x6{left:201.933322pt;}
.x11{left:208.333322pt;}
.x7{left:227.533322pt;}
.xe{left:237.173322pt;}
.x1{left:241.706667pt;}
.x8{left:246.226655pt;}
.x16{left:275.839976pt;}
.x17{left:280.373322pt;}
.xd{left:285.173322pt;}
.xb{left:319.306655pt;}
.xf{left:381.199988pt;}
.x4{left:418.839988pt;}
.xc{left:425.506655pt;}
.x12{left:488.173310pt;}
.x13{left:492.173322pt;}
.x18{left:509.226643pt;}
.x19{left:513.799988pt;}
.x9{left:599.399976pt;}
.xa{left:604.733322pt;}
.x14{left:622.639976pt;}
.x15{left:627.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; }
  