
    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_aa1c8d28b0cb37654eda2e18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_f0ba9e231159305bee9ca428.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.015000;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_55bc22ea5483966385419bcd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726000;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_5dc43904acb3f4c996575f2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_adaae17b2b7098746a7a9454.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.768000;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_2fce31ed2ce07a4f855b1d0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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_663d00f80219e54837755e67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.019000;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_42ce9dc233b279bf439bc255.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.233636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233636,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.233886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233886,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.234156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234156,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234344,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236696,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.236832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236832,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.236881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236881,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.237608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237608,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.239616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239616,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.240577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240577,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241599,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.241747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241747,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242298,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243202,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245599,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248699,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);}
.m3{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251321,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254733,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.256261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256261,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.256858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256858,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.009000px;}
.v2{vertical-align:15.840600px;}
.lsc{letter-spacing:-1.998000px;}
.lsf{letter-spacing:-1.836000px;}
.lsb{letter-spacing:-1.320000px;}
.ls10{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.158400px;}
.lsd{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.552000px;}
.ls3{letter-spacing:0.810000px;}
.lse{letter-spacing:0.864000px;}
.lsa{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.620000px;}
.ls0{letter-spacing:21.930000px;}
.ls1{letter-spacing:22.197551px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-16.947000px;}
.ws0{word-spacing:-16.434000px;}
.wsa{word-spacing:-15.400800px;}
.ws6{word-spacing:-11.472000px;}
.ws8{word-spacing:-10.296000px;}
.ws2{word-spacing:-10.200000px;}
.ws1{word-spacing:-8.802000px;}
.ws4{word-spacing:-8.364000px;}
.wsc{word-spacing:-7.380000px;}
.ws9{word-spacing:-6.177600px;}
.ws19{word-spacing:-1.656000px;}
.ws12{word-spacing:-1.636800px;}
.ws14{word-spacing:-1.584000px;}
.wsd{word-spacing:-1.488000px;}
.wsf{word-spacing:-1.440000px;}
.ws3{word-spacing:-0.918000px;}
.ws1b{word-spacing:-0.897600px;}
.ws18{word-spacing:-0.792000px;}
.ws1d{word-spacing:-0.450000px;}
.ws7{word-spacing:-0.288000px;}
.wse{word-spacing:0.000000px;}
.ws17{word-spacing:0.369600px;}
.ws10{word-spacing:0.475200px;}
.ws1c{word-spacing:0.528000px;}
.ws1a{word-spacing:0.792000px;}
.ws15{word-spacing:2.534400px;}
.ws11{word-spacing:2.587200px;}
.ws13{word-spacing:2.640000px;}
.wsb{word-spacing:2.736000px;}
.ws16{word-spacing:3.115200px;}
._6{margin-left:-7.442290px;}
._7{margin-left:-5.097000px;}
._1{margin-left:-3.406310px;}
._4{margin-left:-2.352000px;}
._3{margin-left:-1.056000px;}
._0{width:1.386000px;}
._5{width:2.507400px;}
._2{width:3.746982px;}
.fc2{color:rgb(155,114,178);}
.fc1{color:rgb(147,149,152);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:21.600000px;}
.fs9{font-size:31.680000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:52.800000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:55.200000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:126.000000px;}
.fs7{font-size:269.926200px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.763750px;}
.y55{bottom:63.840300px;}
.y56{bottom:64.418400px;}
.y54{bottom:78.843300px;}
.y53{bottom:93.846300px;}
.y52{bottom:111.549300px;}
.y51{bottom:125.975400px;}
.y50{bottom:169.073700px;}
.y4f{bottom:186.629700px;}
.y4e{bottom:204.179700px;}
.y4d{bottom:221.729700px;}
.y4c{bottom:239.279700px;}
.y4b{bottom:256.829700px;}
.y4a{bottom:274.379700px;}
.y49{bottom:291.929700px;}
.y48{bottom:309.479700px;}
.y47{bottom:327.029700px;}
.y46{bottom:344.579700px;}
.y45{bottom:362.129700px;}
.y44{bottom:379.679700px;}
.y43{bottom:397.229700px;}
.y27{bottom:414.779550px;}
.y42{bottom:419.570100px;}
.y26{bottom:432.329700px;}
.yb{bottom:432.330750px;}
.y41{bottom:437.123700px;}
.y25{bottom:449.879550px;}
.ya{bottom:456.630750px;}
.y24{bottom:467.429700px;}
.y9{bottom:472.830750px;}
.y23{bottom:484.979700px;}
.y8{bottom:489.030750px;}
.y22{bottom:502.529550px;}
.y40{bottom:502.529700px;}
.y7{bottom:505.230750px;}
.y21{bottom:520.079700px;}
.y6{bottom:521.430750px;}
.y20{bottom:537.629550px;}
.y3f{bottom:537.629700px;}
.y5{bottom:537.630750px;}
.y4{bottom:553.830750px;}
.y1f{bottom:555.179700px;}
.y1e{bottom:572.729700px;}
.y3{bottom:578.534700px;}
.y1d{bottom:590.279550px;}
.y3e{bottom:590.279700px;}
.y1c{bottom:607.829700px;}
.y19{bottom:625.379550px;}
.y3d{bottom:625.379700px;}
.y1b{bottom:642.929550px;}
.y3c{bottom:642.929700px;}
.y1a{bottom:660.479550px;}
.y3b{bottom:660.479700px;}
.y3a{bottom:678.029700px;}
.y18{bottom:695.579550px;}
.y39{bottom:695.579700px;}
.y17{bottom:713.129550px;}
.y38{bottom:713.129700px;}
.y37{bottom:730.679700px;}
.y36{bottom:748.229700px;}
.y35{bottom:765.779700px;}
.y34{bottom:783.329700px;}
.y16{bottom:786.967350px;}
.y33{bottom:800.879700px;}
.y15{bottom:811.267350px;}
.y32{bottom:818.429700px;}
.y14{bottom:835.567350px;}
.y31{bottom:835.979550px;}
.y30{bottom:853.529550px;}
.y13{bottom:859.867350px;}
.y2f{bottom:875.870100px;}
.y12{bottom:884.167350px;}
.y2e{bottom:893.423700px;}
.y11{bottom:908.467350px;}
.y2d{bottom:923.729550px;}
.y10{bottom:932.767350px;}
.y2c{bottom:941.279550px;}
.yf{bottom:957.067350px;}
.y2b{bottom:958.829550px;}
.y2a{bottom:976.379550px;}
.y29{bottom:993.929550px;}
.y28{bottom:1011.479550px;}
.ye{bottom:1015.383150px;}
.yd{bottom:1046.883150px;}
.yc{bottom:1078.383150px;}
.y57{bottom:1136.461650px;}
.y1{bottom:1154.409450px;}
.he{height:16.740000px;}
.hf{height:27.540000px;}
.hd{height:33.300000px;}
.h10{height:33.930000px;}
.h6{height:36.192000px;}
.hb{height:40.392000px;}
.hc{height:41.620800px;}
.h3{height:42.024000px;}
.h5{height:42.144000px;}
.h9{height:47.412000px;}
.h4{height:47.502000px;}
.h2{height:49.764000px;}
.h8{height:62.370000px;}
.h7{height:96.390000px;}
.ha{height:206.493543px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.031450px;}
.x8{left:75.366300px;}
.x3{left:109.390800px;}
.x2{left:367.369950px;}
.x4{left:585.070800px;}
.x7{left:591.802800px;}
.x5{left:602.078700px;}
.x6{left:819.699300px;}
@media print{
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.674667pt;}
.v2{vertical-align:14.080533pt;}
.lsc{letter-spacing:-1.776000pt;}
.lsf{letter-spacing:-1.632000pt;}
.lsb{letter-spacing:-1.173333pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.140800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.490667pt;}
.ls3{letter-spacing:0.720000pt;}
.lse{letter-spacing:0.768000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls0{letter-spacing:19.493333pt;}
.ls1{letter-spacing:19.731156pt;}
.ws5{word-spacing:-15.064000pt;}
.ws0{word-spacing:-14.608000pt;}
.wsa{word-spacing:-13.689600pt;}
.ws6{word-spacing:-10.197333pt;}
.ws8{word-spacing:-9.152000pt;}
.ws2{word-spacing:-9.066667pt;}
.ws1{word-spacing:-7.824000pt;}
.ws4{word-spacing:-7.434667pt;}
.wsc{word-spacing:-6.560000pt;}
.ws9{word-spacing:-5.491200pt;}
.ws19{word-spacing:-1.472000pt;}
.ws12{word-spacing:-1.454933pt;}
.ws14{word-spacing:-1.408000pt;}
.wsd{word-spacing:-1.322667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws3{word-spacing:-0.816000pt;}
.ws1b{word-spacing:-0.797867pt;}
.ws18{word-spacing:-0.704000pt;}
.ws1d{word-spacing:-0.400000pt;}
.ws7{word-spacing:-0.256000pt;}
.wse{word-spacing:0.000000pt;}
.ws17{word-spacing:0.328533pt;}
.ws10{word-spacing:0.422400pt;}
.ws1c{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.704000pt;}
.ws15{word-spacing:2.252800pt;}
.ws11{word-spacing:2.299733pt;}
.ws13{word-spacing:2.346667pt;}
.wsb{word-spacing:2.432000pt;}
.ws16{word-spacing:2.769067pt;}
._6{margin-left:-6.615369pt;}
._7{margin-left:-4.530667pt;}
._1{margin-left:-3.027831pt;}
._4{margin-left:-2.090667pt;}
._3{margin-left:-0.938667pt;}
._0{width:1.232000pt;}
._5{width:2.228800pt;}
._2{width:3.330650pt;}
.fsc{font-size:19.200000pt;}
.fs9{font-size:28.160000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:46.933333pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:49.066667pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:112.000000pt;}
.fs7{font-size:239.934400pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.456667pt;}
.y55{bottom:56.746933pt;}
.y56{bottom:57.260800pt;}
.y54{bottom:70.082933pt;}
.y53{bottom:83.418933pt;}
.y52{bottom:99.154933pt;}
.y51{bottom:111.978133pt;}
.y50{bottom:150.287733pt;}
.y4f{bottom:165.893067pt;}
.y4e{bottom:181.493067pt;}
.y4d{bottom:197.093067pt;}
.y4c{bottom:212.693067pt;}
.y4b{bottom:228.293067pt;}
.y4a{bottom:243.893067pt;}
.y49{bottom:259.493067pt;}
.y48{bottom:275.093067pt;}
.y47{bottom:290.693067pt;}
.y46{bottom:306.293067pt;}
.y45{bottom:321.893067pt;}
.y44{bottom:337.493067pt;}
.y43{bottom:353.093067pt;}
.y27{bottom:368.692933pt;}
.y42{bottom:372.951200pt;}
.y26{bottom:384.293067pt;}
.yb{bottom:384.294000pt;}
.y41{bottom:388.554400pt;}
.y25{bottom:399.892933pt;}
.ya{bottom:405.894000pt;}
.y24{bottom:415.493067pt;}
.y9{bottom:420.294000pt;}
.y23{bottom:431.093067pt;}
.y8{bottom:434.694000pt;}
.y22{bottom:446.692933pt;}
.y40{bottom:446.693067pt;}
.y7{bottom:449.094000pt;}
.y21{bottom:462.293067pt;}
.y6{bottom:463.494000pt;}
.y20{bottom:477.892933pt;}
.y3f{bottom:477.893067pt;}
.y5{bottom:477.894000pt;}
.y4{bottom:492.294000pt;}
.y1f{bottom:493.493067pt;}
.y1e{bottom:509.093067pt;}
.y3{bottom:514.253067pt;}
.y1d{bottom:524.692933pt;}
.y3e{bottom:524.693067pt;}
.y1c{bottom:540.293067pt;}
.y19{bottom:555.892933pt;}
.y3d{bottom:555.893067pt;}
.y1b{bottom:571.492933pt;}
.y3c{bottom:571.493067pt;}
.y1a{bottom:587.092933pt;}
.y3b{bottom:587.093067pt;}
.y3a{bottom:602.693067pt;}
.y18{bottom:618.292933pt;}
.y39{bottom:618.293067pt;}
.y17{bottom:633.892933pt;}
.y38{bottom:633.893067pt;}
.y37{bottom:649.493067pt;}
.y36{bottom:665.093067pt;}
.y35{bottom:680.693067pt;}
.y34{bottom:696.293067pt;}
.y16{bottom:699.526533pt;}
.y33{bottom:711.893067pt;}
.y15{bottom:721.126533pt;}
.y32{bottom:727.493067pt;}
.y14{bottom:742.726533pt;}
.y31{bottom:743.092933pt;}
.y30{bottom:758.692933pt;}
.y13{bottom:764.326533pt;}
.y2f{bottom:778.551200pt;}
.y12{bottom:785.926533pt;}
.y2e{bottom:794.154400pt;}
.y11{bottom:807.526533pt;}
.y2d{bottom:821.092933pt;}
.y10{bottom:829.126533pt;}
.y2c{bottom:836.692933pt;}
.yf{bottom:850.726533pt;}
.y2b{bottom:852.292933pt;}
.y2a{bottom:867.892933pt;}
.y29{bottom:883.492933pt;}
.y28{bottom:899.092933pt;}
.ye{bottom:902.562800pt;}
.yd{bottom:930.562800pt;}
.yc{bottom:958.562800pt;}
.y57{bottom:1010.188133pt;}
.y1{bottom:1026.141733pt;}
.he{height:14.880000pt;}
.hf{height:24.480000pt;}
.hd{height:29.600000pt;}
.h10{height:30.160000pt;}
.h6{height:32.170667pt;}
.hb{height:35.904000pt;}
.hc{height:36.996267pt;}
.h3{height:37.354667pt;}
.h5{height:37.461333pt;}
.h9{height:42.144000pt;}
.h4{height:42.224000pt;}
.h2{height:44.234667pt;}
.h8{height:55.440000pt;}
.h7{height:85.680000pt;}
.ha{height:183.549816pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.472400pt;}
.x8{left:66.992267pt;}
.x3{left:97.236267pt;}
.x2{left:326.551067pt;}
.x4{left:520.062933pt;}
.x7{left:526.046933pt;}
.x5{left:535.181067pt;}
.x6{left:728.621600pt;}
}




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