
    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_abab88993bd495f287e83570.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7b17f9c7cfd380358af56734.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_0acaf93451dbf0b75bb020bd.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_ce22594d84e6de82f976f3ca.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_340094d077da16039f5bdf95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e8d8a97e89e99a7d4778be6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_d3268b366f0100413a3c6ed9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ea2939fb1311d16730e03f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_6712218a2e7ea5d09488f6a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_669be4e050894e7b8ee06086.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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.262080px;}
.ls8{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.625280px;}
.ls6{letter-spacing:8.640000px;}
.ls5{letter-spacing:21.600000px;}
.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;}
}
.ws0{word-spacing:-18.305520px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._24{margin-left:-230.760000px;}
._8{margin-left:-2.952000px;}
._0{margin-left:-1.183200px;}
._1{width:1.126080px;}
._9{width:2.213760px;}
._4{width:3.721440px;}
._2{width:4.835520px;}
._3{width:6.482400px;}
._d{width:7.704000px;}
._c{width:9.103200px;}
._11{width:10.821600px;}
._10{width:12.271200px;}
._6{width:13.680000px;}
._5{width:14.688000px;}
._7{width:16.560000px;}
._23{width:18.074880px;}
._13{width:19.152000px;}
._18{width:20.373600px;}
._1e{width:21.376800px;}
._19{width:22.392000px;}
._1a{width:23.832000px;}
._14{width:24.984000px;}
._15{width:26.280000px;}
._1b{width:27.319200px;}
._b{width:28.581600px;}
._a{width:29.623200px;}
._17{width:30.888000px;}
._16{width:32.920320px;}
._12{width:33.984000px;}
._1d{width:35.103360px;}
._1f{width:36.392640px;}
._21{width:37.831200px;}
._20{width:39.816000px;}
._22{width:41.544000px;}
._f{width:43.694400px;}
._e{width:45.360000px;}
._1c{width:55.584000px;}
.fc1{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:7.500000px;}
.y2{bottom:58.176000px;}
.y30{bottom:119.556000px;}
.yd0{bottom:127.836000px;}
.y5e{bottom:129.636000px;}
.y5f{bottom:129.996000px;}
.y2f{bottom:140.796000px;}
.y67{bottom:150.870000px;}
.y5d{bottom:151.230000px;}
.ycf{bottom:151.770000px;}
.ya8{bottom:157.170000px;}
.y2e{bottom:162.030000px;}
.y66{bottom:171.750000px;}
.y82{bottom:172.110000px;}
.y5c{bottom:172.470000px;}
.yce{bottom:175.710000px;}
.ya7{bottom:181.110000px;}
.y2d{bottom:183.270000px;}
.y65{bottom:193.350000px;}
.y5b{bottom:193.710000px;}
.ycd{bottom:199.650000px;}
.y2c{bottom:204.510000px;}
.ya6{bottom:205.050000px;}
.y64{bottom:214.590000px;}
.y5a{bottom:214.950000px;}
.ycc{bottom:223.590000px;}
.y2b{bottom:225.750000px;}
.ya5{bottom:228.990000px;}
.y63{bottom:235.830000px;}
.y59{bottom:236.190000px;}
.y2a{bottom:246.990000px;}
.ycb{bottom:247.530000px;}
.ya4{bottom:252.930000px;}
.y62{bottom:257.070000px;}
.y58{bottom:257.430000px;}
.y29{bottom:268.230000px;}
.yca{bottom:271.470000px;}
.ya3{bottom:276.870000px;}
.y61{bottom:278.310000px;}
.y57{bottom:278.670000px;}
.y28{bottom:289.470000px;}
.yc9{bottom:295.410000px;}
.y60{bottom:299.550000px;}
.y56{bottom:299.910000px;}
.ya2{bottom:300.810000px;}
.y27{bottom:310.755000px;}
.yc8{bottom:319.395000px;}
.y81{bottom:320.835000px;}
.y55{bottom:321.195000px;}
.ya1{bottom:324.795000px;}
.y26{bottom:331.995000px;}
.y80{bottom:342.075000px;}
.y54{bottom:342.435000px;}
.yc7{bottom:343.335000px;}
.ya0{bottom:348.735000px;}
.y25{bottom:353.235000px;}
.y7f{bottom:363.315000px;}
.y53{bottom:363.675000px;}
.yc6{bottom:367.275000px;}
.y9f{bottom:372.675000px;}
.y24{bottom:374.475000px;}
.y7e{bottom:384.555000px;}
.y52{bottom:384.915000px;}
.yc5{bottom:391.215000px;}
.y23{bottom:395.715000px;}
.y9e{bottom:396.615000px;}
.y7d{bottom:405.795000px;}
.y51{bottom:406.155000px;}
.yc4{bottom:415.155000px;}
.y22{bottom:416.955000px;}
.y9d{bottom:420.555000px;}
.y7c{bottom:427.035000px;}
.y50{bottom:427.395000px;}
.y21{bottom:438.195000px;}
.yc3{bottom:439.095000px;}
.y9c{bottom:444.495000px;}
.y7b{bottom:448.275000px;}
.y4f{bottom:448.635000px;}
.y20{bottom:459.435000px;}
.yc2{bottom:463.035000px;}
.y9b{bottom:468.435000px;}
.y7a{bottom:469.515000px;}
.y4e{bottom:469.875000px;}
.y1f{bottom:480.675000px;}
.yc1{bottom:486.975000px;}
.y79{bottom:490.755000px;}
.y4d{bottom:491.115000px;}
.y9a{bottom:492.375000px;}
.y1e{bottom:501.915000px;}
.yc0{bottom:510.915000px;}
.y78{bottom:511.995000px;}
.y4c{bottom:512.355000px;}
.y99{bottom:516.315000px;}
.y1d{bottom:523.155000px;}
.y77{bottom:533.235000px;}
.y4b{bottom:533.595000px;}
.ybf{bottom:534.855000px;}
.y98{bottom:540.255000px;}
.y1c{bottom:544.395000px;}
.y76{bottom:554.475000px;}
.y4a{bottom:554.835000px;}
.ybe{bottom:558.795000px;}
.y97{bottom:564.225000px;}
.y1b{bottom:565.665000px;}
.y6c{bottom:575.745000px;}
.y49{bottom:576.105000px;}
.ybd{bottom:582.765000px;}
.y1a{bottom:586.905000px;}
.y96{bottom:588.165000px;}
.y75{bottom:596.985000px;}
.y48{bottom:597.345000px;}
.ybc{bottom:606.705000px;}
.y19{bottom:608.145000px;}
.y95{bottom:612.105000px;}
.y74{bottom:618.225000px;}
.y47{bottom:618.585000px;}
.y18{bottom:629.385000px;}
.ybb{bottom:630.645000px;}
.y94{bottom:636.045000px;}
.y73{bottom:639.465000px;}
.y46{bottom:639.825000px;}
.y17{bottom:650.625000px;}
.yba{bottom:654.585000px;}
.y93{bottom:659.985000px;}
.y72{bottom:660.705000px;}
.y45{bottom:661.065000px;}
.y16{bottom:671.865000px;}
.yb9{bottom:678.525000px;}
.y6b{bottom:681.945000px;}
.y44{bottom:682.305000px;}
.y92{bottom:683.925000px;}
.y15{bottom:693.105000px;}
.yb8{bottom:702.465000px;}
.y69{bottom:703.185000px;}
.y43{bottom:703.545000px;}
.y91{bottom:707.865000px;}
.y14{bottom:714.345000px;}
.y68{bottom:724.425000px;}
.y42{bottom:724.785000px;}
.yb7{bottom:726.405000px;}
.y90{bottom:731.805000px;}
.y13{bottom:735.585000px;}
.y6a{bottom:745.665000px;}
.y41{bottom:746.025000px;}
.yb6{bottom:750.345000px;}
.y8f{bottom:755.745000px;}
.y12{bottom:756.825000px;}
.y71{bottom:766.905000px;}
.y40{bottom:767.265000px;}
.yb5{bottom:774.285000px;}
.y11{bottom:778.065000px;}
.y8e{bottom:779.685000px;}
.y70{bottom:788.145000px;}
.y3f{bottom:788.505000px;}
.yb4{bottom:798.225000px;}
.y10{bottom:799.305000px;}
.y8d{bottom:803.625000px;}
.y6f{bottom:809.385000px;}
.y3e{bottom:809.745000px;}
.yf{bottom:820.590000px;}
.yb3{bottom:822.210000px;}
.y8c{bottom:827.610000px;}
.y6e{bottom:830.670000px;}
.y3d{bottom:831.030000px;}
.ye{bottom:841.830000px;}
.yb2{bottom:846.150000px;}
.y8b{bottom:851.550000px;}
.y6d{bottom:851.910000px;}
.y3c{bottom:852.270000px;}
.yd{bottom:863.070000px;}
.yb1{bottom:870.090000px;}
.y3b{bottom:873.510000px;}
.y8a{bottom:875.490000px;}
.yc{bottom:884.310000px;}
.yb0{bottom:894.030000px;}
.y3a{bottom:894.750000px;}
.y89{bottom:899.430000px;}
.yb{bottom:905.550000px;}
.y39{bottom:915.990000px;}
.yaf{bottom:917.970000px;}
.y88{bottom:923.370000px;}
.ya{bottom:926.790000px;}
.y38{bottom:937.230000px;}
.yae{bottom:941.910000px;}
.y87{bottom:947.310000px;}
.y9{bottom:947.670000px;}
.y37{bottom:958.470000px;}
.yad{bottom:965.850000px;}
.y8{bottom:968.730000px;}
.y86{bottom:971.250000px;}
.y36{bottom:979.710000px;}
.y7{bottom:988.530000px;}
.yac{bottom:989.790000px;}
.y85{bottom:995.190000px;}
.y35{bottom:1000.950000px;}
.y6{bottom:1008.150000px;}
.yab{bottom:1013.730000px;}
.y84{bottom:1019.130000px;}
.y34{bottom:1022.190000px;}
.y5{bottom:1027.230000px;}
.yaa{bottom:1037.670000px;}
.y33{bottom:1043.430000px;}
.y4{bottom:1046.310000px;}
.ya9{bottom:1061.610000px;}
.y83{bottom:1064.340000px;}
.y32{bottom:1064.700000px;}
.y3{bottom:1065.600000px;}
.y31{bottom:1117.080000px;}
.y1{bottom:1118.520000px;}
.h9{height:25.031250px;}
.h7{height:59.383125px;}
.h6{height:63.949219px;}
.h5{height:64.546875px;}
.h8{height:64.978594px;}
.h1{height:65.010937px;}
.h3{height:69.086250px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:75.000000px;}
.x1{left:148.896000px;}
.x3{left:396.075000px;}
.x4{left:471.345000px;}
.x2{left:475.845000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.232960pt;}
.ls8{letter-spacing:3.200000pt;}
.ls0{letter-spacing:4.111360pt;}
.ls6{letter-spacing:7.680000pt;}
.ls5{letter-spacing:19.200000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._24{margin-left:-205.120000pt;}
._8{margin-left:-2.624000pt;}
._0{margin-left:-1.051733pt;}
._1{width:1.000960pt;}
._9{width:1.967787pt;}
._4{width:3.307947pt;}
._2{width:4.298240pt;}
._3{width:5.762133pt;}
._d{width:6.848000pt;}
._c{width:8.091733pt;}
._11{width:9.619200pt;}
._10{width:10.907733pt;}
._6{width:12.160000pt;}
._5{width:13.056000pt;}
._7{width:14.720000pt;}
._23{width:16.066560pt;}
._13{width:17.024000pt;}
._18{width:18.109867pt;}
._1e{width:19.001600pt;}
._19{width:19.904000pt;}
._1a{width:21.184000pt;}
._14{width:22.208000pt;}
._15{width:23.360000pt;}
._1b{width:24.283733pt;}
._b{width:25.405867pt;}
._a{width:26.331733pt;}
._17{width:27.456000pt;}
._16{width:29.262507pt;}
._12{width:30.208000pt;}
._1d{width:31.202987pt;}
._1f{width:32.349013pt;}
._21{width:33.627733pt;}
._20{width:35.392000pt;}
._22{width:36.928000pt;}
._f{width:38.839467pt;}
._e{width:40.320000pt;}
._1c{width:49.408000pt;}
.fs2{font-size:21.333333pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:6.666667pt;}
.y2{bottom:51.712000pt;}
.y30{bottom:106.272000pt;}
.yd0{bottom:113.632000pt;}
.y5e{bottom:115.232000pt;}
.y5f{bottom:115.552000pt;}
.y2f{bottom:125.152000pt;}
.y67{bottom:134.106667pt;}
.y5d{bottom:134.426667pt;}
.ycf{bottom:134.906667pt;}
.ya8{bottom:139.706667pt;}
.y2e{bottom:144.026667pt;}
.y66{bottom:152.666667pt;}
.y82{bottom:152.986667pt;}
.y5c{bottom:153.306667pt;}
.yce{bottom:156.186667pt;}
.ya7{bottom:160.986667pt;}
.y2d{bottom:162.906667pt;}
.y65{bottom:171.866667pt;}
.y5b{bottom:172.186667pt;}
.ycd{bottom:177.466667pt;}
.y2c{bottom:181.786667pt;}
.ya6{bottom:182.266667pt;}
.y64{bottom:190.746667pt;}
.y5a{bottom:191.066667pt;}
.ycc{bottom:198.746667pt;}
.y2b{bottom:200.666667pt;}
.ya5{bottom:203.546667pt;}
.y63{bottom:209.626667pt;}
.y59{bottom:209.946667pt;}
.y2a{bottom:219.546667pt;}
.ycb{bottom:220.026667pt;}
.ya4{bottom:224.826667pt;}
.y62{bottom:228.506667pt;}
.y58{bottom:228.826667pt;}
.y29{bottom:238.426667pt;}
.yca{bottom:241.306667pt;}
.ya3{bottom:246.106667pt;}
.y61{bottom:247.386667pt;}
.y57{bottom:247.706667pt;}
.y28{bottom:257.306667pt;}
.yc9{bottom:262.586667pt;}
.y60{bottom:266.266667pt;}
.y56{bottom:266.586667pt;}
.ya2{bottom:267.386667pt;}
.y27{bottom:276.226667pt;}
.yc8{bottom:283.906667pt;}
.y81{bottom:285.186667pt;}
.y55{bottom:285.506667pt;}
.ya1{bottom:288.706667pt;}
.y26{bottom:295.106667pt;}
.y80{bottom:304.066667pt;}
.y54{bottom:304.386667pt;}
.yc7{bottom:305.186667pt;}
.ya0{bottom:309.986667pt;}
.y25{bottom:313.986667pt;}
.y7f{bottom:322.946667pt;}
.y53{bottom:323.266667pt;}
.yc6{bottom:326.466667pt;}
.y9f{bottom:331.266667pt;}
.y24{bottom:332.866667pt;}
.y7e{bottom:341.826667pt;}
.y52{bottom:342.146667pt;}
.yc5{bottom:347.746667pt;}
.y23{bottom:351.746667pt;}
.y9e{bottom:352.546667pt;}
.y7d{bottom:360.706667pt;}
.y51{bottom:361.026667pt;}
.yc4{bottom:369.026667pt;}
.y22{bottom:370.626667pt;}
.y9d{bottom:373.826667pt;}
.y7c{bottom:379.586667pt;}
.y50{bottom:379.906667pt;}
.y21{bottom:389.506667pt;}
.yc3{bottom:390.306667pt;}
.y9c{bottom:395.106667pt;}
.y7b{bottom:398.466667pt;}
.y4f{bottom:398.786667pt;}
.y20{bottom:408.386667pt;}
.yc2{bottom:411.586667pt;}
.y9b{bottom:416.386667pt;}
.y7a{bottom:417.346667pt;}
.y4e{bottom:417.666667pt;}
.y1f{bottom:427.266667pt;}
.yc1{bottom:432.866667pt;}
.y79{bottom:436.226667pt;}
.y4d{bottom:436.546667pt;}
.y9a{bottom:437.666667pt;}
.y1e{bottom:446.146667pt;}
.yc0{bottom:454.146667pt;}
.y78{bottom:455.106667pt;}
.y4c{bottom:455.426667pt;}
.y99{bottom:458.946667pt;}
.y1d{bottom:465.026667pt;}
.y77{bottom:473.986667pt;}
.y4b{bottom:474.306667pt;}
.ybf{bottom:475.426667pt;}
.y98{bottom:480.226667pt;}
.y1c{bottom:483.906667pt;}
.y76{bottom:492.866667pt;}
.y4a{bottom:493.186667pt;}
.ybe{bottom:496.706667pt;}
.y97{bottom:501.533333pt;}
.y1b{bottom:502.813333pt;}
.y6c{bottom:511.773333pt;}
.y49{bottom:512.093333pt;}
.ybd{bottom:518.013333pt;}
.y1a{bottom:521.693333pt;}
.y96{bottom:522.813333pt;}
.y75{bottom:530.653333pt;}
.y48{bottom:530.973333pt;}
.ybc{bottom:539.293333pt;}
.y19{bottom:540.573333pt;}
.y95{bottom:544.093333pt;}
.y74{bottom:549.533333pt;}
.y47{bottom:549.853333pt;}
.y18{bottom:559.453333pt;}
.ybb{bottom:560.573333pt;}
.y94{bottom:565.373333pt;}
.y73{bottom:568.413333pt;}
.y46{bottom:568.733333pt;}
.y17{bottom:578.333333pt;}
.yba{bottom:581.853333pt;}
.y93{bottom:586.653333pt;}
.y72{bottom:587.293333pt;}
.y45{bottom:587.613333pt;}
.y16{bottom:597.213333pt;}
.yb9{bottom:603.133333pt;}
.y6b{bottom:606.173333pt;}
.y44{bottom:606.493333pt;}
.y92{bottom:607.933333pt;}
.y15{bottom:616.093333pt;}
.yb8{bottom:624.413333pt;}
.y69{bottom:625.053333pt;}
.y43{bottom:625.373333pt;}
.y91{bottom:629.213333pt;}
.y14{bottom:634.973333pt;}
.y68{bottom:643.933333pt;}
.y42{bottom:644.253333pt;}
.yb7{bottom:645.693333pt;}
.y90{bottom:650.493333pt;}
.y13{bottom:653.853333pt;}
.y6a{bottom:662.813333pt;}
.y41{bottom:663.133333pt;}
.yb6{bottom:666.973333pt;}
.y8f{bottom:671.773333pt;}
.y12{bottom:672.733333pt;}
.y71{bottom:681.693333pt;}
.y40{bottom:682.013333pt;}
.yb5{bottom:688.253333pt;}
.y11{bottom:691.613333pt;}
.y8e{bottom:693.053333pt;}
.y70{bottom:700.573333pt;}
.y3f{bottom:700.893333pt;}
.yb4{bottom:709.533333pt;}
.y10{bottom:710.493333pt;}
.y8d{bottom:714.333333pt;}
.y6f{bottom:719.453333pt;}
.y3e{bottom:719.773333pt;}
.yf{bottom:729.413333pt;}
.yb3{bottom:730.853333pt;}
.y8c{bottom:735.653333pt;}
.y6e{bottom:738.373333pt;}
.y3d{bottom:738.693333pt;}
.ye{bottom:748.293333pt;}
.yb2{bottom:752.133333pt;}
.y8b{bottom:756.933333pt;}
.y6d{bottom:757.253333pt;}
.y3c{bottom:757.573333pt;}
.yd{bottom:767.173333pt;}
.yb1{bottom:773.413333pt;}
.y3b{bottom:776.453333pt;}
.y8a{bottom:778.213333pt;}
.yc{bottom:786.053333pt;}
.yb0{bottom:794.693333pt;}
.y3a{bottom:795.333333pt;}
.y89{bottom:799.493333pt;}
.yb{bottom:804.933333pt;}
.y39{bottom:814.213333pt;}
.yaf{bottom:815.973333pt;}
.y88{bottom:820.773333pt;}
.ya{bottom:823.813333pt;}
.y38{bottom:833.093333pt;}
.yae{bottom:837.253333pt;}
.y87{bottom:842.053333pt;}
.y9{bottom:842.373333pt;}
.y37{bottom:851.973333pt;}
.yad{bottom:858.533333pt;}
.y8{bottom:861.093333pt;}
.y86{bottom:863.333333pt;}
.y36{bottom:870.853333pt;}
.y7{bottom:878.693333pt;}
.yac{bottom:879.813333pt;}
.y85{bottom:884.613333pt;}
.y35{bottom:889.733333pt;}
.y6{bottom:896.133333pt;}
.yab{bottom:901.093333pt;}
.y84{bottom:905.893333pt;}
.y34{bottom:908.613333pt;}
.y5{bottom:913.093333pt;}
.yaa{bottom:922.373333pt;}
.y33{bottom:927.493333pt;}
.y4{bottom:930.053333pt;}
.ya9{bottom:943.653333pt;}
.y83{bottom:946.080000pt;}
.y32{bottom:946.400000pt;}
.y3{bottom:947.200000pt;}
.y31{bottom:992.960000pt;}
.y1{bottom:994.240000pt;}
.h9{height:22.250000pt;}
.h7{height:52.785000pt;}
.h6{height:56.843750pt;}
.h5{height:57.375000pt;}
.h8{height:57.758750pt;}
.h1{height:57.787500pt;}
.h3{height:61.410000pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:66.666667pt;}
.x1{left:132.352000pt;}
.x3{left:352.066667pt;}
.x4{left:418.973333pt;}
.x2{left:422.973333pt;}
}




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