
    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_82875c8e3ac11bc8efd8981e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_fab83d4fd06412809265007a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_21323f3b66487df17083211a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83c3051960e3638c73df0aba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_0b366b17c76e3ab8952cecea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5628751a1b0df00c2fcb9dff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.v2{vertical-align:22.326000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:74.952000px;}
.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:-55.944000px;}
.ws83{word-spacing:-51.515100px;}
.ws1{word-spacing:-41.877300px;}
.ws5c{word-spacing:-38.866500px;}
.ws84{word-spacing:-38.662200px;}
.ws64{word-spacing:-38.661900px;}
.ws11{word-spacing:-38.660400px;}
.ws22{word-spacing:-38.659200px;}
.ws39{word-spacing:-38.655900px;}
.ws47{word-spacing:-38.651100px;}
.ws30{word-spacing:-38.650500px;}
.ws5b{word-spacing:-38.649600px;}
.ws60{word-spacing:-38.649000px;}
.ws80{word-spacing:-38.647800px;}
.ws85{word-spacing:-38.646000px;}
.ws77{word-spacing:-38.576700px;}
.ws90{word-spacing:-38.449500px;}
.ws6{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.377500px;}
.ws2c{word-spacing:-38.362500px;}
.ws1f{word-spacing:-38.166000px;}
.ws5d{word-spacing:-38.162400px;}
.ws5{word-spacing:-38.160000px;}
.ws4c{word-spacing:-38.157300px;}
.ws58{word-spacing:-38.157000px;}
.ws63{word-spacing:-38.156400px;}
.ws4f{word-spacing:-38.154600px;}
.ws4d{word-spacing:-38.150100px;}
.ws87{word-spacing:-38.149200px;}
.ws14{word-spacing:-38.139300px;}
.ws8c{word-spacing:-38.085300px;}
.ws8e{word-spacing:-37.949100px;}
.ws38{word-spacing:-37.948200px;}
.ws2f{word-spacing:-37.944000px;}
.ws4e{word-spacing:-37.942200px;}
.ws35{word-spacing:-37.940400px;}
.ws5f{word-spacing:-37.938600px;}
.ws33{word-spacing:-37.935900px;}
.ws4{word-spacing:-37.935000px;}
.ws79{word-spacing:-37.934100px;}
.wsb{word-spacing:-37.931400px;}
.ws62{word-spacing:-37.927800px;}
.ws8{word-spacing:-37.717500px;}
.ws8b{word-spacing:-37.713600px;}
.ws10{word-spacing:-37.440000px;}
.ws54{word-spacing:-37.436400px;}
.ws3b{word-spacing:-37.215900px;}
.ws50{word-spacing:-37.211400px;}
.ws74{word-spacing:-36.716400px;}
.ws52{word-spacing:-36.504000px;}
.ws37{word-spacing:-36.500400px;}
.ws3c{word-spacing:-36.491400px;}
.ws5e{word-spacing:-35.996400px;}
.ws36{word-spacing:-35.784000px;}
.ws7b{word-spacing:-35.779500px;}
.ws3f{word-spacing:-35.710800px;}
.ws43{word-spacing:-35.696700px;}
.ws81{word-spacing:-35.503800px;}
.ws23{word-spacing:-35.280000px;}
.ws5a{word-spacing:-35.062200px;}
.ws41{word-spacing:-35.059500px;}
.ws32{word-spacing:-35.058600px;}
.ws8d{word-spacing:-34.848000px;}
.ws69{word-spacing:-34.550400px;}
.ws24{word-spacing:-34.550100px;}
.ws34{word-spacing:-34.350000px;}
.ws70{word-spacing:-34.346400px;}
.ws53{word-spacing:-34.340400px;}
.ws29{word-spacing:-33.832800px;}
.ws6c{word-spacing:-33.830100px;}
.ws9{word-spacing:-33.814200px;}
.ws61{word-spacing:-33.622200px;}
.ws1b{word-spacing:-33.615000px;}
.ws2{word-spacing:-33.547800px;}
.ws7e{word-spacing:-33.113700px;}
.ws28{word-spacing:-32.910000px;}
.ws2e{word-spacing:-32.190000px;}
.ws3e{word-spacing:-32.180400px;}
.ws2d{word-spacing:-31.680000px;}
.ws86{word-spacing:-31.674300px;}
.ws89{word-spacing:-31.454100px;}
.ws2b{word-spacing:-31.386300px;}
.ws20{word-spacing:-30.951900px;}
.ws18{word-spacing:-30.730800px;}
.ws21{word-spacing:-30.730500px;}
.ws46{word-spacing:-30.024000px;}
.wse{word-spacing:-29.520000px;}
.ws6e{word-spacing:-28.796400px;}
.ws1e{word-spacing:-28.786500px;}
.ws7d{word-spacing:-28.780200px;}
.ws68{word-spacing:-28.584000px;}
.ws31{word-spacing:-28.582200px;}
.ws8f{word-spacing:-28.496700px;}
.ws42{word-spacing:-28.086000px;}
.ws71{word-spacing:-28.084200px;}
.ws4b{word-spacing:-27.860400px;}
.ws59{word-spacing:-27.849600px;}
.ws4a{word-spacing:-27.360000px;}
.ws57{word-spacing:-27.140400px;}
.ws48{word-spacing:-27.135000px;}
.ws3a{word-spacing:-26.415900px;}
.ws1d{word-spacing:-26.408700px;}
.ws40{word-spacing:-25.920000px;}
.wsc{word-spacing:-25.695900px;}
.ws1c{word-spacing:-25.480800px;}
.ws55{word-spacing:-24.984000px;}
.ws65{word-spacing:-24.983100px;}
.ws56{word-spacing:-24.968700px;}
.ws7a{word-spacing:-24.260400px;}
.ws73{word-spacing:-24.248400px;}
.ws44{word-spacing:-23.753700px;}
.wsd{word-spacing:-23.026200px;}
.ws6d{word-spacing:-22.109100px;}
.ws7c{word-spacing:-21.600000px;}
.ws8a{word-spacing:-21.596400px;}
.ws45{word-spacing:-21.590100px;}
.ws27{word-spacing:-21.449700px;}
.ws12{word-spacing:-20.147400px;}
.ws7f{word-spacing:-19.940400px;}
.ws13{word-spacing:-19.935000px;}
.ws2a{word-spacing:-19.720800px;}
.ws3d{word-spacing:-19.135200px;}
.ws76{word-spacing:-17.994000px;}
.ws17{word-spacing:-17.766300px;}
.wsf{word-spacing:-16.348200px;}
.ws78{word-spacing:-15.830100px;}
.ws19{word-spacing:-15.620400px;}
.ws15{word-spacing:-15.110700px;}
.ws6f{word-spacing:-14.904000px;}
.ws88{word-spacing:-14.891400px;}
.ws16{word-spacing:-14.395200px;}
.wsa{word-spacing:-13.461300px;}
.ws75{word-spacing:-11.516400px;}
.ws26{word-spacing:-9.125700px;}
.ws1a{word-spacing:-8.415000px;}
.ws67{word-spacing:-6.252300px;}
.ws6b{word-spacing:-5.527800px;}
.ws82{word-spacing:-0.400200px;}
.ws0{word-spacing:0.000000px;}
.ws72{word-spacing:2.889000px;}
.ws6a{word-spacing:9.360000px;}
.ws51{word-spacing:11.520000px;}
.ws66{word-spacing:17.504400px;}
.ws49{word-spacing:20.880000px;}
.ws25{word-spacing:28.872000px;}
._f{margin-left:-2.226900px;}
._3{margin-left:-1.207200px;}
._1{width:1.894200px;}
._16{width:17.172900px;}
._14{width:18.330600px;}
._2{width:19.351800px;}
._9{width:20.624400px;}
._0{width:22.505400px;}
._e{width:23.764800px;}
._4{width:24.812400px;}
._c{width:26.482800px;}
._7{width:27.576000px;}
._10{width:28.723800px;}
._15{width:30.631500px;}
._5{width:31.976700px;}
._18{width:33.006600px;}
._6{width:34.338600px;}
._12{width:36.213300px;}
._13{width:38.053500px;}
._b{width:39.222300px;}
._8{width:41.289000px;}
._a{width:42.762900px;}
._1d{width:46.216800px;}
._11{width:47.977800px;}
._d{width:49.086000px;}
._1a{width:51.019500px;}
._1e{width:54.000000px;}
._1c{width:60.084000px;}
._17{width:61.704000px;}
._1b{width:66.433200px;}
._19{width:74.727600px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs4{font-size:42.600000px;}
.fs3{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y87{bottom:9.465000px;}
.y4{bottom:32.475000px;}
.y5a{bottom:100.875000px;}
.y85{bottom:114.375000px;}
.y59{bottom:121.575000px;}
.y84{bottom:135.075000px;}
.y2e{bottom:137.415000px;}
.y58{bottom:142.275000px;}
.y83{bottom:155.775000px;}
.y57{bottom:162.975000px;}
.y2d{bottom:173.236500px;}
.y82{bottom:176.475000px;}
.y56{bottom:183.675000px;}
.y2c{bottom:193.936500px;}
.y81{bottom:197.175000px;}
.y80{bottom:217.875000px;}
.y55{bottom:219.315000px;}
.y2b{bottom:229.575000px;}
.y7f{bottom:238.575000px;}
.y54{bottom:240.015000px;}
.y2a{bottom:250.275000px;}
.y7e{bottom:259.275000px;}
.y53{bottom:260.715000px;}
.y29{bottom:270.975000px;}
.y7d{bottom:279.975000px;}
.y52{bottom:281.415000px;}
.y28{bottom:291.675000px;}
.y51{bottom:302.115000px;}
.y27{bottom:312.375000px;}
.y7c{bottom:315.795000px;}
.y50{bottom:322.815000px;}
.y26{bottom:333.075000px;}
.y4f{bottom:343.515000px;}
.y25{bottom:353.775000px;}
.y7b{bottom:372.136500px;}
.y24{bottom:374.475000px;}
.y4e{bottom:379.155000px;}
.y7a{bottom:392.836500px;}
.y23{bottom:395.175000px;}
.y4d{bottom:401.115000px;}
.y79{bottom:413.536500px;}
.y22{bottom:415.875000px;}
.y4c{bottom:423.075000px;}
.y78{bottom:434.236500px;}
.y86{bottom:442.050000px;}
.y4b{bottom:445.215000px;}
.y21{bottom:451.515000px;}
.y77{bottom:454.936500px;}
.y4a{bottom:467.175000px;}
.y20{bottom:472.215000px;}
.y76{bottom:475.636500px;}
.y75{bottom:496.336500px;}
.y49{bottom:504.075000px;}
.y1f{bottom:508.036500px;}
.y74{bottom:517.036500px;}
.y48{bottom:524.775000px;}
.y1e{bottom:528.736500px;}
.y73{bottom:537.736500px;}
.y47{bottom:545.475000px;}
.y1d{bottom:549.436500px;}
.y72{bottom:558.436500px;}
.y1c{bottom:570.136500px;}
.y71{bottom:579.136500px;}
.y46{bottom:581.115000px;}
.y1b{bottom:590.836500px;}
.y70{bottom:599.836500px;}
.y45{bottom:601.815000px;}
.y1a{bottom:611.536500px;}
.y6f{bottom:620.536500px;}
.y44{bottom:622.515000px;}
.y19{bottom:632.236500px;}
.y6e{bottom:641.236500px;}
.y43{bottom:643.215000px;}
.y18{bottom:652.936500px;}
.y6d{bottom:661.936500px;}
.y42{bottom:663.915000px;}
.y17{bottom:673.636500px;}
.y6c{bottom:682.636500px;}
.y41{bottom:684.615000px;}
.y16{bottom:694.336500px;}
.y6b{bottom:703.336500px;}
.y40{bottom:705.315000px;}
.y6a{bottom:724.036500px;}
.y8c{bottom:724.215000px;}
.y3f{bottom:726.015000px;}
.y15{bottom:729.975000px;}
.y69{bottom:744.736500px;}
.y8b{bottom:744.915000px;}
.y3e{bottom:746.715000px;}
.y14{bottom:750.675000px;}
.y68{bottom:765.436500px;}
.y8a{bottom:765.615000px;}
.y3d{bottom:767.415000px;}
.y67{bottom:786.136500px;}
.y13{bottom:786.315000px;}
.y3c{bottom:788.115000px;}
.y12{bottom:807.015000px;}
.y66{bottom:808.096500px;}
.y3b{bottom:808.815000px;}
.y11{bottom:827.715000px;}
.y3a{bottom:829.515000px;}
.y65{bottom:830.055000px;}
.y10{bottom:848.415000px;}
.y39{bottom:850.215000px;}
.y64{bottom:852.195000px;}
.yf{bottom:869.115000px;}
.y38{bottom:886.036500px;}
.y63{bottom:889.095000px;}
.ye{bottom:889.815000px;}
.y37{bottom:907.995000px;}
.y62{bottom:909.795000px;}
.yd{bottom:910.515000px;}
.y36{bottom:929.955000px;}
.yc{bottom:931.215000px;}
.y61{bottom:945.615000px;}
.yb{bottom:951.915000px;}
.y60{bottom:966.315000px;}
.y35{bottom:967.036500px;}
.y89{bottom:972.615000px;}
.y34{bottom:987.736500px;}
.y5f{bottom:988.275000px;}
.ya{bottom:993.315000px;}
.y33{bottom:1008.436500px;}
.y5e{bottom:1010.236500px;}
.y9{bottom:1014.015000px;}
.y32{bottom:1029.136500px;}
.y5d{bottom:1030.936500px;}
.y8{bottom:1034.715000px;}
.y31{bottom:1049.836500px;}
.y5c{bottom:1052.895000px;}
.y7{bottom:1055.415000px;}
.y30{bottom:1070.536500px;}
.y5b{bottom:1074.855000px;}
.y88{bottom:1076.115000px;}
.y2f{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.ha{height:51.925512px;}
.h8{height:56.277773px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h9{height:335.025000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w4{width:247.800000px;}
.w3{width:516.825000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:4.575000px;}
.x14{left:10.813500px;}
.x10{left:27.075000px;}
.x11{left:54.075000px;}
.x13{left:114.825000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:132.300000px;}
.xc{left:150.120000px;}
.xd{left:154.620000px;}
.xa{left:159.660000px;}
.xb{left:164.160000px;}
.xe{left:181.620000px;}
.xf{left:376.125000px;}
.x7{left:474.660000px;}
.x3{left:515.880000px;}
.x8{left:537.660000px;}
.x6{left:551.160000px;}
.x9{left:565.560000px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.845333pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:66.624000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws83{word-spacing:-45.791200pt;}
.ws1{word-spacing:-37.224267pt;}
.ws5c{word-spacing:-34.548000pt;}
.ws84{word-spacing:-34.366400pt;}
.ws64{word-spacing:-34.366133pt;}
.ws11{word-spacing:-34.364800pt;}
.ws22{word-spacing:-34.363733pt;}
.ws39{word-spacing:-34.360800pt;}
.ws47{word-spacing:-34.356533pt;}
.ws30{word-spacing:-34.356000pt;}
.ws5b{word-spacing:-34.355200pt;}
.ws60{word-spacing:-34.354667pt;}
.ws80{word-spacing:-34.353600pt;}
.ws85{word-spacing:-34.352000pt;}
.ws77{word-spacing:-34.290400pt;}
.ws90{word-spacing:-34.177333pt;}
.ws6{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.113333pt;}
.ws2c{word-spacing:-34.100000pt;}
.ws1f{word-spacing:-33.925333pt;}
.ws5d{word-spacing:-33.922133pt;}
.ws5{word-spacing:-33.920000pt;}
.ws4c{word-spacing:-33.917600pt;}
.ws58{word-spacing:-33.917333pt;}
.ws63{word-spacing:-33.916800pt;}
.ws4f{word-spacing:-33.915200pt;}
.ws4d{word-spacing:-33.911200pt;}
.ws87{word-spacing:-33.910400pt;}
.ws14{word-spacing:-33.901600pt;}
.ws8c{word-spacing:-33.853600pt;}
.ws8e{word-spacing:-33.732533pt;}
.ws38{word-spacing:-33.731733pt;}
.ws2f{word-spacing:-33.728000pt;}
.ws4e{word-spacing:-33.726400pt;}
.ws35{word-spacing:-33.724800pt;}
.ws5f{word-spacing:-33.723200pt;}
.ws33{word-spacing:-33.720800pt;}
.ws4{word-spacing:-33.720000pt;}
.ws79{word-spacing:-33.719200pt;}
.wsb{word-spacing:-33.716800pt;}
.ws62{word-spacing:-33.713600pt;}
.ws8{word-spacing:-33.526667pt;}
.ws8b{word-spacing:-33.523200pt;}
.ws10{word-spacing:-33.280000pt;}
.ws54{word-spacing:-33.276800pt;}
.ws3b{word-spacing:-33.080800pt;}
.ws50{word-spacing:-33.076800pt;}
.ws74{word-spacing:-32.636800pt;}
.ws52{word-spacing:-32.448000pt;}
.ws37{word-spacing:-32.444800pt;}
.ws3c{word-spacing:-32.436800pt;}
.ws5e{word-spacing:-31.996800pt;}
.ws36{word-spacing:-31.808000pt;}
.ws7b{word-spacing:-31.804000pt;}
.ws3f{word-spacing:-31.742933pt;}
.ws43{word-spacing:-31.730400pt;}
.ws81{word-spacing:-31.558933pt;}
.ws23{word-spacing:-31.360000pt;}
.ws5a{word-spacing:-31.166400pt;}
.ws41{word-spacing:-31.164000pt;}
.ws32{word-spacing:-31.163200pt;}
.ws8d{word-spacing:-30.976000pt;}
.ws69{word-spacing:-30.711467pt;}
.ws24{word-spacing:-30.711200pt;}
.ws34{word-spacing:-30.533333pt;}
.ws70{word-spacing:-30.530133pt;}
.ws53{word-spacing:-30.524800pt;}
.ws29{word-spacing:-30.073600pt;}
.ws6c{word-spacing:-30.071200pt;}
.ws9{word-spacing:-30.057067pt;}
.ws61{word-spacing:-29.886400pt;}
.ws1b{word-spacing:-29.880000pt;}
.ws2{word-spacing:-29.820267pt;}
.ws7e{word-spacing:-29.434400pt;}
.ws28{word-spacing:-29.253333pt;}
.ws2e{word-spacing:-28.613333pt;}
.ws3e{word-spacing:-28.604800pt;}
.ws2d{word-spacing:-28.160000pt;}
.ws86{word-spacing:-28.154933pt;}
.ws89{word-spacing:-27.959200pt;}
.ws2b{word-spacing:-27.898933pt;}
.ws20{word-spacing:-27.512800pt;}
.ws18{word-spacing:-27.316267pt;}
.ws21{word-spacing:-27.316000pt;}
.ws46{word-spacing:-26.688000pt;}
.wse{word-spacing:-26.240000pt;}
.ws6e{word-spacing:-25.596800pt;}
.ws1e{word-spacing:-25.588000pt;}
.ws7d{word-spacing:-25.582400pt;}
.ws68{word-spacing:-25.408000pt;}
.ws31{word-spacing:-25.406400pt;}
.ws8f{word-spacing:-25.330400pt;}
.ws42{word-spacing:-24.965333pt;}
.ws71{word-spacing:-24.963733pt;}
.ws4b{word-spacing:-24.764800pt;}
.ws59{word-spacing:-24.755200pt;}
.ws4a{word-spacing:-24.320000pt;}
.ws57{word-spacing:-24.124800pt;}
.ws48{word-spacing:-24.120000pt;}
.ws3a{word-spacing:-23.480800pt;}
.ws1d{word-spacing:-23.474400pt;}
.ws40{word-spacing:-23.040000pt;}
.wsc{word-spacing:-22.840800pt;}
.ws1c{word-spacing:-22.649600pt;}
.ws55{word-spacing:-22.208000pt;}
.ws65{word-spacing:-22.207200pt;}
.ws56{word-spacing:-22.194400pt;}
.ws7a{word-spacing:-21.564800pt;}
.ws73{word-spacing:-21.554133pt;}
.ws44{word-spacing:-21.114400pt;}
.wsd{word-spacing:-20.467733pt;}
.ws6d{word-spacing:-19.652533pt;}
.ws7c{word-spacing:-19.200000pt;}
.ws8a{word-spacing:-19.196800pt;}
.ws45{word-spacing:-19.191200pt;}
.ws27{word-spacing:-19.066400pt;}
.ws12{word-spacing:-17.908800pt;}
.ws7f{word-spacing:-17.724800pt;}
.ws13{word-spacing:-17.720000pt;}
.ws2a{word-spacing:-17.529600pt;}
.ws3d{word-spacing:-17.009067pt;}
.ws76{word-spacing:-15.994667pt;}
.ws17{word-spacing:-15.792267pt;}
.wsf{word-spacing:-14.531733pt;}
.ws78{word-spacing:-14.071200pt;}
.ws19{word-spacing:-13.884800pt;}
.ws15{word-spacing:-13.431733pt;}
.ws6f{word-spacing:-13.248000pt;}
.ws88{word-spacing:-13.236800pt;}
.ws16{word-spacing:-12.795733pt;}
.wsa{word-spacing:-11.965600pt;}
.ws75{word-spacing:-10.236800pt;}
.ws26{word-spacing:-8.111733pt;}
.ws1a{word-spacing:-7.480000pt;}
.ws67{word-spacing:-5.557600pt;}
.ws6b{word-spacing:-4.913600pt;}
.ws82{word-spacing:-0.355733pt;}
.ws0{word-spacing:0.000000pt;}
.ws72{word-spacing:2.568000pt;}
.ws6a{word-spacing:8.320000pt;}
.ws51{word-spacing:10.240000pt;}
.ws66{word-spacing:15.559467pt;}
.ws49{word-spacing:18.560000pt;}
.ws25{word-spacing:25.664000pt;}
._f{margin-left:-1.979467pt;}
._3{margin-left:-1.073067pt;}
._1{width:1.683733pt;}
._16{width:15.264800pt;}
._14{width:16.293867pt;}
._2{width:17.201600pt;}
._9{width:18.332800pt;}
._0{width:20.004800pt;}
._e{width:21.124267pt;}
._4{width:22.055467pt;}
._c{width:23.540267pt;}
._7{width:24.512000pt;}
._10{width:25.532267pt;}
._15{width:27.228000pt;}
._5{width:28.423733pt;}
._18{width:29.339200pt;}
._6{width:30.523200pt;}
._12{width:32.189600pt;}
._13{width:33.825333pt;}
._b{width:34.864267pt;}
._8{width:36.701333pt;}
._a{width:38.011467pt;}
._1d{width:41.081600pt;}
._11{width:42.646933pt;}
._d{width:43.632000pt;}
._1a{width:45.350667pt;}
._1e{width:48.000000pt;}
._1c{width:53.408000pt;}
._17{width:54.848000pt;}
._1b{width:59.051733pt;}
._19{width:66.424533pt;}
.fs4{font-size:37.866667pt;}
.fs3{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y87{bottom:8.413333pt;}
.y4{bottom:28.866667pt;}
.y5a{bottom:89.666667pt;}
.y85{bottom:101.666667pt;}
.y59{bottom:108.066667pt;}
.y84{bottom:120.066667pt;}
.y2e{bottom:122.146667pt;}
.y58{bottom:126.466667pt;}
.y83{bottom:138.466667pt;}
.y57{bottom:144.866667pt;}
.y2d{bottom:153.988000pt;}
.y82{bottom:156.866667pt;}
.y56{bottom:163.266667pt;}
.y2c{bottom:172.388000pt;}
.y81{bottom:175.266667pt;}
.y80{bottom:193.666667pt;}
.y55{bottom:194.946667pt;}
.y2b{bottom:204.066667pt;}
.y7f{bottom:212.066667pt;}
.y54{bottom:213.346667pt;}
.y2a{bottom:222.466667pt;}
.y7e{bottom:230.466667pt;}
.y53{bottom:231.746667pt;}
.y29{bottom:240.866667pt;}
.y7d{bottom:248.866667pt;}
.y52{bottom:250.146667pt;}
.y28{bottom:259.266667pt;}
.y51{bottom:268.546667pt;}
.y27{bottom:277.666667pt;}
.y7c{bottom:280.706667pt;}
.y50{bottom:286.946667pt;}
.y26{bottom:296.066667pt;}
.y4f{bottom:305.346667pt;}
.y25{bottom:314.466667pt;}
.y7b{bottom:330.788000pt;}
.y24{bottom:332.866667pt;}
.y4e{bottom:337.026667pt;}
.y7a{bottom:349.188000pt;}
.y23{bottom:351.266667pt;}
.y4d{bottom:356.546667pt;}
.y79{bottom:367.588000pt;}
.y22{bottom:369.666667pt;}
.y4c{bottom:376.066667pt;}
.y78{bottom:385.988000pt;}
.y86{bottom:392.933333pt;}
.y4b{bottom:395.746667pt;}
.y21{bottom:401.346667pt;}
.y77{bottom:404.388000pt;}
.y4a{bottom:415.266667pt;}
.y20{bottom:419.746667pt;}
.y76{bottom:422.788000pt;}
.y75{bottom:441.188000pt;}
.y49{bottom:448.066667pt;}
.y1f{bottom:451.588000pt;}
.y74{bottom:459.588000pt;}
.y48{bottom:466.466667pt;}
.y1e{bottom:469.988000pt;}
.y73{bottom:477.988000pt;}
.y47{bottom:484.866667pt;}
.y1d{bottom:488.388000pt;}
.y72{bottom:496.388000pt;}
.y1c{bottom:506.788000pt;}
.y71{bottom:514.788000pt;}
.y46{bottom:516.546667pt;}
.y1b{bottom:525.188000pt;}
.y70{bottom:533.188000pt;}
.y45{bottom:534.946667pt;}
.y1a{bottom:543.588000pt;}
.y6f{bottom:551.588000pt;}
.y44{bottom:553.346667pt;}
.y19{bottom:561.988000pt;}
.y6e{bottom:569.988000pt;}
.y43{bottom:571.746667pt;}
.y18{bottom:580.388000pt;}
.y6d{bottom:588.388000pt;}
.y42{bottom:590.146667pt;}
.y17{bottom:598.788000pt;}
.y6c{bottom:606.788000pt;}
.y41{bottom:608.546667pt;}
.y16{bottom:617.188000pt;}
.y6b{bottom:625.188000pt;}
.y40{bottom:626.946667pt;}
.y6a{bottom:643.588000pt;}
.y8c{bottom:643.746667pt;}
.y3f{bottom:645.346667pt;}
.y15{bottom:648.866667pt;}
.y69{bottom:661.988000pt;}
.y8b{bottom:662.146667pt;}
.y3e{bottom:663.746667pt;}
.y14{bottom:667.266667pt;}
.y68{bottom:680.388000pt;}
.y8a{bottom:680.546667pt;}
.y3d{bottom:682.146667pt;}
.y67{bottom:698.788000pt;}
.y13{bottom:698.946667pt;}
.y3c{bottom:700.546667pt;}
.y12{bottom:717.346667pt;}
.y66{bottom:718.308000pt;}
.y3b{bottom:718.946667pt;}
.y11{bottom:735.746667pt;}
.y3a{bottom:737.346667pt;}
.y65{bottom:737.826667pt;}
.y10{bottom:754.146667pt;}
.y39{bottom:755.746667pt;}
.y64{bottom:757.506667pt;}
.yf{bottom:772.546667pt;}
.y38{bottom:787.588000pt;}
.y63{bottom:790.306667pt;}
.ye{bottom:790.946667pt;}
.y37{bottom:807.106667pt;}
.y62{bottom:808.706667pt;}
.yd{bottom:809.346667pt;}
.y36{bottom:826.626667pt;}
.yc{bottom:827.746667pt;}
.y61{bottom:840.546667pt;}
.yb{bottom:846.146667pt;}
.y60{bottom:858.946667pt;}
.y35{bottom:859.588000pt;}
.y89{bottom:864.546667pt;}
.y34{bottom:877.988000pt;}
.y5f{bottom:878.466667pt;}
.ya{bottom:882.946667pt;}
.y33{bottom:896.388000pt;}
.y5e{bottom:897.988000pt;}
.y9{bottom:901.346667pt;}
.y32{bottom:914.788000pt;}
.y5d{bottom:916.388000pt;}
.y8{bottom:919.746667pt;}
.y31{bottom:933.188000pt;}
.y5c{bottom:935.906667pt;}
.y7{bottom:938.146667pt;}
.y30{bottom:951.588000pt;}
.y5b{bottom:955.426667pt;}
.y88{bottom:956.546667pt;}
.y2f{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.ha{height:46.156010pt;}
.h8{height:50.024688pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h9{height:297.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w4{width:220.266667pt;}
.w3{width:459.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.066667pt;}
.x14{left:9.612000pt;}
.x10{left:24.066667pt;}
.x11{left:48.066667pt;}
.x13{left:102.066667pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:117.600000pt;}
.xc{left:133.440000pt;}
.xd{left:137.440000pt;}
.xa{left:141.920000pt;}
.xb{left:145.920000pt;}
.xe{left:161.440000pt;}
.xf{left:334.333333pt;}
.x7{left:421.920000pt;}
.x3{left:458.560000pt;}
.x8{left:477.920000pt;}
.x6{left:489.920000pt;}
.x9{left:502.720000pt;}
.x2{left:537.440000pt;}
}




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