
    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_028149031f5cbccb2dc072b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974000;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_d106a7b63a94218a31b7f641.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965879;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_9886dd9b9273193784dca4f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c443bd4f2b37e4970dc08b83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_68a507cd30b36fc3462c114d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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;}
.ls1b{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.240000px;}
.lsd{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.900000px;}
.ls17{letter-spacing:0.960000px;}
.ls0{letter-spacing:1.200000px;}
.ls9{letter-spacing:1.380000px;}
.ls2{letter-spacing:1.500000px;}
.ls3{letter-spacing:1.560000px;}
.ls1a{letter-spacing:1.584000px;}
.ls12{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.680000px;}
.ls19{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.740000px;}
.lsa{letter-spacing:1.764000px;}
.lsc{letter-spacing:1.800000px;}
.ls15{letter-spacing:1.848000px;}
.ls8{letter-spacing:1.920000px;}
.lse{letter-spacing:1.980000px;}
.ls11{letter-spacing:2.100000px;}
.ls7{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.484000px;}
.ls13{letter-spacing:5.076000px;}
.ls6{letter-spacing:5.292000px;}
.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;}
}
.ws4{word-spacing:-29.592000px;}
.ws16{word-spacing:-29.376000px;}
.ws5{word-spacing:-26.460000px;}
.ws17{word-spacing:-20.664000px;}
.ws12{word-spacing:-18.660000px;}
.ws11{word-spacing:-18.240000px;}
.ws6{word-spacing:-18.180000px;}
.ws18{word-spacing:-11.772000px;}
.wsb{word-spacing:-1.764000px;}
.wsc{word-spacing:-1.500000px;}
.wsa{word-spacing:-1.380000px;}
.ws1d{word-spacing:-0.828000px;}
.ws1e{word-spacing:-0.684000px;}
.ws7{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.600000px;}
.wse{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.120000px;}
.ws1a{word-spacing:0.252000px;}
.ws1c{word-spacing:0.540000px;}
.ws0{word-spacing:0.966000px;}
.ws10{word-spacing:1.500000px;}
.ws3{word-spacing:1.740000px;}
.ws1f{word-spacing:2.196000px;}
.ws19{word-spacing:2.340000px;}
._8{margin-left:-4.157400px;}
._7{margin-left:-2.782200px;}
._4{margin-left:-1.320000px;}
._0{width:1.007400px;}
._6{width:2.365200px;}
._1{width:3.615600px;}
._3{width:4.788600px;}
._2{width:7.079400px;}
._9{width:45.859200px;}
._5{width:290.317800px;}
.fc2{color:rgb(24,60,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:32.178750px;}
.ycb{bottom:42.978750px;}
.ybb{bottom:65.574750px;}
.y33{bottom:70.689000px;}
.yca{bottom:73.974750px;}
.yc9{bottom:84.774750px;}
.yba{bottom:85.074750px;}
.yc8{bottom:95.574750px;}
.y11{bottom:98.235450px;}
.y32{bottom:102.944850px;}
.yb9{bottom:104.574750px;}
.yc7{bottom:106.374750px;}
.y10{bottom:117.735450px;}
.y31{bottom:122.444850px;}
.yb8{bottom:124.074750px;}
.yc6{bottom:125.679750px;}
.y6e{bottom:133.222500px;}
.yc5{bottom:136.479750px;}
.yf{bottom:137.235450px;}
.y30{bottom:141.944850px;}
.yb7{bottom:143.574750px;}
.yc4{bottom:147.279750px;}
.y6d{bottom:152.722500px;}
.ye{bottom:156.735450px;}
.yb6{bottom:163.074750px;}
.yc3{bottom:166.584750px;}
.y2f{bottom:174.200850px;}
.yc2{bottom:177.384750px;}
.yb5{bottom:182.574750px;}
.y6c{bottom:184.978350px;}
.yd{bottom:188.985450px;}
.y2e{bottom:193.700850px;}
.yc1{bottom:196.689750px;}
.yb4{bottom:202.074750px;}
.y6b{bottom:204.478350px;}
.yc0{bottom:207.489750px;}
.yc{bottom:208.485450px;}
.y2d{bottom:213.200850px;}
.yb3{bottom:221.574750px;}
.y6a{bottom:223.978350px;}
.ybf{bottom:226.794750px;}
.yb{bottom:227.985450px;}
.ybe{bottom:237.594750px;}
.yb2{bottom:241.074750px;}
.y2c{bottom:245.456700px;}
.ya{bottom:247.485450px;}
.ybd{bottom:248.394750px;}
.y69{bottom:256.234350px;}
.y2b{bottom:264.956700px;}
.y9{bottom:266.985450px;}
.ybc{bottom:267.699750px;}
.yb1{bottom:273.330750px;}
.y68{bottom:275.734350px;}
.y8{bottom:286.485450px;}
.y2a{bottom:292.960650px;}
.y67{bottom:295.234350px;}
.y7{bottom:305.985450px;}
.y6{bottom:325.485450px;}
.y66{bottom:327.490200px;}
.y94{bottom:337.303650px;}
.y5{bottom:344.985450px;}
.y65{bottom:346.990200px;}
.y93{bottom:356.803650px;}
.y4{bottom:364.485450px;}
.y64{bottom:366.490200px;}
.y92{bottom:376.303650px;}
.y40{bottom:378.393150px;}
.y3{bottom:383.985450px;}
.y29{bottom:390.305700px;}
.y91{bottom:395.803650px;}
.y3f{bottom:397.893150px;}
.y63{bottom:398.746050px;}
.y28{bottom:409.805700px;}
.y3e{bottom:417.393150px;}
.y62{bottom:418.246050px;}
.y90{bottom:423.807600px;}
.y27{bottom:429.305700px;}
.y61{bottom:437.746050px;}
.y26{bottom:448.805700px;}
.y3d{bottom:449.643150px;}
.y25{bottom:468.305700px;}
.y3c{bottom:469.143150px;}
.y60{bottom:470.002050px;}
.y9a{bottom:484.860150px;}
.y24{bottom:487.805700px;}
.y3b{bottom:488.643150px;}
.y5f{bottom:489.502050px;}
.y99{bottom:504.360150px;}
.y3a{bottom:508.143150px;}
.y5e{bottom:509.002050px;}
.y23{bottom:520.055700px;}
.y39{bottom:527.643150px;}
.y98{bottom:536.616150px;}
.y5d{bottom:537.006000px;}
.y2{bottom:538.095450px;}
.y22{bottom:539.555700px;}
.y97{bottom:556.116150px;}
.y21{bottom:559.055700px;}
.y38{bottom:559.893150px;}
.y20{bottom:578.555700px;}
.y37{bottom:579.393150px;}
.y96{bottom:588.372000px;}
.y1f{bottom:598.055700px;}
.y36{bottom:598.893150px;}
.y95{bottom:616.375950px;}
.y1e{bottom:617.555700px;}
.y35{bottom:618.393150px;}
.y87{bottom:632.118900px;}
.y1d{bottom:637.055700px;}
.y34{bottom:637.893150px;}
.y1{bottom:638.862000px;}
.y86{bottom:651.618900px;}
.y1c{bottom:669.311550px;}
.y85{bottom:671.118900px;}
.y8f{bottom:683.551200px;}
.y84{bottom:690.618900px;}
.y8e{bottom:703.051200px;}
.yb0{bottom:706.368900px;}
.y83{bottom:710.118900px;}
.y8d{bottom:722.551200px;}
.yaf{bottom:725.868900px;}
.y82{bottom:729.618900px;}
.yae{bottom:745.368900px;}
.y81{bottom:749.118900px;}
.y8c{bottom:754.801200px;}
.y80{bottom:762.022500px;}
.yad{bottom:764.868900px;}
.y1b{bottom:773.167350px;}
.y8b{bottom:774.301200px;}
.y48{bottom:781.109100px;}
.yac{bottom:784.368900px;}
.y5c{bottom:787.051200px;}
.y1a{bottom:792.667350px;}
.y47{bottom:800.609100px;}
.y5b{bottom:806.551200px;}
.y19{bottom:812.167350px;}
.yab{bottom:816.618900px;}
.y46{bottom:820.109100px;}
.y5a{bottom:826.051200px;}
.y7f{bottom:826.537500px;}
.y18{bottom:831.667350px;}
.yaa{bottom:836.118900px;}
.y45{bottom:839.609100px;}
.y59{bottom:845.551200px;}
.y7e{bottom:846.037500px;}
.y17{bottom:851.167350px;}
.ya9{bottom:855.618900px;}
.y44{bottom:859.109100px;}
.y58{bottom:865.051200px;}
.y7d{bottom:865.537500px;}
.y16{bottom:870.667350px;}
.ya8{bottom:875.118900px;}
.y43{bottom:878.609100px;}
.y57{bottom:884.551200px;}
.y7c{bottom:885.037500px;}
.y15{bottom:890.167350px;}
.ya7{bottom:894.618900px;}
.y56{bottom:904.051200px;}
.y7b{bottom:904.537500px;}
.y14{bottom:909.667350px;}
.y42{bottom:910.859100px;}
.ya6{bottom:914.118900px;}
.y55{bottom:923.551200px;}
.y7a{bottom:924.037500px;}
.y13{bottom:929.167350px;}
.y41{bottom:930.359100px;}
.y54{bottom:943.051200px;}
.y79{bottom:943.537500px;}
.ya5{bottom:946.368900px;}
.y12{bottom:961.423350px;}
.y8a{bottom:962.551200px;}
.y78{bottom:963.037500px;}
.ya4{bottom:965.868900px;}
.y53{bottom:975.301200px;}
.y89{bottom:982.051200px;}
.ya3{bottom:985.368900px;}
.y52{bottom:994.801200px;}
.y77{bottom:995.287500px;}
.y88{bottom:1001.551200px;}
.ya2{bottom:1004.868900px;}
.y51{bottom:1014.301200px;}
.y76{bottom:1014.787500px;}
.ya1{bottom:1024.368900px;}
.y50{bottom:1033.801200px;}
.y75{bottom:1034.287500px;}
.ya0{bottom:1043.868900px;}
.y4f{bottom:1053.301200px;}
.y74{bottom:1053.787500px;}
.y9f{bottom:1063.368900px;}
.y4e{bottom:1072.801200px;}
.y73{bottom:1073.287500px;}
.y9e{bottom:1082.868900px;}
.y4d{bottom:1092.301200px;}
.y72{bottom:1092.787500px;}
.y9d{bottom:1102.368900px;}
.y4c{bottom:1111.801200px;}
.y71{bottom:1112.287500px;}
.y4b{bottom:1131.301200px;}
.y70{bottom:1131.787500px;}
.y9c{bottom:1134.618900px;}
.y4a{bottom:1150.801200px;}
.y6f{bottom:1151.287500px;}
.y9b{bottom:1154.118900px;}
.y49{bottom:1183.057200px;}
.h8{height:26.226562px;}
.h7{height:43.681641px;}
.h4{height:43.710938px;}
.h3{height:44.992759px;}
.h6{height:62.580000px;}
.h5{height:80.460000px;}
.h2{height:102.810000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.810100px;}
.x4{left:70.157400px;}
.x5{left:91.417350px;}
.x3{left:169.619550px;}
.x1{left:263.204250px;}
.x6{left:455.226450px;}
.x7{left:476.486250px;}
.x8{left:569.763750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.853333pt;}
.ls0{letter-spacing:1.066667pt;}
.ls9{letter-spacing:1.226667pt;}
.ls2{letter-spacing:1.333333pt;}
.ls3{letter-spacing:1.386667pt;}
.ls1a{letter-spacing:1.408000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.493333pt;}
.ls19{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.546667pt;}
.lsa{letter-spacing:1.568000pt;}
.lsc{letter-spacing:1.600000pt;}
.ls15{letter-spacing:1.642667pt;}
.ls8{letter-spacing:1.706667pt;}
.lse{letter-spacing:1.760000pt;}
.ls11{letter-spacing:1.866667pt;}
.ls7{letter-spacing:1.920000pt;}
.ls1{letter-spacing:2.208000pt;}
.ls13{letter-spacing:4.512000pt;}
.ls6{letter-spacing:4.704000pt;}
.ws4{word-spacing:-26.304000pt;}
.ws16{word-spacing:-26.112000pt;}
.ws5{word-spacing:-23.520000pt;}
.ws17{word-spacing:-18.368000pt;}
.ws12{word-spacing:-16.586667pt;}
.ws11{word-spacing:-16.213333pt;}
.ws6{word-spacing:-16.160000pt;}
.ws18{word-spacing:-10.464000pt;}
.wsb{word-spacing:-1.568000pt;}
.wsc{word-spacing:-1.333333pt;}
.wsa{word-spacing:-1.226667pt;}
.ws1d{word-spacing:-0.736000pt;}
.ws1e{word-spacing:-0.608000pt;}
.ws7{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.106667pt;}
.ws1a{word-spacing:0.224000pt;}
.ws1c{word-spacing:0.480000pt;}
.ws0{word-spacing:0.858667pt;}
.ws10{word-spacing:1.333333pt;}
.ws3{word-spacing:1.546667pt;}
.ws1f{word-spacing:1.952000pt;}
.ws19{word-spacing:2.080000pt;}
._8{margin-left:-3.695467pt;}
._7{margin-left:-2.473067pt;}
._4{margin-left:-1.173333pt;}
._0{width:0.895467pt;}
._6{width:2.102400pt;}
._1{width:3.213867pt;}
._3{width:4.256533pt;}
._2{width:6.292800pt;}
._9{width:40.763733pt;}
._5{width:258.060267pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:28.603333pt;}
.ycb{bottom:38.203333pt;}
.ybb{bottom:58.288667pt;}
.y33{bottom:62.834667pt;}
.yca{bottom:65.755333pt;}
.yc9{bottom:75.355333pt;}
.yba{bottom:75.622000pt;}
.yc8{bottom:84.955333pt;}
.y11{bottom:87.320400pt;}
.y32{bottom:91.506533pt;}
.yb9{bottom:92.955333pt;}
.yc7{bottom:94.555333pt;}
.y10{bottom:104.653733pt;}
.y31{bottom:108.839867pt;}
.yb8{bottom:110.288667pt;}
.yc6{bottom:111.715333pt;}
.y6e{bottom:118.420000pt;}
.yc5{bottom:121.315333pt;}
.yf{bottom:121.987067pt;}
.y30{bottom:126.173200pt;}
.yb7{bottom:127.622000pt;}
.yc4{bottom:130.915333pt;}
.y6d{bottom:135.753333pt;}
.ye{bottom:139.320400pt;}
.yb6{bottom:144.955333pt;}
.yc3{bottom:148.075333pt;}
.y2f{bottom:154.845200pt;}
.yc2{bottom:157.675333pt;}
.yb5{bottom:162.288667pt;}
.y6c{bottom:164.425200pt;}
.yd{bottom:167.987067pt;}
.y2e{bottom:172.178533pt;}
.yc1{bottom:174.835333pt;}
.yb4{bottom:179.622000pt;}
.y6b{bottom:181.758533pt;}
.yc0{bottom:184.435333pt;}
.yc{bottom:185.320400pt;}
.y2d{bottom:189.511867pt;}
.yb3{bottom:196.955333pt;}
.y6a{bottom:199.091867pt;}
.ybf{bottom:201.595333pt;}
.yb{bottom:202.653733pt;}
.ybe{bottom:211.195333pt;}
.yb2{bottom:214.288667pt;}
.y2c{bottom:218.183733pt;}
.ya{bottom:219.987067pt;}
.ybd{bottom:220.795333pt;}
.y69{bottom:227.763867pt;}
.y2b{bottom:235.517067pt;}
.y9{bottom:237.320400pt;}
.ybc{bottom:237.955333pt;}
.yb1{bottom:242.960667pt;}
.y68{bottom:245.097200pt;}
.y8{bottom:254.653733pt;}
.y2a{bottom:260.409467pt;}
.y67{bottom:262.430533pt;}
.y7{bottom:271.987067pt;}
.y6{bottom:289.320400pt;}
.y66{bottom:291.102400pt;}
.y94{bottom:299.825467pt;}
.y5{bottom:306.653733pt;}
.y65{bottom:308.435733pt;}
.y93{bottom:317.158800pt;}
.y4{bottom:323.987067pt;}
.y64{bottom:325.769067pt;}
.y92{bottom:334.492133pt;}
.y40{bottom:336.349467pt;}
.y3{bottom:341.320400pt;}
.y29{bottom:346.938400pt;}
.y91{bottom:351.825467pt;}
.y3f{bottom:353.682800pt;}
.y63{bottom:354.440933pt;}
.y28{bottom:364.271733pt;}
.y3e{bottom:371.016133pt;}
.y62{bottom:371.774267pt;}
.y90{bottom:376.717867pt;}
.y27{bottom:381.605067pt;}
.y61{bottom:389.107600pt;}
.y26{bottom:398.938400pt;}
.y3d{bottom:399.682800pt;}
.y25{bottom:416.271733pt;}
.y3c{bottom:417.016133pt;}
.y60{bottom:417.779600pt;}
.y9a{bottom:430.986800pt;}
.y24{bottom:433.605067pt;}
.y3b{bottom:434.349467pt;}
.y5f{bottom:435.112933pt;}
.y99{bottom:448.320133pt;}
.y3a{bottom:451.682800pt;}
.y5e{bottom:452.446267pt;}
.y23{bottom:462.271733pt;}
.y39{bottom:469.016133pt;}
.y98{bottom:476.992133pt;}
.y5d{bottom:477.338667pt;}
.y2{bottom:478.307067pt;}
.y22{bottom:479.605067pt;}
.y97{bottom:494.325467pt;}
.y21{bottom:496.938400pt;}
.y38{bottom:497.682800pt;}
.y20{bottom:514.271733pt;}
.y37{bottom:515.016133pt;}
.y96{bottom:522.997333pt;}
.y1f{bottom:531.605067pt;}
.y36{bottom:532.349467pt;}
.y95{bottom:547.889733pt;}
.y1e{bottom:548.938400pt;}
.y35{bottom:549.682800pt;}
.y87{bottom:561.883467pt;}
.y1d{bottom:566.271733pt;}
.y34{bottom:567.016133pt;}
.y1{bottom:567.877333pt;}
.y86{bottom:579.216800pt;}
.y1c{bottom:594.943600pt;}
.y85{bottom:596.550133pt;}
.y8f{bottom:607.601067pt;}
.y84{bottom:613.883467pt;}
.y8e{bottom:624.934400pt;}
.yb0{bottom:627.883467pt;}
.y83{bottom:631.216800pt;}
.y8d{bottom:642.267733pt;}
.yaf{bottom:645.216800pt;}
.y82{bottom:648.550133pt;}
.yae{bottom:662.550133pt;}
.y81{bottom:665.883467pt;}
.y8c{bottom:670.934400pt;}
.y80{bottom:677.353333pt;}
.yad{bottom:679.883467pt;}
.y1b{bottom:687.259867pt;}
.y8b{bottom:688.267733pt;}
.y48{bottom:694.319200pt;}
.yac{bottom:697.216800pt;}
.y5c{bottom:699.601067pt;}
.y1a{bottom:704.593200pt;}
.y47{bottom:711.652533pt;}
.y5b{bottom:716.934400pt;}
.y19{bottom:721.926533pt;}
.yab{bottom:725.883467pt;}
.y46{bottom:728.985867pt;}
.y5a{bottom:734.267733pt;}
.y7f{bottom:734.700000pt;}
.y18{bottom:739.259867pt;}
.yaa{bottom:743.216800pt;}
.y45{bottom:746.319200pt;}
.y59{bottom:751.601067pt;}
.y7e{bottom:752.033333pt;}
.y17{bottom:756.593200pt;}
.ya9{bottom:760.550133pt;}
.y44{bottom:763.652533pt;}
.y58{bottom:768.934400pt;}
.y7d{bottom:769.366667pt;}
.y16{bottom:773.926533pt;}
.ya8{bottom:777.883467pt;}
.y43{bottom:780.985867pt;}
.y57{bottom:786.267733pt;}
.y7c{bottom:786.700000pt;}
.y15{bottom:791.259867pt;}
.ya7{bottom:795.216800pt;}
.y56{bottom:803.601067pt;}
.y7b{bottom:804.033333pt;}
.y14{bottom:808.593200pt;}
.y42{bottom:809.652533pt;}
.ya6{bottom:812.550133pt;}
.y55{bottom:820.934400pt;}
.y7a{bottom:821.366667pt;}
.y13{bottom:825.926533pt;}
.y41{bottom:826.985867pt;}
.y54{bottom:838.267733pt;}
.y79{bottom:838.700000pt;}
.ya5{bottom:841.216800pt;}
.y12{bottom:854.598533pt;}
.y8a{bottom:855.601067pt;}
.y78{bottom:856.033333pt;}
.ya4{bottom:858.550133pt;}
.y53{bottom:866.934400pt;}
.y89{bottom:872.934400pt;}
.ya3{bottom:875.883467pt;}
.y52{bottom:884.267733pt;}
.y77{bottom:884.700000pt;}
.y88{bottom:890.267733pt;}
.ya2{bottom:893.216800pt;}
.y51{bottom:901.601067pt;}
.y76{bottom:902.033333pt;}
.ya1{bottom:910.550133pt;}
.y50{bottom:918.934400pt;}
.y75{bottom:919.366667pt;}
.ya0{bottom:927.883467pt;}
.y4f{bottom:936.267733pt;}
.y74{bottom:936.700000pt;}
.y9f{bottom:945.216800pt;}
.y4e{bottom:953.601067pt;}
.y73{bottom:954.033333pt;}
.y9e{bottom:962.550133pt;}
.y4d{bottom:970.934400pt;}
.y72{bottom:971.366667pt;}
.y9d{bottom:979.883467pt;}
.y4c{bottom:988.267733pt;}
.y71{bottom:988.700000pt;}
.y4b{bottom:1005.601067pt;}
.y70{bottom:1006.033333pt;}
.y9c{bottom:1008.550133pt;}
.y4a{bottom:1022.934400pt;}
.y6f{bottom:1023.366667pt;}
.y9b{bottom:1025.883467pt;}
.y49{bottom:1051.606400pt;}
.h8{height:23.312500pt;}
.h7{height:38.828125pt;}
.h4{height:38.854167pt;}
.h3{height:39.993563pt;}
.h6{height:55.626667pt;}
.h5{height:71.520000pt;}
.h2{height:91.386667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:61.164533pt;}
.x4{left:62.362133pt;}
.x5{left:81.259867pt;}
.x3{left:150.772933pt;}
.x1{left:233.959333pt;}
.x6{left:404.645733pt;}
.x7{left:423.543333pt;}
.x8{left:506.456667pt;}
}




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