
    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_baf7a2e758120e6c9ed35915.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163000;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_0e469dff0888ba4bf1ec66e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.127000;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_e0a13c753b6595b31e41a261.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115000;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_2f200f58ea12640c07d82269.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_7c9728f2dc90d26931d54b82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_12411817cdde2ae185e0f747.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_9cfa5399cde8bfac4f21be2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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);}
.v2{vertical-align:-19.380600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.380600px;}
.lsc{letter-spacing:-3.840000px;}
.lsd{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-1.164000px;}
.lsb{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.698400px;}
.ls5{letter-spacing:-0.582000px;}
.ls6{letter-spacing:-0.480000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.291000px;}
.ls8{letter-spacing:0.465600px;}
.ls0{letter-spacing:0.582000px;}
.lsa{letter-spacing:0.873000px;}
.ls1{letter-spacing:5.400000px;}
.ls2{letter-spacing:60.855000px;}
.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;}
}
.wse{word-spacing:-48.000000px;}
.ws0{word-spacing:-24.840000px;}
.ws2{word-spacing:-11.040000px;}
.ws38{word-spacing:-10.560000px;}
.ws35{word-spacing:-10.080000px;}
.ws1{word-spacing:-7.804038px;}
.ws2f{word-spacing:-7.200000px;}
.ws8{word-spacing:-2.793600px;}
.ws10{word-spacing:-2.160000px;}
.ws21{word-spacing:-2.153400px;}
.ws4{word-spacing:-1.746000px;}
.ws5{word-spacing:-1.620000px;}
.ws12{word-spacing:-1.363200px;}
.ws16{word-spacing:-1.164000px;}
.ws27{word-spacing:-0.989400px;}
.ws25{word-spacing:-0.878400px;}
.ws22{word-spacing:-0.873000px;}
.ws19{word-spacing:-0.582000px;}
.ws15{word-spacing:-0.480000px;}
.ws17{word-spacing:-0.465600px;}
.ws7{word-spacing:-0.407400px;}
.ws3{word-spacing:-0.291000px;}
.ws6{word-spacing:0.000000px;}
.ws13{word-spacing:0.174600px;}
.ws26{word-spacing:0.232800px;}
.ws9{word-spacing:0.523800px;}
.wsc{word-spacing:0.582000px;}
.ws1c{word-spacing:0.698400px;}
.wsa{word-spacing:1.455000px;}
.ws1f{word-spacing:1.571400px;}
.ws11{word-spacing:2.386200px;}
.ws24{word-spacing:2.735400px;}
.ws20{word-spacing:3.375600px;}
.ws18{word-spacing:3.666600px;}
.wsb{word-spacing:4.306800px;}
.ws1d{word-spacing:5.761800px;}
.wsd{word-spacing:6.285600px;}
.ws1e{word-spacing:7.333200px;}
.ws1b{word-spacing:8.439000px;}
.ws1a{word-spacing:9.137400px;}
.ws14{word-spacing:10.941600px;}
.ws23{word-spacing:16.005000px;}
.wsf{word-spacing:16.121400px;}
.ws31{word-spacing:612.149400px;}
.ws28{word-spacing:621.028800px;}
.ws33{word-spacing:621.270000px;}
.ws2d{word-spacing:629.045400px;}
.ws2a{word-spacing:631.637400px;}
.ws32{word-spacing:633.940800px;}
.ws2e{word-spacing:646.036800px;}
.ws34{word-spacing:650.212800px;}
.ws29{word-spacing:652.468800px;}
.ws2b{word-spacing:664.806000px;}
.ws2c{word-spacing:682.230000px;}
.ws36{word-spacing:1242.619200px;}
.ws37{word-spacing:1457.462400px;}
.ws30{word-spacing:1658.145600px;}
._d{margin-left:-71.586000px;}
._8{margin-left:-13.118220px;}
._1c{margin-left:-11.753400px;}
._f{margin-left:-7.646400px;}
._3{margin-left:-6.480000px;}
._14{margin-left:-5.424600px;}
._5{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._0{margin-left:-2.170800px;}
._1{margin-left:-1.080000px;}
._7{width:1.152180px;}
._4{width:2.160000px;}
._13{width:3.166440px;}
._a{width:4.166460px;}
._9{width:5.223840px;}
._b{width:6.857340px;}
._c{width:8.302920px;}
._11{width:10.138440px;}
._12{width:11.553540px;}
._18{width:14.410320px;}
._16{width:15.580140px;}
._17{width:16.764720px;}
._19{width:17.861640px;}
._6{width:21.114000px;}
._15{width:46.896000px;}
._10{width:48.576000px;}
._e{width:57.936000px;}
._1e{width:79.677600px;}
._24{width:110.668800px;}
._1b{width:133.449000px;}
._22{width:242.380800px;}
._1f{width:555.474000px;}
._20{width:628.421400px;}
._23{width:649.252800px;}
._28{width:853.314000px;}
._26{width:858.439200px;}
._29{width:1152.812400px;}
._21{width:1226.865600px;}
._27{width:1246.137600px;}
._2a{width:1494.044400px;}
._1d{width:1501.351200px;}
._25{width:1544.252400px;}
._1a{width:1783.905600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(37,66,85);}
.fs3{font-size:33.930600px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.200000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:63.779700px;}
.y49{bottom:64.098600px;}
.y8f{bottom:76.334550px;}
.y75{bottom:76.334700px;}
.y9f{bottom:78.779700px;}
.y48{bottom:79.098600px;}
.y29{bottom:83.031600px;}
.y66{bottom:85.086750px;}
.y74{bottom:97.334700px;}
.y28{bottom:98.031600px;}
.y47{bottom:99.348750px;}
.y65{bottom:100.086750px;}
.y8e{bottom:107.834550px;}
.y46{bottom:114.348750px;}
.y64{bottom:115.086750px;}
.y27{bottom:118.281750px;}
.y73{bottom:118.334700px;}
.y8d{bottom:128.834550px;}
.y79{bottom:128.834700px;}
.y63{bottom:130.086750px;}
.y26{bottom:133.281750px;}
.y25{bottom:148.281750px;}
.y8c{bottom:149.834550px;}
.y72{bottom:149.834700px;}
.y8b{bottom:170.834550px;}
.y71{bottom:170.834700px;}
.y78{bottom:181.334700px;}
.y8a{bottom:191.834550px;}
.y45{bottom:191.834700px;}
.y62{bottom:202.334700px;}
.y89{bottom:212.834550px;}
.y24{bottom:212.834700px;}
.yc1{bottom:215.456700px;}
.y61{bottom:223.334700px;}
.y88{bottom:233.834550px;}
.y23{bottom:233.834700px;}
.yc0{bottom:243.864450px;}
.y44{bottom:244.334700px;}
.y87{bottom:254.834550px;}
.y70{bottom:254.834700px;}
.y22{bottom:265.334700px;}
.ybf{bottom:272.272200px;}
.y86{bottom:275.834550px;}
.y6f{bottom:275.834700px;}
.y21{bottom:286.334700px;}
.y85{bottom:296.834550px;}
.y6e{bottom:296.834700px;}
.ybe{bottom:300.680100px;}
.y43{bottom:307.334700px;}
.y20{bottom:317.834550px;}
.y6d{bottom:317.834700px;}
.y42{bottom:328.334700px;}
.ybd{bottom:329.088000px;}
.y1f{bottom:338.834550px;}
.y60{bottom:338.834700px;}
.y84{bottom:349.334550px;}
.y41{bottom:349.334700px;}
.ybc{bottom:357.495750px;}
.y1e{bottom:359.834550px;}
.y5f{bottom:359.834700px;}
.y40{bottom:370.334700px;}
.y1d{bottom:380.834550px;}
.y5e{bottom:380.834700px;}
.ybb{bottom:385.903650px;}
.y3f{bottom:391.334700px;}
.y1c{bottom:401.834550px;}
.y5d{bottom:401.834700px;}
.y3e{bottom:412.334700px;}
.yba{bottom:414.311400px;}
.y1b{bottom:422.834550px;}
.y5c{bottom:422.834700px;}
.y3d{bottom:433.334700px;}
.yb9{bottom:442.719300px;}
.y1a{bottom:443.834550px;}
.y9e{bottom:443.834700px;}
.y3c{bottom:454.334550px;}
.yb8{bottom:459.969300px;}
.y19{bottom:464.834550px;}
.y9d{bottom:464.834700px;}
.y3b{bottom:475.334550px;}
.y5b{bottom:485.834550px;}
.y9c{bottom:485.834700px;}
.y18{bottom:496.334550px;}
.y5a{bottom:506.834550px;}
.yb7{bottom:515.469300px;}
.y17{bottom:517.334550px;}
.y59{bottom:527.834550px;}
.y16{bottom:538.334550px;}
.y9b{bottom:538.334700px;}
.yb6{bottom:543.877050px;}
.y58{bottom:548.834550px;}
.y15{bottom:559.334550px;}
.y9a{bottom:559.334700px;}
.yb5{bottom:561.127050px;}
.y6c{bottom:569.834550px;}
.y14{bottom:580.334550px;}
.yb4{bottom:589.534950px;}
.y99{bottom:590.834700px;}
.y13{bottom:601.334550px;}
.yb3{bottom:606.784950px;}
.y77{bottom:611.834550px;}
.y98{bottom:611.834700px;}
.y12{bottom:622.334550px;}
.yb2{bottom:624.034950px;}
.y57{bottom:632.834550px;}
.y97{bottom:632.834700px;}
.y11{bottom:643.334550px;}
.yb1{bottom:652.442850px;}
.y3a{bottom:653.834550px;}
.y96{bottom:653.834700px;}
.y10{bottom:664.334550px;}
.y39{bottom:674.834550px;}
.y95{bottom:674.834700px;}
.yb0{bottom:680.850750px;}
.yf{bottom:685.334550px;}
.y38{bottom:695.834550px;}
.y94{bottom:695.834700px;}
.y6b{bottom:706.334550px;}
.ye{bottom:706.334700px;}
.yaf{bottom:709.258500px;}
.y37{bottom:716.834550px;}
.y93{bottom:716.834700px;}
.y6a{bottom:727.334550px;}
.yae{bottom:737.666400px;}
.y56{bottom:737.834550px;}
.yd{bottom:737.834700px;}
.y69{bottom:748.334550px;}
.yad{bottom:754.916400px;}
.y36{bottom:758.834550px;}
.yc{bottom:758.834700px;}
.y68{bottom:769.334700px;}
.yac{bottom:772.166400px;}
.yb{bottom:779.834700px;}
.yab{bottom:789.416400px;}
.y35{bottom:790.334700px;}
.ya{bottom:800.834700px;}
.y83{bottom:811.334700px;}
.yaa{bottom:817.824150px;}
.y9{bottom:821.834700px;}
.y82{bottom:832.334700px;}
.y8{bottom:842.834700px;}
.ya9{bottom:846.232050px;}
.y55{bottom:853.334700px;}
.y34{bottom:863.834700px;}
.y54{bottom:874.334700px;}
.ya8{bottom:874.639800px;}
.y7{bottom:884.834700px;}
.y53{bottom:895.334700px;}
.ya7{bottom:903.047700px;}
.y33{bottom:905.834700px;}
.ya6{bottom:914.205450px;}
.y52{bottom:916.334700px;}
.y76{bottom:926.834700px;}
.ya5{bottom:931.455450px;}
.y32{bottom:937.334700px;}
.y67{bottom:947.834700px;}
.y31{bottom:958.334700px;}
.ya4{bottom:962.903250px;}
.y51{bottom:968.834700px;}
.y6{bottom:979.334700px;}
.y50{bottom:989.834700px;}
.ya3{bottom:997.772850px;}
.y30{bottom:1000.334700px;}
.y4f{bottom:1010.834700px;}
.y5{bottom:1021.334700px;}
.ya2{bottom:1026.180750px;}
.y81{bottom:1031.834550px;}
.y4e{bottom:1031.834700px;}
.y2f{bottom:1042.334700px;}
.ya1{bottom:1043.430750px;}
.y80{bottom:1052.834550px;}
.y4{bottom:1052.834700px;}
.y2e{bottom:1063.334700px;}
.y4d{bottom:1073.834700px;}
.y7f{bottom:1084.334550px;}
.y2d{bottom:1084.334700px;}
.y4c{bottom:1094.834700px;}
.y7e{bottom:1105.334550px;}
.y92{bottom:1105.334700px;}
.y2c{bottom:1115.834700px;}
.y7d{bottom:1126.334550px;}
.y91{bottom:1126.334700px;}
.y3{bottom:1136.834700px;}
.y7c{bottom:1147.334550px;}
.y4b{bottom:1147.334700px;}
.y2b{bottom:1157.834700px;}
.y7b{bottom:1168.334550px;}
.y4a{bottom:1168.334700px;}
.y2{bottom:1168.476600px;}
.y90{bottom:1178.834700px;}
.y7a{bottom:1189.334550px;}
.y2a{bottom:1189.334700px;}
.y1{bottom:1189.476600px;}
.hd{height:34.080000px;}
.h9{height:34.560000px;}
.ha{height:41.322000px;}
.h8{height:42.960000px;}
.hc{height:43.440000px;}
.hb{height:44.784000px;}
.h4{height:48.330000px;}
.h6{height:50.382000px;}
.h3{height:52.671000px;}
.h2{height:54.300600px;}
.h7{height:97.740000px;}
.h5{height:100.764000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x6{left:106.299150px;}
.x4{left:116.597250px;}
.x5{left:131.811000px;}
.x3{left:135.712200px;}
.x8{left:569.763750px;}
.x1{left:659.055150px;}
.x7{left:727.421400px;}
.x9{left:745.973250px;}
@media print{
.v2{vertical-align:-17.227200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.227200pt;}
.lsc{letter-spacing:-3.413333pt;}
.lsd{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-1.034667pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.620800pt;}
.ls5{letter-spacing:-0.517333pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.258667pt;}
.ls8{letter-spacing:0.413867pt;}
.ls0{letter-spacing:0.517333pt;}
.lsa{letter-spacing:0.776000pt;}
.ls1{letter-spacing:4.800000pt;}
.ls2{letter-spacing:54.093333pt;}
.wse{word-spacing:-42.666667pt;}
.ws0{word-spacing:-22.080000pt;}
.ws2{word-spacing:-9.813333pt;}
.ws38{word-spacing:-9.386667pt;}
.ws35{word-spacing:-8.960000pt;}
.ws1{word-spacing:-6.936923pt;}
.ws2f{word-spacing:-6.400000pt;}
.ws8{word-spacing:-2.483200pt;}
.ws10{word-spacing:-1.920000pt;}
.ws21{word-spacing:-1.914133pt;}
.ws4{word-spacing:-1.552000pt;}
.ws5{word-spacing:-1.440000pt;}
.ws12{word-spacing:-1.211733pt;}
.ws16{word-spacing:-1.034667pt;}
.ws27{word-spacing:-0.879467pt;}
.ws25{word-spacing:-0.780800pt;}
.ws22{word-spacing:-0.776000pt;}
.ws19{word-spacing:-0.517333pt;}
.ws15{word-spacing:-0.426667pt;}
.ws17{word-spacing:-0.413867pt;}
.ws7{word-spacing:-0.362133pt;}
.ws3{word-spacing:-0.258667pt;}
.ws6{word-spacing:0.000000pt;}
.ws13{word-spacing:0.155200pt;}
.ws26{word-spacing:0.206933pt;}
.ws9{word-spacing:0.465600pt;}
.wsc{word-spacing:0.517333pt;}
.ws1c{word-spacing:0.620800pt;}
.wsa{word-spacing:1.293333pt;}
.ws1f{word-spacing:1.396800pt;}
.ws11{word-spacing:2.121067pt;}
.ws24{word-spacing:2.431467pt;}
.ws20{word-spacing:3.000533pt;}
.ws18{word-spacing:3.259200pt;}
.wsb{word-spacing:3.828267pt;}
.ws1d{word-spacing:5.121600pt;}
.wsd{word-spacing:5.587200pt;}
.ws1e{word-spacing:6.518400pt;}
.ws1b{word-spacing:7.501333pt;}
.ws1a{word-spacing:8.122133pt;}
.ws14{word-spacing:9.725867pt;}
.ws23{word-spacing:14.226667pt;}
.wsf{word-spacing:14.330133pt;}
.ws31{word-spacing:544.132800pt;}
.ws28{word-spacing:552.025600pt;}
.ws33{word-spacing:552.240000pt;}
.ws2d{word-spacing:559.151467pt;}
.ws2a{word-spacing:561.455467pt;}
.ws32{word-spacing:563.502933pt;}
.ws2e{word-spacing:574.254933pt;}
.ws34{word-spacing:577.966933pt;}
.ws29{word-spacing:579.972267pt;}
.ws2b{word-spacing:590.938667pt;}
.ws2c{word-spacing:606.426667pt;}
.ws36{word-spacing:1104.550400pt;}
.ws37{word-spacing:1295.522133pt;}
.ws30{word-spacing:1473.907200pt;}
._d{margin-left:-63.632000pt;}
._8{margin-left:-11.660640pt;}
._1c{margin-left:-10.447467pt;}
._f{margin-left:-6.796800pt;}
._3{margin-left:-5.760000pt;}
._14{margin-left:-4.821867pt;}
._5{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._0{margin-left:-1.929600pt;}
._1{margin-left:-0.960000pt;}
._7{width:1.024160pt;}
._4{width:1.920000pt;}
._13{width:2.814613pt;}
._a{width:3.703520pt;}
._9{width:4.643413pt;}
._b{width:6.095413pt;}
._c{width:7.380373pt;}
._11{width:9.011947pt;}
._12{width:10.269813pt;}
._18{width:12.809173pt;}
._16{width:13.849013pt;}
._17{width:14.901973pt;}
._19{width:15.877013pt;}
._6{width:18.768000pt;}
._15{width:41.685333pt;}
._10{width:43.178667pt;}
._e{width:51.498667pt;}
._1e{width:70.824533pt;}
._24{width:98.372267pt;}
._1b{width:118.621333pt;}
._22{width:215.449600pt;}
._1f{width:493.754667pt;}
._20{width:558.596800pt;}
._23{width:577.113600pt;}
._28{width:758.501333pt;}
._26{width:763.057067pt;}
._29{width:1024.722133pt;}
._21{width:1090.547200pt;}
._27{width:1107.677867pt;}
._2a{width:1328.039467pt;}
._1d{width:1334.534400pt;}
._25{width:1372.668800pt;}
._1a{width:1585.693867pt;}
.fs3{font-size:30.160533pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:51.733333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:56.693067pt;}
.y49{bottom:56.976533pt;}
.y8f{bottom:67.852933pt;}
.y75{bottom:67.853067pt;}
.y9f{bottom:70.026400pt;}
.y48{bottom:70.309867pt;}
.y29{bottom:73.805867pt;}
.y66{bottom:75.632667pt;}
.y74{bottom:86.519733pt;}
.y28{bottom:87.139200pt;}
.y47{bottom:88.310000pt;}
.y65{bottom:88.966000pt;}
.y8e{bottom:95.852933pt;}
.y46{bottom:101.643333pt;}
.y64{bottom:102.299333pt;}
.y27{bottom:105.139333pt;}
.y73{bottom:105.186400pt;}
.y8d{bottom:114.519600pt;}
.y79{bottom:114.519733pt;}
.y63{bottom:115.632667pt;}
.y26{bottom:118.472667pt;}
.y25{bottom:131.806000pt;}
.y8c{bottom:133.186267pt;}
.y72{bottom:133.186400pt;}
.y8b{bottom:151.852933pt;}
.y71{bottom:151.853067pt;}
.y78{bottom:161.186400pt;}
.y8a{bottom:170.519600pt;}
.y45{bottom:170.519733pt;}
.y62{bottom:179.853067pt;}
.y89{bottom:189.186267pt;}
.y24{bottom:189.186400pt;}
.yc1{bottom:191.517067pt;}
.y61{bottom:198.519733pt;}
.y88{bottom:207.852933pt;}
.y23{bottom:207.853067pt;}
.yc0{bottom:216.768400pt;}
.y44{bottom:217.186400pt;}
.y87{bottom:226.519600pt;}
.y70{bottom:226.519733pt;}
.y22{bottom:235.853067pt;}
.ybf{bottom:242.019733pt;}
.y86{bottom:245.186267pt;}
.y6f{bottom:245.186400pt;}
.y21{bottom:254.519733pt;}
.y85{bottom:263.852933pt;}
.y6e{bottom:263.853067pt;}
.ybe{bottom:267.271200pt;}
.y43{bottom:273.186400pt;}
.y20{bottom:282.519600pt;}
.y6d{bottom:282.519733pt;}
.y42{bottom:291.853067pt;}
.ybd{bottom:292.522667pt;}
.y1f{bottom:301.186267pt;}
.y60{bottom:301.186400pt;}
.y84{bottom:310.519600pt;}
.y41{bottom:310.519733pt;}
.ybc{bottom:317.774000pt;}
.y1e{bottom:319.852933pt;}
.y5f{bottom:319.853067pt;}
.y40{bottom:329.186400pt;}
.y1d{bottom:338.519600pt;}
.y5e{bottom:338.519733pt;}
.ybb{bottom:343.025467pt;}
.y3f{bottom:347.853067pt;}
.y1c{bottom:357.186267pt;}
.y5d{bottom:357.186400pt;}
.y3e{bottom:366.519733pt;}
.yba{bottom:368.276800pt;}
.y1b{bottom:375.852933pt;}
.y5c{bottom:375.853067pt;}
.y3d{bottom:385.186400pt;}
.yb9{bottom:393.528267pt;}
.y1a{bottom:394.519600pt;}
.y9e{bottom:394.519733pt;}
.y3c{bottom:403.852933pt;}
.yb8{bottom:408.861600pt;}
.y19{bottom:413.186267pt;}
.y9d{bottom:413.186400pt;}
.y3b{bottom:422.519600pt;}
.y5b{bottom:431.852933pt;}
.y9c{bottom:431.853067pt;}
.y18{bottom:441.186267pt;}
.y5a{bottom:450.519600pt;}
.yb7{bottom:458.194933pt;}
.y17{bottom:459.852933pt;}
.y59{bottom:469.186267pt;}
.y16{bottom:478.519600pt;}
.y9b{bottom:478.519733pt;}
.yb6{bottom:483.446267pt;}
.y58{bottom:487.852933pt;}
.y15{bottom:497.186267pt;}
.y9a{bottom:497.186400pt;}
.yb5{bottom:498.779600pt;}
.y6c{bottom:506.519600pt;}
.y14{bottom:515.852933pt;}
.yb4{bottom:524.031067pt;}
.y99{bottom:525.186400pt;}
.y13{bottom:534.519600pt;}
.yb3{bottom:539.364400pt;}
.y77{bottom:543.852933pt;}
.y98{bottom:543.853067pt;}
.y12{bottom:553.186267pt;}
.yb2{bottom:554.697733pt;}
.y57{bottom:562.519600pt;}
.y97{bottom:562.519733pt;}
.y11{bottom:571.852933pt;}
.yb1{bottom:579.949200pt;}
.y3a{bottom:581.186267pt;}
.y96{bottom:581.186400pt;}
.y10{bottom:590.519600pt;}
.y39{bottom:599.852933pt;}
.y95{bottom:599.853067pt;}
.yb0{bottom:605.200667pt;}
.yf{bottom:609.186267pt;}
.y38{bottom:618.519600pt;}
.y94{bottom:618.519733pt;}
.y6b{bottom:627.852933pt;}
.ye{bottom:627.853067pt;}
.yaf{bottom:630.452000pt;}
.y37{bottom:637.186267pt;}
.y93{bottom:637.186400pt;}
.y6a{bottom:646.519600pt;}
.yae{bottom:655.703467pt;}
.y56{bottom:655.852933pt;}
.yd{bottom:655.853067pt;}
.y69{bottom:665.186267pt;}
.yad{bottom:671.036800pt;}
.y36{bottom:674.519600pt;}
.yc{bottom:674.519733pt;}
.y68{bottom:683.853067pt;}
.yac{bottom:686.370133pt;}
.yb{bottom:693.186400pt;}
.yab{bottom:701.703467pt;}
.y35{bottom:702.519733pt;}
.ya{bottom:711.853067pt;}
.y83{bottom:721.186400pt;}
.yaa{bottom:726.954800pt;}
.y9{bottom:730.519733pt;}
.y82{bottom:739.853067pt;}
.y8{bottom:749.186400pt;}
.ya9{bottom:752.206267pt;}
.y55{bottom:758.519733pt;}
.y34{bottom:767.853067pt;}
.y54{bottom:777.186400pt;}
.ya8{bottom:777.457600pt;}
.y7{bottom:786.519733pt;}
.y53{bottom:795.853067pt;}
.ya7{bottom:802.709067pt;}
.y33{bottom:805.186400pt;}
.ya6{bottom:812.627067pt;}
.y52{bottom:814.519733pt;}
.y76{bottom:823.853067pt;}
.ya5{bottom:827.960400pt;}
.y32{bottom:833.186400pt;}
.y67{bottom:842.519733pt;}
.y31{bottom:851.853067pt;}
.ya4{bottom:855.914000pt;}
.y51{bottom:861.186400pt;}
.y6{bottom:870.519733pt;}
.y50{bottom:879.853067pt;}
.ya3{bottom:886.909200pt;}
.y30{bottom:889.186400pt;}
.y4f{bottom:898.519733pt;}
.y5{bottom:907.853067pt;}
.ya2{bottom:912.160667pt;}
.y81{bottom:917.186267pt;}
.y4e{bottom:917.186400pt;}
.y2f{bottom:926.519733pt;}
.ya1{bottom:927.494000pt;}
.y80{bottom:935.852933pt;}
.y4{bottom:935.853067pt;}
.y2e{bottom:945.186400pt;}
.y4d{bottom:954.519733pt;}
.y7f{bottom:963.852933pt;}
.y2d{bottom:963.853067pt;}
.y4c{bottom:973.186400pt;}
.y7e{bottom:982.519600pt;}
.y92{bottom:982.519733pt;}
.y2c{bottom:991.853067pt;}
.y7d{bottom:1001.186267pt;}
.y91{bottom:1001.186400pt;}
.y3{bottom:1010.519733pt;}
.y7c{bottom:1019.852933pt;}
.y4b{bottom:1019.853067pt;}
.y2b{bottom:1029.186400pt;}
.y7b{bottom:1038.519600pt;}
.y4a{bottom:1038.519733pt;}
.y2{bottom:1038.645867pt;}
.y90{bottom:1047.853067pt;}
.y7a{bottom:1057.186267pt;}
.y2a{bottom:1057.186400pt;}
.y1{bottom:1057.312533pt;}
.hd{height:30.293333pt;}
.h9{height:30.720000pt;}
.ha{height:36.730667pt;}
.h8{height:38.186667pt;}
.hc{height:38.613333pt;}
.hb{height:39.808000pt;}
.h4{height:42.960000pt;}
.h6{height:44.784000pt;}
.h3{height:46.818667pt;}
.h2{height:48.267200pt;}
.h7{height:86.880000pt;}
.h5{height:89.568000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x6{left:94.488133pt;}
.x4{left:103.642000pt;}
.x5{left:117.165333pt;}
.x3{left:120.633067pt;}
.x8{left:506.456667pt;}
.x1{left:585.826800pt;}
.x7{left:646.596800pt;}
.x9{left:663.087333pt;}
}




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