
    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_d6a9e8214828de78c5182c16.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a82fed55fc86dbae02589c28.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_aed274f4ae46ac0970fee74f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_2d3336868dad0592e0a54d18.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_acbf24832635abe1c4bfd1c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_eca17c5efad97d6c38241de7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_ffdea3c9777ecf7fb7428bfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_c6b230a06e53ed439d188554.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_0b4c532541a089618c705c11.woff')format("woff");}.ff9{font-family:ff9;line-height:0.952637;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_82705b648e19fd862d7e7a9b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_ff72a4643689796107aed3bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.952637;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_3ffef8b1cbd6d91f15156e7c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls16{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.936000px;}
.ls1d{letter-spacing:1.152000px;}
.ls20{letter-spacing:3.355200px;}
.ls1{letter-spacing:4.560000px;}
.ls1f{letter-spacing:4.752000px;}
.lse{letter-spacing:6.300000px;}
.ls2{letter-spacing:10.592292px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws25{word-spacing:-18.504000px;}
.ws1e{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.424000px;}
.ws1d{word-spacing:-17.208000px;}
.ws2e{word-spacing:-14.520000px;}
.ws2a{word-spacing:-14.220000px;}
.ws1{word-spacing:-14.162400px;}
.ws28{word-spacing:-12.336000px;}
.ws29{word-spacing:-11.856000px;}
.wsd{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.152000px;}
.ws20{word-spacing:-0.936000px;}
.ws21{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.720000px;}
.ws22{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.144000px;}
.ws6{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.072000px;}
.ws7{word-spacing:0.144000px;}
.ws26{word-spacing:0.216000px;}
.ws13{word-spacing:0.288000px;}
.ws2f{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws18{word-spacing:0.432000px;}
.ws2b{word-spacing:0.480000px;}
.wsa{word-spacing:0.504000px;}
.ws1f{word-spacing:0.576000px;}
.ws2c{word-spacing:0.600000px;}
.wsc{word-spacing:0.648000px;}
.ws23{word-spacing:0.720000px;}
.ws15{word-spacing:0.864000px;}
.ws1c{word-spacing:0.936000px;}
.ws5{word-spacing:1.440000px;}
.ws4{word-spacing:1.800000px;}
.ws2{word-spacing:4.200000px;}
.ws11{word-spacing:5.700000px;}
.ws0{word-spacing:8.376000px;}
._0{margin-left:-940.386000px;}
._e{margin-left:-20.060400px;}
._14{margin-left:-17.784000px;}
._d{margin-left:-14.654400px;}
._15{margin-left:-10.512000px;}
._c{margin-left:-8.204400px;}
._b{margin-left:-7.010400px;}
._1{margin-left:-5.964000px;}
._11{margin-left:-3.986400px;}
._7{margin-left:-2.762400px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.744000px;}
._8{width:4.970400px;}
._6{width:6.912000px;}
._4{width:8.448000px;}
._a{width:9.724800px;}
._9{width:11.011200px;}
._13{width:12.936000px;}
._12{width:22.958400px;}
._f{width:31.646100px;}
._10{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y68{bottom:117.000000px;}
.y44{bottom:117.078000px;}
.y1e{bottom:121.207500px;}
.ybe{bottom:121.722000px;}
.y95{bottom:122.994150px;}
.y43{bottom:138.984000px;}
.y67{bottom:139.500000px;}
.ybd{bottom:140.322000px;}
.y94{bottom:141.744150px;}
.ybc{bottom:158.922000px;}
.y93{bottom:160.494150px;}
.y42{bottom:160.890000px;}
.y66{bottom:162.000000px;}
.y1d{bottom:166.104300px;}
.ybb{bottom:177.522000px;}
.y92{bottom:179.244150px;}
.y41{bottom:182.796000px;}
.y65{bottom:184.500000px;}
.y1c{bottom:188.604300px;}
.y91{bottom:197.994150px;}
.y40{bottom:204.702000px;}
.y64{bottom:207.000000px;}
.yba{bottom:210.972000px;}
.y1b{bottom:211.104300px;}
.y90{bottom:216.744150px;}
.y3f{bottom:226.608000px;}
.y63{bottom:229.500000px;}
.y1a{bottom:233.604300px;}
.y8f{bottom:235.494150px;}
.yb9{bottom:247.422000px;}
.y3e{bottom:248.514000px;}
.y62{bottom:252.000000px;}
.y8e{bottom:254.244150px;}
.y19{bottom:256.104300px;}
.yb8{bottom:266.022000px;}
.y3d{bottom:270.420000px;}
.y8d{bottom:272.994150px;}
.y61{bottom:274.500000px;}
.y18{bottom:278.604300px;}
.yb7{bottom:284.622000px;}
.y8c{bottom:291.744150px;}
.y3c{bottom:292.326000px;}
.y60{bottom:297.000000px;}
.y17{bottom:301.104300px;}
.yb6{bottom:303.222000px;}
.y8b{bottom:310.494150px;}
.y3b{bottom:314.232000px;}
.y5f{bottom:319.500000px;}
.yb5{bottom:321.822000px;}
.y16{bottom:323.604300px;}
.y8a{bottom:329.244150px;}
.y3a{bottom:336.138000px;}
.yb4{bottom:340.422000px;}
.y5e{bottom:342.000000px;}
.y15{bottom:346.104300px;}
.y89{bottom:347.994150px;}
.y39{bottom:358.044000px;}
.yb3{bottom:359.022000px;}
.y5d{bottom:364.500000px;}
.y88{bottom:366.744150px;}
.y14{bottom:368.604300px;}
.yb2{bottom:377.622000px;}
.y38{bottom:379.950000px;}
.y87{bottom:385.494150px;}
.y5c{bottom:387.000000px;}
.y13{bottom:391.104300px;}
.yb1{bottom:396.222000px;}
.y37{bottom:401.856000px;}
.y86{bottom:404.244150px;}
.y5b{bottom:409.500000px;}
.y12{bottom:413.604300px;}
.yb0{bottom:414.822000px;}
.y85{bottom:422.994150px;}
.y36{bottom:423.762000px;}
.y5a{bottom:432.000000px;}
.yaf{bottom:433.422000px;}
.y11{bottom:436.104300px;}
.y84{bottom:441.744150px;}
.y35{bottom:445.668000px;}
.yae{bottom:452.022000px;}
.y59{bottom:454.500000px;}
.y10{bottom:458.604300px;}
.y83{bottom:460.494150px;}
.y34{bottom:467.574000px;}
.yad{bottom:470.622000px;}
.y58{bottom:477.000000px;}
.y82{bottom:479.244150px;}
.yf{bottom:481.104300px;}
.yac{bottom:489.222000px;}
.y33{bottom:489.480000px;}
.y81{bottom:497.994150px;}
.y57{bottom:499.500000px;}
.ye{bottom:503.604300px;}
.yab{bottom:507.822000px;}
.y32{bottom:511.386000px;}
.y80{bottom:516.744150px;}
.y56{bottom:522.000000px;}
.yd{bottom:526.104300px;}
.yaa{bottom:526.422000px;}
.y31{bottom:533.292000px;}
.y7f{bottom:535.494150px;}
.y55{bottom:544.500000px;}
.ya9{bottom:545.022000px;}
.yc{bottom:548.604300px;}
.y30{bottom:555.198000px;}
.y7e{bottom:560.628000px;}
.ya8{bottom:563.622000px;}
.y54{bottom:567.000000px;}
.yb{bottom:571.104300px;}
.y2f{bottom:577.104000px;}
.ya7{bottom:582.222000px;}
.y53{bottom:589.500000px;}
.ya{bottom:593.604300px;}
.y2e{bottom:599.010000px;}
.ya6{bottom:600.822000px;}
.y7d{bottom:605.628000px;}
.y52{bottom:612.000000px;}
.y9{bottom:616.104300px;}
.ya5{bottom:619.422000px;}
.y7c{bottom:620.628000px;}
.y2d{bottom:620.916000px;}
.y51{bottom:634.500000px;}
.y7b{bottom:635.628000px;}
.ya4{bottom:638.022000px;}
.y8{bottom:638.604300px;}
.y2c{bottom:642.822000px;}
.y7a{bottom:650.628000px;}
.ya3{bottom:656.622000px;}
.y50{bottom:657.000000px;}
.y6{bottom:661.104300px;}
.y2b{bottom:664.728000px;}
.y79{bottom:665.628000px;}
.ya2{bottom:675.222000px;}
.y4f{bottom:679.500000px;}
.y78{bottom:680.628000px;}
.y7{bottom:683.604300px;}
.y2a{bottom:686.634000px;}
.ya1{bottom:693.822000px;}
.y77{bottom:695.628000px;}
.y4e{bottom:702.000000px;}
.y29{bottom:708.540000px;}
.y76{bottom:710.628000px;}
.ya0{bottom:712.422000px;}
.y4d{bottom:724.500000px;}
.y75{bottom:725.628000px;}
.y28{bottom:730.446000px;}
.y9f{bottom:731.022000px;}
.y74{bottom:740.628000px;}
.y4c{bottom:747.000000px;}
.y9e{bottom:749.622000px;}
.y5{bottom:751.104300px;}
.y27{bottom:752.352000px;}
.y73{bottom:755.628000px;}
.y4b{bottom:769.500000px;}
.y72{bottom:770.628000px;}
.y26{bottom:774.258000px;}
.y9d{bottom:774.600000px;}
.y71{bottom:785.628000px;}
.y4a{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.y25{bottom:796.164000px;}
.y70{bottom:800.628000px;}
.y49{bottom:814.500000px;}
.y6f{bottom:815.628000px;}
.y24{bottom:818.070000px;}
.y9c{bottom:819.300000px;}
.y6e{bottom:830.628000px;}
.y48{bottom:837.000000px;}
.y9b{bottom:837.900000px;}
.y23{bottom:839.976000px;}
.y6d{bottom:845.628000px;}
.y9a{bottom:856.500000px;}
.y3{bottom:859.500000px;}
.y6c{bottom:860.628000px;}
.y22{bottom:861.882000px;}
.y99{bottom:875.100000px;}
.y6b{bottom:875.628000px;}
.y47{bottom:882.000000px;}
.y21{bottom:883.788000px;}
.y2{bottom:889.500000px;}
.y6a{bottom:890.628000px;}
.y98{bottom:893.700000px;}
.y46{bottom:904.500000px;}
.y69{bottom:905.628000px;}
.y20{bottom:905.694000px;}
.y97{bottom:912.300000px;}
.y45{bottom:927.000000px;}
.y1f{bottom:927.600000px;}
.y96{bottom:930.900000px;}
.h8{height:30.313623px;}
.ha{height:39.072000px;}
.h1{height:39.990234px;}
.hb{height:40.757812px;}
.h3{height:42.000000px;}
.h9{height:43.007812px;}
.h4{height:50.947266px;}
.h6{height:61.136719px;}
.h7{height:66.555703px;}
.h2{height:101.894531px;}
.h5{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.386000px;}
.x2{left:112.500000px;}
.x4{left:127.388550px;}
.x3{left:153.398550px;}
.x7{left:180.511950px;}
.x1{left:635.390550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.832000pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls20{letter-spacing:2.982400pt;}
.ls1{letter-spacing:4.053333pt;}
.ls1f{letter-spacing:4.224000pt;}
.lse{letter-spacing:5.600000pt;}
.ls2{letter-spacing:9.415371pt;}
.ls0{letter-spacing:9.546667pt;}
.ws25{word-spacing:-16.448000pt;}
.ws1e{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.488000pt;}
.ws1d{word-spacing:-15.296000pt;}
.ws2e{word-spacing:-12.906667pt;}
.ws2a{word-spacing:-12.640000pt;}
.ws1{word-spacing:-12.588800pt;}
.ws28{word-spacing:-10.965333pt;}
.ws29{word-spacing:-10.538667pt;}
.wsd{word-spacing:-1.600000pt;}
.ws27{word-spacing:-1.024000pt;}
.ws20{word-spacing:-0.832000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.640000pt;}
.ws22{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.064000pt;}
.ws7{word-spacing:0.128000pt;}
.ws26{word-spacing:0.192000pt;}
.ws13{word-spacing:0.256000pt;}
.ws2f{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws18{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.426667pt;}
.wsa{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws2c{word-spacing:0.533333pt;}
.wsc{word-spacing:0.576000pt;}
.ws23{word-spacing:0.640000pt;}
.ws15{word-spacing:0.768000pt;}
.ws1c{word-spacing:0.832000pt;}
.ws5{word-spacing:1.280000pt;}
.ws4{word-spacing:1.600000pt;}
.ws2{word-spacing:3.733333pt;}
.ws11{word-spacing:5.066667pt;}
.ws0{word-spacing:7.445333pt;}
._0{margin-left:-835.898667pt;}
._e{margin-left:-17.831467pt;}
._14{margin-left:-15.808000pt;}
._d{margin-left:-13.026133pt;}
._15{margin-left:-9.344000pt;}
._c{margin-left:-7.292800pt;}
._b{margin-left:-6.231467pt;}
._1{margin-left:-5.301333pt;}
._11{margin-left:-3.543467pt;}
._7{margin-left:-2.455467pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.328000pt;}
._8{width:4.418133pt;}
._6{width:6.144000pt;}
._4{width:7.509333pt;}
._a{width:8.644267pt;}
._9{width:9.787733pt;}
._13{width:11.498667pt;}
._12{width:20.407467pt;}
._f{width:28.129867pt;}
._10{width:179.168000pt;}
.fs6{font-size:31.733333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y68{bottom:104.000000pt;}
.y44{bottom:104.069333pt;}
.y1e{bottom:107.740000pt;}
.ybe{bottom:108.197333pt;}
.y95{bottom:109.328133pt;}
.y43{bottom:123.541333pt;}
.y67{bottom:124.000000pt;}
.ybd{bottom:124.730667pt;}
.y94{bottom:125.994800pt;}
.ybc{bottom:141.264000pt;}
.y93{bottom:142.661467pt;}
.y42{bottom:143.013333pt;}
.y66{bottom:144.000000pt;}
.y1d{bottom:147.648267pt;}
.ybb{bottom:157.797333pt;}
.y92{bottom:159.328133pt;}
.y41{bottom:162.485333pt;}
.y65{bottom:164.000000pt;}
.y1c{bottom:167.648267pt;}
.y91{bottom:175.994800pt;}
.y40{bottom:181.957333pt;}
.y64{bottom:184.000000pt;}
.yba{bottom:187.530667pt;}
.y1b{bottom:187.648267pt;}
.y90{bottom:192.661467pt;}
.y3f{bottom:201.429333pt;}
.y63{bottom:204.000000pt;}
.y1a{bottom:207.648267pt;}
.y8f{bottom:209.328133pt;}
.yb9{bottom:219.930667pt;}
.y3e{bottom:220.901333pt;}
.y62{bottom:224.000000pt;}
.y8e{bottom:225.994800pt;}
.y19{bottom:227.648267pt;}
.yb8{bottom:236.464000pt;}
.y3d{bottom:240.373333pt;}
.y8d{bottom:242.661467pt;}
.y61{bottom:244.000000pt;}
.y18{bottom:247.648267pt;}
.yb7{bottom:252.997333pt;}
.y8c{bottom:259.328133pt;}
.y3c{bottom:259.845333pt;}
.y60{bottom:264.000000pt;}
.y17{bottom:267.648267pt;}
.yb6{bottom:269.530667pt;}
.y8b{bottom:275.994800pt;}
.y3b{bottom:279.317333pt;}
.y5f{bottom:284.000000pt;}
.yb5{bottom:286.064000pt;}
.y16{bottom:287.648267pt;}
.y8a{bottom:292.661467pt;}
.y3a{bottom:298.789333pt;}
.yb4{bottom:302.597333pt;}
.y5e{bottom:304.000000pt;}
.y15{bottom:307.648267pt;}
.y89{bottom:309.328133pt;}
.y39{bottom:318.261333pt;}
.yb3{bottom:319.130667pt;}
.y5d{bottom:324.000000pt;}
.y88{bottom:325.994800pt;}
.y14{bottom:327.648267pt;}
.yb2{bottom:335.664000pt;}
.y38{bottom:337.733333pt;}
.y87{bottom:342.661467pt;}
.y5c{bottom:344.000000pt;}
.y13{bottom:347.648267pt;}
.yb1{bottom:352.197333pt;}
.y37{bottom:357.205333pt;}
.y86{bottom:359.328133pt;}
.y5b{bottom:364.000000pt;}
.y12{bottom:367.648267pt;}
.yb0{bottom:368.730667pt;}
.y85{bottom:375.994800pt;}
.y36{bottom:376.677333pt;}
.y5a{bottom:384.000000pt;}
.yaf{bottom:385.264000pt;}
.y11{bottom:387.648267pt;}
.y84{bottom:392.661467pt;}
.y35{bottom:396.149333pt;}
.yae{bottom:401.797333pt;}
.y59{bottom:404.000000pt;}
.y10{bottom:407.648267pt;}
.y83{bottom:409.328133pt;}
.y34{bottom:415.621333pt;}
.yad{bottom:418.330667pt;}
.y58{bottom:424.000000pt;}
.y82{bottom:425.994800pt;}
.yf{bottom:427.648267pt;}
.yac{bottom:434.864000pt;}
.y33{bottom:435.093333pt;}
.y81{bottom:442.661467pt;}
.y57{bottom:444.000000pt;}
.ye{bottom:447.648267pt;}
.yab{bottom:451.397333pt;}
.y32{bottom:454.565333pt;}
.y80{bottom:459.328133pt;}
.y56{bottom:464.000000pt;}
.yd{bottom:467.648267pt;}
.yaa{bottom:467.930667pt;}
.y31{bottom:474.037333pt;}
.y7f{bottom:475.994800pt;}
.y55{bottom:484.000000pt;}
.ya9{bottom:484.464000pt;}
.yc{bottom:487.648267pt;}
.y30{bottom:493.509333pt;}
.y7e{bottom:498.336000pt;}
.ya8{bottom:500.997333pt;}
.y54{bottom:504.000000pt;}
.yb{bottom:507.648267pt;}
.y2f{bottom:512.981333pt;}
.ya7{bottom:517.530667pt;}
.y53{bottom:524.000000pt;}
.ya{bottom:527.648267pt;}
.y2e{bottom:532.453333pt;}
.ya6{bottom:534.064000pt;}
.y7d{bottom:538.336000pt;}
.y52{bottom:544.000000pt;}
.y9{bottom:547.648267pt;}
.ya5{bottom:550.597333pt;}
.y7c{bottom:551.669333pt;}
.y2d{bottom:551.925333pt;}
.y51{bottom:564.000000pt;}
.y7b{bottom:565.002667pt;}
.ya4{bottom:567.130667pt;}
.y8{bottom:567.648267pt;}
.y2c{bottom:571.397333pt;}
.y7a{bottom:578.336000pt;}
.ya3{bottom:583.664000pt;}
.y50{bottom:584.000000pt;}
.y6{bottom:587.648267pt;}
.y2b{bottom:590.869333pt;}
.y79{bottom:591.669333pt;}
.ya2{bottom:600.197333pt;}
.y4f{bottom:604.000000pt;}
.y78{bottom:605.002667pt;}
.y7{bottom:607.648267pt;}
.y2a{bottom:610.341333pt;}
.ya1{bottom:616.730667pt;}
.y77{bottom:618.336000pt;}
.y4e{bottom:624.000000pt;}
.y29{bottom:629.813333pt;}
.y76{bottom:631.669333pt;}
.ya0{bottom:633.264000pt;}
.y4d{bottom:644.000000pt;}
.y75{bottom:645.002667pt;}
.y28{bottom:649.285333pt;}
.y9f{bottom:649.797333pt;}
.y74{bottom:658.336000pt;}
.y4c{bottom:664.000000pt;}
.y9e{bottom:666.330667pt;}
.y5{bottom:667.648267pt;}
.y27{bottom:668.757333pt;}
.y73{bottom:671.669333pt;}
.y4b{bottom:684.000000pt;}
.y72{bottom:685.002667pt;}
.y26{bottom:688.229333pt;}
.y9d{bottom:688.533333pt;}
.y71{bottom:698.336000pt;}
.y4a{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.y25{bottom:707.701333pt;}
.y70{bottom:711.669333pt;}
.y49{bottom:724.000000pt;}
.y6f{bottom:725.002667pt;}
.y24{bottom:727.173333pt;}
.y9c{bottom:728.266667pt;}
.y6e{bottom:738.336000pt;}
.y48{bottom:744.000000pt;}
.y9b{bottom:744.800000pt;}
.y23{bottom:746.645333pt;}
.y6d{bottom:751.669333pt;}
.y9a{bottom:761.333333pt;}
.y3{bottom:764.000000pt;}
.y6c{bottom:765.002667pt;}
.y22{bottom:766.117333pt;}
.y99{bottom:777.866667pt;}
.y6b{bottom:778.336000pt;}
.y47{bottom:784.000000pt;}
.y21{bottom:785.589333pt;}
.y2{bottom:790.666667pt;}
.y6a{bottom:791.669333pt;}
.y98{bottom:794.400000pt;}
.y46{bottom:804.000000pt;}
.y69{bottom:805.002667pt;}
.y20{bottom:805.061333pt;}
.y97{bottom:810.933333pt;}
.y45{bottom:824.000000pt;}
.y1f{bottom:824.533333pt;}
.y96{bottom:827.466667pt;}
.h8{height:26.945443pt;}
.ha{height:34.730667pt;}
.h1{height:35.546875pt;}
.hb{height:36.229167pt;}
.h3{height:37.333333pt;}
.h9{height:38.229167pt;}
.h4{height:45.286458pt;}
.h6{height:54.343750pt;}
.h7{height:59.160625pt;}
.h2{height:90.572917pt;}
.h5{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.232000pt;}
.x2{left:100.000000pt;}
.x4{left:113.234267pt;}
.x3{left:136.354267pt;}
.x7{left:160.455067pt;}
.x1{left:564.791600pt;}
}




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