
    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_be5bfa31c826d6d8bf999c75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179199;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_4a3ac6c4ac8459ed39a01602.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_4e19fda8d916473710f4271b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179199;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_c800d2a09de03dc987b8fcd2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_fd42def8499fc5e06967d3e2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_110edfee6572ba966ff66e44.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.328200px;}
.ls5{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.084600px;}
.ls6{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.011520px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.035280px;}
.lsd{letter-spacing:0.036720px;}
.ls3{letter-spacing:0.087840px;}
.ls9{letter-spacing:0.096480px;}
.lsc{letter-spacing:0.195600px;}
.lse{letter-spacing:0.201600px;}
.ls10{letter-spacing:0.236160px;}
.ls11{letter-spacing:0.334080px;}
.lsf{letter-spacing:0.956160px;}
.lsa{letter-spacing:61.585920px;}
.ls4{letter-spacing:72.233280px;}
.lsb{letter-spacing:846.495840px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(22,33,91),0 0.015em rgb(22,33,91),0.015em 0 rgb(22,33,91),0 -0.015em  rgb(22,33,91);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(22,33,91);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-63.360000px;}
.wsc{word-spacing:-48.816000px;}
.wsb{word-spacing:-46.895904px;}
.ws8{word-spacing:-46.863360px;}
.wsa{word-spacing:-46.851840px;}
.wsd{word-spacing:-46.811304px;}
.ws2{word-spacing:-40.176000px;}
.ws9{word-spacing:-19.689120px;}
.ws6{word-spacing:-17.804160px;}
.ws3{word-spacing:-17.740560px;}
.ws4{word-spacing:-17.475960px;}
.ws1{word-spacing:-14.364720px;}
.ws5{word-spacing:-8.497440px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-11.960160px;}
._e{margin-left:-2.563200px;}
._0{margin-left:-1.153440px;}
._1{width:1.160160px;}
._7{width:2.178240px;}
._b{width:3.530400px;}
._5{width:4.574880px;}
._6{width:5.702400px;}
._8{width:7.032960px;}
._a{width:8.680320px;}
._d{width:10.114560px;}
._9{width:12.621600px;}
._4{width:13.650240px;}
._3{width:15.363360px;}
._11{width:16.551840px;}
._f{width:19.625760px;}
._14{width:20.858400px;}
._10{width:22.540320px;}
._13{width:25.977600px;}
._12{width:27.061920px;}
._2{width:844.068000px;}
._c{width:846.495840px;}
.fc6{color:rgb(31,73,125);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(104,199,239);}
.fc2{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(22,33,91);}
.fs7{font-size:30.240000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:56.880000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:72.858149px;}
.fs3{font-size:84.240000px;}
.fsb{font-size:87.120000px;}
.fs9{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:192.240000px;}
.fsa{font-size:207.360000px;}
.fsc{font-size:207.504000px;}
.fsd{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.420000px;}
.y67{bottom:3.780000px;}
.ydb{bottom:5.655000px;}
.yd4{bottom:5.835000px;}
.yd7{bottom:9.615000px;}
.ydd{bottom:17.460000px;}
.y66{bottom:22.680000px;}
.y73{bottom:22.860000px;}
.ydf{bottom:23.115000px;}
.yd1{bottom:23.295000px;}
.y2{bottom:23.400000px;}
.yd9{bottom:23.475000px;}
.ye3{bottom:32.115000px;}
.yd3{bottom:32.295000px;}
.y65{bottom:41.760000px;}
.y72{bottom:41.940000px;}
.y16{bottom:44.100000px;}
.y71{bottom:60.840000px;}
.y64{bottom:60.885000px;}
.y78{bottom:61.020000px;}
.y84{bottom:61.050000px;}
.y15{bottom:73.440000px;}
.y7c{bottom:79.920000px;}
.y70{bottom:79.950000px;}
.y63{bottom:79.965000px;}
.y77{bottom:80.100000px;}
.y83{bottom:80.130000px;}
.y14{bottom:95.400000px;}
.y7b{bottom:99.000000px;}
.y6f{bottom:99.030000px;}
.y62{bottom:99.045000px;}
.y76{bottom:99.180000px;}
.y82{bottom:99.210000px;}
.y7a{bottom:118.080000px;}
.y6e{bottom:118.110000px;}
.y75{bottom:118.260000px;}
.ycc{bottom:118.620000px;}
.y3d{bottom:133.200000px;}
.y7f{bottom:137.160000px;}
.y6d{bottom:137.190000px;}
.ycb{bottom:140.580000px;}
.y3c{bottom:155.160000px;}
.y6c{bottom:156.270000px;}
.yca{bottom:162.540000px;}
.y6b{bottom:175.350000px;}
.y3b{bottom:177.120000px;}
.yc9{bottom:184.500000px;}
.y6a{bottom:194.430000px;}
.y3a{bottom:198.900000px;}
.ya7{bottom:202.140000px;}
.yc8{bottom:206.280000px;}
.y69{bottom:213.330000px;}
.y39{bottom:220.890000px;}
.yc7{bottom:228.270000px;}
.y38{bottom:242.850000px;}
.ya6{bottom:243.570000px;}
.yc6{bottom:250.230000px;}
.y7d{bottom:264.270000px;}
.y37{bottom:264.810000px;}
.ya5{bottom:265.530000px;}
.yc5{bottom:272.190000px;}
.ydc{bottom:273.630000px;}
.y36{bottom:286.590000px;}
.ya4{bottom:287.490000px;}
.y79{bottom:292.710000px;}
.yc4{bottom:293.970000px;}
.y35{bottom:308.550000px;}
.ya3{bottom:309.990000px;}
.yc3{bottom:315.930000px;}
.y5c{bottom:323.490000px;}
.y34{bottom:330.510000px;}
.ya2{bottom:331.950000px;}
.yc2{bottom:337.890000px;}
.y5b{bottom:345.450000px;}
.y33{bottom:352.470000px;}
.ya1{bottom:353.730000px;}
.yc1{bottom:359.850000px;}
.y5a{bottom:367.410000px;}
.y32{bottom:374.250000px;}
.yc0{bottom:381.630000px;}
.ya0{bottom:388.110000px;}
.y59{bottom:389.370000px;}
.y31{bottom:396.210000px;}
.y87{bottom:403.590000px;}
.y58{bottom:411.150000px;}
.y30{bottom:418.170000px;}
.y86{bottom:425.550000px;}
.y57{bottom:433.110000px;}
.y2f{bottom:440.130000px;}
.y9f{bottom:445.170000px;}
.ybf{bottom:447.555000px;}
.y74{bottom:450.975000px;}
.y85{bottom:454.035000px;}
.y56{bottom:455.115000px;}
.y2e{bottom:461.955000px;}
.y9e{bottom:467.175000px;}
.ybe{bottom:469.335000px;}
.yd8{bottom:476.460000px;}
.yde{bottom:476.640000px;}
.y55{bottom:477.075000px;}
.y2d{bottom:483.915000px;}
.y9d{bottom:489.495000px;}
.ybd{bottom:491.295000px;}
.yda{bottom:492.660000px;}
.y54{bottom:498.855000px;}
.ye0{bottom:500.220000px;}
.y12{bottom:507.135000px;}
.y9c{bottom:511.455000px;}
.y2c{bottom:512.895000px;}
.ybc{bottom:513.255000px;}
.y53{bottom:520.815000px;}
.y11{bottom:531.255000px;}
.y9b{bottom:533.955000px;}
.ybb{bottom:535.215000px;}
.ye1{bottom:536.400000px;}
.yd5{bottom:537.660000px;}
.y2b{bottom:537.915000px;}
.y52{bottom:542.775000px;}
.ye2{bottom:549.000000px;}
.y10{bottom:553.215000px;}
.y9a{bottom:555.915000px;}
.yba{bottom:556.995000px;}
.yd6{bottom:559.800000px;}
.y2a{bottom:562.935000px;}
.y51{bottom:564.735000px;}
.yf{bottom:574.995000px;}
.y99{bottom:578.415000px;}
.yb9{bottom:578.955000px;}
.y50{bottom:586.695000px;}
.y29{bottom:587.955000px;}
.ye{bottom:596.955000px;}
.yd0{bottom:597.600000px;}
.y98{bottom:600.375000px;}
.yb8{bottom:600.915000px;}
.yd2{bottom:606.420000px;}
.y4f{bottom:608.475000px;}
.y68{bottom:609.375000px;}
.y28{bottom:612.975000px;}
.yd{bottom:618.915000px;}
.y97{bottom:622.875000px;}
.y4e{bottom:630.435000px;}
.y81{bottom:631.335000px;}
.y27{bottom:637.995000px;}
.yc{bottom:640.875000px;}
.y96{bottom:644.655000px;}
.y4d{bottom:652.395000px;}
.yb{bottom:662.655000px;}
.y26{bottom:664.455000px;}
.y95{bottom:666.615000px;}
.y4c{bottom:674.355000px;}
.ya{bottom:684.645000px;}
.y25{bottom:688.425000px;}
.yb7{bottom:688.605000px;}
.y4b{bottom:696.165000px;}
.y94{bottom:701.025000px;}
.yb6{bottom:710.565000px;}
.y9{bottom:714.885000px;}
.yb5{bottom:732.525000px;}
.y4a{bottom:735.585000px;}
.y8{bottom:743.865000px;}
.yb4{bottom:754.305000px;}
.y93{bottom:757.905000px;}
.y24{bottom:770.505000px;}
.yb3{bottom:776.265000px;}
.y92{bottom:779.865000px;}
.y80{bottom:789.765000px;}
.y23{bottom:795.705000px;}
.yb2{bottom:798.225000px;}
.y7{bottom:799.125000px;}
.y91{bottom:801.825000px;}
.y49{bottom:807.225000px;}
.yb1{bottom:820.185000px;}
.y22{bottom:820.725000px;}
.y90{bottom:824.325000px;}
.y48{bottom:826.305000px;}
.yb0{bottom:841.965000px;}
.y47{bottom:845.385000px;}
.y21{bottom:845.745000px;}
.y8f{bottom:846.285000px;}
.y6{bottom:862.125000px;}
.y61{bottom:863.025000px;}
.yaf{bottom:863.925000px;}
.y46{bottom:864.465000px;}
.y8e{bottom:868.785000px;}
.y20{bottom:870.765000px;}
.y45{bottom:883.545000px;}
.yae{bottom:885.885000px;}
.y8d{bottom:890.565000px;}
.y1f{bottom:895.785000px;}
.y44{bottom:902.445000px;}
.yad{bottom:907.845000px;}
.y8c{bottom:912.525000px;}
.y5{bottom:920.670000px;}
.y1e{bottom:920.850000px;}
.y43{bottom:921.570000px;}
.yac{bottom:929.670000px;}
.y8b{bottom:935.070000px;}
.y42{bottom:940.650000px;}
.y1d{bottom:945.870000px;}
.y7e{bottom:948.030000px;}
.yab{bottom:951.630000px;}
.y8a{bottom:957.030000px;}
.y41{bottom:959.730000px;}
.y1c{bottom:971.070000px;}
.yaa{bottom:973.590000px;}
.y89{bottom:978.990000px;}
.y4{bottom:979.170000px;}
.y40{bottom:987.810000px;}
.ya9{bottom:995.550000px;}
.y1b{bottom:996.090000px;}
.y5f{bottom:1002.210000px;}
.y88{bottom:1013.190000px;}
.ya8{bottom:1017.330000px;}
.y1a{bottom:1021.110000px;}
.y3f{bottom:1026.870000px;}
.ycf{bottom:1032.630000px;}
.y3{bottom:1034.250000px;}
.y5e{bottom:1039.290000px;}
.y19{bottom:1046.130000px;}
.yce{bottom:1054.590000px;}
.y18{bottom:1071.150000px;}
.ycd{bottom:1076.550000px;}
.y5d{bottom:1078.710000px;}
.y17{bottom:1096.170000px;}
.y3e{bottom:1098.330000px;}
.y1{bottom:1102.110000px;}
.y13{bottom:1153.980000px;}
.h9{height:17.280000px;}
.h1a{height:26.820000px;}
.h16{height:30.600000px;}
.h13{height:53.280000px;}
.h7{height:54.796992px;}
.h2{height:61.039687px;}
.h10{height:65.124096px;}
.h18{height:68.940000px;}
.h6{height:69.363281px;}
.h8{height:70.190004px;}
.h11{height:72.720000px;}
.h15{height:72.900000px;}
.h5{height:81.155039px;}
.h14{height:89.204414px;}
.hf{height:92.253164px;}
.ha{height:114.336000px;}
.hc{height:133.380000px;}
.he{height:133.416000px;}
.h3{height:138.726562px;}
.hd{height:152.460000px;}
.h4{height:178.975440px;}
.h12{height:212.321250px;}
.h17{height:212.468695px;}
.h19{height:221.167969px;}
.hb{height:228.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:97.020000px;}
.w7{width:107.280000px;}
.we{width:117.180000px;}
.w4{width:129.816000px;}
.wa{width:130.320000px;}
.w3{width:138.996000px;}
.w5{width:144.756000px;}
.wc{width:167.580000px;}
.w8{width:169.380000px;}
.wb{width:192.240000px;}
.w6{width:385.995000px;}
.wd{width:447.195000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:10.800000px;}
.x19{left:28.110000px;}
.x15{left:33.765000px;}
.x12{left:44.025000px;}
.x3{left:63.719987px;}
.xa{left:65.340000px;}
.x1b{left:80.130000px;}
.x7{left:90.755987px;}
.x8{left:117.755987px;}
.x18{left:132.696000px;}
.xc{left:205.950000px;}
.x10{left:227.549987px;}
.x1c{left:248.580000px;}
.x1a{left:250.020000px;}
.x5{left:263.954987px;}
.x9{left:279.794987px;}
.x6{left:301.394987px;}
.xd{left:337.215000px;}
.x17{left:402.660000px;}
.xf{left:404.174987px;}
.x4{left:446.684987px;}
.xe{left:483.405000px;}
.x11{left:488.340000px;}
.x1{left:490.784987px;}
.x14{left:498.780000px;}
.x13{left:595.080000px;}
.x16{left:596.160000px;}
.x2{left:823.139987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.291733pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.010240pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.031360pt;}
.lsd{letter-spacing:0.032640pt;}
.ls3{letter-spacing:0.078080pt;}
.ls9{letter-spacing:0.085760pt;}
.lsc{letter-spacing:0.173867pt;}
.lse{letter-spacing:0.179200pt;}
.ls10{letter-spacing:0.209920pt;}
.ls11{letter-spacing:0.296960pt;}
.lsf{letter-spacing:0.849920pt;}
.lsa{letter-spacing:54.743040pt;}
.ls4{letter-spacing:64.207360pt;}
.lsb{letter-spacing:752.440747pt;}
.ws7{word-spacing:-56.320000pt;}
.wsc{word-spacing:-43.392000pt;}
.wsb{word-spacing:-41.685248pt;}
.ws8{word-spacing:-41.656320pt;}
.wsa{word-spacing:-41.646080pt;}
.wsd{word-spacing:-41.610048pt;}
.ws2{word-spacing:-35.712000pt;}
.ws9{word-spacing:-17.501440pt;}
.ws6{word-spacing:-15.825920pt;}
.ws3{word-spacing:-15.769387pt;}
.ws4{word-spacing:-15.534187pt;}
.ws1{word-spacing:-12.768640pt;}
.ws5{word-spacing:-7.553280pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-10.631253pt;}
._e{margin-left:-2.278400pt;}
._0{margin-left:-1.025280pt;}
._1{width:1.031253pt;}
._7{width:1.936213pt;}
._b{width:3.138133pt;}
._5{width:4.066560pt;}
._6{width:5.068800pt;}
._8{width:6.251520pt;}
._a{width:7.715840pt;}
._d{width:8.990720pt;}
._9{width:11.219200pt;}
._4{width:12.133547pt;}
._3{width:13.656320pt;}
._11{width:14.712747pt;}
._f{width:17.445120pt;}
._14{width:18.540800pt;}
._10{width:20.035840pt;}
._13{width:23.091200pt;}
._12{width:24.055040pt;}
._2{width:750.282667pt;}
._c{width:752.440747pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:50.560000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:64.762799pt;}
.fs3{font-size:74.880000pt;}
.fsb{font-size:77.440000pt;}
.fs9{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:170.880000pt;}
.fsa{font-size:184.320000pt;}
.fsc{font-size:184.448000pt;}
.fsd{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.040000pt;}
.y67{bottom:3.360000pt;}
.ydb{bottom:5.026667pt;}
.yd4{bottom:5.186667pt;}
.yd7{bottom:8.546667pt;}
.ydd{bottom:15.520000pt;}
.y66{bottom:20.160000pt;}
.y73{bottom:20.320000pt;}
.ydf{bottom:20.546667pt;}
.yd1{bottom:20.706667pt;}
.y2{bottom:20.800000pt;}
.yd9{bottom:20.866667pt;}
.ye3{bottom:28.546667pt;}
.yd3{bottom:28.706667pt;}
.y65{bottom:37.120000pt;}
.y72{bottom:37.280000pt;}
.y16{bottom:39.200000pt;}
.y71{bottom:54.080000pt;}
.y64{bottom:54.120000pt;}
.y78{bottom:54.240000pt;}
.y84{bottom:54.266667pt;}
.y15{bottom:65.280000pt;}
.y7c{bottom:71.040000pt;}
.y70{bottom:71.066667pt;}
.y63{bottom:71.080000pt;}
.y77{bottom:71.200000pt;}
.y83{bottom:71.226667pt;}
.y14{bottom:84.800000pt;}
.y7b{bottom:88.000000pt;}
.y6f{bottom:88.026667pt;}
.y62{bottom:88.040000pt;}
.y76{bottom:88.160000pt;}
.y82{bottom:88.186667pt;}
.y7a{bottom:104.960000pt;}
.y6e{bottom:104.986667pt;}
.y75{bottom:105.120000pt;}
.ycc{bottom:105.440000pt;}
.y3d{bottom:118.400000pt;}
.y7f{bottom:121.920000pt;}
.y6d{bottom:121.946667pt;}
.ycb{bottom:124.960000pt;}
.y3c{bottom:137.920000pt;}
.y6c{bottom:138.906667pt;}
.yca{bottom:144.480000pt;}
.y6b{bottom:155.866667pt;}
.y3b{bottom:157.440000pt;}
.yc9{bottom:164.000000pt;}
.y6a{bottom:172.826667pt;}
.y3a{bottom:176.800000pt;}
.ya7{bottom:179.680000pt;}
.yc8{bottom:183.360000pt;}
.y69{bottom:189.626667pt;}
.y39{bottom:196.346667pt;}
.yc7{bottom:202.906667pt;}
.y38{bottom:215.866667pt;}
.ya6{bottom:216.506667pt;}
.yc6{bottom:222.426667pt;}
.y7d{bottom:234.906667pt;}
.y37{bottom:235.386667pt;}
.ya5{bottom:236.026667pt;}
.yc5{bottom:241.946667pt;}
.ydc{bottom:243.226667pt;}
.y36{bottom:254.746667pt;}
.ya4{bottom:255.546667pt;}
.y79{bottom:260.186667pt;}
.yc4{bottom:261.306667pt;}
.y35{bottom:274.266667pt;}
.ya3{bottom:275.546667pt;}
.yc3{bottom:280.826667pt;}
.y5c{bottom:287.546667pt;}
.y34{bottom:293.786667pt;}
.ya2{bottom:295.066667pt;}
.yc2{bottom:300.346667pt;}
.y5b{bottom:307.066667pt;}
.y33{bottom:313.306667pt;}
.ya1{bottom:314.426667pt;}
.yc1{bottom:319.866667pt;}
.y5a{bottom:326.586667pt;}
.y32{bottom:332.666667pt;}
.yc0{bottom:339.226667pt;}
.ya0{bottom:344.986667pt;}
.y59{bottom:346.106667pt;}
.y31{bottom:352.186667pt;}
.y87{bottom:358.746667pt;}
.y58{bottom:365.466667pt;}
.y30{bottom:371.706667pt;}
.y86{bottom:378.266667pt;}
.y57{bottom:384.986667pt;}
.y2f{bottom:391.226667pt;}
.y9f{bottom:395.706667pt;}
.ybf{bottom:397.826667pt;}
.y74{bottom:400.866667pt;}
.y85{bottom:403.586667pt;}
.y56{bottom:404.546667pt;}
.y2e{bottom:410.626667pt;}
.y9e{bottom:415.266667pt;}
.ybe{bottom:417.186667pt;}
.yd8{bottom:423.520000pt;}
.yde{bottom:423.680000pt;}
.y55{bottom:424.066667pt;}
.y2d{bottom:430.146667pt;}
.y9d{bottom:435.106667pt;}
.ybd{bottom:436.706667pt;}
.yda{bottom:437.920000pt;}
.y54{bottom:443.426667pt;}
.ye0{bottom:444.640000pt;}
.y12{bottom:450.786667pt;}
.y9c{bottom:454.626667pt;}
.y2c{bottom:455.906667pt;}
.ybc{bottom:456.226667pt;}
.y53{bottom:462.946667pt;}
.y11{bottom:472.226667pt;}
.y9b{bottom:474.626667pt;}
.ybb{bottom:475.746667pt;}
.ye1{bottom:476.800000pt;}
.yd5{bottom:477.920000pt;}
.y2b{bottom:478.146667pt;}
.y52{bottom:482.466667pt;}
.ye2{bottom:488.000000pt;}
.y10{bottom:491.746667pt;}
.y9a{bottom:494.146667pt;}
.yba{bottom:495.106667pt;}
.yd6{bottom:497.600000pt;}
.y2a{bottom:500.386667pt;}
.y51{bottom:501.986667pt;}
.yf{bottom:511.106667pt;}
.y99{bottom:514.146667pt;}
.yb9{bottom:514.626667pt;}
.y50{bottom:521.506667pt;}
.y29{bottom:522.626667pt;}
.ye{bottom:530.626667pt;}
.yd0{bottom:531.200000pt;}
.y98{bottom:533.666667pt;}
.yb8{bottom:534.146667pt;}
.yd2{bottom:539.040000pt;}
.y4f{bottom:540.866667pt;}
.y68{bottom:541.666667pt;}
.y28{bottom:544.866667pt;}
.yd{bottom:550.146667pt;}
.y97{bottom:553.666667pt;}
.y4e{bottom:560.386667pt;}
.y81{bottom:561.186667pt;}
.y27{bottom:567.106667pt;}
.yc{bottom:569.666667pt;}
.y96{bottom:573.026667pt;}
.y4d{bottom:579.906667pt;}
.yb{bottom:589.026667pt;}
.y26{bottom:590.626667pt;}
.y95{bottom:592.546667pt;}
.y4c{bottom:599.426667pt;}
.ya{bottom:608.573333pt;}
.y25{bottom:611.933333pt;}
.yb7{bottom:612.093333pt;}
.y4b{bottom:618.813333pt;}
.y94{bottom:623.133333pt;}
.yb6{bottom:631.613333pt;}
.y9{bottom:635.453333pt;}
.yb5{bottom:651.133333pt;}
.y4a{bottom:653.853333pt;}
.y8{bottom:661.213333pt;}
.yb4{bottom:670.493333pt;}
.y93{bottom:673.693333pt;}
.y24{bottom:684.893333pt;}
.yb3{bottom:690.013333pt;}
.y92{bottom:693.213333pt;}
.y80{bottom:702.013333pt;}
.y23{bottom:707.293333pt;}
.yb2{bottom:709.533333pt;}
.y7{bottom:710.333333pt;}
.y91{bottom:712.733333pt;}
.y49{bottom:717.533333pt;}
.yb1{bottom:729.053333pt;}
.y22{bottom:729.533333pt;}
.y90{bottom:732.733333pt;}
.y48{bottom:734.493333pt;}
.yb0{bottom:748.413333pt;}
.y47{bottom:751.453333pt;}
.y21{bottom:751.773333pt;}
.y8f{bottom:752.253333pt;}
.y6{bottom:766.333333pt;}
.y61{bottom:767.133333pt;}
.yaf{bottom:767.933333pt;}
.y46{bottom:768.413333pt;}
.y8e{bottom:772.253333pt;}
.y20{bottom:774.013333pt;}
.y45{bottom:785.373333pt;}
.yae{bottom:787.453333pt;}
.y8d{bottom:791.613333pt;}
.y1f{bottom:796.253333pt;}
.y44{bottom:802.173333pt;}
.yad{bottom:806.973333pt;}
.y8c{bottom:811.133333pt;}
.y5{bottom:818.373333pt;}
.y1e{bottom:818.533333pt;}
.y43{bottom:819.173333pt;}
.yac{bottom:826.373333pt;}
.y8b{bottom:831.173333pt;}
.y42{bottom:836.133333pt;}
.y1d{bottom:840.773333pt;}
.y7e{bottom:842.693333pt;}
.yab{bottom:845.893333pt;}
.y8a{bottom:850.693333pt;}
.y41{bottom:853.093333pt;}
.y1c{bottom:863.173333pt;}
.yaa{bottom:865.413333pt;}
.y89{bottom:870.213333pt;}
.y4{bottom:870.373333pt;}
.y40{bottom:878.053333pt;}
.ya9{bottom:884.933333pt;}
.y1b{bottom:885.413333pt;}
.y5f{bottom:890.853333pt;}
.y88{bottom:900.613333pt;}
.ya8{bottom:904.293333pt;}
.y1a{bottom:907.653333pt;}
.y3f{bottom:912.773333pt;}
.ycf{bottom:917.893333pt;}
.y3{bottom:919.333333pt;}
.y5e{bottom:923.813333pt;}
.y19{bottom:929.893333pt;}
.yce{bottom:937.413333pt;}
.y18{bottom:952.133333pt;}
.ycd{bottom:956.933333pt;}
.y5d{bottom:958.853333pt;}
.y17{bottom:974.373333pt;}
.y3e{bottom:976.293333pt;}
.y1{bottom:979.653333pt;}
.y13{bottom:1025.760000pt;}
.h9{height:15.360000pt;}
.h1a{height:23.840000pt;}
.h16{height:27.200000pt;}
.h13{height:47.360000pt;}
.h7{height:48.708438pt;}
.h2{height:54.257500pt;}
.h10{height:57.888085pt;}
.h18{height:61.280000pt;}
.h6{height:61.656250pt;}
.h8{height:62.391114pt;}
.h11{height:64.640000pt;}
.h15{height:64.800000pt;}
.h5{height:72.137812pt;}
.h14{height:79.292812pt;}
.hf{height:82.002813pt;}
.ha{height:101.632000pt;}
.hc{height:118.560000pt;}
.he{height:118.592000pt;}
.h3{height:123.312500pt;}
.hd{height:135.520000pt;}
.h4{height:159.089280pt;}
.h12{height:188.730000pt;}
.h17{height:188.861062pt;}
.h19{height:196.593750pt;}
.hb{height:203.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:86.240000pt;}
.w7{width:95.360000pt;}
.we{width:104.160000pt;}
.w4{width:115.392000pt;}
.wa{width:115.840000pt;}
.w3{width:123.552000pt;}
.w5{width:128.672000pt;}
.wc{width:148.960000pt;}
.w8{width:150.560000pt;}
.wb{width:170.880000pt;}
.w6{width:343.106667pt;}
.wd{width:397.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.600000pt;}
.x19{left:24.986667pt;}
.x15{left:30.013333pt;}
.x12{left:39.133333pt;}
.x3{left:56.639988pt;}
.xa{left:58.080000pt;}
.x1b{left:71.226667pt;}
.x7{left:80.671988pt;}
.x8{left:104.671988pt;}
.x18{left:117.952000pt;}
.xc{left:183.066667pt;}
.x10{left:202.266655pt;}
.x1c{left:220.960000pt;}
.x1a{left:222.240000pt;}
.x5{left:234.626655pt;}
.x9{left:248.706655pt;}
.x6{left:267.906655pt;}
.xd{left:299.746667pt;}
.x17{left:357.920000pt;}
.xf{left:359.266655pt;}
.x4{left:397.053322pt;}
.xe{left:429.693333pt;}
.x11{left:434.080000pt;}
.x1{left:436.253322pt;}
.x14{left:443.360000pt;}
.x13{left:528.960000pt;}
.x16{left:529.920000pt;}
.x2{left:731.679988pt;}
}




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