
    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_93d4078c2c16c987470fbf6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990200;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_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_812669fb03833502a619462e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_f50a8d2761b7042cebe4a5f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_700dffb602ef5cfa91057ae1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_56bf0e7d9aac4728edf9882e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_c0d26ca2c0cb96dc9c5c66a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_4f3aacee8dffcdd0a1278730.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_2eea34a713185578890d4a5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752000;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_97ecb002718e124dc72e2578.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_52f5f6dda2ca31e70d0f0d52.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972000;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;}
.lsc{letter-spacing:-1.290000px;}
.lsd{letter-spacing:-1.225500px;}
.lse{letter-spacing:-1.161000px;}
.lsf{letter-spacing:-0.709500px;}
.ls15{letter-spacing:-0.705000px;}
.lsb{letter-spacing:-0.645000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.064500px;}
.ls16{letter-spacing:0.141000px;}
.ls12{letter-spacing:0.211500px;}
.ls3{letter-spacing:0.258000px;}
.ls4{letter-spacing:0.322500px;}
.ls7{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.735000px;}
.ls6{letter-spacing:0.774000px;}
.ls19{letter-spacing:0.838500px;}
.ls0{letter-spacing:0.903000px;}
.ls1{letter-spacing:0.967500px;}
.lsa{letter-spacing:1.234800px;}
.ls17{letter-spacing:1.410000px;}
.ls18{letter-spacing:1.621500px;}
.ls5{letter-spacing:1.677000px;}
.ls9{letter-spacing:1.680000px;}
.ls10{letter-spacing:858.564600px;}
.ls14{letter-spacing:879.627000px;}
.ls13{letter-spacing:945.626400px;}
.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;}
}
.ws1d{word-spacing:-17.625000px;}
.ws6d{word-spacing:-16.125000px;}
.ws40{word-spacing:-13.860000px;}
.ws6c{word-spacing:-12.093750px;}
.ws2{word-spacing:-1.680000px;}
.ws19{word-spacing:-1.677000px;}
.ws3{word-spacing:-1.234800px;}
.ws4{word-spacing:-0.903000px;}
.ws41{word-spacing:-0.735000px;}
.ws1e{word-spacing:-0.367500px;}
.ws13{word-spacing:-0.258000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.064500px;}
.ws4b{word-spacing:0.070500px;}
.ws4e{word-spacing:0.211500px;}
.wsb{word-spacing:0.258000px;}
.ws1a{word-spacing:0.384000px;}
.ws27{word-spacing:0.423000px;}
.ws18{word-spacing:0.580500px;}
.ws55{word-spacing:0.705000px;}
.ws31{word-spacing:0.775500px;}
.ws38{word-spacing:0.846000px;}
.ws36{word-spacing:0.916500px;}
.ws22{word-spacing:1.057500px;}
.ws2d{word-spacing:1.128000px;}
.ws5a{word-spacing:1.198500px;}
.ws29{word-spacing:1.269000px;}
.ws59{word-spacing:1.339500px;}
.ws28{word-spacing:1.410000px;}
.ws4a{word-spacing:1.480500px;}
.ws3f{word-spacing:1.621500px;}
.ws34{word-spacing:1.692000px;}
.ws5c{word-spacing:1.762500px;}
.ws5b{word-spacing:1.833000px;}
.ws42{word-spacing:1.903500px;}
.ws49{word-spacing:1.974000px;}
.ws68{word-spacing:2.044500px;}
.ws16{word-spacing:2.064000px;}
.ws6f{word-spacing:2.115000px;}
.ws8{word-spacing:2.322000px;}
.ws52{word-spacing:2.326500px;}
.ws65{word-spacing:2.397000px;}
.ws64{word-spacing:2.467500px;}
.ws4f{word-spacing:2.608500px;}
.ws33{word-spacing:2.749500px;}
.ws6{word-spacing:2.773500px;}
.ws3b{word-spacing:2.820000px;}
.ws63{word-spacing:2.890500px;}
.ws51{word-spacing:2.961000px;}
.ws70{word-spacing:2.967000px;}
.ws54{word-spacing:3.031500px;}
.wsf{word-spacing:3.096000px;}
.ws47{word-spacing:3.102000px;}
.ws20{word-spacing:3.243000px;}
.ws35{word-spacing:3.313500px;}
.ws58{word-spacing:3.384000px;}
.ws23{word-spacing:3.454500px;}
.ws67{word-spacing:3.595500px;}
.ws50{word-spacing:3.666000px;}
.ws5e{word-spacing:3.736500px;}
.wsc{word-spacing:3.805500px;}
.ws2b{word-spacing:3.807000px;}
.ws60{word-spacing:3.877500px;}
.ws43{word-spacing:4.018500px;}
.ws10{word-spacing:4.257000px;}
.ws39{word-spacing:4.300500px;}
.wsd{word-spacing:4.386000px;}
.ws1f{word-spacing:4.441500px;}
.ws9{word-spacing:4.450500px;}
.ws44{word-spacing:4.512000px;}
.ws2c{word-spacing:4.582500px;}
.ws2e{word-spacing:4.653000px;}
.ws6e{word-spacing:4.723500px;}
.ws3a{word-spacing:4.794000px;}
.ws6b{word-spacing:4.864500px;}
.ws4d{word-spacing:4.935000px;}
.ws3e{word-spacing:5.146500px;}
.ws37{word-spacing:5.217000px;}
.ws2f{word-spacing:5.287500px;}
.ws32{word-spacing:5.358000px;}
.ws48{word-spacing:5.428500px;}
.ws5d{word-spacing:5.499000px;}
.ws26{word-spacing:5.710500px;}
.ws25{word-spacing:5.781000px;}
.ws21{word-spacing:5.851500px;}
.ws3d{word-spacing:5.922000px;}
.ws56{word-spacing:5.992500px;}
.ws6a{word-spacing:6.133500px;}
.ws7{word-spacing:6.192000px;}
.ws57{word-spacing:6.204000px;}
.ws3c{word-spacing:6.274500px;}
.ws66{word-spacing:6.345000px;}
.ws30{word-spacing:6.415500px;}
.ws14{word-spacing:6.514500px;}
.ws61{word-spacing:6.556500px;}
.ws53{word-spacing:6.627000px;}
.ws24{word-spacing:6.838500px;}
.ws69{word-spacing:6.979500px;}
.ws15{word-spacing:7.030500px;}
.ws17{word-spacing:7.095000px;}
.ws4c{word-spacing:7.120500px;}
.wsa{word-spacing:7.159500px;}
.ws5{word-spacing:7.417500px;}
.ws11{word-spacing:7.611000px;}
.ws5f{word-spacing:7.684500px;}
.ws46{word-spacing:7.755000px;}
.ws62{word-spacing:8.037000px;}
.ws12{word-spacing:8.062500px;}
.ws45{word-spacing:8.107500px;}
.ws2a{word-spacing:8.812500px;}
.ws1c{word-spacing:10.656000px;}
.ws1b{word-spacing:13.344000px;}
.ws1{word-spacing:14.178000px;}
._7{margin-left:-24.000000px;}
._1{margin-left:-14.178000px;}
._6{margin-left:-12.514800px;}
._2{margin-left:-1.354500px;}
._4{width:1.290000px;}
._a{width:5.076000px;}
._3{width:7.353000px;}
._5{width:13.344000px;}
._8{width:15.351000px;}
._9{width:1485.069000px;}
._0{width:1961.001000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs9{font-size:48.375000px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:52.500000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:64.500000px;}
.fs7{font-size:69.000000px;}
.fs4{font-size:70.500000px;}
.fs3{font-size:88.200000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.319350px;}
.y2e{bottom:76.777350px;}
.y59{bottom:132.423975px;}
.y2c{bottom:133.128900px;}
.y84{bottom:133.498500px;}
.y2b{bottom:145.920900px;}
.ya0{bottom:150.419100px;}
.y58{bottom:151.617600px;}
.y83{bottom:152.692125px;}
.y2a{bottom:165.080250px;}
.y9f{bottom:169.612725px;}
.y57{bottom:170.811225px;}
.y82{bottom:171.885750px;}
.y29{bottom:184.256250px;}
.y9e{bottom:188.806350px;}
.y56{bottom:190.004850px;}
.y81{bottom:191.079375px;}
.y28{bottom:203.432250px;}
.y9d{bottom:207.999975px;}
.y55{bottom:209.198475px;}
.y80{bottom:210.273000px;}
.y27{bottom:222.608250px;}
.y9c{bottom:227.193600px;}
.y54{bottom:228.392100px;}
.y7f{bottom:229.466625px;}
.y26{bottom:235.400250px;}
.y9b{bottom:246.387225px;}
.y53{bottom:247.585725px;}
.y7e{bottom:248.660250px;}
.y9a{bottom:265.580850px;}
.y52{bottom:266.779350px;}
.y7d{bottom:267.853875px;}
.y25{bottom:278.050350px;}
.y99{bottom:284.774475px;}
.y51{bottom:285.972975px;}
.y7c{bottom:287.047500px;}
.y24{bottom:295.642725px;}
.y98{bottom:303.968100px;}
.y50{bottom:305.166600px;}
.y7b{bottom:306.241125px;}
.y23{bottom:322.039350px;}
.y97{bottom:323.161725px;}
.y4f{bottom:324.360225px;}
.y7a{bottom:325.434750px;}
.y22{bottom:339.631725px;}
.y96{bottom:342.355350px;}
.y4e{bottom:343.553850px;}
.y79{bottom:344.628375px;}
.y21{bottom:357.224100px;}
.y95{bottom:361.548975px;}
.y4d{bottom:362.747475px;}
.y78{bottom:363.822000px;}
.y20{bottom:374.816475px;}
.y94{bottom:380.742600px;}
.y4c{bottom:381.941100px;}
.y77{bottom:383.015625px;}
.y1f{bottom:392.408850px;}
.y93{bottom:399.936225px;}
.y4b{bottom:401.134725px;}
.y76{bottom:402.209250px;}
.y1e{bottom:410.001225px;}
.y92{bottom:419.129850px;}
.y4a{bottom:420.328350px;}
.y75{bottom:421.402875px;}
.y1d{bottom:427.593600px;}
.y91{bottom:438.323475px;}
.y49{bottom:439.521975px;}
.y74{bottom:440.596500px;}
.y1c{bottom:445.185975px;}
.y90{bottom:457.517100px;}
.y48{bottom:458.715600px;}
.y73{bottom:459.790125px;}
.y1b{bottom:462.778350px;}
.y8f{bottom:476.710725px;}
.y47{bottom:477.909225px;}
.y72{bottom:478.983750px;}
.y1a{bottom:480.370725px;}
.y8e{bottom:495.904350px;}
.y46{bottom:497.102850px;}
.y19{bottom:497.963100px;}
.y8d{bottom:515.097975px;}
.y18{bottom:515.555475px;}
.y45{bottom:516.296475px;}
.y71{bottom:517.353375px;}
.y8c{bottom:534.291600px;}
.y44{bottom:535.490100px;}
.y17{bottom:546.499350px;}
.y8b{bottom:553.485225px;}
.y43{bottom:554.683725px;}
.y16{bottom:564.091725px;}
.y70{bottom:572.678250px;}
.y8a{bottom:572.678850px;}
.y42{bottom:573.877350px;}
.y15{bottom:590.488350px;}
.y6f{bottom:591.871875px;}
.y89{bottom:591.872475px;}
.y41{bottom:593.070975px;}
.y14{bottom:608.080725px;}
.y6e{bottom:611.065500px;}
.y88{bottom:611.066100px;}
.yb0{bottom:622.338675px;}
.y13{bottom:625.673100px;}
.y6d{bottom:630.259125px;}
.y87{bottom:630.259725px;}
.y40{bottom:631.440600px;}
.yaf{bottom:639.931050px;}
.y12{bottom:643.265475px;}
.y6c{bottom:649.452750px;}
.y86{bottom:649.453350px;}
.yae{bottom:657.523425px;}
.y11{bottom:660.857850px;}
.y6b{bottom:668.646375px;}
.y85{bottom:668.646975px;}
.yad{bottom:675.115800px;}
.y10{bottom:678.450225px;}
.y6a{bottom:687.840000px;}
.y3f{bottom:687.840600px;}
.yac{bottom:692.708175px;}
.yf{bottom:696.042600px;}
.y69{bottom:707.033625px;}
.y3e{bottom:707.034225px;}
.yab{bottom:710.304675px;}
.ye{bottom:713.634975px;}
.y68{bottom:726.227250px;}
.y3d{bottom:726.227850px;}
.yaa{bottom:727.897050px;}
.yd{bottom:731.227350px;}
.y67{bottom:745.420875px;}
.y3c{bottom:745.421475px;}
.yc{bottom:748.819725px;}
.y66{bottom:764.614500px;}
.y3b{bottom:764.615100px;}
.ya9{bottom:764.649750px;}
.yb{bottom:766.412100px;}
.y65{bottom:783.808125px;}
.y3a{bottom:783.808725px;}
.ya{bottom:784.004475px;}
.y9{bottom:801.596850px;}
.y64{bottom:803.001750px;}
.y39{bottom:803.002350px;}
.y63{bottom:822.195375px;}
.y38{bottom:822.195975px;}
.ya8{bottom:822.213000px;}
.y62{bottom:841.389000px;}
.y37{bottom:841.389600px;}
.ya7{bottom:841.406625px;}
.y61{bottom:860.582625px;}
.y36{bottom:860.583225px;}
.ya6{bottom:860.600250px;}
.y8{bottom:870.799575px;}
.y60{bottom:879.776250px;}
.y35{bottom:879.776850px;}
.ya5{bottom:879.793875px;}
.y7{bottom:889.993200px;}
.y5f{bottom:898.969875px;}
.y34{bottom:898.970475px;}
.ya4{bottom:898.987500px;}
.y5e{bottom:918.163500px;}
.y33{bottom:918.164100px;}
.ya3{bottom:918.181125px;}
.y6{bottom:930.442500px;}
.y5d{bottom:937.357125px;}
.y32{bottom:937.357725px;}
.ya2{bottom:937.374750px;}
.y5c{bottom:956.550750px;}
.y31{bottom:956.551350px;}
.ya1{bottom:956.568375px;}
.y5b{bottom:975.744375px;}
.y30{bottom:975.744975px;}
.y5{bottom:987.826500px;}
.y5a{bottom:994.938000px;}
.y2f{bottom:994.938600px;}
.y2d{bottom:1028.954250px;}
.y2{bottom:1058.013000px;}
.y4{bottom:1082.778450px;}
.y3{bottom:1096.280700px;}
.ha{height:35.328000px;}
.h9{height:36.000000px;}
.hb{height:36.567000px;}
.h4{height:37.536000px;}
.h3{height:38.250000px;}
.h2{height:42.792000px;}
.hc{height:55.647000px;}
.h8{height:55.663500px;}
.h7{height:60.841500px;}
.h6{height:73.735200px;}
.h5{height:103.560000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.xc{left:85.039350px;}
.x2{left:93.883500px;}
.xe{left:106.299150px;}
.xf{left:115.132950px;}
.x10{left:117.264750px;}
.x9{left:119.395500px;}
.xa{left:154.039800px;}
.xb{left:160.039800px;}
.x8{left:189.814725px;}
.x7{left:211.180350px;}
.x6{left:290.938575px;}
.x3{left:306.486000px;}
.x5{left:325.571700px;}
.x4{left:369.842550px;}
.xd{left:642.017700px;}
.x1{left:750.774600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.146667pt;}
.lsd{letter-spacing:-1.089333pt;}
.lse{letter-spacing:-1.032000pt;}
.lsf{letter-spacing:-0.630667pt;}
.ls15{letter-spacing:-0.626667pt;}
.lsb{letter-spacing:-0.573333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.057333pt;}
.ls16{letter-spacing:0.125333pt;}
.ls12{letter-spacing:0.188000pt;}
.ls3{letter-spacing:0.229333pt;}
.ls4{letter-spacing:0.286667pt;}
.ls7{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.653333pt;}
.ls6{letter-spacing:0.688000pt;}
.ls19{letter-spacing:0.745333pt;}
.ls0{letter-spacing:0.802667pt;}
.ls1{letter-spacing:0.860000pt;}
.lsa{letter-spacing:1.097600pt;}
.ls17{letter-spacing:1.253333pt;}
.ls18{letter-spacing:1.441333pt;}
.ls5{letter-spacing:1.490667pt;}
.ls9{letter-spacing:1.493333pt;}
.ls10{letter-spacing:763.168533pt;}
.ls14{letter-spacing:781.890667pt;}
.ls13{letter-spacing:840.556800pt;}
.ws1d{word-spacing:-15.666667pt;}
.ws6d{word-spacing:-14.333333pt;}
.ws40{word-spacing:-12.320000pt;}
.ws6c{word-spacing:-10.750000pt;}
.ws2{word-spacing:-1.493333pt;}
.ws19{word-spacing:-1.490667pt;}
.ws3{word-spacing:-1.097600pt;}
.ws4{word-spacing:-0.802667pt;}
.ws41{word-spacing:-0.653333pt;}
.ws1e{word-spacing:-0.326667pt;}
.ws13{word-spacing:-0.229333pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.057333pt;}
.ws4b{word-spacing:0.062667pt;}
.ws4e{word-spacing:0.188000pt;}
.wsb{word-spacing:0.229333pt;}
.ws1a{word-spacing:0.341333pt;}
.ws27{word-spacing:0.376000pt;}
.ws18{word-spacing:0.516000pt;}
.ws55{word-spacing:0.626667pt;}
.ws31{word-spacing:0.689333pt;}
.ws38{word-spacing:0.752000pt;}
.ws36{word-spacing:0.814667pt;}
.ws22{word-spacing:0.940000pt;}
.ws2d{word-spacing:1.002667pt;}
.ws5a{word-spacing:1.065333pt;}
.ws29{word-spacing:1.128000pt;}
.ws59{word-spacing:1.190667pt;}
.ws28{word-spacing:1.253333pt;}
.ws4a{word-spacing:1.316000pt;}
.ws3f{word-spacing:1.441333pt;}
.ws34{word-spacing:1.504000pt;}
.ws5c{word-spacing:1.566667pt;}
.ws5b{word-spacing:1.629333pt;}
.ws42{word-spacing:1.692000pt;}
.ws49{word-spacing:1.754667pt;}
.ws68{word-spacing:1.817333pt;}
.ws16{word-spacing:1.834667pt;}
.ws6f{word-spacing:1.880000pt;}
.ws8{word-spacing:2.064000pt;}
.ws52{word-spacing:2.068000pt;}
.ws65{word-spacing:2.130667pt;}
.ws64{word-spacing:2.193333pt;}
.ws4f{word-spacing:2.318667pt;}
.ws33{word-spacing:2.444000pt;}
.ws6{word-spacing:2.465333pt;}
.ws3b{word-spacing:2.506667pt;}
.ws63{word-spacing:2.569333pt;}
.ws51{word-spacing:2.632000pt;}
.ws70{word-spacing:2.637333pt;}
.ws54{word-spacing:2.694667pt;}
.wsf{word-spacing:2.752000pt;}
.ws47{word-spacing:2.757333pt;}
.ws20{word-spacing:2.882667pt;}
.ws35{word-spacing:2.945333pt;}
.ws58{word-spacing:3.008000pt;}
.ws23{word-spacing:3.070667pt;}
.ws67{word-spacing:3.196000pt;}
.ws50{word-spacing:3.258667pt;}
.ws5e{word-spacing:3.321333pt;}
.wsc{word-spacing:3.382667pt;}
.ws2b{word-spacing:3.384000pt;}
.ws60{word-spacing:3.446667pt;}
.ws43{word-spacing:3.572000pt;}
.ws10{word-spacing:3.784000pt;}
.ws39{word-spacing:3.822667pt;}
.wsd{word-spacing:3.898667pt;}
.ws1f{word-spacing:3.948000pt;}
.ws9{word-spacing:3.956000pt;}
.ws44{word-spacing:4.010667pt;}
.ws2c{word-spacing:4.073333pt;}
.ws2e{word-spacing:4.136000pt;}
.ws6e{word-spacing:4.198667pt;}
.ws3a{word-spacing:4.261333pt;}
.ws6b{word-spacing:4.324000pt;}
.ws4d{word-spacing:4.386667pt;}
.ws3e{word-spacing:4.574667pt;}
.ws37{word-spacing:4.637333pt;}
.ws2f{word-spacing:4.700000pt;}
.ws32{word-spacing:4.762667pt;}
.ws48{word-spacing:4.825333pt;}
.ws5d{word-spacing:4.888000pt;}
.ws26{word-spacing:5.076000pt;}
.ws25{word-spacing:5.138667pt;}
.ws21{word-spacing:5.201333pt;}
.ws3d{word-spacing:5.264000pt;}
.ws56{word-spacing:5.326667pt;}
.ws6a{word-spacing:5.452000pt;}
.ws7{word-spacing:5.504000pt;}
.ws57{word-spacing:5.514667pt;}
.ws3c{word-spacing:5.577333pt;}
.ws66{word-spacing:5.640000pt;}
.ws30{word-spacing:5.702667pt;}
.ws14{word-spacing:5.790667pt;}
.ws61{word-spacing:5.828000pt;}
.ws53{word-spacing:5.890667pt;}
.ws24{word-spacing:6.078667pt;}
.ws69{word-spacing:6.204000pt;}
.ws15{word-spacing:6.249333pt;}
.ws17{word-spacing:6.306667pt;}
.ws4c{word-spacing:6.329333pt;}
.wsa{word-spacing:6.364000pt;}
.ws5{word-spacing:6.593333pt;}
.ws11{word-spacing:6.765333pt;}
.ws5f{word-spacing:6.830667pt;}
.ws46{word-spacing:6.893333pt;}
.ws62{word-spacing:7.144000pt;}
.ws12{word-spacing:7.166667pt;}
.ws45{word-spacing:7.206667pt;}
.ws2a{word-spacing:7.833333pt;}
.ws1c{word-spacing:9.472000pt;}
.ws1b{word-spacing:11.861333pt;}
.ws1{word-spacing:12.602667pt;}
._7{margin-left:-21.333333pt;}
._1{margin-left:-12.602667pt;}
._6{margin-left:-11.124267pt;}
._2{margin-left:-1.204000pt;}
._4{width:1.146667pt;}
._a{width:4.512000pt;}
._3{width:6.536000pt;}
._5{width:11.861333pt;}
._8{width:13.645333pt;}
._9{width:1320.061333pt;}
._0{width:1743.112000pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:43.000000pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:46.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:57.333333pt;}
.fs7{font-size:61.333333pt;}
.fs4{font-size:62.666667pt;}
.fs3{font-size:78.400000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.950533pt;}
.y2e{bottom:68.246533pt;}
.y59{bottom:117.710200pt;}
.y2c{bottom:118.336800pt;}
.y84{bottom:118.665333pt;}
.y2b{bottom:129.707467pt;}
.ya0{bottom:133.705867pt;}
.y58{bottom:134.771200pt;}
.y83{bottom:135.726333pt;}
.y2a{bottom:146.738000pt;}
.y9f{bottom:150.766867pt;}
.y57{bottom:151.832200pt;}
.y82{bottom:152.787333pt;}
.y29{bottom:163.783333pt;}
.y9e{bottom:167.827867pt;}
.y56{bottom:168.893200pt;}
.y81{bottom:169.848333pt;}
.y28{bottom:180.828667pt;}
.y9d{bottom:184.888867pt;}
.y55{bottom:185.954200pt;}
.y80{bottom:186.909333pt;}
.y27{bottom:197.874000pt;}
.y9c{bottom:201.949867pt;}
.y54{bottom:203.015200pt;}
.y7f{bottom:203.970333pt;}
.y26{bottom:209.244667pt;}
.y9b{bottom:219.010867pt;}
.y53{bottom:220.076200pt;}
.y7e{bottom:221.031333pt;}
.y9a{bottom:236.071867pt;}
.y52{bottom:237.137200pt;}
.y7d{bottom:238.092333pt;}
.y25{bottom:247.155867pt;}
.y99{bottom:253.132867pt;}
.y51{bottom:254.198200pt;}
.y7c{bottom:255.153333pt;}
.y24{bottom:262.793533pt;}
.y98{bottom:270.193867pt;}
.y50{bottom:271.259200pt;}
.y7b{bottom:272.214333pt;}
.y23{bottom:286.257200pt;}
.y97{bottom:287.254867pt;}
.y4f{bottom:288.320200pt;}
.y7a{bottom:289.275333pt;}
.y22{bottom:301.894867pt;}
.y96{bottom:304.315867pt;}
.y4e{bottom:305.381200pt;}
.y79{bottom:306.336333pt;}
.y21{bottom:317.532533pt;}
.y95{bottom:321.376867pt;}
.y4d{bottom:322.442200pt;}
.y78{bottom:323.397333pt;}
.y20{bottom:333.170200pt;}
.y94{bottom:338.437867pt;}
.y4c{bottom:339.503200pt;}
.y77{bottom:340.458333pt;}
.y1f{bottom:348.807867pt;}
.y93{bottom:355.498867pt;}
.y4b{bottom:356.564200pt;}
.y76{bottom:357.519333pt;}
.y1e{bottom:364.445533pt;}
.y92{bottom:372.559867pt;}
.y4a{bottom:373.625200pt;}
.y75{bottom:374.580333pt;}
.y1d{bottom:380.083200pt;}
.y91{bottom:389.620867pt;}
.y49{bottom:390.686200pt;}
.y74{bottom:391.641333pt;}
.y1c{bottom:395.720867pt;}
.y90{bottom:406.681867pt;}
.y48{bottom:407.747200pt;}
.y73{bottom:408.702333pt;}
.y1b{bottom:411.358533pt;}
.y8f{bottom:423.742867pt;}
.y47{bottom:424.808200pt;}
.y72{bottom:425.763333pt;}
.y1a{bottom:426.996200pt;}
.y8e{bottom:440.803867pt;}
.y46{bottom:441.869200pt;}
.y19{bottom:442.633867pt;}
.y8d{bottom:457.864867pt;}
.y18{bottom:458.271533pt;}
.y45{bottom:458.930200pt;}
.y71{bottom:459.869667pt;}
.y8c{bottom:474.925867pt;}
.y44{bottom:475.991200pt;}
.y17{bottom:485.777200pt;}
.y8b{bottom:491.986867pt;}
.y43{bottom:493.052200pt;}
.y16{bottom:501.414867pt;}
.y70{bottom:509.047333pt;}
.y8a{bottom:509.047867pt;}
.y42{bottom:510.113200pt;}
.y15{bottom:524.878533pt;}
.y6f{bottom:526.108333pt;}
.y89{bottom:526.108867pt;}
.y41{bottom:527.174200pt;}
.y14{bottom:540.516200pt;}
.y6e{bottom:543.169333pt;}
.y88{bottom:543.169867pt;}
.yb0{bottom:553.189933pt;}
.y13{bottom:556.153867pt;}
.y6d{bottom:560.230333pt;}
.y87{bottom:560.230867pt;}
.y40{bottom:561.280533pt;}
.yaf{bottom:568.827600pt;}
.y12{bottom:571.791533pt;}
.y6c{bottom:577.291333pt;}
.y86{bottom:577.291867pt;}
.yae{bottom:584.465267pt;}
.y11{bottom:587.429200pt;}
.y6b{bottom:594.352333pt;}
.y85{bottom:594.352867pt;}
.yad{bottom:600.102933pt;}
.y10{bottom:603.066867pt;}
.y6a{bottom:611.413333pt;}
.y3f{bottom:611.413867pt;}
.yac{bottom:615.740600pt;}
.yf{bottom:618.704533pt;}
.y69{bottom:628.474333pt;}
.y3e{bottom:628.474867pt;}
.yab{bottom:631.381933pt;}
.ye{bottom:634.342200pt;}
.y68{bottom:645.535333pt;}
.y3d{bottom:645.535867pt;}
.yaa{bottom:647.019600pt;}
.yd{bottom:649.979867pt;}
.y67{bottom:662.596333pt;}
.y3c{bottom:662.596867pt;}
.yc{bottom:665.617533pt;}
.y66{bottom:679.657333pt;}
.y3b{bottom:679.657867pt;}
.ya9{bottom:679.688667pt;}
.yb{bottom:681.255200pt;}
.y65{bottom:696.718333pt;}
.y3a{bottom:696.718867pt;}
.ya{bottom:696.892867pt;}
.y9{bottom:712.530533pt;}
.y64{bottom:713.779333pt;}
.y39{bottom:713.779867pt;}
.y63{bottom:730.840333pt;}
.y38{bottom:730.840867pt;}
.ya8{bottom:730.856000pt;}
.y62{bottom:747.901333pt;}
.y37{bottom:747.901867pt;}
.ya7{bottom:747.917000pt;}
.y61{bottom:764.962333pt;}
.y36{bottom:764.962867pt;}
.ya6{bottom:764.978000pt;}
.y8{bottom:774.044067pt;}
.y60{bottom:782.023333pt;}
.y35{bottom:782.023867pt;}
.ya5{bottom:782.039000pt;}
.y7{bottom:791.105067pt;}
.y5f{bottom:799.084333pt;}
.y34{bottom:799.084867pt;}
.ya4{bottom:799.100000pt;}
.y5e{bottom:816.145333pt;}
.y33{bottom:816.145867pt;}
.ya3{bottom:816.161000pt;}
.y6{bottom:827.060000pt;}
.y5d{bottom:833.206333pt;}
.y32{bottom:833.206867pt;}
.ya2{bottom:833.222000pt;}
.y5c{bottom:850.267333pt;}
.y31{bottom:850.267867pt;}
.ya1{bottom:850.283000pt;}
.y5b{bottom:867.328333pt;}
.y30{bottom:867.328867pt;}
.y5{bottom:878.068000pt;}
.y5a{bottom:884.389333pt;}
.y2f{bottom:884.389867pt;}
.y2d{bottom:914.626000pt;}
.y2{bottom:940.456000pt;}
.y4{bottom:962.469733pt;}
.y3{bottom:974.471733pt;}
.ha{height:31.402667pt;}
.h9{height:32.000000pt;}
.hb{height:32.504000pt;}
.h4{height:33.365333pt;}
.h3{height:34.000000pt;}
.h2{height:38.037333pt;}
.hc{height:49.464000pt;}
.h8{height:49.478667pt;}
.h7{height:54.081333pt;}
.h6{height:65.542400pt;}
.h5{height:92.053333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.xc{left:75.590533pt;}
.x2{left:83.452000pt;}
.xe{left:94.488133pt;}
.xf{left:102.340400pt;}
.x10{left:104.235333pt;}
.x9{left:106.129333pt;}
.xa{left:136.924267pt;}
.xb{left:142.257600pt;}
.x8{left:168.724200pt;}
.x7{left:187.715867pt;}
.x6{left:258.612067pt;}
.x3{left:272.432000pt;}
.x5{left:289.397067pt;}
.x4{left:328.748933pt;}
.xd{left:570.682400pt;}
.x1{left:667.355200pt;}
}




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