
    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_8aa03b8e15000027c9cacd55.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_3f9029d7de85730a9ea7891b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_c4caf504c145a73f2e1a5d6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_bbc9d64111c5a18feae9e257.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_34ce786e2375ee99e7d97ce0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860352;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_861725fc9130c01ea9570cd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_71d8c6072fda22c3c0bd8fec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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_4cfdadbf0468373de9d8014e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_bcb1b0cbb70a37e490e6906b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_189d9875d723a88dcbf888cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.071000;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_f8f531be09cc69d98a0b5a37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_b9b448470258477fcfcb83fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_5eee89d38e7e6482aba0cf97.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.071000;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_f1363f39f83eae67909313a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_51d79b59e3d3081fbd8ceb39.woff2')format("woff");}.fff{font-family:fff;line-height:1.064000;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_abf961df11bb42f0fc067693.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a2916da710a7c1ab1a836ae6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_404c5fd8b35389fd0b11069d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4e7a39511fc0fd4546d55fcd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d90de82a0089ac6579a34fd0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9de4a0647a170d257e337cdf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f8f539250d421c88d079c410.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.m1{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);}
.v2{vertical-align:-48.960000px;}
.v4{vertical-align:-47.520000px;}
.v5{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:48.960000px;}
.v1{vertical-align:77.760000px;}
.ls32{letter-spacing:-16.200000px;}
.ls31{letter-spacing:-2.793600px;}
.ls3a{letter-spacing:-0.302400px;}
.ls2f{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.230400px;}
.ls35{letter-spacing:-0.172800px;}
.ls37{letter-spacing:-0.153600px;}
.ls36{letter-spacing:-0.124800px;}
.ls2c{letter-spacing:-0.120000px;}
.ls29{letter-spacing:-0.105600px;}
.ls3b{letter-spacing:-0.100800px;}
.ls39{letter-spacing:-0.075600px;}
.ls2d{letter-spacing:-0.043200px;}
.ls34{letter-spacing:-0.032400px;}
.ls28{letter-spacing:-0.024000px;}
.ls38{letter-spacing:-0.021600px;}
.ls27{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.021600px;}
.ls26{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.052800px;}
.ls6{letter-spacing:0.105600px;}
.ls7{letter-spacing:0.108013px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.158400px;}
.lsf{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.211200px;}
.ls2b{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.329983px;}
.ls2a{letter-spacing:0.403200px;}
.ls1a{letter-spacing:0.948000px;}
.ls1b{letter-spacing:0.978000px;}
.ls5{letter-spacing:1.506027px;}
.ls8{letter-spacing:1.513800px;}
.ls1f{letter-spacing:5.388000px;}
.ls1e{letter-spacing:7.782000px;}
.ls10{letter-spacing:9.078000px;}
.ls11{letter-spacing:9.108000px;}
.ls1d{letter-spacing:9.647058px;}
.ls33{letter-spacing:9.743529px;}
.ls1c{letter-spacing:11.838000px;}
.ls21{letter-spacing:21.228000px;}
.ls20{letter-spacing:21.234000px;}
.lsd{letter-spacing:28.098000px;}
.lsc{letter-spacing:30.288000px;}
.ls14{letter-spacing:31.818000px;}
.ls24{letter-spacing:33.012000px;}
.ls25{letter-spacing:33.018000px;}
.ls23{letter-spacing:33.024000px;}
.ls3{letter-spacing:35.039953px;}
.ls22{letter-spacing:41.238000px;}
.lse{letter-spacing:43.338000px;}
.ls19{letter-spacing:45.048000px;}
.ls12{letter-spacing:60.618000px;}
.ls15{letter-spacing:63.918000px;}
.lsb{letter-spacing:70.218000px;}
.ls17{letter-spacing:95.898000px;}
.ls16{letter-spacing:95.928000px;}
.ls18{letter-spacing:125.958000px;}
.ls13{letter-spacing:193.338000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-492.096441px;}
.ws14{word-spacing:-491.999970px;}
.ws7{word-spacing:-240.240048px;}
.ws12{word-spacing:-240.000048px;}
.ws8{word-spacing:-239.880048px;}
.ws10{word-spacing:-216.000000px;}
.ws5{word-spacing:-160.531200px;}
.ws16{word-spacing:-143.827200px;}
.ws2{word-spacing:-73.603187px;}
.ws1{word-spacing:-73.497587px;}
.ws0{word-spacing:-73.391987px;}
.ws6{word-spacing:-60.091200px;}
.wsa{word-spacing:-40.320000px;}
.wse{word-spacing:-40.219200px;}
.wsf{word-spacing:-40.176000px;}
.wsb{word-spacing:-40.075200px;}
.ws18{word-spacing:-40.032000px;}
.ws9{word-spacing:-39.988800px;}
.wsd{word-spacing:-39.801600px;}
.wsc{word-spacing:-39.744000px;}
.ws11{word-spacing:-37.238400px;}
.ws1a{word-spacing:-30.002400px;}
.ws13{word-spacing:-23.832000px;}
.ws3{word-spacing:-1.687800px;}
.ws4{word-spacing:-0.114000px;}
.ws1b{word-spacing:0.000000px;}
.ws17{word-spacing:0.028800px;}
.ws19{word-spacing:0.057600px;}
._10{margin-left:-43.260000px;}
._8{margin-left:-22.118400px;}
._4{margin-left:-19.523813px;}
._a{margin-left:-16.962196px;}
._2{margin-left:-14.414397px;}
._7{margin-left:-12.019550px;}
._1e{margin-left:-10.677077px;}
._6{margin-left:-9.410698px;}
._28{margin-left:-8.384739px;}
._12{margin-left:-7.058739px;}
._5{margin-left:-4.787016px;}
._1{margin-left:-3.767826px;}
._9{margin-left:-2.035200px;}
._3{margin-left:-1.003200px;}
._0{width:1.016739px;}
._15{width:2.775939px;}
._24{width:5.556000px;}
._c{width:8.292000px;}
._20{width:11.727261px;}
._1c{width:17.114062px;}
._26{width:20.949600px;}
._25{width:22.152000px;}
._e{width:28.897200px;}
._d{width:30.519784px;}
._16{width:32.658000px;}
._27{width:41.747661px;}
._f{width:43.347261px;}
._1f{width:44.745600px;}
._1d{width:45.918000px;}
._13{width:61.506000px;}
._17{width:64.680862px;}
._b{width:69.654000px;}
._11{width:82.038000px;}
._22{width:90.810000px;}
._21{width:92.322000px;}
._23{width:93.537261px;}
._18{width:95.611200px;}
._19{width:96.876000px;}
._1a{width:125.107200px;}
._1b{width:126.441261px;}
._14{width:194.235261px;}
.fc2{color:transparent;}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.999995px;}
.fsc{font-size:95.999990px;}
.fsb{font-size:108.000000px;}
.fs4{font-size:113.999990px;}
.fs9{font-size:144.000000px;}
.fs5{font-size:168.000048px;}
.fs2{font-size:173.999952px;}
.fs8{font-size:216.000000px;}
.fs1{font-size:240.000048px;}
.fs0{font-size:263.999952px;}
.fs7{font-size:407.999952px;}
.fsa{font-size:482.352912px;}
.fs6{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:45.240000px;}
.y5a{bottom:45.960000px;}
.y13{bottom:70.440000px;}
.y5c{bottom:88.440000px;}
.y59{bottom:89.520000px;}
.y19{bottom:106.080000px;}
.y5b{bottom:132.000000px;}
.y58{bottom:133.080000px;}
.y12{bottom:142.440000px;}
.y57{bottom:178.080000px;}
.y48{bottom:445.200150px;}
.y2d{bottom:484.080000px;}
.y2c{bottom:561.840000px;}
.y2b{bottom:641.400000px;}
.y2a{bottom:720.960000px;}
.y29{bottom:800.520000px;}
.y44{bottom:871.080000px;}
.y28{bottom:880.080000px;}
.y43{bottom:914.640000px;}
.y42{bottom:956.400000px;}
.y41{bottom:999.960000px;}
.y56{bottom:1028.040000px;}
.y27{bottom:1037.400000px;}
.y40{bottom:1043.520000px;}
.y3f{bottom:1087.080000px;}
.y26{bottom:1116.960000px;}
.y3e{bottom:1130.640000px;}
.y25{bottom:1196.520000px;}
.y3d{bottom:1210.200000px;}
.y24{bottom:1276.080000px;}
.y23{bottom:1353.840000px;}
.y22{bottom:1512.960000px;}
.y49{bottom:1522.320000px;}
.y21{bottom:1592.520000px;}
.y20{bottom:1672.080000px;}
.y3c{bottom:1724.640000px;}
.y1f{bottom:1749.840000px;}
.y3b{bottom:1766.400000px;}
.y3a{bottom:1809.960000px;}
.y1e{bottom:1829.400000px;}
.y39{bottom:1853.520000px;}
.y38{bottom:1897.080000px;}
.y37{bottom:1940.640000px;}
.y55{bottom:1955.760000px;}
.y36{bottom:1982.400000px;}
.y35{bottom:2061.960000px;}
.y1b{bottom:2180.040000px;}
.y11{bottom:2535.000000px;}
.y54{bottom:2598.720000px;}
.y10{bottom:2614.560000px;}
.y53{bottom:2685.480000px;}
.yf{bottom:2692.680000px;}
.y52{bottom:2727.240000px;}
.y51{bottom:2770.800000px;}
.ye{bottom:2772.240000px;}
.y50{bottom:2814.360000px;}
.y4f{bottom:2857.920000px;}
.y4e{bottom:2901.480000px;}
.yd{bottom:2931.000000px;}
.y4d{bottom:2943.240000px;}
.y4c{bottom:2986.800000px;}
.yc{bottom:3010.560000px;}
.y4b{bottom:3066.360000px;}
.yb{bottom:3088.680000px;}
.y1d{bottom:3124.320000px;}
.y4a{bottom:3130.800000px;}
.ya{bottom:3168.240000px;}
.y9{bottom:3247.440000px;}
.y8{bottom:3327.000000px;}
.y7{bottom:3406.560000px;}
.y47{bottom:3506.280000px;}
.y6{bottom:3564.240150px;}
.y5{bottom:3643.440150px;}
.y34{bottom:3674.760150px;}
.y33{bottom:3716.880150px;}
.y4{bottom:3723.000150px;}
.y32{bottom:3760.440150px;}
.y3{bottom:3802.560150px;}
.y31{bottom:3804.000150px;}
.y30{bottom:3847.200150px;}
.y2{bottom:3880.680150px;}
.y2f{bottom:3890.760150px;}
.y1{bottom:3960.240150px;}
.y2e{bottom:3970.320150px;}
.y1c{bottom:4041.240150px;}
.y46{bottom:4132.172550px;}
.y1a{bottom:4239.600150px;}
.y45{bottom:4279.052550px;}
.y16{bottom:4493.760150px;}
.y15{bottom:4525.080150px;}
.y14{bottom:4552.080150px;}
.y18{bottom:4692.840150px;}
.y17{bottom:4867.080150px;}
.h4{height:31.992184px;}
.hd{height:78.626953px;}
.h5{height:81.937493px;}
.he{height:104.835938px;}
.ha{height:104.906250px;}
.hf{height:122.308629px;}
.h8{height:157.253906px;}
.h2{height:174.960972px;}
.hb{height:185.760000px;}
.h1{height:192.199184px;}
.h3{height:202.822466px;}
.h9{height:206.400041px;}
.h7{height:350.879959px;}
.hc{height:414.823504px;}
.h6{height:419.343750px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.xa{left:81.725910px;}
.xb{left:131.400765px;}
.xc{left:160.111800px;}
.xd{left:179.600700px;}
.x2{left:333.925500px;}
.x3{left:413.988150px;}
.x4{left:529.267650px;}
.x7{left:729.211800px;}
.x8{left:817.209300px;}
.x6{left:1110.075150px;}
.x1{left:1361.190600px;}
.x19{left:1505.734500px;}
.x1a{left:1801.507500px;}
.x5{left:1827.172500px;}
.x9{left:2332.809000px;}
.x11{left:2846.922000px;}
.x17{left:2858.239500px;}
.xf{left:2859.573000px;}
.x15{left:2866.579500px;}
.x10{left:2999.734500px;}
.xe{left:3014.725500px;}
.x16{left:3158.164500px;}
.x13{left:3488.122500px;}
.x14{left:3503.499000px;}
.x18{left:3506.254500px;}
.x12{left:3520.378500px;}
@media print{
.v2{vertical-align:-43.520000pt;}
.v4{vertical-align:-42.240000pt;}
.v5{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:43.520000pt;}
.v1{vertical-align:69.120000pt;}
.ls32{letter-spacing:-14.400000pt;}
.ls31{letter-spacing:-2.483200pt;}
.ls3a{letter-spacing:-0.268800pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.204800pt;}
.ls35{letter-spacing:-0.153600pt;}
.ls37{letter-spacing:-0.136533pt;}
.ls36{letter-spacing:-0.110933pt;}
.ls2c{letter-spacing:-0.106667pt;}
.ls29{letter-spacing:-0.093867pt;}
.ls3b{letter-spacing:-0.089600pt;}
.ls39{letter-spacing:-0.067200pt;}
.ls2d{letter-spacing:-0.038400pt;}
.ls34{letter-spacing:-0.028800pt;}
.ls28{letter-spacing:-0.021333pt;}
.ls38{letter-spacing:-0.019200pt;}
.ls27{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.019200pt;}
.ls26{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.046933pt;}
.ls6{letter-spacing:0.093867pt;}
.ls7{letter-spacing:0.096012pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.140800pt;}
.lsf{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.187733pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.293318pt;}
.ls2a{letter-spacing:0.358400pt;}
.ls1a{letter-spacing:0.842667pt;}
.ls1b{letter-spacing:0.869333pt;}
.ls5{letter-spacing:1.338690pt;}
.ls8{letter-spacing:1.345600pt;}
.ls1f{letter-spacing:4.789333pt;}
.ls1e{letter-spacing:6.917333pt;}
.ls10{letter-spacing:8.069333pt;}
.ls11{letter-spacing:8.096000pt;}
.ls1d{letter-spacing:8.575163pt;}
.ls33{letter-spacing:8.660915pt;}
.ls1c{letter-spacing:10.522667pt;}
.ls21{letter-spacing:18.869333pt;}
.ls20{letter-spacing:18.874667pt;}
.lsd{letter-spacing:24.976000pt;}
.lsc{letter-spacing:26.922667pt;}
.ls14{letter-spacing:28.282667pt;}
.ls24{letter-spacing:29.344000pt;}
.ls25{letter-spacing:29.349333pt;}
.ls23{letter-spacing:29.354667pt;}
.ls3{letter-spacing:31.146625pt;}
.ls22{letter-spacing:36.656000pt;}
.lse{letter-spacing:38.522667pt;}
.ls19{letter-spacing:40.042667pt;}
.ls12{letter-spacing:53.882667pt;}
.ls15{letter-spacing:56.816000pt;}
.lsb{letter-spacing:62.416000pt;}
.ls17{letter-spacing:85.242667pt;}
.ls16{letter-spacing:85.269333pt;}
.ls18{letter-spacing:111.962667pt;}
.ls13{letter-spacing:171.856000pt;}
.ws15{word-spacing:-437.419059pt;}
.ws14{word-spacing:-437.333307pt;}
.ws7{word-spacing:-213.546709pt;}
.ws12{word-spacing:-213.333376pt;}
.ws8{word-spacing:-213.226709pt;}
.ws10{word-spacing:-192.000000pt;}
.ws5{word-spacing:-142.694400pt;}
.ws16{word-spacing:-127.846400pt;}
.ws2{word-spacing:-65.425055pt;}
.ws1{word-spacing:-65.331188pt;}
.ws0{word-spacing:-65.237321pt;}
.ws6{word-spacing:-53.414400pt;}
.wsa{word-spacing:-35.840000pt;}
.wse{word-spacing:-35.750400pt;}
.wsf{word-spacing:-35.712000pt;}
.wsb{word-spacing:-35.622400pt;}
.ws18{word-spacing:-35.584000pt;}
.ws9{word-spacing:-35.545600pt;}
.wsd{word-spacing:-35.379200pt;}
.wsc{word-spacing:-35.328000pt;}
.ws11{word-spacing:-33.100800pt;}
.ws1a{word-spacing:-26.668800pt;}
.ws13{word-spacing:-21.184000pt;}
.ws3{word-spacing:-1.500266pt;}
.ws4{word-spacing:-0.101333pt;}
.ws1b{word-spacing:0.000000pt;}
.ws17{word-spacing:0.025600pt;}
.ws19{word-spacing:0.051200pt;}
._10{margin-left:-38.453333pt;}
._8{margin-left:-19.660800pt;}
._4{margin-left:-17.354500pt;}
._a{margin-left:-15.077507pt;}
._2{margin-left:-12.812798pt;}
._7{margin-left:-10.684044pt;}
._1e{margin-left:-9.490735pt;}
._6{margin-left:-8.365065pt;}
._28{margin-left:-7.453101pt;}
._12{margin-left:-6.274434pt;}
._5{margin-left:-4.255126pt;}
._1{margin-left:-3.349179pt;}
._9{margin-left:-1.809067pt;}
._3{margin-left:-0.891733pt;}
._0{width:0.903768pt;}
._15{width:2.467501pt;}
._24{width:4.938667pt;}
._c{width:7.370667pt;}
._20{width:10.424232pt;}
._1c{width:15.212499pt;}
._26{width:18.621867pt;}
._25{width:19.690667pt;}
._e{width:25.686400pt;}
._d{width:27.128697pt;}
._16{width:29.029333pt;}
._27{width:37.109032pt;}
._f{width:38.530899pt;}
._1f{width:39.773867pt;}
._1d{width:40.816000pt;}
._13{width:54.672000pt;}
._17{width:57.494099pt;}
._b{width:61.914667pt;}
._11{width:72.922667pt;}
._22{width:80.720000pt;}
._21{width:82.064000pt;}
._23{width:83.144232pt;}
._18{width:84.987733pt;}
._19{width:86.112000pt;}
._1a{width:111.206400pt;}
._1b{width:112.392232pt;}
._14{width:172.653566pt;}
.fs3{font-size:42.666662pt;}
.fsc{font-size:85.333325pt;}
.fsb{font-size:96.000000pt;}
.fs4{font-size:101.333325pt;}
.fs9{font-size:128.000000pt;}
.fs5{font-size:149.333376pt;}
.fs2{font-size:154.666624pt;}
.fs8{font-size:192.000000pt;}
.fs1{font-size:213.333376pt;}
.fs0{font-size:234.666624pt;}
.fs7{font-size:362.666624pt;}
.fsa{font-size:428.758144pt;}
.fs6{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:40.213333pt;}
.y5a{bottom:40.853333pt;}
.y13{bottom:62.613333pt;}
.y5c{bottom:78.613333pt;}
.y59{bottom:79.573333pt;}
.y19{bottom:94.293333pt;}
.y5b{bottom:117.333333pt;}
.y58{bottom:118.293333pt;}
.y12{bottom:126.613333pt;}
.y57{bottom:158.293333pt;}
.y48{bottom:395.733467pt;}
.y2d{bottom:430.293333pt;}
.y2c{bottom:499.413333pt;}
.y2b{bottom:570.133333pt;}
.y2a{bottom:640.853333pt;}
.y29{bottom:711.573333pt;}
.y44{bottom:774.293333pt;}
.y28{bottom:782.293333pt;}
.y43{bottom:813.013333pt;}
.y42{bottom:850.133333pt;}
.y41{bottom:888.853333pt;}
.y56{bottom:913.813333pt;}
.y27{bottom:922.133333pt;}
.y40{bottom:927.573333pt;}
.y3f{bottom:966.293333pt;}
.y26{bottom:992.853333pt;}
.y3e{bottom:1005.013333pt;}
.y25{bottom:1063.573333pt;}
.y3d{bottom:1075.733333pt;}
.y24{bottom:1134.293333pt;}
.y23{bottom:1203.413333pt;}
.y22{bottom:1344.853333pt;}
.y49{bottom:1353.173333pt;}
.y21{bottom:1415.573333pt;}
.y20{bottom:1486.293333pt;}
.y3c{bottom:1533.013333pt;}
.y1f{bottom:1555.413333pt;}
.y3b{bottom:1570.133333pt;}
.y3a{bottom:1608.853333pt;}
.y1e{bottom:1626.133333pt;}
.y39{bottom:1647.573333pt;}
.y38{bottom:1686.293333pt;}
.y37{bottom:1725.013333pt;}
.y55{bottom:1738.453333pt;}
.y36{bottom:1762.133333pt;}
.y35{bottom:1832.853333pt;}
.y1b{bottom:1937.813333pt;}
.y11{bottom:2253.333333pt;}
.y54{bottom:2309.973333pt;}
.y10{bottom:2324.053333pt;}
.y53{bottom:2387.093333pt;}
.yf{bottom:2393.493333pt;}
.y52{bottom:2424.213333pt;}
.y51{bottom:2462.933333pt;}
.ye{bottom:2464.213333pt;}
.y50{bottom:2501.653333pt;}
.y4f{bottom:2540.373333pt;}
.y4e{bottom:2579.093333pt;}
.yd{bottom:2605.333333pt;}
.y4d{bottom:2616.213333pt;}
.y4c{bottom:2654.933333pt;}
.yc{bottom:2676.053333pt;}
.y4b{bottom:2725.653333pt;}
.yb{bottom:2745.493333pt;}
.y1d{bottom:2777.173333pt;}
.y4a{bottom:2782.933333pt;}
.ya{bottom:2816.213333pt;}
.y9{bottom:2886.613333pt;}
.y8{bottom:2957.333333pt;}
.y7{bottom:3028.053333pt;}
.y47{bottom:3116.693333pt;}
.y6{bottom:3168.213467pt;}
.y5{bottom:3238.613467pt;}
.y34{bottom:3266.453467pt;}
.y33{bottom:3303.893467pt;}
.y4{bottom:3309.333467pt;}
.y32{bottom:3342.613467pt;}
.y3{bottom:3380.053467pt;}
.y31{bottom:3381.333467pt;}
.y30{bottom:3419.733467pt;}
.y2{bottom:3449.493467pt;}
.y2f{bottom:3458.453467pt;}
.y1{bottom:3520.213467pt;}
.y2e{bottom:3529.173467pt;}
.y1c{bottom:3592.213467pt;}
.y46{bottom:3673.042267pt;}
.y1a{bottom:3768.533467pt;}
.y45{bottom:3803.602267pt;}
.y16{bottom:3994.453467pt;}
.y15{bottom:4022.293467pt;}
.y14{bottom:4046.293467pt;}
.y18{bottom:4171.413467pt;}
.y17{bottom:4326.293467pt;}
.h4{height:28.437497pt;}
.hd{height:69.890625pt;}
.h5{height:72.833327pt;}
.he{height:93.187500pt;}
.ha{height:93.250000pt;}
.hf{height:108.718781pt;}
.h8{height:139.781250pt;}
.h2{height:155.520864pt;}
.hb{height:165.120000pt;}
.h1{height:170.843719pt;}
.h3{height:180.286636pt;}
.h9{height:183.466703pt;}
.h7{height:311.893297pt;}
.hc{height:368.732004pt;}
.h6{height:372.750000pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xa{left:72.645253pt;}
.xb{left:116.800680pt;}
.xc{left:142.321600pt;}
.xd{left:159.645067pt;}
.x2{left:296.822667pt;}
.x3{left:367.989467pt;}
.x4{left:470.460133pt;}
.x7{left:648.188267pt;}
.x8{left:726.408267pt;}
.x6{left:986.733467pt;}
.x1{left:1209.947200pt;}
.x19{left:1338.430667pt;}
.x1a{left:1601.340000pt;}
.x5{left:1624.153333pt;}
.x9{left:2073.608000pt;}
.x11{left:2530.597333pt;}
.x17{left:2540.657333pt;}
.xf{left:2541.842667pt;}
.x15{left:2548.070667pt;}
.x10{left:2666.430667pt;}
.xe{left:2679.756000pt;}
.x16{left:2807.257333pt;}
.x13{left:3100.553333pt;}
.x14{left:3114.221333pt;}
.x18{left:3116.670667pt;}
.x12{left:3129.225333pt;}
}




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