
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9a149c5ea3e1130da567b983.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2f0e78540773de7c13260f0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_bb7e3c02f0f75bc5a2d8381d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_d5366916808cef1091bf935f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_66c40ed02da140973db4ada5.woff2')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_39dec80a9260e34d1ce41b33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_eff05c588754f72f366b3eb3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.414000px;}
.ls9{letter-spacing:-0.226200px;}
.ls1a{letter-spacing:-0.208800px;}
.lsc{letter-spacing:-0.115800px;}
.ls14{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.055440px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.037200px;}
.ls18{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.175200px;}
.ls3{letter-spacing:0.190080px;}
.lsa{letter-spacing:0.190200px;}
.ls10{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.393600px;}
.ls1b{letter-spacing:0.479400px;}
.lsf{letter-spacing:0.617760px;}
.ls19{letter-spacing:0.637200px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1c{letter-spacing:2.106720px;}
.lse{letter-spacing:5.706720px;}
.ls4{letter-spacing:17.922240px;}
.lsd{letter-spacing:21.546720px;}
.ls6{letter-spacing:38.106720px;}
.ls1d{letter-spacing:42.570720px;}
.ls13{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws6{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.450320px;}
.ws9{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.296960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.177760px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._13{margin-left:-2.283840px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._c{width:2.832720px;}
._e{width:4.753920px;}
._d{width:6.454080px;}
._f{width:7.768800px;}
._10{width:8.864400px;}
._16{width:10.262880px;}
._14{width:11.451360px;}
._11{width:12.497040px;}
._15{width:14.561520px;}
._17{width:15.677040px;}
._12{width:16.971840px;}
._18{width:18.645120px;}
._b{width:19.992000px;}
._a{width:21.263040px;}
._8{width:29.542320px;}
._9{width:30.995760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:6.660000px;}
.y67{bottom:6.840000px;}
.y9a{bottom:7.020000px;}
.ycb{bottom:28.260000px;}
.y72{bottom:30.060000px;}
.y6b{bottom:30.240000px;}
.yc8{bottom:35.460000px;}
.y90{bottom:39.600000px;}
.y96{bottom:39.780000px;}
.yca{bottom:49.500000px;}
.y71{bottom:51.120000px;}
.y6a{bottom:51.300000px;}
.y6{bottom:58.320000px;}
.yc9{bottom:70.734000px;}
.y70{bottom:72.180000px;}
.y69{bottom:72.360000px;}
.yc7{bottom:92.016000px;}
.y65{bottom:92.376000px;}
.y9f{bottom:98.136000px;}
.yc6{bottom:104.436000px;}
.y64{bottom:113.436000px;}
.y9e{bottom:119.196000px;}
.y30{bottom:122.436000px;}
.yc5{bottom:125.496000px;}
.y63{bottom:134.496000px;}
.y9d{bottom:140.256000px;}
.y2f{bottom:143.496000px;}
.yc4{bottom:146.556000px;}
.y62{bottom:155.550000px;}
.y9c{bottom:161.310000px;}
.y2e{bottom:164.550000px;}
.yc3{bottom:167.610000px;}
.y61{bottom:176.610000px;}
.y9b{bottom:182.370000px;}
.y2d{bottom:185.610000px;}
.yc2{bottom:188.670000px;}
.y95{bottom:197.310000px;}
.y60{bottom:197.670000px;}
.y2c{bottom:206.670000px;}
.yc1{bottom:209.730000px;}
.y5f{bottom:218.730000px;}
.y99{bottom:219.450000px;}
.y2b{bottom:227.730000px;}
.yc0{bottom:230.790000px;}
.y5e{bottom:239.790000px;}
.y98{bottom:241.230000px;}
.y2a{bottom:248.790000px;}
.ybf{bottom:251.850000px;}
.y5d{bottom:260.850000px;}
.y97{bottom:263.010000px;}
.y29{bottom:269.850000px;}
.ybe{bottom:272.910000px;}
.y5c{bottom:281.910000px;}
.y8f{bottom:284.790000px;}
.y28{bottom:290.910000px;}
.ybd{bottom:293.970000px;}
.y5b{bottom:302.970000px;}
.y93{bottom:306.750000px;}
.y27{bottom:311.970000px;}
.ybc{bottom:315.030000px;}
.y5a{bottom:324.030000px;}
.y92{bottom:328.575000px;}
.y26{bottom:333.075000px;}
.ybb{bottom:336.135000px;}
.y59{bottom:345.135000px;}
.y91{bottom:350.355000px;}
.y25{bottom:354.135000px;}
.yba{bottom:357.195000px;}
.y58{bottom:366.195000px;}
.y8e{bottom:372.135000px;}
.y24{bottom:375.195000px;}
.yb9{bottom:378.255000px;}
.y57{bottom:387.255000px;}
.y23{bottom:396.255000px;}
.yb8{bottom:399.315000px;}
.y8d{bottom:400.755000px;}
.y56{bottom:408.315000px;}
.y22{bottom:417.315000px;}
.yb7{bottom:420.375000px;}
.y8c{bottom:421.815000px;}
.y55{bottom:429.375000px;}
.y21{bottom:440.355000px;}
.yb6{bottom:441.435000px;}
.y8b{bottom:442.875000px;}
.y54{bottom:450.435000px;}
.yb5{bottom:462.495000px;}
.y8a{bottom:463.935000px;}
.y20{bottom:470.595000px;}
.y53{bottom:471.495000px;}
.yb4{bottom:483.555000px;}
.y89{bottom:484.995000px;}
.y1f{bottom:491.655000px;}
.y52{bottom:492.555000px;}
.yb3{bottom:504.615000px;}
.y88{bottom:506.055000px;}
.y1e{bottom:512.715000px;}
.y51{bottom:513.615000px;}
.yb2{bottom:525.675000px;}
.y87{bottom:527.115000px;}
.y1d{bottom:533.775000px;}
.y50{bottom:534.675000px;}
.yb1{bottom:546.735000px;}
.y86{bottom:548.175000px;}
.y1c{bottom:554.835000px;}
.y4f{bottom:555.735000px;}
.yb0{bottom:567.795000px;}
.y85{bottom:569.235000px;}
.y1b{bottom:575.895000px;}
.y4e{bottom:576.795000px;}
.yaf{bottom:588.855000px;}
.y84{bottom:590.295000px;}
.y1a{bottom:596.985000px;}
.y4d{bottom:597.885000px;}
.yae{bottom:609.945000px;}
.y83{bottom:611.385000px;}
.y19{bottom:618.045000px;}
.y4c{bottom:618.945000px;}
.yad{bottom:631.005000px;}
.y82{bottom:632.445000px;}
.y18{bottom:639.105000px;}
.y4b{bottom:640.005000px;}
.yac{bottom:652.065000px;}
.y81{bottom:653.505000px;}
.y17{bottom:660.165000px;}
.y4a{bottom:661.065000px;}
.yab{bottom:673.125000px;}
.y80{bottom:674.565000px;}
.y16{bottom:681.225000px;}
.y49{bottom:682.125000px;}
.yaa{bottom:694.185000px;}
.y7f{bottom:695.625000px;}
.y15{bottom:702.285000px;}
.y48{bottom:703.185000px;}
.ya9{bottom:715.245000px;}
.y7e{bottom:716.685000px;}
.y14{bottom:723.345000px;}
.y47{bottom:724.245000px;}
.ya8{bottom:736.305000px;}
.y7d{bottom:737.745000px;}
.y13{bottom:744.405000px;}
.y46{bottom:745.305000px;}
.ya7{bottom:757.185000px;}
.y7c{bottom:758.805000px;}
.y45{bottom:766.185000px;}
.y12{bottom:767.805000px;}
.ya6{bottom:778.245000px;}
.y7b{bottom:779.865000px;}
.y44{bottom:787.245000px;}
.y11{bottom:793.905000px;}
.ya5{bottom:799.305000px;}
.y7a{bottom:800.925000px;}
.y43{bottom:808.305000px;}
.y10{bottom:814.965000px;}
.ya4{bottom:820.365000px;}
.y79{bottom:821.985000px;}
.y42{bottom:829.365000px;}
.yf{bottom:836.025000px;}
.ya3{bottom:841.425000px;}
.y78{bottom:843.045000px;}
.y41{bottom:850.425000px;}
.ye{bottom:857.085000px;}
.ya2{bottom:862.530000px;}
.y77{bottom:864.150000px;}
.y40{bottom:871.530000px;}
.yd{bottom:878.190000px;}
.ya1{bottom:883.590000px;}
.y76{bottom:885.210000px;}
.y3f{bottom:892.590000px;}
.yc{bottom:899.250000px;}
.y6f{bottom:900.150000px;}
.ya0{bottom:904.650000px;}
.y3e{bottom:913.650000px;}
.yb{bottom:915.990000px;}
.y75{bottom:921.930000px;}
.y3d{bottom:934.710000px;}
.ya{bottom:939.210000px;}
.y74{bottom:943.710000px;}
.y3c{bottom:955.770000px;}
.y9{bottom:961.530000px;}
.y73{bottom:965.490000px;}
.y3b{bottom:976.830000px;}
.y8{bottom:986.550000px;}
.y68{bottom:987.270000px;}
.y3a{bottom:997.890000px;}
.y6e{bottom:1009.230000px;}
.y39{bottom:1018.950000px;}
.y7{bottom:1020.210000px;}
.y6d{bottom:1031.010000px;}
.y38{bottom:1040.010000px;}
.y6c{bottom:1052.790000px;}
.y5{bottom:1060.530000px;}
.y37{bottom:1061.070000px;}
.y66{bottom:1074.570000px;}
.y36{bottom:1082.130000px;}
.y4{bottom:1092.750000px;}
.y35{bottom:1103.190000px;}
.y34{bottom:1124.250000px;}
.y3{bottom:1124.790000px;}
.y33{bottom:1145.340000px;}
.y2{bottom:1157.040000px;}
.y32{bottom:1173.240000px;}
.y1{bottom:1191.600000px;}
.y31{bottom:1193.400000px;}
.h15{height:2.864531px;}
.h10{height:20.916000px;}
.hb{height:21.060000px;}
.h12{height:21.420000px;}
.h7{height:38.671172px;}
.h8{height:45.578672px;}
.he{height:45.637031px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h13{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h14{height:84.960000px;}
.hd{height:86.400000px;}
.hc{height:86.580000px;}
.hf{height:86.616000px;}
.h11{height:86.760000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:87.840000px;}
.w6{width:106.776000px;}
.w5{width:114.300000px;}
.wa{width:148.896000px;}
.w4{width:150.330000px;}
.w9{width:159.510000px;}
.w8{width:167.580000px;}
.wc{width:210.810000px;}
.wb{width:212.610000px;}
.w7{width:217.470000px;}
.wd{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.xe{left:39.960000px;}
.x12{left:43.379987px;}
.xc{left:48.239987px;}
.x1{left:53.999987px;}
.x2{left:70.199987px;}
.x13{left:74.339987px;}
.x3{left:75.599987px;}
.x14{left:80.999987px;}
.xa{left:85.859987px;}
.xd{left:102.276000px;}
.xb{left:107.135987px;}
.x4{left:108.216000px;}
.x15{left:191.370000px;}
.x6{left:196.050000px;}
.x16{left:264.810000px;}
.xf{left:269.850000px;}
.x7{left:346.395000px;}
.x10{left:429.375000px;}
.x8{left:460.695000px;}
.x9{left:567.465000px;}
.x11{left:578.265000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.368000pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1a{letter-spacing:-0.185600pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.049280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.033067pt;}
.ls18{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.155733pt;}
.ls3{letter-spacing:0.168960pt;}
.lsa{letter-spacing:0.169067pt;}
.ls10{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.349867pt;}
.ls1b{letter-spacing:0.426133pt;}
.lsf{letter-spacing:0.549120pt;}
.ls19{letter-spacing:0.566400pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1c{letter-spacing:1.872640pt;}
.lse{letter-spacing:5.072640pt;}
.ls4{letter-spacing:15.930880pt;}
.lsd{letter-spacing:19.152640pt;}
.ls6{letter-spacing:33.872640pt;}
.ls1d{letter-spacing:37.840640pt;}
.ls13{letter-spacing:40.272640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.955840pt;}
.ws9{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.819520pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-516.602453pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._13{margin-left:-2.030080pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._c{width:2.517973pt;}
._e{width:4.225707pt;}
._d{width:5.736960pt;}
._f{width:6.905600pt;}
._10{width:7.879467pt;}
._16{width:9.122560pt;}
._14{width:10.178987pt;}
._11{width:11.108480pt;}
._15{width:12.943573pt;}
._17{width:13.935147pt;}
._12{width:15.086080pt;}
._18{width:16.573440pt;}
._b{width:17.770667pt;}
._a{width:18.900480pt;}
._8{width:26.259840pt;}
._9{width:27.551787pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:5.920000pt;}
.y67{bottom:6.080000pt;}
.y9a{bottom:6.240000pt;}
.ycb{bottom:25.120000pt;}
.y72{bottom:26.720000pt;}
.y6b{bottom:26.880000pt;}
.yc8{bottom:31.520000pt;}
.y90{bottom:35.200000pt;}
.y96{bottom:35.360000pt;}
.yca{bottom:44.000000pt;}
.y71{bottom:45.440000pt;}
.y6a{bottom:45.600000pt;}
.y6{bottom:51.840000pt;}
.yc9{bottom:62.874667pt;}
.y70{bottom:64.160000pt;}
.y69{bottom:64.320000pt;}
.yc7{bottom:81.792000pt;}
.y65{bottom:82.112000pt;}
.y9f{bottom:87.232000pt;}
.yc6{bottom:92.832000pt;}
.y64{bottom:100.832000pt;}
.y9e{bottom:105.952000pt;}
.y30{bottom:108.832000pt;}
.yc5{bottom:111.552000pt;}
.y63{bottom:119.552000pt;}
.y9d{bottom:124.672000pt;}
.y2f{bottom:127.552000pt;}
.yc4{bottom:130.272000pt;}
.y62{bottom:138.266667pt;}
.y9c{bottom:143.386667pt;}
.y2e{bottom:146.266667pt;}
.yc3{bottom:148.986667pt;}
.y61{bottom:156.986667pt;}
.y9b{bottom:162.106667pt;}
.y2d{bottom:164.986667pt;}
.yc2{bottom:167.706667pt;}
.y95{bottom:175.386667pt;}
.y60{bottom:175.706667pt;}
.y2c{bottom:183.706667pt;}
.yc1{bottom:186.426667pt;}
.y5f{bottom:194.426667pt;}
.y99{bottom:195.066667pt;}
.y2b{bottom:202.426667pt;}
.yc0{bottom:205.146667pt;}
.y5e{bottom:213.146667pt;}
.y98{bottom:214.426667pt;}
.y2a{bottom:221.146667pt;}
.ybf{bottom:223.866667pt;}
.y5d{bottom:231.866667pt;}
.y97{bottom:233.786667pt;}
.y29{bottom:239.866667pt;}
.ybe{bottom:242.586667pt;}
.y5c{bottom:250.586667pt;}
.y8f{bottom:253.146667pt;}
.y28{bottom:258.586667pt;}
.ybd{bottom:261.306667pt;}
.y5b{bottom:269.306667pt;}
.y93{bottom:272.666667pt;}
.y27{bottom:277.306667pt;}
.ybc{bottom:280.026667pt;}
.y5a{bottom:288.026667pt;}
.y92{bottom:292.066667pt;}
.y26{bottom:296.066667pt;}
.ybb{bottom:298.786667pt;}
.y59{bottom:306.786667pt;}
.y91{bottom:311.426667pt;}
.y25{bottom:314.786667pt;}
.yba{bottom:317.506667pt;}
.y58{bottom:325.506667pt;}
.y8e{bottom:330.786667pt;}
.y24{bottom:333.506667pt;}
.yb9{bottom:336.226667pt;}
.y57{bottom:344.226667pt;}
.y23{bottom:352.226667pt;}
.yb8{bottom:354.946667pt;}
.y8d{bottom:356.226667pt;}
.y56{bottom:362.946667pt;}
.y22{bottom:370.946667pt;}
.yb7{bottom:373.666667pt;}
.y8c{bottom:374.946667pt;}
.y55{bottom:381.666667pt;}
.y21{bottom:391.426667pt;}
.yb6{bottom:392.386667pt;}
.y8b{bottom:393.666667pt;}
.y54{bottom:400.386667pt;}
.yb5{bottom:411.106667pt;}
.y8a{bottom:412.386667pt;}
.y20{bottom:418.306667pt;}
.y53{bottom:419.106667pt;}
.yb4{bottom:429.826667pt;}
.y89{bottom:431.106667pt;}
.y1f{bottom:437.026667pt;}
.y52{bottom:437.826667pt;}
.yb3{bottom:448.546667pt;}
.y88{bottom:449.826667pt;}
.y1e{bottom:455.746667pt;}
.y51{bottom:456.546667pt;}
.yb2{bottom:467.266667pt;}
.y87{bottom:468.546667pt;}
.y1d{bottom:474.466667pt;}
.y50{bottom:475.266667pt;}
.yb1{bottom:485.986667pt;}
.y86{bottom:487.266667pt;}
.y1c{bottom:493.186667pt;}
.y4f{bottom:493.986667pt;}
.yb0{bottom:504.706667pt;}
.y85{bottom:505.986667pt;}
.y1b{bottom:511.906667pt;}
.y4e{bottom:512.706667pt;}
.yaf{bottom:523.426667pt;}
.y84{bottom:524.706667pt;}
.y1a{bottom:530.653333pt;}
.y4d{bottom:531.453333pt;}
.yae{bottom:542.173333pt;}
.y83{bottom:543.453333pt;}
.y19{bottom:549.373333pt;}
.y4c{bottom:550.173333pt;}
.yad{bottom:560.893333pt;}
.y82{bottom:562.173333pt;}
.y18{bottom:568.093333pt;}
.y4b{bottom:568.893333pt;}
.yac{bottom:579.613333pt;}
.y81{bottom:580.893333pt;}
.y17{bottom:586.813333pt;}
.y4a{bottom:587.613333pt;}
.yab{bottom:598.333333pt;}
.y80{bottom:599.613333pt;}
.y16{bottom:605.533333pt;}
.y49{bottom:606.333333pt;}
.yaa{bottom:617.053333pt;}
.y7f{bottom:618.333333pt;}
.y15{bottom:624.253333pt;}
.y48{bottom:625.053333pt;}
.ya9{bottom:635.773333pt;}
.y7e{bottom:637.053333pt;}
.y14{bottom:642.973333pt;}
.y47{bottom:643.773333pt;}
.ya8{bottom:654.493333pt;}
.y7d{bottom:655.773333pt;}
.y13{bottom:661.693333pt;}
.y46{bottom:662.493333pt;}
.ya7{bottom:673.053333pt;}
.y7c{bottom:674.493333pt;}
.y45{bottom:681.053333pt;}
.y12{bottom:682.493333pt;}
.ya6{bottom:691.773333pt;}
.y7b{bottom:693.213333pt;}
.y44{bottom:699.773333pt;}
.y11{bottom:705.693333pt;}
.ya5{bottom:710.493333pt;}
.y7a{bottom:711.933333pt;}
.y43{bottom:718.493333pt;}
.y10{bottom:724.413333pt;}
.ya4{bottom:729.213333pt;}
.y79{bottom:730.653333pt;}
.y42{bottom:737.213333pt;}
.yf{bottom:743.133333pt;}
.ya3{bottom:747.933333pt;}
.y78{bottom:749.373333pt;}
.y41{bottom:755.933333pt;}
.ye{bottom:761.853333pt;}
.ya2{bottom:766.693333pt;}
.y77{bottom:768.133333pt;}
.y40{bottom:774.693333pt;}
.yd{bottom:780.613333pt;}
.ya1{bottom:785.413333pt;}
.y76{bottom:786.853333pt;}
.y3f{bottom:793.413333pt;}
.yc{bottom:799.333333pt;}
.y6f{bottom:800.133333pt;}
.ya0{bottom:804.133333pt;}
.y3e{bottom:812.133333pt;}
.yb{bottom:814.213333pt;}
.y75{bottom:819.493333pt;}
.y3d{bottom:830.853333pt;}
.ya{bottom:834.853333pt;}
.y74{bottom:838.853333pt;}
.y3c{bottom:849.573333pt;}
.y9{bottom:854.693333pt;}
.y73{bottom:858.213333pt;}
.y3b{bottom:868.293333pt;}
.y8{bottom:876.933333pt;}
.y68{bottom:877.573333pt;}
.y3a{bottom:887.013333pt;}
.y6e{bottom:897.093333pt;}
.y39{bottom:905.733333pt;}
.y7{bottom:906.853333pt;}
.y6d{bottom:916.453333pt;}
.y38{bottom:924.453333pt;}
.y6c{bottom:935.813333pt;}
.y5{bottom:942.693333pt;}
.y37{bottom:943.173333pt;}
.y66{bottom:955.173333pt;}
.y36{bottom:961.893333pt;}
.y4{bottom:971.333333pt;}
.y35{bottom:980.613333pt;}
.y34{bottom:999.333333pt;}
.y3{bottom:999.813333pt;}
.y33{bottom:1018.080000pt;}
.y2{bottom:1028.480000pt;}
.y32{bottom:1042.880000pt;}
.y1{bottom:1059.200000pt;}
.y31{bottom:1060.800000pt;}
.h15{height:2.546250pt;}
.h10{height:18.592000pt;}
.hb{height:18.720000pt;}
.h12{height:19.040000pt;}
.h7{height:34.374375pt;}
.h8{height:40.514375pt;}
.he{height:40.566250pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h13{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h14{height:75.520000pt;}
.hd{height:76.800000pt;}
.hc{height:76.960000pt;}
.hf{height:76.992000pt;}
.h11{height:77.120000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:78.080000pt;}
.w6{width:94.912000pt;}
.w5{width:101.600000pt;}
.wa{width:132.352000pt;}
.w4{width:133.626667pt;}
.w9{width:141.786667pt;}
.w8{width:148.960000pt;}
.wc{width:187.386667pt;}
.wb{width:188.986667pt;}
.w7{width:193.306667pt;}
.wd{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.xe{left:35.520000pt;}
.x12{left:38.559988pt;}
.xc{left:42.879988pt;}
.x1{left:47.999988pt;}
.x2{left:62.399988pt;}
.x13{left:66.079988pt;}
.x3{left:67.199988pt;}
.x14{left:71.999988pt;}
.xa{left:76.319988pt;}
.xd{left:90.912000pt;}
.xb{left:95.231988pt;}
.x4{left:96.192000pt;}
.x15{left:170.106667pt;}
.x6{left:174.266667pt;}
.x16{left:235.386667pt;}
.xf{left:239.866667pt;}
.x7{left:307.906667pt;}
.x10{left:381.666667pt;}
.x8{left:409.506667pt;}
.x9{left:504.413333pt;}
.x11{left:514.013333pt;}
}




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