
    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_ce3f1e70590337fe9a8b388b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_1ace7727d94d32b9f55565d5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_af03d0892609ee2806640657.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_5d19c04878403f1e23c239a4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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;}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v3{vertical-align:-21.120000px;}
.v1{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.000000px;}
.v2{vertical-align:21.120000px;}
.ls7{letter-spacing:-1.032000px;}
.ls5{letter-spacing:-0.984000px;}
.ls4{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.312000px;}
.ls9{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.984000px;}
.lsd{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.320000px;}
.lsc{letter-spacing:2.016000px;}
.ls0{letter-spacing:166.806000px;}
.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:-29.988000px;}
.wsa{word-spacing:-22.032000px;}
.ws8{word-spacing:-21.216000px;}
.wsb{word-spacing:-21.024000px;}
.ws7{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.032000px;}
.ws6{word-spacing:-18.984000px;}
.ws3{word-spacing:-16.680000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-5.724000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._8{width:4.980000px;}
._e{width:6.144000px;}
._c{width:7.638000px;}
._d{width:8.934000px;}
._f{width:9.936000px;}
._a{width:12.000000px;}
._9{width:13.104000px;}
._16{width:14.322000px;}
._b{width:15.348000px;}
._15{width:16.542000px;}
._11{width:18.936000px;}
._1a{width:21.816000px;}
._12{width:24.846000px;}
._13{width:27.750000px;}
._14{width:28.806000px;}
._17{width:30.750000px;}
._18{width:31.818000px;}
._19{width:34.536000px;}
._1b{width:71.070000px;}
._6{width:487.374000px;}
._4{width:508.986000px;}
._7{width:1173.702000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y5c{bottom:93.825000px;}
.y30{bottom:102.075000px;}
.y7c{bottom:108.825000px;}
.y5b{bottom:114.075000px;}
.y2f{bottom:120.075000px;}
.yad{bottom:126.075000px;}
.y7b{bottom:129.075000px;}
.y99{bottom:130.575000px;}
.y5a{bottom:135.075000px;}
.y2e{bottom:137.325000px;}
.yac{bottom:146.362500px;}
.y7a{bottom:150.120000px;}
.y98{bottom:151.620000px;}
.y59{bottom:156.105000px;}
.y79{bottom:171.120000px;}
.y97{bottom:171.870000px;}
.y58{bottom:176.355000px;}
.yab{bottom:185.370000px;}
.y78{bottom:191.370000px;}
.y96{bottom:192.855000px;}
.y57{bottom:197.370000px;}
.yaa{bottom:206.400000px;}
.y77{bottom:212.400000px;}
.y95{bottom:213.150000px;}
.y56{bottom:217.650000px;}
.ya9{bottom:228.900000px;}
.y76{bottom:232.650000px;}
.y94{bottom:234.150000px;}
.y55{bottom:238.650000px;}
.ya8{bottom:249.900000px;}
.y75{bottom:253.650000px;}
.y93{bottom:255.150000px;}
.y54{bottom:259.650000px;}
.ya7{bottom:270.195000px;}
.y74{bottom:274.695000px;}
.y92{bottom:275.445000px;}
.y53{bottom:279.945000px;}
.ya6{bottom:291.195000px;}
.y73{bottom:294.945000px;}
.y91{bottom:296.445000px;}
.y52{bottom:300.945000px;}
.ya5{bottom:311.445000px;}
.y72{bottom:315.945000px;}
.y90{bottom:316.695000px;}
.y51{bottom:321.195000px;}
.y2d{bottom:332.475000px;}
.y71{bottom:336.225000px;}
.y8f{bottom:337.725000px;}
.y50{bottom:338.475000px;}
.y2c{bottom:353.475000px;}
.y70{bottom:357.225000px;}
.y8e{bottom:358.725000px;}
.y2b{bottom:373.725000px;}
.y6f{bottom:378.225000px;}
.y8d{bottom:378.975000px;}
.y2a{bottom:394.725000px;}
.y6e{bottom:399.255000px;}
.y8c{bottom:400.005000px;}
.y29{bottom:415.005000px;}
.y8b{bottom:420.255000px;}
.y6d{bottom:422.505000px;}
.y28{bottom:436.005000px;}
.y8a{bottom:441.255000px;}
.y6c{bottom:443.505000px;}
.y27{bottom:457.005000px;}
.y89{bottom:463.050000px;}
.y6b{bottom:464.550000px;}
.y26{bottom:477.300000px;}
.y6a{bottom:484.800000px;}
.y88{bottom:486.300000px;}
.y25{bottom:498.300000px;}
.y69{bottom:505.800000px;}
.y87{bottom:506.550000px;}
.y24{bottom:518.550000px;}
.y68{bottom:526.080000px;}
.y86{bottom:527.595000px;}
.y4f{bottom:535.845000px;}
.y23{bottom:539.580000px;}
.y67{bottom:547.095000px;}
.y85{bottom:548.595000px;}
.y4e{bottom:556.830000px;}
.y22{bottom:560.595000px;}
.y66{bottom:568.095000px;}
.y84{bottom:568.845000px;}
.y4d{bottom:577.845000px;}
.y21{bottom:580.845000px;}
.y65{bottom:588.345000px;}
.y83{bottom:589.875000px;}
.y4c{bottom:598.125000px;}
.y20{bottom:601.875000px;}
.y64{bottom:609.375000px;}
.y82{bottom:610.125000px;}
.y4b{bottom:619.125000px;}
.y1f{bottom:622.125000px;}
.y63{bottom:629.625000px;}
.y81{bottom:631.125000px;}
.y4a{bottom:639.375000px;}
.y1e{bottom:643.125000px;}
.y62{bottom:650.625000px;}
.y80{bottom:652.125000px;}
.y49{bottom:660.405000px;}
.y1d{bottom:664.155000px;}
.y61{bottom:671.670000px;}
.y7f{bottom:672.405000px;}
.y48{bottom:681.405000px;}
.y1c{bottom:684.405000px;}
.y60{bottom:691.920000px;}
.y7e{bottom:693.420000px;}
.y47{bottom:701.655000px;}
.y1b{bottom:705.420000px;}
.y7d{bottom:709.905000px;}
.y5f{bottom:712.905000px;}
.y46{bottom:722.700000px;}
.y1a{bottom:725.700000px;}
.y5e{bottom:733.200000px;}
.y45{bottom:742.950000px;}
.y19{bottom:746.700000px;}
.y5d{bottom:750.450000px;}
.y44{bottom:763.950000px;}
.y18{bottom:767.700000px;}
.y43{bottom:784.995000px;}
.y17{bottom:787.995000px;}
.y42{bottom:805.245000px;}
.y16{bottom:808.995000px;}
.y41{bottom:826.230000px;}
.ya4{bottom:829.245000px;}
.y15{bottom:830.745000px;}
.y40{bottom:846.495000px;}
.ya3{bottom:850.275000px;}
.y14{bottom:854.025000px;}
.y3f{bottom:867.525000px;}
.ya2{bottom:871.275000px;}
.y13{bottom:874.275000px;}
.y3e{bottom:888.525000px;}
.ya1{bottom:891.525000px;}
.y12{bottom:895.275000px;}
.y3d{bottom:908.775000px;}
.ya0{bottom:912.570000px;}
.y11{bottom:914.820000px;}
.y3c{bottom:929.820000px;}
.y10{bottom:932.820000px;}
.y3b{bottom:950.070000px;}
.yf{bottom:953.820000px;}
.y3a{bottom:971.070000px;}
.ye{bottom:974.820000px;}
.y39{bottom:992.100000px;}
.yd{bottom:995.100000px;}
.y38{bottom:1012.350000px;}
.yc{bottom:1016.100000px;}
.y37{bottom:1033.350000px;}
.yb{bottom:1036.350000px;}
.y36{bottom:1053.630000px;}
.y9f{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.y35{bottom:1074.630000px;}
.y9e{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.y34{bottom:1095.630000px;}
.y9d{bottom:1098.630000px;}
.y33{bottom:1115.925000px;}
.y9c{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y32{bottom:1136.925000px;}
.y9b{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y31{bottom:1158.675000px;}
.y9a{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h7{height:33.876323px;}
.h3{height:35.085938px;}
.h1{height:36.093750px;}
.hc{height:43.857422px;}
.h4{height:44.070184px;}
.h6{height:44.098032px;}
.h2{height:49.992188px;}
.ha{height:52.628906px;}
.hf{height:53.121094px;}
.hb{height:54.140625px;}
.he{height:56.205937px;}
.hd{height:63.164062px;}
.h5{height:66.396148px;}
.h8{height:78.943359px;}
.h9{height:81.210938px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x12{left:87.824987px;}
.x5{left:95.324987px;}
.x11{left:100.574987px;}
.x6{left:114.112487px;}
.x8{left:127.612487px;}
.xe{left:153.869987px;}
.x16{left:162.899987px;}
.x1a{left:165.149987px;}
.xa{left:176.399987px;}
.x1c{left:180.899987px;}
.xb{left:226.694987px;}
.x17{left:243.944987px;}
.x7{left:258.974987px;}
.x13{left:326.519987px;}
.x14{left:336.254987px;}
.x9{left:370.049987px;}
.xf{left:385.049987px;}
.x1b{left:389.594987px;}
.x18{left:397.094987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x4{left:446.624987px;}
.xd{left:685.319987px;}
.x19{left:706.319987px;}
.x10{left:755.099987px;}
.x15{left:807.674987px;}
@media print{
.v3{vertical-align:-18.773333pt;}
.v1{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.000000pt;}
.v2{vertical-align:18.773333pt;}
.ls7{letter-spacing:-0.917333pt;}
.ls5{letter-spacing:-0.874667pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.277333pt;}
.ls9{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.874667pt;}
.lsd{letter-spacing:0.896000pt;}
.lsa{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.792000pt;}
.ls0{letter-spacing:148.272000pt;}
.ws2{word-spacing:-26.656000pt;}
.wsa{word-spacing:-19.584000pt;}
.ws8{word-spacing:-18.858667pt;}
.wsb{word-spacing:-18.688000pt;}
.ws7{word-spacing:-18.666667pt;}
.ws9{word-spacing:-17.792000pt;}
.ws4{word-spacing:-16.917333pt;}
.ws6{word-spacing:-16.874667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-5.088000pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._8{width:4.426667pt;}
._e{width:5.461333pt;}
._c{width:6.789333pt;}
._d{width:7.941333pt;}
._f{width:8.832000pt;}
._a{width:10.666667pt;}
._9{width:11.648000pt;}
._16{width:12.730667pt;}
._b{width:13.642667pt;}
._15{width:14.704000pt;}
._11{width:16.832000pt;}
._1a{width:19.392000pt;}
._12{width:22.085333pt;}
._13{width:24.666667pt;}
._14{width:25.605333pt;}
._17{width:27.333333pt;}
._18{width:28.282667pt;}
._19{width:30.698667pt;}
._1b{width:63.173333pt;}
._6{width:433.221333pt;}
._4{width:452.432000pt;}
._7{width:1043.290667pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y5c{bottom:83.400000pt;}
.y30{bottom:90.733333pt;}
.y7c{bottom:96.733333pt;}
.y5b{bottom:101.400000pt;}
.y2f{bottom:106.733333pt;}
.yad{bottom:112.066667pt;}
.y7b{bottom:114.733333pt;}
.y99{bottom:116.066667pt;}
.y5a{bottom:120.066667pt;}
.y2e{bottom:122.066667pt;}
.yac{bottom:130.100000pt;}
.y7a{bottom:133.440000pt;}
.y98{bottom:134.773333pt;}
.y59{bottom:138.760000pt;}
.y79{bottom:152.106667pt;}
.y97{bottom:152.773333pt;}
.y58{bottom:156.760000pt;}
.yab{bottom:164.773333pt;}
.y78{bottom:170.106667pt;}
.y96{bottom:171.426667pt;}
.y57{bottom:175.440000pt;}
.yaa{bottom:183.466667pt;}
.y77{bottom:188.800000pt;}
.y95{bottom:189.466667pt;}
.y56{bottom:193.466667pt;}
.ya9{bottom:203.466667pt;}
.y76{bottom:206.800000pt;}
.y94{bottom:208.133333pt;}
.y55{bottom:212.133333pt;}
.ya8{bottom:222.133333pt;}
.y75{bottom:225.466667pt;}
.y93{bottom:226.800000pt;}
.y54{bottom:230.800000pt;}
.ya7{bottom:240.173333pt;}
.y74{bottom:244.173333pt;}
.y92{bottom:244.840000pt;}
.y53{bottom:248.840000pt;}
.ya6{bottom:258.840000pt;}
.y73{bottom:262.173333pt;}
.y91{bottom:263.506667pt;}
.y52{bottom:267.506667pt;}
.ya5{bottom:276.840000pt;}
.y72{bottom:280.840000pt;}
.y90{bottom:281.506667pt;}
.y51{bottom:285.506667pt;}
.y2d{bottom:295.533333pt;}
.y71{bottom:298.866667pt;}
.y8f{bottom:300.200000pt;}
.y50{bottom:300.866667pt;}
.y2c{bottom:314.200000pt;}
.y70{bottom:317.533333pt;}
.y8e{bottom:318.866667pt;}
.y2b{bottom:332.200000pt;}
.y6f{bottom:336.200000pt;}
.y8d{bottom:336.866667pt;}
.y2a{bottom:350.866667pt;}
.y6e{bottom:354.893333pt;}
.y8c{bottom:355.560000pt;}
.y29{bottom:368.893333pt;}
.y8b{bottom:373.560000pt;}
.y6d{bottom:375.560000pt;}
.y28{bottom:387.560000pt;}
.y8a{bottom:392.226667pt;}
.y6c{bottom:394.226667pt;}
.y27{bottom:406.226667pt;}
.y89{bottom:411.600000pt;}
.y6b{bottom:412.933333pt;}
.y26{bottom:424.266667pt;}
.y6a{bottom:430.933333pt;}
.y88{bottom:432.266667pt;}
.y25{bottom:442.933333pt;}
.y69{bottom:449.600000pt;}
.y87{bottom:450.266667pt;}
.y24{bottom:460.933333pt;}
.y68{bottom:467.626667pt;}
.y86{bottom:468.973333pt;}
.y4f{bottom:476.306667pt;}
.y23{bottom:479.626667pt;}
.y67{bottom:486.306667pt;}
.y85{bottom:487.640000pt;}
.y4e{bottom:494.960000pt;}
.y22{bottom:498.306667pt;}
.y66{bottom:504.973333pt;}
.y84{bottom:505.640000pt;}
.y4d{bottom:513.640000pt;}
.y21{bottom:516.306667pt;}
.y65{bottom:522.973333pt;}
.y83{bottom:524.333333pt;}
.y4c{bottom:531.666667pt;}
.y20{bottom:535.000000pt;}
.y64{bottom:541.666667pt;}
.y82{bottom:542.333333pt;}
.y4b{bottom:550.333333pt;}
.y1f{bottom:553.000000pt;}
.y63{bottom:559.666667pt;}
.y81{bottom:561.000000pt;}
.y4a{bottom:568.333333pt;}
.y1e{bottom:571.666667pt;}
.y62{bottom:578.333333pt;}
.y80{bottom:579.666667pt;}
.y49{bottom:587.026667pt;}
.y1d{bottom:590.360000pt;}
.y61{bottom:597.040000pt;}
.y7f{bottom:597.693333pt;}
.y48{bottom:605.693333pt;}
.y1c{bottom:608.360000pt;}
.y60{bottom:615.040000pt;}
.y7e{bottom:616.373333pt;}
.y47{bottom:623.693333pt;}
.y1b{bottom:627.040000pt;}
.y7d{bottom:631.026667pt;}
.y5f{bottom:633.693333pt;}
.y46{bottom:642.400000pt;}
.y1a{bottom:645.066667pt;}
.y5e{bottom:651.733333pt;}
.y45{bottom:660.400000pt;}
.y19{bottom:663.733333pt;}
.y5d{bottom:667.066667pt;}
.y44{bottom:679.066667pt;}
.y18{bottom:682.400000pt;}
.y43{bottom:697.773333pt;}
.y17{bottom:700.440000pt;}
.y42{bottom:715.773333pt;}
.y16{bottom:719.106667pt;}
.y41{bottom:734.426667pt;}
.ya4{bottom:737.106667pt;}
.y15{bottom:738.440000pt;}
.y40{bottom:752.440000pt;}
.ya3{bottom:755.800000pt;}
.y14{bottom:759.133333pt;}
.y3f{bottom:771.133333pt;}
.ya2{bottom:774.466667pt;}
.y13{bottom:777.133333pt;}
.y3e{bottom:789.800000pt;}
.ya1{bottom:792.466667pt;}
.y12{bottom:795.800000pt;}
.y3d{bottom:807.800000pt;}
.ya0{bottom:811.173333pt;}
.y11{bottom:813.173333pt;}
.y3c{bottom:826.506667pt;}
.y10{bottom:829.173333pt;}
.y3b{bottom:844.506667pt;}
.yf{bottom:847.840000pt;}
.y3a{bottom:863.173333pt;}
.ye{bottom:866.506667pt;}
.y39{bottom:881.866667pt;}
.yd{bottom:884.533333pt;}
.y38{bottom:899.866667pt;}
.yc{bottom:903.200000pt;}
.y37{bottom:918.533333pt;}
.yb{bottom:921.200000pt;}
.y36{bottom:936.560000pt;}
.y9f{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.y35{bottom:955.226667pt;}
.y9e{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.y34{bottom:973.893333pt;}
.y9d{bottom:976.560000pt;}
.y33{bottom:991.933333pt;}
.y9c{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y32{bottom:1010.600000pt;}
.y9b{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y31{bottom:1029.933333pt;}
.y9a{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h7{height:30.112287pt;}
.h3{height:31.187500pt;}
.h1{height:32.083333pt;}
.hc{height:38.984375pt;}
.h4{height:39.173497pt;}
.h6{height:39.198251pt;}
.h2{height:44.437500pt;}
.ha{height:46.781250pt;}
.hf{height:47.218750pt;}
.hb{height:48.125000pt;}
.he{height:49.960833pt;}
.hd{height:56.145833pt;}
.h5{height:59.018798pt;}
.h8{height:70.171875pt;}
.h9{height:72.187500pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x12{left:78.066655pt;}
.x5{left:84.733322pt;}
.x11{left:89.399988pt;}
.x6{left:101.433322pt;}
.x8{left:113.433322pt;}
.xe{left:136.773322pt;}
.x16{left:144.799988pt;}
.x1a{left:146.799988pt;}
.xa{left:156.799988pt;}
.x1c{left:160.799988pt;}
.xb{left:201.506655pt;}
.x17{left:216.839988pt;}
.x7{left:230.199988pt;}
.x13{left:290.239988pt;}
.x14{left:298.893322pt;}
.x9{left:328.933322pt;}
.xf{left:342.266655pt;}
.x1b{left:346.306655pt;}
.x18{left:352.973322pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x4{left:396.999988pt;}
.xd{left:609.173322pt;}
.x19{left:627.839988pt;}
.x10{left:671.199988pt;}
.x15{left:717.933322pt;}
}




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