
    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_6843b3510be107ac8ed01f53.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_7699585bd347e25ac73aed65.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_cd640be8fd0b31568637e272.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_141de9fb81ccf422af2b4115.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_f973c883c4398fae77df1747.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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_eb797a55aa048715b4f2e7d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_3c00aa114eaa4522f3117f65.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:4.320000px;}
.lsb{letter-spacing:91.386720px;}
.ls9{letter-spacing:91.530720px;}
.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:-23.940000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.680200px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-2957.694480px;}
._c{margin-left:-2250.464880px;}
._3{margin-left:-1493.064000px;}
._6{margin-left:-1082.160000px;}
._7{margin-left:-629.064000px;}
._4{margin-left:-9.504000px;}
._11{margin-left:-6.990480px;}
._13{margin-left:-5.967120px;}
._16{margin-left:-4.347600px;}
._5{margin-left:-3.312000px;}
._d{margin-left:-2.213760px;}
._1{margin-left:-1.053360px;}
._0{width:1.244880px;}
._a{width:2.664000px;}
._8{width:4.032000px;}
._9{width:5.256000px;}
._17{width:6.498240px;}
._b{width:7.500000px;}
._22{width:8.526960px;}
._15{width:9.594000px;}
._24{width:10.697040px;}
._29{width:11.712960px;}
._2a{width:13.578240px;}
._14{width:14.705280px;}
._19{width:15.962880px;}
._18{width:16.971840px;}
._1d{width:18.166320px;}
._26{width:19.551600px;}
._25{width:20.736720px;}
._1e{width:22.230720px;}
._21{width:23.904000px;}
._2f{width:25.696800px;}
._2e{width:27.131040px;}
._33{width:28.157040px;}
._20{width:29.353920px;}
._1f{width:30.745680px;}
._f{width:31.880640px;}
._10{width:33.391920px;}
._e{width:34.434000px;}
._12{width:36.237600px;}
._23{width:38.123280px;}
._1b{width:39.332160px;}
._1c{width:40.736160px;}
._34{width:42.071040px;}
._27{width:43.515360px;}
._28{width:44.750160px;}
._2b{width:46.563120px;}
._2c{width:47.797920px;}
._30{width:49.242240px;}
._3c{width:51.393600px;}
._45{width:55.995120px;}
._32{width:66.692160px;}
._31{width:67.947120px;}
._37{width:71.318880px;}
._3f{width:74.221920px;}
._46{width:76.901040px;}
._40{width:78.056640px;}
._2d{width:79.072560px;}
._3a{width:83.962800px;}
._43{width:96.034320px;}
._36{width:98.136000px;}
._35{width:99.141840px;}
._3b{width:116.317440px;}
._42{width:129.260880px;}
._41{width:130.456080px;}
._3e{width:133.827840px;}
._3d{width:134.982960px;}
._38{width:192.975120px;}
._39{width:195.201360px;}
._44{width:517.292640px;}
._47{width:688.385520px;}
._1a{width:2559.660000px;}
.fc5{color:rgb(51,58,63);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y30{bottom:2.520000px;}
.y17{bottom:2.730000px;}
.y2e{bottom:5.040000px;}
.y2f{bottom:25.560000px;}
.y16{bottom:25.770000px;}
.y2d{bottom:26.820000px;}
.y15{bottom:42.330000px;}
.y2c{bottom:45.540000px;}
.y6{bottom:56.520000px;}
.y2b{bottom:65.340000px;}
.y7b{bottom:78.300000px;}
.y60{bottom:82.980000px;}
.y2a{bottom:85.140000px;}
.y8c{bottom:85.500000px;}
.y34{bottom:94.860000px;}
.ya9{bottom:96.660000px;}
.y7a{bottom:98.100000px;}
.y5f{bottom:102.960000px;}
.y29{bottom:104.940000px;}
.y8b{bottom:105.300000px;}
.y79{bottom:114.660000px;}
.y33{bottom:114.840000px;}
.ya8{bottom:116.640000px;}
.y5e{bottom:122.760000px;}
.y28{bottom:124.740000px;}
.y8a{bottom:125.100000px;}
.y32{bottom:134.640000px;}
.ya7{bottom:136.440000px;}
.y5d{bottom:142.560000px;}
.y27{bottom:144.720000px;}
.y89{bottom:144.936000px;}
.y31{bottom:154.470000px;}
.ya6{bottom:156.270000px;}
.y5c{bottom:162.390000px;}
.y26{bottom:164.520000px;}
.y88{bottom:164.910000px;}
.y18{bottom:168.510000px;}
.ya5{bottom:176.070000px;}
.y5b{bottom:182.190000px;}
.y25{bottom:184.320000px;}
.y87{bottom:184.710000px;}
.ya4{bottom:195.870000px;}
.y5a{bottom:202.170000px;}
.y24{bottom:204.120000px;}
.y86{bottom:204.510000px;}
.ya3{bottom:215.850000px;}
.y59{bottom:221.970000px;}
.y23{bottom:223.965000px;}
.y85{bottom:224.310000px;}
.ya2{bottom:235.650000px;}
.y58{bottom:241.770000px;}
.y22{bottom:243.945000px;}
.y84{bottom:244.110000px;}
.ya1{bottom:255.450000px;}
.y57{bottom:261.570000px;}
.y21{bottom:263.745000px;}
.y83{bottom:264.090000px;}
.ya0{bottom:275.250000px;}
.y56{bottom:281.370000px;}
.y20{bottom:283.545000px;}
.y82{bottom:283.890000px;}
.y9f{bottom:295.050000px;}
.y81{bottom:300.450000px;}
.y55{bottom:301.350000px;}
.y1f{bottom:303.345000px;}
.y9e{bottom:315.030000px;}
.y54{bottom:321.150000px;}
.y1e{bottom:323.145000px;}
.y9d{bottom:334.830000px;}
.y53{bottom:340.950000px;}
.y1d{bottom:343.125000px;}
.y9c{bottom:354.630000px;}
.y78{bottom:357.870000px;}
.y52{bottom:360.750000px;}
.y1c{bottom:362.925000px;}
.y77{bottom:374.430000px;}
.y51{bottom:380.595000px;}
.y1b{bottom:382.725000px;}
.y9b{bottom:394.275000px;}
.y50{bottom:400.575000px;}
.y1a{bottom:402.525000px;}
.y9a{bottom:414.255000px;}
.y4f{bottom:420.375000px;}
.y19{bottom:422.325000px;}
.y99{bottom:434.055000px;}
.y4e{bottom:440.175000px;}
.y98{bottom:453.855000px;}
.y4d{bottom:459.975000px;}
.y97{bottom:473.655000px;}
.y4c{bottom:479.775000px;}
.y96{bottom:493.455000px;}
.y4b{bottom:499.755000px;}
.y95{bottom:513.435000px;}
.y4a{bottom:519.555000px;}
.y94{bottom:533.235000px;}
.y80{bottom:535.755000px;}
.y49{bottom:539.355000px;}
.y93{bottom:553.035000px;}
.y7f{bottom:555.735000px;}
.y48{bottom:559.155000px;}
.y7e{bottom:572.295000px;}
.y92{bottom:572.835000px;}
.y47{bottom:578.955000px;}
.y91{bottom:592.635000px;}
.y46{bottom:598.935000px;}
.y14{bottom:604.875000px;}
.y90{bottom:612.645000px;}
.y45{bottom:618.765000px;}
.y8f{bottom:632.445000px;}
.y44{bottom:638.565000px;}
.y8e{bottom:652.245000px;}
.y43{bottom:658.365000px;}
.y13{bottom:670.245000px;}
.y8d{bottom:672.045000px;}
.y42{bottom:678.165000px;}
.y76{bottom:691.845000px;}
.y12{bottom:695.265000px;}
.y41{bottom:698.145000px;}
.y75{bottom:711.825000px;}
.y11{bottom:715.245000px;}
.y40{bottom:717.945000px;}
.y74{bottom:731.625000px;}
.y10{bottom:735.045000px;}
.y3f{bottom:737.745000px;}
.y73{bottom:751.425000px;}
.yf{bottom:754.845000px;}
.y3e{bottom:757.545000px;}
.y7d{bottom:768.165000px;}
.ye{bottom:769.425000px;}
.y72{bottom:771.225000px;}
.y3d{bottom:777.345000px;}
.y7c{bottom:784.725000px;}
.y71{bottom:791.025000px;}
.yd{bottom:794.445000px;}
.y3c{bottom:797.325000px;}
.y70{bottom:811.005000px;}
.yc{bottom:814.425000px;}
.y3b{bottom:817.125000px;}
.yb{bottom:829.545000px;}
.y6f{bottom:830.805000px;}
.y3a{bottom:836.925000px;}
.y6e{bottom:850.650000px;}
.ya{bottom:851.370000px;}
.y39{bottom:856.770000px;}
.y6d{bottom:870.450000px;}
.y9{bottom:872.610000px;}
.y38{bottom:876.570000px;}
.y6c{bottom:890.250000px;}
.y8{bottom:896.190000px;}
.y37{bottom:896.370000px;}
.y6b{bottom:910.230000px;}
.y36{bottom:916.350000px;}
.y7{bottom:927.870000px;}
.y6a{bottom:930.030000px;}
.y35{bottom:936.150000px;}
.y69{bottom:949.830000px;}
.y68{bottom:969.630000px;}
.y5{bottom:969.990000px;}
.y67{bottom:989.430000px;}
.y4{bottom:1002.750000px;}
.y66{bottom:1009.410000px;}
.y65{bottom:1029.210000px;}
.y3{bottom:1035.510000px;}
.y64{bottom:1049.010000px;}
.y2{bottom:1068.450000px;}
.y63{bottom:1068.810000px;}
.y62{bottom:1088.640000px;}
.y1{bottom:1103.580000px;}
.y61{bottom:1119.240000px;}
.h6{height:34.855313px;}
.ha{height:41.493516px;}
.h4{height:53.077852px;}
.h7{height:53.573906px;}
.h3{height:58.833281px;}
.h8{height:59.616000px;}
.h5{height:60.850547px;}
.h2{height:64.546875px;}
.hb{height:67.824844px;}
.h1{height:85.052461px;}
.h9{height:436.350000px;}
.h0{height:1188.000000px;}
.w4{width:193.170000px;}
.w3{width:194.250000px;}
.w2{width:599.190000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x23{left:29.699986px;}
.x22{left:34.739986px;}
.x21{left:39.779986px;}
.x24{left:44.819986px;}
.x1b{left:51.479986px;}
.x1{left:54.179986px;}
.x1a{left:56.339986px;}
.x9{left:59.219986px;}
.x19{left:62.279986px;}
.x15{left:65.339986px;}
.x18{left:67.319986px;}
.x16{left:72.179986px;}
.xb{left:86.615986px;}
.x14{left:94.535986px;}
.x17{left:108.035986px;}
.x13{left:141.155986px;}
.x6{left:185.070000px;}
.x5{left:186.150000px;}
.x11{left:223.949986px;}
.xf{left:270.074986px;}
.xc{left:311.834986px;}
.xd{left:459.104986px;}
.x20{left:472.244986px;}
.x1f{left:477.104986px;}
.x1d{left:482.144986px;}
.x7{left:485.564986px;}
.x1e{left:487.184986px;}
.x1c{left:539.564986px;}
.x10{left:558.644986px;}
.xe{left:567.644986px;}
.x12{left:582.584986px;}
.x8{left:586.364986px;}
.x2{left:591.090000px;}
.xa{left:605.489986px;}
.x4{left:653.190000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:3.840000pt;}
.lsb{letter-spacing:81.232640pt;}
.ls9{letter-spacing:81.360640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.049067pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-2629.061760pt;}
._c{margin-left:-2000.413227pt;}
._3{margin-left:-1327.168000pt;}
._6{margin-left:-961.920000pt;}
._7{margin-left:-559.168000pt;}
._4{margin-left:-8.448000pt;}
._11{margin-left:-6.213760pt;}
._13{margin-left:-5.304107pt;}
._16{margin-left:-3.864533pt;}
._5{margin-left:-2.944000pt;}
._d{margin-left:-1.967787pt;}
._1{margin-left:-0.936320pt;}
._0{width:1.106560pt;}
._a{width:2.368000pt;}
._8{width:3.584000pt;}
._9{width:4.672000pt;}
._17{width:5.776213pt;}
._b{width:6.666667pt;}
._22{width:7.579520pt;}
._15{width:8.528000pt;}
._24{width:9.508480pt;}
._29{width:10.411520pt;}
._2a{width:12.069547pt;}
._14{width:13.071360pt;}
._19{width:14.189227pt;}
._18{width:15.086080pt;}
._1d{width:16.147840pt;}
._26{width:17.379200pt;}
._25{width:18.432640pt;}
._1e{width:19.760640pt;}
._21{width:21.248000pt;}
._2f{width:22.841600pt;}
._2e{width:24.116480pt;}
._33{width:25.028480pt;}
._20{width:26.092373pt;}
._1f{width:27.329493pt;}
._f{width:28.338347pt;}
._10{width:29.681707pt;}
._e{width:30.608000pt;}
._12{width:32.211200pt;}
._23{width:33.887360pt;}
._1b{width:34.961920pt;}
._1c{width:36.209920pt;}
._34{width:37.396480pt;}
._27{width:38.680320pt;}
._28{width:39.777920pt;}
._2b{width:41.389440pt;}
._2c{width:42.487040pt;}
._30{width:43.770880pt;}
._3c{width:45.683200pt;}
._45{width:49.773440pt;}
._32{width:59.281920pt;}
._31{width:60.397440pt;}
._37{width:63.394560pt;}
._3f{width:65.975040pt;}
._46{width:68.356480pt;}
._40{width:69.383680pt;}
._2d{width:70.286720pt;}
._3a{width:74.633600pt;}
._43{width:85.363840pt;}
._36{width:87.232000pt;}
._35{width:88.126080pt;}
._3b{width:103.393280pt;}
._42{width:114.898560pt;}
._41{width:115.960960pt;}
._3e{width:118.958080pt;}
._3d{width:119.984853pt;}
._38{width:171.533440pt;}
._39{width:173.512320pt;}
._44{width:459.815680pt;}
._47{width:611.898240pt;}
._1a{width:2275.253333pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.240000pt;}
.y17{bottom:2.426667pt;}
.y2e{bottom:4.480000pt;}
.y2f{bottom:22.720000pt;}
.y16{bottom:22.906667pt;}
.y2d{bottom:23.840000pt;}
.y15{bottom:37.626667pt;}
.y2c{bottom:40.480000pt;}
.y6{bottom:50.240000pt;}
.y2b{bottom:58.080000pt;}
.y7b{bottom:69.600000pt;}
.y60{bottom:73.760000pt;}
.y2a{bottom:75.680000pt;}
.y8c{bottom:76.000000pt;}
.y34{bottom:84.320000pt;}
.ya9{bottom:85.920000pt;}
.y7a{bottom:87.200000pt;}
.y5f{bottom:91.520000pt;}
.y29{bottom:93.280000pt;}
.y8b{bottom:93.600000pt;}
.y79{bottom:101.920000pt;}
.y33{bottom:102.080000pt;}
.ya8{bottom:103.680000pt;}
.y5e{bottom:109.120000pt;}
.y28{bottom:110.880000pt;}
.y8a{bottom:111.200000pt;}
.y32{bottom:119.680000pt;}
.ya7{bottom:121.280000pt;}
.y5d{bottom:126.720000pt;}
.y27{bottom:128.640000pt;}
.y89{bottom:128.832000pt;}
.y31{bottom:137.306667pt;}
.ya6{bottom:138.906667pt;}
.y5c{bottom:144.346667pt;}
.y26{bottom:146.240000pt;}
.y88{bottom:146.586667pt;}
.y18{bottom:149.786667pt;}
.ya5{bottom:156.506667pt;}
.y5b{bottom:161.946667pt;}
.y25{bottom:163.840000pt;}
.y87{bottom:164.186667pt;}
.ya4{bottom:174.106667pt;}
.y5a{bottom:179.706667pt;}
.y24{bottom:181.440000pt;}
.y86{bottom:181.786667pt;}
.ya3{bottom:191.866667pt;}
.y59{bottom:197.306667pt;}
.y23{bottom:199.080000pt;}
.y85{bottom:199.386667pt;}
.ya2{bottom:209.466667pt;}
.y58{bottom:214.906667pt;}
.y22{bottom:216.840000pt;}
.y84{bottom:216.986667pt;}
.ya1{bottom:227.066667pt;}
.y57{bottom:232.506667pt;}
.y21{bottom:234.440000pt;}
.y83{bottom:234.746667pt;}
.ya0{bottom:244.666667pt;}
.y56{bottom:250.106667pt;}
.y20{bottom:252.040000pt;}
.y82{bottom:252.346667pt;}
.y9f{bottom:262.266667pt;}
.y81{bottom:267.066667pt;}
.y55{bottom:267.866667pt;}
.y1f{bottom:269.640000pt;}
.y9e{bottom:280.026667pt;}
.y54{bottom:285.466667pt;}
.y1e{bottom:287.240000pt;}
.y9d{bottom:297.626667pt;}
.y53{bottom:303.066667pt;}
.y1d{bottom:305.000000pt;}
.y9c{bottom:315.226667pt;}
.y78{bottom:318.106667pt;}
.y52{bottom:320.666667pt;}
.y1c{bottom:322.600000pt;}
.y77{bottom:332.826667pt;}
.y51{bottom:338.306667pt;}
.y1b{bottom:340.200000pt;}
.y9b{bottom:350.466667pt;}
.y50{bottom:356.066667pt;}
.y1a{bottom:357.800000pt;}
.y9a{bottom:368.226667pt;}
.y4f{bottom:373.666667pt;}
.y19{bottom:375.400000pt;}
.y99{bottom:385.826667pt;}
.y4e{bottom:391.266667pt;}
.y98{bottom:403.426667pt;}
.y4d{bottom:408.866667pt;}
.y97{bottom:421.026667pt;}
.y4c{bottom:426.466667pt;}
.y96{bottom:438.626667pt;}
.y4b{bottom:444.226667pt;}
.y95{bottom:456.386667pt;}
.y4a{bottom:461.826667pt;}
.y94{bottom:473.986667pt;}
.y80{bottom:476.226667pt;}
.y49{bottom:479.426667pt;}
.y93{bottom:491.586667pt;}
.y7f{bottom:493.986667pt;}
.y48{bottom:497.026667pt;}
.y7e{bottom:508.706667pt;}
.y92{bottom:509.186667pt;}
.y47{bottom:514.626667pt;}
.y91{bottom:526.786667pt;}
.y46{bottom:532.386667pt;}
.y14{bottom:537.666667pt;}
.y90{bottom:544.573333pt;}
.y45{bottom:550.013333pt;}
.y8f{bottom:562.173333pt;}
.y44{bottom:567.613333pt;}
.y8e{bottom:579.773333pt;}
.y43{bottom:585.213333pt;}
.y13{bottom:595.773333pt;}
.y8d{bottom:597.373333pt;}
.y42{bottom:602.813333pt;}
.y76{bottom:614.973333pt;}
.y12{bottom:618.013333pt;}
.y41{bottom:620.573333pt;}
.y75{bottom:632.733333pt;}
.y11{bottom:635.773333pt;}
.y40{bottom:638.173333pt;}
.y74{bottom:650.333333pt;}
.y10{bottom:653.373333pt;}
.y3f{bottom:655.773333pt;}
.y73{bottom:667.933333pt;}
.yf{bottom:670.973333pt;}
.y3e{bottom:673.373333pt;}
.y7d{bottom:682.813333pt;}
.ye{bottom:683.933333pt;}
.y72{bottom:685.533333pt;}
.y3d{bottom:690.973333pt;}
.y7c{bottom:697.533333pt;}
.y71{bottom:703.133333pt;}
.yd{bottom:706.173333pt;}
.y3c{bottom:708.733333pt;}
.y70{bottom:720.893333pt;}
.yc{bottom:723.933333pt;}
.y3b{bottom:726.333333pt;}
.yb{bottom:737.373333pt;}
.y6f{bottom:738.493333pt;}
.y3a{bottom:743.933333pt;}
.y6e{bottom:756.133333pt;}
.ya{bottom:756.773333pt;}
.y39{bottom:761.573333pt;}
.y6d{bottom:773.733333pt;}
.y9{bottom:775.653333pt;}
.y38{bottom:779.173333pt;}
.y6c{bottom:791.333333pt;}
.y8{bottom:796.613333pt;}
.y37{bottom:796.773333pt;}
.y6b{bottom:809.093333pt;}
.y36{bottom:814.533333pt;}
.y7{bottom:824.773333pt;}
.y6a{bottom:826.693333pt;}
.y35{bottom:832.133333pt;}
.y69{bottom:844.293333pt;}
.y68{bottom:861.893333pt;}
.y5{bottom:862.213333pt;}
.y67{bottom:879.493333pt;}
.y4{bottom:891.333333pt;}
.y66{bottom:897.253333pt;}
.y65{bottom:914.853333pt;}
.y3{bottom:920.453333pt;}
.y64{bottom:932.453333pt;}
.y2{bottom:949.733333pt;}
.y63{bottom:950.053333pt;}
.y62{bottom:967.680000pt;}
.y1{bottom:980.960000pt;}
.y61{bottom:994.880000pt;}
.h6{height:30.982500pt;}
.ha{height:36.883125pt;}
.h4{height:47.180312pt;}
.h7{height:47.621250pt;}
.h3{height:52.296250pt;}
.h8{height:52.992000pt;}
.h5{height:54.089375pt;}
.h2{height:57.375000pt;}
.hb{height:60.288750pt;}
.h1{height:75.602187pt;}
.h9{height:387.866667pt;}
.h0{height:1056.000000pt;}
.w4{width:171.706667pt;}
.w3{width:172.666667pt;}
.w2{width:532.613333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x23{left:26.399988pt;}
.x22{left:30.879988pt;}
.x21{left:35.359988pt;}
.x24{left:39.839988pt;}
.x1b{left:45.759988pt;}
.x1{left:48.159988pt;}
.x1a{left:50.079988pt;}
.x9{left:52.639988pt;}
.x19{left:55.359988pt;}
.x15{left:58.079988pt;}
.x18{left:59.839988pt;}
.x16{left:64.159988pt;}
.xb{left:76.991988pt;}
.x14{left:84.031988pt;}
.x17{left:96.031988pt;}
.x13{left:125.471988pt;}
.x6{left:164.506667pt;}
.x5{left:165.466667pt;}
.x11{left:199.066655pt;}
.xf{left:240.066655pt;}
.xc{left:277.186655pt;}
.xd{left:408.093321pt;}
.x20{left:419.773321pt;}
.x1f{left:424.093321pt;}
.x1d{left:428.573321pt;}
.x7{left:431.613321pt;}
.x1e{left:433.053321pt;}
.x1c{left:479.613321pt;}
.x10{left:496.573321pt;}
.xe{left:504.573321pt;}
.x12{left:517.853321pt;}
.x8{left:521.213321pt;}
.x2{left:525.413333pt;}
.xa{left:538.213321pt;}
.x4{left:580.613333pt;}
}




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