
    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_bcecf2d7ed8b16801365a66c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d20ceffd94db0b234bb725ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.143000;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_3859a564ee72e8b67e2dc438.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.143000;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_02ea36c95c416ae4f383d332.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48a2a10ff85bdc67950d935c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_308285c13e13a32bf54dcd70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145000;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_1fbae3cc507ad5f3b1fe80b1.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_60ad1e494a88caca7f04cd87.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_20b753cbd32f8d1725aaae27.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a7a3fe5b1f4f646742df2a58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925000;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_8da8d6da3c380b3e63d899f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.950000;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;}
.lsb{letter-spacing:-3.492000px;}
.lsf{letter-spacing:-2.880000px;}
.lsc{letter-spacing:-1.047600px;}
.lse{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.873000px;}
.lsa{letter-spacing:-0.582000px;}
.ls10{letter-spacing:-0.480000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000178px;}
.ls6{letter-spacing:0.169048px;}
.ls2{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.291000px;}
.ls4{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.582000px;}
.ls0{letter-spacing:9.720000px;}
.ls7{letter-spacing:60.855600px;}
.ls11{letter-spacing:1802.913000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.wsa{word-spacing:-13.968000px;}
.ws8{word-spacing:-13.386000px;}
.ws5{word-spacing:-11.040000px;}
.ws12{word-spacing:-9.894000px;}
.ws4{word-spacing:-7.804038px;}
.ws1{word-spacing:-2.160000px;}
.wse{word-spacing:-2.153400px;}
.ws18{word-spacing:-2.095200px;}
.ws16{word-spacing:-1.746000px;}
.ws2{word-spacing:-1.440000px;}
.ws7{word-spacing:-1.164000px;}
.wsb{word-spacing:-0.960000px;}
.wsd{word-spacing:-0.582000px;}
.ws13{word-spacing:-0.480000px;}
.ws6{word-spacing:-0.291000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.582000px;}
.ws11{word-spacing:0.873000px;}
.ws1a{word-spacing:1.047600px;}
.ws17{word-spacing:1.571400px;}
.ws9{word-spacing:2.153400px;}
.wsf{word-spacing:4.830600px;}
.ws14{word-spacing:4.888800px;}
.ws19{word-spacing:5.179800px;}
.ws10{word-spacing:6.169200px;}
.wsc{word-spacing:241.762800px;}
.ws1f{word-spacing:286.965000px;}
.ws1d{word-spacing:292.197000px;}
.ws1b{word-spacing:306.452400px;}
.ws1e{word-spacing:306.453000px;}
.ws20{word-spacing:320.661000px;}
.ws24{word-spacing:713.227800px;}
.ws1c{word-spacing:858.976800px;}
.ws21{word-spacing:1076.991600px;}
.ws23{word-spacing:1182.154800px;}
.ws22{word-spacing:1219.739400px;}
._d{margin-left:-71.586000px;}
._18{margin-left:-7.699200px;}
._2{margin-left:-6.490800px;}
._c{margin-left:-5.360520px;}
._4{margin-left:-4.320000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.620000px;}
._e{width:1.026180px;}
._3{width:2.160000px;}
._b{width:3.210900px;}
._8{width:4.460160px;}
._7{width:5.750160px;}
._6{width:6.914160px;}
._9{width:8.109300px;}
._a{width:9.682440px;}
._1e{width:10.935780px;}
._1f{width:12.290100px;}
._25{width:14.668440px;}
._5{width:16.216560px;}
._17{width:29.952000px;}
._19{width:37.306200px;}
._13{width:39.052200px;}
._f{width:45.046800px;}
._10{width:67.453800px;}
._14{width:71.644200px;}
._23{width:72.847200px;}
._22{width:74.079000px;}
._1c{width:78.094800px;}
._1b{width:79.317000px;}
._16{width:80.539200px;}
._24{width:86.049000px;}
._21{width:87.504000px;}
._1d{width:92.402400px;}
._15{width:93.799200px;}
._1a{width:95.277000px;}
._20{width:99.309000px;}
._36{width:101.239800px;}
._11{width:108.572400px;}
._12{width:241.704600px;}
._2f{width:301.653000px;}
._2b{width:314.277000px;}
._30{width:384.511800px;}
._31{width:449.938200px;}
._32{width:498.166200px;}
._26{width:533.528400px;}
._28{width:559.222200px;}
._29{width:561.190800px;}
._33{width:569.890800px;}
._35{width:578.434800px;}
._2a{width:768.016020px;}
._2d{width:795.142800px;}
._2e{width:852.604020px;}
._34{width:855.106200px;}
._2c{width:981.802200px;}
._27{width:1083.396000px;}
.fc1{color:rgb(35,37,110);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:33.930600px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.200000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:63.779550px;}
.y32{bottom:63.779700px;}
.y68{bottom:65.834700px;}
.ya{bottom:78.779550px;}
.y6a{bottom:78.779700px;}
.y31{bottom:78.779850px;}
.y40{bottom:86.834700px;}
.y9{bottom:93.779550px;}
.y30{bottom:93.779850px;}
.y67{bottom:107.834550px;}
.y3f{bottom:107.834700px;}
.y8{bottom:110.279550px;}
.y66{bottom:128.834550px;}
.y2f{bottom:128.834700px;}
.y7{bottom:138.779550px;}
.y65{bottom:149.834550px;}
.y2e{bottom:149.834700px;}
.y6{bottom:153.779550px;}
.y5{bottom:168.779550px;}
.y64{bottom:170.834550px;}
.y2d{bottom:170.834700px;}
.y63{bottom:191.834550px;}
.y2c{bottom:191.834700px;}
.y62{bottom:212.834550px;}
.y3e{bottom:212.834700px;}
.y61{bottom:233.834550px;}
.y2b{bottom:233.834700px;}
.y60{bottom:254.834550px;}
.y3d{bottom:254.834700px;}
.y5f{bottom:275.834550px;}
.y69{bottom:275.834700px;}
.y5e{bottom:296.834550px;}
.y2a{bottom:296.834700px;}
.y29{bottom:317.834700px;}
.y5d{bottom:338.834550px;}
.y28{bottom:338.834700px;}
.y5c{bottom:359.834550px;}
.y27{bottom:359.834700px;}
.y5b{bottom:380.834550px;}
.y26{bottom:380.834700px;}
.y5a{bottom:401.834550px;}
.y25{bottom:401.834700px;}
.y3c{bottom:422.834700px;}
.y59{bottom:443.834550px;}
.y24{bottom:443.834700px;}
.y58{bottom:464.834550px;}
.y23{bottom:464.834700px;}
.y22{bottom:485.834700px;}
.y21{bottom:506.834700px;}
.y57{bottom:527.834550px;}
.y3b{bottom:527.834700px;}
.y56{bottom:548.834550px;}
.y20{bottom:548.834700px;}
.y55{bottom:569.834550px;}
.y1f{bottom:569.834700px;}
.y54{bottom:590.834550px;}
.y3a{bottom:590.834700px;}
.y1e{bottom:611.834700px;}
.y53{bottom:632.834550px;}
.y1d{bottom:632.834700px;}
.y52{bottom:653.834550px;}
.y1c{bottom:653.834700px;}
.y51{bottom:674.834550px;}
.y1b{bottom:674.834700px;}
.y50{bottom:695.834550px;}
.y1a{bottom:695.834700px;}
.y4f{bottom:716.834550px;}
.y19{bottom:716.834700px;}
.y4e{bottom:737.834550px;}
.y18{bottom:737.834700px;}
.y4d{bottom:758.834550px;}
.y39{bottom:758.834700px;}
.y6d{bottom:779.834550px;}
.y17{bottom:779.834700px;}
.y4c{bottom:800.834550px;}
.y16{bottom:800.834700px;}
.y4b{bottom:821.834550px;}
.y15{bottom:821.834700px;}
.y14{bottom:842.834700px;}
.y4a{bottom:863.834550px;}
.y13{bottom:863.834700px;}
.y49{bottom:884.834550px;}
.y12{bottom:884.834700px;}
.y6c{bottom:905.834550px;}
.y11{bottom:905.834700px;}
.y10{bottom:926.834700px;}
.y4{bottom:947.127750px;}
.y48{bottom:947.834550px;}
.yf{bottom:947.834700px;}
.y47{bottom:968.834550px;}
.y38{bottom:968.834700px;}
.y46{bottom:989.834550px;}
.ye{bottom:989.834700px;}
.y3{bottom:997.135650px;}
.y45{bottom:1010.834550px;}
.y37{bottom:1010.834700px;}
.y2{bottom:1030.135650px;}
.y44{bottom:1031.834550px;}
.y36{bottom:1031.834700px;}
.y43{bottom:1052.834550px;}
.y35{bottom:1052.834700px;}
.yd{bottom:1064.834700px;}
.y1{bottom:1067.387550px;}
.y42{bottom:1073.834550px;}
.y34{bottom:1073.834700px;}
.y6b{bottom:1085.834700px;}
.yc{bottom:1094.834700px;}
.y41{bottom:1115.834550px;}
.y33{bottom:1115.834700px;}
.h4{height:34.080000px;}
.h2{height:38.340000px;}
.hc{height:41.613000px;}
.hb{height:42.195000px;}
.h6{height:43.440000px;}
.h5{height:44.784000px;}
.h8{height:52.671000px;}
.h9{height:53.544000px;}
.ha{height:54.300600px;}
.h7{height:67.176000px;}
.h3{height:100.764000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xb{left:91.039350px;}
.x6{left:102.047250px;}
.x3{left:112.345200px;}
.x4{left:127.559100px;}
.x5{left:148.818900px;}
.xc{left:314.226450px;}
.xd{left:417.023550px;}
.xf{left:777.902400px;}
.x11{left:781.898100px;}
.xe{left:782.942400px;}
.x10{left:784.550250px;}
.x8{left:786.474300px;}
.xa{left:787.842450px;}
.x9{left:790.242450px;}
.x2{left:791.850450px;}
.x7{left:793.158300px;}
@media print{
.v2{vertical-align:-17.227200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.227200pt;}
.lsb{letter-spacing:-3.104000pt;}
.lsf{letter-spacing:-2.560000pt;}
.lsc{letter-spacing:-0.931200pt;}
.lse{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.776000pt;}
.lsa{letter-spacing:-0.517333pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000158pt;}
.ls6{letter-spacing:0.150265pt;}
.ls2{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.258667pt;}
.ls4{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.517333pt;}
.ls0{letter-spacing:8.640000pt;}
.ls7{letter-spacing:54.093867pt;}
.ls11{letter-spacing:1602.589333pt;}
.ws3{word-spacing:-14.720000pt;}
.wsa{word-spacing:-12.416000pt;}
.ws8{word-spacing:-11.898667pt;}
.ws5{word-spacing:-9.813333pt;}
.ws12{word-spacing:-8.794667pt;}
.ws4{word-spacing:-6.936923pt;}
.ws1{word-spacing:-1.920000pt;}
.wse{word-spacing:-1.914133pt;}
.ws18{word-spacing:-1.862400pt;}
.ws16{word-spacing:-1.552000pt;}
.ws2{word-spacing:-1.280000pt;}
.ws7{word-spacing:-1.034667pt;}
.wsb{word-spacing:-0.853333pt;}
.wsd{word-spacing:-0.517333pt;}
.ws13{word-spacing:-0.426667pt;}
.ws6{word-spacing:-0.258667pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.517333pt;}
.ws11{word-spacing:0.776000pt;}
.ws1a{word-spacing:0.931200pt;}
.ws17{word-spacing:1.396800pt;}
.ws9{word-spacing:1.914133pt;}
.wsf{word-spacing:4.293867pt;}
.ws14{word-spacing:4.345600pt;}
.ws19{word-spacing:4.604267pt;}
.ws10{word-spacing:5.483733pt;}
.wsc{word-spacing:214.900267pt;}
.ws1f{word-spacing:255.080000pt;}
.ws1d{word-spacing:259.730667pt;}
.ws1b{word-spacing:272.402133pt;}
.ws1e{word-spacing:272.402667pt;}
.ws20{word-spacing:285.032000pt;}
.ws24{word-spacing:633.980267pt;}
.ws1c{word-spacing:763.534933pt;}
.ws21{word-spacing:957.325867pt;}
.ws23{word-spacing:1050.804267pt;}
.ws22{word-spacing:1084.212800pt;}
._d{margin-left:-63.632000pt;}
._18{margin-left:-6.843733pt;}
._2{margin-left:-5.769600pt;}
._c{margin-left:-4.764907pt;}
._4{margin-left:-3.840000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.440000pt;}
._e{width:0.912160pt;}
._3{width:1.920000pt;}
._b{width:2.854133pt;}
._8{width:3.964587pt;}
._7{width:5.111253pt;}
._6{width:6.145920pt;}
._9{width:7.208267pt;}
._a{width:8.606613pt;}
._1e{width:9.720693pt;}
._1f{width:10.924533pt;}
._25{width:13.038613pt;}
._5{width:14.414720pt;}
._17{width:26.624000pt;}
._19{width:33.161067pt;}
._13{width:34.713067pt;}
._f{width:40.041600pt;}
._10{width:59.958933pt;}
._14{width:63.683733pt;}
._23{width:64.753067pt;}
._22{width:65.848000pt;}
._1c{width:69.417600pt;}
._1b{width:70.504000pt;}
._16{width:71.590400pt;}
._24{width:76.488000pt;}
._21{width:77.781333pt;}
._1d{width:82.135467pt;}
._15{width:83.377067pt;}
._1a{width:84.690667pt;}
._20{width:88.274667pt;}
._36{width:89.990933pt;}
._11{width:96.508800pt;}
._12{width:214.848533pt;}
._2f{width:268.136000pt;}
._2b{width:279.357333pt;}
._30{width:341.788267pt;}
._31{width:399.945067pt;}
._32{width:442.814400pt;}
._26{width:474.247467pt;}
._28{width:497.086400pt;}
._29{width:498.836267pt;}
._33{width:506.569600pt;}
._35{width:514.164267pt;}
._2a{width:682.680907pt;}
._2d{width:706.793600pt;}
._2e{width:757.870240pt;}
._34{width:760.094400pt;}
._2c{width:872.713067pt;}
._27{width:963.018667pt;}
.fs5{font-size:30.160533pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:51.733333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:56.692933pt;}
.y32{bottom:56.693067pt;}
.y68{bottom:58.519733pt;}
.ya{bottom:70.026267pt;}
.y6a{bottom:70.026400pt;}
.y31{bottom:70.026533pt;}
.y40{bottom:77.186400pt;}
.y9{bottom:83.359600pt;}
.y30{bottom:83.359867pt;}
.y67{bottom:95.852933pt;}
.y3f{bottom:95.853067pt;}
.y8{bottom:98.026267pt;}
.y66{bottom:114.519600pt;}
.y2f{bottom:114.519733pt;}
.y7{bottom:123.359600pt;}
.y65{bottom:133.186267pt;}
.y2e{bottom:133.186400pt;}
.y6{bottom:136.692933pt;}
.y5{bottom:150.026267pt;}
.y64{bottom:151.852933pt;}
.y2d{bottom:151.853067pt;}
.y63{bottom:170.519600pt;}
.y2c{bottom:170.519733pt;}
.y62{bottom:189.186267pt;}
.y3e{bottom:189.186400pt;}
.y61{bottom:207.852933pt;}
.y2b{bottom:207.853067pt;}
.y60{bottom:226.519600pt;}
.y3d{bottom:226.519733pt;}
.y5f{bottom:245.186267pt;}
.y69{bottom:245.186400pt;}
.y5e{bottom:263.852933pt;}
.y2a{bottom:263.853067pt;}
.y29{bottom:282.519733pt;}
.y5d{bottom:301.186267pt;}
.y28{bottom:301.186400pt;}
.y5c{bottom:319.852933pt;}
.y27{bottom:319.853067pt;}
.y5b{bottom:338.519600pt;}
.y26{bottom:338.519733pt;}
.y5a{bottom:357.186267pt;}
.y25{bottom:357.186400pt;}
.y3c{bottom:375.853067pt;}
.y59{bottom:394.519600pt;}
.y24{bottom:394.519733pt;}
.y58{bottom:413.186267pt;}
.y23{bottom:413.186400pt;}
.y22{bottom:431.853067pt;}
.y21{bottom:450.519733pt;}
.y57{bottom:469.186267pt;}
.y3b{bottom:469.186400pt;}
.y56{bottom:487.852933pt;}
.y20{bottom:487.853067pt;}
.y55{bottom:506.519600pt;}
.y1f{bottom:506.519733pt;}
.y54{bottom:525.186267pt;}
.y3a{bottom:525.186400pt;}
.y1e{bottom:543.853067pt;}
.y53{bottom:562.519600pt;}
.y1d{bottom:562.519733pt;}
.y52{bottom:581.186267pt;}
.y1c{bottom:581.186400pt;}
.y51{bottom:599.852933pt;}
.y1b{bottom:599.853067pt;}
.y50{bottom:618.519600pt;}
.y1a{bottom:618.519733pt;}
.y4f{bottom:637.186267pt;}
.y19{bottom:637.186400pt;}
.y4e{bottom:655.852933pt;}
.y18{bottom:655.853067pt;}
.y4d{bottom:674.519600pt;}
.y39{bottom:674.519733pt;}
.y6d{bottom:693.186267pt;}
.y17{bottom:693.186400pt;}
.y4c{bottom:711.852933pt;}
.y16{bottom:711.853067pt;}
.y4b{bottom:730.519600pt;}
.y15{bottom:730.519733pt;}
.y14{bottom:749.186400pt;}
.y4a{bottom:767.852933pt;}
.y13{bottom:767.853067pt;}
.y49{bottom:786.519600pt;}
.y12{bottom:786.519733pt;}
.y6c{bottom:805.186267pt;}
.y11{bottom:805.186400pt;}
.y10{bottom:823.853067pt;}
.y4{bottom:841.891333pt;}
.y48{bottom:842.519600pt;}
.yf{bottom:842.519733pt;}
.y47{bottom:861.186267pt;}
.y38{bottom:861.186400pt;}
.y46{bottom:879.852933pt;}
.ye{bottom:879.853067pt;}
.y3{bottom:886.342800pt;}
.y45{bottom:898.519600pt;}
.y37{bottom:898.519733pt;}
.y2{bottom:915.676133pt;}
.y44{bottom:917.186267pt;}
.y36{bottom:917.186400pt;}
.y43{bottom:935.852933pt;}
.y35{bottom:935.853067pt;}
.yd{bottom:946.519733pt;}
.y1{bottom:948.788933pt;}
.y42{bottom:954.519600pt;}
.y34{bottom:954.519733pt;}
.y6b{bottom:965.186400pt;}
.yc{bottom:973.186400pt;}
.y41{bottom:991.852933pt;}
.y33{bottom:991.853067pt;}
.h4{height:30.293333pt;}
.h2{height:34.080000pt;}
.hc{height:36.989333pt;}
.hb{height:37.506667pt;}
.h6{height:38.613333pt;}
.h5{height:39.808000pt;}
.h8{height:46.818667pt;}
.h9{height:47.594667pt;}
.ha{height:48.267200pt;}
.h7{height:59.712000pt;}
.h3{height:89.568000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xb{left:80.923867pt;}
.x6{left:90.708667pt;}
.x3{left:99.862400pt;}
.x4{left:113.385867pt;}
.x5{left:132.283467pt;}
.xc{left:279.312400pt;}
.xd{left:370.687600pt;}
.xf{left:691.468800pt;}
.x11{left:695.020533pt;}
.xe{left:695.948800pt;}
.x10{left:697.378000pt;}
.x8{left:699.088267pt;}
.xa{left:700.304400pt;}
.x9{left:702.437733pt;}
.x2{left:703.867067pt;}
.x7{left:705.029600pt;}
}




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