
    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_566b5f240dcc25d1b4b23e52.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_220068fe0ba6cb749e14461e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_2f5f5cdac407bd1cb938aff4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.880859;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_9ffd62ed6c7d4a8cd2c458de.woff')format("woff");}.ff4{font-family:ff4;line-height:0.880859;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_1255d727d5b2009b759567b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.365723;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_cfe5884f9bbc9eeeff735175.woff')format("woff");}.ff6{font-family:ff6;line-height:1.365723;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_35a3088189d2d4be1cb06007.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_d2375812a57c532211509f66.woff')format("woff");}.ff8{font-family:ff8;line-height:1.301270;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_c9b9d38f69b53ce81d9008dd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.301270;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;}
.v1{vertical-align:30.240000px;}
.ls10{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.308400px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000001px;}
.ls41{letter-spacing:0.063600px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.106560px;}
.ls15{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.184200px;}
.ls5{letter-spacing:0.192000px;}
.lse{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.253200px;}
.ls1b{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.408000px;}
.ls33{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.468000px;}
.ls37{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.783360px;}
.ls4{letter-spacing:0.792000px;}
.ls1{letter-spacing:0.826560px;}
.ls34{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.864000px;}
.ls2e{letter-spacing:1.152000px;}
.ls44{letter-spacing:1.368000px;}
.ls2b{letter-spacing:1.656000px;}
.ls30{letter-spacing:2.088000px;}
.ls21{letter-spacing:2.376000px;}
.ls1a{letter-spacing:2.808000px;}
.ls28{letter-spacing:3.096000px;}
.ls19{letter-spacing:3.528000px;}
.ls24{letter-spacing:3.816000px;}
.ls14{letter-spacing:4.248000px;}
.ls23{letter-spacing:4.536000px;}
.ls22{letter-spacing:4.968000px;}
.ls29{letter-spacing:5.400000px;}
.ls40{letter-spacing:5.832000px;}
.ls1e{letter-spacing:5.976000px;}
.ls35{letter-spacing:6.408000px;}
.ls1c{letter-spacing:6.696000px;}
.ls3b{letter-spacing:7.128000px;}
.ls2c{letter-spacing:7.416000px;}
.ls42{letter-spacing:7.848000px;}
.ls20{letter-spacing:8.136000px;}
.ls26{letter-spacing:8.568000px;}
.ls45{letter-spacing:9.264000px;}
.ls25{letter-spacing:9.288000px;}
.ls1f{letter-spacing:9.576000px;}
.ls31{letter-spacing:10.728000px;}
.ls47{letter-spacing:12.144000px;}
.ls48{letter-spacing:12.168000px;}
.ls36{letter-spacing:12.888000px;}
.ls3f{letter-spacing:13.608000px;}
.ls3c{letter-spacing:15.768000px;}
.ls11{letter-spacing:17.928000px;}
.ls38{letter-spacing:20.088000px;}
.ls3d{letter-spacing:21.528000px;}
.ls27{letter-spacing:22.968000px;}
.lsc{letter-spacing:23.688000px;}
.ls6{letter-spacing:25.848000px;}
.ls12{letter-spacing:26.028000px;}
.ls13{letter-spacing:26.568000px;}
.ls3{letter-spacing:28.008000px;}
.lsb{letter-spacing:33.264000px;}
.ls3e{letter-spacing:37.368000px;}
.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;}
}
.ws6{word-spacing:-20.448000px;}
.ws4{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.ws19{word-spacing:-20.088000px;}
.ws7{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.944000px;}
.ws9{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.866640px;}
.ws3{word-spacing:-18.797640px;}
.ws1{word-spacing:-18.613440px;}
.ws1a{word-spacing:-18.305040px;}
.wsd{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws17{word-spacing:-16.792560px;}
.ws18{word-spacing:-11.734560px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:8.172000px;}
.ws13{word-spacing:17.856000px;}
.ws11{word-spacing:17.904000px;}
.ws12{word-spacing:18.504000px;}
.ws15{word-spacing:18.684000px;}
._2a{margin-left:-7.911360px;}
._6{margin-left:-5.630400px;}
._7{margin-left:-3.634080px;}
._a{margin-left:-2.195040px;}
._3{margin-left:-1.010880px;}
._0{width:1.015920px;}
._b{width:2.586720px;}
._d{width:3.792960px;}
._c{width:4.914720px;}
._e{width:6.125040px;}
._10{width:7.128000px;}
._f{width:8.430960px;}
._12{width:9.489120px;}
._16{width:10.668720px;}
._1c{width:11.841600px;}
._8{width:12.950400px;}
._9{width:14.091840px;}
._14{width:15.096000px;}
._15{width:16.196160px;}
._1e{width:17.496000px;}
._1b{width:18.866880px;}
._26{width:20.200080px;}
._1d{width:21.244080px;}
._1a{width:22.608000px;}
._19{width:24.384000px;}
._11{width:25.608000px;}
._4{width:26.856000px;}
._5{width:28.320000px;}
._1f{width:29.331120px;}
._18{width:30.600000px;}
._17{width:31.896000px;}
._27{width:33.167520px;}
._28{width:34.248240px;}
._22{width:35.303760px;}
._21{width:36.467280px;}
._25{width:38.238240px;}
._23{width:43.560000px;}
._20{width:50.443200px;}
._13{width:54.288000px;}
._24{width:79.416000px;}
._1{width:246.447840px;}
._2{width:445.012320px;}
._29{width:843.924000px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.096000px;}
.y4{bottom:77.796000px;}
.y3{bottom:97.776000px;}
.y2{bottom:114.876000px;}
.y1{bottom:134.856000px;}
.y4b{bottom:152.850000px;}
.y6e{bottom:156.450000px;}
.y4d{bottom:158.070000px;}
.y4a{bottom:158.790000px;}
.y47{bottom:166.710000px;}
.y49{bottom:174.270000px;}
.y6d{bottom:187.410000px;}
.y25{bottom:194.790000px;}
.y46{bottom:197.670000px;}
.y6c{bottom:218.370000px;}
.y24{bottom:225.750000px;}
.y45{bottom:228.810000px;}
.y48{bottom:236.370000px;}
.y6b{bottom:249.330000px;}
.y23{bottom:256.710000px;}
.y44{bottom:259.770000px;}
.y6a{bottom:280.290000px;}
.y22{bottom:287.715000px;}
.y43{bottom:290.775000px;}
.y69{bottom:311.475000px;}
.y21{bottom:318.675000px;}
.y42{bottom:321.735000px;}
.y68{bottom:342.435000px;}
.y20{bottom:349.635000px;}
.y41{bottom:352.695000px;}
.y67{bottom:373.395000px;}
.y1f{bottom:380.775000px;}
.y40{bottom:383.655000px;}
.y66{bottom:404.355000px;}
.y1e{bottom:410.655000px;}
.y3f{bottom:414.615000px;}
.y65{bottom:435.315000px;}
.y1d{bottom:439.095000px;}
.y3e{bottom:445.755000px;}
.y64{bottom:466.275000px;}
.y1c{bottom:467.535000px;}
.y3d{bottom:476.715000px;}
.y1b{bottom:495.975000px;}
.y63{bottom:497.235000px;}
.y3c{bottom:507.675000px;}
.y1a{bottom:524.415000px;}
.y62{bottom:528.375000px;}
.y3b{bottom:538.635000px;}
.y19{bottom:552.675000px;}
.y61{bottom:559.335000px;}
.y3a{bottom:569.625000px;}
.y18{bottom:581.145000px;}
.y60{bottom:590.325000px;}
.y39{bottom:600.585000px;}
.y4f{bottom:608.145000px;}
.y17{bottom:609.585000px;}
.y5f{bottom:621.285000px;}
.y38{bottom:631.545000px;}
.y16{bottom:638.025000px;}
.y5e{bottom:652.245000px;}
.y37{bottom:662.685000px;}
.y15{bottom:666.465000px;}
.y5d{bottom:683.205000px;}
.y36{bottom:693.645000px;}
.y14{bottom:694.725000px;}
.y5c{bottom:714.345000px;}
.y13{bottom:723.165000px;}
.y35{bottom:724.605000px;}
.y4c{bottom:732.165000px;}
.y5b{bottom:745.305000px;}
.y12{bottom:751.605000px;}
.y34{bottom:755.565000px;}
.y5a{bottom:776.265000px;}
.y11{bottom:780.045000px;}
.y33{bottom:786.525000px;}
.y59{bottom:807.225000px;}
.y10{bottom:808.485000px;}
.y32{bottom:817.485000px;}
.yf{bottom:836.745000px;}
.y58{bottom:838.185000px;}
.y31{bottom:848.670000px;}
.ye{bottom:865.230000px;}
.y57{bottom:869.190000px;}
.y30{bottom:879.630000px;}
.yd{bottom:894.570000px;}
.y56{bottom:900.150000px;}
.y2f{bottom:910.590000px;}
.yc{bottom:925.710000px;}
.y55{bottom:931.290000px;}
.y2e{bottom:941.550000px;}
.yb{bottom:956.670000px;}
.y54{bottom:962.250000px;}
.y2d{bottom:972.510000px;}
.y53{bottom:993.210000px;}
.ya{bottom:995.370000px;}
.y2c{bottom:1003.470000px;}
.y4e{bottom:1011.030000px;}
.y52{bottom:1024.170000px;}
.y2b{bottom:1034.430000px;}
.y9{bottom:1036.950000px;}
.y51{bottom:1056.570000px;}
.y2a{bottom:1065.570000px;}
.y8{bottom:1079.250000px;}
.y50{bottom:1092.750000px;}
.y29{bottom:1096.530000px;}
.y7{bottom:1117.950000px;}
.y28{bottom:1127.850000px;}
.y6{bottom:1156.860000px;}
.y27{bottom:1158.480000px;}
.y26{bottom:1188.720000px;}
.hb{height:38.158594px;}
.ha{height:40.781250px;}
.h9{height:47.306250px;}
.h2{height:58.651172px;}
.h4{height:62.191406px;}
.h8{height:67.696875px;}
.h3{height:70.664062px;}
.h7{height:75.037500px;}
.hc{height:76.324219px;}
.h5{height:81.562500px;}
.h6{height:95.428125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x10{left:111.275987px;}
.xd{left:127.655987px;}
.xb{left:146.915973px;}
.x3{left:148.895987px;}
.xc{left:151.409987px;}
.x4{left:160.409987px;}
.x7{left:175.889987px;}
.xe{left:248.249973px;}
.x13{left:250.229987px;}
.xf{left:253.469987px;}
.x5{left:257.609987px;}
.x2{left:295.454987px;}
.x8{left:300.674973px;}
.x9{left:305.894987px;}
.xa{left:322.454987px;}
.x14{left:492.224973px;}
.x15{left:497.444987px;}
.x1b{left:511.844987px;}
.x6{left:561.344987px;}
.x11{left:582.044973px;}
.x12{left:587.264987px;}
.x19{left:599.684987px;}
.x1a{left:601.844987px;}
.x1c{left:609.944987px;}
.x17{left:644.864987px;}
.x16{left:656.204987px;}
.x18{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.274133pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000001pt;}
.ls41{letter-spacing:0.056533pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.094720pt;}
.ls15{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.163733pt;}
.ls5{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.225067pt;}
.ls1b{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.362667pt;}
.ls33{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.416000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.696320pt;}
.ls4{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.734720pt;}
.ls34{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:1.024000pt;}
.ls44{letter-spacing:1.216000pt;}
.ls2b{letter-spacing:1.472000pt;}
.ls30{letter-spacing:1.856000pt;}
.ls21{letter-spacing:2.112000pt;}
.ls1a{letter-spacing:2.496000pt;}
.ls28{letter-spacing:2.752000pt;}
.ls19{letter-spacing:3.136000pt;}
.ls24{letter-spacing:3.392000pt;}
.ls14{letter-spacing:3.776000pt;}
.ls23{letter-spacing:4.032000pt;}
.ls22{letter-spacing:4.416000pt;}
.ls29{letter-spacing:4.800000pt;}
.ls40{letter-spacing:5.184000pt;}
.ls1e{letter-spacing:5.312000pt;}
.ls35{letter-spacing:5.696000pt;}
.ls1c{letter-spacing:5.952000pt;}
.ls3b{letter-spacing:6.336000pt;}
.ls2c{letter-spacing:6.592000pt;}
.ls42{letter-spacing:6.976000pt;}
.ls20{letter-spacing:7.232000pt;}
.ls26{letter-spacing:7.616000pt;}
.ls45{letter-spacing:8.234667pt;}
.ls25{letter-spacing:8.256000pt;}
.ls1f{letter-spacing:8.512000pt;}
.ls31{letter-spacing:9.536000pt;}
.ls47{letter-spacing:10.794667pt;}
.ls48{letter-spacing:10.816000pt;}
.ls36{letter-spacing:11.456000pt;}
.ls3f{letter-spacing:12.096000pt;}
.ls3c{letter-spacing:14.016000pt;}
.ls11{letter-spacing:15.936000pt;}
.ls38{letter-spacing:17.856000pt;}
.ls3d{letter-spacing:19.136000pt;}
.ls27{letter-spacing:20.416000pt;}
.lsc{letter-spacing:21.056000pt;}
.ls6{letter-spacing:22.976000pt;}
.ls12{letter-spacing:23.136000pt;}
.ls13{letter-spacing:23.616000pt;}
.ls3{letter-spacing:24.896000pt;}
.lsb{letter-spacing:29.568000pt;}
.ls3e{letter-spacing:33.216000pt;}
.ws6{word-spacing:-18.176000pt;}
.ws4{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.856000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.728000pt;}
.ws9{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.770347pt;}
.ws3{word-spacing:-16.709013pt;}
.ws1{word-spacing:-16.545280pt;}
.ws1a{word-spacing:-16.271147pt;}
.wsd{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws17{word-spacing:-14.926720pt;}
.ws18{word-spacing:-10.430720pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:7.264000pt;}
.ws13{word-spacing:15.872000pt;}
.ws11{word-spacing:15.914667pt;}
.ws12{word-spacing:16.448000pt;}
.ws15{word-spacing:16.608000pt;}
._2a{margin-left:-7.032320pt;}
._6{margin-left:-5.004800pt;}
._7{margin-left:-3.230293pt;}
._a{margin-left:-1.951147pt;}
._3{margin-left:-0.898560pt;}
._0{width:0.903040pt;}
._b{width:2.299307pt;}
._d{width:3.371520pt;}
._c{width:4.368640pt;}
._e{width:5.444480pt;}
._10{width:6.336000pt;}
._f{width:7.494187pt;}
._12{width:8.434773pt;}
._16{width:9.483307pt;}
._1c{width:10.525867pt;}
._8{width:11.511467pt;}
._9{width:12.526080pt;}
._14{width:13.418667pt;}
._15{width:14.396587pt;}
._1e{width:15.552000pt;}
._1b{width:16.770560pt;}
._26{width:17.955627pt;}
._1d{width:18.883627pt;}
._1a{width:20.096000pt;}
._19{width:21.674667pt;}
._11{width:22.762667pt;}
._4{width:23.872000pt;}
._5{width:25.173333pt;}
._1f{width:26.072107pt;}
._18{width:27.200000pt;}
._17{width:28.352000pt;}
._27{width:29.482240pt;}
._28{width:30.442880pt;}
._22{width:31.381120pt;}
._21{width:32.415360pt;}
._25{width:33.989547pt;}
._23{width:38.720000pt;}
._20{width:44.838400pt;}
._13{width:48.256000pt;}
._24{width:70.592000pt;}
._1{width:219.064747pt;}
._2{width:395.566507pt;}
._29{width:750.154667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.752000pt;}
.y4{bottom:69.152000pt;}
.y3{bottom:86.912000pt;}
.y2{bottom:102.112000pt;}
.y1{bottom:119.872000pt;}
.y4b{bottom:135.866667pt;}
.y6e{bottom:139.066667pt;}
.y4d{bottom:140.506667pt;}
.y4a{bottom:141.146667pt;}
.y47{bottom:148.186667pt;}
.y49{bottom:154.906667pt;}
.y6d{bottom:166.586667pt;}
.y25{bottom:173.146667pt;}
.y46{bottom:175.706667pt;}
.y6c{bottom:194.106667pt;}
.y24{bottom:200.666667pt;}
.y45{bottom:203.386667pt;}
.y48{bottom:210.106667pt;}
.y6b{bottom:221.626667pt;}
.y23{bottom:228.186667pt;}
.y44{bottom:230.906667pt;}
.y6a{bottom:249.146667pt;}
.y22{bottom:255.746667pt;}
.y43{bottom:258.466667pt;}
.y69{bottom:276.866667pt;}
.y21{bottom:283.266667pt;}
.y42{bottom:285.986667pt;}
.y68{bottom:304.386667pt;}
.y20{bottom:310.786667pt;}
.y41{bottom:313.506667pt;}
.y67{bottom:331.906667pt;}
.y1f{bottom:338.466667pt;}
.y40{bottom:341.026667pt;}
.y66{bottom:359.426667pt;}
.y1e{bottom:365.026667pt;}
.y3f{bottom:368.546667pt;}
.y65{bottom:386.946667pt;}
.y1d{bottom:390.306667pt;}
.y3e{bottom:396.226667pt;}
.y64{bottom:414.466667pt;}
.y1c{bottom:415.586667pt;}
.y3d{bottom:423.746667pt;}
.y1b{bottom:440.866667pt;}
.y63{bottom:441.986667pt;}
.y3c{bottom:451.266667pt;}
.y1a{bottom:466.146667pt;}
.y62{bottom:469.666667pt;}
.y3b{bottom:478.786667pt;}
.y19{bottom:491.266667pt;}
.y61{bottom:497.186667pt;}
.y3a{bottom:506.333333pt;}
.y18{bottom:516.573333pt;}
.y60{bottom:524.733333pt;}
.y39{bottom:533.853333pt;}
.y4f{bottom:540.573333pt;}
.y17{bottom:541.853333pt;}
.y5f{bottom:552.253333pt;}
.y38{bottom:561.373333pt;}
.y16{bottom:567.133333pt;}
.y5e{bottom:579.773333pt;}
.y37{bottom:589.053333pt;}
.y15{bottom:592.413333pt;}
.y5d{bottom:607.293333pt;}
.y36{bottom:616.573333pt;}
.y14{bottom:617.533333pt;}
.y5c{bottom:634.973333pt;}
.y13{bottom:642.813333pt;}
.y35{bottom:644.093333pt;}
.y4c{bottom:650.813333pt;}
.y5b{bottom:662.493333pt;}
.y12{bottom:668.093333pt;}
.y34{bottom:671.613333pt;}
.y5a{bottom:690.013333pt;}
.y11{bottom:693.373333pt;}
.y33{bottom:699.133333pt;}
.y59{bottom:717.533333pt;}
.y10{bottom:718.653333pt;}
.y32{bottom:726.653333pt;}
.yf{bottom:743.773333pt;}
.y58{bottom:745.053333pt;}
.y31{bottom:754.373333pt;}
.ye{bottom:769.093333pt;}
.y57{bottom:772.613333pt;}
.y30{bottom:781.893333pt;}
.yd{bottom:795.173333pt;}
.y56{bottom:800.133333pt;}
.y2f{bottom:809.413333pt;}
.yc{bottom:822.853333pt;}
.y55{bottom:827.813333pt;}
.y2e{bottom:836.933333pt;}
.yb{bottom:850.373333pt;}
.y54{bottom:855.333333pt;}
.y2d{bottom:864.453333pt;}
.y53{bottom:882.853333pt;}
.ya{bottom:884.773333pt;}
.y2c{bottom:891.973333pt;}
.y4e{bottom:898.693333pt;}
.y52{bottom:910.373333pt;}
.y2b{bottom:919.493333pt;}
.y9{bottom:921.733333pt;}
.y51{bottom:939.173333pt;}
.y2a{bottom:947.173333pt;}
.y8{bottom:959.333333pt;}
.y50{bottom:971.333333pt;}
.y29{bottom:974.693333pt;}
.y7{bottom:993.733333pt;}
.y28{bottom:1002.533333pt;}
.y6{bottom:1028.320000pt;}
.y27{bottom:1029.760000pt;}
.y26{bottom:1056.640000pt;}
.hb{height:33.918750pt;}
.ha{height:36.250000pt;}
.h9{height:42.050000pt;}
.h2{height:52.134375pt;}
.h4{height:55.281250pt;}
.h8{height:60.175000pt;}
.h3{height:62.812500pt;}
.h7{height:66.700000pt;}
.hc{height:67.843750pt;}
.h5{height:72.500000pt;}
.h6{height:84.825000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x10{left:98.911988pt;}
.xd{left:113.471988pt;}
.xb{left:130.591976pt;}
.x3{left:132.351988pt;}
.xc{left:134.586655pt;}
.x4{left:142.586655pt;}
.x7{left:156.346655pt;}
.xe{left:220.666643pt;}
.x13{left:222.426655pt;}
.xf{left:225.306655pt;}
.x5{left:228.986655pt;}
.x2{left:262.626655pt;}
.x8{left:267.266643pt;}
.x9{left:271.906655pt;}
.xa{left:286.626655pt;}
.x14{left:437.533310pt;}
.x15{left:442.173322pt;}
.x1b{left:454.973322pt;}
.x6{left:498.973322pt;}
.x11{left:517.373310pt;}
.x12{left:522.013322pt;}
.x19{left:533.053322pt;}
.x1a{left:534.973322pt;}
.x1c{left:542.173322pt;}
.x17{left:573.213322pt;}
.x16{left:583.293322pt;}
.x18{left:699.333322pt;}
}




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