
    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_04eede8c0d09d7921b61c2ae.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_e3252f6cf8376738d659a14f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_76bf06a738a15f954e499bcf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_449ebd5ce8a7707fa8e5e0ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_469ae938e49f6776c8f14369.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38a35df90b0c5b9163872da6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.176000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.513600px;}
.ls12{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.357000px;}
.ls9{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.206400px;}
.ls20{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.460200px;}
.ls21{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.900000px;}
.ls19{letter-spacing:0.978000px;}
.ls10{letter-spacing:1.080000px;}
.lsd{letter-spacing:2.340000px;}
.lsc{letter-spacing:3.060000px;}
.lsa{letter-spacing:3.780000px;}
.ls16{letter-spacing:4.500000px;}
.lsb{letter-spacing:5.220000px;}
.ls17{letter-spacing:5.940000px;}
.ls2{letter-spacing:8.820000px;}
.ls18{letter-spacing:9.540000px;}
.ls0{letter-spacing:11.700000px;}
.ls1c{letter-spacing:14.490720px;}
.ls13{letter-spacing:14.580000px;}
.ls14{letter-spacing:18.180000px;}
.ls15{letter-spacing:23.220000px;}
.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:-24.300000px;}
.ws1{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.020000px;}
.ws10{word-spacing:-15.918000px;}
.wsb{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.613240px;}
.ws8{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws13{word-spacing:-14.426400px;}
.ws15{word-spacing:-14.274000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._1e{margin-left:-16.569360px;}
._1f{margin-left:-6.113040px;}
._8{margin-left:-4.860000px;}
._19{margin-left:-3.657120px;}
._7{margin-left:-2.531520px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.577360px;}
._b{width:3.824640px;}
._a{width:5.382000px;}
._9{width:6.390720px;}
._11{width:7.512240px;}
._10{width:8.576400px;}
._f{width:9.903600px;}
._e{width:11.223840px;}
._d{width:12.310560px;}
._13{width:13.521840px;}
._12{width:16.464000px;}
._14{width:17.473440px;}
._15{width:18.764640px;}
._17{width:20.476560px;}
._18{width:21.790320px;}
._1b{width:22.851840px;}
._1a{width:23.937120px;}
._20{width:25.065120px;}
._16{width:26.192160px;}
._1d{width:32.527680px;}
._1c{width:33.897600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:18.540000px;}
.yb3{bottom:34.740000px;}
.yb6{bottom:35.820000px;}
.yb5{bottom:53.094000px;}
.y6{bottom:57.456000px;}
.yb4{bottom:70.194000px;}
.y6c{bottom:93.996000px;}
.yb2{bottom:97.596000px;}
.y34{bottom:97.956000px;}
.y97{bottom:102.276000px;}
.y6b{bottom:113.796000px;}
.y33{bottom:117.936000px;}
.y96{bottom:122.076000px;}
.y6a{bottom:133.596000px;}
.y32{bottom:137.736000px;}
.y95{bottom:141.876000px;}
.y69{bottom:153.570000px;}
.y31{bottom:157.530000px;}
.y94{bottom:161.670000px;}
.y68{bottom:173.370000px;}
.y30{bottom:177.330000px;}
.y93{bottom:181.650000px;}
.y67{bottom:193.170000px;}
.y2f{bottom:197.130000px;}
.y92{bottom:201.450000px;}
.y66{bottom:212.970000px;}
.y2e{bottom:217.110000px;}
.y91{bottom:221.250000px;}
.y65{bottom:232.770000px;}
.y2d{bottom:236.910000px;}
.y90{bottom:241.050000px;}
.y64{bottom:252.750000px;}
.y2c{bottom:256.710000px;}
.y8f{bottom:260.850000px;}
.y63{bottom:272.550000px;}
.y2b{bottom:276.510000px;}
.yb1{bottom:280.650000px;}
.y8e{bottom:280.830000px;}
.y62{bottom:292.395000px;}
.y2a{bottom:296.355000px;}
.yb0{bottom:299.775000px;}
.y8d{bottom:300.675000px;}
.y61{bottom:312.195000px;}
.y29{bottom:316.335000px;}
.yaf{bottom:318.675000px;}
.y8c{bottom:320.475000px;}
.y60{bottom:331.995000px;}
.y28{bottom:336.135000px;}
.yae{bottom:337.755000px;}
.y8b{bottom:340.275000px;}
.y5f{bottom:351.975000px;}
.y27{bottom:355.935000px;}
.yad{bottom:356.655000px;}
.y8a{bottom:360.075000px;}
.y5e{bottom:371.775000px;}
.yac{bottom:375.555000px;}
.y26{bottom:375.735000px;}
.y89{bottom:380.055000px;}
.y5d{bottom:391.575000px;}
.yab{bottom:394.635000px;}
.y25{bottom:395.535000px;}
.y88{bottom:399.855000px;}
.y5c{bottom:411.375000px;}
.yaa{bottom:413.535000px;}
.y24{bottom:415.515000px;}
.y87{bottom:419.655000px;}
.y5b{bottom:431.175000px;}
.ya9{bottom:432.615000px;}
.y23{bottom:435.315000px;}
.y86{bottom:439.455000px;}
.y5a{bottom:451.155000px;}
.ya8{bottom:451.515000px;}
.y22{bottom:455.115000px;}
.y85{bottom:459.255000px;}
.ya7{bottom:470.595000px;}
.y59{bottom:470.955000px;}
.y21{bottom:474.915000px;}
.y84{bottom:479.235000px;}
.ya6{bottom:489.495000px;}
.y58{bottom:490.755000px;}
.y20{bottom:497.055000px;}
.y83{bottom:499.035000px;}
.ya5{bottom:508.395000px;}
.y57{bottom:510.555000px;}
.y82{bottom:518.835000px;}
.y1f{bottom:525.855000px;}
.ya4{bottom:527.475000px;}
.y56{bottom:530.355000px;}
.y81{bottom:538.635000px;}
.y1e{bottom:545.655000px;}
.ya3{bottom:546.375000px;}
.y55{bottom:550.335000px;}
.y80{bottom:558.435000px;}
.y1d{bottom:565.485000px;}
.ya2{bottom:567.465000px;}
.y54{bottom:570.165000px;}
.y7f{bottom:578.445000px;}
.y1c{bottom:585.465000px;}
.ya1{bottom:587.445000px;}
.y53{bottom:589.965000px;}
.y7e{bottom:598.245000px;}
.y1b{bottom:605.265000px;}
.ya0{bottom:607.245000px;}
.y52{bottom:609.765000px;}
.y7d{bottom:618.045000px;}
.y1a{bottom:625.065000px;}
.y9f{bottom:627.045000px;}
.y51{bottom:629.565000px;}
.y7c{bottom:637.845000px;}
.y19{bottom:644.865000px;}
.y9e{bottom:646.845000px;}
.y50{bottom:649.545000px;}
.y7b{bottom:657.645000px;}
.y18{bottom:664.665000px;}
.y9d{bottom:666.645000px;}
.y4f{bottom:669.345000px;}
.y7a{bottom:677.625000px;}
.y17{bottom:684.645000px;}
.y9c{bottom:686.625000px;}
.y4e{bottom:689.145000px;}
.y79{bottom:697.425000px;}
.y16{bottom:704.445000px;}
.y9b{bottom:706.425000px;}
.y4d{bottom:708.945000px;}
.y78{bottom:717.225000px;}
.y15{bottom:724.245000px;}
.y9a{bottom:726.225000px;}
.y4c{bottom:728.745000px;}
.y77{bottom:737.025000px;}
.y14{bottom:744.045000px;}
.y99{bottom:746.025000px;}
.y4b{bottom:748.725000px;}
.y76{bottom:756.825000px;}
.y13{bottom:763.845000px;}
.y98{bottom:765.825000px;}
.y4a{bottom:766.005000px;}
.y75{bottom:776.805000px;}
.y12{bottom:783.825000px;}
.y49{bottom:785.805000px;}
.y74{bottom:796.605000px;}
.y11{bottom:803.625000px;}
.y48{bottom:805.605000px;}
.y73{bottom:816.405000px;}
.y10{bottom:823.425000px;}
.y47{bottom:825.405000px;}
.y72{bottom:836.205000px;}
.yf{bottom:843.225000px;}
.y46{bottom:845.205000px;}
.y71{bottom:856.050000px;}
.ye{bottom:863.070000px;}
.y45{bottom:865.050000px;}
.y70{bottom:876.030000px;}
.y44{bottom:885.030000px;}
.yd{bottom:885.210000px;}
.y6f{bottom:895.830000px;}
.y43{bottom:904.830000px;}
.yc{bottom:910.230000px;}
.y6e{bottom:915.630000px;}
.y42{bottom:924.630000px;}
.yb{bottom:930.210000px;}
.y6d{bottom:935.430000px;}
.y41{bottom:944.430000px;}
.ya{bottom:945.330000px;}
.y40{bottom:964.230000px;}
.y9{bottom:966.570000px;}
.y3f{bottom:984.210000px;}
.y8{bottom:989.970000px;}
.y3e{bottom:1004.010000px;}
.y7{bottom:1021.830000px;}
.y3d{bottom:1023.810000px;}
.y3c{bottom:1043.610000px;}
.y5{bottom:1060.170000px;}
.y3b{bottom:1063.410000px;}
.y3a{bottom:1083.390000px;}
.y4{bottom:1090.950000px;}
.y39{bottom:1103.190000px;}
.y3{bottom:1121.730000px;}
.y38{bottom:1122.990000px;}
.y37{bottom:1142.820000px;}
.y2{bottom:1152.720000px;}
.y36{bottom:1162.620000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.hc{height:2.826563px;}
.h6{height:38.158594px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.hb{height:84.240000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x9{left:45.900000px;}
.x1{left:54.179987px;}
.x2{left:63.359987px;}
.x3{left:67.499987px;}
.x5{left:69.119987px;}
.x4{left:75.239987px;}
.x7{left:80.999987px;}
.x8{left:94.535987px;}
.x6{left:96.515987px;}
.xa{left:191.370000px;}
.xb{left:256.710000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.317333pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.409067pt;}
.ls21{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.869333pt;}
.ls10{letter-spacing:0.960000pt;}
.lsd{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.720000pt;}
.lsa{letter-spacing:3.360000pt;}
.ls16{letter-spacing:4.000000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls2{letter-spacing:7.840000pt;}
.ls18{letter-spacing:8.480000pt;}
.ls0{letter-spacing:10.400000pt;}
.ls1c{letter-spacing:12.880640pt;}
.ls13{letter-spacing:12.960000pt;}
.ls14{letter-spacing:16.160000pt;}
.ls15{letter-spacing:20.640000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws10{word-spacing:-14.149333pt;}
.wsb{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.096533pt;}
.ws14{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.989547pt;}
.ws8{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws13{word-spacing:-12.823467pt;}
.ws15{word-spacing:-12.688000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._1e{margin-left:-14.728320pt;}
._1f{margin-left:-5.433813pt;}
._8{margin-left:-4.320000pt;}
._19{margin-left:-3.250773pt;}
._7{margin-left:-2.250240pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.290987pt;}
._b{width:3.399680pt;}
._a{width:4.784000pt;}
._9{width:5.680640pt;}
._11{width:6.677547pt;}
._10{width:7.623467pt;}
._f{width:8.803200pt;}
._e{width:9.976747pt;}
._d{width:10.942720pt;}
._13{width:12.019413pt;}
._12{width:14.634667pt;}
._14{width:15.531947pt;}
._15{width:16.679680pt;}
._17{width:18.201387pt;}
._18{width:19.369173pt;}
._1b{width:20.312747pt;}
._1a{width:21.277440pt;}
._20{width:22.280107pt;}
._16{width:23.281920pt;}
._1d{width:28.913493pt;}
._1c{width:30.131200pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:16.480000pt;}
.yb3{bottom:30.880000pt;}
.yb6{bottom:31.840000pt;}
.yb5{bottom:47.194667pt;}
.y6{bottom:51.072000pt;}
.yb4{bottom:62.394667pt;}
.y6c{bottom:83.552000pt;}
.yb2{bottom:86.752000pt;}
.y34{bottom:87.072000pt;}
.y97{bottom:90.912000pt;}
.y6b{bottom:101.152000pt;}
.y33{bottom:104.832000pt;}
.y96{bottom:108.512000pt;}
.y6a{bottom:118.752000pt;}
.y32{bottom:122.432000pt;}
.y95{bottom:126.112000pt;}
.y69{bottom:136.506667pt;}
.y31{bottom:140.026667pt;}
.y94{bottom:143.706667pt;}
.y68{bottom:154.106667pt;}
.y30{bottom:157.626667pt;}
.y93{bottom:161.466667pt;}
.y67{bottom:171.706667pt;}
.y2f{bottom:175.226667pt;}
.y92{bottom:179.066667pt;}
.y66{bottom:189.306667pt;}
.y2e{bottom:192.986667pt;}
.y91{bottom:196.666667pt;}
.y65{bottom:206.906667pt;}
.y2d{bottom:210.586667pt;}
.y90{bottom:214.266667pt;}
.y64{bottom:224.666667pt;}
.y2c{bottom:228.186667pt;}
.y8f{bottom:231.866667pt;}
.y63{bottom:242.266667pt;}
.y2b{bottom:245.786667pt;}
.yb1{bottom:249.466667pt;}
.y8e{bottom:249.626667pt;}
.y62{bottom:259.906667pt;}
.y2a{bottom:263.426667pt;}
.yb0{bottom:266.466667pt;}
.y8d{bottom:267.266667pt;}
.y61{bottom:277.506667pt;}
.y29{bottom:281.186667pt;}
.yaf{bottom:283.266667pt;}
.y8c{bottom:284.866667pt;}
.y60{bottom:295.106667pt;}
.y28{bottom:298.786667pt;}
.yae{bottom:300.226667pt;}
.y8b{bottom:302.466667pt;}
.y5f{bottom:312.866667pt;}
.y27{bottom:316.386667pt;}
.yad{bottom:317.026667pt;}
.y8a{bottom:320.066667pt;}
.y5e{bottom:330.466667pt;}
.yac{bottom:333.826667pt;}
.y26{bottom:333.986667pt;}
.y89{bottom:337.826667pt;}
.y5d{bottom:348.066667pt;}
.yab{bottom:350.786667pt;}
.y25{bottom:351.586667pt;}
.y88{bottom:355.426667pt;}
.y5c{bottom:365.666667pt;}
.yaa{bottom:367.586667pt;}
.y24{bottom:369.346667pt;}
.y87{bottom:373.026667pt;}
.y5b{bottom:383.266667pt;}
.ya9{bottom:384.546667pt;}
.y23{bottom:386.946667pt;}
.y86{bottom:390.626667pt;}
.y5a{bottom:401.026667pt;}
.ya8{bottom:401.346667pt;}
.y22{bottom:404.546667pt;}
.y85{bottom:408.226667pt;}
.ya7{bottom:418.306667pt;}
.y59{bottom:418.626667pt;}
.y21{bottom:422.146667pt;}
.y84{bottom:425.986667pt;}
.ya6{bottom:435.106667pt;}
.y58{bottom:436.226667pt;}
.y20{bottom:441.826667pt;}
.y83{bottom:443.586667pt;}
.ya5{bottom:451.906667pt;}
.y57{bottom:453.826667pt;}
.y82{bottom:461.186667pt;}
.y1f{bottom:467.426667pt;}
.ya4{bottom:468.866667pt;}
.y56{bottom:471.426667pt;}
.y81{bottom:478.786667pt;}
.y1e{bottom:485.026667pt;}
.ya3{bottom:485.666667pt;}
.y55{bottom:489.186667pt;}
.y80{bottom:496.386667pt;}
.y1d{bottom:502.653333pt;}
.ya2{bottom:504.413333pt;}
.y54{bottom:506.813333pt;}
.y7f{bottom:514.173333pt;}
.y1c{bottom:520.413333pt;}
.ya1{bottom:522.173333pt;}
.y53{bottom:524.413333pt;}
.y7e{bottom:531.773333pt;}
.y1b{bottom:538.013333pt;}
.ya0{bottom:539.773333pt;}
.y52{bottom:542.013333pt;}
.y7d{bottom:549.373333pt;}
.y1a{bottom:555.613333pt;}
.y9f{bottom:557.373333pt;}
.y51{bottom:559.613333pt;}
.y7c{bottom:566.973333pt;}
.y19{bottom:573.213333pt;}
.y9e{bottom:574.973333pt;}
.y50{bottom:577.373333pt;}
.y7b{bottom:584.573333pt;}
.y18{bottom:590.813333pt;}
.y9d{bottom:592.573333pt;}
.y4f{bottom:594.973333pt;}
.y7a{bottom:602.333333pt;}
.y17{bottom:608.573333pt;}
.y9c{bottom:610.333333pt;}
.y4e{bottom:612.573333pt;}
.y79{bottom:619.933333pt;}
.y16{bottom:626.173333pt;}
.y9b{bottom:627.933333pt;}
.y4d{bottom:630.173333pt;}
.y78{bottom:637.533333pt;}
.y15{bottom:643.773333pt;}
.y9a{bottom:645.533333pt;}
.y4c{bottom:647.773333pt;}
.y77{bottom:655.133333pt;}
.y14{bottom:661.373333pt;}
.y99{bottom:663.133333pt;}
.y4b{bottom:665.533333pt;}
.y76{bottom:672.733333pt;}
.y13{bottom:678.973333pt;}
.y98{bottom:680.733333pt;}
.y4a{bottom:680.893333pt;}
.y75{bottom:690.493333pt;}
.y12{bottom:696.733333pt;}
.y49{bottom:698.493333pt;}
.y74{bottom:708.093333pt;}
.y11{bottom:714.333333pt;}
.y48{bottom:716.093333pt;}
.y73{bottom:725.693333pt;}
.y10{bottom:731.933333pt;}
.y47{bottom:733.693333pt;}
.y72{bottom:743.293333pt;}
.yf{bottom:749.533333pt;}
.y46{bottom:751.293333pt;}
.y71{bottom:760.933333pt;}
.ye{bottom:767.173333pt;}
.y45{bottom:768.933333pt;}
.y70{bottom:778.693333pt;}
.y44{bottom:786.693333pt;}
.yd{bottom:786.853333pt;}
.y6f{bottom:796.293333pt;}
.y43{bottom:804.293333pt;}
.yc{bottom:809.093333pt;}
.y6e{bottom:813.893333pt;}
.y42{bottom:821.893333pt;}
.yb{bottom:826.853333pt;}
.y6d{bottom:831.493333pt;}
.y41{bottom:839.493333pt;}
.ya{bottom:840.293333pt;}
.y40{bottom:857.093333pt;}
.y9{bottom:859.173333pt;}
.y3f{bottom:874.853333pt;}
.y8{bottom:879.973333pt;}
.y3e{bottom:892.453333pt;}
.y7{bottom:908.293333pt;}
.y3d{bottom:910.053333pt;}
.y3c{bottom:927.653333pt;}
.y5{bottom:942.373333pt;}
.y3b{bottom:945.253333pt;}
.y3a{bottom:963.013333pt;}
.y4{bottom:969.733333pt;}
.y39{bottom:980.613333pt;}
.y3{bottom:997.093333pt;}
.y38{bottom:998.213333pt;}
.y37{bottom:1015.840000pt;}
.y2{bottom:1024.640000pt;}
.y36{bottom:1033.440000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.hc{height:2.512500pt;}
.h6{height:33.918750pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.hb{height:74.880000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x9{left:40.800000pt;}
.x1{left:48.159988pt;}
.x2{left:56.319988pt;}
.x3{left:59.999988pt;}
.x5{left:61.439988pt;}
.x4{left:66.879988pt;}
.x7{left:71.999988pt;}
.x8{left:84.031988pt;}
.x6{left:85.791988pt;}
.xa{left:170.106667pt;}
.xb{left:228.186667pt;}
}




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