
    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_36c24d3b3149af04b2f8e28f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2be6aef1c8f5bca01c37a1fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ba1db72b25f282f29e3ba8b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f85d6f27d57d267c1a382f37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921420;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_a237b3ff09e60d7e82064c9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_526ffcc0d39c26726d5021ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a56084dc3004e82869d52bb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_c95affcda9d483e4e38a1cab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_fc173db4cba24ae069e9fa6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab9ccc3a73e40ef32de21b58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_38263534b10dd0f907a47df9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f82fcb2e6f9c19a7e48c8347.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_36c24d3b3149af04b2f8e28f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2be6aef1c8f5bca01c37a1fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_8132dc7fd3e0cf08f1afdd11.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d5052a193711b448d0bf6284.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.ma{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls5{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:66.319200px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws25{word-spacing:-71.784000px;}
.ws31{word-spacing:-71.640000px;}
.ws39{word-spacing:-71.568000px;}
.ws6{word-spacing:-60.912000px;}
.ws3b{word-spacing:-59.472000px;}
.ws3a{word-spacing:-59.040000px;}
.ws2a{word-spacing:-57.168000px;}
.ws34{word-spacing:-56.880000px;}
.ws2f{word-spacing:-55.080000px;}
.ws26{word-spacing:-54.576000px;}
.ws15{word-spacing:-54.288000px;}
.ws5{word-spacing:-53.280000px;}
.ws38{word-spacing:-52.848000px;}
.ws24{word-spacing:-50.976000px;}
.ws14{word-spacing:-50.904000px;}
.ws1b{word-spacing:-50.688000px;}
.ws2d{word-spacing:-50.112000px;}
.ws36{word-spacing:-49.824000px;}
.ws32{word-spacing:-48.888000px;}
.ws3d{word-spacing:-48.024000px;}
.ws3e{word-spacing:-47.088000px;}
.ws21{word-spacing:-45.000000px;}
.ws27{word-spacing:-43.984800px;}
.ws1e{word-spacing:-43.776000px;}
.ws22{word-spacing:-43.200000px;}
.wsd{word-spacing:-42.912000px;}
.ws29{word-spacing:-42.768000px;}
.ws1f{word-spacing:-42.624000px;}
.ws2b{word-spacing:-41.472000px;}
.ws37{word-spacing:-39.600000px;}
.ws12{word-spacing:-38.520000px;}
.ws11{word-spacing:-37.152000px;}
.wsf{word-spacing:-35.784000px;}
.ws23{word-spacing:-34.704000px;}
.ws35{word-spacing:-31.752000px;}
.ws3c{word-spacing:-30.744000px;}
.ws2e{word-spacing:-30.096000px;}
.ws20{word-spacing:-28.728000px;}
.ws17{word-spacing:-24.048000px;}
.ws30{word-spacing:-20.592000px;}
.wsb{word-spacing:-19.728000px;}
.wsc{word-spacing:-19.440000px;}
.ws1c{word-spacing:-19.224000px;}
.ws19{word-spacing:-18.720000px;}
.ws1d{word-spacing:-16.500000px;}
.ws33{word-spacing:-15.984000px;}
.ws7{word-spacing:-15.000000px;}
.ws2c{word-spacing:-14.832000px;}
.ws4{word-spacing:-13.500000px;}
.ws28{word-spacing:-12.600000px;}
.ws10{word-spacing:-6.192000px;}
.ws2{word-spacing:-5.680800px;}
.ws8{word-spacing:0.000000px;}
.wsa{word-spacing:0.720000px;}
.ws0{word-spacing:33.621000px;}
.ws13{word-spacing:40.240800px;}
.ws1a{word-spacing:66.312000px;}
.ws18{word-spacing:117.450000px;}
.wse{word-spacing:125.280000px;}
.ws16{word-spacing:125.287200px;}
.ws3f{word-spacing:197.280000px;}
.ws1{word-spacing:386.314800px;}
.ws9{word-spacing:1699.977600px;}
._17{margin-left:-197.291400px;}
._18{margin-left:-54.136800px;}
._e{margin-left:-15.768000px;}
._8{margin-left:-13.896000px;}
._a{margin-left:-12.168000px;}
._3{margin-left:-10.656000px;}
._7{margin-left:-9.504000px;}
._c{margin-left:-8.352000px;}
._2{margin-left:-6.840000px;}
._6{margin-left:-5.832000px;}
._5{margin-left:-4.320000px;}
._9{margin-left:-3.168000px;}
._4{margin-left:-1.872000px;}
._f{width:1.033263px;}
._1{width:2.095200px;}
._0{width:3.664800px;}
._b{width:4.831200px;}
._12{width:6.192000px;}
._13{width:7.200000px;}
._16{width:9.000000px;}
._15{width:10.440000px;}
._19{width:66.319200px;}
._14{width:70.628400px;}
._d{width:85.050000px;}
._10{width:112.240800px;}
._11{width:197.280000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y31{bottom:64.760550px;}
.y30{bottom:65.586600px;}
.y78{bottom:91.284900px;}
.y5c{bottom:93.534900px;}
.ya0{bottom:93.960150px;}
.y26{bottom:103.993050px;}
.y77{bottom:113.784900px;}
.y5b{bottom:116.034900px;}
.y9f{bottom:116.460150px;}
.y25{bottom:126.493050px;}
.y76{bottom:136.284900px;}
.y5a{bottom:138.534900px;}
.y9e{bottom:138.960150px;}
.y24{bottom:148.993050px;}
.y75{bottom:158.784900px;}
.y59{bottom:161.034900px;}
.y9d{bottom:161.460150px;}
.ya3{bottom:162.360150px;}
.y74{bottom:181.284900px;}
.y58{bottom:183.534900px;}
.y9c{bottom:183.960150px;}
.ya2{bottom:184.860150px;}
.y23{bottom:190.993050px;}
.y73{bottom:203.784900px;}
.y57{bottom:206.034900px;}
.y9b{bottom:206.460150px;}
.y22{bottom:213.493050px;}
.y72{bottom:225.534900px;}
.y56{bottom:228.534900px;}
.y9a{bottom:228.960150px;}
.y21{bottom:235.993050px;}
.y71{bottom:247.284900px;}
.y55{bottom:251.034900px;}
.y99{bottom:251.460150px;}
.y20{bottom:258.493050px;}
.y70{bottom:269.034900px;}
.y54{bottom:273.534900px;}
.y98{bottom:273.960150px;}
.y1f{bottom:280.993050px;}
.y6f{bottom:291.534900px;}
.y53{bottom:296.034900px;}
.y97{bottom:296.460150px;}
.y1e{bottom:303.493050px;}
.y6e{bottom:314.034900px;}
.y52{bottom:318.534900px;}
.y96{bottom:318.960150px;}
.y1d{bottom:325.993050px;}
.y6d{bottom:336.534900px;}
.y51{bottom:341.034900px;}
.y95{bottom:341.460150px;}
.y1c{bottom:348.493050px;}
.y6c{bottom:358.284900px;}
.y50{bottom:363.534900px;}
.y94{bottom:363.960150px;}
.y1b{bottom:370.993050px;}
.y6b{bottom:380.058900px;}
.y4f{bottom:386.034900px;}
.y93{bottom:386.460150px;}
.y1a{bottom:393.493050px;}
.y6a{bottom:401.802900px;}
.y4e{bottom:408.534900px;}
.y92{bottom:408.960150px;}
.y19{bottom:415.993050px;}
.y69{bottom:423.546900px;}
.y4d{bottom:431.034900px;}
.y91{bottom:431.460150px;}
.y18{bottom:438.493050px;}
.y68{bottom:445.290900px;}
.y4c{bottom:453.534900px;}
.y90{bottom:453.960150px;}
.y2f{bottom:456.139950px;}
.y17{bottom:460.993050px;}
.y67{bottom:467.034900px;}
.y4b{bottom:476.034900px;}
.y8f{bottom:476.460150px;}
.y2e{bottom:478.639950px;}
.y16{bottom:483.493050px;}
.y66{bottom:488.784900px;}
.y4a{bottom:498.534900px;}
.y8e{bottom:498.960150px;}
.y2d{bottom:501.139950px;}
.y15{bottom:505.993050px;}
.y65{bottom:510.534900px;}
.y49{bottom:521.034900px;}
.y8d{bottom:521.460150px;}
.y64{bottom:532.284900px;}
.y2c{bottom:541.639950px;}
.y48{bottom:543.534900px;}
.y8c{bottom:543.960150px;}
.y14{bottom:547.993050px;}
.y63{bottom:554.034900px;}
.y47{bottom:566.034900px;}
.y8b{bottom:566.460150px;}
.y13{bottom:570.493050px;}
.y62{bottom:575.784900px;}
.y2b{bottom:586.639950px;}
.y46{bottom:588.530400px;}
.y8a{bottom:588.960150px;}
.y12{bottom:592.993050px;}
.y61{bottom:597.534900px;}
.y45{bottom:611.034900px;}
.y89{bottom:611.460150px;}
.y11{bottom:615.493050px;}
.y60{bottom:619.284900px;}
.y2a{bottom:627.139950px;}
.y44{bottom:633.534900px;}
.y88{bottom:633.960150px;}
.y10{bottom:637.993050px;}
.y5f{bottom:641.034900px;}
.y43{bottom:656.034900px;}
.y87{bottom:656.460150px;}
.yf{bottom:660.493050px;}
.y29{bottom:663.139950px;}
.y5e{bottom:663.534900px;}
.y42{bottom:678.534900px;}
.y86{bottom:678.960150px;}
.ye{bottom:682.993050px;}
.y28{bottom:699.139950px;}
.y41{bottom:701.034900px;}
.y85{bottom:701.460150px;}
.yd{bottom:705.493050px;}
.y40{bottom:723.534900px;}
.y84{bottom:723.960150px;}
.yc{bottom:727.993050px;}
.y27{bottom:735.139950px;}
.y3f{bottom:746.034900px;}
.y83{bottom:746.460150px;}
.yb{bottom:750.493050px;}
.y3e{bottom:768.534900px;}
.y82{bottom:768.960150px;}
.ya{bottom:772.993050px;}
.y3d{bottom:791.034900px;}
.y81{bottom:791.460150px;}
.y9{bottom:795.493050px;}
.y3c{bottom:813.534900px;}
.y80{bottom:813.960150px;}
.y8{bottom:817.993050px;}
.y3b{bottom:836.034900px;}
.y7f{bottom:836.460150px;}
.y3a{bottom:858.534900px;}
.ya1{bottom:858.960150px;}
.y7{bottom:859.984050px;}
.y6{bottom:880.988550px;}
.y39{bottom:881.034900px;}
.y7e{bottom:881.460150px;}
.y5{bottom:901.993050px;}
.y38{bottom:903.530400px;}
.y5d{bottom:903.534900px;}
.y7d{bottom:903.960150px;}
.y4{bottom:922.993050px;}
.y37{bottom:926.034900px;}
.y7c{bottom:926.460150px;}
.y36{bottom:948.534900px;}
.y7b{bottom:948.960150px;}
.y3{bottom:969.493050px;}
.y35{bottom:971.034900px;}
.y7a{bottom:971.460150px;}
.y34{bottom:993.534900px;}
.y79{bottom:993.960150px;}
.y33{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y32{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.hf{height:37.494141px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.he{height:50.418000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xe{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xd{left:73.559100px;}
.x12{left:85.039350px;}
.x8{left:224.187900px;}
.x9{left:245.447700px;}
.x3{left:337.173750px;}
.x13{left:374.424150px;}
.x14{left:399.935850px;}
.x11{left:412.272150px;}
.x15{left:421.195650px;}
.x4{left:486.842850px;}
.x6{left:503.315100px;}
.xa{left:572.161050px;}
.xb{left:578.751150px;}
.x5{left:584.726100px;}
.x10{left:614.196150px;}
.x7{left:619.475100px;}
.xf{left:632.875800px;}
.x17{left:662.874600px;}
.x16{left:702.007350px;}
.xc{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:58.950400pt;}
.ws3{word-spacing:-64.000000pt;}
.ws25{word-spacing:-63.808000pt;}
.ws31{word-spacing:-63.680000pt;}
.ws39{word-spacing:-63.616000pt;}
.ws6{word-spacing:-54.144000pt;}
.ws3b{word-spacing:-52.864000pt;}
.ws3a{word-spacing:-52.480000pt;}
.ws2a{word-spacing:-50.816000pt;}
.ws34{word-spacing:-50.560000pt;}
.ws2f{word-spacing:-48.960000pt;}
.ws26{word-spacing:-48.512000pt;}
.ws15{word-spacing:-48.256000pt;}
.ws5{word-spacing:-47.360000pt;}
.ws38{word-spacing:-46.976000pt;}
.ws24{word-spacing:-45.312000pt;}
.ws14{word-spacing:-45.248000pt;}
.ws1b{word-spacing:-45.056000pt;}
.ws2d{word-spacing:-44.544000pt;}
.ws36{word-spacing:-44.288000pt;}
.ws32{word-spacing:-43.456000pt;}
.ws3d{word-spacing:-42.688000pt;}
.ws3e{word-spacing:-41.856000pt;}
.ws21{word-spacing:-40.000000pt;}
.ws27{word-spacing:-39.097600pt;}
.ws1e{word-spacing:-38.912000pt;}
.ws22{word-spacing:-38.400000pt;}
.wsd{word-spacing:-38.144000pt;}
.ws29{word-spacing:-38.016000pt;}
.ws1f{word-spacing:-37.888000pt;}
.ws2b{word-spacing:-36.864000pt;}
.ws37{word-spacing:-35.200000pt;}
.ws12{word-spacing:-34.240000pt;}
.ws11{word-spacing:-33.024000pt;}
.wsf{word-spacing:-31.808000pt;}
.ws23{word-spacing:-30.848000pt;}
.ws35{word-spacing:-28.224000pt;}
.ws3c{word-spacing:-27.328000pt;}
.ws2e{word-spacing:-26.752000pt;}
.ws20{word-spacing:-25.536000pt;}
.ws17{word-spacing:-21.376000pt;}
.ws30{word-spacing:-18.304000pt;}
.wsb{word-spacing:-17.536000pt;}
.wsc{word-spacing:-17.280000pt;}
.ws1c{word-spacing:-17.088000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws33{word-spacing:-14.208000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws2c{word-spacing:-13.184000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws28{word-spacing:-11.200000pt;}
.ws10{word-spacing:-5.504000pt;}
.ws2{word-spacing:-5.049600pt;}
.ws8{word-spacing:0.000000pt;}
.wsa{word-spacing:0.640000pt;}
.ws0{word-spacing:29.885333pt;}
.ws13{word-spacing:35.769600pt;}
.ws1a{word-spacing:58.944000pt;}
.ws18{word-spacing:104.400000pt;}
.wse{word-spacing:111.360000pt;}
.ws16{word-spacing:111.366400pt;}
.ws3f{word-spacing:175.360000pt;}
.ws1{word-spacing:343.390933pt;}
.ws9{word-spacing:1511.091200pt;}
._17{margin-left:-175.370133pt;}
._18{margin-left:-48.121600pt;}
._e{margin-left:-14.016000pt;}
._8{margin-left:-12.352000pt;}
._a{margin-left:-10.816000pt;}
._3{margin-left:-9.472000pt;}
._7{margin-left:-8.448000pt;}
._c{margin-left:-7.424000pt;}
._2{margin-left:-6.080000pt;}
._6{margin-left:-5.184000pt;}
._5{margin-left:-3.840000pt;}
._9{margin-left:-2.816000pt;}
._4{margin-left:-1.664000pt;}
._f{width:0.918456pt;}
._1{width:1.862400pt;}
._0{width:3.257600pt;}
._b{width:4.294400pt;}
._12{width:5.504000pt;}
._13{width:6.400000pt;}
._16{width:8.000000pt;}
._15{width:9.280000pt;}
._19{width:58.950400pt;}
._14{width:62.780800pt;}
._d{width:75.600000pt;}
._10{width:99.769600pt;}
._11{width:175.360000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y31{bottom:57.564933pt;}
.y30{bottom:58.299200pt;}
.y78{bottom:81.142133pt;}
.y5c{bottom:83.142133pt;}
.ya0{bottom:83.520133pt;}
.y26{bottom:92.438267pt;}
.y77{bottom:101.142133pt;}
.y5b{bottom:103.142133pt;}
.y9f{bottom:103.520133pt;}
.y25{bottom:112.438267pt;}
.y76{bottom:121.142133pt;}
.y5a{bottom:123.142133pt;}
.y9e{bottom:123.520133pt;}
.y24{bottom:132.438267pt;}
.y75{bottom:141.142133pt;}
.y59{bottom:143.142133pt;}
.y9d{bottom:143.520133pt;}
.ya3{bottom:144.320133pt;}
.y74{bottom:161.142133pt;}
.y58{bottom:163.142133pt;}
.y9c{bottom:163.520133pt;}
.ya2{bottom:164.320133pt;}
.y23{bottom:169.771600pt;}
.y73{bottom:181.142133pt;}
.y57{bottom:183.142133pt;}
.y9b{bottom:183.520133pt;}
.y22{bottom:189.771600pt;}
.y72{bottom:200.475467pt;}
.y56{bottom:203.142133pt;}
.y9a{bottom:203.520133pt;}
.y21{bottom:209.771600pt;}
.y71{bottom:219.808800pt;}
.y55{bottom:223.142133pt;}
.y99{bottom:223.520133pt;}
.y20{bottom:229.771600pt;}
.y70{bottom:239.142133pt;}
.y54{bottom:243.142133pt;}
.y98{bottom:243.520133pt;}
.y1f{bottom:249.771600pt;}
.y6f{bottom:259.142133pt;}
.y53{bottom:263.142133pt;}
.y97{bottom:263.520133pt;}
.y1e{bottom:269.771600pt;}
.y6e{bottom:279.142133pt;}
.y52{bottom:283.142133pt;}
.y96{bottom:283.520133pt;}
.y1d{bottom:289.771600pt;}
.y6d{bottom:299.142133pt;}
.y51{bottom:303.142133pt;}
.y95{bottom:303.520133pt;}
.y1c{bottom:309.771600pt;}
.y6c{bottom:318.475467pt;}
.y50{bottom:323.142133pt;}
.y94{bottom:323.520133pt;}
.y1b{bottom:329.771600pt;}
.y6b{bottom:337.830133pt;}
.y4f{bottom:343.142133pt;}
.y93{bottom:343.520133pt;}
.y1a{bottom:349.771600pt;}
.y6a{bottom:357.158133pt;}
.y4e{bottom:363.142133pt;}
.y92{bottom:363.520133pt;}
.y19{bottom:369.771600pt;}
.y69{bottom:376.486133pt;}
.y4d{bottom:383.142133pt;}
.y91{bottom:383.520133pt;}
.y18{bottom:389.771600pt;}
.y68{bottom:395.814133pt;}
.y4c{bottom:403.142133pt;}
.y90{bottom:403.520133pt;}
.y2f{bottom:405.457733pt;}
.y17{bottom:409.771600pt;}
.y67{bottom:415.142133pt;}
.y4b{bottom:423.142133pt;}
.y8f{bottom:423.520133pt;}
.y2e{bottom:425.457733pt;}
.y16{bottom:429.771600pt;}
.y66{bottom:434.475467pt;}
.y4a{bottom:443.142133pt;}
.y8e{bottom:443.520133pt;}
.y2d{bottom:445.457733pt;}
.y15{bottom:449.771600pt;}
.y65{bottom:453.808800pt;}
.y49{bottom:463.142133pt;}
.y8d{bottom:463.520133pt;}
.y64{bottom:473.142133pt;}
.y2c{bottom:481.457733pt;}
.y48{bottom:483.142133pt;}
.y8c{bottom:483.520133pt;}
.y14{bottom:487.104933pt;}
.y63{bottom:492.475467pt;}
.y47{bottom:503.142133pt;}
.y8b{bottom:503.520133pt;}
.y13{bottom:507.104933pt;}
.y62{bottom:511.808800pt;}
.y2b{bottom:521.457733pt;}
.y46{bottom:523.138133pt;}
.y8a{bottom:523.520133pt;}
.y12{bottom:527.104933pt;}
.y61{bottom:531.142133pt;}
.y45{bottom:543.142133pt;}
.y89{bottom:543.520133pt;}
.y11{bottom:547.104933pt;}
.y60{bottom:550.475467pt;}
.y2a{bottom:557.457733pt;}
.y44{bottom:563.142133pt;}
.y88{bottom:563.520133pt;}
.y10{bottom:567.104933pt;}
.y5f{bottom:569.808800pt;}
.y43{bottom:583.142133pt;}
.y87{bottom:583.520133pt;}
.yf{bottom:587.104933pt;}
.y29{bottom:589.457733pt;}
.y5e{bottom:589.808800pt;}
.y42{bottom:603.142133pt;}
.y86{bottom:603.520133pt;}
.ye{bottom:607.104933pt;}
.y28{bottom:621.457733pt;}
.y41{bottom:623.142133pt;}
.y85{bottom:623.520133pt;}
.yd{bottom:627.104933pt;}
.y40{bottom:643.142133pt;}
.y84{bottom:643.520133pt;}
.yc{bottom:647.104933pt;}
.y27{bottom:653.457733pt;}
.y3f{bottom:663.142133pt;}
.y83{bottom:663.520133pt;}
.yb{bottom:667.104933pt;}
.y3e{bottom:683.142133pt;}
.y82{bottom:683.520133pt;}
.ya{bottom:687.104933pt;}
.y3d{bottom:703.142133pt;}
.y81{bottom:703.520133pt;}
.y9{bottom:707.104933pt;}
.y3c{bottom:723.142133pt;}
.y80{bottom:723.520133pt;}
.y8{bottom:727.104933pt;}
.y3b{bottom:743.142133pt;}
.y7f{bottom:743.520133pt;}
.y3a{bottom:763.142133pt;}
.ya1{bottom:763.520133pt;}
.y7{bottom:764.430267pt;}
.y6{bottom:783.100933pt;}
.y39{bottom:783.142133pt;}
.y7e{bottom:783.520133pt;}
.y5{bottom:801.771600pt;}
.y38{bottom:803.138133pt;}
.y5d{bottom:803.142133pt;}
.y7d{bottom:803.520133pt;}
.y4{bottom:820.438267pt;}
.y37{bottom:823.142133pt;}
.y7c{bottom:823.520133pt;}
.y36{bottom:843.142133pt;}
.y7b{bottom:843.520133pt;}
.y3{bottom:861.771600pt;}
.y35{bottom:863.142133pt;}
.y7a{bottom:863.520133pt;}
.y34{bottom:883.142133pt;}
.y79{bottom:883.520133pt;}
.y33{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y32{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.hf{height:33.328125pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.he{height:44.816000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xe{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xd{left:65.385867pt;}
.x12{left:75.590533pt;}
.x8{left:199.278133pt;}
.x9{left:218.175733pt;}
.x3{left:299.710000pt;}
.x13{left:332.821467pt;}
.x14{left:355.498533pt;}
.x11{left:366.464133pt;}
.x15{left:374.396133pt;}
.x4{left:432.749200pt;}
.x6{left:447.391200pt;}
.xa{left:508.587600pt;}
.xb{left:514.445467pt;}
.x5{left:519.756533pt;}
.x10{left:545.952133pt;}
.x7{left:550.644533pt;}
.xf{left:562.556267pt;}
.x17{left:589.221867pt;}
.x16{left:624.006533pt;}
.xc{left:631.559067pt;}
}




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