
    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_dceda01639a746810f658bcb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2540080fdd2cbe58286361df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bf312d3d60a98fe99aaa944d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aaf7c8bbb8399b2210eb61b2.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_e097bf2594bdc760251dd2e1.woff2')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_66e6bfbf60c942ee0698c673.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c42c12bfcbbd002647efb1d3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_a5db5f3e28e92960d003c73e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_30eab31f3de742a50b69a2fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706543;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:ffb;src:url('chunks/assets/font_3f150f857d3eb56244c21d7d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6601dc3f5ec0f2968a0f26ab.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ffc229f2754f2516df0ab0c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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:-167.746500px;}
.v1{vertical-align:-124.201800px;}
.v2{vertical-align:-89.642700px;}
.v5{vertical-align:-76.321980px;}
.v4{vertical-align:-62.278200px;}
.v7{vertical-align:-33.120000px;}
.v6{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.090000px;}
.ls17{letter-spacing:-0.028800px;}
.ls19{letter-spacing:-0.018720px;}
.ls12{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.009360px;}
.ls16{letter-spacing:0.014400px;}
.lse{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.046116px;}
.lsf{letter-spacing:0.052704px;}
.ls10{letter-spacing:0.059292px;}
.ls13{letter-spacing:0.071928px;}
.ls1b{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.180000px;}
.ls14{letter-spacing:11.264904px;}
.ls5{letter-spacing:11.280528px;}
.ls4{letter-spacing:11.286000px;}
.ls15{letter-spacing:11.288340px;}
.ls3{letter-spacing:11.303964px;}
.ls1{letter-spacing:11.327400px;}
.ls6{letter-spacing:11.516400px;}
.ls2{letter-spacing:11.646000px;}
.ls7{letter-spacing:63.605304px;}
.lsa{letter-spacing:69.946200px;}
.ls9{letter-spacing:194.457996px;}
.ls0{letter-spacing:233.028000px;}
.lsc{letter-spacing:470.269800px;}
.ls11{letter-spacing:492.163128px;}
.ls8{letter-spacing:874.683468px;}
.lsb{letter-spacing:902.988000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws4{word-spacing:-41.733360px;}
.ws0{word-spacing:-33.044760px;}
.ws1{word-spacing:-33.021324px;}
.ws2{word-spacing:-32.997888px;}
.ws3{word-spacing:-32.982264px;}
.ws10{word-spacing:-11.970000px;}
.wsf{word-spacing:-9.720000px;}
.ws7{word-spacing:-0.220500px;}
.ws9{word-spacing:-0.072000px;}
.ws8{word-spacing:-0.043200px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.006588px;}
.wsc{word-spacing:0.013176px;}
.ws6{word-spacing:0.095904px;}
.wsa{word-spacing:0.302400px;}
.wsd{word-spacing:2.878956px;}
._1{margin-left:-17.952300px;}
._0{margin-left:-1.108800px;}
._3{width:1.011240px;}
._4{width:2.356080px;}
._2{width:656.276796px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fsc{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs4{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:78.120000px;}
.fsb{font-size:83.880000px;}
.fs7{font-size:90.000000px;}
.fsa{font-size:96.120000px;}
.fs1{font-size:119.880000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:150.120000px;}
.y55{bottom:-78.120000px;}
.y43{bottom:-39.240000px;}
.y68{bottom:-38.070000px;}
.y45{bottom:-36.090000px;}
.y49{bottom:-36.000000px;}
.y47{bottom:-35.010000px;}
.y57{bottom:-24.570000px;}
.y61{bottom:-16.290000px;}
.y5d{bottom:-16.200000px;}
.y73{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y66{bottom:3.510000px;}
.y59{bottom:4.050000px;}
.y2f{bottom:57.150000px;}
.y6a{bottom:60.750000px;}
.y2e{bottom:90.032310px;}
.y2d{bottom:108.931635px;}
.y4d{bottom:109.080000px;}
.y52{bottom:109.710000px;}
.y4a{bottom:126.270000px;}
.y4c{bottom:130.230000px;}
.y4b{bottom:141.390000px;}
.y2c{bottom:146.911455px;}
.y51{bottom:147.330000px;}
.y2b{bottom:165.901365px;}
.y50{bottom:170.640000px;}
.y2a{bottom:184.891275px;}
.y7f{bottom:201.510000px;}
.y29{bottom:203.790600px;}
.y4f{bottom:204.120000px;}
.y28{bottom:223.140450px;}
.y39{bottom:234.300000px;}
.y27{bottom:243.120600px;}
.y26{bottom:260.760630px;}
.y79{bottom:274.800000px;}
.y48{bottom:276.420000px;}
.y69{bottom:276.780000px;}
.y25{bottom:279.659955px;}
.y5a{bottom:285.060000px;}
.y38{bottom:290.100000px;}
.y78{bottom:297.300000px;}
.y24{bottom:298.740450px;}
.y23{bottom:318.090450px;}
.y77{bottom:319.800000px;}
.y46{bottom:329.160000px;}
.y22{bottom:338.700450px;}
.y76{bottom:342.300000px;}
.y44{bottom:344.100000px;}
.y65{bottom:354.450000px;}
.y63{bottom:354.900000px;}
.y7e{bottom:356.880000px;}
.y21{bottom:360.300600px;}
.y42{bottom:361.560000px;}
.y75{bottom:364.800000px;}
.y64{bottom:376.950000px;}
.y62{bottom:377.040000px;}
.y6f{bottom:386.220000px;}
.y20{bottom:386.220600px;}
.y74{bottom:387.300000px;}
.y37{bottom:390.180000px;}
.y6e{bottom:406.920000px;}
.y5b{bottom:408.360000px;}
.y5f{bottom:408.900000px;}
.y1f{bottom:412.050600px;}
.y72{bottom:427.890000px;}
.y1e{bottom:437.970600px;}
.y58{bottom:455.250000px;}
.y60{bottom:461.550000px;}
.y5e{bottom:462.090000px;}
.y5c{bottom:462.900000px;}
.y1d{bottom:463.800600px;}
.y41{bottom:478.740000px;}
.y1c{bottom:489.720600px;}
.y54{bottom:489.900000px;}
.y36{bottom:490.170000px;}
.y3e{bottom:501.780000px;}
.y1b{bottom:518.610450px;}
.y84{bottom:528.330000px;}
.y7d{bottom:545.340000px;}
.y85{bottom:547.230000px;}
.y1a{bottom:561.540450px;}
.y35{bottom:590.160000px;}
.y19{bottom:603.120450px;}
.y18{bottom:641.280900px;}
.y17{bottom:656.850450px;}
.y16{bottom:672.330900px;}
.y83{bottom:683.610000px;}
.y15{bottom:687.900450px;}
.y34{bottom:690.270000px;}
.y14{bottom:703.380900px;}
.y6d{bottom:710.070000px;}
.y7c{bottom:711.780000px;}
.y6c{bottom:730.770000px;}
.y13{bottom:734.430900px;}
.y33{bottom:757.050000px;}
.y12{bottom:765.480900px;}
.y11{bottom:781.050450px;}
.y71{bottom:787.560000px;}
.y10{bottom:796.530900px;}
.y82{bottom:805.830000px;}
.yf{bottom:812.100450px;}
.y3d{bottom:813.930000px;}
.y3a{bottom:823.470000px;}
.ye{bottom:827.580900px;}
.yd{bottom:843.150450px;}
.y7b{bottom:850.470000px;}
.y32{bottom:856.590000px;}
.y6b{bottom:862.530000px;}
.y53{bottom:871.350000px;}
.y67{bottom:873.780000px;}
.yc{bottom:874.200450px;}
.y3c{bottom:902.310000px;}
.y31{bottom:924.000000px;}
.yb{bottom:932.247075px;}
.y56{bottom:936.330000px;}
.y86{bottom:936.870000px;}
.ya{bottom:954.657750px;}
.y81{bottom:961.080000px;}
.y9{bottom:977.068425px;}
.y8{bottom:999.479100px;}
.y4e{bottom:1006.260000px;}
.y7{bottom:1021.889775px;}
.y6{bottom:1044.300450px;}
.y3b{bottom:1054.890000px;}
.y7a{bottom:1055.610000px;}
.y70{bottom:1058.580000px;}
.y5{bottom:1066.799775px;}
.y4{bottom:1089.210450px;}
.y40{bottom:1097.910000px;}
.y3{bottom:1110.450450px;}
.y80{bottom:1116.450000px;}
.y30{bottom:1133.190000px;}
.y3f{bottom:1135.980000px;}
.y2{bottom:1160.490900px;}
.y1{bottom:1176.060450px;}
.h14{height:14.130000px;}
.h20{height:15.030000px;}
.h1f{height:15.120000px;}
.h15{height:17.370000px;}
.h16{height:18.450000px;}
.h23{height:22.500000px;}
.h13{height:33.455215px;}
.h17{height:38.158594px;}
.h25{height:40.590000px;}
.h24{height:44.938652px;}
.h1a{height:46.968223px;}
.h19{height:46.991602px;}
.h10{height:49.113281px;}
.h26{height:49.213095px;}
.h1{height:56.320312px;}
.h11{height:56.807402px;}
.h12{height:57.298887px;}
.h18{height:59.004492px;}
.h9{height:62.703281px;}
.h8{height:68.710781px;}
.hb{height:70.664062px;}
.he{height:74.004654px;}
.hf{height:74.953125px;}
.h7{height:75.093750px;}
.h2{height:81.476719px;}
.h27{height:86.215422px;}
.hd{height:87.320391px;}
.h6{height:93.867188px;}
.hc{height:100.062422px;}
.h1d{height:120.150000px;}
.h21{height:144.450000px;}
.h4{height:150.187500px;}
.h1e{height:153.360000px;}
.h3{height:156.570469px;}
.h5{height:156.571069px;}
.h1c{height:191.100000px;}
.h1b{height:203.880000px;}
.h22{height:309.060000px;}
.ha{height:1262.879975px;}
.h0{height:1263.000000px;}
.w10{width:20.430000px;}
.w13{width:21.150000px;}
.w11{width:21.240000px;}
.w12{width:21.330000px;}
.wc{width:25.650000px;}
.wa{width:25.740000px;}
.wb{width:25.770000px;}
.w3{width:28.620000px;}
.w5{width:28.710000px;}
.w4{width:29.160000px;}
.we{width:427.710000px;}
.wd{width:433.200000px;}
.w9{width:470.760000px;}
.w8{width:477.150000px;}
.wf{width:512.340000px;}
.w6{width:551.580000px;}
.w7{width:564.900000px;}
.w0{width:892.500000px;}
.w1{width:892.980010px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:5.220000px;}
.x14{left:10.800000px;}
.x27{left:14.130000px;}
.x1{left:85.050000px;}
.x6{left:106.289127px;}
.x8{left:110.070000px;}
.x2b{left:126.480000px;}
.xb{left:127.650000px;}
.x9{left:145.710000px;}
.xc{left:148.980000px;}
.xe{left:154.650000px;}
.xd{left:164.910000px;}
.x7{left:166.770000px;}
.x16{left:169.680000px;}
.xf{left:175.620000px;}
.x3{left:178.650000px;}
.x10{left:184.260000px;}
.x18{left:222.690000px;}
.x19{left:226.920000px;}
.x15{left:229.800000px;}
.x13{left:232.050000px;}
.x17{left:241.050000px;}
.x4{left:254.070000px;}
.xa{left:276.479631px;}
.x1a{left:318.540000px;}
.x1b{left:324.300000px;}
.x5{left:335.790063px;}
.x1d{left:336.990000px;}
.x23{left:352.560000px;}
.x22{left:354.180000px;}
.x1e{left:375.900000px;}
.x28{left:381.930000px;}
.x20{left:386.070000px;}
.x29{left:387.600000px;}
.x1c{left:394.710000px;}
.x25{left:408.570000px;}
.x1f{left:448.890000px;}
.x2{left:457.110000px;}
.x21{left:490.740000px;}
.x2a{left:534.840000px;}
.x24{left:536.370000px;}
.x26{left:539.430000px;}
.x11{left:542.760000px;}
.x2d{left:638.820000px;}
.x2e{left:659.250000px;}
.x2f{left:680.490000px;}
.x12{left:701.550000px;}
.x30{left:722.970000px;}
@media print{
.v3{vertical-align:-149.108000pt;}
.v1{vertical-align:-110.401600pt;}
.v2{vertical-align:-79.682400pt;}
.v5{vertical-align:-67.841760pt;}
.v4{vertical-align:-55.358400pt;}
.v7{vertical-align:-29.440000pt;}
.v6{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.080000pt;}
.ls17{letter-spacing:-0.025600pt;}
.ls19{letter-spacing:-0.016640pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.008320pt;}
.ls16{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.040992pt;}
.lsf{letter-spacing:0.046848pt;}
.ls10{letter-spacing:0.052704pt;}
.ls13{letter-spacing:0.063936pt;}
.ls1b{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls14{letter-spacing:10.013248pt;}
.ls5{letter-spacing:10.027136pt;}
.ls4{letter-spacing:10.032000pt;}
.ls15{letter-spacing:10.034080pt;}
.ls3{letter-spacing:10.047968pt;}
.ls1{letter-spacing:10.068800pt;}
.ls6{letter-spacing:10.236800pt;}
.ls2{letter-spacing:10.352000pt;}
.ls7{letter-spacing:56.538048pt;}
.lsa{letter-spacing:62.174400pt;}
.ls9{letter-spacing:172.851552pt;}
.ls0{letter-spacing:207.136000pt;}
.lsc{letter-spacing:418.017600pt;}
.ls11{letter-spacing:437.478336pt;}
.ls8{letter-spacing:777.496416pt;}
.lsb{letter-spacing:802.656000pt;}
.wse{word-spacing:-64.000000pt;}
.ws4{word-spacing:-37.096320pt;}
.ws0{word-spacing:-29.373120pt;}
.ws1{word-spacing:-29.352288pt;}
.ws2{word-spacing:-29.331456pt;}
.ws3{word-spacing:-29.317568pt;}
.ws10{word-spacing:-10.640000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws7{word-spacing:-0.196000pt;}
.ws9{word-spacing:-0.064000pt;}
.ws8{word-spacing:-0.038400pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.005856pt;}
.wsc{word-spacing:0.011712pt;}
.ws6{word-spacing:0.085248pt;}
.wsa{word-spacing:0.268800pt;}
.wsd{word-spacing:2.559072pt;}
._1{margin-left:-15.957600pt;}
._0{margin-left:-0.985600pt;}
._3{width:0.898880pt;}
._4{width:2.094293pt;}
._2{width:583.357152pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs4{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.440000pt;}
.fsb{font-size:74.560000pt;}
.fs7{font-size:80.000000pt;}
.fsa{font-size:85.440000pt;}
.fs1{font-size:106.560000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:133.440000pt;}
.y55{bottom:-69.440000pt;}
.y43{bottom:-34.880000pt;}
.y68{bottom:-33.840000pt;}
.y45{bottom:-32.080000pt;}
.y49{bottom:-32.000000pt;}
.y47{bottom:-31.120000pt;}
.y57{bottom:-21.840000pt;}
.y61{bottom:-14.480000pt;}
.y5d{bottom:-14.400000pt;}
.y73{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:3.120000pt;}
.y59{bottom:3.600000pt;}
.y2f{bottom:50.800000pt;}
.y6a{bottom:54.000000pt;}
.y2e{bottom:80.028720pt;}
.y2d{bottom:96.828120pt;}
.y4d{bottom:96.960000pt;}
.y52{bottom:97.520000pt;}
.y4a{bottom:112.240000pt;}
.y4c{bottom:115.760000pt;}
.y4b{bottom:125.680000pt;}
.y2c{bottom:130.587960pt;}
.y51{bottom:130.960000pt;}
.y2b{bottom:147.467880pt;}
.y50{bottom:151.680000pt;}
.y2a{bottom:164.347800pt;}
.y7f{bottom:179.120000pt;}
.y29{bottom:181.147200pt;}
.y4f{bottom:181.440000pt;}
.y28{bottom:198.347067pt;}
.y39{bottom:208.266667pt;}
.y27{bottom:216.107200pt;}
.y26{bottom:231.787227pt;}
.y79{bottom:244.266667pt;}
.y48{bottom:245.706667pt;}
.y69{bottom:246.026667pt;}
.y25{bottom:248.586627pt;}
.y5a{bottom:253.386667pt;}
.y38{bottom:257.866667pt;}
.y78{bottom:264.266667pt;}
.y24{bottom:265.547067pt;}
.y23{bottom:282.747067pt;}
.y77{bottom:284.266667pt;}
.y46{bottom:292.586667pt;}
.y22{bottom:301.067067pt;}
.y76{bottom:304.266667pt;}
.y44{bottom:305.866667pt;}
.y65{bottom:315.066667pt;}
.y63{bottom:315.466667pt;}
.y7e{bottom:317.226667pt;}
.y21{bottom:320.267200pt;}
.y42{bottom:321.386667pt;}
.y75{bottom:324.266667pt;}
.y64{bottom:335.066667pt;}
.y62{bottom:335.146667pt;}
.y6f{bottom:343.306667pt;}
.y20{bottom:343.307200pt;}
.y74{bottom:344.266667pt;}
.y37{bottom:346.826667pt;}
.y6e{bottom:361.706667pt;}
.y5b{bottom:362.986667pt;}
.y5f{bottom:363.466667pt;}
.y1f{bottom:366.267200pt;}
.y72{bottom:380.346667pt;}
.y1e{bottom:389.307200pt;}
.y58{bottom:404.666667pt;}
.y60{bottom:410.266667pt;}
.y5e{bottom:410.746667pt;}
.y5c{bottom:411.466667pt;}
.y1d{bottom:412.267200pt;}
.y41{bottom:425.546667pt;}
.y1c{bottom:435.307200pt;}
.y54{bottom:435.466667pt;}
.y36{bottom:435.706667pt;}
.y3e{bottom:446.026667pt;}
.y1b{bottom:460.987067pt;}
.y84{bottom:469.626667pt;}
.y7d{bottom:484.746667pt;}
.y85{bottom:486.426667pt;}
.y1a{bottom:499.147067pt;}
.y35{bottom:524.586667pt;}
.y19{bottom:536.107067pt;}
.y18{bottom:570.027467pt;}
.y17{bottom:583.867067pt;}
.y16{bottom:597.627467pt;}
.y83{bottom:607.653333pt;}
.y15{bottom:611.467067pt;}
.y34{bottom:613.573333pt;}
.y14{bottom:625.227467pt;}
.y6d{bottom:631.173333pt;}
.y7c{bottom:632.693333pt;}
.y6c{bottom:649.573333pt;}
.y13{bottom:652.827467pt;}
.y33{bottom:672.933333pt;}
.y12{bottom:680.427467pt;}
.y11{bottom:694.267067pt;}
.y71{bottom:700.053333pt;}
.y10{bottom:708.027467pt;}
.y82{bottom:716.293333pt;}
.yf{bottom:721.867067pt;}
.y3d{bottom:723.493333pt;}
.y3a{bottom:731.973333pt;}
.ye{bottom:735.627467pt;}
.yd{bottom:749.467067pt;}
.y7b{bottom:755.973333pt;}
.y32{bottom:761.413333pt;}
.y6b{bottom:766.693333pt;}
.y53{bottom:774.533333pt;}
.y67{bottom:776.693333pt;}
.yc{bottom:777.067067pt;}
.y3c{bottom:802.053333pt;}
.y31{bottom:821.333333pt;}
.yb{bottom:828.664067pt;}
.y56{bottom:832.293333pt;}
.y86{bottom:832.773333pt;}
.ya{bottom:848.584667pt;}
.y81{bottom:854.293333pt;}
.y9{bottom:868.505267pt;}
.y8{bottom:888.425867pt;}
.y4e{bottom:894.453333pt;}
.y7{bottom:908.346467pt;}
.y6{bottom:928.267067pt;}
.y3b{bottom:937.680000pt;}
.y7a{bottom:938.320000pt;}
.y70{bottom:940.960000pt;}
.y5{bottom:948.266467pt;}
.y4{bottom:968.187067pt;}
.y40{bottom:975.920000pt;}
.y3{bottom:987.067067pt;}
.y80{bottom:992.400000pt;}
.y30{bottom:1007.280000pt;}
.y3f{bottom:1009.760000pt;}
.y2{bottom:1031.547467pt;}
.y1{bottom:1045.387067pt;}
.h14{height:12.560000pt;}
.h20{height:13.360000pt;}
.h1f{height:13.440000pt;}
.h15{height:15.440000pt;}
.h16{height:16.400000pt;}
.h23{height:20.000000pt;}
.h13{height:29.737969pt;}
.h17{height:33.918750pt;}
.h25{height:36.080000pt;}
.h24{height:39.945469pt;}
.h1a{height:41.749531pt;}
.h19{height:41.770312pt;}
.h10{height:43.656250pt;}
.h26{height:43.744973pt;}
.h1{height:50.062500pt;}
.h11{height:50.495469pt;}
.h12{height:50.932344pt;}
.h18{height:52.448437pt;}
.h9{height:55.736250pt;}
.h8{height:61.076250pt;}
.hb{height:62.812500pt;}
.he{height:65.781915pt;}
.hf{height:66.625000pt;}
.h7{height:66.750000pt;}
.h2{height:72.423750pt;}
.h27{height:76.635931pt;}
.hd{height:77.618125pt;}
.h6{height:83.437500pt;}
.hc{height:88.944375pt;}
.h1d{height:106.800000pt;}
.h21{height:128.400000pt;}
.h4{height:133.500000pt;}
.h1e{height:136.320000pt;}
.h3{height:139.173750pt;}
.h5{height:139.174283pt;}
.h1c{height:169.866667pt;}
.h1b{height:181.226667pt;}
.h22{height:274.720000pt;}
.ha{height:1122.559977pt;}
.h0{height:1122.666667pt;}
.w10{width:18.160000pt;}
.w13{width:18.800000pt;}
.w11{width:18.880000pt;}
.w12{width:18.960000pt;}
.wc{width:22.800000pt;}
.wa{width:22.880000pt;}
.wb{width:22.906667pt;}
.w3{width:25.440000pt;}
.w5{width:25.520000pt;}
.w4{width:25.920000pt;}
.we{width:380.186667pt;}
.wd{width:385.066667pt;}
.w9{width:418.453333pt;}
.w8{width:424.133333pt;}
.wf{width:455.413333pt;}
.w6{width:490.293333pt;}
.w7{width:502.133333pt;}
.w0{width:793.333333pt;}
.w1{width:793.760009pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:4.640000pt;}
.x14{left:9.600000pt;}
.x27{left:12.560000pt;}
.x1{left:75.600000pt;}
.x6{left:94.479224pt;}
.x8{left:97.840000pt;}
.x2b{left:112.426667pt;}
.xb{left:113.466667pt;}
.x9{left:129.520000pt;}
.xc{left:132.426667pt;}
.xe{left:137.466667pt;}
.xd{left:146.586667pt;}
.x7{left:148.240000pt;}
.x16{left:150.826667pt;}
.xf{left:156.106667pt;}
.x3{left:158.800000pt;}
.x10{left:163.786667pt;}
.x18{left:197.946667pt;}
.x19{left:201.706667pt;}
.x15{left:204.266667pt;}
.x13{left:206.266667pt;}
.x17{left:214.266667pt;}
.x4{left:225.840000pt;}
.xa{left:245.759672pt;}
.x1a{left:283.146667pt;}
.x1b{left:288.266667pt;}
.x5{left:298.480056pt;}
.x1d{left:299.546667pt;}
.x23{left:313.386667pt;}
.x22{left:314.826667pt;}
.x1e{left:334.133333pt;}
.x28{left:339.493333pt;}
.x20{left:343.173333pt;}
.x29{left:344.533333pt;}
.x1c{left:350.853333pt;}
.x25{left:363.173333pt;}
.x1f{left:399.013333pt;}
.x2{left:406.320000pt;}
.x21{left:436.213333pt;}
.x2a{left:475.413333pt;}
.x24{left:476.773333pt;}
.x26{left:479.493333pt;}
.x11{left:482.453333pt;}
.x2d{left:567.840000pt;}
.x2e{left:586.000000pt;}
.x2f{left:604.880000pt;}
.x12{left:623.600000pt;}
.x30{left:642.640000pt;}
}




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