
    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_bda9160663d6a7eeeb532196.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_bda9160663d6a7eeeb532196.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_c5f1a11bc4a6462fa27d86dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_0f22f284afa64b6fa8433eff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_cbe27d817aa5468630a9d7a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_d75832e463d83b79fc9f72ec.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6baf59944f60f93a7d60989d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6437a3855c883d099604e279.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e5bd296b8f26b32edf24973a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_509ca910f4102b4cb8f1a206.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7f8268aa03338f3b26aa88de.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ed2a1ce1920bd8384345c4c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f030b89eed77cffa78a80e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.707000;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:ffe;src:url('chunks/assets/font_204c11374ffad1bff5aa22be.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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:fff;src:url('chunks/assets/font_c5f1a11bc4a6462fa27d86dd.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;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:ff10;src:url('chunks/assets/font_8e602e47de4e3d3484b46aeb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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:ff11;src:url('chunks/assets/font_67d53027008b581984361bfb.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls2{letter-spacing:-0.768000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:48.000000px;}
.ls3{letter-spacing:49.020000px;}
.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;}
}
.ws5{word-spacing:-60.000000px;}
.ws6{word-spacing:-51.780000px;}
.ws22{word-spacing:-51.720000px;}
.ws8{word-spacing:-51.360000px;}
.ws15{word-spacing:-51.300000px;}
.ws16{word-spacing:-50.940000px;}
.ws3d{word-spacing:-50.460000px;}
.ws7{word-spacing:-50.340000px;}
.ws26{word-spacing:-49.260000px;}
.ws2d{word-spacing:-49.200000px;}
.ws33{word-spacing:-47.820000px;}
.ws35{word-spacing:-47.160000px;}
.ws24{word-spacing:-46.920000px;}
.ws1f{word-spacing:-46.800000px;}
.ws36{word-spacing:-46.740000px;}
.ws3c{word-spacing:-46.500000px;}
.ws3{word-spacing:-46.080000px;}
.ws40{word-spacing:-45.840000px;}
.ws1e{word-spacing:-45.480000px;}
.ws23{word-spacing:-45.060000px;}
.ws19{word-spacing:-45.000000px;}
.ws43{word-spacing:-44.760000px;}
.ws32{word-spacing:-44.400000px;}
.ws17{word-spacing:-44.100000px;}
.ws34{word-spacing:-43.800000px;}
.ws3e{word-spacing:-43.260000px;}
.ws3a{word-spacing:-42.900000px;}
.ws3f{word-spacing:-42.300000px;}
.ws39{word-spacing:-40.920000px;}
.ws1d{word-spacing:-40.020000px;}
.ws20{word-spacing:-39.660000px;}
.ws2b{word-spacing:-39.300000px;}
.ws3b{word-spacing:-39.120000px;}
.ws29{word-spacing:-37.740000px;}
.ws28{word-spacing:-37.320000px;}
.ws37{word-spacing:-34.980000px;}
.ws30{word-spacing:-34.560000px;}
.ws38{word-spacing:-34.320000px;}
.ws42{word-spacing:-34.080000px;}
.ws4{word-spacing:-33.300000px;}
.ws25{word-spacing:-33.120000px;}
.ws2a{word-spacing:-32.040000px;}
.ws2f{word-spacing:-30.540000px;}
.ws1c{word-spacing:-30.114000px;}
.ws2e{word-spacing:-28.560000px;}
.ws41{word-spacing:-25.380000px;}
.ws2c{word-spacing:-22.680000px;}
.ws1b{word-spacing:-16.320000px;}
.ws31{word-spacing:-15.780000px;}
.ws2{word-spacing:-15.000000px;}
.ws1a{word-spacing:-14.640000px;}
.ws21{word-spacing:-14.040000px;}
.ws27{word-spacing:-1.440000px;}
.ws45{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.324000px;}
.ws11{word-spacing:-0.162000px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.wsa{word-spacing:1.512000px;}
.ws44{word-spacing:2.100000px;}
.wsf{word-spacing:2.754000px;}
.wsd{word-spacing:4.914000px;}
.wse{word-spacing:7.290000px;}
.wsc{word-spacing:8.694000px;}
.ws18{word-spacing:10.038000px;}
.wsb{word-spacing:15.498000px;}
.ws12{word-spacing:29.322000px;}
.ws13{word-spacing:33.621000px;}
.ws14{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._f{margin-left:-51.000000px;}
._6{margin-left:-6.611400px;}
._5{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._4{margin-left:-3.357000px;}
._3{margin-left:-2.229000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._8{width:2.872800px;}
._9{width:4.114800px;}
._d{width:5.580000px;}
._7{width:7.025400px;}
._e{width:8.328600px;}
._16{width:11.760000px;}
._17{width:14.754600px;}
._a{width:17.080200px;}
._c{width:25.560000px;}
._13{width:32.994600px;}
._14{width:34.193400px;}
._19{width:38.945400px;}
._18{width:41.934600px;}
._15{width:47.403600px;}
._12{width:48.600000px;}
._11{width:49.614600px;}
._b{width:69.000000px;}
._10{width:70.038000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y2f{bottom:91.642650px;}
.y67{bottom:100.078050px;}
.y2e{bottom:111.142650px;}
.y66{bottom:119.578050px;}
.y2d{bottom:130.642650px;}
.y65{bottom:139.078050px;}
.y2c{bottom:150.142650px;}
.y64{bottom:158.578050px;}
.y2b{bottom:169.642650px;}
.y63{bottom:178.078050px;}
.y2a{bottom:189.142650px;}
.y62{bottom:197.578050px;}
.y29{bottom:208.642650px;}
.y61{bottom:217.078050px;}
.y60{bottom:236.578050px;}
.y28{bottom:243.142650px;}
.y5f{bottom:256.078050px;}
.y27{bottom:262.642650px;}
.y5e{bottom:275.578050px;}
.y26{bottom:282.142650px;}
.y5d{bottom:295.078050px;}
.y25{bottom:301.642650px;}
.y5c{bottom:314.578050px;}
.y24{bottom:321.142650px;}
.y5b{bottom:334.078050px;}
.y23{bottom:340.642650px;}
.y22{bottom:360.142650px;}
.y5a{bottom:373.078050px;}
.y21{bottom:379.642650px;}
.y59{bottom:392.578050px;}
.y20{bottom:399.142650px;}
.y58{bottom:412.078050px;}
.y1f{bottom:418.642650px;}
.y57{bottom:431.578050px;}
.y1e{bottom:438.142650px;}
.y56{bottom:451.078050px;}
.y38{bottom:456.139950px;}
.y1d{bottom:457.642650px;}
.y55{bottom:470.578050px;}
.y1c{bottom:477.142650px;}
.y37{bottom:478.639950px;}
.y54{bottom:490.078050px;}
.y1b{bottom:496.642650px;}
.y36{bottom:501.139950px;}
.y53{bottom:509.578050px;}
.y1a{bottom:516.142650px;}
.y7e{bottom:528.159600px;}
.y52{bottom:529.078050px;}
.y35{bottom:541.639950px;}
.y7d{bottom:547.659600px;}
.y51{bottom:548.578050px;}
.y19{bottom:555.207150px;}
.y7c{bottom:567.159600px;}
.y50{bottom:568.078050px;}
.y18{bottom:574.701150px;}
.y34{bottom:586.639950px;}
.y7b{bottom:586.659600px;}
.y4f{bottom:587.578050px;}
.y17{bottom:592.696650px;}
.y80{bottom:606.159600px;}
.y4e{bottom:607.078050px;}
.y16{bottom:610.692150px;}
.y7a{bottom:625.659600px;}
.y4d{bottom:626.578050px;}
.y33{bottom:627.139950px;}
.y15{bottom:628.687650px;}
.y79{bottom:645.159600px;}
.y4c{bottom:646.078050px;}
.y14{bottom:646.683150px;}
.y32{bottom:663.139950px;}
.y78{bottom:664.659600px;}
.y13{bottom:664.678650px;}
.y4b{bottom:665.578050px;}
.y12{bottom:682.674150px;}
.y77{bottom:684.159600px;}
.y4a{bottom:685.078050px;}
.y31{bottom:699.139950px;}
.y11{bottom:700.669650px;}
.y76{bottom:703.659600px;}
.y49{bottom:704.578050px;}
.y10{bottom:718.665150px;}
.y75{bottom:723.159600px;}
.y48{bottom:724.078050px;}
.y30{bottom:735.139950px;}
.yf{bottom:736.660650px;}
.y74{bottom:742.659600px;}
.y47{bottom:743.578050px;}
.ye{bottom:754.656150px;}
.y73{bottom:762.159600px;}
.y46{bottom:763.078050px;}
.yd{bottom:772.651650px;}
.y72{bottom:781.659600px;}
.yc{bottom:790.647150px;}
.y71{bottom:801.159600px;}
.y45{bottom:802.078050px;}
.yb{bottom:808.642650px;}
.y70{bottom:820.659600px;}
.y44{bottom:821.578050px;}
.ya{bottom:826.642650px;}
.y6f{bottom:840.159600px;}
.y43{bottom:841.078050px;}
.y6e{bottom:859.659600px;}
.y42{bottom:860.578050px;}
.y9{bottom:865.648650px;}
.y6d{bottom:879.159600px;}
.y41{bottom:880.078050px;}
.y8{bottom:885.142650px;}
.y6c{bottom:898.659600px;}
.y40{bottom:899.578050px;}
.y7{bottom:903.142650px;}
.y6b{bottom:918.159600px;}
.y3f{bottom:919.078050px;}
.y7f{bottom:937.659600px;}
.y3e{bottom:938.578050px;}
.y6{bottom:942.142650px;}
.y6a{bottom:957.159600px;}
.y3d{bottom:958.078050px;}
.y5{bottom:969.142650px;}
.y69{bottom:976.659600px;}
.y3c{bottom:977.578050px;}
.y68{bottom:996.159600px;}
.y3b{bottom:997.078050px;}
.y4{bottom:1024.374150px;}
.y3a{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.he{height:41.660156px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xf{left:65.202600px;}
.xe{left:71.253150px;}
.xd{left:73.559100px;}
.x10{left:90.779400px;}
.xa{left:224.187900px;}
.xb{left:233.247900px;}
.xc{left:251.187900px;}
.x5{left:293.597100px;}
.x6{left:346.427100px;}
.x13{left:399.974400px;}
.x12{left:408.929400px;}
.x4{left:412.272150px;}
.x11{left:426.944400px;}
.x8{left:479.362650px;}
.x9{left:527.517150px;}
.x7{left:586.995600px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:42.666667pt;}
.ls3{letter-spacing:43.573333pt;}
.ws5{word-spacing:-53.333333pt;}
.ws6{word-spacing:-46.026667pt;}
.ws22{word-spacing:-45.973333pt;}
.ws8{word-spacing:-45.653333pt;}
.ws15{word-spacing:-45.600000pt;}
.ws16{word-spacing:-45.280000pt;}
.ws3d{word-spacing:-44.853333pt;}
.ws7{word-spacing:-44.746667pt;}
.ws26{word-spacing:-43.786667pt;}
.ws2d{word-spacing:-43.733333pt;}
.ws33{word-spacing:-42.506667pt;}
.ws35{word-spacing:-41.920000pt;}
.ws24{word-spacing:-41.706667pt;}
.ws1f{word-spacing:-41.600000pt;}
.ws36{word-spacing:-41.546667pt;}
.ws3c{word-spacing:-41.333333pt;}
.ws3{word-spacing:-40.960000pt;}
.ws40{word-spacing:-40.746667pt;}
.ws1e{word-spacing:-40.426667pt;}
.ws23{word-spacing:-40.053333pt;}
.ws19{word-spacing:-40.000000pt;}
.ws43{word-spacing:-39.786667pt;}
.ws32{word-spacing:-39.466667pt;}
.ws17{word-spacing:-39.200000pt;}
.ws34{word-spacing:-38.933333pt;}
.ws3e{word-spacing:-38.453333pt;}
.ws3a{word-spacing:-38.133333pt;}
.ws3f{word-spacing:-37.600000pt;}
.ws39{word-spacing:-36.373333pt;}
.ws1d{word-spacing:-35.573333pt;}
.ws20{word-spacing:-35.253333pt;}
.ws2b{word-spacing:-34.933333pt;}
.ws3b{word-spacing:-34.773333pt;}
.ws29{word-spacing:-33.546667pt;}
.ws28{word-spacing:-33.173333pt;}
.ws37{word-spacing:-31.093333pt;}
.ws30{word-spacing:-30.720000pt;}
.ws38{word-spacing:-30.506667pt;}
.ws42{word-spacing:-30.293333pt;}
.ws4{word-spacing:-29.600000pt;}
.ws25{word-spacing:-29.440000pt;}
.ws2a{word-spacing:-28.480000pt;}
.ws2f{word-spacing:-27.146667pt;}
.ws1c{word-spacing:-26.768000pt;}
.ws2e{word-spacing:-25.386667pt;}
.ws41{word-spacing:-22.560000pt;}
.ws2c{word-spacing:-20.160000pt;}
.ws1b{word-spacing:-14.506667pt;}
.ws31{word-spacing:-14.026667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-13.013333pt;}
.ws21{word-spacing:-12.480000pt;}
.ws27{word-spacing:-1.280000pt;}
.ws45{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.288000pt;}
.ws11{word-spacing:-0.144000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.wsa{word-spacing:1.344000pt;}
.ws44{word-spacing:1.866667pt;}
.wsf{word-spacing:2.448000pt;}
.wsd{word-spacing:4.368000pt;}
.wse{word-spacing:6.480000pt;}
.wsc{word-spacing:7.728000pt;}
.ws18{word-spacing:8.922667pt;}
.wsb{word-spacing:13.776000pt;}
.ws12{word-spacing:26.064000pt;}
.ws13{word-spacing:29.885333pt;}
.ws14{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._f{margin-left:-45.333333pt;}
._6{margin-left:-5.876800pt;}
._5{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._4{margin-left:-2.984000pt;}
._3{margin-left:-1.981333pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._8{width:2.553600pt;}
._9{width:3.657600pt;}
._d{width:4.960000pt;}
._7{width:6.244800pt;}
._e{width:7.403200pt;}
._16{width:10.453333pt;}
._17{width:13.115200pt;}
._a{width:15.182400pt;}
._c{width:22.720000pt;}
._13{width:29.328533pt;}
._14{width:30.394133pt;}
._19{width:34.618133pt;}
._18{width:37.275200pt;}
._15{width:42.136533pt;}
._12{width:43.200000pt;}
._11{width:44.101867pt;}
._b{width:61.333333pt;}
._10{width:62.256000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y2f{bottom:81.460133pt;}
.y67{bottom:88.958267pt;}
.y2e{bottom:98.793467pt;}
.y66{bottom:106.291600pt;}
.y2d{bottom:116.126800pt;}
.y65{bottom:123.624933pt;}
.y2c{bottom:133.460133pt;}
.y64{bottom:140.958267pt;}
.y2b{bottom:150.793467pt;}
.y63{bottom:158.291600pt;}
.y2a{bottom:168.126800pt;}
.y62{bottom:175.624933pt;}
.y29{bottom:185.460133pt;}
.y61{bottom:192.958267pt;}
.y60{bottom:210.291600pt;}
.y28{bottom:216.126800pt;}
.y5f{bottom:227.624933pt;}
.y27{bottom:233.460133pt;}
.y5e{bottom:244.958267pt;}
.y26{bottom:250.793467pt;}
.y5d{bottom:262.291600pt;}
.y25{bottom:268.126800pt;}
.y5c{bottom:279.624933pt;}
.y24{bottom:285.460133pt;}
.y5b{bottom:296.958267pt;}
.y23{bottom:302.793467pt;}
.y22{bottom:320.126800pt;}
.y5a{bottom:331.624933pt;}
.y21{bottom:337.460133pt;}
.y59{bottom:348.958267pt;}
.y20{bottom:354.793467pt;}
.y58{bottom:366.291600pt;}
.y1f{bottom:372.126800pt;}
.y57{bottom:383.624933pt;}
.y1e{bottom:389.460133pt;}
.y56{bottom:400.958267pt;}
.y38{bottom:405.457733pt;}
.y1d{bottom:406.793467pt;}
.y55{bottom:418.291600pt;}
.y1c{bottom:424.126800pt;}
.y37{bottom:425.457733pt;}
.y54{bottom:435.624933pt;}
.y1b{bottom:441.460133pt;}
.y36{bottom:445.457733pt;}
.y53{bottom:452.958267pt;}
.y1a{bottom:458.793467pt;}
.y7e{bottom:469.475200pt;}
.y52{bottom:470.291600pt;}
.y35{bottom:481.457733pt;}
.y7d{bottom:486.808533pt;}
.y51{bottom:487.624933pt;}
.y19{bottom:493.517467pt;}
.y7c{bottom:504.141867pt;}
.y50{bottom:504.958267pt;}
.y18{bottom:510.845467pt;}
.y34{bottom:521.457733pt;}
.y7b{bottom:521.475200pt;}
.y4f{bottom:522.291600pt;}
.y17{bottom:526.841467pt;}
.y80{bottom:538.808533pt;}
.y4e{bottom:539.624933pt;}
.y16{bottom:542.837467pt;}
.y7a{bottom:556.141867pt;}
.y4d{bottom:556.958267pt;}
.y33{bottom:557.457733pt;}
.y15{bottom:558.833467pt;}
.y79{bottom:573.475200pt;}
.y4c{bottom:574.291600pt;}
.y14{bottom:574.829467pt;}
.y32{bottom:589.457733pt;}
.y78{bottom:590.808533pt;}
.y13{bottom:590.825467pt;}
.y4b{bottom:591.624933pt;}
.y12{bottom:606.821467pt;}
.y77{bottom:608.141867pt;}
.y4a{bottom:608.958267pt;}
.y31{bottom:621.457733pt;}
.y11{bottom:622.817467pt;}
.y76{bottom:625.475200pt;}
.y49{bottom:626.291600pt;}
.y10{bottom:638.813467pt;}
.y75{bottom:642.808533pt;}
.y48{bottom:643.624933pt;}
.y30{bottom:653.457733pt;}
.yf{bottom:654.809467pt;}
.y74{bottom:660.141867pt;}
.y47{bottom:660.958267pt;}
.ye{bottom:670.805467pt;}
.y73{bottom:677.475200pt;}
.y46{bottom:678.291600pt;}
.yd{bottom:686.801467pt;}
.y72{bottom:694.808533pt;}
.yc{bottom:702.797467pt;}
.y71{bottom:712.141867pt;}
.y45{bottom:712.958267pt;}
.yb{bottom:718.793467pt;}
.y70{bottom:729.475200pt;}
.y44{bottom:730.291600pt;}
.ya{bottom:734.793467pt;}
.y6f{bottom:746.808533pt;}
.y43{bottom:747.624933pt;}
.y6e{bottom:764.141867pt;}
.y42{bottom:764.958267pt;}
.y9{bottom:769.465467pt;}
.y6d{bottom:781.475200pt;}
.y41{bottom:782.291600pt;}
.y8{bottom:786.793467pt;}
.y6c{bottom:798.808533pt;}
.y40{bottom:799.624933pt;}
.y7{bottom:802.793467pt;}
.y6b{bottom:816.141867pt;}
.y3f{bottom:816.958267pt;}
.y7f{bottom:833.475200pt;}
.y3e{bottom:834.291600pt;}
.y6{bottom:837.460133pt;}
.y6a{bottom:850.808533pt;}
.y3d{bottom:851.624933pt;}
.y5{bottom:861.460133pt;}
.y69{bottom:868.141867pt;}
.y3c{bottom:868.958267pt;}
.y68{bottom:885.475200pt;}
.y3b{bottom:886.291600pt;}
.y4{bottom:910.554800pt;}
.y3a{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.he{height:37.031250pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xf{left:57.957867pt;}
.xe{left:63.336133pt;}
.xd{left:65.385867pt;}
.x10{left:80.692800pt;}
.xa{left:199.278133pt;}
.xb{left:207.331467pt;}
.xc{left:223.278133pt;}
.x5{left:260.975200pt;}
.x6{left:307.935200pt;}
.x13{left:355.532800pt;}
.x12{left:363.492800pt;}
.x4{left:366.464133pt;}
.x11{left:379.506133pt;}
.x8{left:426.100133pt;}
.x9{left:468.904133pt;}
.x7{left:521.773867pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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