
    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_2cb2682b53b0cf1de2beb176.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_3049e6ff7b2db1a38e44a1a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.236000;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_ccd88f166284fb7e324c6de9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_cfb6f9634f6ba40f0a5b6026.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.964000;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_3f30498c2f9e7db3170d8492.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088000;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_7f54e8b916176c242cf56bb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_8ef847856ac2d242e90b9a1d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020000;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_989f9e5bcb0a74a335dddc3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.246000;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_000354c0b902ff1a87b79512.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.018000;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_71e514b305c8b731f34207f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.149000;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_15df05ad03ec8e23d87c9e24.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.119000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.010000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.920000px;}
.ls2{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.629400px;}
.ls5{letter-spacing:0.630000px;}
.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;}
}
.ws6{word-spacing:-21.600000px;}
.ws7{word-spacing:-18.000000px;}
.ws2f{word-spacing:-17.400000px;}
.ws45{word-spacing:-14.238000px;}
.ws35{word-spacing:-3.150000px;}
.ws17{word-spacing:-2.961000px;}
.ws9{word-spacing:-2.898000px;}
.ws8{word-spacing:-2.835000px;}
.ws59{word-spacing:-2.772000px;}
.ws68{word-spacing:-2.646000px;}
.ws2{word-spacing:-2.641703px;}
.ws22{word-spacing:-2.520000px;}
.ws76{word-spacing:-2.457000px;}
.ws10{word-spacing:-2.394000px;}
.ws66{word-spacing:-2.331000px;}
.ws23{word-spacing:-2.268000px;}
.ws52{word-spacing:-2.142000px;}
.wsb{word-spacing:-2.079000px;}
.ws3f{word-spacing:-2.016000px;}
.wsf{word-spacing:-1.953000px;}
.ws4a{word-spacing:-1.890000px;}
.ws24{word-spacing:-1.764000px;}
.ws48{word-spacing:-1.701000px;}
.ws21{word-spacing:-1.575000px;}
.ws18{word-spacing:-1.512000px;}
.ws4e{word-spacing:-1.449000px;}
.ws6f{word-spacing:-1.386000px;}
.wse{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.197000px;}
.ws33{word-spacing:-1.134000px;}
.ws46{word-spacing:-1.071000px;}
.ws2d{word-spacing:-1.008000px;}
.ws55{word-spacing:-0.945000px;}
.ws6b{word-spacing:-0.882000px;}
.ws3{word-spacing:-0.819000px;}
.ws57{word-spacing:-0.756000px;}
.ws11{word-spacing:-0.693000px;}
.ws50{word-spacing:-0.630000px;}
.ws60{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.567000px;}
.wsd{word-spacing:-0.441000px;}
.ws4c{word-spacing:-0.315000px;}
.ws2a{word-spacing:-0.252000px;}
.ws3c{word-spacing:-0.126000px;}
.ws0{word-spacing:-0.102000px;}
.ws1{word-spacing:0.000000px;}
.ws5b{word-spacing:0.063000px;}
.ws13{word-spacing:0.126000px;}
.ws5a{word-spacing:0.189000px;}
.ws3e{word-spacing:0.252000px;}
.ws74{word-spacing:0.315000px;}
.ws56{word-spacing:0.378000px;}
.ws31{word-spacing:0.441000px;}
.ws77{word-spacing:0.504000px;}
.ws5{word-spacing:0.567000px;}
.ws28{word-spacing:0.600000px;}
.ws58{word-spacing:0.630000px;}
.ws4f{word-spacing:0.693000px;}
.ws14{word-spacing:0.756000px;}
.ws49{word-spacing:0.819000px;}
.ws5d{word-spacing:0.882000px;}
.ws6e{word-spacing:0.945000px;}
.wsa{word-spacing:1.008000px;}
.ws2b{word-spacing:1.071000px;}
.ws30{word-spacing:1.134000px;}
.ws39{word-spacing:1.386000px;}
.ws54{word-spacing:1.449000px;}
.ws38{word-spacing:1.512000px;}
.ws1a{word-spacing:1.638000px;}
.ws69{word-spacing:1.701000px;}
.ws44{word-spacing:1.764000px;}
.ws70{word-spacing:1.890000px;}
.ws78{word-spacing:1.953000px;}
.ws29{word-spacing:2.142000px;}
.ws51{word-spacing:2.205000px;}
.ws64{word-spacing:2.268000px;}
.ws79{word-spacing:2.331000px;}
.ws71{word-spacing:2.394000px;}
.ws42{word-spacing:2.457000px;}
.ws27{word-spacing:2.709000px;}
.ws37{word-spacing:2.772000px;}
.ws2e{word-spacing:2.835000px;}
.ws1d{word-spacing:2.898000px;}
.ws73{word-spacing:2.961000px;}
.ws1e{word-spacing:3.087000px;}
.ws67{word-spacing:3.150000px;}
.ws43{word-spacing:3.213000px;}
.ws41{word-spacing:3.339000px;}
.ws1c{word-spacing:3.465000px;}
.ws5c{word-spacing:3.528000px;}
.ws19{word-spacing:3.591000px;}
.ws16{word-spacing:3.654000px;}
.ws26{word-spacing:3.717000px;}
.ws3a{word-spacing:3.843000px;}
.ws3b{word-spacing:4.095000px;}
.ws1f{word-spacing:4.221000px;}
.wsc{word-spacing:4.284000px;}
.ws5f{word-spacing:4.347000px;}
.ws63{word-spacing:4.410000px;}
.ws40{word-spacing:4.536000px;}
.ws75{word-spacing:4.599000px;}
.ws6d{word-spacing:4.662000px;}
.ws4b{word-spacing:4.725000px;}
.ws6a{word-spacing:4.977000px;}
.ws72{word-spacing:5.103000px;}
.ws1b{word-spacing:5.166000px;}
.ws4{word-spacing:5.418000px;}
.ws53{word-spacing:5.733000px;}
.ws2c{word-spacing:5.796000px;}
.ws65{word-spacing:5.922000px;}
.ws32{word-spacing:5.985000px;}
.ws25{word-spacing:6.111000px;}
.ws3d{word-spacing:6.174000px;}
.ws34{word-spacing:6.489000px;}
.ws36{word-spacing:6.552000px;}
.ws4d{word-spacing:6.741000px;}
.ws6c{word-spacing:6.930000px;}
.ws20{word-spacing:6.993000px;}
.ws47{word-spacing:7.182000px;}
.ws5e{word-spacing:7.308000px;}
.ws61{word-spacing:8.316000px;}
.ws62{word-spacing:8.379000px;}
._e{margin-left:-18.000000px;}
._6{margin-left:-16.335600px;}
._1{margin-left:-10.200000px;}
._0{margin-left:-9.180000px;}
._12{margin-left:-7.725900px;}
._9{margin-left:-6.471900px;}
._7{margin-left:-4.680000px;}
._8{margin-left:-3.530100px;}
._4{margin-left:-2.340000px;}
._2{margin-left:-1.177800px;}
._f{width:1.794000px;}
._5{width:2.880000px;}
._a{width:4.063500px;}
._b{width:5.647500px;}
._10{width:7.131600px;}
._11{width:8.561700px;}
._d{width:42.000000px;}
._3{width:382.675800px;}
._c{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:91.093200px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs6{font-size:156.000000px;}
.fs2{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.510300px;}
.y42{bottom:105.726900px;}
.y6b{bottom:106.136550px;}
.y99{bottom:106.252050px;}
.y41{bottom:128.226900px;}
.y6a{bottom:128.636550px;}
.y98{bottom:128.752050px;}
.y40{bottom:150.726900px;}
.y69{bottom:151.136550px;}
.y97{bottom:151.252050px;}
.y3f{bottom:173.226900px;}
.y68{bottom:173.636550px;}
.y96{bottom:173.752050px;}
.y3e{bottom:195.726900px;}
.y6e{bottom:196.136550px;}
.y95{bottom:196.252050px;}
.y3d{bottom:218.226900px;}
.y67{bottom:218.636550px;}
.y94{bottom:218.752050px;}
.y3c{bottom:240.726900px;}
.y66{bottom:241.136550px;}
.y93{bottom:241.252050px;}
.y3b{bottom:263.226900px;}
.y65{bottom:263.636550px;}
.y92{bottom:263.752050px;}
.y3a{bottom:285.726900px;}
.y64{bottom:286.136550px;}
.y91{bottom:286.252050px;}
.y39{bottom:308.226900px;}
.y63{bottom:308.636550px;}
.y90{bottom:308.752050px;}
.y38{bottom:330.726900px;}
.y62{bottom:331.136550px;}
.y8f{bottom:331.252050px;}
.y37{bottom:353.226900px;}
.y61{bottom:353.636550px;}
.y8e{bottom:353.752050px;}
.y36{bottom:375.726900px;}
.y60{bottom:376.136550px;}
.y8d{bottom:376.252050px;}
.y35{bottom:398.226900px;}
.y5f{bottom:398.636550px;}
.y8c{bottom:398.752050px;}
.y34{bottom:420.726900px;}
.y5e{bottom:421.136550px;}
.y8b{bottom:421.252050px;}
.y15{bottom:429.822000px;}
.y33{bottom:443.226900px;}
.y5d{bottom:443.636550px;}
.y8a{bottom:443.752050px;}
.y14{bottom:452.322000px;}
.y32{bottom:465.726900px;}
.y5c{bottom:466.136550px;}
.y89{bottom:466.252050px;}
.y13{bottom:474.822000px;}
.y31{bottom:488.226900px;}
.y5b{bottom:488.636550px;}
.y88{bottom:488.752050px;}
.y12{bottom:497.322000px;}
.y30{bottom:510.726900px;}
.y5a{bottom:511.136550px;}
.y87{bottom:511.252050px;}
.y11{bottom:519.822000px;}
.y2f{bottom:533.226900px;}
.y59{bottom:533.636550px;}
.y86{bottom:533.752050px;}
.y10{bottom:542.322000px;}
.y2e{bottom:555.726900px;}
.y58{bottom:556.136550px;}
.yf{bottom:564.822000px;}
.y2d{bottom:578.226900px;}
.y57{bottom:578.636550px;}
.y85{bottom:578.752050px;}
.ye{bottom:587.322000px;}
.y2c{bottom:600.726900px;}
.y56{bottom:601.136550px;}
.y84{bottom:601.252050px;}
.yd{bottom:609.822000px;}
.y2b{bottom:623.226900px;}
.y55{bottom:623.636550px;}
.y83{bottom:623.752050px;}
.yc{bottom:632.322000px;}
.y2a{bottom:645.726900px;}
.y54{bottom:646.136550px;}
.y82{bottom:646.252050px;}
.yb{bottom:654.822000px;}
.y29{bottom:668.226900px;}
.y53{bottom:668.636550px;}
.y81{bottom:668.752050px;}
.ya{bottom:677.322000px;}
.y28{bottom:690.726900px;}
.y52{bottom:691.136550px;}
.y80{bottom:691.252050px;}
.y9{bottom:699.822000px;}
.y27{bottom:713.226900px;}
.y51{bottom:713.636550px;}
.y7f{bottom:713.752050px;}
.y8{bottom:722.322000px;}
.y26{bottom:735.726900px;}
.y50{bottom:736.136550px;}
.y7e{bottom:736.252050px;}
.y25{bottom:758.226900px;}
.y6d{bottom:758.636550px;}
.y7d{bottom:758.752050px;}
.y24{bottom:780.726900px;}
.y4f{bottom:781.136550px;}
.y7c{bottom:781.252050px;}
.y7{bottom:795.845700px;}
.y23{bottom:803.226900px;}
.y4e{bottom:803.636550px;}
.y7b{bottom:803.752050px;}
.y22{bottom:825.726900px;}
.y4d{bottom:826.136550px;}
.y7a{bottom:826.252050px;}
.y21{bottom:848.226900px;}
.y4c{bottom:848.636550px;}
.y79{bottom:848.752050px;}
.y6{bottom:863.357550px;}
.y20{bottom:870.726900px;}
.y4b{bottom:871.136550px;}
.y78{bottom:871.252050px;}
.y1f{bottom:893.227050px;}
.y4a{bottom:893.636400px;}
.y77{bottom:893.752050px;}
.y1e{bottom:915.727050px;}
.y49{bottom:916.136400px;}
.y76{bottom:916.252050px;}
.y1{bottom:923.628600px;}
.y1d{bottom:938.227050px;}
.y48{bottom:938.636400px;}
.y75{bottom:938.752050px;}
.y1c{bottom:960.727050px;}
.y6c{bottom:961.136400px;}
.y5{bottom:961.189500px;}
.y74{bottom:961.252050px;}
.y1b{bottom:983.227050px;}
.y47{bottom:983.636400px;}
.y73{bottom:983.752050px;}
.y4{bottom:993.257550px;}
.y1a{bottom:1005.727050px;}
.y46{bottom:1006.136400px;}
.y72{bottom:1006.252050px;}
.y3{bottom:1008.672450px;}
.y19{bottom:1028.227050px;}
.y45{bottom:1028.636400px;}
.y71{bottom:1028.752050px;}
.y18{bottom:1050.727050px;}
.y44{bottom:1051.136400px;}
.y70{bottom:1051.252050px;}
.y17{bottom:1073.227050px;}
.y43{bottom:1073.636400px;}
.y6f{bottom:1073.752050px;}
.y16{bottom:1138.056450px;}
.hb{height:44.460000px;}
.ha{height:47.565000px;}
.h9{height:52.479000px;}
.he{height:54.558000px;}
.hf{height:56.448000px;}
.h6{height:56.706000px;}
.hd{height:60.000000px;}
.hc{height:63.441000px;}
.h5{height:71.789270px;}
.h3{height:72.000000px;}
.h7{height:76.128000px;}
.h2{height:102.000000px;}
.h8{height:156.000000px;}
.h4{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x5{left:85.039350px;}
.x3{left:193.464600px;}
.x4{left:195.975000px;}
.x9{left:612.028950px;}
.x8{left:613.738800px;}
.x7{left:614.836800px;}
.x2{left:808.504950px;}
.x1{left:827.428950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.706667pt;}
.ls2{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.559467pt;}
.ls5{letter-spacing:0.560000pt;}
.ws6{word-spacing:-19.200000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2f{word-spacing:-15.466667pt;}
.ws45{word-spacing:-12.656000pt;}
.ws35{word-spacing:-2.800000pt;}
.ws17{word-spacing:-2.632000pt;}
.ws9{word-spacing:-2.576000pt;}
.ws8{word-spacing:-2.520000pt;}
.ws59{word-spacing:-2.464000pt;}
.ws68{word-spacing:-2.352000pt;}
.ws2{word-spacing:-2.348180pt;}
.ws22{word-spacing:-2.240000pt;}
.ws76{word-spacing:-2.184000pt;}
.ws10{word-spacing:-2.128000pt;}
.ws66{word-spacing:-2.072000pt;}
.ws23{word-spacing:-2.016000pt;}
.ws52{word-spacing:-1.904000pt;}
.wsb{word-spacing:-1.848000pt;}
.ws3f{word-spacing:-1.792000pt;}
.wsf{word-spacing:-1.736000pt;}
.ws4a{word-spacing:-1.680000pt;}
.ws24{word-spacing:-1.568000pt;}
.ws48{word-spacing:-1.512000pt;}
.ws21{word-spacing:-1.400000pt;}
.ws18{word-spacing:-1.344000pt;}
.ws4e{word-spacing:-1.288000pt;}
.ws6f{word-spacing:-1.232000pt;}
.wse{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.064000pt;}
.ws33{word-spacing:-1.008000pt;}
.ws46{word-spacing:-0.952000pt;}
.ws2d{word-spacing:-0.896000pt;}
.ws55{word-spacing:-0.840000pt;}
.ws6b{word-spacing:-0.784000pt;}
.ws3{word-spacing:-0.728000pt;}
.ws57{word-spacing:-0.672000pt;}
.ws11{word-spacing:-0.616000pt;}
.ws50{word-spacing:-0.560000pt;}
.ws60{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.504000pt;}
.wsd{word-spacing:-0.392000pt;}
.ws4c{word-spacing:-0.280000pt;}
.ws2a{word-spacing:-0.224000pt;}
.ws3c{word-spacing:-0.112000pt;}
.ws0{word-spacing:-0.090667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.056000pt;}
.ws13{word-spacing:0.112000pt;}
.ws5a{word-spacing:0.168000pt;}
.ws3e{word-spacing:0.224000pt;}
.ws74{word-spacing:0.280000pt;}
.ws56{word-spacing:0.336000pt;}
.ws31{word-spacing:0.392000pt;}
.ws77{word-spacing:0.448000pt;}
.ws5{word-spacing:0.504000pt;}
.ws28{word-spacing:0.533333pt;}
.ws58{word-spacing:0.560000pt;}
.ws4f{word-spacing:0.616000pt;}
.ws14{word-spacing:0.672000pt;}
.ws49{word-spacing:0.728000pt;}
.ws5d{word-spacing:0.784000pt;}
.ws6e{word-spacing:0.840000pt;}
.wsa{word-spacing:0.896000pt;}
.ws2b{word-spacing:0.952000pt;}
.ws30{word-spacing:1.008000pt;}
.ws39{word-spacing:1.232000pt;}
.ws54{word-spacing:1.288000pt;}
.ws38{word-spacing:1.344000pt;}
.ws1a{word-spacing:1.456000pt;}
.ws69{word-spacing:1.512000pt;}
.ws44{word-spacing:1.568000pt;}
.ws70{word-spacing:1.680000pt;}
.ws78{word-spacing:1.736000pt;}
.ws29{word-spacing:1.904000pt;}
.ws51{word-spacing:1.960000pt;}
.ws64{word-spacing:2.016000pt;}
.ws79{word-spacing:2.072000pt;}
.ws71{word-spacing:2.128000pt;}
.ws42{word-spacing:2.184000pt;}
.ws27{word-spacing:2.408000pt;}
.ws37{word-spacing:2.464000pt;}
.ws2e{word-spacing:2.520000pt;}
.ws1d{word-spacing:2.576000pt;}
.ws73{word-spacing:2.632000pt;}
.ws1e{word-spacing:2.744000pt;}
.ws67{word-spacing:2.800000pt;}
.ws43{word-spacing:2.856000pt;}
.ws41{word-spacing:2.968000pt;}
.ws1c{word-spacing:3.080000pt;}
.ws5c{word-spacing:3.136000pt;}
.ws19{word-spacing:3.192000pt;}
.ws16{word-spacing:3.248000pt;}
.ws26{word-spacing:3.304000pt;}
.ws3a{word-spacing:3.416000pt;}
.ws3b{word-spacing:3.640000pt;}
.ws1f{word-spacing:3.752000pt;}
.wsc{word-spacing:3.808000pt;}
.ws5f{word-spacing:3.864000pt;}
.ws63{word-spacing:3.920000pt;}
.ws40{word-spacing:4.032000pt;}
.ws75{word-spacing:4.088000pt;}
.ws6d{word-spacing:4.144000pt;}
.ws4b{word-spacing:4.200000pt;}
.ws6a{word-spacing:4.424000pt;}
.ws72{word-spacing:4.536000pt;}
.ws1b{word-spacing:4.592000pt;}
.ws4{word-spacing:4.816000pt;}
.ws53{word-spacing:5.096000pt;}
.ws2c{word-spacing:5.152000pt;}
.ws65{word-spacing:5.264000pt;}
.ws32{word-spacing:5.320000pt;}
.ws25{word-spacing:5.432000pt;}
.ws3d{word-spacing:5.488000pt;}
.ws34{word-spacing:5.768000pt;}
.ws36{word-spacing:5.824000pt;}
.ws4d{word-spacing:5.992000pt;}
.ws6c{word-spacing:6.160000pt;}
.ws20{word-spacing:6.216000pt;}
.ws47{word-spacing:6.384000pt;}
.ws5e{word-spacing:6.496000pt;}
.ws61{word-spacing:7.392000pt;}
.ws62{word-spacing:7.448000pt;}
._e{margin-left:-16.000000pt;}
._6{margin-left:-14.520533pt;}
._1{margin-left:-9.066667pt;}
._0{margin-left:-8.160000pt;}
._12{margin-left:-6.867467pt;}
._9{margin-left:-5.752800pt;}
._7{margin-left:-4.160000pt;}
._8{margin-left:-3.137867pt;}
._4{margin-left:-2.080000pt;}
._2{margin-left:-1.046933pt;}
._f{width:1.594667pt;}
._5{width:2.560000pt;}
._a{width:3.612000pt;}
._b{width:5.020000pt;}
._10{width:6.339200pt;}
._11{width:7.610400pt;}
._d{width:37.333333pt;}
._3{width:340.156267pt;}
._c{width:920.109333pt;}
.fs8{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:80.971733pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs6{font-size:138.666667pt;}
.fs2{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.453600pt;}
.y42{bottom:93.979467pt;}
.y6b{bottom:94.343600pt;}
.y99{bottom:94.446267pt;}
.y41{bottom:113.979467pt;}
.y6a{bottom:114.343600pt;}
.y98{bottom:114.446267pt;}
.y40{bottom:133.979467pt;}
.y69{bottom:134.343600pt;}
.y97{bottom:134.446267pt;}
.y3f{bottom:153.979467pt;}
.y68{bottom:154.343600pt;}
.y96{bottom:154.446267pt;}
.y3e{bottom:173.979467pt;}
.y6e{bottom:174.343600pt;}
.y95{bottom:174.446267pt;}
.y3d{bottom:193.979467pt;}
.y67{bottom:194.343600pt;}
.y94{bottom:194.446267pt;}
.y3c{bottom:213.979467pt;}
.y66{bottom:214.343600pt;}
.y93{bottom:214.446267pt;}
.y3b{bottom:233.979467pt;}
.y65{bottom:234.343600pt;}
.y92{bottom:234.446267pt;}
.y3a{bottom:253.979467pt;}
.y64{bottom:254.343600pt;}
.y91{bottom:254.446267pt;}
.y39{bottom:273.979467pt;}
.y63{bottom:274.343600pt;}
.y90{bottom:274.446267pt;}
.y38{bottom:293.979467pt;}
.y62{bottom:294.343600pt;}
.y8f{bottom:294.446267pt;}
.y37{bottom:313.979467pt;}
.y61{bottom:314.343600pt;}
.y8e{bottom:314.446267pt;}
.y36{bottom:333.979467pt;}
.y60{bottom:334.343600pt;}
.y8d{bottom:334.446267pt;}
.y35{bottom:353.979467pt;}
.y5f{bottom:354.343600pt;}
.y8c{bottom:354.446267pt;}
.y34{bottom:373.979467pt;}
.y5e{bottom:374.343600pt;}
.y8b{bottom:374.446267pt;}
.y15{bottom:382.064000pt;}
.y33{bottom:393.979467pt;}
.y5d{bottom:394.343600pt;}
.y8a{bottom:394.446267pt;}
.y14{bottom:402.064000pt;}
.y32{bottom:413.979467pt;}
.y5c{bottom:414.343600pt;}
.y89{bottom:414.446267pt;}
.y13{bottom:422.064000pt;}
.y31{bottom:433.979467pt;}
.y5b{bottom:434.343600pt;}
.y88{bottom:434.446267pt;}
.y12{bottom:442.064000pt;}
.y30{bottom:453.979467pt;}
.y5a{bottom:454.343600pt;}
.y87{bottom:454.446267pt;}
.y11{bottom:462.064000pt;}
.y2f{bottom:473.979467pt;}
.y59{bottom:474.343600pt;}
.y86{bottom:474.446267pt;}
.y10{bottom:482.064000pt;}
.y2e{bottom:493.979467pt;}
.y58{bottom:494.343600pt;}
.yf{bottom:502.064000pt;}
.y2d{bottom:513.979467pt;}
.y57{bottom:514.343600pt;}
.y85{bottom:514.446267pt;}
.ye{bottom:522.064000pt;}
.y2c{bottom:533.979467pt;}
.y56{bottom:534.343600pt;}
.y84{bottom:534.446267pt;}
.yd{bottom:542.064000pt;}
.y2b{bottom:553.979467pt;}
.y55{bottom:554.343600pt;}
.y83{bottom:554.446267pt;}
.yc{bottom:562.064000pt;}
.y2a{bottom:573.979467pt;}
.y54{bottom:574.343600pt;}
.y82{bottom:574.446267pt;}
.yb{bottom:582.064000pt;}
.y29{bottom:593.979467pt;}
.y53{bottom:594.343600pt;}
.y81{bottom:594.446267pt;}
.ya{bottom:602.064000pt;}
.y28{bottom:613.979467pt;}
.y52{bottom:614.343600pt;}
.y80{bottom:614.446267pt;}
.y9{bottom:622.064000pt;}
.y27{bottom:633.979467pt;}
.y51{bottom:634.343600pt;}
.y7f{bottom:634.446267pt;}
.y8{bottom:642.064000pt;}
.y26{bottom:653.979467pt;}
.y50{bottom:654.343600pt;}
.y7e{bottom:654.446267pt;}
.y25{bottom:673.979467pt;}
.y6d{bottom:674.343600pt;}
.y7d{bottom:674.446267pt;}
.y24{bottom:693.979467pt;}
.y4f{bottom:694.343600pt;}
.y7c{bottom:694.446267pt;}
.y7{bottom:707.418400pt;}
.y23{bottom:713.979467pt;}
.y4e{bottom:714.343600pt;}
.y7b{bottom:714.446267pt;}
.y22{bottom:733.979467pt;}
.y4d{bottom:734.343600pt;}
.y7a{bottom:734.446267pt;}
.y21{bottom:753.979467pt;}
.y4c{bottom:754.343600pt;}
.y79{bottom:754.446267pt;}
.y6{bottom:767.428933pt;}
.y20{bottom:773.979467pt;}
.y4b{bottom:774.343600pt;}
.y78{bottom:774.446267pt;}
.y1f{bottom:793.979600pt;}
.y4a{bottom:794.343467pt;}
.y77{bottom:794.446267pt;}
.y1e{bottom:813.979600pt;}
.y49{bottom:814.343467pt;}
.y76{bottom:814.446267pt;}
.y1{bottom:821.003200pt;}
.y1d{bottom:833.979600pt;}
.y48{bottom:834.343467pt;}
.y75{bottom:834.446267pt;}
.y1c{bottom:853.979600pt;}
.y6c{bottom:854.343467pt;}
.y5{bottom:854.390667pt;}
.y74{bottom:854.446267pt;}
.y1b{bottom:873.979600pt;}
.y47{bottom:874.343467pt;}
.y73{bottom:874.446267pt;}
.y4{bottom:882.895600pt;}
.y1a{bottom:893.979600pt;}
.y46{bottom:894.343467pt;}
.y72{bottom:894.446267pt;}
.y3{bottom:896.597733pt;}
.y19{bottom:913.979600pt;}
.y45{bottom:914.343467pt;}
.y71{bottom:914.446267pt;}
.y18{bottom:933.979600pt;}
.y44{bottom:934.343467pt;}
.y70{bottom:934.446267pt;}
.y17{bottom:953.979600pt;}
.y43{bottom:954.343467pt;}
.y6f{bottom:954.446267pt;}
.y16{bottom:1011.605733pt;}
.hb{height:39.520000pt;}
.ha{height:42.280000pt;}
.h9{height:46.648000pt;}
.he{height:48.496000pt;}
.hf{height:50.176000pt;}
.h6{height:50.405333pt;}
.hd{height:53.333333pt;}
.hc{height:56.392000pt;}
.h5{height:63.812684pt;}
.h3{height:64.000000pt;}
.h7{height:67.669333pt;}
.h2{height:90.666667pt;}
.h8{height:138.666667pt;}
.h4{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x5{left:75.590533pt;}
.x3{left:171.968533pt;}
.x4{left:174.200000pt;}
.x9{left:544.025733pt;}
.x8{left:545.545600pt;}
.x7{left:546.521600pt;}
.x2{left:718.671067pt;}
.x1{left:735.492400pt;}
}




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