
    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_cc775dbabcf998b128090987.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d1550bd30aa8bdb4f3078cca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_fc041ef2d02cbb5a7c332840.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f73ed95d74412d21c8599ca4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_eb7d5bb479d4b9e1ada2551f.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ad758e352c21eea08995c815.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.034560px;}
.ls7{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:5.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;}
}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._7{margin-left:-4.287600px;}
._6{margin-left:-2.804400px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._11{width:2.020320px;}
._3{width:3.050400px;}
._8{width:4.520880px;}
._9{width:5.739120px;}
._d{width:6.804000px;}
._c{width:8.226000px;}
._b{width:9.504000px;}
._a{width:10.638000px;}
._10{width:11.934000px;}
._15{width:13.711680px;}
._16{width:14.926320px;}
._14{width:17.880240px;}
._e{width:18.954000px;}
._f{width:20.260080px;}
._1e{width:21.903120px;}
._17{width:23.713920px;}
._1d{width:25.016400px;}
._13{width:26.632080px;}
._12{width:27.918000px;}
._1f{width:29.266560px;}
._20{width:30.602880px;}
._21{width:32.030640px;}
._1b{width:38.021760px;}
._1c{width:39.118320px;}
._18{width:40.737600px;}
._1a{width:42.223680px;}
._19{width:43.277040px;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:2.880000px;}
.y2{bottom:5.430000px;}
.y3f{bottom:8.460000px;}
.y3c{bottom:18.360000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y3b{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3a{bottom:49.500000px;}
.ya{bottom:55.440000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y39{bottom:65.025000px;}
.y38{bottom:80.505000px;}
.y37{bottom:96.165000px;}
.y7f{bottom:110.376000px;}
.y36{bottom:111.645000px;}
.y86{bottom:114.876000px;}
.y7e{bottom:124.236000px;}
.y35{bottom:127.125000px;}
.y90{bottom:128.016000px;}
.y7d{bottom:128.736000px;}
.y7c{bottom:137.916000px;}
.y7b{bottom:142.416000px;}
.y34{bottom:142.605000px;}
.y8f{bottom:149.796000px;}
.y7a{bottom:151.770000px;}
.y8a{bottom:154.290000px;}
.y79{bottom:156.270000px;}
.y33{bottom:158.265000px;}
.y78{bottom:165.630000px;}
.y85{bottom:168.150000px;}
.y43{bottom:169.050000px;}
.y77{bottom:170.130000px;}
.y82{bottom:171.570000px;}
.y32{bottom:173.745000px;}
.y76{bottom:179.310000px;}
.y8e{bottom:182.010000px;}
.y75{bottom:183.810000px;}
.y31{bottom:189.225000px;}
.y42{bottom:190.830000px;}
.y74{bottom:193.170000px;}
.y81{bottom:193.350000px;}
.y73{bottom:197.670000px;}
.y30{bottom:204.705000px;}
.y72{bottom:209.550000px;}
.y41{bottom:212.610000px;}
.y80{bottom:215.310000px;}
.y2f{bottom:220.365000px;}
.y40{bottom:234.570000px;}
.y2e{bottom:235.845000px;}
.y71{bottom:237.090000px;}
.y3e{bottom:250.050000px;}
.y2d{bottom:251.325000px;}
.y70{bottom:258.870000px;}
.y2c{bottom:266.805000px;}
.y6f{bottom:280.650000px;}
.y12{bottom:281.010000px;}
.y2b{bottom:282.465000px;}
.y2a{bottom:297.945000px;}
.y6e{bottom:302.610000px;}
.y84{bottom:308.550000px;}
.y29{bottom:313.425000px;}
.y6c{bottom:324.390000px;}
.y28{bottom:328.935000px;}
.y6d{bottom:330.330000px;}
.y27{bottom:344.595000px;}
.y6b{bottom:346.215000px;}
.y89{bottom:352.155000px;}
.y26{bottom:360.075000px;}
.y6a{bottom:367.995000px;}
.y25{bottom:375.555000px;}
.y69{bottom:389.775000px;}
.y24{bottom:391.035000px;}
.y23{bottom:406.695000px;}
.y68{bottom:411.735000px;}
.y22{bottom:422.175000px;}
.y67{bottom:433.515000px;}
.y21{bottom:437.655000px;}
.y20{bottom:453.135000px;}
.y66{bottom:455.295000px;}
.y1f{bottom:468.795000px;}
.y65{bottom:477.075000px;}
.y1e{bottom:484.275000px;}
.y64{bottom:498.855000px;}
.y1d{bottom:499.755000px;}
.y88{bottom:504.795000px;}
.y1c{bottom:515.235000px;}
.y62{bottom:520.815000px;}
.y63{bottom:526.755000px;}
.y1b{bottom:530.715000px;}
.y61{bottom:542.595000px;}
.y1a{bottom:546.375000px;}
.y19{bottom:561.855000px;}
.y60{bottom:564.375000px;}
.y18{bottom:577.335000px;}
.y5f{bottom:586.155000px;}
.y8d{bottom:592.095000px;}
.y17{bottom:592.860000px;}
.y5e{bottom:608.145000px;}
.y16{bottom:608.520000px;}
.y15{bottom:624.000000px;}
.y5c{bottom:629.925000px;}
.y5d{bottom:635.865000px;}
.y14{bottom:639.480000px;}
.y5b{bottom:651.705000px;}
.y13{bottom:654.960000px;}
.y8c{bottom:657.645000px;}
.y5a{bottom:673.485000px;}
.y59{bottom:695.265000px;}
.y58{bottom:717.225000px;}
.y83{bottom:723.165000px;}
.y57{bottom:739.005000px;}
.y56{bottom:760.785000px;}
.y55{bottom:782.565000px;}
.y54{bottom:804.525000px;}
.y52{bottom:826.305000px;}
.y53{bottom:832.245000px;}
.y51{bottom:848.085000px;}
.y87{bottom:854.025000px;}
.y50{bottom:869.865000px;}
.y4f{bottom:891.690000px;}
.y4e{bottom:913.650000px;}
.y4d{bottom:935.430000px;}
.y11{bottom:952.350000px;}
.y4b{bottom:957.210000px;}
.y4c{bottom:963.150000px;}
.y10{bottom:971.250000px;}
.y4a{bottom:978.990000px;}
.yf{bottom:992.850000px;}
.y49{bottom:1000.950000px;}
.ye{bottom:1014.810000px;}
.y48{bottom:1022.730000px;}
.yd{bottom:1036.590000px;}
.y47{bottom:1044.510000px;}
.yc{bottom:1059.630000px;}
.y46{bottom:1066.290000px;}
.y8b{bottom:1072.230000px;}
.yb{bottom:1085.370000px;}
.y44{bottom:1088.070000px;}
.y45{bottom:1094.010000px;}
.y9{bottom:1108.590000px;}
.y1{bottom:1132.350000px;}
.h12{height:21.114844px;}
.h11{height:29.158594px;}
.h10{height:30.960000px;}
.h13{height:33.683203px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h14{height:39.760312px;}
.h7{height:40.773164px;}
.h3{height:42.164648px;}
.hf{height:44.507812px;}
.hb{height:46.251562px;}
.ha{height:46.736719px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h6{height:60.855469px;}
.h2{height:77.436000px;}
.hc{height:667.545000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:30.600000px;}
.x2{left:59.574000px;}
.x1{left:108.036000px;}
.xb{left:110.555987px;}
.x20{left:111.815987px;}
.x9{left:114.335987px;}
.xf{left:116.136000px;}
.x6{left:131.805000px;}
.x37{left:150.509987px;}
.x18{left:158.969973px;}
.x13{left:162.029987px;}
.x19{left:164.189987px;}
.x31{left:173.909987px;}
.x7{left:178.425000px;}
.x3{left:180.030000px;}
.x1d{left:215.309973px;}
.x1e{left:220.529987px;}
.x29{left:264.089973px;}
.x2a{left:274.529987px;}
.xe{left:313.094987px;}
.x1f{left:324.074987px;}
.xa{left:325.694987px;}
.x14{left:358.454973px;}
.x15{left:363.674987px;}
.xd{left:370.334987px;}
.x1a{left:375.374987px;}
.x27{left:427.574973px;}
.x32{left:430.454973px;}
.x28{left:438.014987px;}
.x33{left:440.894987px;}
.xc{left:446.474987px;}
.x2d{left:452.774973px;}
.x2e{left:463.214987px;}
.x8{left:503.204987px;}
.x23{left:543.884973px;}
.x24{left:549.104987px;}
.x5{left:554.685000px;}
.x2b{left:560.084973px;}
.x16{left:563.324973px;}
.x17{left:568.544987px;}
.x2c{left:570.524987px;}
.x10{left:575.925000px;}
.x1b{left:605.624973px;}
.x1c{left:610.844987px;}
.x25{left:615.344973px;}
.x26{left:620.564987px;}
.x2f{left:624.884973px;}
.x30{left:635.324987px;}
.x36{left:645.404987px;}
.x21{left:682.889973px;}
.x22{left:688.109987px;}
.x34{left:774.689973px;}
.x11{left:777.930000px;}
.x35{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:4.640000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._7{margin-left:-3.811200pt;}
._6{margin-left:-2.492800pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._11{width:1.795840pt;}
._3{width:2.711467pt;}
._8{width:4.018560pt;}
._9{width:5.101440pt;}
._d{width:6.048000pt;}
._c{width:7.312000pt;}
._b{width:8.448000pt;}
._a{width:9.456000pt;}
._10{width:10.608000pt;}
._15{width:12.188160pt;}
._16{width:13.267840pt;}
._14{width:15.893547pt;}
._e{width:16.848000pt;}
._f{width:18.008960pt;}
._1e{width:19.469440pt;}
._17{width:21.079040pt;}
._1d{width:22.236800pt;}
._13{width:23.672960pt;}
._12{width:24.816000pt;}
._1f{width:26.014720pt;}
._20{width:27.202560pt;}
._21{width:28.471680pt;}
._1b{width:33.797120pt;}
._1c{width:34.771840pt;}
._18{width:36.211200pt;}
._1a{width:37.532160pt;}
._19{width:38.468480pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.560000pt;}
.y2{bottom:4.826667pt;}
.y3f{bottom:7.520000pt;}
.y3c{bottom:16.320000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y3b{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3a{bottom:44.000000pt;}
.ya{bottom:49.280000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y39{bottom:57.800000pt;}
.y38{bottom:71.560000pt;}
.y37{bottom:85.480000pt;}
.y7f{bottom:98.112000pt;}
.y36{bottom:99.240000pt;}
.y86{bottom:102.112000pt;}
.y7e{bottom:110.432000pt;}
.y35{bottom:113.000000pt;}
.y90{bottom:113.792000pt;}
.y7d{bottom:114.432000pt;}
.y7c{bottom:122.592000pt;}
.y7b{bottom:126.592000pt;}
.y34{bottom:126.760000pt;}
.y8f{bottom:133.152000pt;}
.y7a{bottom:134.906667pt;}
.y8a{bottom:137.146667pt;}
.y79{bottom:138.906667pt;}
.y33{bottom:140.680000pt;}
.y78{bottom:147.226667pt;}
.y85{bottom:149.466667pt;}
.y43{bottom:150.266667pt;}
.y77{bottom:151.226667pt;}
.y82{bottom:152.506667pt;}
.y32{bottom:154.440000pt;}
.y76{bottom:159.386667pt;}
.y8e{bottom:161.786667pt;}
.y75{bottom:163.386667pt;}
.y31{bottom:168.200000pt;}
.y42{bottom:169.626667pt;}
.y74{bottom:171.706667pt;}
.y81{bottom:171.866667pt;}
.y73{bottom:175.706667pt;}
.y30{bottom:181.960000pt;}
.y72{bottom:186.266667pt;}
.y41{bottom:188.986667pt;}
.y80{bottom:191.386667pt;}
.y2f{bottom:195.880000pt;}
.y40{bottom:208.506667pt;}
.y2e{bottom:209.640000pt;}
.y71{bottom:210.746667pt;}
.y3e{bottom:222.266667pt;}
.y2d{bottom:223.400000pt;}
.y70{bottom:230.106667pt;}
.y2c{bottom:237.160000pt;}
.y6f{bottom:249.466667pt;}
.y12{bottom:249.786667pt;}
.y2b{bottom:251.080000pt;}
.y2a{bottom:264.840000pt;}
.y6e{bottom:268.986667pt;}
.y84{bottom:274.266667pt;}
.y29{bottom:278.600000pt;}
.y6c{bottom:288.346667pt;}
.y28{bottom:292.386667pt;}
.y6d{bottom:293.626667pt;}
.y27{bottom:306.306667pt;}
.y6b{bottom:307.746667pt;}
.y89{bottom:313.026667pt;}
.y26{bottom:320.066667pt;}
.y6a{bottom:327.106667pt;}
.y25{bottom:333.826667pt;}
.y69{bottom:346.466667pt;}
.y24{bottom:347.586667pt;}
.y23{bottom:361.506667pt;}
.y68{bottom:365.986667pt;}
.y22{bottom:375.266667pt;}
.y67{bottom:385.346667pt;}
.y21{bottom:389.026667pt;}
.y20{bottom:402.786667pt;}
.y66{bottom:404.706667pt;}
.y1f{bottom:416.706667pt;}
.y65{bottom:424.066667pt;}
.y1e{bottom:430.466667pt;}
.y64{bottom:443.426667pt;}
.y1d{bottom:444.226667pt;}
.y88{bottom:448.706667pt;}
.y1c{bottom:457.986667pt;}
.y62{bottom:462.946667pt;}
.y63{bottom:468.226667pt;}
.y1b{bottom:471.746667pt;}
.y61{bottom:482.306667pt;}
.y1a{bottom:485.666667pt;}
.y19{bottom:499.426667pt;}
.y60{bottom:501.666667pt;}
.y18{bottom:513.186667pt;}
.y5f{bottom:521.026667pt;}
.y8d{bottom:526.306667pt;}
.y17{bottom:526.986667pt;}
.y5e{bottom:540.573333pt;}
.y16{bottom:540.906667pt;}
.y15{bottom:554.666667pt;}
.y5c{bottom:559.933333pt;}
.y5d{bottom:565.213333pt;}
.y14{bottom:568.426667pt;}
.y5b{bottom:579.293333pt;}
.y13{bottom:582.186667pt;}
.y8c{bottom:584.573333pt;}
.y5a{bottom:598.653333pt;}
.y59{bottom:618.013333pt;}
.y58{bottom:637.533333pt;}
.y83{bottom:642.813333pt;}
.y57{bottom:656.893333pt;}
.y56{bottom:676.253333pt;}
.y55{bottom:695.613333pt;}
.y54{bottom:715.133333pt;}
.y52{bottom:734.493333pt;}
.y53{bottom:739.773333pt;}
.y51{bottom:753.853333pt;}
.y87{bottom:759.133333pt;}
.y50{bottom:773.213333pt;}
.y4f{bottom:792.613333pt;}
.y4e{bottom:812.133333pt;}
.y4d{bottom:831.493333pt;}
.y11{bottom:846.533333pt;}
.y4b{bottom:850.853333pt;}
.y4c{bottom:856.133333pt;}
.y10{bottom:863.333333pt;}
.y4a{bottom:870.213333pt;}
.yf{bottom:882.533333pt;}
.y49{bottom:889.733333pt;}
.ye{bottom:902.053333pt;}
.y48{bottom:909.093333pt;}
.yd{bottom:921.413333pt;}
.y47{bottom:928.453333pt;}
.yc{bottom:941.893333pt;}
.y46{bottom:947.813333pt;}
.y8b{bottom:953.093333pt;}
.yb{bottom:964.773333pt;}
.y44{bottom:967.173333pt;}
.y45{bottom:972.453333pt;}
.y9{bottom:985.413333pt;}
.y1{bottom:1006.533333pt;}
.h12{height:18.768750pt;}
.h11{height:25.918750pt;}
.h10{height:27.520000pt;}
.h13{height:29.940625pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h14{height:35.342500pt;}
.h7{height:36.242812pt;}
.h3{height:37.479688pt;}
.hf{height:39.562500pt;}
.hb{height:41.112500pt;}
.ha{height:41.543750pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h6{height:54.093750pt;}
.h2{height:68.832000pt;}
.hc{height:593.373333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:27.200000pt;}
.x2{left:52.954667pt;}
.x1{left:96.032000pt;}
.xb{left:98.271988pt;}
.x20{left:99.391988pt;}
.x9{left:101.631988pt;}
.xf{left:103.232000pt;}
.x6{left:117.160000pt;}
.x37{left:133.786655pt;}
.x18{left:141.306643pt;}
.x13{left:144.026655pt;}
.x19{left:145.946655pt;}
.x31{left:154.586655pt;}
.x7{left:158.600000pt;}
.x3{left:160.026667pt;}
.x1d{left:191.386643pt;}
.x1e{left:196.026655pt;}
.x29{left:234.746643pt;}
.x2a{left:244.026655pt;}
.xe{left:278.306655pt;}
.x1f{left:288.066655pt;}
.xa{left:289.506655pt;}
.x14{left:318.626643pt;}
.x15{left:323.266655pt;}
.xd{left:329.186655pt;}
.x1a{left:333.666655pt;}
.x27{left:380.066643pt;}
.x32{left:382.626643pt;}
.x28{left:389.346655pt;}
.x33{left:391.906655pt;}
.xc{left:396.866655pt;}
.x2d{left:402.466643pt;}
.x2e{left:411.746655pt;}
.x8{left:447.293322pt;}
.x23{left:483.453310pt;}
.x24{left:488.093322pt;}
.x5{left:493.053333pt;}
.x2b{left:497.853310pt;}
.x16{left:500.733310pt;}
.x17{left:505.373322pt;}
.x2c{left:507.133322pt;}
.x10{left:511.933333pt;}
.x1b{left:538.333310pt;}
.x1c{left:542.973322pt;}
.x25{left:546.973310pt;}
.x26{left:551.613322pt;}
.x2f{left:555.453310pt;}
.x30{left:564.733322pt;}
.x36{left:573.693322pt;}
.x21{left:607.013310pt;}
.x22{left:611.653322pt;}
.x34{left:688.613310pt;}
.x11{left:691.493333pt;}
.x35{left:697.893322pt;}
}




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