
    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_24caa77202073321adb1fe27.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_99fd3987151777e98558157a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_61d8f6e6bb98791a98388d6b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_12b92173a32b6538eb1f7577.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3e1d868d82444811e9020b03.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c3ddad33ba474b7863cb5906.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_88188cd00164c5126f2c8b9e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_fd444528b13324fcb0097f02.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-99.000000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-5.628000px;}
.ls1e{letter-spacing:-2.466000px;}
.ls16{letter-spacing:-2.250000px;}
.lsf{letter-spacing:-1.524000px;}
.lsc{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.876000px;}
.lse{letter-spacing:-0.870000px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:1.128000px;}
.ls1a{letter-spacing:1.147500px;}
.ls11{letter-spacing:1.230000px;}
.ls7{letter-spacing:1.525500px;}
.ls6{letter-spacing:1.645500px;}
.ls12{letter-spacing:1.675500px;}
.ls13{letter-spacing:1.705500px;}
.ls19{letter-spacing:2.034000px;}
.ls18{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.250000px;}
.ls15{letter-spacing:2.430000px;}
.lsd{letter-spacing:3.378000px;}
.ls2{letter-spacing:3.555000px;}
.ls1d{letter-spacing:5.733000px;}
.ls8{letter-spacing:7.875000px;}
.ls14{letter-spacing:17.055000px;}
.ls0{letter-spacing:21.375000px;}
.ls3{letter-spacing:21.555000px;}
.ls4{letter-spacing:25.875000px;}
.ls5{letter-spacing:34.875000px;}
.ls17{letter-spacing:39.375000px;}
.ls1c{letter-spacing:46.203000px;}
.ls1b{letter-spacing:850.575000px;}
.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;}
}
.ws2{word-spacing:-21.375000px;}
.ws8{word-spacing:-21.159000px;}
.ws6{word-spacing:-20.355000px;}
.ws1{word-spacing:-19.125000px;}
.ws3{word-spacing:-18.255000px;}
.ws4{word-spacing:-17.601000px;}
.ws7{word-spacing:-16.875000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._2d{margin-left:-9.144300px;}
._3{margin-left:-7.879800px;}
._12{margin-left:-6.407700px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._a{width:5.565600px;}
._13{width:6.865800px;}
._9{width:8.209650px;}
._20{width:9.771150px;}
._b{width:11.372250px;}
._7{width:12.636000px;}
._c{width:13.990950px;}
._f{width:16.877100px;}
._23{width:17.937750px;}
._e{width:20.785050px;}
._8{width:21.927600px;}
._d{width:23.467650px;}
._11{width:25.465200px;}
._10{width:26.515950px;}
._1f{width:27.687300px;}
._16{width:29.611050px;}
._15{width:30.678450px;}
._1a{width:34.268400px;}
._14{width:36.065400px;}
._1c{width:39.144900px;}
._17{width:40.208850px;}
._1b{width:41.713350px;}
._2c{width:42.990150px;}
._21{width:44.432700px;}
._22{width:45.888750px;}
._19{width:47.618400px;}
._18{width:49.421700px;}
._2b{width:53.188350px;}
._2a{width:55.160550px;}
._24{width:56.754150px;}
._26{width:58.262700px;}
._25{width:59.444100px;}
._1d{width:62.445900px;}
._1e{width:71.903550px;}
._28{width:79.222050px;}
._27{width:80.764050px;}
._29{width:81.914400px;}
.fc2{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.875000px;}
.y42{bottom:7.890000px;}
.y5d{bottom:7.905000px;}
.y47{bottom:7.920000px;}
.y5{bottom:14.662500px;}
.y59{bottom:20.280000px;}
.y4d{bottom:21.375000px;}
.y40{bottom:21.390000px;}
.y60{bottom:21.405000px;}
.y49{bottom:21.420000px;}
.y3{bottom:32.662500px;}
.y55{bottom:33.750000px;}
.y4f{bottom:33.780000px;}
.y41{bottom:33.795000px;}
.y58{bottom:46.170000px;}
.y5c{bottom:46.200000px;}
.y4b{bottom:47.280000px;}
.y44{bottom:47.295000px;}
.y4e{bottom:59.655000px;}
.y53{bottom:59.670000px;}
.y46{bottom:59.700000px;}
.y4{bottom:61.912500px;}
.y5b{bottom:72.075000px;}
.y4c{bottom:73.155000px;}
.y48{bottom:73.200000px;}
.y45{bottom:85.575000px;}
.y5e{bottom:121.612500px;}
.y82{bottom:127.237500px;}
.y2d{bottom:130.612500px;}
.y3e{bottom:151.995000px;}
.y5a{bottom:153.120000px;}
.y2c{bottom:156.480000px;}
.y81{bottom:170.025000px;}
.y3d{bottom:176.775000px;}
.y2b{bottom:182.400000px;}
.y80{bottom:194.775000px;}
.y3c{bottom:202.695000px;}
.y2a{bottom:208.320000px;}
.y7f{bottom:220.695000px;}
.y3b{bottom:228.570000px;}
.y29{bottom:234.195000px;}
.y7e{bottom:246.600000px;}
.y3a{bottom:254.475000px;}
.y28{bottom:260.100000px;}
.y57{bottom:262.350000px;}
.y7d{bottom:272.475000px;}
.y39{bottom:280.350000px;}
.y27{bottom:286.005000px;}
.y7c{bottom:298.395000px;}
.y38{bottom:306.255000px;}
.y26{bottom:311.895000px;}
.y7b{bottom:324.300000px;}
.y37{bottom:332.175000px;}
.y25{bottom:336.675000px;}
.y56{bottom:345.675000px;}
.y7a{bottom:350.175000px;}
.y36{bottom:358.050000px;}
.y24{bottom:362.550000px;}
.y79{bottom:376.095000px;}
.y35{bottom:383.955000px;}
.y23{bottom:388.455000px;}
.y78{bottom:401.955000px;}
.y34{bottom:409.875000px;}
.y22{bottom:414.375000px;}
.y77{bottom:427.875000px;}
.y33{bottom:435.750000px;}
.y21{bottom:440.250000px;}
.y76{bottom:453.795000px;}
.y54{bottom:454.905000px;}
.y32{bottom:461.655000px;}
.y20{bottom:466.170000px;}
.y75{bottom:479.670000px;}
.y31{bottom:486.420000px;}
.y1f{bottom:492.075000px;}
.y30{bottom:512.325000px;}
.y1e{bottom:517.950000px;}
.y74{bottom:530.325000px;}
.y2f{bottom:538.230000px;}
.y1d{bottom:543.870000px;}
.y73{bottom:556.245000px;}
.y2e{bottom:564.120000px;}
.y1c{bottom:569.745000px;}
.y72{bottom:582.150000px;}
.y52{bottom:585.525000px;}
.y1b{bottom:595.650000px;}
.y71{bottom:608.025000px;}
.y1a{bottom:621.570000px;}
.y70{bottom:633.945000px;}
.y19{bottom:646.320000px;}
.y6f{bottom:659.850000px;}
.y51{bottom:668.850000px;}
.y18{bottom:672.225000px;}
.y6e{bottom:685.725000px;}
.y17{bottom:698.100000px;}
.y6d{bottom:711.630000px;}
.y16{bottom:724.005000px;}
.y6c{bottom:737.505000px;}
.y15{bottom:749.925000px;}
.y4a{bottom:752.175000px;}
.y6b{bottom:763.425000px;}
.y14{bottom:775.800000px;}
.y6a{bottom:789.330000px;}
.y13{bottom:801.705000px;}
.y69{bottom:815.205000px;}
.y12{bottom:827.625000px;}
.y68{bottom:841.125000px;}
.y11{bottom:853.500000px;}
.y43{bottom:861.375000px;}
.y67{bottom:865.875000px;}
.y10{bottom:879.420000px;}
.y66{bottom:891.795000px;}
.yf{bottom:905.295000px;}
.y65{bottom:917.700000px;}
.ye{bottom:931.200000px;}
.y64{bottom:943.575000px;}
.yd{bottom:957.120000px;}
.y63{bottom:969.495000px;}
.y3f{bottom:970.605000px;}
.yc{bottom:981.870000px;}
.y62{bottom:995.400000px;}
.yb{bottom:1007.775000px;}
.y61{bottom:1016.775000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y5f{bottom:1100.100000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h11{height:25.875000px;}
.h5{height:40.537500px;}
.hc{height:51.787500px;}
.hb{height:53.639648px;}
.hd{height:53.975830px;}
.h9{height:63.052734px;}
.h3{height:68.027344px;}
.h8{height:75.043213px;}
.ha{height:75.080566px;}
.h7{height:77.097656px;}
.h10{height:77.700000px;}
.h12{height:78.629945px;}
.h2{height:86.319141px;}
.h13{height:92.893799px;}
.h4{height:95.389453px;}
.hf{height:103.575000px;}
.he{height:103.612500px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w3{width:84.450000px;}
.w7{width:85.612500px;}
.wa{width:116.025000px;}
.w8{width:120.525000px;}
.w9{width:171.225000px;}
.w6{width:176.850000px;}
.w5{width:197.130000px;}
.w4{width:209.520000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.125000px;}
.x36{left:2.235000px;}
.x1e{left:3.375000px;}
.x13{left:4.500000px;}
.x34{left:5.625000px;}
.x3{left:6.750000px;}
.x1b{left:13.500000px;}
.x16{left:14.625000px;}
.x33{left:15.735000px;}
.x38{left:16.875000px;}
.x40{left:18.000000px;}
.x3b{left:20.250000px;}
.x19{left:21.390000px;}
.x21{left:22.500000px;}
.x28{left:23.610000px;}
.x1d{left:24.795000px;}
.x3a{left:25.905000px;}
.x22{left:27.030000px;}
.x15{left:28.170000px;}
.xe{left:29.295000px;}
.x26{left:30.420000px;}
.x12{left:31.530000px;}
.x3f{left:32.662500px;}
.x2a{left:33.795000px;}
.x2c{left:34.905000px;}
.x25{left:36.045000px;}
.x37{left:37.155000px;}
.x27{left:38.280000px;}
.x18{left:39.420000px;}
.x39{left:40.530000px;}
.x20{left:41.670000px;}
.x2f{left:42.780000px;}
.x17{left:43.920000px;}
.x24{left:45.045000px;}
.x23{left:46.170000px;}
.x14{left:47.280000px;}
.x10{left:49.545000px;}
.x1a{left:50.655000px;}
.x2e{left:51.825000px;}
.x35{left:52.950000px;}
.x11{left:54.045000px;}
.x1c{left:55.200000px;}
.x29{left:57.450000px;}
.x31{left:58.560000px;}
.x3c{left:60.825000px;}
.x1f{left:63.075000px;}
.x3d{left:64.200000px;}
.x3e{left:70.950000px;}
.xc{left:88.980000px;}
.x9{left:107.025000px;}
.x1{left:108.149987px;}
.x8{left:129.524987px;}
.x4{left:132.937487px;}
.xb{left:196.020000px;}
.x2b{left:197.145000px;}
.x7{left:238.799987px;}
.x2d{left:321.045000px;}
.x6{left:323.279987px;}
.xd{left:410.025000px;}
.x5{left:457.319987px;}
.x30{left:495.645000px;}
.xf{left:610.530000px;}
.x32{left:671.370000px;}
.x2{left:802.005000px;}
@media print{
.v1{vertical-align:-88.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-5.002667pt;}
.ls1e{letter-spacing:-2.192000pt;}
.ls16{letter-spacing:-2.000000pt;}
.lsf{letter-spacing:-1.354667pt;}
.lsc{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.778667pt;}
.lse{letter-spacing:-0.773333pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:1.002667pt;}
.ls1a{letter-spacing:1.020000pt;}
.ls11{letter-spacing:1.093333pt;}
.ls7{letter-spacing:1.356000pt;}
.ls6{letter-spacing:1.462667pt;}
.ls12{letter-spacing:1.489333pt;}
.ls13{letter-spacing:1.516000pt;}
.ls19{letter-spacing:1.808000pt;}
.ls18{letter-spacing:1.904000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls15{letter-spacing:2.160000pt;}
.lsd{letter-spacing:3.002667pt;}
.ls2{letter-spacing:3.160000pt;}
.ls1d{letter-spacing:5.096000pt;}
.ls8{letter-spacing:7.000000pt;}
.ls14{letter-spacing:15.160000pt;}
.ls0{letter-spacing:19.000000pt;}
.ls3{letter-spacing:19.160000pt;}
.ls4{letter-spacing:23.000000pt;}
.ls5{letter-spacing:31.000000pt;}
.ls17{letter-spacing:35.000000pt;}
.ls1c{letter-spacing:41.069333pt;}
.ls1b{letter-spacing:756.066667pt;}
.ws2{word-spacing:-19.000000pt;}
.ws8{word-spacing:-18.808000pt;}
.ws6{word-spacing:-18.093333pt;}
.ws1{word-spacing:-17.000000pt;}
.ws3{word-spacing:-16.226667pt;}
.ws4{word-spacing:-15.645333pt;}
.ws7{word-spacing:-15.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._2d{margin-left:-8.128267pt;}
._3{margin-left:-7.004267pt;}
._12{margin-left:-5.695733pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._a{width:4.947200pt;}
._13{width:6.102933pt;}
._9{width:7.297467pt;}
._20{width:8.685467pt;}
._b{width:10.108667pt;}
._7{width:11.232000pt;}
._c{width:12.436400pt;}
._f{width:15.001867pt;}
._23{width:15.944667pt;}
._e{width:18.475600pt;}
._8{width:19.491200pt;}
._d{width:20.860133pt;}
._11{width:22.635733pt;}
._10{width:23.569733pt;}
._1f{width:24.610933pt;}
._16{width:26.320933pt;}
._15{width:27.269733pt;}
._1a{width:30.460800pt;}
._14{width:32.058133pt;}
._1c{width:34.795467pt;}
._17{width:35.741200pt;}
._1b{width:37.078533pt;}
._2c{width:38.213467pt;}
._21{width:39.495733pt;}
._22{width:40.790000pt;}
._19{width:42.327467pt;}
._18{width:43.930400pt;}
._2b{width:47.278533pt;}
._2a{width:49.031600pt;}
._24{width:50.448133pt;}
._26{width:51.789067pt;}
._25{width:52.839200pt;}
._1d{width:55.507467pt;}
._1e{width:63.914267pt;}
._28{width:70.419600pt;}
._27{width:71.790267pt;}
._29{width:72.812800pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:7.000000pt;}
.y42{bottom:7.013333pt;}
.y5d{bottom:7.026667pt;}
.y47{bottom:7.040000pt;}
.y5{bottom:13.033333pt;}
.y59{bottom:18.026667pt;}
.y4d{bottom:19.000000pt;}
.y40{bottom:19.013333pt;}
.y60{bottom:19.026667pt;}
.y49{bottom:19.040000pt;}
.y3{bottom:29.033333pt;}
.y55{bottom:30.000000pt;}
.y4f{bottom:30.026667pt;}
.y41{bottom:30.040000pt;}
.y58{bottom:41.040000pt;}
.y5c{bottom:41.066667pt;}
.y4b{bottom:42.026667pt;}
.y44{bottom:42.040000pt;}
.y4e{bottom:53.026667pt;}
.y53{bottom:53.040000pt;}
.y46{bottom:53.066667pt;}
.y4{bottom:55.033333pt;}
.y5b{bottom:64.066667pt;}
.y4c{bottom:65.026667pt;}
.y48{bottom:65.066667pt;}
.y45{bottom:76.066667pt;}
.y5e{bottom:108.100000pt;}
.y82{bottom:113.100000pt;}
.y2d{bottom:116.100000pt;}
.y3e{bottom:135.106667pt;}
.y5a{bottom:136.106667pt;}
.y2c{bottom:139.093333pt;}
.y81{bottom:151.133333pt;}
.y3d{bottom:157.133333pt;}
.y2b{bottom:162.133333pt;}
.y80{bottom:173.133333pt;}
.y3c{bottom:180.173333pt;}
.y2a{bottom:185.173333pt;}
.y7f{bottom:196.173333pt;}
.y3b{bottom:203.173333pt;}
.y29{bottom:208.173333pt;}
.y7e{bottom:219.200000pt;}
.y3a{bottom:226.200000pt;}
.y28{bottom:231.200000pt;}
.y57{bottom:233.200000pt;}
.y7d{bottom:242.200000pt;}
.y39{bottom:249.200000pt;}
.y27{bottom:254.226667pt;}
.y7c{bottom:265.240000pt;}
.y38{bottom:272.226667pt;}
.y26{bottom:277.240000pt;}
.y7b{bottom:288.266667pt;}
.y37{bottom:295.266667pt;}
.y25{bottom:299.266667pt;}
.y56{bottom:307.266667pt;}
.y7a{bottom:311.266667pt;}
.y36{bottom:318.266667pt;}
.y24{bottom:322.266667pt;}
.y79{bottom:334.306667pt;}
.y35{bottom:341.293333pt;}
.y23{bottom:345.293333pt;}
.y78{bottom:357.293333pt;}
.y34{bottom:364.333333pt;}
.y22{bottom:368.333333pt;}
.y77{bottom:380.333333pt;}
.y33{bottom:387.333333pt;}
.y21{bottom:391.333333pt;}
.y76{bottom:403.373333pt;}
.y54{bottom:404.360000pt;}
.y32{bottom:410.360000pt;}
.y20{bottom:414.373333pt;}
.y75{bottom:426.373333pt;}
.y31{bottom:432.373333pt;}
.y1f{bottom:437.400000pt;}
.y30{bottom:455.400000pt;}
.y1e{bottom:460.400000pt;}
.y74{bottom:471.400000pt;}
.y2f{bottom:478.426667pt;}
.y1d{bottom:483.440000pt;}
.y73{bottom:494.440000pt;}
.y2e{bottom:501.440000pt;}
.y1c{bottom:506.440000pt;}
.y72{bottom:517.466667pt;}
.y52{bottom:520.466667pt;}
.y1b{bottom:529.466667pt;}
.y71{bottom:540.466667pt;}
.y1a{bottom:552.506667pt;}
.y70{bottom:563.506667pt;}
.y19{bottom:574.506667pt;}
.y6f{bottom:586.533333pt;}
.y51{bottom:594.533333pt;}
.y18{bottom:597.533333pt;}
.y6e{bottom:609.533333pt;}
.y17{bottom:620.533333pt;}
.y6d{bottom:632.560000pt;}
.y16{bottom:643.560000pt;}
.y6c{bottom:655.560000pt;}
.y15{bottom:666.600000pt;}
.y4a{bottom:668.600000pt;}
.y6b{bottom:678.600000pt;}
.y14{bottom:689.600000pt;}
.y6a{bottom:701.626667pt;}
.y13{bottom:712.626667pt;}
.y69{bottom:724.626667pt;}
.y12{bottom:735.666667pt;}
.y68{bottom:747.666667pt;}
.y11{bottom:758.666667pt;}
.y43{bottom:765.666667pt;}
.y67{bottom:769.666667pt;}
.y10{bottom:781.706667pt;}
.y66{bottom:792.706667pt;}
.yf{bottom:804.706667pt;}
.y65{bottom:815.733333pt;}
.ye{bottom:827.733333pt;}
.y64{bottom:838.733333pt;}
.yd{bottom:850.773333pt;}
.y63{bottom:861.773333pt;}
.y3f{bottom:862.760000pt;}
.yc{bottom:872.773333pt;}
.y62{bottom:884.800000pt;}
.yb{bottom:895.800000pt;}
.y61{bottom:903.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y5f{bottom:977.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h11{height:23.000000pt;}
.h5{height:36.033333pt;}
.hc{height:46.033333pt;}
.hb{height:47.679688pt;}
.hd{height:47.978516pt;}
.h9{height:56.046875pt;}
.h3{height:60.468750pt;}
.h8{height:66.705078pt;}
.ha{height:66.738281pt;}
.h7{height:68.531250pt;}
.h10{height:69.066667pt;}
.h12{height:69.893285pt;}
.h2{height:76.728125pt;}
.h13{height:82.572266pt;}
.h4{height:84.790625pt;}
.hf{height:92.066667pt;}
.he{height:92.100000pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w3{width:75.066667pt;}
.w7{width:76.100000pt;}
.wa{width:103.133333pt;}
.w8{width:107.133333pt;}
.w9{width:152.200000pt;}
.w6{width:157.200000pt;}
.w5{width:175.226667pt;}
.w4{width:186.240000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.000000pt;}
.x36{left:1.986667pt;}
.x1e{left:3.000000pt;}
.x13{left:4.000000pt;}
.x34{left:5.000000pt;}
.x3{left:6.000000pt;}
.x1b{left:12.000000pt;}
.x16{left:13.000000pt;}
.x33{left:13.986667pt;}
.x38{left:15.000000pt;}
.x40{left:16.000000pt;}
.x3b{left:18.000000pt;}
.x19{left:19.013333pt;}
.x21{left:20.000000pt;}
.x28{left:20.986667pt;}
.x1d{left:22.040000pt;}
.x3a{left:23.026667pt;}
.x22{left:24.026667pt;}
.x15{left:25.040000pt;}
.xe{left:26.040000pt;}
.x26{left:27.040000pt;}
.x12{left:28.026667pt;}
.x3f{left:29.033333pt;}
.x2a{left:30.040000pt;}
.x2c{left:31.026667pt;}
.x25{left:32.040000pt;}
.x37{left:33.026667pt;}
.x27{left:34.026667pt;}
.x18{left:35.040000pt;}
.x39{left:36.026667pt;}
.x20{left:37.040000pt;}
.x2f{left:38.026667pt;}
.x17{left:39.040000pt;}
.x24{left:40.040000pt;}
.x23{left:41.040000pt;}
.x14{left:42.026667pt;}
.x10{left:44.040000pt;}
.x1a{left:45.026667pt;}
.x2e{left:46.066667pt;}
.x35{left:47.066667pt;}
.x11{left:48.040000pt;}
.x1c{left:49.066667pt;}
.x29{left:51.066667pt;}
.x31{left:52.053333pt;}
.x3c{left:54.066667pt;}
.x1f{left:56.066667pt;}
.x3d{left:57.066667pt;}
.x3e{left:63.066667pt;}
.xc{left:79.093333pt;}
.x9{left:95.133333pt;}
.x1{left:96.133322pt;}
.x8{left:115.133322pt;}
.x4{left:118.166655pt;}
.xb{left:174.240000pt;}
.x2b{left:175.240000pt;}
.x7{left:212.266655pt;}
.x2d{left:285.373333pt;}
.x6{left:287.359988pt;}
.xd{left:364.466667pt;}
.x5{left:406.506655pt;}
.x30{left:440.573333pt;}
.xf{left:542.693333pt;}
.x32{left:596.773333pt;}
.x2{left:712.893333pt;}
}




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