
    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_7d9fc7eb7857decfe3ee474d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.758789;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_6dcde19f6e54430006038be6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918945;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_ccf2d12692d21b63a6a623f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_a78a9567c5bfc5428e73e855.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987793;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_18828dd281e08a20b45c6179.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980469;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_504a2424c9b58e8ec4159c24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980469;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_cd92e0f78c2c0d22cd4fa77a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987793;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_288deec8a563c3c0b4c57b23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_4eb16e65491fe1f679bd4bf0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987793;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_7faf625babca6c0769efc1a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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_4eb16e65491fe1f679bd4bf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987793;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_9471f77b860e5891cf71e54c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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_698f8a99960871deb37ed9ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.987793;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_801660a9d33890af4775ea23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.979980;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_2e8bce4122ce592de1e83f92.woff2')format("woff");}.fff{font-family:fff;line-height:0.987793;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_f5ac91ebd68cc5169598236d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.987793;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_303d45a575daf6b2644167dc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.980469;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:ff12;src:url('chunks/assets/font_a97fab38734a4fac58369b5d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.979980;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:ff13;src:url('chunks/assets/font_e19732252b66ec3338e420dd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;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:ff14;src:url('chunks/assets/font_15b11a852d61ef7a1bf1fbae.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.987793;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:ff15;src:url('chunks/assets/font_daac20546fca9f00eda55551.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.987793;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:ff16;src:url('chunks/assets/font_6c92ddd62a0f6b77080b02bc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.987793;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:ff17;src:url('chunks/assets/font_1cbb8f97b3d9b73df08796d0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.979980;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:ff18;src:url('chunks/assets/font_629774ad3cfbed80a7435d26.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.980469;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:ff19;src:url('chunks/assets/font_85a9176e71ff9741d73007bd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.987793;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:ff1a;src:url('chunks/assets/font_a857377248d457e0cdac2173.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.980469;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:ff1b;src:url('chunks/assets/font_0fc5b1fb1dfcf6cd4c0f6404.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.987793;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:ff1c;src:url('chunks/assets/font_98e6b163ca6d18f52b325943.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_37eaf64f018b358c5ea72d09.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.980469;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:ff1e;src:url('chunks/assets/font_8268151e085fdcd73d68d223.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.979980;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:ff1f;src:url('chunks/assets/font_01f97d268fd0c1166f9aedca.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.987793;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:ff20;src:url('chunks/assets/font_19e2257d04924b8a22996628.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.979980;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:ff21;src:url('chunks/assets/font_6eecd7ed3795e9c5b1e03747.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.980469;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:ff22;src:url('chunks/assets/font_cd4a0e7b37bd510db721c2ab.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.987793;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:ff23;src:url('chunks/assets/font_f689197a3ef9de6f7dd91504.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.979980;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:ff24;src:url('chunks/assets/font_d8039a7651edd2e32acf2da7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.976074;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.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.274800px;}
.ls9{letter-spacing:-12.120002px;}
.ls4{letter-spacing:-12.000002px;}
.ls6{letter-spacing:-0.122376px;}
.ls5{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.102000px;}
.ls2{letter-spacing:-0.084000px;}
.lsc{letter-spacing:-0.024000px;}
.lse{letter-spacing:-0.015600px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.015600px;}
.ls3{letter-spacing:0.016800px;}
.ls0{letter-spacing:0.054000px;}
.lsa{letter-spacing:65.092680px;}
.ls8{letter-spacing:107.972151px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.sc2{text-shadow:-0.015em 0 rgb(194,123,160),0 0.015em rgb(194,123,160),0.015em 0 rgb(194,123,160),0 -0.015em  rgb(194,123,160);}
.sc1{text-shadow:-0.015em 0 rgb(195,123,159),0 0.015em rgb(195,123,159),0.015em 0 rgb(195,123,159),0 -0.015em  rgb(195,123,159);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(194,123,160);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(195,123,159);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-50.040000px;}
.ws3{word-spacing:-40.032000px;}
.ws6{word-spacing:-34.020662px;}
.ws5{word-spacing:-33.360004px;}
.ws0{word-spacing:-33.360000px;}
.ws2{word-spacing:-31.680000px;}
.ws7{word-spacing:-27.456003px;}
.ws9{word-spacing:-21.684000px;}
.ws8{word-spacing:-20.016000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-17.920803px;}
._9{margin-left:-14.880002px;}
._b{margin-left:-12.904865px;}
._a{margin-left:-11.484003px;}
._5{margin-left:-10.402001px;}
._8{margin-left:-8.664002px;}
._4{margin-left:-6.995999px;}
._1{margin-left:-4.524000px;}
._2{margin-left:-2.839200px;}
._3{margin-left:-1.080000px;}
._6{width:1.920000px;}
._0{width:3.060000px;}
._7{width:4.544700px;}
._f{width:12.210324px;}
._11{width:33.732000px;}
._10{width:51.859472px;}
._e{width:87.178517px;}
._d{width:186.977890px;}
.fce{color:rgb(34,34,34);}
.fcd{color:rgb(88,88,88);}
.fc0{color:rgb(20,20,20);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(33,33,33);}
.fc7{color:rgb(91,91,91);}
.fc9{color:rgb(38,38,38);}
.fcb{color:rgb(115,115,115);}
.fc3{color:rgb(50,46,44);}
.fc6{color:transparent;}
.fc8{color:rgb(56,63,78);}
.fc5{color:rgb(195,123,159);}
.fca{color:rgb(154,83,85);}
.fcc{color:rgb(194,123,160);}
.fs11{font-size:72.000000px;}
.fsd{font-size:73.425881px;}
.fs12{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs8{font-size:84.000015px;}
.fsb{font-size:102.000015px;}
.fs5{font-size:104.020012px;}
.fsf{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs6{font-size:120.000015px;}
.fs9{font-size:122.376483px;}
.fs4{font-size:131.999985px;}
.fs10{font-size:132.840000px;}
.fsc{font-size:138.000015px;}
.fs7{font-size:144.000000px;}
.fs3{font-size:156.000000px;}
.fsa{font-size:156.000015px;}
.fse{font-size:162.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.494644px;}
.y5b{bottom:16.494630px;}
.y5f{bottom:25.809810px;}
.y44{bottom:26.360415px;}
.y4f{bottom:28.317600px;}
.y4d{bottom:31.314000px;}
.y5{bottom:31.314150px;}
.y17{bottom:37.502115px;}
.y6{bottom:41.995365px;}
.y5e{bottom:46.809810px;}
.y15{bottom:57.804150px;}
.y58{bottom:59.517840px;}
.y3a{bottom:60.394005px;}
.y31{bottom:60.475950px;}
.y43{bottom:62.360415px;}
.y27{bottom:69.290550px;}
.y67{bottom:71.676765px;}
.yf{bottom:77.755616px;}
.y14{bottom:93.804150px;}
.y57{bottom:94.167840px;}
.y1{bottom:95.306145px;}
.y16{bottom:96.016755px;}
.y30{bottom:96.475950px;}
.ye{bottom:108.355605px;}
.y4{bottom:108.414150px;}
.y66{bottom:116.676765px;}
.y56{bottom:128.817840px;}
.y13{bottom:129.804150px;}
.y4b{bottom:132.120000px;}
.y65{bottom:139.176765px;}
.y26{bottom:141.290550px;}
.yd{bottom:151.528650px;}
.y4a{bottom:153.720000px;}
.y2f{bottom:154.075950px;}
.y64{bottom:161.676750px;}
.y55{bottom:163.467900px;}
.y12{bottom:165.804150px;}
.y42{bottom:168.730500px;}
.y1a{bottom:171.340050px;}
.y1c{bottom:173.340000px;}
.y1f{bottom:176.167050px;}
.y25{bottom:177.290550px;}
.y3{bottom:185.514150px;}
.yc{bottom:187.168661px;}
.y39{bottom:187.825950px;}
.y2e{bottom:190.075950px;}
.y11{bottom:201.804150px;}
.y63{bottom:208.543650px;}
.yb{bottom:222.808661px;}
.y38{bottom:223.825950px;}
.y2d{bottom:226.075950px;}
.y41{bottom:231.730500px;}
.y62{bottom:232.543650px;}
.y8{bottom:233.368650px;}
.y54{bottom:234.336600px;}
.y10{bottom:237.804150px;}
.y24{bottom:249.290550px;}
.y61{bottom:256.543650px;}
.ya{bottom:258.448650px;}
.y37{bottom:259.825950px;}
.y2c{bottom:262.075950px;}
.y7{bottom:279.868650px;}
.y60{bottom:280.543650px;}
.y19{bottom:287.550000px;}
.y40{bottom:294.730500px;}
.y36{bottom:295.825950px;}
.y53{bottom:303.636600px;}
.y49{bottom:308.511000px;}
.y23{bottom:321.290550px;}
.y2b{bottom:325.075950px;}
.y35{bottom:331.825950px;}
.y52{bottom:338.286600px;}
.y48{bottom:344.511000px;}
.y5d{bottom:346.745400px;}
.y22{bottom:357.290550px;}
.y3f{bottom:357.730500px;}
.y2a{bottom:361.075950px;}
.y2{bottom:367.648350px;}
.y34{bottom:367.825950px;}
.y47{bottom:380.511000px;}
.y5c{bottom:381.245400px;}
.y3e{bottom:393.730500px;}
.y29{bottom:397.075950px;}
.y1b{bottom:401.340000px;}
.y46{bottom:416.511000px;}
.y51{bottom:421.347600px;}
.y33{bottom:424.237800px;}
.y21{bottom:429.290550px;}
.y3d{bottom:429.730500px;}
.y5a{bottom:438.593700px;}
.y45{bottom:452.511000px;}
.y3b{bottom:458.002950px;}
.y20{bottom:465.290550px;}
.y3c{bottom:465.730500px;}
.y32{bottom:471.037800px;}
.y50{bottom:473.847600px;}
.y1e{bottom:475.192650px;}
.y4c{bottom:520.648650px;}
.y59{bottom:521.848650px;}
.y4e{bottom:527.195850px;}
.y18{bottom:553.943550px;}
.y1d{bottom:555.143550px;}
.y9{bottom:556.343550px;}
.h1b{height:52.453125px;}
.h13{height:55.069411px;}
.h1c{height:56.824219px;}
.hd{height:61.195312px;}
.h1{height:63.000000px;}
.hc{height:63.000011px;}
.h10{height:76.500011px;}
.h8{height:78.015009px;}
.h15{height:80.304150px;}
.h17{height:81.000000px;}
.h19{height:85.651350px;}
.h14{height:86.851350px;}
.h4{height:87.421875px;}
.h9{height:90.000011px;}
.he{height:91.782362px;}
.h7{height:98.999989px;}
.h18{height:99.630000px;}
.h12{height:103.007825px;}
.ha{height:108.000000px;}
.h5{height:113.648438px;}
.h11{height:118.458997px;}
.h1a{height:121.500000px;}
.h16{height:130.754883px;}
.hf{height:133.910169px;}
.hb{height:135.000000px;}
.h3{height:145.283203px;}
.h6{height:154.511719px;}
.h2{height:239.851650px;}
.h0{height:607.500000px;}
.w1{width:720.764400px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2{left:9.524355px;}
.x1e{left:22.298805px;}
.x4{left:23.415270px;}
.xe{left:30.292320px;}
.x13{left:31.375980px;}
.xf{left:32.896650px;}
.x5{left:38.654850px;}
.x18{left:40.260825px;}
.x14{left:41.579880px;}
.xc{left:45.221460px;}
.x7{left:47.316975px;}
.x6{left:48.779535px;}
.x1b{left:49.824450px;}
.x15{left:86.692920px;}
.x1a{left:114.293025px;}
.x10{left:132.496399px;}
.x19{left:139.447316px;}
.x11{left:157.506150px;}
.x12{left:174.857588px;}
.x9{left:182.669688px;}
.x3{left:227.493150px;}
.x17{left:258.634091px;}
.x16{left:370.713937px;}
.x1{left:457.337850px;}
.x8{left:523.877850px;}
.xa{left:531.493650px;}
.xd{left:550.647600px;}
.x1c{left:571.264350px;}
.xb{left:654.153600px;}
.x1d{left:844.859250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.577600pt;}
.ls9{letter-spacing:-10.773335pt;}
.ls4{letter-spacing:-10.666668pt;}
.ls6{letter-spacing:-0.108779pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls2{letter-spacing:-0.074667pt;}
.lsc{letter-spacing:-0.021333pt;}
.lse{letter-spacing:-0.013867pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.013867pt;}
.ls3{letter-spacing:0.014933pt;}
.ls0{letter-spacing:0.048000pt;}
.lsa{letter-spacing:57.860160pt;}
.ls8{letter-spacing:95.975245pt;}
.ws4{word-spacing:-44.480000pt;}
.ws3{word-spacing:-35.584000pt;}
.ws6{word-spacing:-30.240589pt;}
.ws5{word-spacing:-29.653337pt;}
.ws0{word-spacing:-29.653333pt;}
.ws2{word-spacing:-28.160000pt;}
.ws7{word-spacing:-24.405336pt;}
.ws9{word-spacing:-19.274667pt;}
.ws8{word-spacing:-17.792000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-15.929603pt;}
._9{margin-left:-13.226668pt;}
._b{margin-left:-11.470991pt;}
._a{margin-left:-10.208003pt;}
._5{margin-left:-9.246223pt;}
._8{margin-left:-7.701335pt;}
._4{margin-left:-6.218666pt;}
._1{margin-left:-4.021333pt;}
._2{margin-left:-2.523733pt;}
._3{margin-left:-0.960000pt;}
._6{width:1.706667pt;}
._0{width:2.720000pt;}
._7{width:4.039733pt;}
._f{width:10.853622pt;}
._11{width:29.984000pt;}
._10{width:46.097308pt;}
._e{width:77.492015pt;}
._d{width:166.202568pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:65.267450pt;}
.fs12{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs8{font-size:74.666680pt;}
.fsb{font-size:90.666680pt;}
.fs5{font-size:92.462233pt;}
.fsf{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs6{font-size:106.666680pt;}
.fs9{font-size:108.779096pt;}
.fs4{font-size:117.333320pt;}
.fs10{font-size:118.080000pt;}
.fsc{font-size:122.666680pt;}
.fs7{font-size:128.000000pt;}
.fs3{font-size:138.666667pt;}
.fsa{font-size:138.666680pt;}
.fse{font-size:144.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.217461pt;}
.y5b{bottom:14.661893pt;}
.y5f{bottom:22.942053pt;}
.y44{bottom:23.431480pt;}
.y4f{bottom:25.171200pt;}
.y4d{bottom:27.834667pt;}
.y5{bottom:27.834800pt;}
.y17{bottom:33.335213pt;}
.y6{bottom:37.329213pt;}
.y5e{bottom:41.608720pt;}
.y15{bottom:51.381467pt;}
.y58{bottom:52.904747pt;}
.y3a{bottom:53.683560pt;}
.y31{bottom:53.756400pt;}
.y43{bottom:55.431480pt;}
.y27{bottom:61.591600pt;}
.y67{bottom:63.712680pt;}
.yf{bottom:69.116103pt;}
.y14{bottom:83.381467pt;}
.y57{bottom:83.704747pt;}
.y1{bottom:84.716573pt;}
.y16{bottom:85.348227pt;}
.y30{bottom:85.756400pt;}
.ye{bottom:96.316093pt;}
.y4{bottom:96.368133pt;}
.y66{bottom:103.712680pt;}
.y56{bottom:114.504747pt;}
.y13{bottom:115.381467pt;}
.y4b{bottom:117.440000pt;}
.y65{bottom:123.712680pt;}
.y26{bottom:125.591600pt;}
.yd{bottom:134.692133pt;}
.y4a{bottom:136.640000pt;}
.y2f{bottom:136.956400pt;}
.y64{bottom:143.712667pt;}
.y55{bottom:145.304800pt;}
.y12{bottom:147.381467pt;}
.y42{bottom:149.982667pt;}
.y1a{bottom:152.302267pt;}
.y1c{bottom:154.080000pt;}
.y1f{bottom:156.592933pt;}
.y25{bottom:157.591600pt;}
.y3{bottom:164.901467pt;}
.yc{bottom:166.372143pt;}
.y39{bottom:166.956400pt;}
.y2e{bottom:168.956400pt;}
.y11{bottom:179.381467pt;}
.y63{bottom:185.372133pt;}
.yb{bottom:198.052143pt;}
.y38{bottom:198.956400pt;}
.y2d{bottom:200.956400pt;}
.y41{bottom:205.982667pt;}
.y62{bottom:206.705467pt;}
.y8{bottom:207.438800pt;}
.y54{bottom:208.299200pt;}
.y10{bottom:211.381467pt;}
.y24{bottom:221.591600pt;}
.y61{bottom:228.038800pt;}
.ya{bottom:229.732133pt;}
.y37{bottom:230.956400pt;}
.y2c{bottom:232.956400pt;}
.y7{bottom:248.772133pt;}
.y60{bottom:249.372133pt;}
.y19{bottom:255.600000pt;}
.y40{bottom:261.982667pt;}
.y36{bottom:262.956400pt;}
.y53{bottom:269.899200pt;}
.y49{bottom:274.232000pt;}
.y23{bottom:285.591600pt;}
.y2b{bottom:288.956400pt;}
.y35{bottom:294.956400pt;}
.y52{bottom:300.699200pt;}
.y48{bottom:306.232000pt;}
.y5d{bottom:308.218133pt;}
.y22{bottom:317.591600pt;}
.y3f{bottom:317.982667pt;}
.y2a{bottom:320.956400pt;}
.y2{bottom:326.798533pt;}
.y34{bottom:326.956400pt;}
.y47{bottom:338.232000pt;}
.y5c{bottom:338.884800pt;}
.y3e{bottom:349.982667pt;}
.y29{bottom:352.956400pt;}
.y1b{bottom:356.746667pt;}
.y46{bottom:370.232000pt;}
.y51{bottom:374.531200pt;}
.y33{bottom:377.100267pt;}
.y21{bottom:381.591600pt;}
.y3d{bottom:381.982667pt;}
.y5a{bottom:389.861067pt;}
.y45{bottom:402.232000pt;}
.y3b{bottom:407.113733pt;}
.y20{bottom:413.591600pt;}
.y3c{bottom:413.982667pt;}
.y32{bottom:418.700267pt;}
.y50{bottom:421.197867pt;}
.y1e{bottom:422.393467pt;}
.y4c{bottom:462.798800pt;}
.y59{bottom:463.865467pt;}
.y4e{bottom:468.618533pt;}
.y18{bottom:492.394267pt;}
.y1d{bottom:493.460933pt;}
.y9{bottom:494.527600pt;}
.h1b{height:46.625000pt;}
.h13{height:48.950587pt;}
.h1c{height:50.510417pt;}
.hd{height:54.395833pt;}
.h1{height:56.000000pt;}
.hc{height:56.000010pt;}
.h10{height:68.000010pt;}
.h8{height:69.346675pt;}
.h15{height:71.381467pt;}
.h17{height:72.000000pt;}
.h19{height:76.134533pt;}
.h14{height:77.201200pt;}
.h4{height:77.708333pt;}
.h9{height:80.000010pt;}
.he{height:81.584322pt;}
.h7{height:87.999990pt;}
.h18{height:88.560000pt;}
.h12{height:91.562511pt;}
.ha{height:96.000000pt;}
.h5{height:101.020833pt;}
.h11{height:105.296886pt;}
.h1a{height:108.000000pt;}
.h16{height:116.226562pt;}
.hf{height:119.031261pt;}
.hb{height:120.000000pt;}
.h3{height:129.140625pt;}
.h6{height:137.343750pt;}
.h2{height:213.201467pt;}
.h0{height:540.000000pt;}
.w1{width:640.679467pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2{left:8.466093pt;}
.x1e{left:19.821160pt;}
.x4{left:20.813573pt;}
.xe{left:26.926507pt;}
.x13{left:27.889760pt;}
.xf{left:29.241467pt;}
.x5{left:34.359867pt;}
.x18{left:35.787400pt;}
.x14{left:36.959893pt;}
.xc{left:40.196853pt;}
.x7{left:42.059533pt;}
.x6{left:43.359587pt;}
.x1b{left:44.288400pt;}
.x15{left:77.060373pt;}
.x1a{left:101.593800pt;}
.x10{left:117.774577pt;}
.x19{left:123.953170pt;}
.x11{left:140.005467pt;}
.x12{left:155.428967pt;}
.x9{left:162.373056pt;}
.x3{left:202.216133pt;}
.x17{left:229.896970pt;}
.x16{left:329.523500pt;}
.x1{left:406.522533pt;}
.x8{left:465.669200pt;}
.xa{left:472.438800pt;}
.xd{left:489.464533pt;}
.x1c{left:507.790533pt;}
.xb{left:581.469867pt;}
.x1d{left:750.986000pt;}
}




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