
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_aaa00a01ac9c0f6ab779da59.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e9ad355ac32581de83f507b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073242;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_8748f3f1f1bfabd3e3c35974.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eb54cafec886b4594539c7a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_bd24d5adaf406052a860e085.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ddb368a45f8cf8116816623.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_33f468a71d85454a5654a486.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.178560px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:24.480000px;}
.ls9{letter-spacing:95.904000px;}
.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;}
}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-5.446080px;}
._6{margin-left:-4.345920px;}
._5{margin-left:-2.568960px;}
._0{margin-left:-1.232640px;}
._1{width:1.015920px;}
._2{width:2.046240px;}
._3{width:3.288000px;}
._4{width:4.360800px;}
._c{width:6.096000px;}
._7{width:7.617600px;}
._9{width:9.432000px;}
._12{width:10.560720px;}
._f{width:11.664000px;}
._d{width:13.392720px;}
._e{width:14.662560px;}
._13{width:16.513440px;}
._19{width:19.288080px;}
._14{width:20.376000px;}
._15{width:21.600000px;}
._11{width:22.752000px;}
._10{width:23.904000px;}
._a{width:25.632000px;}
._b{width:26.724000px;}
._17{width:28.445520px;}
._16{width:29.888640px;}
._18{width:1563.396000px;}
.fc4{color:transparent;}
.fc3{color:rgb(131,60,11);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y10{bottom:-15.480000px;}
.yd{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.060000px;}
.y5{bottom:3.420000px;}
.yf{bottom:3.780000px;}
.y5e{bottom:7.020000px;}
.y61{bottom:7.200000px;}
.yb{bottom:15.120000px;}
.ya{bottom:27.180000px;}
.y5d{bottom:30.780000px;}
.y60{bottom:30.960000px;}
.y3{bottom:34.236000px;}
.y9{bottom:39.240000px;}
.y4{bottom:50.076000px;}
.y6{bottom:50.436000px;}
.y8{bottom:52.920000px;}
.y2{bottom:53.496000px;}
.y7a{bottom:92.196000px;}
.y91{bottom:99.756000px;}
.ya7{bottom:114.336000px;}
.y79{bottom:115.956000px;}
.y90{bottom:123.516000px;}
.y3e{bottom:134.136000px;}
.ya6{bottom:138.096000px;}
.y78{bottom:139.896000px;}
.y8f{bottom:147.456000px;}
.yb5{bottom:150.150000px;}
.y3d{bottom:157.890000px;}
.ya5{bottom:162.030000px;}
.y77{bottom:163.650000px;}
.y8e{bottom:171.210000px;}
.yb4{bottom:174.090000px;}
.y3c{bottom:181.650000px;}
.ya4{bottom:185.790000px;}
.y76{bottom:187.410000px;}
.y8d{bottom:194.970000px;}
.yb3{bottom:197.850000px;}
.y3b{bottom:205.410000px;}
.ya3{bottom:209.550000px;}
.y75{bottom:211.170000px;}
.y8c{bottom:218.730000px;}
.yb2{bottom:221.610000px;}
.y3a{bottom:229.350000px;}
.ya2{bottom:233.310000px;}
.y74{bottom:235.110000px;}
.y8b{bottom:242.490000px;}
.yb1{bottom:245.370000px;}
.y39{bottom:253.110000px;}
.y73{bottom:254.910000px;}
.ya1{bottom:257.250000px;}
.y8a{bottom:266.430000px;}
.yb0{bottom:266.610000px;}
.y38{bottom:276.870000px;}
.ya0{bottom:281.010000px;}
.y89{bottom:290.235000px;}
.yaf{bottom:293.475000px;}
.y37{bottom:300.675000px;}
.y9f{bottom:300.855000px;}
.y88{bottom:310.035000px;}
.yae{bottom:317.235000px;}
.y36{bottom:324.615000px;}
.y62{bottom:333.975000px;}
.yad{bottom:340.995000px;}
.y35{bottom:348.375000px;}
.yac{bottom:364.755000px;}
.y34{bottom:372.135000px;}
.y5f{bottom:381.495000px;}
.yab{bottom:388.695000px;}
.y33{bottom:395.895000px;}
.yaa{bottom:412.455000px;}
.y32{bottom:419.835000px;}
.y5c{bottom:429.195000px;}
.ya9{bottom:436.215000px;}
.y31{bottom:443.595000px;}
.ya8{bottom:459.975000px;}
.y30{bottom:467.355000px;}
.y9e{bottom:470.775000px;}
.y5b{bottom:483.915000px;}
.y2f{bottom:491.115000px;}
.y9d{bottom:494.535000px;}
.y5a{bottom:507.675000px;}
.y2e{bottom:515.055000px;}
.y9c{bottom:518.295000px;}
.y59{bottom:531.435000px;}
.y2d{bottom:538.815000px;}
.y9b{bottom:542.055000px;}
.y72{bottom:554.475000px;}
.y58{bottom:555.195000px;}
.y2c{bottom:562.575000px;}
.y9a{bottom:565.845000px;}
.y71{bottom:578.265000px;}
.y57{bottom:579.165000px;}
.y87{bottom:583.485000px;}
.y2b{bottom:586.365000px;}
.y99{bottom:589.785000px;}
.y70{bottom:602.205000px;}
.y56{bottom:602.925000px;}
.y86{bottom:607.245000px;}
.y2a{bottom:610.305000px;}
.y98{bottom:613.545000px;}
.y6f{bottom:625.965000px;}
.y55{bottom:626.685000px;}
.y85{bottom:631.005000px;}
.y29{bottom:634.065000px;}
.y97{bottom:637.305000px;}
.y6e{bottom:649.725000px;}
.y54{bottom:650.445000px;}
.y84{bottom:654.765000px;}
.y28{bottom:657.825000px;}
.y96{bottom:661.065000px;}
.y6d{bottom:673.485000px;}
.y53{bottom:674.385000px;}
.y83{bottom:678.705000px;}
.y27{bottom:681.585000px;}
.y95{bottom:685.005000px;}
.y6c{bottom:697.425000px;}
.y52{bottom:698.145000px;}
.y82{bottom:702.465000px;}
.y26{bottom:705.525000px;}
.y94{bottom:708.765000px;}
.y6b{bottom:721.185000px;}
.y51{bottom:721.905000px;}
.y81{bottom:726.225000px;}
.y25{bottom:728.565000px;}
.y93{bottom:732.525000px;}
.y6a{bottom:744.945000px;}
.y50{bottom:745.665000px;}
.y80{bottom:749.985000px;}
.y24{bottom:750.345000px;}
.y92{bottom:752.325000px;}
.y69{bottom:768.705000px;}
.y4f{bottom:769.605000px;}
.y23{bottom:772.125000px;}
.y7f{bottom:773.925000px;}
.y68{bottom:792.465000px;}
.y4e{bottom:793.365000px;}
.y22{bottom:793.905000px;}
.y7e{bottom:797.685000px;}
.y21{bottom:815.865000px;}
.y67{bottom:816.405000px;}
.y4d{bottom:817.125000px;}
.y7d{bottom:821.445000px;}
.y20{bottom:837.645000px;}
.y66{bottom:840.165000px;}
.y4c{bottom:840.885000px;}
.y7c{bottom:845.205000px;}
.y1f{bottom:859.470000px;}
.y65{bottom:863.970000px;}
.y4b{bottom:864.690000px;}
.y7b{bottom:865.050000px;}
.y1e{bottom:881.250000px;}
.y64{bottom:887.730000px;}
.y4a{bottom:888.630000px;}
.y1d{bottom:903.030000px;}
.y63{bottom:907.530000px;}
.y49{bottom:912.390000px;}
.y1c{bottom:924.990000px;}
.y48{bottom:936.150000px;}
.y1b{bottom:946.770000px;}
.y47{bottom:959.910000px;}
.y1a{bottom:969.270000px;}
.y46{bottom:983.850000px;}
.y19{bottom:989.790000px;}
.y45{bottom:1007.610000px;}
.y18{bottom:1008.690000px;}
.y17{bottom:1027.590000px;}
.y44{bottom:1031.370000px;}
.y16{bottom:1046.670000px;}
.y43{bottom:1055.130000px;}
.y15{bottom:1065.570000px;}
.y42{bottom:1079.070000px;}
.y14{bottom:1084.650000px;}
.y41{bottom:1102.830000px;}
.y13{bottom:1103.550000px;}
.y12{bottom:1123.350000px;}
.y40{bottom:1126.590000px;}
.y11{bottom:1147.500000px;}
.y3f{bottom:1150.380000px;}
.y7{bottom:1181.520000px;}
.ye{bottom:1181.700000px;}
.y1{bottom:1194.120000px;}
.h9{height:14.940000px;}
.h3{height:17.460000px;}
.h7{height:40.985156px;}
.h8{height:42.086250px;}
.ha{height:47.344922px;}
.h11{height:47.520000px;}
.h12{height:47.700000px;}
.h4{height:58.651172px;}
.h10{height:61.734375px;}
.hd{height:65.010937px;}
.he{height:65.846250px;}
.h2{height:65.884219px;}
.hc{height:66.757500px;}
.h5{height:69.660000px;}
.h14{height:70.628906px;}
.hf{height:70.664062px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.hb{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:161.670000px;}
.w6{width:185.430000px;}
.w5{width:252.030000px;}
.w3{width:314.535000px;}
.w7{width:680.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.400000px;}
.x4{left:10.800000px;}
.x6{left:45.405000px;}
.x13{left:47.916000px;}
.x3{left:70.920000px;}
.x1{left:84.959987px;}
.xa{left:101.015987px;}
.x12{left:127.475987px;}
.x9{left:130.895987px;}
.x7{left:164.190000px;}
.xf{left:234.209987px;}
.xd{left:253.289987px;}
.x10{left:260.489987px;}
.x11{left:309.674987px;}
.xb{left:313.994987px;}
.xc{left:328.034987px;}
.x19{left:393.914987px;}
.x2{left:399.494987px;}
.xe{left:403.634987px;}
.x17{left:588.704987px;}
.x8{left:650.265000px;}
.x5{left:656.025000px;}
.x18{left:672.764987px;}
.x15{left:789.809987px;}
.x16{left:791.249987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.158720pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:21.760000pt;}
.ls9{letter-spacing:85.248000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-4.840960pt;}
._6{margin-left:-3.863040pt;}
._5{margin-left:-2.283520pt;}
._0{margin-left:-1.095680pt;}
._1{width:0.903040pt;}
._2{width:1.818880pt;}
._3{width:2.922667pt;}
._4{width:3.876267pt;}
._c{width:5.418667pt;}
._7{width:6.771200pt;}
._9{width:8.384000pt;}
._12{width:9.387307pt;}
._f{width:10.368000pt;}
._d{width:11.904640pt;}
._e{width:13.033387pt;}
._13{width:14.678613pt;}
._19{width:17.144960pt;}
._14{width:18.112000pt;}
._15{width:19.200000pt;}
._11{width:20.224000pt;}
._10{width:21.248000pt;}
._a{width:22.784000pt;}
._b{width:23.754667pt;}
._17{width:25.284907pt;}
._16{width:26.567680pt;}
._18{width:1389.685333pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y10{bottom:-13.760000pt;}
.yd{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.720000pt;}
.y5{bottom:3.040000pt;}
.yf{bottom:3.360000pt;}
.y5e{bottom:6.240000pt;}
.y61{bottom:6.400000pt;}
.yb{bottom:13.440000pt;}
.ya{bottom:24.160000pt;}
.y5d{bottom:27.360000pt;}
.y60{bottom:27.520000pt;}
.y3{bottom:30.432000pt;}
.y9{bottom:34.880000pt;}
.y4{bottom:44.512000pt;}
.y6{bottom:44.832000pt;}
.y8{bottom:47.040000pt;}
.y2{bottom:47.552000pt;}
.y7a{bottom:81.952000pt;}
.y91{bottom:88.672000pt;}
.ya7{bottom:101.632000pt;}
.y79{bottom:103.072000pt;}
.y90{bottom:109.792000pt;}
.y3e{bottom:119.232000pt;}
.ya6{bottom:122.752000pt;}
.y78{bottom:124.352000pt;}
.y8f{bottom:131.072000pt;}
.yb5{bottom:133.466667pt;}
.y3d{bottom:140.346667pt;}
.ya5{bottom:144.026667pt;}
.y77{bottom:145.466667pt;}
.y8e{bottom:152.186667pt;}
.yb4{bottom:154.746667pt;}
.y3c{bottom:161.466667pt;}
.ya4{bottom:165.146667pt;}
.y76{bottom:166.586667pt;}
.y8d{bottom:173.306667pt;}
.yb3{bottom:175.866667pt;}
.y3b{bottom:182.586667pt;}
.ya3{bottom:186.266667pt;}
.y75{bottom:187.706667pt;}
.y8c{bottom:194.426667pt;}
.yb2{bottom:196.986667pt;}
.y3a{bottom:203.866667pt;}
.ya2{bottom:207.386667pt;}
.y74{bottom:208.986667pt;}
.y8b{bottom:215.546667pt;}
.yb1{bottom:218.106667pt;}
.y39{bottom:224.986667pt;}
.y73{bottom:226.586667pt;}
.ya1{bottom:228.666667pt;}
.y8a{bottom:236.826667pt;}
.yb0{bottom:236.986667pt;}
.y38{bottom:246.106667pt;}
.ya0{bottom:249.786667pt;}
.y89{bottom:257.986667pt;}
.yaf{bottom:260.866667pt;}
.y37{bottom:267.266667pt;}
.y9f{bottom:267.426667pt;}
.y88{bottom:275.586667pt;}
.yae{bottom:281.986667pt;}
.y36{bottom:288.546667pt;}
.y62{bottom:296.866667pt;}
.yad{bottom:303.106667pt;}
.y35{bottom:309.666667pt;}
.yac{bottom:324.226667pt;}
.y34{bottom:330.786667pt;}
.y5f{bottom:339.106667pt;}
.yab{bottom:345.506667pt;}
.y33{bottom:351.906667pt;}
.yaa{bottom:366.626667pt;}
.y32{bottom:373.186667pt;}
.y5c{bottom:381.506667pt;}
.ya9{bottom:387.746667pt;}
.y31{bottom:394.306667pt;}
.ya8{bottom:408.866667pt;}
.y30{bottom:415.426667pt;}
.y9e{bottom:418.466667pt;}
.y5b{bottom:430.146667pt;}
.y2f{bottom:436.546667pt;}
.y9d{bottom:439.586667pt;}
.y5a{bottom:451.266667pt;}
.y2e{bottom:457.826667pt;}
.y9c{bottom:460.706667pt;}
.y59{bottom:472.386667pt;}
.y2d{bottom:478.946667pt;}
.y9b{bottom:481.826667pt;}
.y72{bottom:492.866667pt;}
.y58{bottom:493.506667pt;}
.y2c{bottom:500.066667pt;}
.y9a{bottom:502.973333pt;}
.y71{bottom:514.013333pt;}
.y57{bottom:514.813333pt;}
.y87{bottom:518.653333pt;}
.y2b{bottom:521.213333pt;}
.y99{bottom:524.253333pt;}
.y70{bottom:535.293333pt;}
.y56{bottom:535.933333pt;}
.y86{bottom:539.773333pt;}
.y2a{bottom:542.493333pt;}
.y98{bottom:545.373333pt;}
.y6f{bottom:556.413333pt;}
.y55{bottom:557.053333pt;}
.y85{bottom:560.893333pt;}
.y29{bottom:563.613333pt;}
.y97{bottom:566.493333pt;}
.y6e{bottom:577.533333pt;}
.y54{bottom:578.173333pt;}
.y84{bottom:582.013333pt;}
.y28{bottom:584.733333pt;}
.y96{bottom:587.613333pt;}
.y6d{bottom:598.653333pt;}
.y53{bottom:599.453333pt;}
.y83{bottom:603.293333pt;}
.y27{bottom:605.853333pt;}
.y95{bottom:608.893333pt;}
.y6c{bottom:619.933333pt;}
.y52{bottom:620.573333pt;}
.y82{bottom:624.413333pt;}
.y26{bottom:627.133333pt;}
.y94{bottom:630.013333pt;}
.y6b{bottom:641.053333pt;}
.y51{bottom:641.693333pt;}
.y81{bottom:645.533333pt;}
.y25{bottom:647.613333pt;}
.y93{bottom:651.133333pt;}
.y6a{bottom:662.173333pt;}
.y50{bottom:662.813333pt;}
.y80{bottom:666.653333pt;}
.y24{bottom:666.973333pt;}
.y92{bottom:668.733333pt;}
.y69{bottom:683.293333pt;}
.y4f{bottom:684.093333pt;}
.y23{bottom:686.333333pt;}
.y7f{bottom:687.933333pt;}
.y68{bottom:704.413333pt;}
.y4e{bottom:705.213333pt;}
.y22{bottom:705.693333pt;}
.y7e{bottom:709.053333pt;}
.y21{bottom:725.213333pt;}
.y67{bottom:725.693333pt;}
.y4d{bottom:726.333333pt;}
.y7d{bottom:730.173333pt;}
.y20{bottom:744.573333pt;}
.y66{bottom:746.813333pt;}
.y4c{bottom:747.453333pt;}
.y7c{bottom:751.293333pt;}
.y1f{bottom:763.973333pt;}
.y65{bottom:767.973333pt;}
.y4b{bottom:768.613333pt;}
.y7b{bottom:768.933333pt;}
.y1e{bottom:783.333333pt;}
.y64{bottom:789.093333pt;}
.y4a{bottom:789.893333pt;}
.y1d{bottom:802.693333pt;}
.y63{bottom:806.693333pt;}
.y49{bottom:811.013333pt;}
.y1c{bottom:822.213333pt;}
.y48{bottom:832.133333pt;}
.y1b{bottom:841.573333pt;}
.y47{bottom:853.253333pt;}
.y1a{bottom:861.573333pt;}
.y46{bottom:874.533333pt;}
.y19{bottom:879.813333pt;}
.y45{bottom:895.653333pt;}
.y18{bottom:896.613333pt;}
.y17{bottom:913.413333pt;}
.y44{bottom:916.773333pt;}
.y16{bottom:930.373333pt;}
.y43{bottom:937.893333pt;}
.y15{bottom:947.173333pt;}
.y42{bottom:959.173333pt;}
.y14{bottom:964.133333pt;}
.y41{bottom:980.293333pt;}
.y13{bottom:980.933333pt;}
.y12{bottom:998.533333pt;}
.y40{bottom:1001.413333pt;}
.y11{bottom:1020.000000pt;}
.y3f{bottom:1022.560000pt;}
.y7{bottom:1050.240000pt;}
.ye{bottom:1050.400000pt;}
.y1{bottom:1061.440000pt;}
.h9{height:13.280000pt;}
.h3{height:15.520000pt;}
.h7{height:36.431250pt;}
.h8{height:37.410000pt;}
.ha{height:42.084375pt;}
.h11{height:42.240000pt;}
.h12{height:42.400000pt;}
.h4{height:52.134375pt;}
.h10{height:54.875000pt;}
.hd{height:57.787500pt;}
.he{height:58.530000pt;}
.h2{height:58.563750pt;}
.hc{height:59.340000pt;}
.h5{height:61.920000pt;}
.h14{height:62.781250pt;}
.hf{height:62.812500pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.hb{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:143.706667pt;}
.w6{width:164.826667pt;}
.w5{width:224.026667pt;}
.w3{width:279.586667pt;}
.w7{width:604.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.800000pt;}
.x4{left:9.600000pt;}
.x6{left:40.360000pt;}
.x13{left:42.592000pt;}
.x3{left:63.040000pt;}
.x1{left:75.519988pt;}
.xa{left:89.791988pt;}
.x12{left:113.311988pt;}
.x9{left:116.351988pt;}
.x7{left:145.946667pt;}
.xf{left:208.186655pt;}
.xd{left:225.146655pt;}
.x10{left:231.546655pt;}
.x11{left:275.266655pt;}
.xb{left:279.106655pt;}
.xc{left:291.586655pt;}
.x19{left:350.146655pt;}
.x2{left:355.106655pt;}
.xe{left:358.786655pt;}
.x17{left:523.293322pt;}
.x8{left:578.013333pt;}
.x5{left:583.133333pt;}
.x18{left:598.013322pt;}
.x15{left:702.053322pt;}
.x16{left:703.333322pt;}
}




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