
    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_0bae1897c0819c7d358ff28a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1108972bac6bcbf69da38800.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_03f1c83f58d9f331f4204d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_e732d0c4efec6cc5cbbce3dc.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_5a8a928bca9f7edacbf6cc7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.984000px;}
.ls3{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:17.585280px;}
.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;}
}
.ws1{word-spacing:-29.736000px;}
.ws5{word-spacing:-19.134720px;}
.ws3{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws2{word-spacing:-18.109320px;}
.ws6{word-spacing:-17.430720px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-28.872000px;}
._2a{margin-left:-4.501440px;}
._5{margin-left:-3.179520px;}
._3{margin-left:-1.347840px;}
._2{width:1.104000px;}
._a{width:2.208960px;}
._9{width:3.401280px;}
._8{width:5.365440px;}
._7{width:6.425280px;}
._1{width:7.872000px;}
._13{width:8.976000px;}
._b{width:10.002240px;}
._c{width:11.041920px;}
._10{width:13.049280px;}
._11{width:14.067840px;}
._e{width:15.168960px;}
._d{width:16.185600px;}
._6{width:17.330400px;}
._15{width:19.901760px;}
._18{width:20.983680px;}
._26{width:22.010880px;}
._1a{width:23.078400px;}
._20{width:24.084480px;}
._25{width:25.240320px;}
._f{width:26.562240px;}
._24{width:28.218240px;}
._23{width:29.301120px;}
._29{width:31.527360px;}
._1e{width:32.855040px;}
._22{width:33.918240px;}
._27{width:35.902080px;}
._16{width:37.823040px;}
._17{width:38.905920px;}
._19{width:40.309440px;}
._28{width:42.923520px;}
._14{width:44.801280px;}
._1f{width:50.077440px;}
._1c{width:52.528320px;}
._1d{width:54.296640px;}
._2b{width:65.113920px;}
._2c{width:66.395520px;}
._21{width:75.290880px;}
._1b{width:101.887680px;}
._4{width:157.131840px;}
._12{width:171.282720px;}
._2d{width:193.961280px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y4d{bottom:102.636000px;}
.y20{bottom:131.436000px;}
.y1f{bottom:139.264499px;}
.y4c{bottom:173.370000px;}
.yc9{bottom:174.630000px;}
.yd8{bottom:185.610000px;}
.y4b{bottom:190.650000px;}
.yc8{bottom:193.710000px;}
.y16{bottom:196.933500px;}
.yd7{bottom:204.510000px;}
.y4a{bottom:207.930000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.yc7{bottom:212.610000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.yd6{bottom:223.590000px;}
.y77{bottom:225.210000px;}
.y49{bottom:225.390000px;}
.yc6{bottom:231.510000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.ya4{bottom:239.610000px;}
.y48{bottom:242.310000px;}
.yd5{bottom:242.490000px;}
.yc5{bottom:250.590000px;}
.ya3{bottom:258.510000px;}
.y76{bottom:259.590000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y47{bottom:260.670000px;}
.yd4{bottom:261.570000px;}
.y46{bottom:268.950000px;}
.yc4{bottom:269.490000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.ya2{bottom:277.590000px;}
.y75{bottom:277.950000px;}
.yd3{bottom:280.470000px;}
.y45{bottom:281.370000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y74{bottom:286.230000px;}
.yc3{bottom:288.570000px;}
.ya1{bottom:296.490000px;}
.yf0{bottom:298.470000px;}
.y73{bottom:298.650000px;}
.yc2{bottom:307.470000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.ya0{bottom:315.570000px;}
.yef{bottom:317.370000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.yc1{bottom:326.370000px;}
.y44{bottom:329.115000px;}
.y9f{bottom:334.515000px;}
.yee{bottom:336.495000px;}
.yc0{bottom:345.495000px;}
.yf3{bottom:345.675000px;}
.yd{bottom:348.133500px;}
.y43{bottom:348.195000px;}
.y9e{bottom:353.415000px;}
.yed{bottom:355.395000px;}
.ybf{bottom:364.395000px;}
.y42{bottom:367.095000px;}
.y9d{bottom:372.495000px;}
.yec{bottom:374.475000px;}
.y72{bottom:381.675000px;}
.ybe{bottom:383.475000px;}
.y41{bottom:386.175000px;}
.yc{bottom:386.785499px;}
.y9c{bottom:391.395000px;}
.yeb{bottom:393.375000px;}
.y71{bottom:400.755000px;}
.ybd{bottom:402.375000px;}
.y40{bottom:405.075000px;}
.yb{bottom:408.044999px;}
.y9b{bottom:410.475000px;}
.yea{bottom:412.455000px;}
.y70{bottom:419.655000px;}
.ybc{bottom:421.455000px;}
.y3f{bottom:424.155000px;}
.y9a{bottom:429.375000px;}
.ye9{bottom:431.355000px;}
.y6f{bottom:438.555000px;}
.ybb{bottom:440.355000px;}
.y99{bottom:448.455000px;}
.ye8{bottom:450.255000px;}
.y6e{bottom:457.635000px;}
.yd2{bottom:459.255000px;}
.yba{bottom:459.435000px;}
.ya{bottom:466.864502px;}
.y98{bottom:467.355000px;}
.ye7{bottom:469.335000px;}
.y3e{bottom:470.055000px;}
.yd1{bottom:478.335000px;}
.y9{bottom:484.864502px;}
.y97{bottom:486.255000px;}
.ye6{bottom:488.235000px;}
.y3d{bottom:488.955000px;}
.yd0{bottom:497.415000px;}
.y100{bottom:502.455000px;}
.y8{bottom:502.864502px;}
.y6d{bottom:503.535000px;}
.yb9{bottom:505.335000px;}
.y96{bottom:505.515000px;}
.ye5{bottom:507.315000px;}
.y3c{bottom:508.035000px;}
.y7{bottom:520.864502px;}
.yff{bottom:521.355000px;}
.y6c{bottom:522.615000px;}
.yb8{bottom:524.235000px;}
.ye4{bottom:526.215000px;}
.y3b{bottom:526.935000px;}
.yf2{bottom:532.335000px;}
.y6{bottom:538.864499px;}
.yfe{bottom:540.255000px;}
.y6b{bottom:541.515000px;}
.yb7{bottom:543.315000px;}
.ye3{bottom:545.115000px;}
.y3a{bottom:546.015000px;}
.y95{bottom:551.235000px;}
.y5{bottom:556.864499px;}
.yfd{bottom:559.335000px;}
.y6a{bottom:560.415000px;}
.yb6{bottom:562.215000px;}
.y39{bottom:564.915000px;}
.y94{bottom:570.315000px;}
.ye2{bottom:573.195000px;}
.yfc{bottom:578.235000px;}
.y69{bottom:579.495000px;}
.yb5{bottom:581.115000px;}
.y38{bottom:583.815000px;}
.y93{bottom:589.215000px;}
.yfb{bottom:597.345000px;}
.y68{bottom:598.425000px;}
.yb4{bottom:600.225000px;}
.ye1{bottom:601.125000px;}
.y37{bottom:602.925000px;}
.y92{bottom:608.145000px;}
.yfa{bottom:616.245000px;}
.y67{bottom:617.505000px;}
.yb3{bottom:619.125000px;}
.ye0{bottom:620.205000px;}
.y91{bottom:627.225000px;}
.yf9{bottom:635.145000px;}
.y66{bottom:636.405000px;}
.yb2{bottom:638.205000px;}
.y90{bottom:646.125000px;}
.ydf{bottom:648.105000px;}
.y36{bottom:648.825000px;}
.yf8{bottom:654.225000px;}
.y65{bottom:655.485000px;}
.yb1{bottom:657.105000px;}
.y8f{bottom:665.205000px;}
.yde{bottom:667.185000px;}
.y35{bottom:667.905000px;}
.yf7{bottom:673.125000px;}
.y64{bottom:674.385000px;}
.yb0{bottom:676.185000px;}
.y8e{bottom:684.105000px;}
.y34{bottom:686.805000px;}
.yf6{bottom:692.205000px;}
.y63{bottom:693.285000px;}
.yaf{bottom:695.085000px;}
.y8d{bottom:703.185000px;}
.y33{bottom:705.885000px;}
.yf5{bottom:711.105000px;}
.y62{bottom:712.365000px;}
.yae{bottom:713.985000px;}
.yf1{bottom:722.085000px;}
.y32{bottom:724.785000px;}
.yf4{bottom:730.185000px;}
.y61{bottom:731.265000px;}
.ycf{bottom:733.065000px;}
.ydd{bottom:740.985000px;}
.y31{bottom:743.685000px;}
.y8c{bottom:749.085000px;}
.y60{bottom:750.345000px;}
.yce{bottom:751.965000px;}
.y3{bottom:752.599495px;}
.yad{bottom:760.065000px;}
.y30{bottom:762.765000px;}
.y8b{bottom:767.985000px;}
.ycd{bottom:771.225000px;}
.yac{bottom:778.965000px;}
.y2f{bottom:781.665000px;}
.y8a{bottom:787.065000px;}
.y5f{bottom:796.245000px;}
.yab{bottom:798.045000px;}
.y2e{bottom:800.745000px;}
.y89{bottom:805.965000px;}
.y5e{bottom:815.145000px;}
.yaa{bottom:816.945000px;}
.y2d{bottom:819.645000px;}
.y88{bottom:825.045000px;}
.y5d{bottom:834.225000px;}
.ya9{bottom:835.845000px;}
.y2c{bottom:838.545000px;}
.y87{bottom:843.945000px;}
.y5c{bottom:853.125000px;}
.ycc{bottom:854.925000px;}
.ya8{bottom:855.105000px;}
.y2b{bottom:857.625000px;}
.y86{bottom:862.890000px;}
.y5b{bottom:872.250000px;}
.ycb{bottom:873.870000px;}
.ya7{bottom:874.050000px;}
.y2a{bottom:876.750000px;}
.y2{bottom:879.369000px;}
.y85{bottom:881.970000px;}
.y5a{bottom:891.150000px;}
.yca{bottom:892.950000px;}
.y29{bottom:897.270000px;}
.y84{bottom:900.870000px;}
.y59{bottom:910.230000px;}
.ydc{bottom:911.850000px;}
.y83{bottom:919.950000px;}
.y28{bottom:924.270000px;}
.y58{bottom:929.130000px;}
.ydb{bottom:930.930000px;}
.y82{bottom:938.850000px;}
.y57{bottom:948.030000px;}
.yda{bottom:949.830000px;}
.y26{bottom:951.270000px;}
.y81{bottom:957.930000px;}
.y27{bottom:959.550000px;}
.y1{bottom:966.726000px;}
.y56{bottom:967.110000px;}
.yd9{bottom:968.910000px;}
.y80{bottom:976.830000px;}
.y25{bottom:978.270000px;}
.y55{bottom:986.010000px;}
.y7f{bottom:995.730000px;}
.y54{bottom:1005.090000px;}
.y24{bottom:1005.270000px;}
.y7e{bottom:1014.810000px;}
.y53{bottom:1023.990000px;}
.y23{bottom:1032.270000px;}
.y7d{bottom:1033.710000px;}
.y52{bottom:1043.070000px;}
.y7c{bottom:1052.790000px;}
.y22{bottom:1059.270000px;}
.y51{bottom:1062.150000px;}
.y7b{bottom:1071.690000px;}
.ya6{bottom:1090.590000px;}
.y7a{bottom:1090.770000px;}
.y4f{bottom:1108.770000px;}
.ya5{bottom:1109.670000px;}
.y79{bottom:1109.850000px;}
.y21{bottom:1115.070000px;}
.y50{bottom:1117.050000px;}
.y4e{bottom:1128.570000px;}
.y78{bottom:1128.750000px;}
.h7{height:32.130000px;}
.h8{height:37.968000px;}
.hd{height:39.830273px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.h6{height:54.240000px;}
.h11{height:62.327813px;}
.h2{height:65.088000px;}
.hb{height:69.086250px;}
.h10{height:70.664062px;}
.he{height:87.859687px;}
.h5{height:92.208000px;}
.hc{height:112.640625px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.057990px;}
.h9{height:1263.060000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.978125px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:119.196000px;}
.xc{left:125.316000px;}
.xd{left:128.376000px;}
.x10{left:137.016000px;}
.x4{left:203.484001px;}
.xb{left:335.235000px;}
.x8{left:438.195000px;}
.x3{left:454.959000px;}
.x9{left:466.095000px;}
.xe{left:609.043125px;}
.xf{left:615.165000px;}
.x5{left:748.048125px;}
.xa{left:751.108125px;}
.x6{left:757.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.874667pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:15.631360pt;}
.ws1{word-spacing:-26.432000pt;}
.ws5{word-spacing:-17.008640pt;}
.ws3{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws2{word-spacing:-16.097173pt;}
.ws6{word-spacing:-15.493973pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-25.664000pt;}
._2a{margin-left:-4.001280pt;}
._5{margin-left:-2.826240pt;}
._3{margin-left:-1.198080pt;}
._2{width:0.981333pt;}
._a{width:1.963520pt;}
._9{width:3.023360pt;}
._8{width:4.769280pt;}
._7{width:5.711360pt;}
._1{width:6.997333pt;}
._13{width:7.978667pt;}
._b{width:8.890880pt;}
._c{width:9.815040pt;}
._10{width:11.599360pt;}
._11{width:12.504747pt;}
._e{width:13.483520pt;}
._d{width:14.387200pt;}
._6{width:15.404800pt;}
._15{width:17.690453pt;}
._18{width:18.652160pt;}
._26{width:19.565227pt;}
._1a{width:20.514133pt;}
._20{width:21.408427pt;}
._25{width:22.435840pt;}
._f{width:23.610880pt;}
._24{width:25.082880pt;}
._23{width:26.045440pt;}
._29{width:28.024320pt;}
._1e{width:29.204480pt;}
._22{width:30.149547pt;}
._27{width:31.912960pt;}
._16{width:33.620480pt;}
._17{width:34.583040pt;}
._19{width:35.830613pt;}
._28{width:38.154240pt;}
._14{width:39.823360pt;}
._1f{width:44.513280pt;}
._1c{width:46.691840pt;}
._1d{width:48.263680pt;}
._2b{width:57.879040pt;}
._2c{width:59.018240pt;}
._21{width:66.925227pt;}
._1b{width:90.566827pt;}
._4{width:139.672747pt;}
._12{width:152.251307pt;}
._2d{width:172.410027pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:91.232000pt;}
.y20{bottom:116.832000pt;}
.y1f{bottom:123.790666pt;}
.y4c{bottom:154.106667pt;}
.yc9{bottom:155.226667pt;}
.yd8{bottom:164.986667pt;}
.y4b{bottom:169.466667pt;}
.yc8{bottom:172.186667pt;}
.y16{bottom:175.052000pt;}
.yd7{bottom:181.786667pt;}
.y4a{bottom:184.826667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.yc7{bottom:188.986667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.yd6{bottom:198.746667pt;}
.y77{bottom:200.186667pt;}
.y49{bottom:200.346667pt;}
.yc6{bottom:205.786667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.ya4{bottom:212.986667pt;}
.y48{bottom:215.386667pt;}
.yd5{bottom:215.546667pt;}
.yc5{bottom:222.746667pt;}
.ya3{bottom:229.786667pt;}
.y76{bottom:230.746667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y47{bottom:231.706667pt;}
.yd4{bottom:232.506667pt;}
.y46{bottom:239.066667pt;}
.yc4{bottom:239.546667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.ya2{bottom:246.746667pt;}
.y75{bottom:247.066667pt;}
.yd3{bottom:249.306667pt;}
.y45{bottom:250.106667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y74{bottom:254.426667pt;}
.yc3{bottom:256.506667pt;}
.ya1{bottom:263.546667pt;}
.yf0{bottom:265.306667pt;}
.y73{bottom:265.466667pt;}
.yc2{bottom:273.306667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.ya0{bottom:280.506667pt;}
.yef{bottom:282.106667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.yc1{bottom:290.106667pt;}
.y44{bottom:292.546667pt;}
.y9f{bottom:297.346667pt;}
.yee{bottom:299.106667pt;}
.yc0{bottom:307.106667pt;}
.yf3{bottom:307.266667pt;}
.yd{bottom:309.452000pt;}
.y43{bottom:309.506667pt;}
.y9e{bottom:314.146667pt;}
.yed{bottom:315.906667pt;}
.ybf{bottom:323.906667pt;}
.y42{bottom:326.306667pt;}
.y9d{bottom:331.106667pt;}
.yec{bottom:332.866667pt;}
.y72{bottom:339.266667pt;}
.ybe{bottom:340.866667pt;}
.y41{bottom:343.266667pt;}
.yc{bottom:343.809333pt;}
.y9c{bottom:347.906667pt;}
.yeb{bottom:349.666667pt;}
.y71{bottom:356.226667pt;}
.ybd{bottom:357.666667pt;}
.y40{bottom:360.066667pt;}
.yb{bottom:362.706666pt;}
.y9b{bottom:364.866667pt;}
.yea{bottom:366.626667pt;}
.y70{bottom:373.026667pt;}
.ybc{bottom:374.626667pt;}
.y3f{bottom:377.026667pt;}
.y9a{bottom:381.666667pt;}
.ye9{bottom:383.426667pt;}
.y6f{bottom:389.826667pt;}
.ybb{bottom:391.426667pt;}
.y99{bottom:398.626667pt;}
.ye8{bottom:400.226667pt;}
.y6e{bottom:406.786667pt;}
.yd2{bottom:408.226667pt;}
.yba{bottom:408.386667pt;}
.ya{bottom:414.990669pt;}
.y98{bottom:415.426667pt;}
.ye7{bottom:417.186667pt;}
.y3e{bottom:417.826667pt;}
.yd1{bottom:425.186667pt;}
.y9{bottom:430.990669pt;}
.y97{bottom:432.226667pt;}
.ye6{bottom:433.986667pt;}
.y3d{bottom:434.626667pt;}
.yd0{bottom:442.146667pt;}
.y100{bottom:446.626667pt;}
.y8{bottom:446.990669pt;}
.y6d{bottom:447.586667pt;}
.yb9{bottom:449.186667pt;}
.y96{bottom:449.346667pt;}
.ye5{bottom:450.946667pt;}
.y3c{bottom:451.586667pt;}
.y7{bottom:462.990669pt;}
.yff{bottom:463.426667pt;}
.y6c{bottom:464.546667pt;}
.yb8{bottom:465.986667pt;}
.ye4{bottom:467.746667pt;}
.y3b{bottom:468.386667pt;}
.yf2{bottom:473.186667pt;}
.y6{bottom:478.990666pt;}
.yfe{bottom:480.226667pt;}
.y6b{bottom:481.346667pt;}
.yb7{bottom:482.946667pt;}
.ye3{bottom:484.546667pt;}
.y3a{bottom:485.346667pt;}
.y95{bottom:489.986667pt;}
.y5{bottom:494.990666pt;}
.yfd{bottom:497.186667pt;}
.y6a{bottom:498.146667pt;}
.yb6{bottom:499.746667pt;}
.y39{bottom:502.146667pt;}
.y94{bottom:506.946667pt;}
.ye2{bottom:509.506667pt;}
.yfc{bottom:513.986667pt;}
.y69{bottom:515.106667pt;}
.yb5{bottom:516.546667pt;}
.y38{bottom:518.946667pt;}
.y93{bottom:523.746667pt;}
.yfb{bottom:530.973333pt;}
.y68{bottom:531.933333pt;}
.yb4{bottom:533.533333pt;}
.ye1{bottom:534.333333pt;}
.y37{bottom:535.933333pt;}
.y92{bottom:540.573333pt;}
.yfa{bottom:547.773333pt;}
.y67{bottom:548.893333pt;}
.yb3{bottom:550.333333pt;}
.ye0{bottom:551.293333pt;}
.y91{bottom:557.533333pt;}
.yf9{bottom:564.573333pt;}
.y66{bottom:565.693333pt;}
.yb2{bottom:567.293333pt;}
.y90{bottom:574.333333pt;}
.ydf{bottom:576.093333pt;}
.y36{bottom:576.733333pt;}
.yf8{bottom:581.533333pt;}
.y65{bottom:582.653333pt;}
.yb1{bottom:584.093333pt;}
.y8f{bottom:591.293333pt;}
.yde{bottom:593.053333pt;}
.y35{bottom:593.693333pt;}
.yf7{bottom:598.333333pt;}
.y64{bottom:599.453333pt;}
.yb0{bottom:601.053333pt;}
.y8e{bottom:608.093333pt;}
.y34{bottom:610.493333pt;}
.yf6{bottom:615.293333pt;}
.y63{bottom:616.253333pt;}
.yaf{bottom:617.853333pt;}
.y8d{bottom:625.053333pt;}
.y33{bottom:627.453333pt;}
.yf5{bottom:632.093333pt;}
.y62{bottom:633.213333pt;}
.yae{bottom:634.653333pt;}
.yf1{bottom:641.853333pt;}
.y32{bottom:644.253333pt;}
.yf4{bottom:649.053333pt;}
.y61{bottom:650.013333pt;}
.ycf{bottom:651.613333pt;}
.ydd{bottom:658.653333pt;}
.y31{bottom:661.053333pt;}
.y8c{bottom:665.853333pt;}
.y60{bottom:666.973333pt;}
.yce{bottom:668.413333pt;}
.y3{bottom:668.977329pt;}
.yad{bottom:675.613333pt;}
.y30{bottom:678.013333pt;}
.y8b{bottom:682.653333pt;}
.ycd{bottom:685.533333pt;}
.yac{bottom:692.413333pt;}
.y2f{bottom:694.813333pt;}
.y8a{bottom:699.613333pt;}
.y5f{bottom:707.773333pt;}
.yab{bottom:709.373333pt;}
.y2e{bottom:711.773333pt;}
.y89{bottom:716.413333pt;}
.y5e{bottom:724.573333pt;}
.yaa{bottom:726.173333pt;}
.y2d{bottom:728.573333pt;}
.y88{bottom:733.373333pt;}
.y5d{bottom:741.533333pt;}
.ya9{bottom:742.973333pt;}
.y2c{bottom:745.373333pt;}
.y87{bottom:750.173333pt;}
.y5c{bottom:758.333333pt;}
.ycc{bottom:759.933333pt;}
.ya8{bottom:760.093333pt;}
.y2b{bottom:762.333333pt;}
.y86{bottom:767.013333pt;}
.y5b{bottom:775.333333pt;}
.ycb{bottom:776.773333pt;}
.ya7{bottom:776.933333pt;}
.y2a{bottom:779.333333pt;}
.y2{bottom:781.661334pt;}
.y85{bottom:783.973333pt;}
.y5a{bottom:792.133333pt;}
.yca{bottom:793.733333pt;}
.y29{bottom:797.573333pt;}
.y84{bottom:800.773333pt;}
.y59{bottom:809.093333pt;}
.ydc{bottom:810.533333pt;}
.y83{bottom:817.733333pt;}
.y28{bottom:821.573333pt;}
.y58{bottom:825.893333pt;}
.ydb{bottom:827.493333pt;}
.y82{bottom:834.533333pt;}
.y57{bottom:842.693333pt;}
.yda{bottom:844.293333pt;}
.y26{bottom:845.573333pt;}
.y81{bottom:851.493333pt;}
.y27{bottom:852.933333pt;}
.y1{bottom:859.312000pt;}
.y56{bottom:859.653333pt;}
.yd9{bottom:861.253333pt;}
.y80{bottom:868.293333pt;}
.y25{bottom:869.573333pt;}
.y55{bottom:876.453333pt;}
.y7f{bottom:885.093333pt;}
.y54{bottom:893.413333pt;}
.y24{bottom:893.573333pt;}
.y7e{bottom:902.053333pt;}
.y53{bottom:910.213333pt;}
.y23{bottom:917.573333pt;}
.y7d{bottom:918.853333pt;}
.y52{bottom:927.173333pt;}
.y7c{bottom:935.813333pt;}
.y22{bottom:941.573333pt;}
.y51{bottom:944.133333pt;}
.y7b{bottom:952.613333pt;}
.ya6{bottom:969.413333pt;}
.y7a{bottom:969.573333pt;}
.y4f{bottom:985.573333pt;}
.ya5{bottom:986.373333pt;}
.y79{bottom:986.533333pt;}
.y21{bottom:991.173333pt;}
.y50{bottom:992.933333pt;}
.y4e{bottom:1003.173333pt;}
.y78{bottom:1003.333333pt;}
.h7{height:28.560000pt;}
.h8{height:33.749333pt;}
.hd{height:35.404688pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.h6{height:48.213333pt;}
.h11{height:55.402500pt;}
.h2{height:57.856000pt;}
.hb{height:61.410000pt;}
.h10{height:62.812500pt;}
.he{height:78.097500pt;}
.h5{height:81.962667pt;}
.hc{height:100.125000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.718213pt;}
.h9{height:1122.720000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.758333pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:105.952000pt;}
.xc{left:111.392000pt;}
.xd{left:114.112000pt;}
.x10{left:121.792000pt;}
.x4{left:180.874667pt;}
.xb{left:297.986667pt;}
.x8{left:389.506667pt;}
.x3{left:404.408000pt;}
.x9{left:414.306667pt;}
.xe{left:541.371667pt;}
.xf{left:546.813333pt;}
.x5{left:664.931667pt;}
.xa{left:667.651667pt;}
.x6{left:673.093333pt;}
}




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