
    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_d5314daf0bbe35831e593e63.woff')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_ecd90567340801f6a3a5beb8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.372070;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_2f6e6366d2195b954f02dbb5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060000;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_6245d1443e1b187b30d63537.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_138eb837d06701aa26674e09.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_b4d83eb7365f1cdb27665092.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5c7c81eb00c0b969c5e431e1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_180cbeae1446b1b5aafdda44.woff')format("woff");}.ff8{font-family:ff8;line-height:1.060000;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:ff9;src:url('chunks/assets/font_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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);}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305400px;}
.ls5{letter-spacing:30.545280px;}
.ls7{letter-spacing:34.865280px;}
.ls9{letter-spacing:38.465280px;}
.ls0{letter-spacing:75.185280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.720120px;}
.ws6{word-spacing:-18.676920px;}
.ws0{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws1{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.ws7{word-spacing:-14.994000px;}
.ws8{word-spacing:-14.400000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-5.621280px;}
._16{margin-left:-4.040640px;}
._9{margin-left:-2.673600px;}
._0{margin-left:-1.452480px;}
._4{width:1.053360px;}
._10{width:2.064000px;}
._15{width:3.274080px;}
._b{width:4.491600px;}
._a{width:5.497920px;}
._d{width:6.822720px;}
._12{width:8.053440px;}
._11{width:9.065280px;}
._c{width:10.068480px;}
._6{width:11.082240px;}
._5{width:12.254400px;}
._7{width:14.101920px;}
._14{width:15.397920px;}
._13{width:16.626240px;}
._1a{width:19.668480px;}
._3{width:21.185280px;}
._1c{width:22.208880px;}
._18{width:23.713920px;}
._19{width:24.901440px;}
._1d{width:26.562240px;}
._8{width:33.446400px;}
._1b{width:35.570880px;}
._e{width:47.969280px;}
._f{width:845.885280px;}
._1{width:913.445280px;}
._2{width:1342.685280px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y28{bottom:15.300000px;}
.y4e{bottom:95.616000px;}
.y4d{bottom:109.116000px;}
.ya5{bottom:116.856000px;}
.y52{bottom:118.836000px;}
.y77{bottom:119.736000px;}
.y51{bottom:123.336000px;}
.y50{bottom:137.196000px;}
.y4c{bottom:137.556000px;}
.ya4{bottom:140.076000px;}
.y26{bottom:140.256000px;}
.y59{bottom:142.236000px;}
.y76{bottom:143.136000px;}
.y58{bottom:146.736000px;}
.y57{bottom:160.590000px;}
.ya3{bottom:163.290000px;}
.y4b{bottom:166.170000px;}
.y75{bottom:166.350000px;}
.y25{bottom:168.690000px;}
.ya2{bottom:186.690000px;}
.y54{bottom:186.870000px;}
.y74{bottom:189.750000px;}
.y4a{bottom:194.610000px;}
.y24{bottom:197.130000px;}
.ya1{bottom:210.270000px;}
.y73{bottom:212.970000px;}
.y49{bottom:223.050000px;}
.y23{bottom:225.570000px;}
.ya0{bottom:233.670000px;}
.y72{bottom:236.190000px;}
.y48{bottom:251.490000px;}
.y22{bottom:254.010000px;}
.y9f{bottom:256.890000px;}
.y71{bottom:259.590000px;}
.y47{bottom:279.930000px;}
.y9e{bottom:280.290000px;}
.y21{bottom:282.450000px;}
.y70{bottom:282.810000px;}
.y9d{bottom:303.510000px;}
.y6f{bottom:306.030000px;}
.y46{bottom:308.370000px;}
.y20{bottom:310.890000px;}
.y9c{bottom:326.730000px;}
.y6e{bottom:329.430000px;}
.y45{bottom:336.855000px;}
.y1f{bottom:339.375000px;}
.y56{bottom:342.795000px;}
.y9b{bottom:350.175000px;}
.y6d{bottom:352.695000px;}
.y44{bottom:365.295000px;}
.y1e{bottom:367.995000px;}
.y9a{bottom:373.395000px;}
.y6c{bottom:375.915000px;}
.y43{bottom:393.735000px;}
.y1d{bottom:396.435000px;}
.y99{bottom:396.615000px;}
.y6b{bottom:399.315000px;}
.y98{bottom:420.015000px;}
.y42{bottom:422.355000px;}
.y6a{bottom:422.535000px;}
.y1c{bottom:424.875000px;}
.y97{bottom:443.235000px;}
.y69{bottom:445.935000px;}
.y41{bottom:450.795000px;}
.y1b{bottom:453.315000px;}
.y96{bottom:466.635000px;}
.y68{bottom:469.155000px;}
.y40{bottom:479.235000px;}
.y1a{bottom:481.755000px;}
.y95{bottom:489.855000px;}
.y67{bottom:492.375000px;}
.y3f{bottom:507.675000px;}
.y19{bottom:510.195000px;}
.y94{bottom:513.075000px;}
.y66{bottom:515.775000px;}
.y3e{bottom:536.115000px;}
.y93{bottom:536.475000px;}
.y18{bottom:538.635000px;}
.y65{bottom:538.995000px;}
.y92{bottom:559.695000px;}
.y64{bottom:562.215000px;}
.y3d{bottom:564.555000px;}
.y17{bottom:567.075000px;}
.y91{bottom:582.915000px;}
.y63{bottom:585.615000px;}
.y3c{bottom:592.995000px;}
.y16{bottom:595.515000px;}
.y90{bottom:606.345000px;}
.y62{bottom:608.865000px;}
.y3b{bottom:621.465000px;}
.y15{bottom:626.505000px;}
.y8f{bottom:629.565000px;}
.y61{bottom:632.265000px;}
.y3a{bottom:649.905000px;}
.y8e{bottom:652.785000px;}
.y14{bottom:655.125000px;}
.y60{bottom:655.485000px;}
.y8d{bottom:676.185000px;}
.y39{bottom:678.525000px;}
.y5f{bottom:678.705000px;}
.y13{bottom:681.405000px;}
.y8c{bottom:699.405000px;}
.y5e{bottom:702.105000px;}
.y12{bottom:704.625000px;}
.y38{bottom:706.965000px;}
.y8b{bottom:722.805000px;}
.y5d{bottom:725.325000px;}
.y11{bottom:730.185000px;}
.y37{bottom:735.405000px;}
.y4f{bottom:741.345000px;}
.y8a{bottom:746.025000px;}
.y5c{bottom:748.545000px;}
.y10{bottom:758.625000px;}
.y36{bottom:763.845000px;}
.y89{bottom:769.245000px;}
.y5b{bottom:771.945000px;}
.yf{bottom:784.905000px;}
.y35{bottom:792.285000px;}
.y88{bottom:792.645000px;}
.y5a{bottom:795.165000px;}
.ye{bottom:808.125000px;}
.y87{bottom:815.865000px;}
.y34{bottom:820.725000px;}
.yd{bottom:833.685000px;}
.y86{bottom:839.085000px;}
.y33{bottom:849.165000px;}
.y55{bottom:855.105000px;}
.yc{bottom:862.125000px;}
.y85{bottom:862.485000px;}
.y32{bottom:877.650000px;}
.y84{bottom:885.750000px;}
.yb{bottom:888.450000px;}
.y31{bottom:906.090000px;}
.y83{bottom:908.970000px;}
.ya{bottom:911.670000px;}
.y82{bottom:932.370000px;}
.y30{bottom:934.710000px;}
.y9{bottom:937.230000px;}
.y81{bottom:955.590000px;}
.y2f{bottom:963.150000px;}
.y8{bottom:965.670000px;}
.y80{bottom:978.990000px;}
.y2e{bottom:991.590000px;}
.y7{bottom:994.110000px;}
.y27{bottom:999.690000px;}
.y7f{bottom:1002.210000px;}
.y2d{bottom:1020.030000px;}
.y6{bottom:1022.550000px;}
.y7e{bottom:1025.430000px;}
.y2c{bottom:1048.470000px;}
.y7d{bottom:1048.830000px;}
.y5{bottom:1050.990000px;}
.y53{bottom:1054.410000px;}
.y7c{bottom:1072.050000px;}
.y2b{bottom:1076.910000px;}
.y4{bottom:1085.370000px;}
.y7b{bottom:1095.270000px;}
.y2a{bottom:1105.350000px;}
.y7a{bottom:1118.670000px;}
.y3{bottom:1126.770000px;}
.y29{bottom:1133.790000px;}
.y79{bottom:1141.920000px;}
.y2{bottom:1162.440000px;}
.y78{bottom:1165.320000px;}
.y1{bottom:1204.920000px;}
.h9{height:32.040000px;}
.hc{height:37.546875px;}
.hb{height:43.554375px;}
.h5{height:48.436523px;}
.he{height:49.809375px;}
.h6{height:56.320312px;}
.hd{height:56.957344px;}
.ha{height:58.291200px;}
.h8{height:59.415469px;}
.h2{height:66.078281px;}
.h7{height:68.956875px;}
.h3{height:69.086250px;}
.h4{height:99.687656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:597.885000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:52.554000px;}
.x1{left:84.959987px;}
.x13{left:90.035987px;}
.xa{left:111.995987px;}
.x19{left:121.895987px;}
.x4{left:127.475987px;}
.xb{left:138.995987px;}
.x5{left:148.536000px;}
.x3{left:162.209987px;}
.xc{left:228.089987px;}
.x11{left:241.949987px;}
.x2{left:245.009987px;}
.x17{left:261.749973px;}
.x18{left:267.509987px;}
.x1c{left:296.534987px;}
.x12{left:301.034987px;}
.x9{left:325.874987px;}
.x8{left:330.914987px;}
.xd{left:347.834987px;}
.x7{left:398.234987px;}
.x1d{left:401.474987px;}
.x1a{left:440.894973px;}
.x1b{left:446.654987px;}
.xf{left:494.024973px;}
.x10{left:499.784987px;}
.xe{left:658.049987px;}
.x14{left:663.809973px;}
.x15{left:669.569987px;}
.x16{left:805.109987px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271467pt;}
.ls5{letter-spacing:27.151360pt;}
.ls7{letter-spacing:30.991360pt;}
.ls9{letter-spacing:34.191360pt;}
.ls0{letter-spacing:66.831360pt;}
.ws4{word-spacing:-16.640107pt;}
.ws6{word-spacing:-16.601707pt;}
.ws0{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws1{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws7{word-spacing:-13.328000pt;}
.ws8{word-spacing:-12.800000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-4.996693pt;}
._16{margin-left:-3.591680pt;}
._9{margin-left:-2.376533pt;}
._0{margin-left:-1.291093pt;}
._4{width:0.936320pt;}
._10{width:1.834667pt;}
._15{width:2.910293pt;}
._b{width:3.992533pt;}
._a{width:4.887040pt;}
._d{width:6.064640pt;}
._12{width:7.158613pt;}
._11{width:8.058027pt;}
._c{width:8.949760pt;}
._6{width:9.850880pt;}
._5{width:10.892800pt;}
._7{width:12.535040pt;}
._14{width:13.687040pt;}
._13{width:14.778880pt;}
._1a{width:17.483093pt;}
._3{width:18.831360pt;}
._1c{width:19.741227pt;}
._18{width:21.079040pt;}
._19{width:22.134613pt;}
._1d{width:23.610880pt;}
._8{width:29.730133pt;}
._1b{width:31.618560pt;}
._e{width:42.639360pt;}
._f{width:751.898027pt;}
._1{width:811.951360pt;}
._2{width:1193.498027pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:13.600000pt;}
.y4e{bottom:84.992000pt;}
.y4d{bottom:96.992000pt;}
.ya5{bottom:103.872000pt;}
.y52{bottom:105.632000pt;}
.y77{bottom:106.432000pt;}
.y51{bottom:109.632000pt;}
.y50{bottom:121.952000pt;}
.y4c{bottom:122.272000pt;}
.ya4{bottom:124.512000pt;}
.y26{bottom:124.672000pt;}
.y59{bottom:126.432000pt;}
.y76{bottom:127.232000pt;}
.y58{bottom:130.432000pt;}
.y57{bottom:142.746667pt;}
.ya3{bottom:145.146667pt;}
.y4b{bottom:147.706667pt;}
.y75{bottom:147.866667pt;}
.y25{bottom:149.946667pt;}
.ya2{bottom:165.946667pt;}
.y54{bottom:166.106667pt;}
.y74{bottom:168.666667pt;}
.y4a{bottom:172.986667pt;}
.y24{bottom:175.226667pt;}
.ya1{bottom:186.906667pt;}
.y73{bottom:189.306667pt;}
.y49{bottom:198.266667pt;}
.y23{bottom:200.506667pt;}
.ya0{bottom:207.706667pt;}
.y72{bottom:209.946667pt;}
.y48{bottom:223.546667pt;}
.y22{bottom:225.786667pt;}
.y9f{bottom:228.346667pt;}
.y71{bottom:230.746667pt;}
.y47{bottom:248.826667pt;}
.y9e{bottom:249.146667pt;}
.y21{bottom:251.066667pt;}
.y70{bottom:251.386667pt;}
.y9d{bottom:269.786667pt;}
.y6f{bottom:272.026667pt;}
.y46{bottom:274.106667pt;}
.y20{bottom:276.346667pt;}
.y9c{bottom:290.426667pt;}
.y6e{bottom:292.826667pt;}
.y45{bottom:299.426667pt;}
.y1f{bottom:301.666667pt;}
.y56{bottom:304.706667pt;}
.y9b{bottom:311.266667pt;}
.y6d{bottom:313.506667pt;}
.y44{bottom:324.706667pt;}
.y1e{bottom:327.106667pt;}
.y9a{bottom:331.906667pt;}
.y6c{bottom:334.146667pt;}
.y43{bottom:349.986667pt;}
.y1d{bottom:352.386667pt;}
.y99{bottom:352.546667pt;}
.y6b{bottom:354.946667pt;}
.y98{bottom:373.346667pt;}
.y42{bottom:375.426667pt;}
.y6a{bottom:375.586667pt;}
.y1c{bottom:377.666667pt;}
.y97{bottom:393.986667pt;}
.y69{bottom:396.386667pt;}
.y41{bottom:400.706667pt;}
.y1b{bottom:402.946667pt;}
.y96{bottom:414.786667pt;}
.y68{bottom:417.026667pt;}
.y40{bottom:425.986667pt;}
.y1a{bottom:428.226667pt;}
.y95{bottom:435.426667pt;}
.y67{bottom:437.666667pt;}
.y3f{bottom:451.266667pt;}
.y19{bottom:453.506667pt;}
.y94{bottom:456.066667pt;}
.y66{bottom:458.466667pt;}
.y3e{bottom:476.546667pt;}
.y93{bottom:476.866667pt;}
.y18{bottom:478.786667pt;}
.y65{bottom:479.106667pt;}
.y92{bottom:497.506667pt;}
.y64{bottom:499.746667pt;}
.y3d{bottom:501.826667pt;}
.y17{bottom:504.066667pt;}
.y91{bottom:518.146667pt;}
.y63{bottom:520.546667pt;}
.y3c{bottom:527.106667pt;}
.y16{bottom:529.346667pt;}
.y90{bottom:538.973333pt;}
.y62{bottom:541.213333pt;}
.y3b{bottom:552.413333pt;}
.y15{bottom:556.893333pt;}
.y8f{bottom:559.613333pt;}
.y61{bottom:562.013333pt;}
.y3a{bottom:577.693333pt;}
.y8e{bottom:580.253333pt;}
.y14{bottom:582.333333pt;}
.y60{bottom:582.653333pt;}
.y8d{bottom:601.053333pt;}
.y39{bottom:603.133333pt;}
.y5f{bottom:603.293333pt;}
.y13{bottom:605.693333pt;}
.y8c{bottom:621.693333pt;}
.y5e{bottom:624.093333pt;}
.y12{bottom:626.333333pt;}
.y38{bottom:628.413333pt;}
.y8b{bottom:642.493333pt;}
.y5d{bottom:644.733333pt;}
.y11{bottom:649.053333pt;}
.y37{bottom:653.693333pt;}
.y4f{bottom:658.973333pt;}
.y8a{bottom:663.133333pt;}
.y5c{bottom:665.373333pt;}
.y10{bottom:674.333333pt;}
.y36{bottom:678.973333pt;}
.y89{bottom:683.773333pt;}
.y5b{bottom:686.173333pt;}
.yf{bottom:697.693333pt;}
.y35{bottom:704.253333pt;}
.y88{bottom:704.573333pt;}
.y5a{bottom:706.813333pt;}
.ye{bottom:718.333333pt;}
.y87{bottom:725.213333pt;}
.y34{bottom:729.533333pt;}
.yd{bottom:741.053333pt;}
.y86{bottom:745.853333pt;}
.y33{bottom:754.813333pt;}
.y55{bottom:760.093333pt;}
.yc{bottom:766.333333pt;}
.y85{bottom:766.653333pt;}
.y32{bottom:780.133333pt;}
.y84{bottom:787.333333pt;}
.yb{bottom:789.733333pt;}
.y31{bottom:805.413333pt;}
.y83{bottom:807.973333pt;}
.ya{bottom:810.373333pt;}
.y82{bottom:828.773333pt;}
.y30{bottom:830.853333pt;}
.y9{bottom:833.093333pt;}
.y81{bottom:849.413333pt;}
.y2f{bottom:856.133333pt;}
.y8{bottom:858.373333pt;}
.y80{bottom:870.213333pt;}
.y2e{bottom:881.413333pt;}
.y7{bottom:883.653333pt;}
.y27{bottom:888.613333pt;}
.y7f{bottom:890.853333pt;}
.y2d{bottom:906.693333pt;}
.y6{bottom:908.933333pt;}
.y7e{bottom:911.493333pt;}
.y2c{bottom:931.973333pt;}
.y7d{bottom:932.293333pt;}
.y5{bottom:934.213333pt;}
.y53{bottom:937.253333pt;}
.y7c{bottom:952.933333pt;}
.y2b{bottom:957.253333pt;}
.y4{bottom:964.773333pt;}
.y7b{bottom:973.573333pt;}
.y2a{bottom:982.533333pt;}
.y7a{bottom:994.373333pt;}
.y3{bottom:1001.573333pt;}
.y29{bottom:1007.813333pt;}
.y79{bottom:1015.040000pt;}
.y2{bottom:1033.280000pt;}
.y78{bottom:1035.840000pt;}
.y1{bottom:1071.040000pt;}
.h9{height:28.480000pt;}
.hc{height:33.375000pt;}
.hb{height:38.715000pt;}
.h5{height:43.054688pt;}
.he{height:44.275000pt;}
.h6{height:50.062500pt;}
.hd{height:50.628750pt;}
.ha{height:51.814400pt;}
.h8{height:52.813750pt;}
.h2{height:58.736250pt;}
.h7{height:61.295000pt;}
.h3{height:61.410000pt;}
.h4{height:88.611250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:531.453333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:46.714667pt;}
.x1{left:75.519988pt;}
.x13{left:80.031988pt;}
.xa{left:99.551988pt;}
.x19{left:108.351988pt;}
.x4{left:113.311988pt;}
.xb{left:123.551988pt;}
.x5{left:132.032000pt;}
.x3{left:144.186655pt;}
.xc{left:202.746655pt;}
.x11{left:215.066655pt;}
.x2{left:217.786655pt;}
.x17{left:232.666643pt;}
.x18{left:237.786655pt;}
.x1c{left:263.586655pt;}
.x12{left:267.586655pt;}
.x9{left:289.666655pt;}
.x8{left:294.146655pt;}
.xd{left:309.186655pt;}
.x7{left:353.986655pt;}
.x1d{left:356.866655pt;}
.x1a{left:391.906643pt;}
.x1b{left:397.026655pt;}
.xf{left:439.133310pt;}
.x10{left:444.253322pt;}
.xe{left:584.933322pt;}
.x14{left:590.053310pt;}
.x15{left:595.173322pt;}
.x16{left:715.653322pt;}
}




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