
    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_b4bbf7e61966cc57b5be7bee.woff')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_2f8ac690856c5a72bf844763.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_814a308bfee98cd61b31dbc4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_711cd93e2a2fd06c18aa0220.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_115f145c2e79ff0885e11359.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_d3ca1e18a57b3dd8c066bdb7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.924316;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_e79dc5ac6a90fd687fca6d0b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b7d8685c014c6ffcc5f79d80.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5b0a5114fa56853e48f5d7dd.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v5{vertical-align:-27.360000px;}
.v9{vertical-align:-25.920000px;}
.v1{vertical-align:-14.400000px;}
.v6{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v7{vertical-align:25.920000px;}
.v8{vertical-align:40.320000px;}
.v4{vertical-align:47.520000px;}
.v3{vertical-align:54.720000px;}
.ls1c{letter-spacing:-0.028800px;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.002880px;}
.ls21{letter-spacing:0.005616px;}
.ls26{letter-spacing:0.005760px;}
.ls32{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.013968px;}
.lsd{letter-spacing:0.014400px;}
.ls2e{letter-spacing:0.020592px;}
.ls24{letter-spacing:0.022176px;}
.ls13{letter-spacing:0.022752px;}
.ls22{letter-spacing:0.022896px;}
.ls27{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.027072px;}
.ls18{letter-spacing:0.027360px;}
.ls1e{letter-spacing:0.036000px;}
.ls36{letter-spacing:0.191520px;}
.ls34{letter-spacing:0.317520px;}
.ls1d{letter-spacing:0.398160px;}
.ls35{letter-spacing:0.413280px;}
.ls9{letter-spacing:1.582560px;}
.ls6{letter-spacing:1.582704px;}
.ls30{letter-spacing:1.709280px;}
.ls38{letter-spacing:1.709424px;}
.ls5{letter-spacing:1.723680px;}
.ls37{letter-spacing:2.111040px;}
.ls2a{letter-spacing:2.255040px;}
.ls12{letter-spacing:2.777328px;}
.ls2c{letter-spacing:3.314880px;}
.ls2b{letter-spacing:3.316320px;}
.ls1b{letter-spacing:4.595904px;}
.lsb{letter-spacing:4.652640px;}
.ls2f{letter-spacing:4.653648px;}
.ls1{letter-spacing:4.653792px;}
.ls4{letter-spacing:4.653936px;}
.ls0{letter-spacing:4.654080px;}
.ls23{letter-spacing:4.755312px;}
.ls17{letter-spacing:4.776048px;}
.ls28{letter-spacing:4.920480px;}
.ls1f{letter-spacing:4.920912px;}
.ls20{letter-spacing:4.921056px;}
.ls31{letter-spacing:5.025600px;}
.lse{letter-spacing:5.364000px;}
.ls25{letter-spacing:5.613120px;}
.lsa{letter-spacing:5.892480px;}
.ls19{letter-spacing:19.997280px;}
.ls33{letter-spacing:20.013120px;}
.lsc{letter-spacing:20.653920px;}
.ls2d{letter-spacing:23.315040px;}
.ls16{letter-spacing:24.595344px;}
.ls8{letter-spacing:24.652800px;}
.ls10{letter-spacing:24.653232px;}
.lsf{letter-spacing:24.653376px;}
.ls15{letter-spacing:24.654240px;}
.ls29{letter-spacing:24.920640px;}
.ls7{letter-spacing:28.150560px;}
.ls3a{letter-spacing:33.984000px;}
.ls39{letter-spacing:63.588960px;}
.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;}
}
.ws1a{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.ws16{word-spacing:-0.463680px;}
.wsc{word-spacing:-0.448560px;}
.ws12{word-spacing:-0.367920px;}
.ws17{word-spacing:-0.241920px;}
.ws10{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.099360px;}
.ws11{word-spacing:-0.074880px;}
.ws0{word-spacing:-0.072000px;}
.ws19{word-spacing:-0.060480px;}
.wse{word-spacing:-0.057600px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:11.903904px;}
.ws13{word-spacing:11.904480px;}
.ws14{word-spacing:11.933280px;}
.ws18{word-spacing:11.934720px;}
.ws7{word-spacing:15.933600px;}
.wsb{word-spacing:19.919520px;}
.ws8{word-spacing:19.925136px;}
.ws5{word-spacing:19.925280px;}
.ws9{word-spacing:19.925424px;}
.ws6{word-spacing:19.932480px;}
.wsd{word-spacing:19.932624px;}
.ws15{word-spacing:19.954080px;}
.ws4{word-spacing:21.566880px;}
._6{margin-left:-29.448000px;}
._7{margin-left:-9.480960px;}
._8{margin-left:-7.865280px;}
._0{margin-left:-5.850720px;}
._a{margin-left:-4.327200px;}
._2{margin-left:-3.314880px;}
._b{margin-left:-2.258208px;}
._3{margin-left:-1.130400px;}
._1{width:1.650240px;}
._4{width:3.077136px;}
._9{width:4.963680px;}
._5{width:12.721968px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:50.400000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:3.960000px;}
.y6d{bottom:4.320000px;}
.y76{bottom:4.380000px;}
.y6f{bottom:4.680000px;}
.y3{bottom:5.220000px;}
.y7c{bottom:5.280000px;}
.y69{bottom:5.400000px;}
.y73{bottom:5.460000px;}
.y6a{bottom:5.760000px;}
.y74{bottom:5.820000px;}
.y82{bottom:6.180000px;}
.y79{bottom:6.300000px;}
.y80{bottom:6.480000px;}
.y7d{bottom:6.720000px;}
.y7f{bottom:7.200000px;}
.y85{bottom:7.320000px;}
.y7a{bottom:7.380000px;}
.y6e{bottom:7.560000px;}
.y77{bottom:7.620000px;}
.y84{bottom:7.680000px;}
.y96{bottom:114.120000px;}
.y48{bottom:115.200000px;}
.y27{bottom:125.640000px;}
.yb5{bottom:128.160000px;}
.y65{bottom:129.240000px;}
.y26{bottom:146.880000px;}
.yb4{bottom:148.680000px;}
.y64{bottom:150.120000px;}
.y95{bottom:155.520000px;}
.y47{bottom:157.680000px;}
.y25{bottom:167.400000px;}
.yb3{bottom:169.560000px;}
.y94{bottom:176.400000px;}
.y24{bottom:188.280000px;}
.yb2{bottom:190.080000px;}
.y63{bottom:193.680000px;}
.y46{bottom:199.800000px;}
.y23{bottom:208.800000px;}
.yb1{bottom:210.960000px;}
.y93{bottom:218.160000px;}
.y22{bottom:230.040000px;}
.yb0{bottom:231.480000px;}
.y62{bottom:234.720000px;}
.y61{bottom:238.320000px;}
.y45{bottom:241.200000px;}
.y21{bottom:250.560000px;}
.yaf{bottom:252.360000px;}
.y92{bottom:259.920000px;}
.y44{bottom:262.080000px;}
.yae{bottom:272.880000px;}
.y60{bottom:280.440000px;}
.y90{bottom:281.160000px;}
.y43{bottom:282.960000px;}
.y91{bottom:284.400000px;}
.y20{bottom:292.680000px;}
.yad{bottom:293.760000px;}
.y5f{bottom:303.120000px;}
.y1f{bottom:313.560000px;}
.yac{bottom:314.280000px;}
.y8f{bottom:324.000000px;}
.y42{bottom:325.080000px;}
.y1e{bottom:334.440000px;}
.yab{bottom:335.160000px;}
.y5e{bottom:345.240000px;}
.y41{bottom:345.600000px;}
.y1d{bottom:354.960000px;}
.yaa{bottom:355.680000px;}
.y8e{bottom:365.760000px;}
.y1c{bottom:376.200000px;}
.ya9{bottom:376.560000px;}
.y5d{bottom:387.000000px;}
.y40{bottom:389.880000px;}
.y1b{bottom:396.720000px;}
.ya8{bottom:397.080000px;}
.y8d{bottom:407.520000px;}
.y1a{bottom:417.600000px;}
.ya7{bottom:417.960000px;}
.y8c{bottom:428.400000px;}
.y5c{bottom:428.760000px;}
.y3f{bottom:432.000000px;}
.y19{bottom:438.120000px;}
.ya6{bottom:438.480000px;}
.y5b{bottom:450.000000px;}
.ya5{bottom:459.360000px;}
.y8b{bottom:469.800000px;}
.y3e{bottom:473.760000px;}
.y18{bottom:479.520000px;}
.y5a{bottom:493.560000px;}
.y3d{bottom:495.000000px;}
.ya4{bottom:500.760000px;}
.y8a{bottom:511.560000px;}
.y3b{bottom:515.520000px;}
.y3c{bottom:518.760000px;}
.y17{bottom:521.640000px;}
.y59{bottom:535.680000px;}
.ya3{bottom:542.520000px;}
.y89{bottom:553.680000px;}
.y58{bottom:556.560000px;}
.y3a{bottom:559.080000px;}
.y16{bottom:563.040000px;}
.y38{bottom:579.600000px;}
.y39{bottom:582.840000px;}
.ya2{bottom:583.920000px;}
.y15{bottom:584.280000px;}
.y88{bottom:595.440000px;}
.y57{bottom:598.320000px;}
.ya1{bottom:604.800000px;}
.y14{bottom:605.160000px;}
.y37{bottom:622.440000px;}
.y13{bottom:625.680000px;}
.ya0{bottom:626.040000px;}
.y87{bottom:636.840000px;}
.y56{bottom:642.600000px;}
.y36{bottom:643.320000px;}
.y12{bottom:646.560000px;}
.y9f{bottom:646.920000px;}
.y86{bottom:657.720000px;}
.y9e{bottom:667.440000px;}
.y11{bottom:667.800000px;}
.yc5{bottom:669.960000px;}
.y55{bottom:685.080000px;}
.y35{bottom:686.520000px;}
.y9d{bottom:687.960000px;}
.y10{bottom:688.680000px;}
.y83{bottom:699.000000px;}
.y81{bottom:700.500000px;}
.y54{bottom:705.600000px;}
.yf{bottom:709.200000px;}
.yc4{bottom:711.360000px;}
.y34{bottom:727.920000px;}
.y7e{bottom:729.000000px;}
.ye{bottom:729.720000px;}
.y9c{bottom:730.080000px;}
.yc3{bottom:732.240000px;}
.y53{bottom:747.720000px;}
.y32{bottom:748.800000px;}
.yd{bottom:751.320000px;}
.y33{bottom:752.040000px;}
.yc2{bottom:753.120000px;}
.y7b{bottom:759.000000px;}
.yc{bottom:771.840000px;}
.y9b{bottom:772.200000px;}
.yc1{bottom:773.640000px;}
.y78{bottom:787.500000px;}
.y52{bottom:789.480000px;}
.y31{bottom:792.360000px;}
.yc0{bottom:794.520000px;}
.y2f{bottom:809.280000px;}
.yb{bottom:813.240000px;}
.ybf{bottom:815.040000px;}
.y75{bottom:817.500000px;}
.y2e{bottom:821.160000px;}
.y30{bottom:824.400000px;}
.y51{bottom:831.960000px;}
.y9a{bottom:834.480000px;}
.ybe{bottom:835.920000px;}
.y72{bottom:844.500000px;}
.y70{bottom:846.000000px;}
.y50{bottom:852.480000px;}
.ya{bottom:855.000000px;}
.ybd{bottom:856.440000px;}
.y6c{bottom:873.000000px;}
.y2d{bottom:874.800000px;}
.y99{bottom:875.880000px;}
.ybc{bottom:877.320000px;}
.y4f{bottom:894.240000px;}
.y2c{bottom:896.040000px;}
.y9{bottom:896.760000px;}
.ybb{bottom:897.840000px;}
.y6b{bottom:900.000000px;}
.y4e{bottom:915.120000px;}
.y8{bottom:917.640000px;}
.yba{bottom:918.720000px;}
.y68{bottom:927.000000px;}
.y2b{bottom:937.800000px;}
.y98{bottom:938.160000px;}
.yb9{bottom:939.240000px;}
.y4d{bottom:957.240000px;}
.y7{bottom:959.040000px;}
.yb8{bottom:960.120000px;}
.y67{bottom:979.200000px;}
.y97{bottom:979.560000px;}
.y6{bottom:979.920000px;}
.yb7{bottom:980.640000px;}
.y4c{bottom:999.360000px;}
.yb6{bottom:1001.520000px;}
.y4b{bottom:1020.240000px;}
.y5{bottom:1021.320000px;}
.y66{bottom:1021.680000px;}
.y2a{bottom:1022.040000px;}
.y29{bottom:1042.920000px;}
.y49{bottom:1061.640000px;}
.y4{bottom:1063.080000px;}
.y28{bottom:1063.440000px;}
.y4a{bottom:1064.880000px;}
.y2{bottom:1111.500000px;}
.y1{bottom:1116.720000px;}
.h2{height:22.500000px;}
.ha{height:24.000000px;}
.hb{height:25.500000px;}
.h3{height:48.796875px;}
.hc{height:49.992188px;}
.h4{height:50.027344px;}
.h1{height:50.308594px;}
.h5{height:50.941406px;}
.h8{height:61.726641px;}
.h9{height:64.427344px;}
.h7{height:98.461406px;}
.h6{height:105.661406px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w2{width:105.000000px;}
.w3{width:280.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:1.513176px;}
.x1a{left:28.787100px;}
.x20{left:40.598160px;}
.x1c{left:42.307620px;}
.x1e{left:43.524888px;}
.x1d{left:45.420000px;}
.x1b{left:48.217524px;}
.x1f{left:61.549800px;}
.x21{left:63.198132px;}
.x17{left:133.500000px;}
.x1{left:135.000000px;}
.x3{left:138.836412px;}
.x23{left:162.000000px;}
.x5{left:173.772936px;}
.xa{left:177.480000px;}
.x24{left:189.000000px;}
.x10{left:234.720000px;}
.x19{left:241.500000px;}
.x11{left:280.468152px;}
.x4{left:311.273424px;}
.x6{left:329.005404px;}
.x12{left:342.360000px;}
.x7{left:347.018220px;}
.x14{left:355.540680px;}
.x8{left:369.916560px;}
.xb{left:378.720000px;}
.x13{left:384.025680px;}
.x15{left:385.246800px;}
.xc{left:403.191000px;}
.xd{left:406.440000px;}
.x22{left:430.920000px;}
.xe{left:450.000000px;}
.x2{left:453.000000px;}
.x9{left:483.480000px;}
.xf{left:506.160000px;}
.x16{left:700.119720px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v9{vertical-align:-23.040000pt;}
.v1{vertical-align:-12.800000pt;}
.v6{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v7{vertical-align:23.040000pt;}
.v8{vertical-align:35.840000pt;}
.v4{vertical-align:42.240000pt;}
.v3{vertical-align:48.640000pt;}
.ls1c{letter-spacing:-0.025600pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.002560pt;}
.ls21{letter-spacing:0.004992pt;}
.ls26{letter-spacing:0.005120pt;}
.ls32{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.012416pt;}
.lsd{letter-spacing:0.012800pt;}
.ls2e{letter-spacing:0.018304pt;}
.ls24{letter-spacing:0.019712pt;}
.ls13{letter-spacing:0.020224pt;}
.ls22{letter-spacing:0.020352pt;}
.ls27{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.024064pt;}
.ls18{letter-spacing:0.024320pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls36{letter-spacing:0.170240pt;}
.ls34{letter-spacing:0.282240pt;}
.ls1d{letter-spacing:0.353920pt;}
.ls35{letter-spacing:0.367360pt;}
.ls9{letter-spacing:1.406720pt;}
.ls6{letter-spacing:1.406848pt;}
.ls30{letter-spacing:1.519360pt;}
.ls38{letter-spacing:1.519488pt;}
.ls5{letter-spacing:1.532160pt;}
.ls37{letter-spacing:1.876480pt;}
.ls2a{letter-spacing:2.004480pt;}
.ls12{letter-spacing:2.468736pt;}
.ls2c{letter-spacing:2.946560pt;}
.ls2b{letter-spacing:2.947840pt;}
.ls1b{letter-spacing:4.085248pt;}
.lsb{letter-spacing:4.135680pt;}
.ls2f{letter-spacing:4.136576pt;}
.ls1{letter-spacing:4.136704pt;}
.ls4{letter-spacing:4.136832pt;}
.ls0{letter-spacing:4.136960pt;}
.ls23{letter-spacing:4.226944pt;}
.ls17{letter-spacing:4.245376pt;}
.ls28{letter-spacing:4.373760pt;}
.ls1f{letter-spacing:4.374144pt;}
.ls20{letter-spacing:4.374272pt;}
.ls31{letter-spacing:4.467200pt;}
.lse{letter-spacing:4.768000pt;}
.ls25{letter-spacing:4.989440pt;}
.lsa{letter-spacing:5.237760pt;}
.ls19{letter-spacing:17.775360pt;}
.ls33{letter-spacing:17.789440pt;}
.lsc{letter-spacing:18.359040pt;}
.ls2d{letter-spacing:20.724480pt;}
.ls16{letter-spacing:21.862528pt;}
.ls8{letter-spacing:21.913600pt;}
.ls10{letter-spacing:21.913984pt;}
.lsf{letter-spacing:21.914112pt;}
.ls15{letter-spacing:21.914880pt;}
.ls29{letter-spacing:22.151680pt;}
.ls7{letter-spacing:25.022720pt;}
.ls3a{letter-spacing:30.208000pt;}
.ls39{letter-spacing:56.523520pt;}
.ws1a{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.ws16{word-spacing:-0.412160pt;}
.wsc{word-spacing:-0.398720pt;}
.ws12{word-spacing:-0.327040pt;}
.ws17{word-spacing:-0.215040pt;}
.ws10{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.088320pt;}
.ws11{word-spacing:-0.066560pt;}
.ws0{word-spacing:-0.064000pt;}
.ws19{word-spacing:-0.053760pt;}
.wse{word-spacing:-0.051200pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:10.581248pt;}
.ws13{word-spacing:10.581760pt;}
.ws14{word-spacing:10.607360pt;}
.ws18{word-spacing:10.608640pt;}
.ws7{word-spacing:14.163200pt;}
.wsb{word-spacing:17.706240pt;}
.ws8{word-spacing:17.711232pt;}
.ws5{word-spacing:17.711360pt;}
.ws9{word-spacing:17.711488pt;}
.ws6{word-spacing:17.717760pt;}
.wsd{word-spacing:17.717888pt;}
.ws15{word-spacing:17.736960pt;}
.ws4{word-spacing:19.170560pt;}
._6{margin-left:-26.176000pt;}
._7{margin-left:-8.427520pt;}
._8{margin-left:-6.991360pt;}
._0{margin-left:-5.200640pt;}
._a{margin-left:-3.846400pt;}
._2{margin-left:-2.946560pt;}
._b{margin-left:-2.007296pt;}
._3{margin-left:-1.004800pt;}
._1{width:1.466880pt;}
._4{width:2.735232pt;}
._9{width:4.412160pt;}
._5{width:11.308416pt;}
.fs1{font-size:44.800000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:3.520000pt;}
.y6d{bottom:3.840000pt;}
.y76{bottom:3.893333pt;}
.y6f{bottom:4.160000pt;}
.y3{bottom:4.640000pt;}
.y7c{bottom:4.693333pt;}
.y69{bottom:4.800000pt;}
.y73{bottom:4.853333pt;}
.y6a{bottom:5.120000pt;}
.y74{bottom:5.173333pt;}
.y82{bottom:5.493333pt;}
.y79{bottom:5.600000pt;}
.y80{bottom:5.760000pt;}
.y7d{bottom:5.973333pt;}
.y7f{bottom:6.400000pt;}
.y85{bottom:6.506667pt;}
.y7a{bottom:6.560000pt;}
.y6e{bottom:6.720000pt;}
.y77{bottom:6.773333pt;}
.y84{bottom:6.826667pt;}
.y96{bottom:101.440000pt;}
.y48{bottom:102.400000pt;}
.y27{bottom:111.680000pt;}
.yb5{bottom:113.920000pt;}
.y65{bottom:114.880000pt;}
.y26{bottom:130.560000pt;}
.yb4{bottom:132.160000pt;}
.y64{bottom:133.440000pt;}
.y95{bottom:138.240000pt;}
.y47{bottom:140.160000pt;}
.y25{bottom:148.800000pt;}
.yb3{bottom:150.720000pt;}
.y94{bottom:156.800000pt;}
.y24{bottom:167.360000pt;}
.yb2{bottom:168.960000pt;}
.y63{bottom:172.160000pt;}
.y46{bottom:177.600000pt;}
.y23{bottom:185.600000pt;}
.yb1{bottom:187.520000pt;}
.y93{bottom:193.920000pt;}
.y22{bottom:204.480000pt;}
.yb0{bottom:205.760000pt;}
.y62{bottom:208.640000pt;}
.y61{bottom:211.840000pt;}
.y45{bottom:214.400000pt;}
.y21{bottom:222.720000pt;}
.yaf{bottom:224.320000pt;}
.y92{bottom:231.040000pt;}
.y44{bottom:232.960000pt;}
.yae{bottom:242.560000pt;}
.y60{bottom:249.280000pt;}
.y90{bottom:249.920000pt;}
.y43{bottom:251.520000pt;}
.y91{bottom:252.800000pt;}
.y20{bottom:260.160000pt;}
.yad{bottom:261.120000pt;}
.y5f{bottom:269.440000pt;}
.y1f{bottom:278.720000pt;}
.yac{bottom:279.360000pt;}
.y8f{bottom:288.000000pt;}
.y42{bottom:288.960000pt;}
.y1e{bottom:297.280000pt;}
.yab{bottom:297.920000pt;}
.y5e{bottom:306.880000pt;}
.y41{bottom:307.200000pt;}
.y1d{bottom:315.520000pt;}
.yaa{bottom:316.160000pt;}
.y8e{bottom:325.120000pt;}
.y1c{bottom:334.400000pt;}
.ya9{bottom:334.720000pt;}
.y5d{bottom:344.000000pt;}
.y40{bottom:346.560000pt;}
.y1b{bottom:352.640000pt;}
.ya8{bottom:352.960000pt;}
.y8d{bottom:362.240000pt;}
.y1a{bottom:371.200000pt;}
.ya7{bottom:371.520000pt;}
.y8c{bottom:380.800000pt;}
.y5c{bottom:381.120000pt;}
.y3f{bottom:384.000000pt;}
.y19{bottom:389.440000pt;}
.ya6{bottom:389.760000pt;}
.y5b{bottom:400.000000pt;}
.ya5{bottom:408.320000pt;}
.y8b{bottom:417.600000pt;}
.y3e{bottom:421.120000pt;}
.y18{bottom:426.240000pt;}
.y5a{bottom:438.720000pt;}
.y3d{bottom:440.000000pt;}
.ya4{bottom:445.120000pt;}
.y8a{bottom:454.720000pt;}
.y3b{bottom:458.240000pt;}
.y3c{bottom:461.120000pt;}
.y17{bottom:463.680000pt;}
.y59{bottom:476.160000pt;}
.ya3{bottom:482.240000pt;}
.y89{bottom:492.160000pt;}
.y58{bottom:494.720000pt;}
.y3a{bottom:496.960000pt;}
.y16{bottom:500.480000pt;}
.y38{bottom:515.200000pt;}
.y39{bottom:518.080000pt;}
.ya2{bottom:519.040000pt;}
.y15{bottom:519.360000pt;}
.y88{bottom:529.280000pt;}
.y57{bottom:531.840000pt;}
.ya1{bottom:537.600000pt;}
.y14{bottom:537.920000pt;}
.y37{bottom:553.280000pt;}
.y13{bottom:556.160000pt;}
.ya0{bottom:556.480000pt;}
.y87{bottom:566.080000pt;}
.y56{bottom:571.200000pt;}
.y36{bottom:571.840000pt;}
.y12{bottom:574.720000pt;}
.y9f{bottom:575.040000pt;}
.y86{bottom:584.640000pt;}
.y9e{bottom:593.280000pt;}
.y11{bottom:593.600000pt;}
.yc5{bottom:595.520000pt;}
.y55{bottom:608.960000pt;}
.y35{bottom:610.240000pt;}
.y9d{bottom:611.520000pt;}
.y10{bottom:612.160000pt;}
.y83{bottom:621.333333pt;}
.y81{bottom:622.666667pt;}
.y54{bottom:627.200000pt;}
.yf{bottom:630.400000pt;}
.yc4{bottom:632.320000pt;}
.y34{bottom:647.040000pt;}
.y7e{bottom:648.000000pt;}
.ye{bottom:648.640000pt;}
.y9c{bottom:648.960000pt;}
.yc3{bottom:650.880000pt;}
.y53{bottom:664.640000pt;}
.y32{bottom:665.600000pt;}
.yd{bottom:667.840000pt;}
.y33{bottom:668.480000pt;}
.yc2{bottom:669.440000pt;}
.y7b{bottom:674.666667pt;}
.yc{bottom:686.080000pt;}
.y9b{bottom:686.400000pt;}
.yc1{bottom:687.680000pt;}
.y78{bottom:700.000000pt;}
.y52{bottom:701.760000pt;}
.y31{bottom:704.320000pt;}
.yc0{bottom:706.240000pt;}
.y2f{bottom:719.360000pt;}
.yb{bottom:722.880000pt;}
.ybf{bottom:724.480000pt;}
.y75{bottom:726.666667pt;}
.y2e{bottom:729.920000pt;}
.y30{bottom:732.800000pt;}
.y51{bottom:739.520000pt;}
.y9a{bottom:741.760000pt;}
.ybe{bottom:743.040000pt;}
.y72{bottom:750.666667pt;}
.y70{bottom:752.000000pt;}
.y50{bottom:757.760000pt;}
.ya{bottom:760.000000pt;}
.ybd{bottom:761.280000pt;}
.y6c{bottom:776.000000pt;}
.y2d{bottom:777.600000pt;}
.y99{bottom:778.560000pt;}
.ybc{bottom:779.840000pt;}
.y4f{bottom:794.880000pt;}
.y2c{bottom:796.480000pt;}
.y9{bottom:797.120000pt;}
.ybb{bottom:798.080000pt;}
.y6b{bottom:800.000000pt;}
.y4e{bottom:813.440000pt;}
.y8{bottom:815.680000pt;}
.yba{bottom:816.640000pt;}
.y68{bottom:824.000000pt;}
.y2b{bottom:833.600000pt;}
.y98{bottom:833.920000pt;}
.yb9{bottom:834.880000pt;}
.y4d{bottom:850.880000pt;}
.y7{bottom:852.480000pt;}
.yb8{bottom:853.440000pt;}
.y67{bottom:870.400000pt;}
.y97{bottom:870.720000pt;}
.y6{bottom:871.040000pt;}
.yb7{bottom:871.680000pt;}
.y4c{bottom:888.320000pt;}
.yb6{bottom:890.240000pt;}
.y4b{bottom:906.880000pt;}
.y5{bottom:907.840000pt;}
.y66{bottom:908.160000pt;}
.y2a{bottom:908.480000pt;}
.y29{bottom:927.040000pt;}
.y49{bottom:943.680000pt;}
.y4{bottom:944.960000pt;}
.y28{bottom:945.280000pt;}
.y4a{bottom:946.560000pt;}
.y2{bottom:988.000000pt;}
.y1{bottom:992.640000pt;}
.h2{height:20.000000pt;}
.ha{height:21.333333pt;}
.hb{height:22.666667pt;}
.h3{height:43.375000pt;}
.hc{height:44.437500pt;}
.h4{height:44.468750pt;}
.h1{height:44.718750pt;}
.h5{height:45.281250pt;}
.h8{height:54.868125pt;}
.h9{height:57.268750pt;}
.h7{height:87.521250pt;}
.h6{height:93.921250pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w2{width:93.333333pt;}
.w3{width:249.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.345045pt;}
.x1a{left:25.588533pt;}
.x20{left:36.087253pt;}
.x1c{left:37.606773pt;}
.x1e{left:38.688789pt;}
.x1d{left:40.373333pt;}
.x1b{left:42.860021pt;}
.x1f{left:54.710933pt;}
.x21{left:56.176117pt;}
.x17{left:118.666667pt;}
.x1{left:120.000000pt;}
.x3{left:123.410144pt;}
.x23{left:144.000000pt;}
.x5{left:154.464832pt;}
.xa{left:157.760000pt;}
.x24{left:168.000000pt;}
.x10{left:208.640000pt;}
.x19{left:214.666667pt;}
.x11{left:249.305024pt;}
.x4{left:276.687488pt;}
.x6{left:292.449248pt;}
.x12{left:304.320000pt;}
.x7{left:308.460640pt;}
.x14{left:316.036160pt;}
.x8{left:328.814720pt;}
.xb{left:336.640000pt;}
.x13{left:341.356160pt;}
.x15{left:342.441600pt;}
.xc{left:358.392000pt;}
.xd{left:361.280000pt;}
.x22{left:383.040000pt;}
.xe{left:400.000000pt;}
.x2{left:402.666667pt;}
.x9{left:429.760000pt;}
.xf{left:449.920000pt;}
.x16{left:622.328640pt;}
}




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