
    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_94b24bca8825f85f913ce787.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2c130c76617cf29b6cf50c26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_6f551fc0a26e6d1c6eb5c4b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_00d35a7923b3164ad5e0e913.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7afe3f10df5f834cc1754d1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_474d02007f62f7b50ac9f68f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_89e6d9d0d2bb7cf9b5fed2df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_eac7954a4f90e8c04069172e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051270;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_7a166bf3226c69f7e10427a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900879;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_4f66b809c3b4faa3aa1e3cce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.378906;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_666721cfd8590f6e43bf145a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.378906;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);}
.m2{transform:matrix(0.257241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257241,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);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-9.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.800000px;}
.v1{vertical-align:33.120000px;}
.ls17{letter-spacing:-0.768000px;}
.ls13{letter-spacing:-0.442800px;}
.ls4{letter-spacing:-0.437400px;}
.ls3{letter-spacing:-0.357000px;}
.ls11{letter-spacing:-0.298800px;}
.ls10{letter-spacing:-0.219000px;}
.ls1a{letter-spacing:-0.218400px;}
.ls1c{letter-spacing:-0.178800px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014700px;}
.ls9{letter-spacing:0.054720px;}
.ls5{letter-spacing:0.087600px;}
.lsf{letter-spacing:0.133200px;}
.ls6{letter-spacing:0.141600px;}
.ls19{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.377400px;}
.ls1d{letter-spacing:0.452400px;}
.ls1e{letter-spacing:0.500400px;}
.ls14{letter-spacing:0.538800px;}
.ls12{letter-spacing:0.594600px;}
.ls1b{letter-spacing:0.596400px;}
.ls1{letter-spacing:22.716000px;}
.lse{letter-spacing:25.776000px;}
.lsb{letter-spacing:25.908000px;}
.lsd{letter-spacing:25.920000px;}
.lsc{letter-spacing:26.052000px;}
.ls0{letter-spacing:36.324000px;}
.ls7{letter-spacing:73.722816px;}
.ls16{letter-spacing:99.525600px;}
.ls15{letter-spacing:99.576000px;}
.ls8{letter-spacing:122.904000px;}
.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;}
}
.ws28{word-spacing:-100.120032px;}
.ws22{word-spacing:-73.607160px;}
.ws10{word-spacing:-73.298592px;}
.ws21{word-spacing:-72.167160px;}
.ws3{word-spacing:-71.891712px;}
.ws11{word-spacing:-40.032000px;}
.ws18{word-spacing:-31.665312px;}
.ws15{word-spacing:-31.625280px;}
.ws29{word-spacing:-28.422720px;}
.ws25{word-spacing:-26.418672px;}
.ws2b{word-spacing:-23.258592px;}
.wse{word-spacing:-23.218560px;}
.ws2d{word-spacing:-22.861560px;}
.ws2c{word-spacing:-22.821192px;}
.ws33{word-spacing:-20.056032px;}
.ws32{word-spacing:-20.016000px;}
.ws24{word-spacing:-2.319936px;}
.ws20{word-spacing:-2.030064px;}
.ws26{word-spacing:-1.708224px;}
.ws1e{word-spacing:-1.197888px;}
.ws36{word-spacing:-0.390672px;}
.ws38{word-spacing:-0.369936px;}
.ws2e{word-spacing:-0.312720px;}
.ws1f{word-spacing:-0.133488px;}
.ws4{word-spacing:-0.108144px;}
.wsb{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.072000px;}
.wsf{word-spacing:0.000000px;}
.ws27{word-spacing:0.248016px;}
.ws30{word-spacing:0.356760px;}
.wsd{word-spacing:0.437832px;}
.ws23{word-spacing:0.590880px;}
.ws13{word-spacing:0.599424px;}
.ws14{word-spacing:0.680160px;}
.ws2f{word-spacing:0.774720px;}
.ws17{word-spacing:0.991584px;}
.ws16{word-spacing:1.404480px;}
.ws37{word-spacing:1.586016px;}
.ws3b{word-spacing:1.596312px;}
.wsc{word-spacing:1.796760px;}
.ws2a{word-spacing:1.877832px;}
.ws35{word-spacing:2.424000px;}
.ws39{word-spacing:2.490240px;}
.ws31{word-spacing:2.537280px;}
.ws3a{word-spacing:2.865744px;}
.ws34{word-spacing:4.430880px;}
.wsa{word-spacing:25.668000px;}
.ws2{word-spacing:36.215856px;}
.ws0{word-spacing:37.534896px;}
.ws9{word-spacing:39.540000px;}
.ws7{word-spacing:39.972000px;}
.ws6{word-spacing:40.116000px;}
.ws8{word-spacing:40.500000px;}
.ws5{word-spacing:41.328000px;}
.ws1b{word-spacing:157.152130px;}
.ws1d{word-spacing:163.791081px;}
.ws1c{word-spacing:178.820723px;}
.ws1a{word-spacing:265.130683px;}
.ws19{word-spacing:377.020510px;}
.ws12{word-spacing:1529.676000px;}
._e{margin-left:-15.135120px;}
._13{margin-left:-12.549600px;}
._11{margin-left:-10.288608px;}
._d{margin-left:-9.223200px;}
._6{margin-left:-7.446096px;}
._16{margin-left:-6.036912px;}
._c{margin-left:-4.642368px;}
._3{margin-left:-3.568752px;}
._5{margin-left:-2.552736px;}
._1{margin-left:-1.317600px;}
._0{width:1.317600px;}
._7{width:2.479008px;}
._15{width:3.596640px;}
._2{width:4.699200px;}
._8{width:6.144480px;}
._3b{width:7.317744px;}
._25{width:11.925969px;}
._36{width:14.148078px;}
._1a{width:17.826735px;}
._10{width:19.336320px;}
._9{width:21.860016px;}
._f{width:24.326064px;}
._a{width:25.638096px;}
._b{width:28.337520px;}
._4{width:29.836800px;}
._35{width:52.070984px;}
._3a{width:66.013824px;}
._18{width:73.083547px;}
._12{width:75.443328px;}
._29{width:90.963554px;}
._38{width:103.627876px;}
._37{width:116.536519px;}
._31{width:123.983190px;}
._23{width:135.043117px;}
._21{width:140.721616px;}
._32{width:167.640623px;}
._1e{width:169.445745px;}
._22{width:170.669626px;}
._34{width:173.060684px;}
._1c{width:174.834820px;}
._1d{width:176.823725px;}
._20{width:178.559406px;}
._1b{width:184.563226px;}
._28{width:187.136324px;}
._24{width:188.601456px;}
._39{width:191.040301px;}
._2a{width:198.002759px;}
._19{width:203.916334px;}
._2c{width:220.674966px;}
._33{width:223.821965px;}
._2b{width:231.582161px;}
._2d{width:233.539777px;}
._26{width:237.376472px;}
._1f{width:238.414396px;}
._27{width:249.734682px;}
._17{width:251.400304px;}
._2e{width:254.380456px;}
._30{width:271.122723px;}
._2f{width:277.637592px;}
._14{width:2360.295936px;}
.fc3{color:transparent;}
.fc2{color:rgb(41,152,227);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(179,84,15);}
.fc0{color:rgb(245,120,0);}
.fsd{font-size:29.506448px;}
.fs13{font-size:60.480000px;}
.fs14{font-size:60.624000px;}
.fs2{font-size:72.000000px;}
.fs15{font-size:72.144000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:83.664000px;}
.fs9{font-size:96.480000px;}
.fsa{font-size:96.624000px;}
.fs11{font-size:102.240000px;}
.fs12{font-size:102.384000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fsb{font-size:113.760000px;}
.fsc{font-size:113.904000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fse{font-size:240.624000px;}
.fs0{font-size:263.520000px;}
.fs6{font-size:263.664000px;}
.fs10{font-size:360.144000px;}
.fsf{font-size:360.288000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:1.962735px;}
.y4e{bottom:2.446222px;}
.y4d{bottom:12.276253px;}
.y4c{bottom:22.106284px;}
.yd{bottom:26.532000px;}
.y6b{bottom:26.712000px;}
.y4b{bottom:31.936314px;}
.y4a{bottom:41.766345px;}
.y6a{bottom:44.748000px;}
.y49{bottom:51.596376px;}
.yc{bottom:56.808000px;}
.y2c{bottom:59.400000px;}
.y48{bottom:61.410051px;}
.y69{bottom:62.748000px;}
.y47{bottom:71.240736px;}
.y2b{bottom:79.092000px;}
.y46{bottom:81.067495px;}
.y68{bottom:81.468000px;}
.y24{bottom:82.080000px;}
.yb{bottom:87.048000px;}
.y45{bottom:90.900797px;}
.y1b{bottom:98.892000px;}
.y44{bottom:100.727557px;}
.y43{bottom:110.560859px;}
.y19{bottom:112.716000px;}
.y2a{bottom:113.328000px;}
.ya{bottom:117.324000px;}
.y42{bottom:120.387618px;}
.y70{bottom:121.680000px;}
.y1a{bottom:127.692000px;}
.y41{bottom:130.220920px;}
.y67{bottom:133.308000px;}
.y82{bottom:138.240000px;}
.y40{bottom:140.047680px;}
.y29{bottom:147.528000px;}
.y9{bottom:147.564000px;}
.y3f{bottom:149.880982px;}
.y5a{bottom:153.465000px;}
.y3e{bottom:159.707741px;}
.y18{bottom:164.595000px;}
.y81{bottom:167.400000px;}
.y3d{bottom:169.541043px;}
.y66{bottom:170.025000px;}
.y6f{bottom:173.550000px;}
.y8{bottom:177.810000px;}
.y3c{bottom:179.367803px;}
.y3b{bottom:189.201105px;}
.y80{bottom:194.400000px;}
.y59{bottom:196.710000px;}
.y28{bottom:196.890000px;}
.y3a{bottom:199.027864px;}
.y7{bottom:208.080000px;}
.y39{bottom:208.861166px;}
.y6e{bottom:210.315000px;}
.y17{bottom:216.465000px;}
.y38{bottom:218.687926px;}
.y65{bottom:221.910000px;}
.y7f{bottom:224.670000px;}
.y37{bottom:228.521228px;}
.y27{bottom:231.090000px;}
.y36{bottom:238.347988px;}
.y58{bottom:239.910000px;}
.y6d{bottom:247.035000px;}
.y35{bottom:248.181290px;}
.y7e{bottom:254.910000px;}
.y34{bottom:257.994964px;}
.y33{bottom:267.821724px;}
.y64{bottom:273.420000px;}
.y32{bottom:277.655026px;}
.y26{bottom:280.080000px;}
.y57{bottom:283.140000px;}
.y16{bottom:283.470000px;}
.y7d{bottom:285.150000px;}
.y31{bottom:287.481785px;}
.y30{bottom:297.315087px;}
.y6c{bottom:298.545000px;}
.y2d{bottom:307.141847px;}
.y63{bottom:310.140000px;}
.y7c{bottom:315.435000px;}
.y20{bottom:321.270000px;}
.y23{bottom:321.450000px;}
.y21{bottom:321.735000px;}
.y6{bottom:334.185000px;}
.y15{bottom:335.310000px;}
.y56{bottom:335.730000px;}
.y5f{bottom:345.495000px;}
.y7b{bottom:345.675000px;}
.y2e{bottom:364.579112px;}
.y7a{bottom:374.865000px;}
.y14{bottom:387.180000px;}
.y5e{bottom:395.205000px;}
.y79{bottom:401.865000px;}
.y55{bottom:404.895000px;}
.y5{bottom:415.230000px;}
.y62{bottom:430.740000px;}
.y78{bottom:432.105000px;}
.y5d{bottom:444.885000px;}
.y54{bottom:448.815000px;}
.y4{bottom:450.180000px;}
.y13{bottom:453.810000px;}
.y77{bottom:462.390000px;}
.y53{bottom:492.405000px;}
.y76{bottom:492.630000px;}
.y5c{bottom:494.250000px;}
.y12{bottom:505.650000px;}
.y75{bottom:522.870000px;}
.y61{bottom:527.970000px;}
.y52{bottom:536.325000px;}
.y5b{bottom:543.960000px;}
.y3{bottom:547.410000px;}
.y74{bottom:553.140000px;}
.y11{bottom:557.535000px;}
.y1f{bottom:569.160000px;}
.y22{bottom:573.870000px;}
.y1e{bottom:578.235000px;}
.y73{bottom:583.380000px;}
.y72{bottom:613.650000px;}
.y10{bottom:624.525000px;}
.y60{bottom:625.245000px;}
.y2{bottom:626.655000px;}
.y51{bottom:643.575000px;}
.y1d{bottom:645.015000px;}
.y4f{bottom:692.025000px;}
.y25{bottom:697.755000px;}
.y71{bottom:699.045000px;}
.yf{bottom:701.535000px;}
.y1{bottom:705.885000px;}
.y50{bottom:709.845000px;}
.y1c{bottom:716.325000px;}
.ye{bottom:772.815000px;}
.h11{height:9.339347px;}
.h10{height:25.760513px;}
.h19{height:63.078750px;}
.h1a{height:63.228937px;}
.h1c{height:75.093750px;}
.h1b{height:75.243937px;}
.h5{height:87.108750px;}
.h4{height:87.258937px;}
.h3{height:89.068359px;}
.h2{height:92.498906px;}
.h9{height:100.625625px;}
.ha{height:100.775813px;}
.h14{height:106.467187px;}
.h13{height:106.626094px;}
.h17{height:106.633125px;}
.h18{height:106.783312px;}
.hb{height:112.640625px;}
.hd{height:118.648125px;}
.he{height:118.798312px;}
.hc{height:141.440625px;}
.h7{height:150.187500px;}
.h8{height:150.337688px;}
.h12{height:250.963313px;}
.h1{height:274.843125px;}
.h6{height:274.993313px;}
.hf{height:314.521105px;}
.h16{height:375.618938px;}
.h15{height:375.769125px;}
.h0{height:810.000000px;}
.w4{width:63.162482px;}
.w3{width:64.677169px;}
.w2{width:602.832343px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x16{left:1.009794px;}
.x2{left:33.983979px;}
.x3{left:37.943979px;}
.x1{left:39.779979px;}
.x13{left:74.951979px;}
.x27{left:78.119979px;}
.x20{left:105.119979px;}
.x14{left:115.631979px;}
.x1e{left:120.851979px;}
.xa{left:139.211979px;}
.xe{left:182.804979px;}
.x7{left:196.634979px;}
.x12{left:201.959979px;}
.x9{left:209.054979px;}
.xc{left:223.769979px;}
.x1b{left:248.249979px;}
.x24{left:263.309979px;}
.x4{left:277.529979px;}
.x8{left:283.754979px;}
.x25{left:297.149979px;}
.x1d{left:305.609979px;}
.x1c{left:313.169979px;}
.x18{left:348.660927px;}
.x10{left:425.549979px;}
.xf{left:463.244979px;}
.x1a{left:540.171314px;}
.x26{left:542.264979px;}
.x5{left:553.349979px;}
.x11{left:620.639979px;}
.xd{left:645.194979px;}
.x23{left:724.034979px;}
.x21{left:742.499979px;}
.x1f{left:749.879979px;}
.x6{left:758.729979px;}
.x22{left:776.339979px;}
.x15{left:801.864815px;}
.xb{left:938.489979px;}
.x17{left:1084.337251px;}
.x19{left:1277.362326px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-8.213333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.600000pt;}
.v1{vertical-align:29.440000pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls13{letter-spacing:-0.393600pt;}
.ls4{letter-spacing:-0.388800pt;}
.ls3{letter-spacing:-0.317333pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls10{letter-spacing:-0.194667pt;}
.ls1a{letter-spacing:-0.194133pt;}
.ls1c{letter-spacing:-0.158933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.013067pt;}
.ls9{letter-spacing:0.048640pt;}
.ls5{letter-spacing:0.077867pt;}
.lsf{letter-spacing:0.118400pt;}
.ls6{letter-spacing:0.125867pt;}
.ls19{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.335467pt;}
.ls1d{letter-spacing:0.402133pt;}
.ls1e{letter-spacing:0.444800pt;}
.ls14{letter-spacing:0.478933pt;}
.ls12{letter-spacing:0.528533pt;}
.ls1b{letter-spacing:0.530133pt;}
.ls1{letter-spacing:20.192000pt;}
.lse{letter-spacing:22.912000pt;}
.lsb{letter-spacing:23.029333pt;}
.lsd{letter-spacing:23.040000pt;}
.lsc{letter-spacing:23.157333pt;}
.ls0{letter-spacing:32.288000pt;}
.ls7{letter-spacing:65.531392pt;}
.ls16{letter-spacing:88.467200pt;}
.ls15{letter-spacing:88.512000pt;}
.ls8{letter-spacing:109.248000pt;}
.ws28{word-spacing:-88.995584pt;}
.ws22{word-spacing:-65.428587pt;}
.ws10{word-spacing:-65.154304pt;}
.ws21{word-spacing:-64.148587pt;}
.ws3{word-spacing:-63.903744pt;}
.ws11{word-spacing:-35.584000pt;}
.ws18{word-spacing:-28.146944pt;}
.ws15{word-spacing:-28.111360pt;}
.ws29{word-spacing:-25.264640pt;}
.ws25{word-spacing:-23.483264pt;}
.ws2b{word-spacing:-20.674304pt;}
.wse{word-spacing:-20.638720pt;}
.ws2d{word-spacing:-20.321387pt;}
.ws2c{word-spacing:-20.285504pt;}
.ws33{word-spacing:-17.827584pt;}
.ws32{word-spacing:-17.792000pt;}
.ws24{word-spacing:-2.062165pt;}
.ws20{word-spacing:-1.804501pt;}
.ws26{word-spacing:-1.518421pt;}
.ws1e{word-spacing:-1.064789pt;}
.ws36{word-spacing:-0.347264pt;}
.ws38{word-spacing:-0.328832pt;}
.ws2e{word-spacing:-0.277973pt;}
.ws1f{word-spacing:-0.118656pt;}
.ws4{word-spacing:-0.096128pt;}
.wsb{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.064000pt;}
.wsf{word-spacing:0.000000pt;}
.ws27{word-spacing:0.220459pt;}
.ws30{word-spacing:0.317120pt;}
.wsd{word-spacing:0.389184pt;}
.ws23{word-spacing:0.525227pt;}
.ws13{word-spacing:0.532821pt;}
.ws14{word-spacing:0.604587pt;}
.ws2f{word-spacing:0.688640pt;}
.ws17{word-spacing:0.881408pt;}
.ws16{word-spacing:1.248427pt;}
.ws37{word-spacing:1.409792pt;}
.ws3b{word-spacing:1.418944pt;}
.wsc{word-spacing:1.597120pt;}
.ws2a{word-spacing:1.669184pt;}
.ws35{word-spacing:2.154667pt;}
.ws39{word-spacing:2.213547pt;}
.ws31{word-spacing:2.255360pt;}
.ws3a{word-spacing:2.547328pt;}
.ws34{word-spacing:3.938560pt;}
.wsa{word-spacing:22.816000pt;}
.ws2{word-spacing:32.191872pt;}
.ws0{word-spacing:33.364352pt;}
.ws9{word-spacing:35.146667pt;}
.ws7{word-spacing:35.530667pt;}
.ws6{word-spacing:35.658667pt;}
.ws8{word-spacing:36.000000pt;}
.ws5{word-spacing:36.736000pt;}
.ws1b{word-spacing:139.690782pt;}
.ws1d{word-spacing:145.592072pt;}
.ws1c{word-spacing:158.951754pt;}
.ws1a{word-spacing:235.671719pt;}
.ws19{word-spacing:335.129342pt;}
.ws12{word-spacing:1359.712000pt;}
._e{margin-left:-13.453440pt;}
._13{margin-left:-11.155200pt;}
._11{margin-left:-9.145429pt;}
._d{margin-left:-8.198400pt;}
._6{margin-left:-6.618752pt;}
._16{margin-left:-5.366144pt;}
._c{margin-left:-4.126549pt;}
._3{margin-left:-3.172224pt;}
._5{margin-left:-2.269099pt;}
._1{margin-left:-1.171200pt;}
._0{width:1.171200pt;}
._7{width:2.203563pt;}
._15{width:3.197013pt;}
._2{width:4.177067pt;}
._8{width:5.461760pt;}
._3b{width:6.504661pt;}
._25{width:10.600861pt;}
._36{width:12.576070pt;}
._1a{width:15.845987pt;}
._10{width:17.187840pt;}
._9{width:19.431125pt;}
._f{width:21.623168pt;}
._a{width:22.789419pt;}
._b{width:25.188907pt;}
._4{width:26.521600pt;}
._35{width:46.285319pt;}
._3a{width:58.678955pt;}
._18{width:64.963153pt;}
._12{width:67.060736pt;}
._29{width:80.856492pt;}
._38{width:92.113667pt;}
._37{width:103.588017pt;}
._31{width:110.207280pt;}
._23{width:120.038326pt;}
._21{width:125.085881pt;}
._32{width:149.013887pt;}
._1e{width:150.618440pt;}
._22{width:151.706335pt;}
._34{width:153.831719pt;}
._1c{width:155.408729pt;}
._1d{width:157.176644pt;}
._20{width:158.719472pt;}
._1b{width:164.056201pt;}
._28{width:166.343399pt;}
._24{width:167.645739pt;}
._39{width:169.813601pt;}
._2a{width:176.002452pt;}
._19{width:181.258963pt;}
._2c{width:196.155525pt;}
._33{width:198.952858pt;}
._2b{width:205.850810pt;}
._2d{width:207.590913pt;}
._26{width:211.001308pt;}
._1f{width:211.923908pt;}
._27{width:221.986384pt;}
._17{width:223.466937pt;}
._2e{width:226.115961pt;}
._30{width:240.997976pt;}
._2f{width:246.788971pt;}
._14{width:2098.040832pt;}
.fsd{font-size:26.227954pt;}
.fs13{font-size:53.760000pt;}
.fs14{font-size:53.888000pt;}
.fs2{font-size:64.000000pt;}
.fs15{font-size:64.128000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:74.368000pt;}
.fs9{font-size:85.760000pt;}
.fsa{font-size:85.888000pt;}
.fs11{font-size:90.880000pt;}
.fs12{font-size:91.008000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fsb{font-size:101.120000pt;}
.fsc{font-size:101.248000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fse{font-size:213.888000pt;}
.fs0{font-size:234.240000pt;}
.fs6{font-size:234.368000pt;}
.fs10{font-size:320.128000pt;}
.fsf{font-size:320.256000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:1.744653pt;}
.y4e{bottom:2.174420pt;}
.y4d{bottom:10.912225pt;}
.y4c{bottom:19.650030pt;}
.yd{bottom:23.584000pt;}
.y6b{bottom:23.744000pt;}
.y4b{bottom:28.387835pt;}
.y4a{bottom:37.125640pt;}
.y6a{bottom:39.776000pt;}
.y49{bottom:45.863445pt;}
.yc{bottom:50.496000pt;}
.y2c{bottom:52.800000pt;}
.y48{bottom:54.586712pt;}
.y69{bottom:55.776000pt;}
.y47{bottom:63.325098pt;}
.y2b{bottom:70.304000pt;}
.y46{bottom:72.059996pt;}
.y68{bottom:72.416000pt;}
.y24{bottom:72.960000pt;}
.yb{bottom:77.376000pt;}
.y45{bottom:80.800709pt;}
.y1b{bottom:87.904000pt;}
.y44{bottom:89.535606pt;}
.y43{bottom:98.276319pt;}
.y19{bottom:100.192000pt;}
.y2a{bottom:100.736000pt;}
.ya{bottom:104.288000pt;}
.y42{bottom:107.011216pt;}
.y70{bottom:108.160000pt;}
.y1a{bottom:113.504000pt;}
.y41{bottom:115.751929pt;}
.y67{bottom:118.496000pt;}
.y82{bottom:122.880000pt;}
.y40{bottom:124.486826pt;}
.y29{bottom:131.136000pt;}
.y9{bottom:131.168000pt;}
.y3f{bottom:133.227539pt;}
.y5a{bottom:136.413333pt;}
.y3e{bottom:141.962437pt;}
.y18{bottom:146.306667pt;}
.y81{bottom:148.800000pt;}
.y3d{bottom:150.703150pt;}
.y66{bottom:151.133333pt;}
.y6f{bottom:154.266667pt;}
.y8{bottom:158.053333pt;}
.y3c{bottom:159.438047pt;}
.y3b{bottom:168.178760pt;}
.y80{bottom:172.800000pt;}
.y59{bottom:174.853333pt;}
.y28{bottom:175.013333pt;}
.y3a{bottom:176.913657pt;}
.y7{bottom:184.960000pt;}
.y39{bottom:185.654370pt;}
.y6e{bottom:186.946667pt;}
.y17{bottom:192.413333pt;}
.y38{bottom:194.389268pt;}
.y65{bottom:197.253333pt;}
.y7f{bottom:199.706667pt;}
.y37{bottom:203.129980pt;}
.y27{bottom:205.413333pt;}
.y36{bottom:211.864878pt;}
.y58{bottom:213.253333pt;}
.y6d{bottom:219.586667pt;}
.y35{bottom:220.605591pt;}
.y7e{bottom:226.586667pt;}
.y34{bottom:229.328857pt;}
.y33{bottom:238.063754pt;}
.y64{bottom:243.040000pt;}
.y32{bottom:246.804467pt;}
.y26{bottom:248.960000pt;}
.y57{bottom:251.680000pt;}
.y16{bottom:251.973333pt;}
.y7d{bottom:253.466667pt;}
.y31{bottom:255.539365pt;}
.y30{bottom:264.280078pt;}
.y6c{bottom:265.373333pt;}
.y2d{bottom:273.014975pt;}
.y63{bottom:275.680000pt;}
.y7c{bottom:280.386667pt;}
.y20{bottom:285.573333pt;}
.y23{bottom:285.733333pt;}
.y21{bottom:285.986667pt;}
.y6{bottom:297.053333pt;}
.y15{bottom:298.053333pt;}
.y56{bottom:298.426667pt;}
.y5f{bottom:307.106667pt;}
.y7b{bottom:307.266667pt;}
.y2e{bottom:324.070322pt;}
.y7a{bottom:333.213333pt;}
.y14{bottom:344.160000pt;}
.y5e{bottom:351.293333pt;}
.y79{bottom:357.213333pt;}
.y55{bottom:359.906667pt;}
.y5{bottom:369.093333pt;}
.y62{bottom:382.880000pt;}
.y78{bottom:384.093333pt;}
.y5d{bottom:395.453333pt;}
.y54{bottom:398.946667pt;}
.y4{bottom:400.160000pt;}
.y13{bottom:403.386667pt;}
.y77{bottom:411.013333pt;}
.y53{bottom:437.693333pt;}
.y76{bottom:437.893333pt;}
.y5c{bottom:439.333333pt;}
.y12{bottom:449.466667pt;}
.y75{bottom:464.773333pt;}
.y61{bottom:469.306667pt;}
.y52{bottom:476.733333pt;}
.y5b{bottom:483.520000pt;}
.y3{bottom:486.586667pt;}
.y74{bottom:491.680000pt;}
.y11{bottom:495.586667pt;}
.y1f{bottom:505.920000pt;}
.y22{bottom:510.106667pt;}
.y1e{bottom:513.986667pt;}
.y73{bottom:518.560000pt;}
.y72{bottom:545.466667pt;}
.y10{bottom:555.133333pt;}
.y60{bottom:555.773333pt;}
.y2{bottom:557.026667pt;}
.y51{bottom:572.066667pt;}
.y1d{bottom:573.346667pt;}
.y4f{bottom:615.133333pt;}
.y25{bottom:620.226667pt;}
.y71{bottom:621.373333pt;}
.yf{bottom:623.586667pt;}
.y1{bottom:627.453333pt;}
.y50{bottom:630.973333pt;}
.y1c{bottom:636.733333pt;}
.ye{bottom:686.946667pt;}
.h11{height:8.301642pt;}
.h10{height:22.898233pt;}
.h19{height:56.070000pt;}
.h1a{height:56.203500pt;}
.h1c{height:66.750000pt;}
.h1b{height:66.883500pt;}
.h5{height:77.430000pt;}
.h4{height:77.563500pt;}
.h3{height:79.171875pt;}
.h2{height:82.221250pt;}
.h9{height:89.445000pt;}
.ha{height:89.578500pt;}
.h14{height:94.637500pt;}
.h13{height:94.778750pt;}
.h17{height:94.785000pt;}
.h18{height:94.918500pt;}
.hb{height:100.125000pt;}
.hd{height:105.465000pt;}
.he{height:105.598500pt;}
.hc{height:125.725000pt;}
.h7{height:133.500000pt;}
.h8{height:133.633500pt;}
.h12{height:223.078500pt;}
.h1{height:244.305000pt;}
.h6{height:244.438500pt;}
.hf{height:279.574315pt;}
.h16{height:333.883500pt;}
.h15{height:334.017000pt;}
.h0{height:720.000000pt;}
.w4{width:56.144428pt;}
.w3{width:57.490817pt;}
.w2{width:535.850971pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x16{left:0.897594pt;}
.x2{left:30.207981pt;}
.x3{left:33.727981pt;}
.x1{left:35.359981pt;}
.x13{left:66.623981pt;}
.x27{left:69.439981pt;}
.x20{left:93.439981pt;}
.x14{left:102.783981pt;}
.x1e{left:107.423981pt;}
.xa{left:123.743981pt;}
.xe{left:162.493314pt;}
.x7{left:174.786648pt;}
.x12{left:179.519981pt;}
.x9{left:185.826648pt;}
.xc{left:198.906648pt;}
.x1b{left:220.666648pt;}
.x24{left:234.053314pt;}
.x4{left:246.693314pt;}
.x8{left:252.226648pt;}
.x25{left:264.133314pt;}
.x1d{left:271.653314pt;}
.x1c{left:278.373314pt;}
.x18{left:309.920824pt;}
.x10{left:378.266648pt;}
.xf{left:411.773314pt;}
.x1a{left:480.152279pt;}
.x26{left:482.013314pt;}
.x5{left:491.866648pt;}
.x11{left:551.679981pt;}
.xd{left:573.506648pt;}
.x23{left:643.586648pt;}
.x21{left:659.999981pt;}
.x1f{left:666.559981pt;}
.x6{left:674.426648pt;}
.x22{left:690.079981pt;}
.x15{left:712.768724pt;}
.xb{left:834.213314pt;}
.x17{left:963.855334pt;}
.x19{left:1135.433178pt;}
}




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