
    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_a06a040f9b637bce1098b170.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_7a4c0e8ebc4ede0945162294.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_fa2e2dbfa7f148c383f2db2e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_d8797398941f3b535187a303.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_71b21836c83be1782436b82c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_83003458c95e20bfbe61a592.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_7d8969e379eb51d959d104ee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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_3ba1519fe2ef3d4ee35c35a2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.071777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58925763eb053550e3b80b42.woff')format("woff");}.ff9{font-family:ff9;line-height:1.071777;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:ffa;src:url('chunks/assets/font_12bda6e343b644ac8400cbbd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.071777;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:ffb;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_fa0bcccdac6c3f700a42f077.woff')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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:ffd;src:url('chunks/assets/font_6df4717072e301fe15aa233c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.022949;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:ffe;src:url('chunks/assets/font_c5b5be39689721e993eddb33.woff')format("woff");}.ffe{font-family:ffe;line-height:1.022949;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;}
.ls15{letter-spacing:-0.228000px;}
.lse{letter-spacing:-0.220200px;}
.lsf{letter-spacing:-0.185400px;}
.ls6{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.015960px;}
.ls13{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.051120px;}
.lsb{letter-spacing:0.067200px;}
.ls7{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.109800px;}
.ls1{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.166608px;}
.lsa{letter-spacing:0.178800px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.249600px;}
.lsc{letter-spacing:0.258768px;}
.ls4{letter-spacing:5.904000px;}
.ls3{letter-spacing:22.062816px;}
.ls2{letter-spacing:22.176000px;}
.ls14{letter-spacing:85.572000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-108.144000px;}
.wsa{word-spacing:-108.000000px;}
.ws20{word-spacing:-64.924272px;}
.ws18{word-spacing:-64.895040px;}
.ws26{word-spacing:-39.053952px;}
.ws2{word-spacing:-38.448000px;}
.ws3{word-spacing:-32.576544px;}
.ws4{word-spacing:-32.544000px;}
.ws1c{word-spacing:-29.510832px;}
.ws12{word-spacing:-29.376000px;}
.ws1b{word-spacing:-29.371032px;}
.ws11{word-spacing:-29.232000px;}
.wse{word-spacing:-28.296240px;}
.ws6{word-spacing:-28.296000px;}
.wsb{word-spacing:-28.260000px;}
.ws16{word-spacing:-22.032000px;}
.ws5{word-spacing:-21.924000px;}
.ws21{word-spacing:-13.059360px;}
.ws22{word-spacing:-13.008240px;}
.ws15{word-spacing:-2.640000px;}
.ws9{word-spacing:-1.068000px;}
.ws8{word-spacing:-1.044000px;}
.ws17{word-spacing:-1.008000px;}
.ws1e{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.662328px;}
.wsf{word-spacing:-0.612000px;}
.ws7{word-spacing:-0.324000px;}
.ws24{word-spacing:-0.250560px;}
.ws0{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.029712px;}
.ws23{word-spacing:0.575280px;}
.ws14{word-spacing:0.612000px;}
.ws19{word-spacing:2.886000px;}
.ws1d{word-spacing:3.372000px;}
.ws25{word-spacing:13.151520px;}
.ws10{word-spacing:67.248000px;}
.ws13{word-spacing:67.330080px;}
.ws1a{word-spacing:112.624320px;}
._12{margin-left:-11.828160px;}
._17{margin-left:-10.329504px;}
._18{margin-left:-9.240000px;}
._3{margin-left:-7.990848px;}
._c{margin-left:-6.396480px;}
._5{margin-left:-5.357856px;}
._4{margin-left:-4.022256px;}
._0{margin-left:-2.558592px;}
._7{margin-left:-1.404000px;}
._1{width:1.465968px;}
._6{width:2.530800px;}
._a{width:3.595200px;}
._2{width:4.797360px;}
._9{width:6.028800px;}
._19{width:10.699248px;}
._8{width:11.890800px;}
._11{width:19.178592px;}
._10{width:20.700624px;}
._16{width:22.422720px;}
._15{width:23.656320px;}
._14{width:25.254720px;}
._d{width:26.772000px;}
._e{width:29.086032px;}
._f{width:30.278256px;}
._b{width:62.071440px;}
._13{width:66.914784px;}
.fc3{color:rgb(30,87,168);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:64.080000px;}
.fs4{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fsb{font-size:192.384000px;}
.fs5{font-size:264.240000px;}
.fs7{font-size:288.000000px;}
.fs9{font-size:288.144000px;}
.fs1{font-size:319.680000px;}
.fs0{font-size:319.824000px;}
.fs6{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:8.100000px;}
.y71{bottom:29.448000px;}
.y70{bottom:48.708000px;}
.y10{bottom:50.580000px;}
.y6f{bottom:67.968000px;}
.y3b{bottom:70.236000px;}
.y28{bottom:70.848000px;}
.y6{bottom:73.620000px;}
.y6e{bottom:87.048000px;}
.y4b{bottom:94.752000px;}
.y6d{bottom:106.308000px;}
.y6c{bottom:125.568000px;}
.y49{bottom:127.296000px;}
.y2c{bottom:128.916000px;}
.y5{bottom:135.828000px;}
.y27{bottom:154.980000px;}
.y48{bottom:159.690000px;}
.y12{bottom:160.740000px;}
.y2b{bottom:172.155000px;}
.y5f{bottom:173.310000px;}
.y3a{bottom:176.370000px;}
.y26{bottom:187.380000px;}
.y4{bottom:189.870000px;}
.y47{bottom:192.135000px;}
.y39{bottom:208.800000px;}
.y2a{bottom:215.355000px;}
.y5e{bottom:216.510000px;}
.y25{bottom:219.780000px;}
.y46{bottom:224.535000px;}
.y1b{bottom:229.110000px;}
.y38{bottom:241.200000px;}
.y3{bottom:243.690000px;}
.y56{bottom:246.600000px;}
.y24{bottom:252.180000px;}
.y45{bottom:256.935000px;}
.y5d{bottom:259.380000px;}
.y1a{bottom:261.510000px;}
.yd{bottom:270.105000px;}
.y37{bottom:273.600000px;}
.y23{bottom:293.610000px;}
.y19{bottom:293.910000px;}
.y5c{bottom:302.940000px;}
.y36{bottom:306.000000px;}
.y60{bottom:314.670000px;}
.y44{bottom:321.735000px;}
.yc{bottom:328.470000px;}
.y55{bottom:333.030000px;}
.y22{bottom:335.010000px;}
.y6a{bottom:337.500000px;}
.y35{bottom:338.400000px;}
.y73{bottom:343.515000px;}
.y2{bottom:344.370000px;}
.y5b{bottom:346.140000px;}
.y43{bottom:354.165000px;}
.y18{bottom:359.070000px;}
.y65{bottom:365.070000px;}
.y34{bottom:370.830000px;}
.y54{bottom:376.230000px;}
.y69{bottom:380.700000px;}
.y42{bottom:386.565000px;}
.yb{bottom:386.610000px;}
.y5a{bottom:389.340000px;}
.y17{bottom:391.140000px;}
.y21{bottom:399.810000px;}
.y33{bottom:403.230000px;}
.y64{bottom:408.270000px;}
.ye{bottom:415.155000px;}
.y2d{bottom:416.055000px;}
.y41{bottom:418.965000px;}
.y53{bottom:419.475000px;}
.y16{bottom:423.540000px;}
.y68{bottom:423.900000px;}
.ya{bottom:429.810000px;}
.y59{bottom:432.570000px;}
.y32{bottom:435.630000px;}
.y6b{bottom:441.975000px;}
.y1{bottom:445.755000px;}
.y63{bottom:451.515000px;}
.y40{bottom:483.765000px;}
.y9{bottom:487.980000px;}
.y15{bottom:488.340000px;}
.y20{bottom:497.055000px;}
.y31{bottom:500.475000px;}
.y52{bottom:505.875000px;}
.y3f{bottom:516.210000px;}
.y14{bottom:520.740000px;}
.y1f{bottom:529.455000px;}
.y30{bottom:532.875000px;}
.y8{bottom:546.300000px;}
.y3e{bottom:548.610000px;}
.y51{bottom:549.075000px;}
.y13{bottom:553.170000px;}
.y58{bottom:553.245000px;}
.y1e{bottom:561.855000px;}
.y2f{bottom:565.275000px;}
.y72{bottom:565.305000px;}
.y67{bottom:582.915000px;}
.y62{bottom:586.470000px;}
.y4d{bottom:587.625000px;}
.y50{bottom:592.305000px;}
.y1d{bottom:594.255000px;}
.y3d{bottom:619.350000px;}
.y11{bottom:631.155000px;}
.y57{bottom:639.690000px;}
.y2e{bottom:644.505000px;}
.y29{bottom:658.980000px;}
.y7{bottom:659.415000px;}
.y66{bottom:669.345000px;}
.y61{bottom:672.915000px;}
.y4c{bottom:674.025000px;}
.y1c{bottom:675.930000px;}
.y4f{bottom:678.600000px;}
.y3c{bottom:705.780000px;}
.yf{bottom:706.035000px;}
.y4a{bottom:707.550000px;}
.h14{height:55.538086px;}
.h5{height:78.626953px;}
.hd{height:89.806641px;}
.hc{height:89.926383px;}
.hb{height:93.603516px;}
.hf{height:93.728320px;}
.h10{height:93.761719px;}
.h3{height:124.804688px;}
.h4{height:124.929492px;}
.h13{height:125.015625px;}
.h12{height:125.140641px;}
.h7{height:137.109375px;}
.h8{height:137.246484px;}
.h15{height:166.739063px;}
.ha{height:243.421875px;}
.he{height:243.543586px;}
.h11{height:270.198281px;}
.h6{height:270.562148px;}
.h2{height:277.534688px;}
.h1{height:277.659703px;}
.h9{height:281.410172px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xb{left:49.967979px;}
.xc{left:60.767979px;}
.x3{left:62.927979px;}
.x12{left:71.999979px;}
.x1{left:75.239979px;}
.x5{left:79.775979px;}
.x7{left:82.799979px;}
.xd{left:84.527979px;}
.xa{left:86.687979px;}
.x10{left:87.731979px;}
.x6{left:89.927979px;}
.x4{left:96.983979px;}
.x14{left:102.923979px;}
.x15{left:106.163979px;}
.x11{left:136.799979px;}
.x8{left:154.829979px;}
.xf{left:192.089979px;}
.x9{left:208.829979px;}
.x17{left:218.084979px;}
.x2{left:296.714979px;}
.xe{left:370.829979px;}
.x16{left:431.204979px;}
.x13{left:701.069979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.202667pt;}
.lse{letter-spacing:-0.195733pt;}
.lsf{letter-spacing:-0.164800pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.014187pt;}
.ls13{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.045440pt;}
.lsb{letter-spacing:0.059733pt;}
.ls7{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.097600pt;}
.ls1{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.148096pt;}
.lsa{letter-spacing:0.158933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.221867pt;}
.lsc{letter-spacing:0.230016pt;}
.ls4{letter-spacing:5.248000pt;}
.ls3{letter-spacing:19.611392pt;}
.ls2{letter-spacing:19.712000pt;}
.ls14{letter-spacing:76.064000pt;}
.wsc{word-spacing:-96.128000pt;}
.wsa{word-spacing:-96.000000pt;}
.ws20{word-spacing:-57.710464pt;}
.ws18{word-spacing:-57.684480pt;}
.ws26{word-spacing:-34.714624pt;}
.ws2{word-spacing:-34.176000pt;}
.ws3{word-spacing:-28.956928pt;}
.ws4{word-spacing:-28.928000pt;}
.ws1c{word-spacing:-26.231851pt;}
.ws12{word-spacing:-26.112000pt;}
.ws1b{word-spacing:-26.107584pt;}
.ws11{word-spacing:-25.984000pt;}
.wse{word-spacing:-25.152213pt;}
.ws6{word-spacing:-25.152000pt;}
.wsb{word-spacing:-25.120000pt;}
.ws16{word-spacing:-19.584000pt;}
.ws5{word-spacing:-19.488000pt;}
.ws21{word-spacing:-11.608320pt;}
.ws22{word-spacing:-11.562880pt;}
.ws15{word-spacing:-2.346667pt;}
.ws9{word-spacing:-0.949333pt;}
.ws8{word-spacing:-0.928000pt;}
.ws17{word-spacing:-0.896000pt;}
.ws1e{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.588736pt;}
.wsf{word-spacing:-0.544000pt;}
.ws7{word-spacing:-0.288000pt;}
.ws24{word-spacing:-0.222720pt;}
.ws0{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.026411pt;}
.ws23{word-spacing:0.511360pt;}
.ws14{word-spacing:0.544000pt;}
.ws19{word-spacing:2.565333pt;}
.ws1d{word-spacing:2.997333pt;}
.ws25{word-spacing:11.690240pt;}
.ws10{word-spacing:59.776000pt;}
.ws13{word-spacing:59.848960pt;}
.ws1a{word-spacing:100.110507pt;}
._12{margin-left:-10.513920pt;}
._17{margin-left:-9.181781pt;}
._18{margin-left:-8.213333pt;}
._3{margin-left:-7.102976pt;}
._c{margin-left:-5.685760pt;}
._5{margin-left:-4.762539pt;}
._4{margin-left:-3.575339pt;}
._0{margin-left:-2.274304pt;}
._7{margin-left:-1.248000pt;}
._1{width:1.303083pt;}
._6{width:2.249600pt;}
._a{width:3.195733pt;}
._2{width:4.264320pt;}
._9{width:5.358933pt;}
._19{width:9.510443pt;}
._8{width:10.569600pt;}
._11{width:17.047637pt;}
._10{width:18.400555pt;}
._16{width:19.931307pt;}
._15{width:21.027840pt;}
._14{width:22.448640pt;}
._d{width:23.797333pt;}
._e{width:25.854251pt;}
._f{width:26.914005pt;}
._b{width:55.174613pt;}
._13{width:59.479808pt;}
.fsa{font-size:56.960000pt;}
.fs4{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fsb{font-size:171.008000pt;}
.fs5{font-size:234.880000pt;}
.fs7{font-size:256.000000pt;}
.fs9{font-size:256.128000pt;}
.fs1{font-size:284.160000pt;}
.fs0{font-size:284.288000pt;}
.fs6{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:7.200000pt;}
.y71{bottom:26.176000pt;}
.y70{bottom:43.296000pt;}
.y10{bottom:44.960000pt;}
.y6f{bottom:60.416000pt;}
.y3b{bottom:62.432000pt;}
.y28{bottom:62.976000pt;}
.y6{bottom:65.440000pt;}
.y6e{bottom:77.376000pt;}
.y4b{bottom:84.224000pt;}
.y6d{bottom:94.496000pt;}
.y6c{bottom:111.616000pt;}
.y49{bottom:113.152000pt;}
.y2c{bottom:114.592000pt;}
.y5{bottom:120.736000pt;}
.y27{bottom:137.760000pt;}
.y48{bottom:141.946667pt;}
.y12{bottom:142.880000pt;}
.y2b{bottom:153.026667pt;}
.y5f{bottom:154.053333pt;}
.y3a{bottom:156.773333pt;}
.y26{bottom:166.560000pt;}
.y4{bottom:168.773333pt;}
.y47{bottom:170.786667pt;}
.y39{bottom:185.600000pt;}
.y2a{bottom:191.426667pt;}
.y5e{bottom:192.453333pt;}
.y25{bottom:195.360000pt;}
.y46{bottom:199.586667pt;}
.y1b{bottom:203.653333pt;}
.y38{bottom:214.400000pt;}
.y3{bottom:216.613333pt;}
.y56{bottom:219.200000pt;}
.y24{bottom:224.160000pt;}
.y45{bottom:228.386667pt;}
.y5d{bottom:230.560000pt;}
.y1a{bottom:232.453333pt;}
.yd{bottom:240.093333pt;}
.y37{bottom:243.200000pt;}
.y23{bottom:260.986667pt;}
.y19{bottom:261.253333pt;}
.y5c{bottom:269.280000pt;}
.y36{bottom:272.000000pt;}
.y60{bottom:279.706667pt;}
.y44{bottom:285.986667pt;}
.yc{bottom:291.973333pt;}
.y55{bottom:296.026667pt;}
.y22{bottom:297.786667pt;}
.y6a{bottom:300.000000pt;}
.y35{bottom:300.800000pt;}
.y73{bottom:305.346667pt;}
.y2{bottom:306.106667pt;}
.y5b{bottom:307.680000pt;}
.y43{bottom:314.813333pt;}
.y18{bottom:319.173333pt;}
.y65{bottom:324.506667pt;}
.y34{bottom:329.626667pt;}
.y54{bottom:334.426667pt;}
.y69{bottom:338.400000pt;}
.y42{bottom:343.613333pt;}
.yb{bottom:343.653333pt;}
.y5a{bottom:346.080000pt;}
.y17{bottom:347.680000pt;}
.y21{bottom:355.386667pt;}
.y33{bottom:358.426667pt;}
.y64{bottom:362.906667pt;}
.ye{bottom:369.026667pt;}
.y2d{bottom:369.826667pt;}
.y41{bottom:372.413333pt;}
.y53{bottom:372.866667pt;}
.y16{bottom:376.480000pt;}
.y68{bottom:376.800000pt;}
.ya{bottom:382.053333pt;}
.y59{bottom:384.506667pt;}
.y32{bottom:387.226667pt;}
.y6b{bottom:392.866667pt;}
.y1{bottom:396.226667pt;}
.y63{bottom:401.346667pt;}
.y40{bottom:430.013333pt;}
.y9{bottom:433.760000pt;}
.y15{bottom:434.080000pt;}
.y20{bottom:441.826667pt;}
.y31{bottom:444.866667pt;}
.y52{bottom:449.666667pt;}
.y3f{bottom:458.853333pt;}
.y14{bottom:462.880000pt;}
.y1f{bottom:470.626667pt;}
.y30{bottom:473.666667pt;}
.y8{bottom:485.600000pt;}
.y3e{bottom:487.653333pt;}
.y51{bottom:488.066667pt;}
.y13{bottom:491.706667pt;}
.y58{bottom:491.773333pt;}
.y1e{bottom:499.426667pt;}
.y2f{bottom:502.466667pt;}
.y72{bottom:502.493333pt;}
.y67{bottom:518.146667pt;}
.y62{bottom:521.306667pt;}
.y4d{bottom:522.333333pt;}
.y50{bottom:526.493333pt;}
.y1d{bottom:528.226667pt;}
.y3d{bottom:550.533333pt;}
.y11{bottom:561.026667pt;}
.y57{bottom:568.613333pt;}
.y2e{bottom:572.893333pt;}
.y29{bottom:585.760000pt;}
.y7{bottom:586.146667pt;}
.y66{bottom:594.973333pt;}
.y61{bottom:598.146667pt;}
.y4c{bottom:599.133333pt;}
.y1c{bottom:600.826667pt;}
.y4f{bottom:603.200000pt;}
.y3c{bottom:627.360000pt;}
.yf{bottom:627.586667pt;}
.y4a{bottom:628.933333pt;}
.h14{height:49.367188pt;}
.h5{height:69.890625pt;}
.hd{height:79.828125pt;}
.hc{height:79.934562pt;}
.hb{height:83.203125pt;}
.hf{height:83.314062pt;}
.h10{height:83.343750pt;}
.h3{height:110.937500pt;}
.h4{height:111.048437pt;}
.h13{height:111.125000pt;}
.h12{height:111.236125pt;}
.h7{height:121.875000pt;}
.h8{height:121.996875pt;}
.h15{height:148.212500pt;}
.ha{height:216.375000pt;}
.he{height:216.483187pt;}
.h11{height:240.176250pt;}
.h6{height:240.499687pt;}
.h2{height:246.697500pt;}
.h1{height:246.808625pt;}
.h9{height:250.142375pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xb{left:44.415981pt;}
.xc{left:54.015981pt;}
.x3{left:55.935981pt;}
.x12{left:63.999981pt;}
.x1{left:66.879981pt;}
.x5{left:70.911981pt;}
.x7{left:73.599981pt;}
.xd{left:75.135981pt;}
.xa{left:77.055981pt;}
.x10{left:77.983981pt;}
.x6{left:79.935981pt;}
.x4{left:86.207981pt;}
.x14{left:91.487981pt;}
.x15{left:94.367981pt;}
.x11{left:121.599981pt;}
.x8{left:137.626648pt;}
.xf{left:170.746648pt;}
.x9{left:185.626648pt;}
.x17{left:193.853314pt;}
.x2{left:263.746648pt;}
.xe{left:329.626648pt;}
.x16{left:383.293314pt;}
.x13{left:623.173314pt;}
}




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