
    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_b53821d1a63a392c40a73f49.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a8d5b216daf1d148c9aec10b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b6d76a2d6a30bdc4f74bada2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_67ec135d9449046589df8bcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e6a60b5eb5e4d1c4ada10dd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_239a1ec339dbaf39c90d909e.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_bfe8a7c2169a4249205ac38e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_265cf7ce08f7491c4555de59.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_07a883148c226e04d1d98192.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_42431a8ef31ec93d846b5060.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.378906;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.728000px;}
.ls17{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.272000px;}
.ls13{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.160000px;}
.ls6{letter-spacing:6.480000px;}
.ls7{letter-spacing:16.560000px;}
.ls16{letter-spacing:20.880000px;}
.ls11{letter-spacing:53.424000px;}
.lsf{letter-spacing:56.448000px;}
.ls2{letter-spacing:98.208000px;}
.lsa{letter-spacing:158.544000px;}
.lsd{letter-spacing:282.826560px;}
.lse{letter-spacing:390.826560px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.480000px;}
.ws3{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.352000px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-5.048640px;}
._8{margin-left:-4.040640px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.301120px;}
._b{width:3.317760px;}
._9{width:4.604160px;}
._c{width:5.777280px;}
._d{width:7.275840px;}
._6{width:8.496000px;}
._5{width:9.965280px;}
._4{width:10.990560px;}
._a{width:12.902400px;}
._10{width:14.067360px;}
._13{width:15.782400px;}
._14{width:16.868160px;}
._f{width:19.872000px;}
._e{width:21.470400px;}
._7{width:24.005280px;}
._12{width:25.819680px;}
._15{width:27.541440px;}
._17{width:28.710720px;}
._16{width:30.677280px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.yb0{bottom:115.236000px;}
.y60{bottom:126.396000px;}
.y36{bottom:127.476000px;}
.y83{bottom:128.916000px;}
.yaf{bottom:139.356000px;}
.y5f{bottom:148.716000px;}
.y35{bottom:150.150000px;}
.y82{bottom:154.110000px;}
.yae{bottom:163.110000px;}
.y5e{bottom:171.030000px;}
.y34{bottom:172.470000px;}
.y81{bottom:177.510000px;}
.yad{bottom:186.870000px;}
.y5d{bottom:193.755000px;}
.y33{bottom:194.835000px;}
.y80{bottom:201.675000px;}
.yac{bottom:210.675000px;}
.y5c{bottom:216.075000px;}
.y32{bottom:217.155000px;}
.y7f{bottom:226.875000px;}
.yab{bottom:234.435000px;}
.y5b{bottom:238.395000px;}
.y31{bottom:239.475000px;}
.y7e{bottom:250.275000px;}
.yaa{bottom:258.195000px;}
.y5a{bottom:260.715000px;}
.y30{bottom:261.795000px;}
.y7d{bottom:274.035000px;}
.ya9{bottom:281.955000px;}
.y59{bottom:283.035000px;}
.y2f{bottom:284.115000px;}
.y7c{bottom:299.235000px;}
.y58{bottom:305.355000px;}
.ya8{bottom:305.715000px;}
.y2e{bottom:306.435000px;}
.y7b{bottom:322.665000px;}
.y57{bottom:327.705000px;}
.y2d{bottom:328.785000px;}
.ya7{bottom:329.505000px;}
.y7a{bottom:345.345000px;}
.y56{bottom:350.025000px;}
.y2c{bottom:351.105000px;}
.ya6{bottom:353.625000px;}
.y79{bottom:367.665000px;}
.y55{bottom:372.345000px;}
.y2b{bottom:373.425000px;}
.ya5{bottom:375.945000px;}
.y78{bottom:389.985000px;}
.y54{bottom:394.665000px;}
.y2a{bottom:395.745000px;}
.ya4{bottom:398.265000px;}
.y77{bottom:412.305000px;}
.y53{bottom:416.985000px;}
.y29{bottom:418.065000px;}
.ya3{bottom:420.585000px;}
.y76{bottom:434.625000px;}
.y52{bottom:439.305000px;}
.y28{bottom:440.385000px;}
.ya2{bottom:444.345000px;}
.y75{bottom:456.990000px;}
.y51{bottom:461.670000px;}
.y27{bottom:462.750000px;}
.ya1{bottom:468.150000px;}
.y74{bottom:479.310000px;}
.y50{bottom:483.990000px;}
.y26{bottom:485.070000px;}
.ya0{bottom:491.910000px;}
.y73{bottom:501.990000px;}
.y4f{bottom:506.310000px;}
.y25{bottom:507.390000px;}
.y9f{bottom:515.670000px;}
.y72{bottom:524.310000px;}
.y4e{bottom:528.630000px;}
.y24{bottom:529.710000px;}
.y9e{bottom:539.430000px;}
.y71{bottom:546.630000px;}
.y4d{bottom:550.950000px;}
.y23{bottom:552.030000px;}
.y9d{bottom:563.190000px;}
.y70{bottom:568.950000px;}
.y22{bottom:574.380000px;}
.y4c{bottom:574.740000px;}
.y9c{bottom:587.340000px;}
.y6f{bottom:591.300000px;}
.y21{bottom:596.700000px;}
.y4b{bottom:598.860000px;}
.y9b{bottom:611.100000px;}
.y6e{bottom:613.620000px;}
.y20{bottom:619.380000px;}
.y4a{bottom:622.620000px;}
.y9a{bottom:634.860000px;}
.y6d{bottom:635.940000px;}
.y1f{bottom:641.700000px;}
.y49{bottom:646.380000px;}
.y6c{bottom:658.260000px;}
.y99{bottom:658.620000px;}
.y1e{bottom:664.020000px;}
.y48{bottom:670.140000px;}
.y6b{bottom:680.580000px;}
.y98{bottom:682.380000px;}
.y1d{bottom:686.340000px;}
.y47{bottom:693.900000px;}
.y6a{bottom:702.930000px;}
.y97{bottom:706.170000px;}
.y1c{bottom:708.690000px;}
.y46{bottom:717.690000px;}
.y69{bottom:725.250000px;}
.y96{bottom:729.930000px;}
.y1b{bottom:731.010000px;}
.y45{bottom:741.450000px;}
.y68{bottom:747.570000px;}
.y1a{bottom:753.330000px;}
.y95{bottom:753.690000px;}
.yb7{bottom:763.770000px;}
.y44{bottom:765.210000px;}
.y67{bottom:769.890000px;}
.y19{bottom:775.650000px;}
.y94{bottom:777.810000px;}
.yb6{bottom:787.530000px;}
.y43{bottom:788.970000px;}
.y66{bottom:792.210000px;}
.y18{bottom:797.610000px;}
.y93{bottom:801.570000px;}
.yb5{bottom:811.650000px;}
.y42{bottom:813.090000px;}
.y65{bottom:814.530000px;}
.y17{bottom:820.290000px;}
.y92{bottom:825.375000px;}
.yb4{bottom:835.455000px;}
.y41{bottom:836.895000px;}
.y16{bottom:842.655000px;}
.y91{bottom:847.335000px;}
.y64{bottom:859.215000px;}
.y40{bottom:860.655000px;}
.y15{bottom:864.975000px;}
.y90{bottom:871.455000px;}
.y63{bottom:881.535000px;}
.yb3{bottom:882.975000px;}
.y3f{bottom:884.415000px;}
.y14{bottom:887.295000px;}
.y8f{bottom:895.935000px;}
.y62{bottom:903.855000px;}
.yb2{bottom:906.735000px;}
.y3e{bottom:908.175000px;}
.y13{bottom:909.615000px;}
.y8e{bottom:920.775000px;}
.y61{bottom:922.215000px;}
.yb1{bottom:930.495000px;}
.y12{bottom:931.935000px;}
.y8d{bottom:943.455000px;}
.y11{bottom:954.285000px;}
.y8c{bottom:966.165000px;}
.y10{bottom:976.245000px;}
.y3d{bottom:976.605000px;}
.y8b{bottom:990.645000px;}
.yf{bottom:998.565000px;}
.y3c{bottom:998.925000px;}
.y8a{bottom:1015.485000px;}
.ye{bottom:1021.245000px;}
.y89{bottom:1038.165000px;}
.yd{bottom:1043.205000px;}
.y3b{bottom:1043.565000px;}
.y88{bottom:1060.485000px;}
.yc{bottom:1065.885000px;}
.y87{bottom:1082.850000px;}
.y3a{bottom:1088.610000px;}
.yb{bottom:1089.690000px;}
.y86{bottom:1106.610000px;}
.y39{bottom:1110.930000px;}
.ya{bottom:1119.570000px;}
.y85{bottom:1131.810000px;}
.y38{bottom:1133.250000px;}
.y9{bottom:1149.450000px;}
.y84{bottom:1155.210000px;}
.y37{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.hb{height:50.273438px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.h8{height:68.073047px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:74.004654px;}
.hd{height:79.453125px;}
.h9{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:43.590000px;}
.x5{left:95.796000px;}
.x12{left:106.595987px;}
.xa{left:110.195987px;}
.x15{left:117.035987px;}
.x16{left:127.835987px;}
.xb{left:142.631987px;}
.x11{left:149.111987px;}
.x3{left:190.874987px;}
.x14{left:203.114987px;}
.xf{left:242.744987px;}
.x6{left:290.634000px;}
.xc{left:318.344987px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xe{left:374.909987px;}
.x7{left:394.710000px;}
.xd{left:473.219987px;}
.x9{left:498.780000px;}
.x13{left:686.414987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.536000pt;}
.ls17{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.130667pt;}
.ls13{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls7{letter-spacing:14.720000pt;}
.ls16{letter-spacing:18.560000pt;}
.ls11{letter-spacing:47.488000pt;}
.lsf{letter-spacing:50.176000pt;}
.ls2{letter-spacing:87.296000pt;}
.lsa{letter-spacing:140.928000pt;}
.lsd{letter-spacing:251.401387pt;}
.lse{letter-spacing:347.401387pt;}
.ws7{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.760000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.487680pt;}
._8{margin-left:-3.591680pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.045440pt;}
._b{width:2.949120pt;}
._9{width:4.092587pt;}
._c{width:5.135360pt;}
._d{width:6.467413pt;}
._6{width:7.552000pt;}
._5{width:8.858027pt;}
._4{width:9.769387pt;}
._a{width:11.468800pt;}
._10{width:12.504320pt;}
._13{width:14.028800pt;}
._14{width:14.993920pt;}
._f{width:17.664000pt;}
._e{width:19.084800pt;}
._7{width:21.338027pt;}
._12{width:22.950827pt;}
._15{width:24.481280pt;}
._17{width:25.520640pt;}
._16{width:27.268693pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.yb0{bottom:102.432000pt;}
.y60{bottom:112.352000pt;}
.y36{bottom:113.312000pt;}
.y83{bottom:114.592000pt;}
.yaf{bottom:123.872000pt;}
.y5f{bottom:132.192000pt;}
.y35{bottom:133.466667pt;}
.y82{bottom:136.986667pt;}
.yae{bottom:144.986667pt;}
.y5e{bottom:152.026667pt;}
.y34{bottom:153.306667pt;}
.y81{bottom:157.786667pt;}
.yad{bottom:166.106667pt;}
.y5d{bottom:172.226667pt;}
.y33{bottom:173.186667pt;}
.y80{bottom:179.266667pt;}
.yac{bottom:187.266667pt;}
.y5c{bottom:192.066667pt;}
.y32{bottom:193.026667pt;}
.y7f{bottom:201.666667pt;}
.yab{bottom:208.386667pt;}
.y5b{bottom:211.906667pt;}
.y31{bottom:212.866667pt;}
.y7e{bottom:222.466667pt;}
.yaa{bottom:229.506667pt;}
.y5a{bottom:231.746667pt;}
.y30{bottom:232.706667pt;}
.y7d{bottom:243.586667pt;}
.ya9{bottom:250.626667pt;}
.y59{bottom:251.586667pt;}
.y2f{bottom:252.546667pt;}
.y7c{bottom:265.986667pt;}
.y58{bottom:271.426667pt;}
.ya8{bottom:271.746667pt;}
.y2e{bottom:272.386667pt;}
.y7b{bottom:286.813333pt;}
.y57{bottom:291.293333pt;}
.y2d{bottom:292.253333pt;}
.ya7{bottom:292.893333pt;}
.y7a{bottom:306.973333pt;}
.y56{bottom:311.133333pt;}
.y2c{bottom:312.093333pt;}
.ya6{bottom:314.333333pt;}
.y79{bottom:326.813333pt;}
.y55{bottom:330.973333pt;}
.y2b{bottom:331.933333pt;}
.ya5{bottom:334.173333pt;}
.y78{bottom:346.653333pt;}
.y54{bottom:350.813333pt;}
.y2a{bottom:351.773333pt;}
.ya4{bottom:354.013333pt;}
.y77{bottom:366.493333pt;}
.y53{bottom:370.653333pt;}
.y29{bottom:371.613333pt;}
.ya3{bottom:373.853333pt;}
.y76{bottom:386.333333pt;}
.y52{bottom:390.493333pt;}
.y28{bottom:391.453333pt;}
.ya2{bottom:394.973333pt;}
.y75{bottom:406.213333pt;}
.y51{bottom:410.373333pt;}
.y27{bottom:411.333333pt;}
.ya1{bottom:416.133333pt;}
.y74{bottom:426.053333pt;}
.y50{bottom:430.213333pt;}
.y26{bottom:431.173333pt;}
.ya0{bottom:437.253333pt;}
.y73{bottom:446.213333pt;}
.y4f{bottom:450.053333pt;}
.y25{bottom:451.013333pt;}
.y9f{bottom:458.373333pt;}
.y72{bottom:466.053333pt;}
.y4e{bottom:469.893333pt;}
.y24{bottom:470.853333pt;}
.y9e{bottom:479.493333pt;}
.y71{bottom:485.893333pt;}
.y4d{bottom:489.733333pt;}
.y23{bottom:490.693333pt;}
.y9d{bottom:500.613333pt;}
.y70{bottom:505.733333pt;}
.y22{bottom:510.560000pt;}
.y4c{bottom:510.880000pt;}
.y9c{bottom:522.080000pt;}
.y6f{bottom:525.600000pt;}
.y21{bottom:530.400000pt;}
.y4b{bottom:532.320000pt;}
.y9b{bottom:543.200000pt;}
.y6e{bottom:545.440000pt;}
.y20{bottom:550.560000pt;}
.y4a{bottom:553.440000pt;}
.y9a{bottom:564.320000pt;}
.y6d{bottom:565.280000pt;}
.y1f{bottom:570.400000pt;}
.y49{bottom:574.560000pt;}
.y6c{bottom:585.120000pt;}
.y99{bottom:585.440000pt;}
.y1e{bottom:590.240000pt;}
.y48{bottom:595.680000pt;}
.y6b{bottom:604.960000pt;}
.y98{bottom:606.560000pt;}
.y1d{bottom:610.080000pt;}
.y47{bottom:616.800000pt;}
.y6a{bottom:624.826667pt;}
.y97{bottom:627.706667pt;}
.y1c{bottom:629.946667pt;}
.y46{bottom:637.946667pt;}
.y69{bottom:644.666667pt;}
.y96{bottom:648.826667pt;}
.y1b{bottom:649.786667pt;}
.y45{bottom:659.066667pt;}
.y68{bottom:664.506667pt;}
.y1a{bottom:669.626667pt;}
.y95{bottom:669.946667pt;}
.yb7{bottom:678.906667pt;}
.y44{bottom:680.186667pt;}
.y67{bottom:684.346667pt;}
.y19{bottom:689.466667pt;}
.y94{bottom:691.386667pt;}
.yb6{bottom:700.026667pt;}
.y43{bottom:701.306667pt;}
.y66{bottom:704.186667pt;}
.y18{bottom:708.986667pt;}
.y93{bottom:712.506667pt;}
.yb5{bottom:721.466667pt;}
.y42{bottom:722.746667pt;}
.y65{bottom:724.026667pt;}
.y17{bottom:729.146667pt;}
.y92{bottom:733.666667pt;}
.yb4{bottom:742.626667pt;}
.y41{bottom:743.906667pt;}
.y16{bottom:749.026667pt;}
.y91{bottom:753.186667pt;}
.y64{bottom:763.746667pt;}
.y40{bottom:765.026667pt;}
.y15{bottom:768.866667pt;}
.y90{bottom:774.626667pt;}
.y63{bottom:783.586667pt;}
.yb3{bottom:784.866667pt;}
.y3f{bottom:786.146667pt;}
.y14{bottom:788.706667pt;}
.y8f{bottom:796.386667pt;}
.y62{bottom:803.426667pt;}
.yb2{bottom:805.986667pt;}
.y3e{bottom:807.266667pt;}
.y13{bottom:808.546667pt;}
.y8e{bottom:818.466667pt;}
.y61{bottom:819.746667pt;}
.yb1{bottom:827.106667pt;}
.y12{bottom:828.386667pt;}
.y8d{bottom:838.626667pt;}
.y11{bottom:848.253333pt;}
.y8c{bottom:858.813333pt;}
.y10{bottom:867.773333pt;}
.y3d{bottom:868.093333pt;}
.y8b{bottom:880.573333pt;}
.yf{bottom:887.613333pt;}
.y3c{bottom:887.933333pt;}
.y8a{bottom:902.653333pt;}
.ye{bottom:907.773333pt;}
.y89{bottom:922.813333pt;}
.yd{bottom:927.293333pt;}
.y3b{bottom:927.613333pt;}
.y88{bottom:942.653333pt;}
.yc{bottom:947.453333pt;}
.y87{bottom:962.533333pt;}
.y3a{bottom:967.653333pt;}
.yb{bottom:968.613333pt;}
.y86{bottom:983.653333pt;}
.y39{bottom:987.493333pt;}
.ya{bottom:995.173333pt;}
.y85{bottom:1006.053333pt;}
.y38{bottom:1007.333333pt;}
.y9{bottom:1021.733333pt;}
.y84{bottom:1026.853333pt;}
.y37{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.hb{height:44.687500pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.h8{height:60.509375pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:65.781915pt;}
.hd{height:70.625000pt;}
.h9{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:38.746667pt;}
.x5{left:85.152000pt;}
.x12{left:94.751988pt;}
.xa{left:97.951988pt;}
.x15{left:104.031988pt;}
.x16{left:113.631988pt;}
.xb{left:126.783988pt;}
.x11{left:132.543988pt;}
.x3{left:169.666655pt;}
.x14{left:180.546655pt;}
.xf{left:215.773322pt;}
.x6{left:258.341333pt;}
.xc{left:282.973322pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xe{left:333.253322pt;}
.x7{left:350.853333pt;}
.xd{left:420.639988pt;}
.x9{left:443.360000pt;}
.x13{left:610.146655pt;}
.x1{left:709.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; }
  