
    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_27383c38428d76cbdce25dc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_0c5fcd8324ed23aecad1a372.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.694336;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_8a8a5ab235fc979705f00636.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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_a314aad768e7ed87f6fd9965.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_f88aa3dc47e8fc1e0d412399.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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_f309c9d002634cdce5604de5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_1675a9e9d9c9d53199a2fcb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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_95af37f8994f663c05b0d623.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_96afa34a1289cc3c21a8b01f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_9cabd0370b0799d71b1de51c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_510b2d0daa04253dcfbef434.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.873535;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_c199c4424e7ab8db1664816e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937988;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_44fbf49db37c46bb5edddb48.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.873535;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_18a7741ab7416ce4255395cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.873535;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;}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-1.404000px;}
.ls1f{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.489000px;}
.lse{letter-spacing:-0.473400px;}
.lsa{letter-spacing:-0.396000px;}
.ls1c{letter-spacing:-0.357000px;}
.lsb{letter-spacing:-0.324000px;}
.ls3{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.154200px;}
.ls11{letter-spacing:-0.090000px;}
.ls25{letter-spacing:-0.073200px;}
.ls1e{letter-spacing:-0.059040px;}
.ls9{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.006480px;}
.lsd{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.153600px;}
.lsf{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.185760px;}
.ls18{letter-spacing:0.189360px;}
.ls16{letter-spacing:0.231000px;}
.ls6{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.396000px;}
.ls26{letter-spacing:0.906000px;}
.ls14{letter-spacing:2.345760px;}
.ls1b{letter-spacing:8.825760px;}
.ls17{letter-spacing:27.545760px;}
.ls1a{letter-spacing:31.145760px;}
.ls19{letter-spacing:31.865760px;}
.ls10{letter-spacing:53.820000px;}
.ls1{letter-spacing:75.600000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(209,209,209),0 0.015em rgb(209,209,209),0.015em 0 rgb(209,209,209),0 -0.015em  rgb(209,209,209);}
.sc2{text-shadow:-0.015em 0 rgb(99,37,35),0 0.015em rgb(99,37,35),0.015em 0 rgb(99,37,35),0 -0.015em  rgb(99,37,35);}
.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(209,209,209);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(99,37,35);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-39.060000px;}
.ws5{word-spacing:-36.144000px;}
.ws4{word-spacing:-36.000000px;}
.ws2{word-spacing:-35.712000px;}
.ws3{word-spacing:-35.424000px;}
.ws6{word-spacing:-29.777760px;}
.ws14{word-spacing:-27.438240px;}
.ws19{word-spacing:-27.405240px;}
.ws1d{word-spacing:-27.360384px;}
.ws17{word-spacing:-27.180720px;}
.ws18{word-spacing:-27.174240px;}
.ws1c{word-spacing:-27.173520px;}
.ws1e{word-spacing:-27.133584px;}
.ws15{word-spacing:-27.115200px;}
.ws13{word-spacing:-26.817240px;}
.ws1b{word-spacing:-26.685240px;}
.ws16{word-spacing:-26.418240px;}
.ws1a{word-spacing:-25.770240px;}
.ws8{word-spacing:-24.804000px;}
.ws7{word-spacing:-24.732000px;}
.wsc{word-spacing:-24.480000px;}
.wsd{word-spacing:-24.444000px;}
.ws9{word-spacing:-24.372000px;}
.wsb{word-spacing:-24.084000px;}
.wsa{word-spacing:-24.012000px;}
.wse{word-spacing:-23.967144px;}
.ws11{word-spacing:-20.520000px;}
.ws10{word-spacing:-20.430000px;}
.wsf{word-spacing:-20.250000px;}
.ws12{word-spacing:-20.070000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-11.340000px;}
._17{margin-left:-9.859680px;}
._4{margin-left:-7.776000px;}
._9{margin-left:-6.480000px;}
._3{margin-left:-5.400000px;}
._2{margin-left:-3.672000px;}
._5{margin-left:-2.499840px;}
._0{margin-left:-1.296000px;}
._1{width:1.296000px;}
._7{width:3.024000px;}
._1b{width:6.400512px;}
._1d{width:8.680320px;}
._10{width:10.275840px;}
._f{width:11.295840px;}
._a{width:16.128000px;}
._b{width:17.136000px;}
._1c{width:18.269040px;}
._1e{width:25.266240px;}
._12{width:28.003680px;}
._11{width:29.232000px;}
._19{width:31.191120px;}
._d{width:33.003840px;}
._e{width:34.131840px;}
._13{width:44.340768px;}
._14{width:46.196496px;}
._16{width:54.114000px;}
._18{width:62.750880px;}
._c{width:74.401152px;}
._8{width:75.744000px;}
._15{width:77.490000px;}
._1a{width:108.230400px;}
.fc6{color:rgb(171,38,60);}
.fc5{color:rgb(149,55,53);}
.fc8{color:transparent;}
.fc4{color:rgb(99,37,35);}
.fc9{color:rgb(31,73,125);}
.fc7{color:rgb(199,115,101);}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(209,209,209);}
.fs1{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fs11{font-size:90.000000px;}
.fs12{font-size:90.144000px;}
.fs9{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fsc{font-size:113.760000px;}
.fsb{font-size:120.240000px;}
.fs15{font-size:120.384000px;}
.fsa{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:149.760000px;}
.fs2{font-size:156.240000px;}
.fs3{font-size:156.384000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs0{font-size:216.000000px;}
.fs10{font-size:252.000000px;}
.fs13{font-size:264.240000px;}
.fs14{font-size:264.384000px;}
.fs6{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.216000px;}
.y3{bottom:30.816000px;}
.y50{bottom:49.680000px;}
.y2{bottom:52.416000px;}
.y3a{bottom:78.408000px;}
.y4f{bottom:83.880000px;}
.y1{bottom:110.700000px;}
.y39{bottom:110.808000px;}
.y4e{bottom:118.080000px;}
.y86{bottom:121.068000px;}
.y49{bottom:155.700000px;}
.y85{bottom:157.110000px;}
.y57{bottom:162.105000px;}
.y56{bottom:189.105000px;}
.y84{bottom:193.110000px;}
.y4a{bottom:197.535000px;}
.y55{bottom:217.695000px;}
.y83{bottom:229.110000px;}
.y48{bottom:230.370000px;}
.y4d{bottom:261.900000px;}
.y38{bottom:282.855000px;}
.y6{bottom:291.090000px;}
.y4c{bottom:293.400000px;}
.y82{bottom:311.070000px;}
.y37{bottom:315.255000px;}
.y25{bottom:315.645000px;}
.y3e{bottom:319.785000px;}
.y4b{bottom:324.930000px;}
.y5{bottom:337.935000px;}
.y54{bottom:343.335000px;}
.y81{bottom:347.070000px;}
.y36{bottom:347.655000px;}
.y47{bottom:358.665000px;}
.y53{bottom:370.335000px;}
.y80{bottom:383.070000px;}
.y58{bottom:409.110000px;}
.y30{bottom:445.890000px;}
.y6e{bottom:451.410000px;}
.y7f{bottom:464.190000px;}
.y7{bottom:466.050000px;}
.y6d{bottom:473.910000px;}
.y35{bottom:478.410000px;}
.y2f{bottom:480.090000px;}
.y46{bottom:485.280000px;}
.y6c{bottom:496.410000px;}
.y7e{bottom:500.190000px;}
.y34{bottom:510.810000px;}
.y2e{bottom:514.290000px;}
.y45{bottom:520.920000px;}
.y6f{bottom:528.195000px;}
.y7d{bottom:536.190000px;}
.y2d{bottom:548.490000px;}
.y44{bottom:553.320000px;}
.y9{bottom:571.785000px;}
.y2c{bottom:582.690000px;}
.y3d{bottom:588.780000px;}
.y5f{bottom:591.990000px;}
.y1c{bottom:592.410000px;}
.y11{bottom:593.025000px;}
.y6b{bottom:607.680000px;}
.y2b{bottom:616.935000px;}
.y8{bottom:618.630000px;}
.y6a{bottom:630.180000px;}
.y26{bottom:632.520000px;}
.y1b{bottom:635.610000px;}
.y10{bottom:639.870000px;}
.y69{bottom:652.680000px;}
.y2a{bottom:657.900000px;}
.y43{bottom:673.815000px;}
.y5d{bottom:676.545000px;}
.y1a{bottom:678.810000px;}
.yf{bottom:686.670000px;}
.y68{bottom:697.710000px;}
.y42{bottom:706.215000px;}
.y19{bottom:722.010000px;}
.y67{bottom:728.070000px;}
.ya{bottom:747.465000px;}
.y3c{bottom:749.340000px;}
.y5e{bottom:753.585000px;}
.y5c{bottom:757.515000px;}
.y74{bottom:763.230000px;}
.y66{bottom:771.765000px;}
.y5b{bottom:784.515000px;}
.y1e{bottom:787.170000px;}
.y65{bottom:794.265000px;}
.y73{bottom:799.230000px;}
.y1d{bottom:808.380000px;}
.y12{bottom:814.170000px;}
.y64{bottom:816.810000px;}
.y41{bottom:844.275000px;}
.y63{bottom:847.155000px;}
.y7a{bottom:854.565000px;}
.y32{bottom:860.970000px;}
.yd{bottom:873.330000px;}
.y5a{bottom:876.600000px;}
.y40{bottom:876.675000px;}
.y62{bottom:887.865000px;}
.y79{bottom:890.565000px;}
.y31{bottom:893.370000px;}
.y59{bottom:903.600000px;}
.y3f{bottom:909.075000px;}
.y61{bottom:910.365000px;}
.yc{bottom:920.130000px;}
.y78{bottom:926.565000px;}
.y60{bottom:938.085000px;}
.y33{bottom:938.595000px;}
.y3b{bottom:944.970000px;}
.y52{bottom:949.245000px;}
.y20{bottom:965.520000px;}
.yb{bottom:966.930000px;}
.y77{bottom:982.155000px;}
.y76{bottom:1018.155000px;}
.y28{bottom:1032.945000px;}
.y51{bottom:1037.850000px;}
.y29{bottom:1044.255000px;}
.y75{bottom:1054.155000px;}
.y24{bottom:1088.355000px;}
.y15{bottom:1094.910000px;}
.ye{bottom:1096.380000px;}
.y7c{bottom:1118.520000px;}
.y23{bottom:1127.985000px;}
.y14{bottom:1141.710000px;}
.y27{bottom:1152.615000px;}
.y7b{bottom:1154.520000px;}
.y22{bottom:1167.585000px;}
.y13{bottom:1188.510000px;}
.y21{bottom:1207.185000px;}
.y1f{bottom:1243.590000px;}
.y16{bottom:1316.010000px;}
.y71{bottom:1364.250000px;}
.y17{bottom:1410.945000px;}
.y72{bottom:1411.845000px;}
.y18{bottom:1422.255000px;}
.y70{bottom:1443.495000px;}
.h2{height:52.417969px;}
.h18{height:62.578125px;}
.h19{height:62.678250px;}
.h12{height:64.968750px;}
.h16{height:65.098687px;}
.he{height:65.647969px;}
.hb{height:69.715898px;}
.h14{height:78.416016px;}
.h15{height:78.520570px;}
.h13{height:82.598203px;}
.h1c{height:83.604375px;}
.h1d{height:83.704500px;}
.hd{height:87.538008px;}
.hc{height:90.327656px;}
.ha{height:102.667500px;}
.h9{height:104.835938px;}
.h3{height:113.746992px;}
.h4{height:113.851828px;}
.h5{height:114.597773px;}
.h6{height:114.696141px;}
.h8{height:122.133867px;}
.h11{height:151.377187px;}
.h1{height:157.253906px;}
.h1a{height:192.373945px;}
.h1b{height:192.478781px;}
.h17{height:227.390625px;}
.h7{height:235.880859px;}
.h10{height:292.359375px;}
.hf{height:1134.000000px;}
.h0{height:1512.000000px;}
.w0{width:1134.000000px;}
.w1{width:1512.000000px;}
.x0{left:0.000000px;}
.x25{left:26.892000px;}
.x27{left:33.624000px;}
.x24{left:35.388000px;}
.x33{left:39.096000px;}
.x17{left:52.704000px;}
.x36{left:61.200000px;}
.x22{left:91.980000px;}
.x1c{left:93.024000px;}
.x11{left:104.184000px;}
.x19{left:111.456000px;}
.x18{left:112.824000px;}
.x10{left:114.264000px;}
.xf{left:124.524000px;}
.x14{left:132.516000px;}
.x1a{left:135.540000px;}
.x2f{left:139.500000px;}
.x13{left:140.796000px;}
.x1{left:164.445000px;}
.x2e{left:171.465000px;}
.x16{left:173.985000px;}
.x23{left:194.865000px;}
.x34{left:203.610000px;}
.x12{left:221.610000px;}
.x15{left:258.270000px;}
.x1d{left:259.845000px;}
.x3b{left:271.650000px;}
.x35{left:275.970000px;}
.x3a{left:305.460000px;}
.x6{left:330.765000px;}
.x3{left:336.060000px;}
.x37{left:350.925000px;}
.x39{left:357.690000px;}
.x5{left:370.545000px;}
.x28{left:425.130000px;}
.x29{left:440.250000px;}
.x7{left:458.565000px;}
.x2{left:480.600000px;}
.x4{left:495.000000px;}
.x38{left:506.190000px;}
.xd{left:525.930000px;}
.x30{left:551.370000px;}
.xc{left:568.050000px;}
.xb{left:575.610000px;}
.x26{left:596.775000px;}
.x32{left:630.795000px;}
.x20{left:644.760000px;}
.x1f{left:647.460000px;}
.x31{left:651.135000px;}
.x1e{left:680.040000px;}
.xe{left:706.290000px;}
.x8{left:750.570000px;}
.x1b{left:767.850000px;}
.x9{left:791.430000px;}
.x21{left:797.790000px;}
.xa{left:924.300000px;}
.x2d{left:1122.450000px;}
.x2a{left:1124.130000px;}
.x2b{left:1125.360000px;}
.x2c{left:1126.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-1.248000pt;}
.ls1f{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.434667pt;}
.lse{letter-spacing:-0.420800pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls1c{letter-spacing:-0.317333pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.137067pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls25{letter-spacing:-0.065067pt;}
.ls1e{letter-spacing:-0.052480pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.005760pt;}
.lsd{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.136533pt;}
.lsf{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165120pt;}
.ls18{letter-spacing:0.168320pt;}
.ls16{letter-spacing:0.205333pt;}
.ls6{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls26{letter-spacing:0.805333pt;}
.ls14{letter-spacing:2.085120pt;}
.ls1b{letter-spacing:7.845120pt;}
.ls17{letter-spacing:24.485120pt;}
.ls1a{letter-spacing:27.685120pt;}
.ls19{letter-spacing:28.325120pt;}
.ls10{letter-spacing:47.840000pt;}
.ls1{letter-spacing:67.200000pt;}
.ws0{word-spacing:-34.720000pt;}
.ws5{word-spacing:-32.128000pt;}
.ws4{word-spacing:-32.000000pt;}
.ws2{word-spacing:-31.744000pt;}
.ws3{word-spacing:-31.488000pt;}
.ws6{word-spacing:-26.469120pt;}
.ws14{word-spacing:-24.389547pt;}
.ws19{word-spacing:-24.360213pt;}
.ws1d{word-spacing:-24.320341pt;}
.ws17{word-spacing:-24.160640pt;}
.ws18{word-spacing:-24.154880pt;}
.ws1c{word-spacing:-24.154240pt;}
.ws1e{word-spacing:-24.118741pt;}
.ws15{word-spacing:-24.102400pt;}
.ws13{word-spacing:-23.837547pt;}
.ws1b{word-spacing:-23.720213pt;}
.ws16{word-spacing:-23.482880pt;}
.ws1a{word-spacing:-22.906880pt;}
.ws8{word-spacing:-22.048000pt;}
.ws7{word-spacing:-21.984000pt;}
.wsc{word-spacing:-21.760000pt;}
.wsd{word-spacing:-21.728000pt;}
.ws9{word-spacing:-21.664000pt;}
.wsb{word-spacing:-21.408000pt;}
.wsa{word-spacing:-21.344000pt;}
.wse{word-spacing:-21.304128pt;}
.ws11{word-spacing:-18.240000pt;}
.ws10{word-spacing:-18.160000pt;}
.wsf{word-spacing:-18.000000pt;}
.ws12{word-spacing:-17.840000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-10.080000pt;}
._17{margin-left:-8.764160pt;}
._4{margin-left:-6.912000pt;}
._9{margin-left:-5.760000pt;}
._3{margin-left:-4.800000pt;}
._2{margin-left:-3.264000pt;}
._5{margin-left:-2.222080pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.152000pt;}
._7{width:2.688000pt;}
._1b{width:5.689344pt;}
._1d{width:7.715840pt;}
._10{width:9.134080pt;}
._f{width:10.040747pt;}
._a{width:14.336000pt;}
._b{width:15.232000pt;}
._1c{width:16.239147pt;}
._1e{width:22.458880pt;}
._12{width:24.892160pt;}
._11{width:25.984000pt;}
._19{width:27.725440pt;}
._d{width:29.336747pt;}
._e{width:30.339413pt;}
._13{width:39.414016pt;}
._14{width:41.063552pt;}
._16{width:48.101333pt;}
._18{width:55.778560pt;}
._c{width:66.134357pt;}
._8{width:67.328000pt;}
._15{width:68.880000pt;}
._1a{width:96.204800pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fs11{font-size:80.000000pt;}
.fs12{font-size:80.128000pt;}
.fs9{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fsc{font-size:101.120000pt;}
.fsb{font-size:106.880000pt;}
.fs15{font-size:107.008000pt;}
.fsa{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:133.120000pt;}
.fs2{font-size:138.880000pt;}
.fs3{font-size:139.008000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs0{font-size:192.000000pt;}
.fs10{font-size:224.000000pt;}
.fs13{font-size:234.880000pt;}
.fs14{font-size:235.008000pt;}
.fs6{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.192000pt;}
.y3{bottom:27.392000pt;}
.y50{bottom:44.160000pt;}
.y2{bottom:46.592000pt;}
.y3a{bottom:69.696000pt;}
.y4f{bottom:74.560000pt;}
.y1{bottom:98.400000pt;}
.y39{bottom:98.496000pt;}
.y4e{bottom:104.960000pt;}
.y86{bottom:107.616000pt;}
.y49{bottom:138.400000pt;}
.y85{bottom:139.653333pt;}
.y57{bottom:144.093333pt;}
.y56{bottom:168.093333pt;}
.y84{bottom:171.653333pt;}
.y4a{bottom:175.586667pt;}
.y55{bottom:193.506667pt;}
.y83{bottom:203.653333pt;}
.y48{bottom:204.773333pt;}
.y4d{bottom:232.800000pt;}
.y38{bottom:251.426667pt;}
.y6{bottom:258.746667pt;}
.y4c{bottom:260.800000pt;}
.y82{bottom:276.506667pt;}
.y37{bottom:280.226667pt;}
.y25{bottom:280.573333pt;}
.y3e{bottom:284.253333pt;}
.y4b{bottom:288.826667pt;}
.y5{bottom:300.386667pt;}
.y54{bottom:305.186667pt;}
.y81{bottom:308.506667pt;}
.y36{bottom:309.026667pt;}
.y47{bottom:318.813333pt;}
.y53{bottom:329.186667pt;}
.y80{bottom:340.506667pt;}
.y58{bottom:363.653333pt;}
.y30{bottom:396.346667pt;}
.y6e{bottom:401.253333pt;}
.y7f{bottom:412.613333pt;}
.y7{bottom:414.266667pt;}
.y6d{bottom:421.253333pt;}
.y35{bottom:425.253333pt;}
.y2f{bottom:426.746667pt;}
.y46{bottom:431.360000pt;}
.y6c{bottom:441.253333pt;}
.y7e{bottom:444.613333pt;}
.y34{bottom:454.053333pt;}
.y2e{bottom:457.146667pt;}
.y45{bottom:463.040000pt;}
.y6f{bottom:469.506667pt;}
.y7d{bottom:476.613333pt;}
.y2d{bottom:487.546667pt;}
.y44{bottom:491.840000pt;}
.y9{bottom:508.253333pt;}
.y2c{bottom:517.946667pt;}
.y3d{bottom:523.360000pt;}
.y5f{bottom:526.213333pt;}
.y1c{bottom:526.586667pt;}
.y11{bottom:527.133333pt;}
.y6b{bottom:540.160000pt;}
.y2b{bottom:548.386667pt;}
.y8{bottom:549.893333pt;}
.y6a{bottom:560.160000pt;}
.y26{bottom:562.240000pt;}
.y1b{bottom:564.986667pt;}
.y10{bottom:568.773333pt;}
.y69{bottom:580.160000pt;}
.y2a{bottom:584.800000pt;}
.y43{bottom:598.946667pt;}
.y5d{bottom:601.373333pt;}
.y1a{bottom:603.386667pt;}
.yf{bottom:610.373333pt;}
.y68{bottom:620.186667pt;}
.y42{bottom:627.746667pt;}
.y19{bottom:641.786667pt;}
.y67{bottom:647.173333pt;}
.ya{bottom:664.413333pt;}
.y3c{bottom:666.080000pt;}
.y5e{bottom:669.853333pt;}
.y5c{bottom:673.346667pt;}
.y74{bottom:678.426667pt;}
.y66{bottom:686.013333pt;}
.y5b{bottom:697.346667pt;}
.y1e{bottom:699.706667pt;}
.y65{bottom:706.013333pt;}
.y73{bottom:710.426667pt;}
.y1d{bottom:718.560000pt;}
.y12{bottom:723.706667pt;}
.y64{bottom:726.053333pt;}
.y41{bottom:750.466667pt;}
.y63{bottom:753.026667pt;}
.y7a{bottom:759.613333pt;}
.y32{bottom:765.306667pt;}
.yd{bottom:776.293333pt;}
.y5a{bottom:779.200000pt;}
.y40{bottom:779.266667pt;}
.y62{bottom:789.213333pt;}
.y79{bottom:791.613333pt;}
.y31{bottom:794.106667pt;}
.y59{bottom:803.200000pt;}
.y3f{bottom:808.066667pt;}
.y61{bottom:809.213333pt;}
.yc{bottom:817.893333pt;}
.y78{bottom:823.613333pt;}
.y60{bottom:833.853333pt;}
.y33{bottom:834.306667pt;}
.y3b{bottom:839.973333pt;}
.y52{bottom:843.773333pt;}
.y20{bottom:858.240000pt;}
.yb{bottom:859.493333pt;}
.y77{bottom:873.026667pt;}
.y76{bottom:905.026667pt;}
.y28{bottom:918.173333pt;}
.y51{bottom:922.533333pt;}
.y29{bottom:928.226667pt;}
.y75{bottom:937.026667pt;}
.y24{bottom:967.426667pt;}
.y15{bottom:973.253333pt;}
.ye{bottom:974.560000pt;}
.y7c{bottom:994.240000pt;}
.y23{bottom:1002.653333pt;}
.y14{bottom:1014.853333pt;}
.y27{bottom:1024.546667pt;}
.y7b{bottom:1026.240000pt;}
.y22{bottom:1037.853333pt;}
.y13{bottom:1056.453333pt;}
.y21{bottom:1073.053333pt;}
.y1f{bottom:1105.413333pt;}
.y16{bottom:1169.786667pt;}
.y71{bottom:1212.666667pt;}
.y17{bottom:1254.173333pt;}
.y72{bottom:1254.973333pt;}
.y18{bottom:1264.226667pt;}
.y70{bottom:1283.106667pt;}
.h2{height:46.593750pt;}
.h18{height:55.625000pt;}
.h19{height:55.714000pt;}
.h12{height:57.750000pt;}
.h16{height:57.865500pt;}
.he{height:58.353750pt;}
.hb{height:61.969687pt;}
.h14{height:69.703125pt;}
.h15{height:69.796062pt;}
.h13{height:73.420625pt;}
.h1c{height:74.315000pt;}
.h1d{height:74.404000pt;}
.hd{height:77.811562pt;}
.hc{height:80.291250pt;}
.ha{height:91.260000pt;}
.h9{height:93.187500pt;}
.h3{height:101.108438pt;}
.h4{height:101.201625pt;}
.h5{height:101.864687pt;}
.h6{height:101.952125pt;}
.h8{height:108.563437pt;}
.h11{height:134.557500pt;}
.h1{height:139.781250pt;}
.h1a{height:170.999063pt;}
.h1b{height:171.092250pt;}
.h17{height:202.125000pt;}
.h7{height:209.671875pt;}
.h10{height:259.875000pt;}
.hf{height:1008.000000pt;}
.h0{height:1344.000000pt;}
.w0{width:1008.000000pt;}
.w1{width:1344.000000pt;}
.x0{left:0.000000pt;}
.x25{left:23.904000pt;}
.x27{left:29.888000pt;}
.x24{left:31.456000pt;}
.x33{left:34.752000pt;}
.x17{left:46.848000pt;}
.x36{left:54.400000pt;}
.x22{left:81.760000pt;}
.x1c{left:82.688000pt;}
.x11{left:92.608000pt;}
.x19{left:99.072000pt;}
.x18{left:100.288000pt;}
.x10{left:101.568000pt;}
.xf{left:110.688000pt;}
.x14{left:117.792000pt;}
.x1a{left:120.480000pt;}
.x2f{left:124.000000pt;}
.x13{left:125.152000pt;}
.x1{left:146.173333pt;}
.x2e{left:152.413333pt;}
.x16{left:154.653333pt;}
.x23{left:173.213333pt;}
.x34{left:180.986667pt;}
.x12{left:196.986667pt;}
.x15{left:229.573333pt;}
.x1d{left:230.973333pt;}
.x3b{left:241.466667pt;}
.x35{left:245.306667pt;}
.x3a{left:271.520000pt;}
.x6{left:294.013333pt;}
.x3{left:298.720000pt;}
.x37{left:311.933333pt;}
.x39{left:317.946667pt;}
.x5{left:329.373333pt;}
.x28{left:377.893333pt;}
.x29{left:391.333333pt;}
.x7{left:407.613333pt;}
.x2{left:427.200000pt;}
.x4{left:440.000000pt;}
.x38{left:449.946667pt;}
.xd{left:467.493333pt;}
.x30{left:490.106667pt;}
.xc{left:504.933333pt;}
.xb{left:511.653333pt;}
.x26{left:530.466667pt;}
.x32{left:560.706667pt;}
.x20{left:573.120000pt;}
.x1f{left:575.520000pt;}
.x31{left:578.786667pt;}
.x1e{left:604.480000pt;}
.xe{left:627.813333pt;}
.x8{left:667.173333pt;}
.x1b{left:682.533333pt;}
.x9{left:703.493333pt;}
.x21{left:709.146667pt;}
.xa{left:821.600000pt;}
.x2d{left:997.733333pt;}
.x2a{left:999.226667pt;}
.x2b{left:1000.320000pt;}
.x2c{left:1001.533333pt;}
}




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