
    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_5753337c2e63c0ac945b6ed9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc6f15dc5c344b8eb87ed83b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e733de3b4bbb5c3dae44b0dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_c4c0532f22aef1b7c277f810.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_8bbe249f5630bd615bf51d48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8e0a82b8453a7da5cb8efd99.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_af09d48c49e6742e85d9aaa8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_814a206ee91a34c865b2b30a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-100.080000px;}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:52.668000px;}
.lsb{letter-spacing:717.420000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws6{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-3.189600px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._d{width:2.142000px;}
._e{width:3.312000px;}
._19{width:5.076000px;}
._b{width:6.220800px;}
._9{width:7.387200px;}
._8{width:8.486640px;}
._17{width:9.979920px;}
._18{width:11.154240px;}
._c{width:12.366000px;}
._15{width:14.850000px;}
._11{width:16.254000px;}
._1b{width:17.658000px;}
._1c{width:18.708000px;}
._1d{width:19.842000px;}
._13{width:21.006000px;}
._14{width:22.302000px;}
._1f{width:23.328000px;}
._21{width:24.408000px;}
._20{width:25.866000px;}
._f{width:27.522000px;}
._10{width:28.824000px;}
._16{width:30.834000px;}
._12{width:33.588000px;}
._1a{width:35.100000px;}
._a{width:36.414000px;}
._1e{width:42.138000px;}
._3{width:59.652000px;}
._4{width:76.500000px;}
._5{width:202.500000px;}
._22{width:480.762000px;}
._2{width:1037.280000px;}
._6{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y3d{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y3e{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y3c{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y3f{bottom:39.780000px;}
.y1{bottom:57.600000px;}
.y3b{bottom:60.660000px;}
.y38{bottom:68.070000px;}
.y37{bottom:87.870000px;}
.y91{bottom:107.460000px;}
.y8b{bottom:107.640000px;}
.y36{bottom:107.670000px;}
.y30{bottom:114.840000px;}
.y35{bottom:127.470000px;}
.y90{bottom:131.220000px;}
.y2f{bottom:132.660000px;}
.y34{bottom:147.450000px;}
.y2e{bottom:150.480000px;}
.y33{bottom:167.250000px;}
.y2d{bottom:168.300000px;}
.y2c{bottom:186.120000px;}
.y32{bottom:197.535000px;}
.y2b{bottom:203.940000px;}
.y2a{bottom:223.950000px;}
.y29{bottom:266.970000px;}
.y31{bottom:279.720000px;}
.y28{bottom:297.750000px;}
.y3a{bottom:298.470000px;}
.y27{bottom:324.030000px;}
.y39{bottom:327.990000px;}
.y26{bottom:350.490000px;}
.y25{bottom:376.770000px;}
.y24{bottom:403.050000px;}
.y23{bottom:429.330000px;}
.y66{bottom:448.455000px;}
.y22{bottom:455.655000px;}
.y65{bottom:466.275000px;}
.y8f{bottom:469.695000px;}
.y21{bottom:482.115000px;}
.y64{bottom:484.095000px;}
.y8a{bottom:492.915000px;}
.y8e{bottom:493.455000px;}
.y63{bottom:501.915000px;}
.y20{bottom:508.395000px;}
.y89{bottom:510.915000px;}
.y62{bottom:519.915000px;}
.y88{bottom:528.735000px;}
.y1f{bottom:534.675000px;}
.y61{bottom:537.735000px;}
.y87{bottom:546.555000px;}
.y60{bottom:555.555000px;}
.y1e{bottom:556.455000px;}
.y86{bottom:564.375000px;}
.y5f{bottom:575.355000px;}
.y85{bottom:582.195000px;}
.y1d{bottom:582.915000px;}
.y5e{bottom:598.755000px;}
.y84{bottom:600.015000px;}
.y1c{bottom:613.695000px;}
.y83{bottom:618.015000px;}
.y5d{bottom:626.115000px;}
.y1b{bottom:635.475000px;}
.y82{bottom:635.835000px;}
.y5c{bottom:643.935000px;}
.y81{bottom:653.655000px;}
.y1a{bottom:661.755000px;}
.y98{bottom:664.815000px;}
.y80{bottom:671.475000px;}
.y5b{bottom:679.605000px;}
.y7f{bottom:689.325000px;}
.y19{bottom:691.125000px;}
.y97{bottom:694.365000px;}
.y5a{bottom:697.425000px;}
.y18{bottom:705.525000px;}
.y7e{bottom:707.325000px;}
.y59{bottom:715.245000px;}
.y7d{bottom:725.145000px;}
.y17{bottom:726.945000px;}
.y58{bottom:733.245000px;}
.y95{bottom:740.625000px;}
.y7c{bottom:742.965000px;}
.y16{bottom:748.725000px;}
.y57{bottom:751.065000px;}
.y7b{bottom:760.785000px;}
.y56{bottom:768.885000px;}
.y7a{bottom:778.605000px;}
.y55{bottom:786.705000px;}
.y96{bottom:795.165000px;}
.y79{bottom:798.405000px;}
.y15{bottom:799.305000px;}
.y54{bottom:813.525000px;}
.y94{bottom:815.865000px;}
.y53{bottom:831.345000px;}
.y8d{bottom:832.065000px;}
.y93{bottom:842.685000px;}
.y14{bottom:845.565000px;}
.y52{bottom:849.345000px;}
.y8c{bottom:855.645000px;}
.y78{bottom:858.165000px;}
.y92{bottom:866.445000px;}
.y51{bottom:867.165000px;}
.y13{bottom:870.765000px;}
.y77{bottom:877.965000px;}
.y50{bottom:884.985000px;}
.y12{bottom:890.565000px;}
.y76{bottom:910.770000px;}
.y11{bottom:911.130000px;}
.y4f{bottom:911.850000px;}
.y75{bottom:928.590000px;}
.y4e{bottom:929.670000px;}
.y10{bottom:931.830000px;}
.y74{bottom:946.590000px;}
.y4d{bottom:947.670000px;}
.yf{bottom:952.170000px;}
.y73{bottom:964.410000px;}
.y4c{bottom:965.490000px;}
.y4b{bottom:983.310000px;}
.y72{bottom:991.230000px;}
.ye{bottom:993.930000px;}
.y4a{bottom:1001.130000px;}
.yd{bottom:1007.790000px;}
.y71{bottom:1009.050000px;}
.yc{bottom:1021.650000px;}
.y70{bottom:1026.870000px;}
.y49{bottom:1027.950000px;}
.yb{bottom:1035.510000px;}
.y6f{bottom:1044.870000px;}
.y48{bottom:1045.770000px;}
.ya{bottom:1054.050000px;}
.y6e{bottom:1062.690000px;}
.y47{bottom:1063.770000px;}
.y6d{bottom:1080.510000px;}
.y46{bottom:1081.590000px;}
.y9{bottom:1083.210000px;}
.y6c{bottom:1098.330000px;}
.y45{bottom:1099.410000px;}
.y8{bottom:1110.930000px;}
.y44{bottom:1117.230000px;}
.y6b{bottom:1125.150000px;}
.y43{bottom:1135.050000px;}
.y7{bottom:1138.830000px;}
.y6a{bottom:1142.970000px;}
.y42{bottom:1153.080000px;}
.y69{bottom:1161.000000px;}
.y6{bottom:1170.540000px;}
.y41{bottom:1170.900000px;}
.y68{bottom:1178.820000px;}
.y40{bottom:1190.700000px;}
.y67{bottom:1196.640000px;}
.h2{height:30.955500px;}
.h12{height:31.135500px;}
.h8{height:40.985156px;}
.h3{height:52.998047px;}
.h13{height:54.421875px;}
.h14{height:55.503491px;}
.h11{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:78.367500px;}
.hc{height:82.676953px;}
.h6{height:84.898125px;}
.h7{height:90.703125px;}
.h5{height:126.984375px;}
.h10{height:224.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x14{left:10.800000px;}
.x13{left:40.140000px;}
.x1{left:45.364500px;}
.x15{left:50.940000px;}
.x5{left:54.000000px;}
.xd{left:55.980000px;}
.xf{left:65.340000px;}
.x1c{left:81.000000px;}
.x10{left:183.270000px;}
.xc{left:196.770000px;}
.x2{left:222.370500px;}
.x7{left:270.615000px;}
.x9{left:272.595000px;}
.xa{left:287.715000px;}
.x11{left:324.075000px;}
.xe{left:357.195000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x6{left:446.505000px;}
.x12{left:473.505000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x1b{left:756.150000px;}
.x4{left:767.490000px;}
.x1a{left:774.150000px;}
.x18{left:784.050000px;}
.x19{left:793.620000px;}
@media print{
.v4{vertical-align:-88.960000pt;}
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:46.816000pt;}
.lsb{letter-spacing:637.706667pt;}
.ws8{word-spacing:-48.000000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-2.835200pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._d{width:1.904000pt;}
._e{width:2.944000pt;}
._19{width:4.512000pt;}
._b{width:5.529600pt;}
._9{width:6.566400pt;}
._8{width:7.543680pt;}
._17{width:8.871040pt;}
._18{width:9.914880pt;}
._c{width:10.992000pt;}
._15{width:13.200000pt;}
._11{width:14.448000pt;}
._1b{width:15.696000pt;}
._1c{width:16.629333pt;}
._1d{width:17.637333pt;}
._13{width:18.672000pt;}
._14{width:19.824000pt;}
._1f{width:20.736000pt;}
._21{width:21.696000pt;}
._20{width:22.992000pt;}
._f{width:24.464000pt;}
._10{width:25.621333pt;}
._16{width:27.408000pt;}
._12{width:29.856000pt;}
._1a{width:31.200000pt;}
._a{width:32.368000pt;}
._1e{width:37.456000pt;}
._3{width:53.024000pt;}
._4{width:68.000000pt;}
._5{width:180.000000pt;}
._22{width:427.344000pt;}
._2{width:922.026667pt;}
._6{width:1088.266667pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y3d{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y3e{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y3c{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y3f{bottom:35.360000pt;}
.y1{bottom:51.200000pt;}
.y3b{bottom:53.920000pt;}
.y38{bottom:60.506667pt;}
.y37{bottom:78.106667pt;}
.y91{bottom:95.520000pt;}
.y8b{bottom:95.680000pt;}
.y36{bottom:95.706667pt;}
.y30{bottom:102.080000pt;}
.y35{bottom:113.306667pt;}
.y90{bottom:116.640000pt;}
.y2f{bottom:117.920000pt;}
.y34{bottom:131.066667pt;}
.y2e{bottom:133.760000pt;}
.y33{bottom:148.666667pt;}
.y2d{bottom:149.600000pt;}
.y2c{bottom:165.440000pt;}
.y32{bottom:175.586667pt;}
.y2b{bottom:181.280000pt;}
.y2a{bottom:199.066667pt;}
.y29{bottom:237.306667pt;}
.y31{bottom:248.640000pt;}
.y28{bottom:264.666667pt;}
.y3a{bottom:265.306667pt;}
.y27{bottom:288.026667pt;}
.y39{bottom:291.546667pt;}
.y26{bottom:311.546667pt;}
.y25{bottom:334.906667pt;}
.y24{bottom:358.266667pt;}
.y23{bottom:381.626667pt;}
.y66{bottom:398.626667pt;}
.y22{bottom:405.026667pt;}
.y65{bottom:414.466667pt;}
.y8f{bottom:417.506667pt;}
.y21{bottom:428.546667pt;}
.y64{bottom:430.306667pt;}
.y8a{bottom:438.146667pt;}
.y8e{bottom:438.626667pt;}
.y63{bottom:446.146667pt;}
.y20{bottom:451.906667pt;}
.y89{bottom:454.146667pt;}
.y62{bottom:462.146667pt;}
.y88{bottom:469.986667pt;}
.y1f{bottom:475.266667pt;}
.y61{bottom:477.986667pt;}
.y87{bottom:485.826667pt;}
.y60{bottom:493.826667pt;}
.y1e{bottom:494.626667pt;}
.y86{bottom:501.666667pt;}
.y5f{bottom:511.426667pt;}
.y85{bottom:517.506667pt;}
.y1d{bottom:518.146667pt;}
.y5e{bottom:532.226667pt;}
.y84{bottom:533.346667pt;}
.y1c{bottom:545.506667pt;}
.y83{bottom:549.346667pt;}
.y5d{bottom:556.546667pt;}
.y1b{bottom:564.866667pt;}
.y82{bottom:565.186667pt;}
.y5c{bottom:572.386667pt;}
.y81{bottom:581.026667pt;}
.y1a{bottom:588.226667pt;}
.y98{bottom:590.946667pt;}
.y80{bottom:596.866667pt;}
.y5b{bottom:604.093333pt;}
.y7f{bottom:612.733333pt;}
.y19{bottom:614.333333pt;}
.y97{bottom:617.213333pt;}
.y5a{bottom:619.933333pt;}
.y18{bottom:627.133333pt;}
.y7e{bottom:628.733333pt;}
.y59{bottom:635.773333pt;}
.y7d{bottom:644.573333pt;}
.y17{bottom:646.173333pt;}
.y58{bottom:651.773333pt;}
.y95{bottom:658.333333pt;}
.y7c{bottom:660.413333pt;}
.y16{bottom:665.533333pt;}
.y57{bottom:667.613333pt;}
.y7b{bottom:676.253333pt;}
.y56{bottom:683.453333pt;}
.y7a{bottom:692.093333pt;}
.y55{bottom:699.293333pt;}
.y96{bottom:706.813333pt;}
.y79{bottom:709.693333pt;}
.y15{bottom:710.493333pt;}
.y54{bottom:723.133333pt;}
.y94{bottom:725.213333pt;}
.y53{bottom:738.973333pt;}
.y8d{bottom:739.613333pt;}
.y93{bottom:749.053333pt;}
.y14{bottom:751.613333pt;}
.y52{bottom:754.973333pt;}
.y8c{bottom:760.573333pt;}
.y78{bottom:762.813333pt;}
.y92{bottom:770.173333pt;}
.y51{bottom:770.813333pt;}
.y13{bottom:774.013333pt;}
.y77{bottom:780.413333pt;}
.y50{bottom:786.653333pt;}
.y12{bottom:791.613333pt;}
.y76{bottom:809.573333pt;}
.y11{bottom:809.893333pt;}
.y4f{bottom:810.533333pt;}
.y75{bottom:825.413333pt;}
.y4e{bottom:826.373333pt;}
.y10{bottom:828.293333pt;}
.y74{bottom:841.413333pt;}
.y4d{bottom:842.373333pt;}
.yf{bottom:846.373333pt;}
.y73{bottom:857.253333pt;}
.y4c{bottom:858.213333pt;}
.y4b{bottom:874.053333pt;}
.y72{bottom:881.093333pt;}
.ye{bottom:883.493333pt;}
.y4a{bottom:889.893333pt;}
.yd{bottom:895.813333pt;}
.y71{bottom:896.933333pt;}
.yc{bottom:908.133333pt;}
.y70{bottom:912.773333pt;}
.y49{bottom:913.733333pt;}
.yb{bottom:920.453333pt;}
.y6f{bottom:928.773333pt;}
.y48{bottom:929.573333pt;}
.ya{bottom:936.933333pt;}
.y6e{bottom:944.613333pt;}
.y47{bottom:945.573333pt;}
.y6d{bottom:960.453333pt;}
.y46{bottom:961.413333pt;}
.y9{bottom:962.853333pt;}
.y6c{bottom:976.293333pt;}
.y45{bottom:977.253333pt;}
.y8{bottom:987.493333pt;}
.y44{bottom:993.093333pt;}
.y6b{bottom:1000.133333pt;}
.y43{bottom:1008.933333pt;}
.y7{bottom:1012.293333pt;}
.y6a{bottom:1015.973333pt;}
.y42{bottom:1024.960000pt;}
.y69{bottom:1032.000000pt;}
.y6{bottom:1040.480000pt;}
.y41{bottom:1040.800000pt;}
.y68{bottom:1047.840000pt;}
.y40{bottom:1058.400000pt;}
.y67{bottom:1063.680000pt;}
.h2{height:27.516000pt;}
.h12{height:27.676000pt;}
.h8{height:36.431250pt;}
.h3{height:47.109375pt;}
.h13{height:48.375000pt;}
.h14{height:49.336436pt;}
.h11{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:69.660000pt;}
.hc{height:73.490625pt;}
.h6{height:75.465000pt;}
.h7{height:80.625000pt;}
.h5{height:112.875000pt;}
.h10{height:199.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x14{left:9.600000pt;}
.x13{left:35.680000pt;}
.x1{left:40.324000pt;}
.x15{left:45.280000pt;}
.x5{left:48.000000pt;}
.xd{left:49.760000pt;}
.xf{left:58.080000pt;}
.x1c{left:72.000000pt;}
.x10{left:162.906667pt;}
.xc{left:174.906667pt;}
.x2{left:197.662667pt;}
.x7{left:240.546667pt;}
.x9{left:242.306667pt;}
.xa{left:255.746667pt;}
.x11{left:288.066667pt;}
.xe{left:317.506667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x6{left:396.893333pt;}
.x12{left:420.893333pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x1b{left:672.133333pt;}
.x4{left:682.213333pt;}
.x1a{left:688.133333pt;}
.x18{left:696.933333pt;}
.x19{left:705.440000pt;}
}




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