
    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_a63fe330d315c9190fb99384.woff')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_a4c685d0dbdf3c5f702ad55d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_fcec42f7be366e13490b5b96.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_5ccaeb88914f9df6405e4205.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_da70ce0be70e044acce4d919.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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;}
.ls1b{letter-spacing:-0.480960px;}
.ls1c{letter-spacing:-0.420840px;}
.ls18{letter-spacing:-0.300600px;}
.ls2b{letter-spacing:-0.263520px;}
.ls1d{letter-spacing:-0.240480px;}
.ls14{letter-spacing:-0.192240px;}
.ls1e{letter-spacing:-0.180360px;}
.ls2a{letter-spacing:-0.131760px;}
.ls19{letter-spacing:-0.120240px;}
.ls1a{letter-spacing:-0.060120px;}
.ls13{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.021960px;}
.ls0{letter-spacing:0.041940px;}
.ls5{letter-spacing:0.060120px;}
.ls29{letter-spacing:0.065880px;}
.ls16{letter-spacing:0.083880px;}
.ls23{letter-spacing:0.090180px;}
.ls15{letter-spacing:0.096120px;}
.ls7{letter-spacing:0.120240px;}
.ls22{letter-spacing:0.132264px;}
.ls1f{letter-spacing:0.140040px;}
.ls1{letter-spacing:0.167760px;}
.ls17{letter-spacing:0.180360px;}
.ls24{letter-spacing:0.206640px;}
.ls31{letter-spacing:0.237168px;}
.lsd{letter-spacing:0.492984px;}
.lsf{letter-spacing:0.523044px;}
.ls2e{letter-spacing:0.541080px;}
.lse{letter-spacing:0.901800px;}
.ls8{letter-spacing:1.262520px;}
.ls27{letter-spacing:1.575144px;}
.ls28{letter-spacing:1.623240px;}
.ls2{letter-spacing:1.905804px;}
.ls11{letter-spacing:1.983960px;}
.ls20{letter-spacing:2.726640px;}
.ls25{letter-spacing:3.426840px;}
.ls21{letter-spacing:3.787560px;}
.ls6{letter-spacing:4.472928px;}
.ls4{letter-spacing:4.509000px;}
.ls10{letter-spacing:4.929840px;}
.lsa{letter-spacing:5.230440px;}
.lsb{letter-spacing:5.254488px;}
.lsc{letter-spacing:5.591160px;}
.ls3{letter-spacing:6.673320px;}
.ls2d{letter-spacing:6.991956px;}
.ls2c{letter-spacing:7.034040px;}
.ls26{letter-spacing:10.292544px;}
.ls2f{letter-spacing:23.453280px;}
.ls9{letter-spacing:63.546840px;}
.ls12{letter-spacing:846.000000px;}
.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;}
}
.ws0{word-spacing:-26.817480px;}
.ws1{word-spacing:-26.721360px;}
.ws2{word-spacing:-26.529120px;}
.ws3{word-spacing:-23.402520px;}
.ws53{word-spacing:-18.380520px;}
.ws43{word-spacing:-18.182880px;}
.ws52{word-spacing:-16.893720px;}
.ws4{word-spacing:-16.773480px;}
.ws7{word-spacing:-16.713360px;}
.wsb{word-spacing:-16.653240px;}
.ws5{word-spacing:-16.593120px;}
.wsc{word-spacing:-16.533000px;}
.wsa{word-spacing:-16.472880px;}
.ws8{word-spacing:-16.412760px;}
.ws9{word-spacing:-16.292520px;}
.ws6{word-spacing:-16.232400px;}
.ws10{word-spacing:-4.781160px;}
.ws2c{word-spacing:-4.148280px;}
.ws4c{word-spacing:-3.952800px;}
.ws34{word-spacing:-3.787560px;}
.ws28{word-spacing:-3.426840px;}
.ws30{word-spacing:-3.306600px;}
.ws31{word-spacing:-3.246480px;}
.ws2d{word-spacing:-3.066120px;}
.ws21{word-spacing:-2.705400px;}
.ws5e{word-spacing:-2.503440px;}
.ws20{word-spacing:-2.344680px;}
.ws23{word-spacing:-2.164320px;}
.ws38{word-spacing:-1.983960px;}
.ws49{word-spacing:-1.623240px;}
.ws26{word-spacing:-0.901800px;}
.ws2e{word-spacing:-0.721440px;}
.ws37{word-spacing:-0.661320px;}
.ws3a{word-spacing:-0.601200px;}
.ws27{word-spacing:-0.541080px;}
.ws12{word-spacing:-0.419400px;}
.ws4b{word-spacing:-0.395280px;}
.ws15{word-spacing:-0.180360px;}
.ws50{word-spacing:-0.120240px;}
.wse{word-spacing:-0.096120px;}
.ws11{word-spacing:-0.083880px;}
.ws5a{word-spacing:-0.065880px;}
.ws1e{word-spacing:-0.060120px;}
.wsd{word-spacing:0.000000px;}
.ws22{word-spacing:0.060120px;}
.ws18{word-spacing:0.120240px;}
.ws35{word-spacing:0.180360px;}
.wsf{word-spacing:0.192240px;}
.ws4d{word-spacing:0.263520px;}
.ws16{word-spacing:0.300600px;}
.ws59{word-spacing:0.480960px;}
.ws29{word-spacing:0.541080px;}
.ws2b{word-spacing:0.721440px;}
.ws2a{word-spacing:0.901800px;}
.ws51{word-spacing:1.022040px;}
.ws46{word-spacing:1.082160px;}
.ws1c{word-spacing:1.262520px;}
.ws1b{word-spacing:1.382760px;}
.ws1a{word-spacing:1.442880px;}
.ws45{word-spacing:1.623240px;}
.ws44{word-spacing:1.803600px;}
.ws13{word-spacing:1.983960px;}
.ws5d{word-spacing:2.174040px;}
.ws41{word-spacing:2.344680px;}
.ws25{word-spacing:2.705400px;}
.ws32{word-spacing:2.885760px;}
.ws4a{word-spacing:2.898720px;}
.ws24{word-spacing:3.066120px;}
.ws3e{word-spacing:3.426840px;}
.ws42{word-spacing:3.607200px;}
.ws33{word-spacing:3.787560px;}
.ws19{word-spacing:4.509000px;}
.ws1f{word-spacing:4.809600px;}
.ws4e{word-spacing:5.006880px;}
.ws1d{word-spacing:5.170320px;}
.ws2f{word-spacing:5.531040px;}
.ws36{word-spacing:5.891760px;}
.ws14{word-spacing:6.252480px;}
.ws17{word-spacing:6.613200px;}
.ws55{word-spacing:6.793560px;}
.ws56{word-spacing:6.913800px;}
.ws48{word-spacing:6.973920px;}
.ws54{word-spacing:7.334640px;}
.ws3f{word-spacing:7.635240px;}
.ws40{word-spacing:7.695360px;}
.ws47{word-spacing:10.220400px;}
.ws58{word-spacing:12.745440px;}
.ws57{word-spacing:12.865680px;}
.ws4f{word-spacing:17.434800px;}
.ws5c{word-spacing:19.434600px;}
.ws5b{word-spacing:19.764000px;}
.ws5f{word-spacing:21.213360px;}
.ws39{word-spacing:51.643080px;}
.ws3b{word-spacing:106.713000px;}
.ws3d{word-spacing:157.815000px;}
.ws3c{word-spacing:321.281280px;}
._a{margin-left:-8.729100px;}
._6{margin-left:-4.626072px;}
._4{margin-left:-3.012336px;}
._0{margin-left:-1.018872px;}
._3{width:1.022040px;}
._7{width:2.637792px;}
._1{width:4.487580px;}
._2{width:6.182856px;}
._9{width:13.106160px;}
._5{width:63.546840px;}
._8{width:106.640640px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.150000px;}
.ya6{bottom:3.510000px;}
.y2{bottom:3.870000px;}
.yab{bottom:4.950000px;}
.y48{bottom:20.340000px;}
.y43{bottom:20.430000px;}
.yaa{bottom:23.940000px;}
.y1{bottom:24.570000px;}
.y47{bottom:37.620000px;}
.ya4{bottom:41.490000px;}
.y46{bottom:54.810000px;}
.y3f{bottom:54.900000px;}
.ya2{bottom:60.480000px;}
.ya8{bottom:61.920000px;}
.y4b{bottom:89.460000px;}
.y89{bottom:106.470000px;}
.y88{bottom:123.755580px;}
.y2d{bottom:141.120000px;}
.y87{bottom:151.020000px;}
.y37{bottom:175.590000px;}
.y86{bottom:178.290000px;}
.y85{bottom:195.575760px;}
.y84{bottom:222.750000px;}
.y57{bottom:232.290090px;}
.y83{bottom:240.390360px;}
.y56{bottom:251.280000px;}
.y82{bottom:259.380270px;}
.y62{bottom:268.200090px;}
.y55{bottom:269.910000px;}
.y81{bottom:278.370180px;}
.y53{bottom:284.760000px;}
.y61{bottom:287.190000px;}
.y80{bottom:297.360090px;}
.y54{bottom:305.190000px;}
.y60{bottom:305.811180px;}
.y7f{bottom:316.350000px;}
.y5f{bottom:323.005500px;}
.y52{bottom:337.230000px;}
.y5e{bottom:340.290000px;}
.y7e{bottom:343.888200px;}
.y5d{bottom:354.420000px;}
.y7d{bottom:370.160640px;}
.y50{bottom:372.510000px;}
.y51{bottom:392.940000px;}
.y7c{bottom:396.357930px;}
.y7b{bottom:422.645400px;}
.y4a{bottom:424.980000px;}
.y25{bottom:436.140000px;}
.y4f{bottom:445.396680px;}
.y7a{bottom:448.917840px;}
.y24{bottom:453.312540px;}
.y4e{bottom:462.681180px;}
.y79{bottom:466.202340px;}
.y23{bottom:470.597040px;}
.y4d{bottom:479.875500px;}
.yad{bottom:481.672440px;}
.y22{bottom:487.791360px;}
.y78{bottom:493.376580px;}
.y4c{bottom:497.160000px;}
.yac{bottom:500.580000px;}
.y21{bottom:505.075860px;}
.y77{bottom:510.661080px;}
.ya7{bottom:516.060000px;}
.y20{bottom:522.360360px;}
.y45{bottom:529.290000px;}
.y76{bottom:537.925500px;}
.y1f{bottom:539.554680px;}
.y75{bottom:555.210000px;}
.y1e{bottom:556.839180px;}
.ya9{bottom:558.990000px;}
.y49{bottom:566.910000px;}
.y74{bottom:572.400000px;}
.y1d{bottom:574.123680px;}
.y73{bottom:589.667940px;}
.y1c{bottom:591.318000px;}
.ya1{bottom:593.370000px;}
.y44{bottom:598.950000px;}
.y72{bottom:606.952440px;}
.y1b{bottom:608.602500px;}
.ya0{bottom:610.808670px;}
.ya5{bottom:615.870000px;}
.y71{bottom:624.146760px;}
.y1a{bottom:625.887000px;}
.y42{bottom:634.230000px;}
.ya3{bottom:634.860000px;}
.y19{bottom:643.081320px;}
.y70{bottom:651.411180px;}
.y18{bottom:660.365820px;}
.y6f{bottom:668.695680px;}
.y36{bottom:669.510000px;}
.y9f{bottom:672.818220px;}
.y17{bottom:677.650320px;}
.y6e{bottom:685.890000px;}
.y41{bottom:689.845500px;}
.y9e{bottom:691.808130px;}
.y16{bottom:694.844640px;}
.y5c{bottom:695.880090px;}
.y6d{bottom:703.161180px;}
.y40{bottom:707.130000px;}
.y9d{bottom:710.715690px;}
.y15{bottom:712.129140px;}
.y5b{bottom:714.870000px;}
.y6c{bottom:720.445680px;}
.y9c{bottom:729.705600px;}
.y5a{bottom:733.495500px;}
.y6b{bottom:737.640000px;}
.y14{bottom:739.303380px;}
.y3e{bottom:741.577680px;}
.y9b{bottom:748.695510px;}
.y59{bottom:750.780000px;}
.y6a{bottom:756.270360px;}
.y13{bottom:756.587880px;}
.y3d{bottom:758.862180px;}
.y58{bottom:764.820000px;}
.y9a{bottom:767.685420px;}
.y12{bottom:773.872380px;}
.y69{bottom:775.260270px;}
.y3c{bottom:776.146680px;}
.y99{bottom:786.675330px;}
.y11{bottom:791.156880px;}
.y3b{bottom:793.341000px;}
.y68{bottom:794.250180px;}
.y98{bottom:805.582890px;}
.y10{bottom:808.351200px;}
.y3a{bottom:810.625500px;}
.y39{bottom:810.630000px;}
.y67{bottom:813.240090px;}
.y97{bottom:824.572800px;}
.yf{bottom:826.627680px;}
.y38{bottom:827.910000px;}
.y66{bottom:832.230000px;}
.y96{bottom:843.562710px;}
.ye{bottom:843.912180px;}
.y65{bottom:850.765500px;}
.y2c{bottom:859.950000px;}
.yd{bottom:861.196680px;}
.y95{bottom:862.552620px;}
.y64{bottom:868.050000px;}
.yc{bottom:878.391000px;}
.y35{bottom:880.353360px;}
.y94{bottom:881.542530px;}
.y63{bottom:882.180000px;}
.yb{bottom:895.675500px;}
.y34{bottom:897.637860px;}
.y93{bottom:900.450090px;}
.ya{bottom:912.960000px;}
.y33{bottom:914.832180px;}
.y92{bottom:919.440000px;}
.y9{bottom:931.398300px;}
.y32{bottom:932.116680px;}
.y91{bottom:947.059020px;}
.y31{bottom:949.311000px;}
.y8{bottom:955.618650px;}
.y90{bottom:964.343520px;}
.y30{bottom:966.595500px;}
.y2f{bottom:966.600000px;}
.y7{bottom:979.734150px;}
.y2e{bottom:983.880000px;}
.y8f{bottom:991.517760px;}
.y6{bottom:1003.849650px;}
.y8e{bottom:1008.802260px;}
.y2a{bottom:1015.920000px;}
.y8d{bottom:1026.086760px;}
.y5{bottom:1028.070000px;}
.y29{bottom:1037.056680px;}
.y8c{bottom:1043.371260px;}
.y4{bottom:1052.911620px;}
.y28{bottom:1054.341180px;}
.y8b{bottom:1060.565580px;}
.y27{bottom:1071.625680px;}
.y3{bottom:1080.450000px;}
.y8a{bottom:1087.830000px;}
.y26{bottom:1088.820000px;}
.h5{height:17.280000px;}
.h8{height:34.470000px;}
.h9{height:34.560000px;}
.h4{height:43.798359px;}
.h11{height:47.962441px;}
.hd{height:47.994609px;}
.h1{height:48.656250px;}
.hc{height:51.751500px;}
.h3{height:61.107891px;}
.ha{height:68.938500px;}
.h2{height:69.977988px;}
.h12{height:75.960000px;}
.h13{height:77.308500px;}
.hb{height:103.500000px;}
.h6{height:155.250000px;}
.h7{height:189.721500px;}
.h10{height:220.770000px;}
.hf{height:337.951500px;}
.he{height:338.130000px;}
.h0{height:1188.000000px;}
.w6{width:94.500000px;}
.w2{width:161.278500px;}
.w1{width:187.920000px;}
.w3{width:395.820000px;}
.w5{width:470.700000px;}
.w7{width:653.400000px;}
.w4{width:747.180000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xa{left:41.400000px;}
.xc{left:47.700000px;}
.x1a{left:66.600000px;}
.x2{left:85.050000px;}
.x12{left:93.510000px;}
.x9{left:111.968730px;}
.x15{left:113.856030px;}
.x7{left:137.436660px;}
.x8{left:139.072320px;}
.xe{left:161.640000px;}
.x1b{left:179.550000px;}
.x1c{left:187.650000px;}
.x3{left:212.220000px;}
.xb{left:274.410000px;}
.x10{left:282.150000px;}
.x19{left:295.110000px;}
.x4{left:321.628590px;}
.x16{left:354.153330px;}
.x17{left:362.250000px;}
.x18{left:370.350000px;}
.x6{left:384.400350px;}
.xd{left:436.410000px;}
.x11{left:444.150000px;}
.x1{left:454.500000px;}
.x5{left:486.000000px;}
.x14{left:569.880000px;}
.x13{left:655.290000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.427520pt;}
.ls1c{letter-spacing:-0.374080pt;}
.ls18{letter-spacing:-0.267200pt;}
.ls2b{letter-spacing:-0.234240pt;}
.ls1d{letter-spacing:-0.213760pt;}
.ls14{letter-spacing:-0.170880pt;}
.ls1e{letter-spacing:-0.160320pt;}
.ls2a{letter-spacing:-0.117120pt;}
.ls19{letter-spacing:-0.106880pt;}
.ls1a{letter-spacing:-0.053440pt;}
.ls13{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.019520pt;}
.ls0{letter-spacing:0.037280pt;}
.ls5{letter-spacing:0.053440pt;}
.ls29{letter-spacing:0.058560pt;}
.ls16{letter-spacing:0.074560pt;}
.ls23{letter-spacing:0.080160pt;}
.ls15{letter-spacing:0.085440pt;}
.ls7{letter-spacing:0.106880pt;}
.ls22{letter-spacing:0.117568pt;}
.ls1f{letter-spacing:0.124480pt;}
.ls1{letter-spacing:0.149120pt;}
.ls17{letter-spacing:0.160320pt;}
.ls24{letter-spacing:0.183680pt;}
.ls31{letter-spacing:0.210816pt;}
.lsd{letter-spacing:0.438208pt;}
.lsf{letter-spacing:0.464928pt;}
.ls2e{letter-spacing:0.480960pt;}
.lse{letter-spacing:0.801600pt;}
.ls8{letter-spacing:1.122240pt;}
.ls27{letter-spacing:1.400128pt;}
.ls28{letter-spacing:1.442880pt;}
.ls2{letter-spacing:1.694048pt;}
.ls11{letter-spacing:1.763520pt;}
.ls20{letter-spacing:2.423680pt;}
.ls25{letter-spacing:3.046080pt;}
.ls21{letter-spacing:3.366720pt;}
.ls6{letter-spacing:3.975936pt;}
.ls4{letter-spacing:4.008000pt;}
.ls10{letter-spacing:4.382080pt;}
.lsa{letter-spacing:4.649280pt;}
.lsb{letter-spacing:4.670656pt;}
.lsc{letter-spacing:4.969920pt;}
.ls3{letter-spacing:5.931840pt;}
.ls2d{letter-spacing:6.215072pt;}
.ls2c{letter-spacing:6.252480pt;}
.ls26{letter-spacing:9.148928pt;}
.ls2f{letter-spacing:20.847360pt;}
.ls9{letter-spacing:56.486080pt;}
.ls12{letter-spacing:752.000000pt;}
.ws0{word-spacing:-23.837760pt;}
.ws1{word-spacing:-23.752320pt;}
.ws2{word-spacing:-23.581440pt;}
.ws3{word-spacing:-20.802240pt;}
.ws53{word-spacing:-16.338240pt;}
.ws43{word-spacing:-16.162560pt;}
.ws52{word-spacing:-15.016640pt;}
.ws4{word-spacing:-14.909760pt;}
.ws7{word-spacing:-14.856320pt;}
.wsb{word-spacing:-14.802880pt;}
.ws5{word-spacing:-14.749440pt;}
.wsc{word-spacing:-14.696000pt;}
.wsa{word-spacing:-14.642560pt;}
.ws8{word-spacing:-14.589120pt;}
.ws9{word-spacing:-14.482240pt;}
.ws6{word-spacing:-14.428800pt;}
.ws10{word-spacing:-4.249920pt;}
.ws2c{word-spacing:-3.687360pt;}
.ws4c{word-spacing:-3.513600pt;}
.ws34{word-spacing:-3.366720pt;}
.ws28{word-spacing:-3.046080pt;}
.ws30{word-spacing:-2.939200pt;}
.ws31{word-spacing:-2.885760pt;}
.ws2d{word-spacing:-2.725440pt;}
.ws21{word-spacing:-2.404800pt;}
.ws5e{word-spacing:-2.225280pt;}
.ws20{word-spacing:-2.084160pt;}
.ws23{word-spacing:-1.923840pt;}
.ws38{word-spacing:-1.763520pt;}
.ws49{word-spacing:-1.442880pt;}
.ws26{word-spacing:-0.801600pt;}
.ws2e{word-spacing:-0.641280pt;}
.ws37{word-spacing:-0.587840pt;}
.ws3a{word-spacing:-0.534400pt;}
.ws27{word-spacing:-0.480960pt;}
.ws12{word-spacing:-0.372800pt;}
.ws4b{word-spacing:-0.351360pt;}
.ws15{word-spacing:-0.160320pt;}
.ws50{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.085440pt;}
.ws11{word-spacing:-0.074560pt;}
.ws5a{word-spacing:-0.058560pt;}
.ws1e{word-spacing:-0.053440pt;}
.wsd{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053440pt;}
.ws18{word-spacing:0.106880pt;}
.ws35{word-spacing:0.160320pt;}
.wsf{word-spacing:0.170880pt;}
.ws4d{word-spacing:0.234240pt;}
.ws16{word-spacing:0.267200pt;}
.ws59{word-spacing:0.427520pt;}
.ws29{word-spacing:0.480960pt;}
.ws2b{word-spacing:0.641280pt;}
.ws2a{word-spacing:0.801600pt;}
.ws51{word-spacing:0.908480pt;}
.ws46{word-spacing:0.961920pt;}
.ws1c{word-spacing:1.122240pt;}
.ws1b{word-spacing:1.229120pt;}
.ws1a{word-spacing:1.282560pt;}
.ws45{word-spacing:1.442880pt;}
.ws44{word-spacing:1.603200pt;}
.ws13{word-spacing:1.763520pt;}
.ws5d{word-spacing:1.932480pt;}
.ws41{word-spacing:2.084160pt;}
.ws25{word-spacing:2.404800pt;}
.ws32{word-spacing:2.565120pt;}
.ws4a{word-spacing:2.576640pt;}
.ws24{word-spacing:2.725440pt;}
.ws3e{word-spacing:3.046080pt;}
.ws42{word-spacing:3.206400pt;}
.ws33{word-spacing:3.366720pt;}
.ws19{word-spacing:4.008000pt;}
.ws1f{word-spacing:4.275200pt;}
.ws4e{word-spacing:4.450560pt;}
.ws1d{word-spacing:4.595840pt;}
.ws2f{word-spacing:4.916480pt;}
.ws36{word-spacing:5.237120pt;}
.ws14{word-spacing:5.557760pt;}
.ws17{word-spacing:5.878400pt;}
.ws55{word-spacing:6.038720pt;}
.ws56{word-spacing:6.145600pt;}
.ws48{word-spacing:6.199040pt;}
.ws54{word-spacing:6.519680pt;}
.ws3f{word-spacing:6.786880pt;}
.ws40{word-spacing:6.840320pt;}
.ws47{word-spacing:9.084800pt;}
.ws58{word-spacing:11.329280pt;}
.ws57{word-spacing:11.436160pt;}
.ws4f{word-spacing:15.497600pt;}
.ws5c{word-spacing:17.275200pt;}
.ws5b{word-spacing:17.568000pt;}
.ws5f{word-spacing:18.856320pt;}
.ws39{word-spacing:45.904960pt;}
.ws3b{word-spacing:94.856000pt;}
.ws3d{word-spacing:140.280000pt;}
.ws3c{word-spacing:285.583360pt;}
._a{margin-left:-7.759200pt;}
._6{margin-left:-4.112064pt;}
._4{margin-left:-2.677632pt;}
._0{margin-left:-0.905664pt;}
._3{width:0.908480pt;}
._7{width:2.344704pt;}
._1{width:3.988960pt;}
._2{width:5.495872pt;}
._9{width:11.649920pt;}
._5{width:56.486080pt;}
._8{width:94.791680pt;}
.fs3{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.800000pt;}
.ya6{bottom:3.120000pt;}
.y2{bottom:3.440000pt;}
.yab{bottom:4.400000pt;}
.y48{bottom:18.080000pt;}
.y43{bottom:18.160000pt;}
.yaa{bottom:21.280000pt;}
.y1{bottom:21.840000pt;}
.y47{bottom:33.440000pt;}
.ya4{bottom:36.880000pt;}
.y46{bottom:48.720000pt;}
.y3f{bottom:48.800000pt;}
.ya2{bottom:53.760000pt;}
.ya8{bottom:55.040000pt;}
.y4b{bottom:79.520000pt;}
.y89{bottom:94.640000pt;}
.y88{bottom:110.004960pt;}
.y2d{bottom:125.440000pt;}
.y87{bottom:134.240000pt;}
.y37{bottom:156.080000pt;}
.y86{bottom:158.480000pt;}
.y85{bottom:173.845120pt;}
.y84{bottom:198.000000pt;}
.y57{bottom:206.480080pt;}
.y83{bottom:213.680320pt;}
.y56{bottom:223.360000pt;}
.y82{bottom:230.560240pt;}
.y62{bottom:238.400080pt;}
.y55{bottom:239.920000pt;}
.y81{bottom:247.440160pt;}
.y53{bottom:253.120000pt;}
.y61{bottom:255.280000pt;}
.y80{bottom:264.320080pt;}
.y54{bottom:271.280000pt;}
.y60{bottom:271.832160pt;}
.y7f{bottom:281.200000pt;}
.y5f{bottom:287.116000pt;}
.y52{bottom:299.760000pt;}
.y5e{bottom:302.480000pt;}
.y7e{bottom:305.678400pt;}
.y5d{bottom:315.040000pt;}
.y7d{bottom:329.031680pt;}
.y50{bottom:331.120000pt;}
.y51{bottom:349.280000pt;}
.y7c{bottom:352.318160pt;}
.y7b{bottom:375.684800pt;}
.y4a{bottom:377.760000pt;}
.y25{bottom:387.680000pt;}
.y4f{bottom:395.908160pt;}
.y7a{bottom:399.038080pt;}
.y24{bottom:402.944480pt;}
.y4e{bottom:411.272160pt;}
.y79{bottom:414.402080pt;}
.y23{bottom:418.308480pt;}
.y4d{bottom:426.556000pt;}
.yad{bottom:428.153280pt;}
.y22{bottom:433.592320pt;}
.y78{bottom:438.556960pt;}
.y4c{bottom:441.920000pt;}
.yac{bottom:444.960000pt;}
.y21{bottom:448.956320pt;}
.y77{bottom:453.920960pt;}
.ya7{bottom:458.720000pt;}
.y20{bottom:464.320320pt;}
.y45{bottom:470.480000pt;}
.y76{bottom:478.156000pt;}
.y1f{bottom:479.604160pt;}
.y75{bottom:493.520000pt;}
.y1e{bottom:494.968160pt;}
.ya9{bottom:496.880000pt;}
.y49{bottom:503.920000pt;}
.y74{bottom:508.800000pt;}
.y1d{bottom:510.332160pt;}
.y73{bottom:524.149280pt;}
.y1c{bottom:525.616000pt;}
.ya1{bottom:527.440000pt;}
.y44{bottom:532.400000pt;}
.y72{bottom:539.513280pt;}
.y1b{bottom:540.980000pt;}
.ya0{bottom:542.941040pt;}
.ya5{bottom:547.440000pt;}
.y71{bottom:554.797120pt;}
.y1a{bottom:556.344000pt;}
.y42{bottom:563.760000pt;}
.ya3{bottom:564.320000pt;}
.y19{bottom:571.627840pt;}
.y70{bottom:579.032160pt;}
.y18{bottom:586.991840pt;}
.y6f{bottom:594.396160pt;}
.y36{bottom:595.120000pt;}
.y9f{bottom:598.060640pt;}
.y17{bottom:602.355840pt;}
.y6e{bottom:609.680000pt;}
.y41{bottom:613.196000pt;}
.y9e{bottom:614.940560pt;}
.y16{bottom:617.639680pt;}
.y5c{bottom:618.560080pt;}
.y6d{bottom:625.032160pt;}
.y40{bottom:628.560000pt;}
.y9d{bottom:631.747280pt;}
.y15{bottom:633.003680pt;}
.y5b{bottom:635.440000pt;}
.y6c{bottom:640.396160pt;}
.y9c{bottom:648.627200pt;}
.y5a{bottom:651.996000pt;}
.y6b{bottom:655.680000pt;}
.y14{bottom:657.158560pt;}
.y3e{bottom:659.180160pt;}
.y9b{bottom:665.507120pt;}
.y59{bottom:667.360000pt;}
.y6a{bottom:672.240320pt;}
.y13{bottom:672.522560pt;}
.y3d{bottom:674.544160pt;}
.y58{bottom:679.840000pt;}
.y9a{bottom:682.387040pt;}
.y12{bottom:687.886560pt;}
.y69{bottom:689.120240pt;}
.y3c{bottom:689.908160pt;}
.y99{bottom:699.266960pt;}
.y11{bottom:703.250560pt;}
.y3b{bottom:705.192000pt;}
.y68{bottom:706.000160pt;}
.y98{bottom:716.073680pt;}
.y10{bottom:718.534400pt;}
.y3a{bottom:720.556000pt;}
.y39{bottom:720.560000pt;}
.y67{bottom:722.880080pt;}
.y97{bottom:732.953600pt;}
.yf{bottom:734.780160pt;}
.y38{bottom:735.920000pt;}
.y66{bottom:739.760000pt;}
.y96{bottom:749.833520pt;}
.ye{bottom:750.144160pt;}
.y65{bottom:756.236000pt;}
.y2c{bottom:764.400000pt;}
.yd{bottom:765.508160pt;}
.y95{bottom:766.713440pt;}
.y64{bottom:771.600000pt;}
.yc{bottom:780.792000pt;}
.y35{bottom:782.536320pt;}
.y94{bottom:783.593360pt;}
.y63{bottom:784.160000pt;}
.yb{bottom:796.156000pt;}
.y34{bottom:797.900320pt;}
.y93{bottom:800.400080pt;}
.ya{bottom:811.520000pt;}
.y33{bottom:813.184160pt;}
.y92{bottom:817.280000pt;}
.y9{bottom:827.909600pt;}
.y32{bottom:828.548160pt;}
.y91{bottom:841.830240pt;}
.y31{bottom:843.832000pt;}
.y8{bottom:849.438800pt;}
.y90{bottom:857.194240pt;}
.y30{bottom:859.196000pt;}
.y2f{bottom:859.200000pt;}
.y7{bottom:870.874800pt;}
.y2e{bottom:874.560000pt;}
.y8f{bottom:881.349120pt;}
.y6{bottom:892.310800pt;}
.y8e{bottom:896.713120pt;}
.y2a{bottom:903.040000pt;}
.y8d{bottom:912.077120pt;}
.y5{bottom:913.840000pt;}
.y29{bottom:921.828160pt;}
.y8c{bottom:927.441120pt;}
.y4{bottom:935.921440pt;}
.y28{bottom:937.192160pt;}
.y8b{bottom:942.724960pt;}
.y27{bottom:952.556160pt;}
.y3{bottom:960.400000pt;}
.y8a{bottom:966.960000pt;}
.y26{bottom:967.840000pt;}
.h5{height:15.360000pt;}
.h8{height:30.640000pt;}
.h9{height:30.720000pt;}
.h4{height:38.931875pt;}
.h11{height:42.633281pt;}
.hd{height:42.661875pt;}
.h1{height:43.250000pt;}
.hc{height:46.001333pt;}
.h3{height:54.318125pt;}
.ha{height:61.278667pt;}
.h2{height:62.202656pt;}
.h12{height:67.520000pt;}
.h13{height:68.718667pt;}
.hb{height:92.000000pt;}
.h6{height:138.000000pt;}
.h7{height:168.641333pt;}
.h10{height:196.240000pt;}
.hf{height:300.401333pt;}
.he{height:300.560000pt;}
.h0{height:1056.000000pt;}
.w6{width:84.000000pt;}
.w2{width:143.358667pt;}
.w1{width:167.040000pt;}
.w3{width:351.840000pt;}
.w5{width:418.400000pt;}
.w7{width:580.800000pt;}
.w4{width:664.160000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xa{left:36.800000pt;}
.xc{left:42.400000pt;}
.x1a{left:59.200000pt;}
.x2{left:75.600000pt;}
.x12{left:83.120000pt;}
.x9{left:99.527760pt;}
.x15{left:101.205360pt;}
.x7{left:122.165920pt;}
.x8{left:123.619840pt;}
.xe{left:143.680000pt;}
.x1b{left:159.600000pt;}
.x1c{left:166.800000pt;}
.x3{left:188.640000pt;}
.xb{left:243.920000pt;}
.x10{left:250.800000pt;}
.x19{left:262.320000pt;}
.x4{left:285.892080pt;}
.x16{left:314.802960pt;}
.x17{left:322.000000pt;}
.x18{left:329.200000pt;}
.x6{left:341.689200pt;}
.xd{left:387.920000pt;}
.x11{left:394.800000pt;}
.x1{left:404.000000pt;}
.x5{left:432.000000pt;}
.x14{left:506.560000pt;}
.x13{left:582.480000pt;}
}




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