
    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_8e099a61facba42d0022b372.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_6792abb927f697348e8782ba.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bc27d31936e1dd1b1510a021.woff')format("woff");}.ff3{font-family:ff3;line-height:0.771973;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_0f50b6f2f6b004aef39b1ff3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_faf512736ae539ec2ecc43ed.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccb3804e3495398d6bda309d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.892090;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_467c99317570f98dcd8f3bc4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_883381829ba879bb38ee493d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8789c2ae0cae4713218f02ee.woff')format("woff");}.ff9{font-family:ff9;line-height:0.845703;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_5c7b22b2c698620d85b05cc6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_aa9a6948ac637902910edd92.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b01a18ea57441fb2c5c76ffb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_53809c08cc3132c206658333.woff')format("woff");}.ffd{font-family:ffd;line-height:0.917969;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;}
.ls18{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-1.918800px;}
.ls1b{letter-spacing:-1.620000px;}
.ls13{letter-spacing:-1.188000px;}
.ls10{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.168120px;}
.ls6{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.119880px;}
.lsf{letter-spacing:-0.108000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.086400px;}
.lse{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.119880px;}
.ls14{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.168120px;}
.ls1a{letter-spacing:0.183600px;}
.ls0{letter-spacing:0.192240px;}
.ls11{letter-spacing:0.240120px;}
.ls3{letter-spacing:0.395280px;}
.ls1c{letter-spacing:24.732000px;}
.ls8{letter-spacing:37.584000px;}
.ls19{letter-spacing:43.374960px;}
.ls15{letter-spacing:97.200000px;}
.ls12{letter-spacing:101.952000px;}
.ls7{letter-spacing:157.192200px;}
.lsb{letter-spacing:200.735280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-55.944000px;}
.ws29{word-spacing:-48.816000px;}
.ws2b{word-spacing:-48.600000px;}
.ws33{word-spacing:-46.656000px;}
.ws1f{word-spacing:-43.879320px;}
.wsc{word-spacing:-43.711200px;}
.wsd{word-spacing:-43.543080px;}
.ws27{word-spacing:-41.446080px;}
.ws18{word-spacing:-38.951640px;}
.ws1{word-spacing:-37.296000px;}
.ws3b{word-spacing:-31.288680px;}
.ws1b{word-spacing:-24.516000px;}
.ws1a{word-spacing:-24.408000px;}
.ws24{word-spacing:-24.300000px;}
.ws21{word-spacing:-23.436000px;}
.ws25{word-spacing:-23.220000px;}
.ws35{word-spacing:-22.788000px;}
.ws3{word-spacing:-16.344000px;}
.ws36{word-spacing:-1.513080px;}
.ws6{word-spacing:-1.441800px;}
.ws14{word-spacing:-1.344960px;}
.ws7{word-spacing:-1.317600px;}
.ws3a{word-spacing:-1.200600px;}
.wsf{word-spacing:-1.176840px;}
.ws15{word-spacing:-1.008720px;}
.ws22{word-spacing:-0.960480px;}
.ws11{word-spacing:-0.840600px;}
.ws42{word-spacing:-0.756000px;}
.ws16{word-spacing:-0.720360px;}
.ws37{word-spacing:-0.712800px;}
.ws12{word-spacing:-0.672480px;}
.ws4{word-spacing:-0.599400px;}
.wse{word-spacing:-0.504360px;}
.ws17{word-spacing:-0.480240px;}
.ws38{word-spacing:-0.432000px;}
.ws2{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.336240px;}
.ws34{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.280800px;}
.ws20{word-spacing:-0.235368px;}
.ws13{word-spacing:-0.168120px;}
.wsb{word-spacing:-0.144000px;}
.ws3e{word-spacing:-0.119880px;}
.ws32{word-spacing:-0.108000px;}
.ws23{word-spacing:-0.021600px;}
.ws9{word-spacing:0.000000px;}
.ws1e{word-spacing:0.108000px;}
.ws39{word-spacing:0.216000px;}
.ws1d{word-spacing:0.324000px;}
.ws3c{word-spacing:0.359640px;}
.ws2a{word-spacing:0.432000px;}
.ws28{word-spacing:0.453600px;}
.ws1c{word-spacing:0.540000px;}
.ws3f{word-spacing:0.599400px;}
.ws2f{word-spacing:0.648000px;}
.ws40{word-spacing:0.719280px;}
.ws41{word-spacing:0.839160px;}
.ws30{word-spacing:0.864000px;}
.ws19{word-spacing:0.959400px;}
.ws3d{word-spacing:1.078920px;}
.ws31{word-spacing:1.080000px;}
.ws8{word-spacing:1.296000px;}
.ws2e{word-spacing:1.404000px;}
.ws2d{word-spacing:1.512000px;}
.ws5{word-spacing:1.558440px;}
.wsa{word-spacing:1.728000px;}
.ws26{word-spacing:1476.862200px;}
._6{margin-left:-11.723868px;}
._9{margin-left:-9.860400px;}
._8{margin-left:-7.820064px;}
._b{margin-left:-6.382800px;}
._5{margin-left:-5.380740px;}
._4{margin-left:-4.104000px;}
._0{margin-left:-2.793204px;}
._1{margin-left:-1.114884px;}
._3{width:1.174824px;}
._2{width:2.253744px;}
._7{width:3.530088px;}
._a{width:23.527488px;}
.fc2{color:rgb(82,40,127);}
.fc1{color:rgb(40,166,147);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs0{font-size:119.880000px;}
.fs4{font-size:144.000000px;}
.fs6{font-size:168.120000px;}
.fs8{font-size:191.880000px;}
.fs3{font-size:216.000000px;}
.fs7{font-size:240.120000px;}
.y0{bottom:0.000000px;}
.y9{bottom:15.355650px;}
.y22{bottom:15.801300px;}
.y2d{bottom:16.797600px;}
.y3b{bottom:20.511150px;}
.y72{bottom:20.857500px;}
.y25{bottom:21.939600px;}
.y27{bottom:24.390750px;}
.y32{bottom:25.071450px;}
.y3a{bottom:28.043400px;}
.y36{bottom:30.216450px;}
.y80{bottom:34.031640px;}
.y4{bottom:36.393600px;}
.y8{bottom:36.955650px;}
.y79{bottom:45.960150px;}
.y24{bottom:54.339600px;}
.y3{bottom:60.693600px;}
.y12{bottom:63.112170px;}
.y1d{bottom:68.929380px;}
.y2f{bottom:75.045900px;}
.y23{bottom:86.730300px;}
.y59{bottom:92.125650px;}
.y2{bottom:94.342890px;}
.y2e{bottom:107.445900px;}
.y7f{bottom:113.251980px;}
.y11{bottom:113.506140px;}
.y74{bottom:114.825150px;}
.y48{bottom:116.057850px;}
.y1c{bottom:119.365560px;}
.y58{bottom:136.594650px;}
.y35{bottom:143.398050px;}
.y47{bottom:148.457850px;}
.y73{bottom:149.466150px;}
.y7e{bottom:152.842350px;}
.y10{bottom:163.942140px;}
.y1b{bottom:169.759530px;}
.y1{bottom:173.553600px;}
.y39{bottom:175.003500px;}
.y34{bottom:175.798050px;}
.y57{bottom:180.955650px;}
.y13{bottom:184.669950px;}
.y46{bottom:192.926850px;}
.y2c{bottom:194.259450px;}
.y38{bottom:207.403500px;}
.y33{bottom:208.198050px;}
.y1a{bottom:220.153500px;}
.y7{bottom:221.168250px;}
.y56{bottom:225.316650px;}
.y45{bottom:237.287850px;}
.y37{bottom:239.803500px;}
.y6c{bottom:241.355280px;}
.y2b{bottom:244.653420px;}
.y85{bottom:268.738050px;}
.y60{bottom:268.841400px;}
.y55{bottom:269.785650px;}
.y19{bottom:270.547470px;}
.y44{bottom:281.648850px;}
.y4d{bottom:281.665500px;}
.y7d{bottom:290.482860px;}
.y6b{bottom:291.749250px;}
.y2a{bottom:295.047390px;}
.y76{bottom:297.186300px;}
.y84{bottom:304.377900px;}
.y31{bottom:307.916400px;}
.y5f{bottom:313.202400px;}
.y54{bottom:314.146650px;}
.yf{bottom:315.136110px;}
.y18{bottom:320.941440px;}
.y43{bottom:326.117850px;}
.y4c{bottom:326.134500px;}
.y75{bottom:331.824150px;}
.y83{bottom:340.017900px;}
.y6a{bottom:342.161310px;}
.y30{bottom:344.051550px;}
.y29{bottom:345.441360px;}
.y70{bottom:356.578230px;}
.y5e{bottom:357.563400px;}
.y53{bottom:358.507650px;}
.y1f{bottom:360.786180px;}
.y7c{bottom:362.458830px;}
.y66{bottom:362.863350px;}
.ye{bottom:365.536110px;}
.y42{bottom:370.478850px;}
.y4b{bottom:370.495500px;}
.y17{bottom:371.605680px;}
.y3f{bottom:377.695500px;}
.y65{bottom:395.263350px;}
.y5d{bottom:402.032400px;}
.y52{bottom:402.976650px;}
.y41{bottom:414.839850px;}
.y4a{bottom:414.856500px;}
.yd{bottom:415.930080px;}
.y3e{bottom:422.056500px;}
.y64{bottom:427.663350px;}
.y6f{bottom:428.554200px;}
.y1e{bottom:432.762150px;}
.y7b{bottom:434.434800px;}
.y69{bottom:442.949250px;}
.y67{bottom:443.982450px;}
.y28{bottom:446.229300px;}
.y5c{bottom:446.393400px;}
.y51{bottom:447.337650px;}
.y6e{bottom:454.057350px;}
.y6d{bottom:455.291400px;}
.y63{bottom:460.063350px;}
.y6{bottom:462.469200px;}
.yc{bottom:466.330080px;}
.y82{bottom:467.700450px;}
.y16{bottom:472.141440px;}
.y78{bottom:485.397000px;}
.y5b{bottom:490.754400px;}
.y50{bottom:491.698650px;}
.y62{bottom:492.463350px;}
.y68{bottom:493.349250px;}
.y40{bottom:510.779850px;}
.y49{bottom:510.796500px;}
.y3d{bottom:516.466500px;}
.yb{bottom:516.724050px;}
.y77{bottom:517.797000px;}
.y15{bottom:522.535410px;}
.y21{bottom:555.183000px;}
.y81{bottom:564.900450px;}
.y5a{bottom:586.694400px;}
.y4f{bottom:587.638800px;}
.y61{bottom:588.403350px;}
.y5{bottom:592.069200px;}
.y20{bottom:612.783000px;}
.ya{bottom:617.524050px;}
.y3c{bottom:619.220850px;}
.y14{bottom:623.323350px;}
.y71{bottom:646.460400px;}
.y4e{bottom:656.051400px;}
.y26{bottom:668.123400px;}
.y7a{bottom:697.456350px;}
.h3{height:50.053359px;}
.h6{height:51.679688px;}
.h2{height:73.028672px;}
.hd{height:73.828125px;}
.hb{height:77.519531px;}
.h14{height:77.520131px;}
.h12{height:77.532131px;}
.h13{height:91.080703px;}
.h1{height:91.724590px;}
.he{height:104.554688px;}
.h5{height:109.406250px;}
.h11{height:127.731797px;}
.h7{height:128.634785px;}
.h8{height:128.682305px;}
.ha{height:128.731992px;}
.hf{height:139.319121px;}
.hc{height:146.814434px;}
.h10{height:156.832031px;}
.h4{height:165.269531px;}
.h9{height:183.724629px;}
.h0{height:810.000000px;}
.w1{width:1440.000000px;}
.w0{width:1440.360000px;}
.x0{left:0.000000px;}
.x13{left:12.656700px;}
.x19{left:14.389350px;}
.x30{left:16.095300px;}
.x1a{left:17.702250px;}
.x18{left:21.805530px;}
.x17{left:23.715300px;}
.x1e{left:26.097000px;}
.xe{left:47.492010px;}
.x35{left:52.793550px;}
.xa{left:59.569500px;}
.x6{left:80.959050px;}
.x36{left:86.769300px;}
.x29{left:88.698600px;}
.x5{left:93.973050px;}
.xf{left:100.034850px;}
.xb{left:113.569500px;}
.x2d{left:148.278600px;}
.x1c{left:161.328600px;}
.x27{left:217.038600px;}
.x1{left:239.454900px;}
.x2a{left:267.242040px;}
.x15{left:268.792800px;}
.x25{left:280.218600px;}
.x12{left:284.773200px;}
.x2b{left:300.734850px;}
.x3{left:320.994900px;}
.x31{left:363.562200px;}
.x2e{left:377.728350px;}
.x34{left:385.540830px;}
.xd{left:389.111850px;}
.x33{left:401.088600px;}
.x2f{left:435.619800px;}
.x20{left:453.376350px;}
.x2{left:460.034100px;}
.x4{left:466.614900px;}
.x23{left:470.375700px;}
.x21{left:487.099350px;}
.x37{left:506.783700px;}
.x16{left:529.433550px;}
.x11{left:534.433200px;}
.x10{left:564.246840px;}
.x1f{left:581.191500px;}
.x28{left:636.077700px;}
.x26{left:643.818600px;}
.x2c{left:651.914850px;}
.x1b{left:661.013100px;}
.x14{left:716.168700px;}
.x1d{left:883.868700px;}
.x32{left:899.119950px;}
.xc{left:963.401850px;}
.x22{left:1006.296150px;}
.x24{left:1013.022150px;}
.x7{left:1146.391800px;}
.x8{left:1288.496850px;}
.x9{left:1318.286850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.705600pt;}
.ls1b{letter-spacing:-1.440000pt;}
.ls13{letter-spacing:-1.056000pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.149440pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.106560pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.076800pt;}
.lse{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106560pt;}
.ls14{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.149440pt;}
.ls1a{letter-spacing:0.163200pt;}
.ls0{letter-spacing:0.170880pt;}
.ls11{letter-spacing:0.213440pt;}
.ls3{letter-spacing:0.351360pt;}
.ls1c{letter-spacing:21.984000pt;}
.ls8{letter-spacing:33.408000pt;}
.ls19{letter-spacing:38.555520pt;}
.ls15{letter-spacing:86.400000pt;}
.ls12{letter-spacing:90.624000pt;}
.ls7{letter-spacing:139.726400pt;}
.lsb{letter-spacing:178.431360pt;}
.ws0{word-spacing:-49.728000pt;}
.ws29{word-spacing:-43.392000pt;}
.ws2b{word-spacing:-43.200000pt;}
.ws33{word-spacing:-41.472000pt;}
.ws1f{word-spacing:-39.003840pt;}
.wsc{word-spacing:-38.854400pt;}
.wsd{word-spacing:-38.704960pt;}
.ws27{word-spacing:-36.840960pt;}
.ws18{word-spacing:-34.623680pt;}
.ws1{word-spacing:-33.152000pt;}
.ws3b{word-spacing:-27.812160pt;}
.ws1b{word-spacing:-21.792000pt;}
.ws1a{word-spacing:-21.696000pt;}
.ws24{word-spacing:-21.600000pt;}
.ws21{word-spacing:-20.832000pt;}
.ws25{word-spacing:-20.640000pt;}
.ws35{word-spacing:-20.256000pt;}
.ws3{word-spacing:-14.528000pt;}
.ws36{word-spacing:-1.344960pt;}
.ws6{word-spacing:-1.281600pt;}
.ws14{word-spacing:-1.195520pt;}
.ws7{word-spacing:-1.171200pt;}
.ws3a{word-spacing:-1.067200pt;}
.wsf{word-spacing:-1.046080pt;}
.ws15{word-spacing:-0.896640pt;}
.ws22{word-spacing:-0.853760pt;}
.ws11{word-spacing:-0.747200pt;}
.ws42{word-spacing:-0.672000pt;}
.ws16{word-spacing:-0.640320pt;}
.ws37{word-spacing:-0.633600pt;}
.ws12{word-spacing:-0.597760pt;}
.ws4{word-spacing:-0.532800pt;}
.wse{word-spacing:-0.448320pt;}
.ws17{word-spacing:-0.426880pt;}
.ws38{word-spacing:-0.384000pt;}
.ws2{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.298880pt;}
.ws34{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.249600pt;}
.ws20{word-spacing:-0.209216pt;}
.ws13{word-spacing:-0.149440pt;}
.wsb{word-spacing:-0.128000pt;}
.ws3e{word-spacing:-0.106560pt;}
.ws32{word-spacing:-0.096000pt;}
.ws23{word-spacing:-0.019200pt;}
.ws9{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws39{word-spacing:0.192000pt;}
.ws1d{word-spacing:0.288000pt;}
.ws3c{word-spacing:0.319680pt;}
.ws2a{word-spacing:0.384000pt;}
.ws28{word-spacing:0.403200pt;}
.ws1c{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.532800pt;}
.ws2f{word-spacing:0.576000pt;}
.ws40{word-spacing:0.639360pt;}
.ws41{word-spacing:0.745920pt;}
.ws30{word-spacing:0.768000pt;}
.ws19{word-spacing:0.852800pt;}
.ws3d{word-spacing:0.959040pt;}
.ws31{word-spacing:0.960000pt;}
.ws8{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.248000pt;}
.ws2d{word-spacing:1.344000pt;}
.ws5{word-spacing:1.385280pt;}
.wsa{word-spacing:1.536000pt;}
.ws26{word-spacing:1312.766400pt;}
._6{margin-left:-10.421216pt;}
._9{margin-left:-8.764800pt;}
._8{margin-left:-6.951168pt;}
._b{margin-left:-5.673600pt;}
._5{margin-left:-4.782880pt;}
._4{margin-left:-3.648000pt;}
._0{margin-left:-2.482848pt;}
._1{margin-left:-0.991008pt;}
._3{width:1.044288pt;}
._2{width:2.003328pt;}
._7{width:3.137856pt;}
._a{width:20.913323pt;}
.fs2{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs0{font-size:106.560000pt;}
.fs4{font-size:128.000000pt;}
.fs6{font-size:149.440000pt;}
.fs8{font-size:170.560000pt;}
.fs3{font-size:192.000000pt;}
.fs7{font-size:213.440000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:13.649467pt;}
.y22{bottom:14.045600pt;}
.y2d{bottom:14.931200pt;}
.y3b{bottom:18.232133pt;}
.y72{bottom:18.540000pt;}
.y25{bottom:19.501867pt;}
.y27{bottom:21.680667pt;}
.y32{bottom:22.285733pt;}
.y3a{bottom:24.927467pt;}
.y36{bottom:26.859067pt;}
.y80{bottom:30.250347pt;}
.y4{bottom:32.349867pt;}
.y8{bottom:32.849467pt;}
.y79{bottom:40.853467pt;}
.y24{bottom:48.301867pt;}
.y3{bottom:53.949867pt;}
.y12{bottom:56.099707pt;}
.y1d{bottom:61.270560pt;}
.y2f{bottom:66.707467pt;}
.y23{bottom:77.093600pt;}
.y59{bottom:81.889467pt;}
.y2{bottom:83.860347pt;}
.y2e{bottom:95.507467pt;}
.y7f{bottom:100.668427pt;}
.y11{bottom:100.894347pt;}
.y74{bottom:102.066800pt;}
.y48{bottom:103.162533pt;}
.y1c{bottom:106.102720pt;}
.y58{bottom:121.417467pt;}
.y35{bottom:127.464933pt;}
.y47{bottom:131.962533pt;}
.y73{bottom:132.858800pt;}
.y7e{bottom:135.859867pt;}
.y10{bottom:145.726347pt;}
.y1b{bottom:150.897360pt;}
.y1{bottom:154.269867pt;}
.y39{bottom:155.558667pt;}
.y34{bottom:156.264933pt;}
.y57{bottom:160.849467pt;}
.y13{bottom:164.151067pt;}
.y46{bottom:171.490533pt;}
.y2c{bottom:172.675067pt;}
.y38{bottom:184.358667pt;}
.y33{bottom:185.064933pt;}
.y1a{bottom:195.692000pt;}
.y7{bottom:196.594000pt;}
.y56{bottom:200.281467pt;}
.y45{bottom:210.922533pt;}
.y37{bottom:213.158667pt;}
.y6c{bottom:214.538027pt;}
.y2b{bottom:217.469707pt;}
.y85{bottom:238.878267pt;}
.y60{bottom:238.970133pt;}
.y55{bottom:239.809467pt;}
.y19{bottom:240.486640pt;}
.y44{bottom:250.354533pt;}
.y4d{bottom:250.369333pt;}
.y7d{bottom:258.206987pt;}
.y6b{bottom:259.332667pt;}
.y2a{bottom:262.264347pt;}
.y76{bottom:264.165600pt;}
.y84{bottom:270.558133pt;}
.y31{bottom:273.703467pt;}
.y5f{bottom:278.402133pt;}
.y54{bottom:279.241467pt;}
.yf{bottom:280.120987pt;}
.y18{bottom:285.281280pt;}
.y43{bottom:289.882533pt;}
.y4c{bottom:289.897333pt;}
.y75{bottom:294.954800pt;}
.y83{bottom:302.238133pt;}
.y6a{bottom:304.143387pt;}
.y30{bottom:305.823600pt;}
.y29{bottom:307.058987pt;}
.y70{bottom:316.958427pt;}
.y5e{bottom:317.834133pt;}
.y53{bottom:318.673467pt;}
.y1f{bottom:320.698827pt;}
.y7c{bottom:322.185627pt;}
.y66{bottom:322.545200pt;}
.ye{bottom:324.920987pt;}
.y42{bottom:329.314533pt;}
.y4b{bottom:329.329333pt;}
.y17{bottom:330.316160pt;}
.y3f{bottom:335.729333pt;}
.y65{bottom:351.345200pt;}
.y5d{bottom:357.362133pt;}
.y52{bottom:358.201467pt;}
.y41{bottom:368.746533pt;}
.y4a{bottom:368.761333pt;}
.yd{bottom:369.715627pt;}
.y3e{bottom:375.161333pt;}
.y64{bottom:380.145200pt;}
.y6f{bottom:380.937067pt;}
.y1e{bottom:384.677467pt;}
.y7b{bottom:386.164267pt;}
.y69{bottom:393.732667pt;}
.y67{bottom:394.651067pt;}
.y28{bottom:396.648267pt;}
.y5c{bottom:396.794133pt;}
.y51{bottom:397.633467pt;}
.y6e{bottom:403.606533pt;}
.y6d{bottom:404.703467pt;}
.y63{bottom:408.945200pt;}
.y6{bottom:411.083733pt;}
.yc{bottom:414.515627pt;}
.y82{bottom:415.733733pt;}
.y16{bottom:419.681280pt;}
.y78{bottom:431.464000pt;}
.y5b{bottom:436.226133pt;}
.y50{bottom:437.065467pt;}
.y62{bottom:437.745200pt;}
.y68{bottom:438.532667pt;}
.y40{bottom:454.026533pt;}
.y49{bottom:454.041333pt;}
.y3d{bottom:459.081333pt;}
.yb{bottom:459.310267pt;}
.y77{bottom:460.264000pt;}
.y15{bottom:464.475920pt;}
.y21{bottom:493.496000pt;}
.y81{bottom:502.133733pt;}
.y5a{bottom:521.506133pt;}
.y4f{bottom:522.345600pt;}
.y61{bottom:523.025200pt;}
.y5{bottom:526.283733pt;}
.y20{bottom:544.696000pt;}
.ya{bottom:548.910267pt;}
.y3c{bottom:550.418533pt;}
.y14{bottom:554.065200pt;}
.y71{bottom:574.631467pt;}
.y4e{bottom:583.156800pt;}
.y26{bottom:593.887467pt;}
.y7a{bottom:619.961200pt;}
.h3{height:44.491875pt;}
.h6{height:45.937500pt;}
.h2{height:64.914375pt;}
.hd{height:65.625000pt;}
.hb{height:68.906250pt;}
.h14{height:68.906783pt;}
.h12{height:68.917450pt;}
.h13{height:80.960625pt;}
.h1{height:81.532969pt;}
.he{height:92.937500pt;}
.h5{height:97.250000pt;}
.h11{height:113.539375pt;}
.h7{height:114.342031pt;}
.h8{height:114.384271pt;}
.ha{height:114.428437pt;}
.hf{height:123.839219pt;}
.hc{height:130.501719pt;}
.h10{height:139.406250pt;}
.h4{height:146.906250pt;}
.h9{height:163.310781pt;}
.h0{height:720.000000pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.320000pt;}
.x0{left:0.000000pt;}
.x13{left:11.250400pt;}
.x19{left:12.790533pt;}
.x30{left:14.306933pt;}
.x1a{left:15.735333pt;}
.x18{left:19.382693pt;}
.x17{left:21.080267pt;}
.x1e{left:23.197333pt;}
.xe{left:42.215120pt;}
.x35{left:46.927600pt;}
.xa{left:52.950667pt;}
.x6{left:71.963600pt;}
.x36{left:77.128267pt;}
.x29{left:78.843200pt;}
.x5{left:83.531600pt;}
.xf{left:88.919867pt;}
.xb{left:100.950667pt;}
.x2d{left:131.803200pt;}
.x1c{left:143.403200pt;}
.x27{left:192.923200pt;}
.x1{left:212.848800pt;}
.x2a{left:237.548480pt;}
.x15{left:238.926933pt;}
.x25{left:249.083200pt;}
.x12{left:253.131733pt;}
.x2b{left:267.319867pt;}
.x3{left:285.328800pt;}
.x31{left:323.166400pt;}
.x2e{left:335.758533pt;}
.x34{left:342.702960pt;}
.xd{left:345.877200pt;}
.x33{left:356.523200pt;}
.x2f{left:387.217600pt;}
.x20{left:403.001200pt;}
.x2{left:408.919200pt;}
.x4{left:414.768800pt;}
.x23{left:418.111733pt;}
.x21{left:432.977200pt;}
.x37{left:450.474400pt;}
.x16{left:470.607600pt;}
.x11{left:475.051733pt;}
.x10{left:501.552747pt;}
.x1f{left:516.614667pt;}
.x28{left:565.402400pt;}
.x26{left:572.283200pt;}
.x2c{left:579.479867pt;}
.x1b{left:587.567200pt;}
.x14{left:636.594400pt;}
.x1d{left:785.661067pt;}
.x32{left:799.217733pt;}
.xc{left:856.357200pt;}
.x22{left:894.485467pt;}
.x24{left:900.464133pt;}
.x7{left:1019.014933pt;}
.x8{left:1145.330533pt;}
.x9{left:1171.810533pt;}
}




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