
    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_d6341f8468c3daf72b2245cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_6b58757e1267e71ad33e318e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_d16fb22b7316b1e909810a91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948730;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_ab3754a4d7f28d8b2ff22ca1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_04d9470c619b03948b2b7e6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914551;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_16103bab1a159f6d885f2cc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_801b0123c78329067d696f51.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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.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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls5{letter-spacing:-0.858000px;}
.ls4{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.529200px;}
.ls2{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.198000px;}
.ls8{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.900000px;}
.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;}
}
.ws50{word-spacing:-12.420000px;}
.ws56{word-spacing:-3.780000px;}
.ws3b{word-spacing:-3.168000px;}
.ws7{word-spacing:-3.102000px;}
.ws25{word-spacing:-3.036000px;}
.ws55{word-spacing:-3.000000px;}
.ws57{word-spacing:-2.820000px;}
.ws2d{word-spacing:-2.772000px;}
.ws37{word-spacing:-2.706000px;}
.wsf{word-spacing:-2.640000px;}
.ws43{word-spacing:-2.574000px;}
.wsd{word-spacing:-2.508000px;}
.ws2f{word-spacing:-2.442000px;}
.wsc{word-spacing:-2.244000px;}
.ws10{word-spacing:-2.046000px;}
.ws42{word-spacing:-1.914000px;}
.ws18{word-spacing:-1.782000px;}
.ws52{word-spacing:-1.650000px;}
.ws41{word-spacing:-1.518000px;}
.ws1a{word-spacing:-1.452000px;}
.ws2e{word-spacing:-1.320000px;}
.ws4b{word-spacing:-1.188000px;}
.ws30{word-spacing:-1.122000px;}
.ws2b{word-spacing:-1.056000px;}
.wsb{word-spacing:-0.990000px;}
.ws33{word-spacing:-0.924000px;}
.ws54{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.858000px;}
.ws48{word-spacing:-0.792000px;}
.ws12{word-spacing:-0.726000px;}
.ws23{word-spacing:-0.594000px;}
.ws59{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.528000px;}
.ws58{word-spacing:-0.480000px;}
.ws26{word-spacing:-0.462000px;}
.ws3c{word-spacing:-0.396000px;}
.ws2c{word-spacing:-0.378000px;}
.ws53{word-spacing:-0.270000px;}
.ws38{word-spacing:-0.264000px;}
.ws17{word-spacing:-0.210000px;}
.ws20{word-spacing:-0.132000px;}
.ws11{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.132000px;}
.wsa{word-spacing:0.198000px;}
.ws6{word-spacing:0.264000px;}
.ws9{word-spacing:0.330000px;}
.ws2{word-spacing:0.360000px;}
.ws31{word-spacing:0.396000px;}
.ws1b{word-spacing:0.462000px;}
.ws1{word-spacing:0.529200px;}
.ws36{word-spacing:0.594000px;}
.ws15{word-spacing:0.630000px;}
.ws3d{word-spacing:0.660000px;}
.ws1e{word-spacing:0.792000px;}
.ws8{word-spacing:0.858000px;}
.ws21{word-spacing:0.924000px;}
.ws28{word-spacing:0.990000px;}
.ws1f{word-spacing:1.254000px;}
.ws1c{word-spacing:1.320000px;}
.ws35{word-spacing:1.386000px;}
.ws47{word-spacing:1.452000px;}
.ws13{word-spacing:1.518000px;}
.ws45{word-spacing:1.584000px;}
.ws34{word-spacing:1.650000px;}
.ws24{word-spacing:1.716000px;}
.ws22{word-spacing:1.782000px;}
.wse{word-spacing:1.848000px;}
.ws19{word-spacing:1.914000px;}
.ws3a{word-spacing:2.046000px;}
.ws3f{word-spacing:2.178000px;}
.ws2a{word-spacing:2.244000px;}
.ws1d{word-spacing:2.376000px;}
.ws32{word-spacing:2.442000px;}
.ws5{word-spacing:2.508000px;}
.ws51{word-spacing:2.574000px;}
.ws3{word-spacing:2.640000px;}
.ws27{word-spacing:2.706000px;}
.ws29{word-spacing:2.970000px;}
.ws44{word-spacing:3.102000px;}
.ws40{word-spacing:3.168000px;}
.ws39{word-spacing:3.234000px;}
.ws4{word-spacing:3.300000px;}
.ws4c{word-spacing:3.432000px;}
.ws4e{word-spacing:3.564000px;}
.ws46{word-spacing:3.960000px;}
.ws4d{word-spacing:4.224000px;}
.ws49{word-spacing:4.422000px;}
.ws4f{word-spacing:5.412000px;}
.ws16{word-spacing:5.544000px;}
._7{margin-left:-10.293720px;}
._5{margin-left:-6.839880px;}
._6{margin-left:-5.556600px;}
._8{margin-left:-3.945960px;}
._4{margin-left:-2.937600px;}
._0{margin-left:-1.443960px;}
._1{width:1.179360px;}
._2{width:2.268000px;}
._9{width:3.280920px;}
._3{width:5.315040px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y20{bottom:70.883850px;}
.y1f{bottom:99.911250px;}
.y88{bottom:103.444500px;}
.y4a{bottom:104.455950px;}
.y6f{bottom:104.468100px;}
.y1e{bottom:111.912750px;}
.y87{bottom:121.446000px;}
.y49{bottom:122.457450px;}
.y6e{bottom:122.469600px;}
.y1d{bottom:123.914250px;}
.y1c{bottom:135.915750px;}
.y86{bottom:139.447500px;}
.y48{bottom:140.458950px;}
.y6d{bottom:149.964150px;}
.y1b{bottom:152.169750px;}
.y85{bottom:157.449000px;}
.y47{bottom:158.460450px;}
.y1a{bottom:164.171250px;}
.y84{bottom:175.450500px;}
.y46{bottom:176.461950px;}
.y19{bottom:180.425250px;}
.y6c{bottom:193.449000px;}
.y83{bottom:193.452000px;}
.y45{bottom:194.463450px;}
.y6b{bottom:211.450500px;}
.y82{bottom:211.453500px;}
.y44{bottom:212.464950px;}
.y6a{bottom:229.452000px;}
.y81{bottom:229.455000px;}
.y43{bottom:230.466450px;}
.y18{bottom:237.680400px;}
.y69{bottom:247.453500px;}
.y80{bottom:247.456500px;}
.y42{bottom:248.467950px;}
.y17{bottom:255.681900px;}
.y68{bottom:265.455000px;}
.y7f{bottom:265.458000px;}
.y41{bottom:266.469450px;}
.y16{bottom:273.683400px;}
.y67{bottom:283.456500px;}
.y7e{bottom:283.459500px;}
.y15{bottom:291.684900px;}
.y40{bottom:293.964150px;}
.y66{bottom:301.458000px;}
.y7d{bottom:301.461000px;}
.y14{bottom:309.686400px;}
.y65{bottom:319.459500px;}
.y7c{bottom:319.462500px;}
.y13{bottom:327.687900px;}
.y3f{bottom:337.439850px;}
.y64{bottom:337.461000px;}
.y7b{bottom:337.464000px;}
.y12{bottom:345.689400px;}
.y3e{bottom:355.441350px;}
.y63{bottom:355.462500px;}
.y7a{bottom:355.465500px;}
.y11{bottom:363.690900px;}
.y3d{bottom:373.442850px;}
.y62{bottom:373.464000px;}
.y79{bottom:373.467000px;}
.y10{bottom:381.692400px;}
.y3c{bottom:391.444350px;}
.y61{bottom:391.465500px;}
.y78{bottom:391.468500px;}
.yf{bottom:399.693900px;}
.y3b{bottom:409.445850px;}
.y60{bottom:409.467000px;}
.y77{bottom:409.470000px;}
.ye{bottom:417.695400px;}
.y3a{bottom:427.447350px;}
.y5f{bottom:427.468500px;}
.y76{bottom:427.471500px;}
.yd{bottom:435.696900px;}
.y39{bottom:445.448850px;}
.y5e{bottom:445.470000px;}
.y75{bottom:445.473000px;}
.yc{bottom:453.698400px;}
.y38{bottom:463.450350px;}
.y5d{bottom:463.471500px;}
.y74{bottom:463.474500px;}
.yb{bottom:471.699900px;}
.y37{bottom:481.451850px;}
.y5c{bottom:481.473000px;}
.y73{bottom:481.476000px;}
.ya{bottom:489.701400px;}
.y36{bottom:499.453350px;}
.y5b{bottom:499.474500px;}
.y9{bottom:507.702900px;}
.y72{bottom:508.970550px;}
.y35{bottom:517.454850px;}
.y5a{bottom:517.476000px;}
.y8{bottom:525.704400px;}
.y34{bottom:535.456350px;}
.y7{bottom:543.705900px;}
.y59{bottom:544.970550px;}
.y71{bottom:552.453900px;}
.y33{bottom:553.457850px;}
.y6{bottom:561.707400px;}
.y70{bottom:570.455400px;}
.y32{bottom:571.459350px;}
.y5{bottom:579.708900px;}
.y58{bottom:588.456900px;}
.y31{bottom:589.460850px;}
.y57{bottom:606.458400px;}
.y4{bottom:607.203600px;}
.y30{bottom:607.462350px;}
.y56{bottom:624.459900px;}
.y2f{bottom:625.463850px;}
.y55{bottom:642.461400px;}
.y2e{bottom:643.465350px;}
.y54{bottom:660.462900px;}
.y2d{bottom:661.466850px;}
.y53{bottom:678.464400px;}
.y2c{bottom:679.468350px;}
.y52{bottom:696.465900px;}
.y2b{bottom:697.469850px;}
.y8d{bottom:704.975850px;}
.y51{bottom:714.467400px;}
.y2a{bottom:715.471350px;}
.y8c{bottom:721.475850px;}
.y50{bottom:732.468900px;}
.y29{bottom:733.472850px;}
.y8b{bottom:737.975850px;}
.y4f{bottom:750.470400px;}
.y28{bottom:751.474350px;}
.y8a{bottom:754.475850px;}
.y4e{bottom:768.471900px;}
.y27{bottom:769.475850px;}
.y89{bottom:770.975850px;}
.y4d{bottom:786.473400px;}
.y26{bottom:796.970550px;}
.y4c{bottom:804.474900px;}
.y4b{bottom:822.476400px;}
.y3{bottom:835.215300px;}
.y25{bottom:840.477900px;}
.y24{bottom:858.479400px;}
.y2{bottom:864.725550px;}
.y23{bottom:876.480900px;}
.y1{bottom:889.919250px;}
.y22{bottom:894.482400px;}
.y21{bottom:934.435800px;}
.h6{height:30.618164px;}
.h8{height:33.156738px;}
.h4{height:39.287109px;}
.h9{height:39.788086px;}
.h7{height:44.208984px;}
.ha{height:47.760000px;}
.h5{height:52.536000px;}
.h2{height:55.703320px;}
.h3{height:57.312000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x5{left:381.505200px;}
.x4{left:570.248700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.762667pt;}
.ls4{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.470400pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.800000pt;}
.ws50{word-spacing:-11.040000pt;}
.ws56{word-spacing:-3.360000pt;}
.ws3b{word-spacing:-2.816000pt;}
.ws7{word-spacing:-2.757333pt;}
.ws25{word-spacing:-2.698667pt;}
.ws55{word-spacing:-2.666667pt;}
.ws57{word-spacing:-2.506667pt;}
.ws2d{word-spacing:-2.464000pt;}
.ws37{word-spacing:-2.405333pt;}
.wsf{word-spacing:-2.346667pt;}
.ws43{word-spacing:-2.288000pt;}
.wsd{word-spacing:-2.229333pt;}
.ws2f{word-spacing:-2.170667pt;}
.wsc{word-spacing:-1.994667pt;}
.ws10{word-spacing:-1.818667pt;}
.ws42{word-spacing:-1.701333pt;}
.ws18{word-spacing:-1.584000pt;}
.ws52{word-spacing:-1.466667pt;}
.ws41{word-spacing:-1.349333pt;}
.ws1a{word-spacing:-1.290667pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws4b{word-spacing:-1.056000pt;}
.ws30{word-spacing:-0.997333pt;}
.ws2b{word-spacing:-0.938667pt;}
.wsb{word-spacing:-0.880000pt;}
.ws33{word-spacing:-0.821333pt;}
.ws54{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.762667pt;}
.ws48{word-spacing:-0.704000pt;}
.ws12{word-spacing:-0.645333pt;}
.ws23{word-spacing:-0.528000pt;}
.ws59{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.469333pt;}
.ws58{word-spacing:-0.426667pt;}
.ws26{word-spacing:-0.410667pt;}
.ws3c{word-spacing:-0.352000pt;}
.ws2c{word-spacing:-0.336000pt;}
.ws53{word-spacing:-0.240000pt;}
.ws38{word-spacing:-0.234667pt;}
.ws17{word-spacing:-0.186667pt;}
.ws20{word-spacing:-0.117333pt;}
.ws11{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.117333pt;}
.wsa{word-spacing:0.176000pt;}
.ws6{word-spacing:0.234667pt;}
.ws9{word-spacing:0.293333pt;}
.ws2{word-spacing:0.320000pt;}
.ws31{word-spacing:0.352000pt;}
.ws1b{word-spacing:0.410667pt;}
.ws1{word-spacing:0.470400pt;}
.ws36{word-spacing:0.528000pt;}
.ws15{word-spacing:0.560000pt;}
.ws3d{word-spacing:0.586667pt;}
.ws1e{word-spacing:0.704000pt;}
.ws8{word-spacing:0.762667pt;}
.ws21{word-spacing:0.821333pt;}
.ws28{word-spacing:0.880000pt;}
.ws1f{word-spacing:1.114667pt;}
.ws1c{word-spacing:1.173333pt;}
.ws35{word-spacing:1.232000pt;}
.ws47{word-spacing:1.290667pt;}
.ws13{word-spacing:1.349333pt;}
.ws45{word-spacing:1.408000pt;}
.ws34{word-spacing:1.466667pt;}
.ws24{word-spacing:1.525333pt;}
.ws22{word-spacing:1.584000pt;}
.wse{word-spacing:1.642667pt;}
.ws19{word-spacing:1.701333pt;}
.ws3a{word-spacing:1.818667pt;}
.ws3f{word-spacing:1.936000pt;}
.ws2a{word-spacing:1.994667pt;}
.ws1d{word-spacing:2.112000pt;}
.ws32{word-spacing:2.170667pt;}
.ws5{word-spacing:2.229333pt;}
.ws51{word-spacing:2.288000pt;}
.ws3{word-spacing:2.346667pt;}
.ws27{word-spacing:2.405333pt;}
.ws29{word-spacing:2.640000pt;}
.ws44{word-spacing:2.757333pt;}
.ws40{word-spacing:2.816000pt;}
.ws39{word-spacing:2.874667pt;}
.ws4{word-spacing:2.933333pt;}
.ws4c{word-spacing:3.050667pt;}
.ws4e{word-spacing:3.168000pt;}
.ws46{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.754667pt;}
.ws49{word-spacing:3.930667pt;}
.ws4f{word-spacing:4.810667pt;}
.ws16{word-spacing:4.928000pt;}
._7{margin-left:-9.149973pt;}
._5{margin-left:-6.079893pt;}
._6{margin-left:-4.939200pt;}
._8{margin-left:-3.507520pt;}
._4{margin-left:-2.611200pt;}
._0{margin-left:-1.283520pt;}
._1{width:1.048320pt;}
._2{width:2.016000pt;}
._9{width:2.916373pt;}
._3{width:4.724480pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:63.007867pt;}
.y1f{bottom:88.810000pt;}
.y88{bottom:91.950667pt;}
.y4a{bottom:92.849733pt;}
.y6f{bottom:92.860533pt;}
.y1e{bottom:99.478000pt;}
.y87{bottom:107.952000pt;}
.y49{bottom:108.851067pt;}
.y6e{bottom:108.861867pt;}
.y1d{bottom:110.146000pt;}
.y1c{bottom:120.814000pt;}
.y86{bottom:123.953333pt;}
.y48{bottom:124.852400pt;}
.y6d{bottom:133.301467pt;}
.y1b{bottom:135.262000pt;}
.y85{bottom:139.954667pt;}
.y47{bottom:140.853733pt;}
.y1a{bottom:145.930000pt;}
.y84{bottom:155.956000pt;}
.y46{bottom:156.855067pt;}
.y19{bottom:160.378000pt;}
.y6c{bottom:171.954667pt;}
.y83{bottom:171.957333pt;}
.y45{bottom:172.856400pt;}
.y6b{bottom:187.956000pt;}
.y82{bottom:187.958667pt;}
.y44{bottom:188.857733pt;}
.y6a{bottom:203.957333pt;}
.y81{bottom:203.960000pt;}
.y43{bottom:204.859067pt;}
.y18{bottom:211.271467pt;}
.y69{bottom:219.958667pt;}
.y80{bottom:219.961333pt;}
.y42{bottom:220.860400pt;}
.y17{bottom:227.272800pt;}
.y68{bottom:235.960000pt;}
.y7f{bottom:235.962667pt;}
.y41{bottom:236.861733pt;}
.y16{bottom:243.274133pt;}
.y67{bottom:251.961333pt;}
.y7e{bottom:251.964000pt;}
.y15{bottom:259.275467pt;}
.y40{bottom:261.301467pt;}
.y66{bottom:267.962667pt;}
.y7d{bottom:267.965333pt;}
.y14{bottom:275.276800pt;}
.y65{bottom:283.964000pt;}
.y7c{bottom:283.966667pt;}
.y13{bottom:291.278133pt;}
.y3f{bottom:299.946533pt;}
.y64{bottom:299.965333pt;}
.y7b{bottom:299.968000pt;}
.y12{bottom:307.279467pt;}
.y3e{bottom:315.947867pt;}
.y63{bottom:315.966667pt;}
.y7a{bottom:315.969333pt;}
.y11{bottom:323.280800pt;}
.y3d{bottom:331.949200pt;}
.y62{bottom:331.968000pt;}
.y79{bottom:331.970667pt;}
.y10{bottom:339.282133pt;}
.y3c{bottom:347.950533pt;}
.y61{bottom:347.969333pt;}
.y78{bottom:347.972000pt;}
.yf{bottom:355.283467pt;}
.y3b{bottom:363.951867pt;}
.y60{bottom:363.970667pt;}
.y77{bottom:363.973333pt;}
.ye{bottom:371.284800pt;}
.y3a{bottom:379.953200pt;}
.y5f{bottom:379.972000pt;}
.y76{bottom:379.974667pt;}
.yd{bottom:387.286133pt;}
.y39{bottom:395.954533pt;}
.y5e{bottom:395.973333pt;}
.y75{bottom:395.976000pt;}
.yc{bottom:403.287467pt;}
.y38{bottom:411.955867pt;}
.y5d{bottom:411.974667pt;}
.y74{bottom:411.977333pt;}
.yb{bottom:419.288800pt;}
.y37{bottom:427.957200pt;}
.y5c{bottom:427.976000pt;}
.y73{bottom:427.978667pt;}
.ya{bottom:435.290133pt;}
.y36{bottom:443.958533pt;}
.y5b{bottom:443.977333pt;}
.y9{bottom:451.291467pt;}
.y72{bottom:452.418267pt;}
.y35{bottom:459.959867pt;}
.y5a{bottom:459.978667pt;}
.y8{bottom:467.292800pt;}
.y34{bottom:475.961200pt;}
.y7{bottom:483.294133pt;}
.y59{bottom:484.418267pt;}
.y71{bottom:491.070133pt;}
.y33{bottom:491.962533pt;}
.y6{bottom:499.295467pt;}
.y70{bottom:507.071467pt;}
.y32{bottom:507.963867pt;}
.y5{bottom:515.296800pt;}
.y58{bottom:523.072800pt;}
.y31{bottom:523.965200pt;}
.y57{bottom:539.074133pt;}
.y4{bottom:539.736533pt;}
.y30{bottom:539.966533pt;}
.y56{bottom:555.075467pt;}
.y2f{bottom:555.967867pt;}
.y55{bottom:571.076800pt;}
.y2e{bottom:571.969200pt;}
.y54{bottom:587.078133pt;}
.y2d{bottom:587.970533pt;}
.y53{bottom:603.079467pt;}
.y2c{bottom:603.971867pt;}
.y52{bottom:619.080800pt;}
.y2b{bottom:619.973200pt;}
.y8d{bottom:626.645200pt;}
.y51{bottom:635.082133pt;}
.y2a{bottom:635.974533pt;}
.y8c{bottom:641.311867pt;}
.y50{bottom:651.083467pt;}
.y29{bottom:651.975867pt;}
.y8b{bottom:655.978533pt;}
.y4f{bottom:667.084800pt;}
.y28{bottom:667.977200pt;}
.y8a{bottom:670.645200pt;}
.y4e{bottom:683.086133pt;}
.y27{bottom:683.978533pt;}
.y89{bottom:685.311867pt;}
.y4d{bottom:699.087467pt;}
.y26{bottom:708.418267pt;}
.y4c{bottom:715.088800pt;}
.y4b{bottom:731.090133pt;}
.y3{bottom:742.413600pt;}
.y25{bottom:747.091467pt;}
.y24{bottom:763.092800pt;}
.y2{bottom:768.644933pt;}
.y23{bottom:779.094133pt;}
.y1{bottom:791.039333pt;}
.y22{bottom:795.095467pt;}
.y21{bottom:830.609600pt;}
.h6{height:27.216146pt;}
.h8{height:29.472656pt;}
.h4{height:34.921875pt;}
.h9{height:35.367188pt;}
.h7{height:39.296875pt;}
.ha{height:42.453333pt;}
.h5{height:46.698667pt;}
.h2{height:49.514062pt;}
.h3{height:50.944000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x5{left:339.115733pt;}
.x4{left:506.887733pt;}
}




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