
    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_f75b0d001fe4ec266312fd2b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5bb4a4813a508456f9222f80.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_b9f735c9d46d8fe6ca944d70.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_8f70520090256239e81a32b8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4306e590e14f24c335ae92c1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:84.000000px;}
.lsd{letter-spacing:-3.036000px;}
.ls26{letter-spacing:-0.621000px;}
.ls1f{letter-spacing:-0.552000px;}
.ls11{letter-spacing:-0.483000px;}
.lsc{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.345000px;}
.ls21{letter-spacing:-0.276000px;}
.ls15{letter-spacing:-0.207000px;}
.ls1e{letter-spacing:-0.138000px;}
.ls14{letter-spacing:-0.069000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.016694px;}
.lsb{letter-spacing:0.069000px;}
.ls6{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.207000px;}
.ls4{letter-spacing:0.276000px;}
.ls10{letter-spacing:0.345000px;}
.ls2b{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.414000px;}
.ls2d{letter-spacing:0.441000px;}
.ls13{letter-spacing:0.483000px;}
.lse{letter-spacing:0.552000px;}
.lsf{letter-spacing:0.621000px;}
.ls2a{letter-spacing:0.630000px;}
.ls16{letter-spacing:0.690000px;}
.ls1b{letter-spacing:0.759000px;}
.ls19{letter-spacing:0.828000px;}
.ls20{letter-spacing:0.897000px;}
.ls1c{letter-spacing:1.035000px;}
.ls25{letter-spacing:1.242000px;}
.ls23{letter-spacing:1.311000px;}
.ls1d{letter-spacing:2.484000px;}
.ls8{letter-spacing:2.730000px;}
.ls22{letter-spacing:3.312000px;}
.ls28{letter-spacing:3.843000px;}
.ls0{letter-spacing:3.900000px;}
.ls2f{letter-spacing:5.400000px;}
.ls2{letter-spacing:6.000000px;}
.ls12{letter-spacing:6.240000px;}
.ls27{letter-spacing:6.300000px;}
.ls1{letter-spacing:7.731000px;}
.ls2c{letter-spacing:8.127000px;}
.ls17{letter-spacing:8.625000px;}
.ls1a{letter-spacing:8.970000px;}
.ls2e{letter-spacing:9.450000px;}
.ls18{letter-spacing:9.798000px;}
.ls30{letter-spacing:9.891000px;}
.ls29{letter-spacing:10.080000px;}
.ls24{letter-spacing:10.419000px;}
.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;}
}
.ws9{word-spacing:-24.003000px;}
.ws2{word-spacing:-21.075000px;}
.wsa{word-spacing:-18.333000px;}
.wsb{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.733000px;}
.ws3{word-spacing:-17.181000px;}
.ws4{word-spacing:-17.043000px;}
.ws5{word-spacing:-16.974000px;}
.ws8{word-spacing:-16.905000px;}
.ws6{word-spacing:-16.698000px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:461.697600px;}
._d{margin-left:-1615.752000px;}
._11{margin-left:-16.875000px;}
._14{margin-left:-15.750000px;}
._f{margin-left:-14.262000px;}
._10{margin-left:-12.009000px;}
._13{margin-left:-10.374000px;}
._12{margin-left:-9.120000px;}
._8{margin-left:-8.094000px;}
._9{margin-left:-6.060000px;}
._1{margin-left:-4.890000px;}
._2{margin-left:-3.300000px;}
._3{margin-left:-1.380000px;}
._4{width:1.140000px;}
._7{width:2.190000px;}
._b{width:3.234000px;}
._0{width:4.260000px;}
._5{width:6.000000px;}
._6{width:7.560000px;}
._c{width:8.649000px;}
._a{width:9.660000px;}
._e{width:10.695000px;}
._16{width:11.931000px;}
._15{width:14.475000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:204.033000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.691000px;}
.yaa{bottom:108.182250px;}
.y4d{bottom:109.320750px;}
.ycf{bottom:109.355250px;}
.y73{bottom:110.200500px;}
.y23{bottom:110.398500px;}
.ya9{bottom:129.037500px;}
.y84{bottom:129.572250px;}
.y4c{bottom:129.727500px;}
.yce{bottom:130.797000px;}
.y72{bottom:131.055750px;}
.y22{bottom:131.391750px;}
.y83{bottom:149.823750px;}
.ya8{bottom:149.892750px;}
.y4b{bottom:150.134250px;}
.y71{bottom:151.911000px;}
.ycd{bottom:152.238750px;}
.y21{bottom:152.385000px;}
.y82{bottom:170.075250px;}
.y4a{bottom:170.385750px;}
.ya7{bottom:170.748000px;}
.y70{bottom:172.766250px;}
.y20{bottom:173.378250px;}
.ycc{bottom:173.680500px;}
.y81{bottom:190.326750px;}
.y49{bottom:190.637250px;}
.ya6{bottom:191.603250px;}
.y6f{bottom:193.621500px;}
.y1f{bottom:194.371500px;}
.ycb{bottom:195.122250px;}
.y80{bottom:210.578250px;}
.y48{bottom:210.888750px;}
.ya5{bottom:212.458500px;}
.y6e{bottom:214.476750px;}
.y1e{bottom:215.364750px;}
.yca{bottom:216.564000px;}
.y7f{bottom:230.829750px;}
.y47{bottom:231.140250px;}
.ya4{bottom:233.313750px;}
.y6d{bottom:235.332000px;}
.y1d{bottom:236.358000px;}
.yc9{bottom:238.005750px;}
.y7e{bottom:251.081250px;}
.y46{bottom:251.391750px;}
.ya3{bottom:254.169000px;}
.y6c{bottom:256.187250px;}
.y1c{bottom:257.351250px;}
.yc8{bottom:259.447500px;}
.y7d{bottom:271.332750px;}
.y45{bottom:271.643250px;}
.ya2{bottom:275.162250px;}
.y6b{bottom:277.042500px;}
.y1b{bottom:278.344500px;}
.yc7{bottom:280.889250px;}
.y7c{bottom:291.584250px;}
.y44{bottom:291.894750px;}
.ya1{bottom:296.155500px;}
.y6a{bottom:297.897750px;}
.y1a{bottom:299.337750px;}
.yc6{bottom:302.331000px;}
.y7b{bottom:311.835750px;}
.y43{bottom:312.146250px;}
.ya0{bottom:317.148750px;}
.y69{bottom:318.753000px;}
.y19{bottom:320.331000px;}
.yc5{bottom:323.772750px;}
.y7a{bottom:332.087250px;}
.y42{bottom:332.397750px;}
.y9f{bottom:338.142000px;}
.y68{bottom:339.608250px;}
.y18{bottom:341.324250px;}
.yc4{bottom:345.214500px;}
.y79{bottom:352.338750px;}
.y41{bottom:352.649250px;}
.y9e{bottom:359.135250px;}
.y67{bottom:360.463500px;}
.y17{bottom:362.317500px;}
.yc3{bottom:366.656250px;}
.y78{bottom:372.590250px;}
.y40{bottom:372.900750px;}
.y9d{bottom:380.128500px;}
.y66{bottom:381.318750px;}
.y16{bottom:383.310750px;}
.yc2{bottom:388.098000px;}
.y77{bottom:392.841750px;}
.y3f{bottom:393.152250px;}
.y9c{bottom:401.121750px;}
.y65{bottom:402.174000px;}
.y15{bottom:404.304000px;}
.yc1{bottom:409.539750px;}
.y76{bottom:413.093250px;}
.y3e{bottom:413.403750px;}
.y9b{bottom:422.115000px;}
.y64{bottom:423.029250px;}
.y14{bottom:425.297250px;}
.yc0{bottom:430.981500px;}
.ye1{bottom:433.320000px;}
.y75{bottom:433.344750px;}
.y3d{bottom:433.655250px;}
.y9a{bottom:443.108250px;}
.y63{bottom:443.884500px;}
.y13{bottom:446.290500px;}
.ybf{bottom:452.423250px;}
.ye0{bottom:453.570000px;}
.y74{bottom:453.751500px;}
.y3c{bottom:453.906750px;}
.y99{bottom:464.101500px;}
.y62{bottom:464.739750px;}
.y12{bottom:467.283750px;}
.ydf{bottom:473.820000px;}
.ybe{bottom:473.865000px;}
.y3b{bottom:474.158250px;}
.y98{bottom:485.094750px;}
.y61{bottom:485.595000px;}
.y11{bottom:488.277000px;}
.yde{bottom:494.070000px;}
.y3a{bottom:494.565000px;}
.ybd{bottom:495.306750px;}
.y97{bottom:506.088000px;}
.y60{bottom:506.450250px;}
.y10{bottom:509.270250px;}
.y39{bottom:514.971750px;}
.ybc{bottom:516.748500px;}
.y96{bottom:527.081250px;}
.y5f{bottom:527.305500px;}
.ydd{bottom:529.320000px;}
.yf{bottom:530.263500px;}
.y38{bottom:535.378500px;}
.ybb{bottom:538.190250px;}
.y95{bottom:548.074500px;}
.y5e{bottom:548.160750px;}
.ye{bottom:551.256750px;}
.y37{bottom:555.785250px;}
.yba{bottom:559.632000px;}
.y5d{bottom:569.016000px;}
.y94{bottom:569.067750px;}
.yd{bottom:572.250000px;}
.y36{bottom:576.192000px;}
.ydc{bottom:579.578250px;}
.yb9{bottom:581.073750px;}
.y5c{bottom:589.871250px;}
.y93{bottom:590.061000px;}
.yb{bottom:593.236500px;}
.yc{bottom:593.243250px;}
.y35{bottom:596.598750px;}
.ydb{bottom:598.777500px;}
.yb8{bottom:602.515500px;}
.y5b{bottom:610.726500px;}
.y92{bottom:611.054250px;}
.y34{bottom:617.005500px;}
.yb7{bottom:623.957250px;}
.yda{bottom:626.481750px;}
.y5a{bottom:631.581750px;}
.y91{bottom:632.047500px;}
.y33{bottom:637.412250px;}
.yb6{bottom:645.399000px;}
.y59{bottom:652.437000px;}
.y90{bottom:653.040750px;}
.yd9{bottom:654.186000px;}
.ya{bottom:656.236500px;}
.y32{bottom:657.819000px;}
.yb5{bottom:666.840750px;}
.y58{bottom:673.292250px;}
.yd8{bottom:673.385250px;}
.y8f{bottom:673.896000px;}
.y9{bottom:675.886500px;}
.y31{bottom:678.225750px;}
.yb4{bottom:688.282500px;}
.y57{bottom:694.147500px;}
.y8e{bottom:694.751250px;}
.y30{bottom:698.632500px;}
.yd7{bottom:701.089500px;}
.y8{bottom:706.155000px;}
.yb3{bottom:709.724250px;}
.y56{bottom:715.002750px;}
.y8d{bottom:715.606500px;}
.y2f{bottom:719.039250px;}
.yd6{bottom:720.288750px;}
.yb2{bottom:731.166000px;}
.y55{bottom:735.858000px;}
.y8c{bottom:736.461750px;}
.y7{bottom:738.717000px;}
.y2e{bottom:739.446000px;}
.yd5{bottom:747.993000px;}
.yb1{bottom:752.607750px;}
.y54{bottom:756.713250px;}
.y8b{bottom:757.317000px;}
.y2d{bottom:759.852750px;}
.yd4{bottom:767.192250px;}
.y6{bottom:771.267000px;}
.yb0{bottom:774.049500px;}
.y53{bottom:777.568500px;}
.y8a{bottom:778.172250px;}
.y2c{bottom:780.259500px;}
.yd3{bottom:794.896500px;}
.yaf{bottom:795.491250px;}
.y52{bottom:798.423750px;}
.y89{bottom:799.027500px;}
.y2b{bottom:800.666250px;}
.yae{bottom:816.933000px;}
.y51{bottom:819.279000px;}
.y88{bottom:819.882750px;}
.y2a{bottom:821.073000px;}
.yd2{bottom:822.600750px;}
.yad{bottom:838.374750px;}
.y5{bottom:838.612500px;}
.y50{bottom:840.134250px;}
.y87{bottom:840.738000px;}
.y29{bottom:841.479750px;}
.yd1{bottom:841.800000px;}
.y4{bottom:856.762500px;}
.yac{bottom:859.816500px;}
.y4f{bottom:860.989500px;}
.y86{bottom:861.593250px;}
.y28{bottom:861.886500px;}
.yd0{bottom:869.504250px;}
.yab{bottom:881.258250px;}
.y4e{bottom:881.844750px;}
.y27{bottom:882.293250px;}
.y85{bottom:882.448500px;}
.y3{bottom:885.547500px;}
.y26{bottom:902.700000px;}
.y2{bottom:903.697500px;}
.y25{bottom:948.406500px;}
.y24{bottom:966.406500px;}
.hf{height:39.990234px;}
.hc{height:40.757812px;}
.he{height:45.852539px;}
.h4{height:50.947266px;}
.hb{height:52.265625px;}
.h3{height:53.494629px;}
.hd{height:54.878906px;}
.h9{height:58.589355px;}
.ha{height:60.105469px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h7{height:94.078125px;}
.h8{height:159.799283px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:106.307512px;}
.x3{left:118.188450px;}
.x2{left:233.857500px;}
.x6{left:404.980500px;}
.x5{left:609.670500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.666667pt;}
.lsd{letter-spacing:-2.698667pt;}
.ls26{letter-spacing:-0.552000pt;}
.ls1f{letter-spacing:-0.490667pt;}
.ls11{letter-spacing:-0.429333pt;}
.lsc{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.306667pt;}
.ls21{letter-spacing:-0.245333pt;}
.ls15{letter-spacing:-0.184000pt;}
.ls1e{letter-spacing:-0.122667pt;}
.ls14{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014839pt;}
.lsb{letter-spacing:0.061333pt;}
.ls6{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.184000pt;}
.ls4{letter-spacing:0.245333pt;}
.ls10{letter-spacing:0.306667pt;}
.ls2b{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.368000pt;}
.ls2d{letter-spacing:0.392000pt;}
.ls13{letter-spacing:0.429333pt;}
.lse{letter-spacing:0.490667pt;}
.lsf{letter-spacing:0.552000pt;}
.ls2a{letter-spacing:0.560000pt;}
.ls16{letter-spacing:0.613333pt;}
.ls1b{letter-spacing:0.674667pt;}
.ls19{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.797333pt;}
.ls1c{letter-spacing:0.920000pt;}
.ls25{letter-spacing:1.104000pt;}
.ls23{letter-spacing:1.165333pt;}
.ls1d{letter-spacing:2.208000pt;}
.ls8{letter-spacing:2.426667pt;}
.ls22{letter-spacing:2.944000pt;}
.ls28{letter-spacing:3.416000pt;}
.ls0{letter-spacing:3.466667pt;}
.ls2f{letter-spacing:4.800000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls12{letter-spacing:5.546667pt;}
.ls27{letter-spacing:5.600000pt;}
.ls1{letter-spacing:6.872000pt;}
.ls2c{letter-spacing:7.224000pt;}
.ls17{letter-spacing:7.666667pt;}
.ls1a{letter-spacing:7.973333pt;}
.ls2e{letter-spacing:8.400000pt;}
.ls18{letter-spacing:8.709333pt;}
.ls30{letter-spacing:8.792000pt;}
.ls29{letter-spacing:8.960000pt;}
.ls24{letter-spacing:9.261333pt;}
.ws9{word-spacing:-21.336000pt;}
.ws2{word-spacing:-18.733333pt;}
.wsa{word-spacing:-16.296000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.762667pt;}
.ws3{word-spacing:-15.272000pt;}
.ws4{word-spacing:-15.149333pt;}
.ws5{word-spacing:-15.088000pt;}
.ws8{word-spacing:-15.026667pt;}
.ws6{word-spacing:-14.842667pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:410.397867pt;}
._d{margin-left:-1436.224000pt;}
._11{margin-left:-15.000000pt;}
._14{margin-left:-14.000000pt;}
._f{margin-left:-12.677333pt;}
._10{margin-left:-10.674667pt;}
._13{margin-left:-9.221333pt;}
._12{margin-left:-8.106667pt;}
._8{margin-left:-7.194667pt;}
._9{margin-left:-5.386667pt;}
._1{margin-left:-4.346667pt;}
._2{margin-left:-2.933333pt;}
._3{margin-left:-1.226667pt;}
._4{width:1.013333pt;}
._7{width:1.946667pt;}
._b{width:2.874667pt;}
._0{width:3.786667pt;}
._5{width:5.333333pt;}
._6{width:6.720000pt;}
._c{width:7.688000pt;}
._a{width:8.586667pt;}
._e{width:9.506667pt;}
._16{width:10.605333pt;}
._15{width:12.866667pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:181.362667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.392000pt;}
.yaa{bottom:96.162000pt;}
.y4d{bottom:97.174000pt;}
.ycf{bottom:97.204667pt;}
.y73{bottom:97.956000pt;}
.y23{bottom:98.132000pt;}
.ya9{bottom:114.700000pt;}
.y84{bottom:115.175333pt;}
.y4c{bottom:115.313333pt;}
.yce{bottom:116.264000pt;}
.y72{bottom:116.494000pt;}
.y22{bottom:116.792667pt;}
.y83{bottom:133.176667pt;}
.ya8{bottom:133.238000pt;}
.y4b{bottom:133.452667pt;}
.y71{bottom:135.032000pt;}
.ycd{bottom:135.323333pt;}
.y21{bottom:135.453333pt;}
.y82{bottom:151.178000pt;}
.y4a{bottom:151.454000pt;}
.ya7{bottom:151.776000pt;}
.y70{bottom:153.570000pt;}
.y20{bottom:154.114000pt;}
.ycc{bottom:154.382667pt;}
.y81{bottom:169.179333pt;}
.y49{bottom:169.455333pt;}
.ya6{bottom:170.314000pt;}
.y6f{bottom:172.108000pt;}
.y1f{bottom:172.774667pt;}
.ycb{bottom:173.442000pt;}
.y80{bottom:187.180667pt;}
.y48{bottom:187.456667pt;}
.ya5{bottom:188.852000pt;}
.y6e{bottom:190.646000pt;}
.y1e{bottom:191.435333pt;}
.yca{bottom:192.501333pt;}
.y7f{bottom:205.182000pt;}
.y47{bottom:205.458000pt;}
.ya4{bottom:207.390000pt;}
.y6d{bottom:209.184000pt;}
.y1d{bottom:210.096000pt;}
.yc9{bottom:211.560667pt;}
.y7e{bottom:223.183333pt;}
.y46{bottom:223.459333pt;}
.ya3{bottom:225.928000pt;}
.y6c{bottom:227.722000pt;}
.y1c{bottom:228.756667pt;}
.yc8{bottom:230.620000pt;}
.y7d{bottom:241.184667pt;}
.y45{bottom:241.460667pt;}
.ya2{bottom:244.588667pt;}
.y6b{bottom:246.260000pt;}
.y1b{bottom:247.417333pt;}
.yc7{bottom:249.679333pt;}
.y7c{bottom:259.186000pt;}
.y44{bottom:259.462000pt;}
.ya1{bottom:263.249333pt;}
.y6a{bottom:264.798000pt;}
.y1a{bottom:266.078000pt;}
.yc6{bottom:268.738667pt;}
.y7b{bottom:277.187333pt;}
.y43{bottom:277.463333pt;}
.ya0{bottom:281.910000pt;}
.y69{bottom:283.336000pt;}
.y19{bottom:284.738667pt;}
.yc5{bottom:287.798000pt;}
.y7a{bottom:295.188667pt;}
.y42{bottom:295.464667pt;}
.y9f{bottom:300.570667pt;}
.y68{bottom:301.874000pt;}
.y18{bottom:303.399333pt;}
.yc4{bottom:306.857333pt;}
.y79{bottom:313.190000pt;}
.y41{bottom:313.466000pt;}
.y9e{bottom:319.231333pt;}
.y67{bottom:320.412000pt;}
.y17{bottom:322.060000pt;}
.yc3{bottom:325.916667pt;}
.y78{bottom:331.191333pt;}
.y40{bottom:331.467333pt;}
.y9d{bottom:337.892000pt;}
.y66{bottom:338.950000pt;}
.y16{bottom:340.720667pt;}
.yc2{bottom:344.976000pt;}
.y77{bottom:349.192667pt;}
.y3f{bottom:349.468667pt;}
.y9c{bottom:356.552667pt;}
.y65{bottom:357.488000pt;}
.y15{bottom:359.381333pt;}
.yc1{bottom:364.035333pt;}
.y76{bottom:367.194000pt;}
.y3e{bottom:367.470000pt;}
.y9b{bottom:375.213333pt;}
.y64{bottom:376.026000pt;}
.y14{bottom:378.042000pt;}
.yc0{bottom:383.094667pt;}
.ye1{bottom:385.173333pt;}
.y75{bottom:385.195333pt;}
.y3d{bottom:385.471333pt;}
.y9a{bottom:393.874000pt;}
.y63{bottom:394.564000pt;}
.y13{bottom:396.702667pt;}
.ybf{bottom:402.154000pt;}
.ye0{bottom:403.173333pt;}
.y74{bottom:403.334667pt;}
.y3c{bottom:403.472667pt;}
.y99{bottom:412.534667pt;}
.y62{bottom:413.102000pt;}
.y12{bottom:415.363333pt;}
.ydf{bottom:421.173333pt;}
.ybe{bottom:421.213333pt;}
.y3b{bottom:421.474000pt;}
.y98{bottom:431.195333pt;}
.y61{bottom:431.640000pt;}
.y11{bottom:434.024000pt;}
.yde{bottom:439.173333pt;}
.y3a{bottom:439.613333pt;}
.ybd{bottom:440.272667pt;}
.y97{bottom:449.856000pt;}
.y60{bottom:450.178000pt;}
.y10{bottom:452.684667pt;}
.y39{bottom:457.752667pt;}
.ybc{bottom:459.332000pt;}
.y96{bottom:468.516667pt;}
.y5f{bottom:468.716000pt;}
.ydd{bottom:470.506667pt;}
.yf{bottom:471.345333pt;}
.y38{bottom:475.892000pt;}
.ybb{bottom:478.391333pt;}
.y95{bottom:487.177333pt;}
.y5e{bottom:487.254000pt;}
.ye{bottom:490.006000pt;}
.y37{bottom:494.031333pt;}
.yba{bottom:497.450667pt;}
.y5d{bottom:505.792000pt;}
.y94{bottom:505.838000pt;}
.yd{bottom:508.666667pt;}
.y36{bottom:512.170667pt;}
.ydc{bottom:515.180667pt;}
.yb9{bottom:516.510000pt;}
.y5c{bottom:524.330000pt;}
.y93{bottom:524.498667pt;}
.yb{bottom:527.321333pt;}
.yc{bottom:527.327333pt;}
.y35{bottom:530.310000pt;}
.ydb{bottom:532.246667pt;}
.yb8{bottom:535.569333pt;}
.y5b{bottom:542.868000pt;}
.y92{bottom:543.159333pt;}
.y34{bottom:548.449333pt;}
.yb7{bottom:554.628667pt;}
.yda{bottom:556.872667pt;}
.y5a{bottom:561.406000pt;}
.y91{bottom:561.820000pt;}
.y33{bottom:566.588667pt;}
.yb6{bottom:573.688000pt;}
.y59{bottom:579.944000pt;}
.y90{bottom:580.480667pt;}
.yd9{bottom:581.498667pt;}
.ya{bottom:583.321333pt;}
.y32{bottom:584.728000pt;}
.yb5{bottom:592.747333pt;}
.y58{bottom:598.482000pt;}
.yd8{bottom:598.564667pt;}
.y8f{bottom:599.018667pt;}
.y9{bottom:600.788000pt;}
.y31{bottom:602.867333pt;}
.yb4{bottom:611.806667pt;}
.y57{bottom:617.020000pt;}
.y8e{bottom:617.556667pt;}
.y30{bottom:621.006667pt;}
.yd7{bottom:623.190667pt;}
.y8{bottom:627.693333pt;}
.yb3{bottom:630.866000pt;}
.y56{bottom:635.558000pt;}
.y8d{bottom:636.094667pt;}
.y2f{bottom:639.146000pt;}
.yd6{bottom:640.256667pt;}
.yb2{bottom:649.925333pt;}
.y55{bottom:654.096000pt;}
.y8c{bottom:654.632667pt;}
.y7{bottom:656.637333pt;}
.y2e{bottom:657.285333pt;}
.yd5{bottom:664.882667pt;}
.yb1{bottom:668.984667pt;}
.y54{bottom:672.634000pt;}
.y8b{bottom:673.170667pt;}
.y2d{bottom:675.424667pt;}
.yd4{bottom:681.948667pt;}
.y6{bottom:685.570667pt;}
.yb0{bottom:688.044000pt;}
.y53{bottom:691.172000pt;}
.y8a{bottom:691.708667pt;}
.y2c{bottom:693.564000pt;}
.yd3{bottom:706.574667pt;}
.yaf{bottom:707.103333pt;}
.y52{bottom:709.710000pt;}
.y89{bottom:710.246667pt;}
.y2b{bottom:711.703333pt;}
.yae{bottom:726.162667pt;}
.y51{bottom:728.248000pt;}
.y88{bottom:728.784667pt;}
.y2a{bottom:729.842667pt;}
.yd2{bottom:731.200667pt;}
.yad{bottom:745.222000pt;}
.y5{bottom:745.433333pt;}
.y50{bottom:746.786000pt;}
.y87{bottom:747.322667pt;}
.y29{bottom:747.982000pt;}
.yd1{bottom:748.266667pt;}
.y4{bottom:761.566667pt;}
.yac{bottom:764.281333pt;}
.y4f{bottom:765.324000pt;}
.y86{bottom:765.860667pt;}
.y28{bottom:766.121333pt;}
.yd0{bottom:772.892667pt;}
.yab{bottom:783.340667pt;}
.y4e{bottom:783.862000pt;}
.y27{bottom:784.260667pt;}
.y85{bottom:784.398667pt;}
.y3{bottom:787.153333pt;}
.y26{bottom:802.400000pt;}
.y2{bottom:803.286667pt;}
.y25{bottom:843.028000pt;}
.y24{bottom:859.028000pt;}
.hf{height:35.546875pt;}
.hc{height:36.229167pt;}
.he{height:40.757812pt;}
.h4{height:45.286458pt;}
.hb{height:46.458333pt;}
.h3{height:47.550781pt;}
.hd{height:48.781250pt;}
.h9{height:52.079427pt;}
.ha{height:53.427083pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h7{height:83.625000pt;}
.h8{height:142.043807pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:94.495567pt;}
.x3{left:105.056400pt;}
.x2{left:207.873333pt;}
.x6{left:359.982667pt;}
.x5{left:541.929333pt;}
}




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