
    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_5018e1587f09e695b256ddef.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_cebe49d3c25bdf5aae231855.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_bcf656397e36b5bd9276f0d9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0205c4f5f4f70f5172a5a470.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_185f14a5afbc66d043704938.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.223800px;}
.ls10{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.ls2{letter-spacing:4.500000px;}
.lsf{letter-spacing:23.940000px;}
.lsa{letter-spacing:39.881280px;}
.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;}
}
.ws9{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._21{margin-left:-5.289600px;}
._14{margin-left:-4.175040px;}
._11{margin-left:-2.864400px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._2{width:2.710560px;}
._d{width:3.888000px;}
._c{width:5.562000px;}
._13{width:6.647040px;}
._4{width:7.776000px;}
._7{width:9.072000px;}
._b{width:10.422000px;}
._6{width:12.312000px;}
._15{width:13.331280px;}
._19{width:15.036480px;}
._3{width:16.680000px;}
._f{width:17.743680px;}
._5{width:18.846000px;}
._16{width:19.847520px;}
._10{width:20.956320px;}
._e{width:22.464000px;}
._1c{width:23.482080px;}
._8{width:24.732000px;}
._1a{width:25.966080px;}
._1b{width:27.290880px;}
._1d{width:28.336320px;}
._12{width:29.354400px;}
._a{width:30.460320px;}
._9{width:31.482000px;}
._18{width:32.637360px;}
._17{width:33.782400px;}
._22{width:36.100800px;}
._1e{width:37.226880px;}
._1f{width:38.286720px;}
._23{width:146.363040px;}
._20{width:199.416000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:4.500000px;}
.y30{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y3c{bottom:9.000000px;}
.y3f{bottom:19.080000px;}
.y3d{bottom:20.340000px;}
.y5{bottom:21.810000px;}
.y2f{bottom:23.040000px;}
.y8{bottom:23.790000px;}
.y2e{bottom:41.040000px;}
.y4{bottom:41.610000px;}
.y7{bottom:43.590000px;}
.ya{bottom:56.340000px;}
.y2d{bottom:58.860000px;}
.y3{bottom:61.950000px;}
.y6{bottom:63.390000px;}
.y2c{bottom:76.680000px;}
.y2b{bottom:94.500000px;}
.y4e{bottom:110.376000px;}
.y2a{bottom:112.320000px;}
.y86{bottom:114.876000px;}
.y4d{bottom:124.236000px;}
.y4c{bottom:128.736000px;}
.y91{bottom:129.996000px;}
.y29{bottom:130.320000px;}
.y80{bottom:137.916000px;}
.y4b{bottom:138.996000px;}
.y7f{bottom:142.416000px;}
.y28{bottom:148.140000px;}
.y7e{bottom:151.770000px;}
.y90{bottom:151.950000px;}
.y85{bottom:152.850000px;}
.y7d{bottom:156.270000px;}
.y8b{bottom:165.630000px;}
.y27{bottom:165.960000px;}
.y7c{bottom:166.530000px;}
.y8a{bottom:170.130000px;}
.y49{bottom:171.750000px;}
.y8c{bottom:173.730000px;}
.y4a{bottom:177.690000px;}
.y89{bottom:180.390000px;}
.y26{bottom:183.780000px;}
.y48{bottom:193.530000px;}
.y7b{bottom:195.510000px;}
.y25{bottom:201.630000px;}
.y47{bottom:215.310000px;}
.y7a{bottom:217.290000px;}
.y24{bottom:219.450000px;}
.y46{bottom:237.090000px;}
.y23{bottom:237.450000px;}
.y3a{bottom:238.710000px;}
.y79{bottom:239.250000px;}
.y88{bottom:245.190000px;}
.y39{bottom:254.550000px;}
.y22{bottom:255.270000px;}
.y45{bottom:259.050000px;}
.y78{bottom:261.030000px;}
.y38{bottom:270.390000px;}
.y21{bottom:273.090000px;}
.y44{bottom:280.830000px;}
.y76{bottom:282.810000px;}
.y37{bottom:286.230000px;}
.y77{bottom:288.750000px;}
.y20{bottom:290.910000px;}
.y36{bottom:302.070000px;}
.y43{bottom:302.610000px;}
.y75{bottom:304.590000px;}
.y1f{bottom:308.730000px;}
.y35{bottom:317.910000px;}
.y42{bottom:324.390000px;}
.y74{bottom:326.370000px;}
.y1e{bottom:326.730000px;}
.y84{bottom:332.310000px;}
.y34{bottom:333.930000px;}
.y1d{bottom:344.550000px;}
.y41{bottom:346.395000px;}
.y73{bottom:348.375000px;}
.y33{bottom:349.770000px;}
.y1c{bottom:362.370000px;}
.y32{bottom:365.610000px;}
.y40{bottom:368.175000px;}
.y72{bottom:370.155000px;}
.y1b{bottom:380.190000px;}
.y31{bottom:381.450000px;}
.y3b{bottom:383.655000px;}
.y71{bottom:391.935000px;}
.y1a{bottom:398.010000px;}
.y70{bottom:413.715000px;}
.y12{bottom:415.335000px;}
.y19{bottom:415.830000px;}
.y18{bottom:433.830000px;}
.y6f{bottom:435.495000px;}
.y17{bottom:451.650000px;}
.y6e{bottom:457.455000px;}
.y87{bottom:463.395000px;}
.y16{bottom:469.515000px;}
.y6d{bottom:479.235000px;}
.y15{bottom:487.335000px;}
.y6b{bottom:501.015000px;}
.y14{bottom:505.155000px;}
.y6c{bottom:506.955000px;}
.y6a{bottom:522.795000px;}
.y13{bottom:523.155000px;}
.y69{bottom:544.755000px;}
.y83{bottom:550.695000px;}
.y68{bottom:566.535000px;}
.y67{bottom:588.315000px;}
.y95{bottom:593.715000px;}
.y66{bottom:610.125000px;}
.y8f{bottom:616.065000px;}
.y94{bottom:630.645000px;}
.y65{bottom:631.905000px;}
.y64{bottom:653.865000px;}
.y93{bottom:667.365000px;}
.y63{bottom:675.645000px;}
.y82{bottom:681.585000px;}
.y62{bottom:697.425000px;}
.y92{bottom:704.265000px;}
.y61{bottom:719.205000px;}
.y60{bottom:741.165000px;}
.y5e{bottom:762.945000px;}
.y5f{bottom:768.885000px;}
.y5d{bottom:784.725000px;}
.y5c{bottom:806.505000px;}
.y5b{bottom:828.285000px;}
.y81{bottom:834.225000px;}
.y5a{bottom:850.245000px;}
.y59{bottom:872.070000px;}
.y58{bottom:893.850000px;}
.y57{bottom:915.630000px;}
.y56{bottom:937.590000px;}
.y11{bottom:957.390000px;}
.y55{bottom:959.370000px;}
.y8e{bottom:965.310000px;}
.y10{bottom:978.630000px;}
.y54{bottom:981.150000px;}
.y53{bottom:1002.930000px;}
.yf{bottom:1003.650000px;}
.ye{bottom:1018.770000px;}
.y52{bottom:1024.710000px;}
.yd{bottom:1040.190000px;}
.y51{bottom:1046.670000px;}
.yc{bottom:1061.790000px;}
.y50{bottom:1068.450000px;}
.yb{bottom:1087.530000px;}
.y4f{bottom:1090.230000px;}
.y8d{bottom:1096.170000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h17{height:21.114844px;}
.h9{height:27.147656px;}
.h16{height:29.158594px;}
.h13{height:31.680000px;}
.h14{height:33.683203px;}
.h10{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h12{height:39.147891px;}
.h11{height:39.760312px;}
.h3{height:42.164648px;}
.ha{height:43.506914px;}
.hf{height:44.507812px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h8{height:53.224453px;}
.h18{height:53.755312px;}
.h15{height:54.596250px;}
.h7{height:54.864844px;}
.h2{height:77.436000px;}
.hc{height:535.755000px;}
.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:8.100000px;}
.x13{left:30.600000px;}
.x2{left:70.374000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x18{left:111.815987px;}
.x10{left:116.136000px;}
.x7{left:131.805000px;}
.x23{left:135.035987px;}
.xa{left:145.295987px;}
.x14{left:162.029987px;}
.x19{left:165.269973px;}
.x1a{left:170.489987px;}
.x3{left:180.030000px;}
.xd{left:183.809987px;}
.x32{left:190.829987px;}
.x8{left:193.365000px;}
.xb{left:217.109987px;}
.x2d{left:221.069973px;}
.x2e{left:231.509987px;}
.xe{left:311.294987px;}
.x17{left:324.074987px;}
.x2c{left:338.474973px;}
.x1b{left:348.374973px;}
.xc{left:349.814987px;}
.x1c{left:353.594987px;}
.x15{left:355.934973px;}
.x16{left:361.154987px;}
.x1f{left:366.914973px;}
.x20{left:372.134987px;}
.xf{left:446.474987px;}
.x2a{left:451.334973px;}
.x2b{left:461.774987px;}
.x9{left:512.204987px;}
.x26{left:515.444973px;}
.x27{left:520.664987px;}
.x5{left:554.685000px;}
.x11{left:575.925000px;}
.x28{left:623.084973px;}
.x29{left:628.304987px;}
.x30{left:647.024973px;}
.x31{left:657.509987px;}
.x21{left:695.849973px;}
.x22{left:701.069987px;}
.x1d{left:703.949973px;}
.x1e{left:709.169987px;}
.x2f{left:774.689973px;}
.x12{left:777.930000px;}
.x24{left:779.909973px;}
.x25{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.198933pt;}
.ls10{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls2{letter-spacing:4.000000pt;}
.lsf{letter-spacing:21.280000pt;}
.lsa{letter-spacing:35.450027pt;}
.ws9{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._21{margin-left:-4.701867pt;}
._14{margin-left:-3.711147pt;}
._11{margin-left:-2.546133pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._2{width:2.409387pt;}
._d{width:3.456000pt;}
._c{width:4.944000pt;}
._13{width:5.908480pt;}
._4{width:6.912000pt;}
._7{width:8.064000pt;}
._b{width:9.264000pt;}
._6{width:10.944000pt;}
._15{width:11.850027pt;}
._19{width:13.365760pt;}
._3{width:14.826667pt;}
._f{width:15.772160pt;}
._5{width:16.752000pt;}
._16{width:17.642240pt;}
._10{width:18.627840pt;}
._e{width:19.968000pt;}
._1c{width:20.872960pt;}
._8{width:21.984000pt;}
._1a{width:23.080960pt;}
._1b{width:24.258560pt;}
._1d{width:25.187840pt;}
._12{width:26.092800pt;}
._a{width:27.075840pt;}
._9{width:27.984000pt;}
._18{width:29.010987pt;}
._17{width:30.028800pt;}
._22{width:32.089600pt;}
._1e{width:33.090560pt;}
._1f{width:34.032640pt;}
._23{width:130.100480pt;}
._20{width:177.258667pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:4.000000pt;}
.y30{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y3c{bottom:8.000000pt;}
.y3f{bottom:16.960000pt;}
.y3d{bottom:18.080000pt;}
.y5{bottom:19.386667pt;}
.y2f{bottom:20.480000pt;}
.y8{bottom:21.146667pt;}
.y2e{bottom:36.480000pt;}
.y4{bottom:36.986667pt;}
.y7{bottom:38.746667pt;}
.ya{bottom:50.080000pt;}
.y2d{bottom:52.320000pt;}
.y3{bottom:55.066667pt;}
.y6{bottom:56.346667pt;}
.y2c{bottom:68.160000pt;}
.y2b{bottom:84.000000pt;}
.y4e{bottom:98.112000pt;}
.y2a{bottom:99.840000pt;}
.y86{bottom:102.112000pt;}
.y4d{bottom:110.432000pt;}
.y4c{bottom:114.432000pt;}
.y91{bottom:115.552000pt;}
.y29{bottom:115.840000pt;}
.y80{bottom:122.592000pt;}
.y4b{bottom:123.552000pt;}
.y7f{bottom:126.592000pt;}
.y28{bottom:131.680000pt;}
.y7e{bottom:134.906667pt;}
.y90{bottom:135.066667pt;}
.y85{bottom:135.866667pt;}
.y7d{bottom:138.906667pt;}
.y8b{bottom:147.226667pt;}
.y27{bottom:147.520000pt;}
.y7c{bottom:148.026667pt;}
.y8a{bottom:151.226667pt;}
.y49{bottom:152.666667pt;}
.y8c{bottom:154.426667pt;}
.y4a{bottom:157.946667pt;}
.y89{bottom:160.346667pt;}
.y26{bottom:163.360000pt;}
.y48{bottom:172.026667pt;}
.y7b{bottom:173.786667pt;}
.y25{bottom:179.226667pt;}
.y47{bottom:191.386667pt;}
.y7a{bottom:193.146667pt;}
.y24{bottom:195.066667pt;}
.y46{bottom:210.746667pt;}
.y23{bottom:211.066667pt;}
.y3a{bottom:212.186667pt;}
.y79{bottom:212.666667pt;}
.y88{bottom:217.946667pt;}
.y39{bottom:226.266667pt;}
.y22{bottom:226.906667pt;}
.y45{bottom:230.266667pt;}
.y78{bottom:232.026667pt;}
.y38{bottom:240.346667pt;}
.y21{bottom:242.746667pt;}
.y44{bottom:249.626667pt;}
.y76{bottom:251.386667pt;}
.y37{bottom:254.426667pt;}
.y77{bottom:256.666667pt;}
.y20{bottom:258.586667pt;}
.y36{bottom:268.506667pt;}
.y43{bottom:268.986667pt;}
.y75{bottom:270.746667pt;}
.y1f{bottom:274.426667pt;}
.y35{bottom:282.586667pt;}
.y42{bottom:288.346667pt;}
.y74{bottom:290.106667pt;}
.y1e{bottom:290.426667pt;}
.y84{bottom:295.386667pt;}
.y34{bottom:296.826667pt;}
.y1d{bottom:306.266667pt;}
.y41{bottom:307.906667pt;}
.y73{bottom:309.666667pt;}
.y33{bottom:310.906667pt;}
.y1c{bottom:322.106667pt;}
.y32{bottom:324.986667pt;}
.y40{bottom:327.266667pt;}
.y72{bottom:329.026667pt;}
.y1b{bottom:337.946667pt;}
.y31{bottom:339.066667pt;}
.y3b{bottom:341.026667pt;}
.y71{bottom:348.386667pt;}
.y1a{bottom:353.786667pt;}
.y70{bottom:367.746667pt;}
.y12{bottom:369.186667pt;}
.y19{bottom:369.626667pt;}
.y18{bottom:385.626667pt;}
.y6f{bottom:387.106667pt;}
.y17{bottom:401.466667pt;}
.y6e{bottom:406.626667pt;}
.y87{bottom:411.906667pt;}
.y16{bottom:417.346667pt;}
.y6d{bottom:425.986667pt;}
.y15{bottom:433.186667pt;}
.y6b{bottom:445.346667pt;}
.y14{bottom:449.026667pt;}
.y6c{bottom:450.626667pt;}
.y6a{bottom:464.706667pt;}
.y13{bottom:465.026667pt;}
.y69{bottom:484.226667pt;}
.y83{bottom:489.506667pt;}
.y68{bottom:503.586667pt;}
.y67{bottom:522.946667pt;}
.y95{bottom:527.746667pt;}
.y66{bottom:542.333333pt;}
.y8f{bottom:547.613333pt;}
.y94{bottom:560.573333pt;}
.y65{bottom:561.693333pt;}
.y64{bottom:581.213333pt;}
.y93{bottom:593.213333pt;}
.y63{bottom:600.573333pt;}
.y82{bottom:605.853333pt;}
.y62{bottom:619.933333pt;}
.y92{bottom:626.013333pt;}
.y61{bottom:639.293333pt;}
.y60{bottom:658.813333pt;}
.y5e{bottom:678.173333pt;}
.y5f{bottom:683.453333pt;}
.y5d{bottom:697.533333pt;}
.y5c{bottom:716.893333pt;}
.y5b{bottom:736.253333pt;}
.y81{bottom:741.533333pt;}
.y5a{bottom:755.773333pt;}
.y59{bottom:775.173333pt;}
.y58{bottom:794.533333pt;}
.y57{bottom:813.893333pt;}
.y56{bottom:833.413333pt;}
.y11{bottom:851.013333pt;}
.y55{bottom:852.773333pt;}
.y8e{bottom:858.053333pt;}
.y10{bottom:869.893333pt;}
.y54{bottom:872.133333pt;}
.y53{bottom:891.493333pt;}
.yf{bottom:892.133333pt;}
.ye{bottom:905.573333pt;}
.y52{bottom:910.853333pt;}
.yd{bottom:924.613333pt;}
.y51{bottom:930.373333pt;}
.yc{bottom:943.813333pt;}
.y50{bottom:949.733333pt;}
.yb{bottom:966.693333pt;}
.y4f{bottom:969.093333pt;}
.y8d{bottom:974.373333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h17{height:18.768750pt;}
.h9{height:24.131250pt;}
.h16{height:25.918750pt;}
.h13{height:28.160000pt;}
.h14{height:29.940625pt;}
.h10{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h12{height:34.798125pt;}
.h11{height:35.342500pt;}
.h3{height:37.479688pt;}
.ha{height:38.672812pt;}
.hf{height:39.562500pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h8{height:47.310625pt;}
.h18{height:47.782500pt;}
.h15{height:48.530000pt;}
.h7{height:48.768750pt;}
.h2{height:68.832000pt;}
.hc{height:476.226667pt;}
.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.200000pt;}
.x13{left:27.200000pt;}
.x2{left:62.554667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x18{left:99.391988pt;}
.x10{left:103.232000pt;}
.x7{left:117.160000pt;}
.x23{left:120.031988pt;}
.xa{left:129.151988pt;}
.x14{left:144.026655pt;}
.x19{left:146.906643pt;}
.x1a{left:151.546655pt;}
.x3{left:160.026667pt;}
.xd{left:163.386655pt;}
.x32{left:169.626655pt;}
.x8{left:171.880000pt;}
.xb{left:192.986655pt;}
.x2d{left:196.506643pt;}
.x2e{left:205.786655pt;}
.xe{left:276.706655pt;}
.x17{left:288.066655pt;}
.x2c{left:300.866643pt;}
.x1b{left:309.666643pt;}
.xc{left:310.946655pt;}
.x1c{left:314.306655pt;}
.x15{left:316.386643pt;}
.x16{left:321.026655pt;}
.x1f{left:326.146643pt;}
.x20{left:330.786655pt;}
.xf{left:396.866655pt;}
.x2a{left:401.186643pt;}
.x2b{left:410.466655pt;}
.x9{left:455.293322pt;}
.x26{left:458.173310pt;}
.x27{left:462.813322pt;}
.x5{left:493.053333pt;}
.x11{left:511.933333pt;}
.x28{left:553.853310pt;}
.x29{left:558.493322pt;}
.x30{left:575.133310pt;}
.x31{left:584.453322pt;}
.x21{left:618.533310pt;}
.x22{left:623.173322pt;}
.x1d{left:625.733310pt;}
.x1e{left:630.373322pt;}
.x2f{left:688.613310pt;}
.x12{left:691.493333pt;}
.x24{left:693.253310pt;}
.x25{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; }
  