
    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_397a0b73ea299f2a9288cbf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_162ff5b7bd77e30f550bad33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_81efdd04404acdfa1a7df965.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_7e77b79a9e47d8e6197efcfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_03042a9ad3f22318a6c7e04a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736328;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_52a92319936ca02e24672386.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942871;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_1ae83dfec8c1802b389b3914.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988281;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_bd5b84ad68e7cb9f7b73a102.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_a7697332d9244d714572389b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3befcdd375a807fbb2ead75b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_418c625e31c2dae069bb6584.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_69de668287d28760f873994c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.709473;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_397a0b73ea299f2a9288cbf4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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_81efdd04404acdfa1a7df965.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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;}
.m7{transform:matrix(0.243136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243136,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245239,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,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);}
.mc{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-23.976000px;}
.v5{vertical-align:-19.980000px;}
.v1{vertical-align:-4.588200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:21.937800px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.135468px;}
.ws3{word-spacing:-8.745000px;}
.ws8{word-spacing:-1.458000px;}
.ws5{word-spacing:-1.428000px;}
.wsa{word-spacing:-1.080000px;}
.ws0{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.270000px;}
.ws7{word-spacing:1.458000px;}
.ws6{word-spacing:1.944000px;}
.wsb{word-spacing:2.580000px;}
._0{margin-left:-1579.877400px;}
._3{margin-left:-6.672840px;}
._14{margin-left:-5.400000px;}
._10{margin-left:-4.098000px;}
._1b{margin-left:-2.895240px;}
._1{margin-left:-1.782000px;}
._6{width:1.458000px;}
._19{width:2.520000px;}
._b{width:3.540000px;}
._a{width:4.860000px;}
._f{width:6.840000px;}
._15{width:8.100000px;}
._16{width:9.540000px;}
._11{width:10.620000px;}
._c{width:11.880000px;}
._17{width:13.320000px;}
._20{width:14.688000px;}
._8{width:16.260000px;}
._13{width:17.340000px;}
._1c{width:18.840000px;}
._12{width:20.760000px;}
._18{width:22.200000px;}
._e{width:23.340000px;}
._d{width:24.420000px;}
._1e{width:25.668000px;}
._9{width:27.600000px;}
._7{width:28.620000px;}
._1a{width:30.300000px;}
._21{width:33.534000px;}
._1d{width:51.840000px;}
._1f{width:54.972000px;}
._4{width:205.740360px;}
._5{width:277.177320px;}
._2{width:1125.110400px;}
.fc4{color:rgb(34,31,31);}
.fc3{color:rgb(174,58,63);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(252,252,252);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(34,31,34);}
.fc0{color:rgb(172,43,49);}
.fs9{font-size:34.980000px;}
.fs5{font-size:38.407800px;}
.fs6{font-size:41.976000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:65.880000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.214050px;}
.y2{bottom:64.714050px;}
.y32{bottom:101.199600px;}
.y69{bottom:103.608600px;}
.ya0{bottom:104.644200px;}
.y4d{bottom:111.941250px;}
.y31{bottom:119.199600px;}
.y68{bottom:121.604100px;}
.y9f{bottom:122.639700px;}
.y4c{bottom:128.141250px;}
.y30{bottom:137.199600px;}
.y67{bottom:139.599600px;}
.y9e{bottom:143.644200px;}
.y4b{bottom:144.341250px;}
.y2f{bottom:155.199600px;}
.y66{bottom:160.599600px;}
.y9d{bottom:161.639700px;}
.y2e{bottom:173.199600px;}
.y65{bottom:178.617600px;}
.y9c{bottom:179.657700px;}
.y2d{bottom:191.199600px;}
.y64{bottom:196.613100px;}
.y9b{bottom:197.653200px;}
.y2c{bottom:209.199600px;}
.y63{bottom:214.608600px;}
.y9a{bottom:215.648700px;}
.y2b{bottom:227.199600px;}
.y62{bottom:232.604100px;}
.y99{bottom:233.644200px;}
.y2a{bottom:245.199600px;}
.y61{bottom:250.599600px;}
.y98{bottom:251.639700px;}
.y29{bottom:263.199600px;}
.y60{bottom:271.599600px;}
.y97{bottom:272.639700px;}
.y28{bottom:281.199600px;}
.y5f{bottom:289.599600px;}
.y96{bottom:290.657700px;}
.y27{bottom:299.199600px;}
.y5e{bottom:307.608600px;}
.y95{bottom:308.653200px;}
.y26{bottom:317.199600px;}
.y5d{bottom:325.604100px;}
.y94{bottom:326.648700px;}
.y25{bottom:335.199600px;}
.y5c{bottom:343.599600px;}
.y93{bottom:344.644200px;}
.y24{bottom:353.199600px;}
.y92{bottom:362.639700px;}
.y5b{bottom:364.599600px;}
.y23{bottom:371.199600px;}
.y5a{bottom:382.599600px;}
.y91{bottom:383.639700px;}
.y22{bottom:389.199600px;}
.y59{bottom:400.599600px;}
.y90{bottom:401.639700px;}
.y21{bottom:407.199600px;}
.y58{bottom:418.599600px;}
.y8f{bottom:419.639700px;}
.y20{bottom:425.199600px;}
.y57{bottom:436.604100px;}
.y8e{bottom:437.648700px;}
.y1f{bottom:443.199600px;}
.y56{bottom:454.599600px;}
.y8d{bottom:455.644200px;}
.y1e{bottom:461.199600px;}
.y8c{bottom:473.639700px;}
.y1d{bottom:479.199600px;}
.y55{bottom:490.599600px;}
.y8b{bottom:494.639700px;}
.y1c{bottom:497.199600px;}
.y8a{bottom:512.639700px;}
.y1b{bottom:515.199600px;}
.y54{bottom:530.199600px;}
.y89{bottom:530.639700px;}
.y1a{bottom:533.199600px;}
.y53{bottom:548.199600px;}
.y88{bottom:548.639700px;}
.y52{bottom:566.199600px;}
.y87{bottom:566.644200px;}
.y51{bottom:584.199600px;}
.y86{bottom:584.639700px;}
.y19{bottom:593.038350px;}
.y85{bottom:605.639700px;}
.y18{bottom:611.938350px;}
.y84{bottom:623.639700px;}
.y50{bottom:629.199600px;}
.y17{bottom:630.838350px;}
.y83{bottom:641.639700px;}
.y16{bottom:649.738350px;}
.y82{bottom:659.644200px;}
.y4f{bottom:666.999600px;}
.y15{bottom:668.638350px;}
.y81{bottom:677.639700px;}
.y14{bottom:687.538350px;}
.y80{bottom:695.639700px;}
.y4e{bottom:702.999600px;}
.y13{bottom:706.438350px;}
.y4a{bottom:706.599600px;}
.y7f{bottom:716.644200px;}
.y49{bottom:724.599600px;}
.y12{bottom:725.338350px;}
.y7e{bottom:734.639700px;}
.y48{bottom:742.599600px;}
.y11{bottom:744.238350px;}
.y7d{bottom:752.648700px;}
.y47{bottom:760.599600px;}
.y10{bottom:763.138350px;}
.y7c{bottom:770.644200px;}
.y46{bottom:778.599600px;}
.yf{bottom:782.038350px;}
.y7b{bottom:788.639700px;}
.y45{bottom:796.599600px;}
.ye{bottom:800.938350px;}
.y7a{bottom:809.639700px;}
.y44{bottom:814.599600px;}
.yd{bottom:819.838500px;}
.y79{bottom:827.639700px;}
.y43{bottom:832.599600px;}
.y78{bottom:845.639700px;}
.yc{bottom:847.738350px;}
.y42{bottom:850.599600px;}
.y77{bottom:863.639700px;}
.y41{bottom:868.599600px;}
.yb{bottom:879.844080px;}
.y76{bottom:881.644200px;}
.y40{bottom:886.599600px;}
.ya{bottom:899.343210px;}
.y75{bottom:899.639700px;}
.y3f{bottom:904.599600px;}
.y9{bottom:918.842340px;}
.y74{bottom:920.639700px;}
.y3e{bottom:922.599600px;}
.y73{bottom:938.639700px;}
.ya4{bottom:938.662200px;}
.y3d{bottom:940.599600px;}
.y8{bottom:940.783350px;}
.y72{bottom:956.657700px;}
.y3c{bottom:958.599600px;}
.y7{bottom:968.722350px;}
.y71{bottom:974.653200px;}
.y3b{bottom:976.599600px;}
.y6{bottom:990.322350px;}
.y70{bottom:992.648700px;}
.y3a{bottom:994.599600px;}
.y5{bottom:1005.928350px;}
.y6f{bottom:1010.644200px;}
.y39{bottom:1012.599600px;}
.y6e{bottom:1028.639700px;}
.y38{bottom:1030.599600px;}
.y4{bottom:1043.692350px;}
.y37{bottom:1048.599600px;}
.y6d{bottom:1049.639700px;}
.y36{bottom:1066.599600px;}
.ya3{bottom:1067.648700px;}
.y6c{bottom:1067.657100px;}
.y33{bottom:1072.427700px;}
.y35{bottom:1084.599600px;}
.ya2{bottom:1085.644200px;}
.y6b{bottom:1085.652600px;}
.y34{bottom:1102.599600px;}
.ya1{bottom:1103.639700px;}
.y6a{bottom:1103.648100px;}
.y3{bottom:1108.412250px;}
.h5{height:30.908109px;}
.h7{height:35.910000px;}
.h6{height:37.359492px;}
.he{height:37.520508px;}
.hd{height:40.664062px;}
.h1{height:41.291016px;}
.ha{height:41.689453px;}
.h9{height:44.191406px;}
.hb{height:44.284951px;}
.h2{height:44.513363px;}
.hf{height:44.730469px;}
.h8{height:48.796875px;}
.hc{height:49.101562px;}
.h4{height:53.913516px;}
.h3{height:68.742188px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:69.000000px;}
.x3{left:76.500000px;}
.x4{left:87.300000px;}
.xb{left:113.989200px;}
.x7{left:123.300000px;}
.x6{left:141.300000px;}
.x5{left:177.300000px;}
.x9{left:486.899100px;}
.xc{left:513.732300px;}
.x8{left:522.900000px;}
.xa{left:601.340400px;}
.x1{left:757.142550px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v5{vertical-align:-17.760000pt;}
.v1{vertical-align:-4.078400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:19.500267pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-11.675971pt;}
.ws3{word-spacing:-7.773333pt;}
.ws8{word-spacing:-1.296000pt;}
.ws5{word-spacing:-1.269333pt;}
.wsa{word-spacing:-0.960000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.240000pt;}
.ws7{word-spacing:1.296000pt;}
.ws6{word-spacing:1.728000pt;}
.wsb{word-spacing:2.293333pt;}
._0{margin-left:-1404.335467pt;}
._3{margin-left:-5.931413pt;}
._14{margin-left:-4.800000pt;}
._10{margin-left:-3.642667pt;}
._1b{margin-left:-2.573547pt;}
._1{margin-left:-1.584000pt;}
._6{width:1.296000pt;}
._19{width:2.240000pt;}
._b{width:3.146667pt;}
._a{width:4.320000pt;}
._f{width:6.080000pt;}
._15{width:7.200000pt;}
._16{width:8.480000pt;}
._11{width:9.440000pt;}
._c{width:10.560000pt;}
._17{width:11.840000pt;}
._20{width:13.056000pt;}
._8{width:14.453333pt;}
._13{width:15.413333pt;}
._1c{width:16.746667pt;}
._12{width:18.453333pt;}
._18{width:19.733333pt;}
._e{width:20.746667pt;}
._d{width:21.706667pt;}
._1e{width:22.816000pt;}
._9{width:24.533333pt;}
._7{width:25.440000pt;}
._1a{width:26.933333pt;}
._21{width:29.808000pt;}
._1d{width:46.080000pt;}
._1f{width:48.864000pt;}
._4{width:182.880320pt;}
._5{width:246.379840pt;}
._2{width:1000.098133pt;}
.fs9{font-size:31.093333pt;}
.fs5{font-size:34.140267pt;}
.fs6{font-size:37.312000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.560000pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.190267pt;}
.y2{bottom:57.523600pt;}
.y32{bottom:89.955200pt;}
.y69{bottom:92.096533pt;}
.ya0{bottom:93.017067pt;}
.y4d{bottom:99.503333pt;}
.y31{bottom:105.955200pt;}
.y68{bottom:108.092533pt;}
.y9f{bottom:109.013067pt;}
.y4c{bottom:113.903333pt;}
.y30{bottom:121.955200pt;}
.y67{bottom:124.088533pt;}
.y9e{bottom:127.683733pt;}
.y4b{bottom:128.303333pt;}
.y2f{bottom:137.955200pt;}
.y66{bottom:142.755200pt;}
.y9d{bottom:143.679733pt;}
.y2e{bottom:153.955200pt;}
.y65{bottom:158.771200pt;}
.y9c{bottom:159.695733pt;}
.y2d{bottom:169.955200pt;}
.y64{bottom:174.767200pt;}
.y9b{bottom:175.691733pt;}
.y2c{bottom:185.955200pt;}
.y63{bottom:190.763200pt;}
.y9a{bottom:191.687733pt;}
.y2b{bottom:201.955200pt;}
.y62{bottom:206.759200pt;}
.y99{bottom:207.683733pt;}
.y2a{bottom:217.955200pt;}
.y61{bottom:222.755200pt;}
.y98{bottom:223.679733pt;}
.y29{bottom:233.955200pt;}
.y60{bottom:241.421867pt;}
.y97{bottom:242.346400pt;}
.y28{bottom:249.955200pt;}
.y5f{bottom:257.421867pt;}
.y96{bottom:258.362400pt;}
.y27{bottom:265.955200pt;}
.y5e{bottom:273.429867pt;}
.y95{bottom:274.358400pt;}
.y26{bottom:281.955200pt;}
.y5d{bottom:289.425867pt;}
.y94{bottom:290.354400pt;}
.y25{bottom:297.955200pt;}
.y5c{bottom:305.421867pt;}
.y93{bottom:306.350400pt;}
.y24{bottom:313.955200pt;}
.y92{bottom:322.346400pt;}
.y5b{bottom:324.088533pt;}
.y23{bottom:329.955200pt;}
.y5a{bottom:340.088533pt;}
.y91{bottom:341.013067pt;}
.y22{bottom:345.955200pt;}
.y59{bottom:356.088533pt;}
.y90{bottom:357.013067pt;}
.y21{bottom:361.955200pt;}
.y58{bottom:372.088533pt;}
.y8f{bottom:373.013067pt;}
.y20{bottom:377.955200pt;}
.y57{bottom:388.092533pt;}
.y8e{bottom:389.021067pt;}
.y1f{bottom:393.955200pt;}
.y56{bottom:404.088533pt;}
.y8d{bottom:405.017067pt;}
.y1e{bottom:409.955200pt;}
.y8c{bottom:421.013067pt;}
.y1d{bottom:425.955200pt;}
.y55{bottom:436.088533pt;}
.y8b{bottom:439.679733pt;}
.y1c{bottom:441.955200pt;}
.y8a{bottom:455.679733pt;}
.y1b{bottom:457.955200pt;}
.y54{bottom:471.288533pt;}
.y89{bottom:471.679733pt;}
.y1a{bottom:473.955200pt;}
.y53{bottom:487.288533pt;}
.y88{bottom:487.679733pt;}
.y52{bottom:503.288533pt;}
.y87{bottom:503.683733pt;}
.y51{bottom:519.288533pt;}
.y86{bottom:519.679733pt;}
.y19{bottom:527.145200pt;}
.y85{bottom:538.346400pt;}
.y18{bottom:543.945200pt;}
.y84{bottom:554.346400pt;}
.y50{bottom:559.288533pt;}
.y17{bottom:560.745200pt;}
.y83{bottom:570.346400pt;}
.y16{bottom:577.545200pt;}
.y82{bottom:586.350400pt;}
.y4f{bottom:592.888533pt;}
.y15{bottom:594.345200pt;}
.y81{bottom:602.346400pt;}
.y14{bottom:611.145200pt;}
.y80{bottom:618.346400pt;}
.y4e{bottom:624.888533pt;}
.y13{bottom:627.945200pt;}
.y4a{bottom:628.088533pt;}
.y7f{bottom:637.017067pt;}
.y49{bottom:644.088533pt;}
.y12{bottom:644.745200pt;}
.y7e{bottom:653.013067pt;}
.y48{bottom:660.088533pt;}
.y11{bottom:661.545200pt;}
.y7d{bottom:669.021067pt;}
.y47{bottom:676.088533pt;}
.y10{bottom:678.345200pt;}
.y7c{bottom:685.017067pt;}
.y46{bottom:692.088533pt;}
.yf{bottom:695.145200pt;}
.y7b{bottom:701.013067pt;}
.y45{bottom:708.088533pt;}
.ye{bottom:711.945200pt;}
.y7a{bottom:719.679733pt;}
.y44{bottom:724.088533pt;}
.yd{bottom:728.745333pt;}
.y79{bottom:735.679733pt;}
.y43{bottom:740.088533pt;}
.y78{bottom:751.679733pt;}
.yc{bottom:753.545200pt;}
.y42{bottom:756.088533pt;}
.y77{bottom:767.679733pt;}
.y41{bottom:772.088533pt;}
.yb{bottom:782.083627pt;}
.y76{bottom:783.683733pt;}
.y40{bottom:788.088533pt;}
.ya{bottom:799.416187pt;}
.y75{bottom:799.679733pt;}
.y3f{bottom:804.088533pt;}
.y9{bottom:816.748747pt;}
.y74{bottom:818.346400pt;}
.y3e{bottom:820.088533pt;}
.y73{bottom:834.346400pt;}
.ya4{bottom:834.366400pt;}
.y3d{bottom:836.088533pt;}
.y8{bottom:836.251867pt;}
.y72{bottom:850.362400pt;}
.y3c{bottom:852.088533pt;}
.y7{bottom:861.086533pt;}
.y71{bottom:866.358400pt;}
.y3b{bottom:868.088533pt;}
.y6{bottom:880.286533pt;}
.y70{bottom:882.354400pt;}
.y3a{bottom:884.088533pt;}
.y5{bottom:894.158533pt;}
.y6f{bottom:898.350400pt;}
.y39{bottom:900.088533pt;}
.y6e{bottom:914.346400pt;}
.y38{bottom:916.088533pt;}
.y4{bottom:927.726533pt;}
.y37{bottom:932.088533pt;}
.y6d{bottom:933.013067pt;}
.y36{bottom:948.088533pt;}
.ya3{bottom:949.021067pt;}
.y6c{bottom:949.028533pt;}
.y33{bottom:953.269067pt;}
.y35{bottom:964.088533pt;}
.ya2{bottom:965.017067pt;}
.y6b{bottom:965.024533pt;}
.y34{bottom:980.088533pt;}
.ya1{bottom:981.013067pt;}
.y6a{bottom:981.020533pt;}
.y3{bottom:985.255333pt;}
.h5{height:27.473875pt;}
.h7{height:31.920000pt;}
.h6{height:33.208438pt;}
.he{height:33.351562pt;}
.hd{height:36.145833pt;}
.h1{height:36.703125pt;}
.ha{height:37.057292pt;}
.h9{height:39.281250pt;}
.hb{height:39.364401pt;}
.h2{height:39.567433pt;}
.hf{height:39.760417pt;}
.h8{height:43.375000pt;}
.hc{height:43.645833pt;}
.h4{height:47.923125pt;}
.h3{height:61.104167pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:61.333333pt;}
.x3{left:68.000000pt;}
.x4{left:77.600000pt;}
.xb{left:101.323733pt;}
.x7{left:109.600000pt;}
.x6{left:125.600000pt;}
.x5{left:157.600000pt;}
.x9{left:432.799200pt;}
.xc{left:456.650933pt;}
.x8{left:464.800000pt;}
.xa{left:534.524800pt;}
.x1{left:673.015600pt;}
}




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