
    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_6c0f3318f01525e1b8b4d2e8.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_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_13c09b37ffacae049742f1af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ae5b61fa9b01be0e786eb28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_82f86aa697bd469f69d06dc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_737cbb9e6a44822b61b14b9a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_79371e0aea943428815b72dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_a09e72d3ef270673a59d11b4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_86bfb5c98d75500f262b9b9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_7716b5c8dcf1025b0afcfee3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.062500;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_a6c052765810cfcbc03ee2b4.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.520000px;}
.ls7{letter-spacing:-2.214000px;}
.lsa{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-1.698000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.258000px;}
.ls21{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.440000px;}
.ls17{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.060000px;}
.ls1d{letter-spacing:10.224000px;}
.ls20{letter-spacing:14.400000px;}
.lsb{letter-spacing:20.160000px;}
.ls15{letter-spacing:25.200000px;}
.ls19{letter-spacing:27.360000px;}
.ls1e{letter-spacing:30.384000px;}
.ls16{letter-spacing:30.960000px;}
.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:-23.940000px;}
.ws4{word-spacing:-18.864000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.496000px;}
.ws2{word-spacing:-16.488000px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.198000px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.242000px;}
.ws9{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.420000px;}
.wsa{word-spacing:0.000000px;}
._16{margin-left:-2.952000px;}
._0{margin-left:-1.275120px;}
._1{width:1.015680px;}
._2{width:2.160000px;}
._13{width:3.268320px;}
._15{width:4.548000px;}
._14{width:6.048000px;}
._f{width:7.632000px;}
._22{width:8.755440px;}
._17{width:9.912000px;}
._18{width:11.054880px;}
._e{width:12.702240px;}
._c{width:14.400000px;}
._d{width:15.499440px;}
._12{width:16.908480px;}
._a{width:19.080000px;}
._b{width:20.124000px;}
._1f{width:21.166320px;}
._4{width:22.176000px;}
._3{width:23.544000px;}
._5{width:24.712080px;}
._8{width:26.064000px;}
._9{width:27.076320px;}
._21{width:28.728000px;}
._1e{width:30.024000px;}
._20{width:31.147440px;}
._1b{width:32.904000px;}
._6{width:38.016000px;}
._7{width:39.724320px;}
._19{width:41.400000px;}
._1a{width:42.811440px;}
._10{width:54.144000px;}
._11{width:55.144320px;}
._24{width:56.736000px;}
._23{width:58.083120px;}
._1c{width:60.696000px;}
._1d{width:62.364000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(107,159,37);}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:7.020000px;}
.y55{bottom:7.380000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y5a{bottom:19.260000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y54{bottom:31.320000px;}
.y58{bottom:43.200000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y51{bottom:55.080000px;}
.y57{bottom:66.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y50{bottom:78.840000px;}
.y56{bottom:90.720000px;}
.ya{bottom:91.116000px;}
.y53{bottom:102.600000px;}
.y59{bottom:114.480000px;}
.y52{bottom:126.540000px;}
.y3c{bottom:128.736000px;}
.y3b{bottom:133.956000px;}
.y77{bottom:143.136000px;}
.y85{bottom:144.576000px;}
.y3a{bottom:145.836000px;}
.y39{bottom:151.050000px;}
.y84{bottom:151.410000px;}
.y4c{bottom:163.110000px;}
.y38{bottom:163.830000px;}
.y83{bottom:164.370000px;}
.y76{bottom:165.090000px;}
.y4b{bottom:168.330000px;}
.y82{bottom:169.590000px;}
.y75{bottom:171.930000px;}
.y4a{bottom:180.390000px;}
.y74{bottom:185.070000px;}
.y49{bottom:185.610000px;}
.y87{bottom:187.410000px;}
.y81{bottom:195.870000px;}
.y48{bottom:197.670000px;}
.y73{bottom:202.350000px;}
.y80{bottom:202.710000px;}
.y47{bottom:202.890000px;}
.y72{bottom:207.570000px;}
.y37{bottom:211.350000px;}
.y46{bottom:215.670000px;}
.y7f{bottom:216.570000px;}
.y71{bottom:220.350000px;}
.y36{bottom:235.110000px;}
.y7e{bottom:250.950000px;}
.y70{bottom:251.850000px;}
.y35{bottom:258.870000px;}
.y7d{bottom:274.350000px;}
.y6f{bottom:275.790000px;}
.y34{bottom:282.675000px;}
.y7c{bottom:294.375000px;}
.y6e{bottom:299.595000px;}
.y33{bottom:306.435000px;}
.y45{bottom:313.275000px;}
.y6d{bottom:323.355000px;}
.y32{bottom:330.375000px;}
.y44{bottom:337.215000px;}
.y6b{bottom:347.115000px;}
.y6c{bottom:353.955000px;}
.y31{bottom:354.135000px;}
.y6a{bottom:371.055000px;}
.y30{bottom:377.895000px;}
.y69{bottom:394.815000px;}
.y2f{bottom:401.655000px;}
.y68{bottom:418.575000px;}
.y2d{bottom:425.595000px;}
.y2e{bottom:432.435000px;}
.y66{bottom:442.335000px;}
.y67{bottom:449.175000px;}
.y2c{bottom:449.355000px;}
.y65{bottom:466.275000px;}
.y86{bottom:472.755000px;}
.y2b{bottom:473.115000px;}
.y64{bottom:490.035000px;}
.y2a{bottom:496.875000px;}
.y63{bottom:513.795000px;}
.y29{bottom:520.815000px;}
.y62{bottom:537.195000px;}
.y28{bottom:544.575000px;}
.y61{bottom:561.495000px;}
.y27{bottom:568.365000px;}
.y43{bottom:575.205000px;}
.y60{bottom:585.285000px;}
.y26{bottom:592.125000px;}
.y5f{bottom:609.045000px;}
.y25{bottom:616.065000px;}
.y5e{bottom:632.805000px;}
.y24{bottom:639.825000px;}
.y5d{bottom:656.565000px;}
.y23{bottom:663.585000px;}
.y5b{bottom:673.845000px;}
.y42{bottom:686.985000px;}
.y22{bottom:687.345000px;}
.y4f{bottom:703.005000px;}
.y21{bottom:711.285000px;}
.y20{bottom:735.045000px;}
.y1f{bottom:758.805000px;}
.y1e{bottom:782.565000px;}
.y1d{bottom:806.325000px;}
.y1c{bottom:830.265000px;}
.y4e{bottom:853.710000px;}
.y1b{bottom:854.070000px;}
.y4d{bottom:877.470000px;}
.y1a{bottom:877.830000px;}
.y7b{bottom:884.670000px;}
.y18{bottom:901.590000px;}
.y19{bottom:908.430000px;}
.y17{bottom:925.530000px;}
.y7a{bottom:932.370000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.y79{bottom:996.450000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.390000px;}
.y41{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y40{bottom:1068.270000px;}
.y78{bottom:1074.210000px;}
.y10{bottom:1091.670000px;}
.y3e{bottom:1092.030000px;}
.y3f{bottom:1098.870000px;}
.yf{bottom:1115.610000px;}
.y3d{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h12{height:28.440000px;}
.h8{height:33.120000px;}
.hd{height:38.158594px;}
.hc{height:47.344922px;}
.h13{height:48.616875px;}
.he{height:58.651172px;}
.hf{height:59.614102px;}
.h10{height:60.226875px;}
.hb{height:63.457031px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h14{height:74.004654px;}
.h4{height:84.034336px;}
.h2{height:109.800000px;}
.h5{height:131.438320px;}
.h11{height:142.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.w11{width:78.336000px;}
.w10{width:88.560000px;}
.wa{width:92.340000px;}
.w12{width:97.380000px;}
.wd{width:104.436000px;}
.wc{width:108.540000px;}
.we{width:109.800000px;}
.wf{width:116.496000px;}
.w2{width:125.856000px;}
.w3{width:705.525000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x38{left:12.240000px;}
.x39{left:13.320000px;}
.x2e{left:14.400000px;}
.x2a{left:17.820000px;}
.x7{left:19.800000px;}
.x3a{left:21.240000px;}
.x30{left:22.320000px;}
.x3d{left:23.580000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x32{left:28.620000px;}
.x3{left:30.239973px;}
.x2f{left:31.860000px;}
.x33{left:33.480000px;}
.x2b{left:35.634000px;}
.x3b{left:39.240000px;}
.x3c{left:42.690000px;}
.x2d{left:47.880000px;}
.x31{left:52.425000px;}
.x35{left:58.350000px;}
.x5{left:71.994000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x29{left:130.896000px;}
.x1d{left:132.515987px;}
.x42{left:133.775987px;}
.x4c{left:137.375987px;}
.x4d{left:139.895987px;}
.x28{left:155.549987px;}
.x4e{left:159.689987px;}
.x17{left:180.749987px;}
.x12{left:199.469987px;}
.x45{left:202.349987px;}
.x4b{left:204.509987px;}
.x20{left:217.469987px;}
.x2c{left:239.790000px;}
.x18{left:275.069973px;}
.x19{left:281.189987px;}
.x16{left:333.074987px;}
.x1a{left:341.174973px;}
.x1c{left:343.694987px;}
.x1b{left:347.294987px;}
.x23{left:349.274973px;}
.x24{left:358.094987px;}
.x48{left:368.174973px;}
.x49{left:380.414987px;}
.x13{left:384.014987px;}
.x1e{left:385.634973px;}
.x1f{left:391.754987px;}
.x14{left:421.454987px;}
.x15{left:439.454987px;}
.x34{left:454.755000px;}
.x46{left:481.754973px;}
.x47{left:494.024987px;}
.x21{left:531.104973px;}
.x22{left:537.224987px;}
.x36{left:571.605000px;}
.x40{left:584.564973px;}
.x41{left:592.304987px;}
.xb{left:619.305000px;}
.x37{left:660.525000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x27{left:769.469987px;}
.x3e{left:770.549973px;}
.x25{left:776.849973px;}
.x3f{left:779.189987px;}
.x26{left:782.969987px;}
.x43{left:800.609973px;}
.x44{left:806.909987px;}
.x8{left:831.390000px;}
.x4a{left:834.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.240000pt;}
.ls7{letter-spacing:-1.968000pt;}
.lsa{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-1.509333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.229333pt;}
.ls21{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls11{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:9.088000pt;}
.ls20{letter-spacing:12.800000pt;}
.lsb{letter-spacing:17.920000pt;}
.ls15{letter-spacing:22.400000pt;}
.ls19{letter-spacing:24.320000pt;}
.ls1e{letter-spacing:27.008000pt;}
.ls16{letter-spacing:27.520000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws4{word-spacing:-16.768000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.509333pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.960000pt;}
.ws6{word-spacing:-11.770667pt;}
.ws9{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.040000pt;}
.wsa{word-spacing:0.000000pt;}
._16{margin-left:-2.624000pt;}
._0{margin-left:-1.133440pt;}
._1{width:0.902827pt;}
._2{width:1.920000pt;}
._13{width:2.905173pt;}
._15{width:4.042667pt;}
._14{width:5.376000pt;}
._f{width:6.784000pt;}
._22{width:7.782613pt;}
._17{width:8.810667pt;}
._18{width:9.826560pt;}
._e{width:11.290880pt;}
._c{width:12.800000pt;}
._d{width:13.777280pt;}
._12{width:15.029760pt;}
._a{width:16.960000pt;}
._b{width:17.888000pt;}
._1f{width:18.814507pt;}
._4{width:19.712000pt;}
._3{width:20.928000pt;}
._5{width:21.966293pt;}
._8{width:23.168000pt;}
._9{width:24.067840pt;}
._21{width:25.536000pt;}
._1e{width:26.688000pt;}
._20{width:27.686613pt;}
._1b{width:29.248000pt;}
._6{width:33.792000pt;}
._7{width:35.310507pt;}
._19{width:36.800000pt;}
._1a{width:38.054613pt;}
._10{width:48.128000pt;}
._11{width:49.017173pt;}
._24{width:50.432000pt;}
._23{width:51.629440pt;}
._1c{width:53.952000pt;}
._1d{width:55.434667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:6.240000pt;}
.y55{bottom:6.560000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y5a{bottom:17.120000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y54{bottom:27.840000pt;}
.y58{bottom:38.400000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y51{bottom:48.960000pt;}
.y57{bottom:59.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y50{bottom:70.080000pt;}
.y56{bottom:80.640000pt;}
.ya{bottom:80.992000pt;}
.y53{bottom:91.200000pt;}
.y59{bottom:101.760000pt;}
.y52{bottom:112.480000pt;}
.y3c{bottom:114.432000pt;}
.y3b{bottom:119.072000pt;}
.y77{bottom:127.232000pt;}
.y85{bottom:128.512000pt;}
.y3a{bottom:129.632000pt;}
.y39{bottom:134.266667pt;}
.y84{bottom:134.586667pt;}
.y4c{bottom:144.986667pt;}
.y38{bottom:145.626667pt;}
.y83{bottom:146.106667pt;}
.y76{bottom:146.746667pt;}
.y4b{bottom:149.626667pt;}
.y82{bottom:150.746667pt;}
.y75{bottom:152.826667pt;}
.y4a{bottom:160.346667pt;}
.y74{bottom:164.506667pt;}
.y49{bottom:164.986667pt;}
.y87{bottom:166.586667pt;}
.y81{bottom:174.106667pt;}
.y48{bottom:175.706667pt;}
.y73{bottom:179.866667pt;}
.y80{bottom:180.186667pt;}
.y47{bottom:180.346667pt;}
.y72{bottom:184.506667pt;}
.y37{bottom:187.866667pt;}
.y46{bottom:191.706667pt;}
.y7f{bottom:192.506667pt;}
.y71{bottom:195.866667pt;}
.y36{bottom:208.986667pt;}
.y7e{bottom:223.066667pt;}
.y70{bottom:223.866667pt;}
.y35{bottom:230.106667pt;}
.y7d{bottom:243.866667pt;}
.y6f{bottom:245.146667pt;}
.y34{bottom:251.266667pt;}
.y7c{bottom:261.666667pt;}
.y6e{bottom:266.306667pt;}
.y33{bottom:272.386667pt;}
.y45{bottom:278.466667pt;}
.y6d{bottom:287.426667pt;}
.y32{bottom:293.666667pt;}
.y44{bottom:299.746667pt;}
.y6b{bottom:308.546667pt;}
.y6c{bottom:314.626667pt;}
.y31{bottom:314.786667pt;}
.y6a{bottom:329.826667pt;}
.y30{bottom:335.906667pt;}
.y69{bottom:350.946667pt;}
.y2f{bottom:357.026667pt;}
.y68{bottom:372.066667pt;}
.y2d{bottom:378.306667pt;}
.y2e{bottom:384.386667pt;}
.y66{bottom:393.186667pt;}
.y67{bottom:399.266667pt;}
.y2c{bottom:399.426667pt;}
.y65{bottom:414.466667pt;}
.y86{bottom:420.226667pt;}
.y2b{bottom:420.546667pt;}
.y64{bottom:435.586667pt;}
.y2a{bottom:441.666667pt;}
.y63{bottom:456.706667pt;}
.y29{bottom:462.946667pt;}
.y62{bottom:477.506667pt;}
.y28{bottom:484.066667pt;}
.y61{bottom:499.106667pt;}
.y27{bottom:505.213333pt;}
.y43{bottom:511.293333pt;}
.y60{bottom:520.253333pt;}
.y26{bottom:526.333333pt;}
.y5f{bottom:541.373333pt;}
.y25{bottom:547.613333pt;}
.y5e{bottom:562.493333pt;}
.y24{bottom:568.733333pt;}
.y5d{bottom:583.613333pt;}
.y23{bottom:589.853333pt;}
.y5b{bottom:598.973333pt;}
.y42{bottom:610.653333pt;}
.y22{bottom:610.973333pt;}
.y4f{bottom:624.893333pt;}
.y21{bottom:632.253333pt;}
.y20{bottom:653.373333pt;}
.y1f{bottom:674.493333pt;}
.y1e{bottom:695.613333pt;}
.y1d{bottom:716.733333pt;}
.y1c{bottom:738.013333pt;}
.y4e{bottom:758.853333pt;}
.y1b{bottom:759.173333pt;}
.y4d{bottom:779.973333pt;}
.y1a{bottom:780.293333pt;}
.y7b{bottom:786.373333pt;}
.y18{bottom:801.413333pt;}
.y19{bottom:807.493333pt;}
.y17{bottom:822.693333pt;}
.y7a{bottom:828.773333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.y79{bottom:885.733333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.013333pt;}
.y41{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y40{bottom:949.573333pt;}
.y78{bottom:954.853333pt;}
.y10{bottom:970.373333pt;}
.y3e{bottom:970.693333pt;}
.y3f{bottom:976.773333pt;}
.yf{bottom:991.653333pt;}
.y3d{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h12{height:25.280000pt;}
.h8{height:29.440000pt;}
.hd{height:33.918750pt;}
.hc{height:42.084375pt;}
.h13{height:43.215000pt;}
.he{height:52.134375pt;}
.hf{height:52.990313pt;}
.h10{height:53.535000pt;}
.hb{height:56.406250pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h14{height:65.781915pt;}
.h4{height:74.697187pt;}
.h2{height:97.600000pt;}
.h5{height:116.834062pt;}
.h11{height:127.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.w11{width:69.632000pt;}
.w10{width:78.720000pt;}
.wa{width:82.080000pt;}
.w12{width:86.560000pt;}
.wd{width:92.832000pt;}
.wc{width:96.480000pt;}
.we{width:97.600000pt;}
.wf{width:103.552000pt;}
.w2{width:111.872000pt;}
.w3{width:627.133333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x38{left:10.880000pt;}
.x39{left:11.840000pt;}
.x2e{left:12.800000pt;}
.x2a{left:15.840000pt;}
.x7{left:17.600000pt;}
.x3a{left:18.880000pt;}
.x30{left:19.840000pt;}
.x3d{left:20.960000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x32{left:25.440000pt;}
.x3{left:26.879976pt;}
.x2f{left:28.320000pt;}
.x33{left:29.760000pt;}
.x2b{left:31.674667pt;}
.x3b{left:34.880000pt;}
.x3c{left:37.946667pt;}
.x2d{left:42.560000pt;}
.x31{left:46.600000pt;}
.x35{left:51.866667pt;}
.x5{left:63.994667pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x29{left:116.352000pt;}
.x1d{left:117.791988pt;}
.x42{left:118.911988pt;}
.x4c{left:122.111988pt;}
.x4d{left:124.351988pt;}
.x28{left:138.266655pt;}
.x4e{left:141.946655pt;}
.x17{left:160.666655pt;}
.x12{left:177.306655pt;}
.x45{left:179.866655pt;}
.x4b{left:181.786655pt;}
.x20{left:193.306655pt;}
.x2c{left:213.146667pt;}
.x18{left:244.506643pt;}
.x19{left:249.946655pt;}
.x16{left:296.066655pt;}
.x1a{left:303.266643pt;}
.x1c{left:305.506655pt;}
.x1b{left:308.706655pt;}
.x23{left:310.466643pt;}
.x24{left:318.306655pt;}
.x48{left:327.266643pt;}
.x49{left:338.146655pt;}
.x13{left:341.346655pt;}
.x1e{left:342.786643pt;}
.x1f{left:348.226655pt;}
.x14{left:374.626655pt;}
.x15{left:390.626655pt;}
.x34{left:404.226667pt;}
.x46{left:428.226643pt;}
.x47{left:439.133322pt;}
.x21{left:472.093310pt;}
.x22{left:477.533322pt;}
.x36{left:508.093333pt;}
.x40{left:519.613310pt;}
.x41{left:526.493322pt;}
.xb{left:550.493333pt;}
.x37{left:587.133333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x27{left:683.973322pt;}
.x3e{left:684.933310pt;}
.x25{left:690.533310pt;}
.x3f{left:692.613322pt;}
.x26{left:695.973322pt;}
.x43{left:711.653310pt;}
.x44{left:717.253322pt;}
.x8{left:739.013333pt;}
.x4a{left:742.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; }
  