
    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_861698054866ea227e646ee8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_4ce5a8d62d29936bd9f18c6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_ad031dd05fa102f921f86176.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_fdf0057b58a43d4f0976d2fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_2924815cf7876a143dc11722.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_ebea68017a0a3deaf1c2fb84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891113;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_96664db9cc12cedca95b0e4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f81cda931b32c5e0d45e3a11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls5{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000288px;}
.ls7{letter-spacing:0.001440px;}
.ls6{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.240048px;}
.ls0{letter-spacing:0.240480px;}
.ls8{letter-spacing:7.183584px;}
.ls4{letter-spacing:44.495712px;}
.ls9{letter-spacing:845.585856px;}
.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;}
}
.ws1{word-spacing:-18.014400px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-4.716000px;}
._13{margin-left:-3.492000px;}
._a{margin-left:-2.426400px;}
._4{margin-left:-1.015200px;}
._10{width:1.000800px;}
._b{width:2.059200px;}
._3{width:3.290400px;}
._c{width:4.341600px;}
._f{width:5.565600px;}
._d{width:7.164000px;}
._16{width:8.568000px;}
._e{width:9.597600px;}
._9{width:10.663200px;}
._8{width:12.304800px;}
._15{width:13.802400px;}
._11{width:15.350400px;}
._6{width:16.927200px;}
._17{width:19.843200px;}
._5{width:21.362400px;}
._7{width:23.385600px;}
._18{width:24.436800px;}
._12{width:26.683200px;}
._19{width:28.720800px;}
._1a{width:46.519200px;}
._0{width:64.127520px;}
._1{width:198.000000px;}
._2{width:845.746560px;}
.fc1{color:rgb(153,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y42{bottom:4.200000px;}
.y49{bottom:4.260000px;}
.y56{bottom:4.560000px;}
.y3c{bottom:4.620000px;}
.y4c{bottom:4.800000px;}
.y38{bottom:4.980000px;}
.y3f{bottom:5.160000px;}
.y46{bottom:5.220000px;}
.y54{bottom:5.520000px;}
.y35{bottom:5.940000px;}
.y41{bottom:25.080000px;}
.y48{bottom:25.140000px;}
.y50{bottom:25.320000px;}
.y37{bottom:25.500000px;}
.y4b{bottom:25.680000px;}
.y3e{bottom:26.040000px;}
.y45{bottom:26.100000px;}
.y34{bottom:26.460000px;}
.y3b{bottom:46.020000px;}
.y4f{bottom:46.200000px;}
.y44{bottom:46.620000px;}
.y53{bottom:46.920000px;}
.y4e{bottom:66.720000px;}
.y3a{bottom:66.900000px;}
.y52{bottom:67.440000px;}
.yab{bottom:117.720000px;}
.y91{bottom:118.800000px;}
.ycb{bottom:120.960000px;}
.y4d{bottom:123.000000px;}
.y6d{bottom:128.520000px;}
.y2b{bottom:133.920000px;}
.yaa{bottom:148.680000px;}
.y8c{bottom:149.760000px;}
.yca{bottom:151.920000px;}
.y85{bottom:152.640000px;}
.y6c{bottom:159.480000px;}
.y2a{bottom:164.880000px;}
.yba{bottom:165.960000px;}
.y99{bottom:167.040000px;}
.ya9{bottom:179.640000px;}
.y8b{bottom:180.720000px;}
.yc9{bottom:182.880000px;}
.y84{bottom:183.600000px;}
.y6b{bottom:190.440000px;}
.y29{bottom:195.840000px;}
.yb9{bottom:196.920000px;}
.y98{bottom:198.000000px;}
.ya8{bottom:210.960000px;}
.y8a{bottom:212.040000px;}
.yd4{bottom:213.840000px;}
.y83{bottom:214.920000px;}
.y6a{bottom:221.400000px;}
.y4a{bottom:222.000000px;}
.y28{bottom:226.800000px;}
.yb8{bottom:227.880000px;}
.yc8{bottom:228.960000px;}
.ya7{bottom:241.920000px;}
.y89{bottom:243.000000px;}
.y97{bottom:244.080000px;}
.yd3{bottom:245.160000px;}
.y82{bottom:245.880000px;}
.y69{bottom:252.360000px;}
.y27{bottom:258.120000px;}
.yb7{bottom:258.840000px;}
.yc7{bottom:259.920000px;}
.ya6{bottom:272.880000px;}
.y81{bottom:276.840000px;}
.y47{bottom:280.500000px;}
.y26{bottom:289.080000px;}
.y96{bottom:290.160000px;}
.yc6{bottom:291.240000px;}
.y68{bottom:298.440000px;}
.y80{bottom:307.800000px;}
.ya5{bottom:318.960000px;}
.y25{bottom:320.040000px;}
.yc5{bottom:322.200000px;}
.y67{bottom:329.760000px;}
.y95{bottom:336.240000px;}
.yd6{bottom:336.960000px;}
.y43{bottom:337.500000px;}
.ya4{bottom:349.920000px;}
.y24{bottom:351.000000px;}
.yd2{bottom:353.160000px;}
.y7f{bottom:353.880000px;}
.y66{bottom:360.720000px;}
.yb6{bottom:367.200000px;}
.yc4{bottom:368.280000px;}
.ya3{bottom:381.240000px;}
.y23{bottom:381.960000px;}
.y7e{bottom:384.840000px;}
.y65{bottom:391.680000px;}
.yb5{bottom:398.160000px;}
.yc3{bottom:399.240000px;}
.ya2{bottom:412.200000px;}
.y78{bottom:413.280000px;}
.y7d{bottom:416.160000px;}
.y40{bottom:417.000000px;}
.y64{bottom:422.640000px;}
.y22{bottom:428.040000px;}
.yb4{bottom:429.120000px;}
.yd1{bottom:430.200000px;}
.ya1{bottom:443.160000px;}
.y77{bottom:444.240000px;}
.yc2{bottom:445.320000px;}
.y7c{bottom:447.120000px;}
.y63{bottom:453.960000px;}
.y94{bottom:459.360000px;}
.yb3{bottom:460.440000px;}
.y3d{bottom:474.000000px;}
.y21{bottom:474.120000px;}
.y76{bottom:475.200000px;}
.yc1{bottom:476.280000px;}
.y7b{bottom:478.080000px;}
.y90{bottom:490.320000px;}
.yb2{bottom:491.400000px;}
.y62{bottom:500.040000px;}
.y20{bottom:505.440000px;}
.y75{bottom:506.160000px;}
.yc0{bottom:507.240000px;}
.y88{bottom:521.280000px;}
.yb1{bottom:522.360000px;}
.y7a{bottom:524.160000px;}
.y61{bottom:531.000000px;}
.y39{bottom:532.500000px;}
.y1f{bottom:536.400000px;}
.y74{bottom:537.480000px;}
.yd0{bottom:538.560000px;}
.y8f{bottom:552.240000px;}
.ybf{bottom:553.320000px;}
.y60{bottom:561.960000px;}
.y79{bottom:566.280000px;}
.y1e{bottom:567.360000px;}
.y73{bottom:568.440000px;}
.ycf{bottom:569.520000px;}
.y8e{bottom:583.560000px;}
.ybe{bottom:584.640000px;}
.y5f{bottom:592.920000px;}
.y1d{bottom:598.320000px;}
.y72{bottom:599.400000px;}
.yb0{bottom:614.520000px;}
.ybd{bottom:615.600000px;}
.y10{bottom:617.040000px;}
.y5e{bottom:623.880000px;}
.y1c{bottom:629.640000px;}
.yd5{bottom:630.360000px;}
.y36{bottom:631.500000px;}
.yf{bottom:640.800000px;}
.ya0{bottom:644.400000px;}
.y71{bottom:645.480000px;}
.yce{bottom:646.560000px;}
.y5d{bottom:655.200000px;}
.y1b{bottom:660.600000px;}
.ybc{bottom:661.680000px;}
.ye{bottom:664.560000px;}
.yaf{bottom:676.440000px;}
.yd{bottom:688.320000px;}
.y33{bottom:688.500000px;}
.y9f{bottom:690.480000px;}
.y1a{bottom:691.560000px;}
.ybb{bottom:692.640000px;}
.y5c{bottom:701.280000px;}
.y93{bottom:706.680000px;}
.yae{bottom:707.760000px;}
.yc{bottom:712.440000px;}
.y9e{bottom:721.440000px;}
.y19{bottom:722.520000px;}
.ycd{bottom:723.600000px;}
.yb{bottom:736.200000px;}
.y92{bottom:737.640000px;}
.yad{bottom:738.720000px;}
.y5b{bottom:747.360000px;}
.y9d{bottom:752.760000px;}
.y70{bottom:753.480000px;}
.ya{bottom:759.960000px;}
.y18{bottom:768.600000px;}
.y32{bottom:769.680000px;}
.y9{bottom:783.720000px;}
.y6f{bottom:784.800000px;}
.y5a{bottom:793.080000px;}
.y17{bottom:799.560000px;}
.yac{bottom:800.640000px;}
.y8{bottom:807.480000px;}
.y9c{bottom:814.680000px;}
.y31{bottom:815.760000px;}
.y59{bottom:824.400000px;}
.y16{bottom:830.880000px;}
.y7{bottom:831.240000px;}
.ycc{bottom:831.960000px;}
.y9b{bottom:845.640000px;}
.y30{bottom:846.720000px;}
.y6{bottom:855.000000px;}
.y58{bottom:855.360000px;}
.y15{bottom:861.840000px;}
.y9a{bottom:876.960000px;}
.y2f{bottom:877.680000px;}
.y5{bottom:878.760000px;}
.y57{bottom:886.320000px;}
.y14{bottom:892.800000px;}
.y87{bottom:907.920000px;}
.y6e{bottom:909.000000px;}
.y13{bottom:923.760000px;}
.y4{bottom:924.840000px;}
.y55{bottom:930.000000px;}
.y86{bottom:938.880000px;}
.y8d{bottom:939.960000px;}
.y12{bottom:955.080000px;}
.y2e{bottom:969.840000px;}
.y3{bottom:977.040000px;}
.y11{bottom:986.040000px;}
.y51{bottom:987.000000px;}
.y2d{bottom:1001.160000px;}
.y2{bottom:1017.000000px;}
.y2c{bottom:1032.120000px;}
.y1{bottom:1063.080000px;}
.h3{height:32.113125px;}
.h6{height:42.000000px;}
.h5{height:43.500000px;}
.h1{height:48.796875px;}
.h4{height:50.027344px;}
.h9{height:55.666406px;}
.h2{height:56.593125px;}
.h8{height:64.500000px;}
.h7{height:84.000000px;}
.h0{height:1188.000000px;}
.w4{width:106.500000px;}
.w2{width:108.000000px;}
.w5{width:132.000000px;}
.w1{width:139.500000px;}
.w3{width:238.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:6.780036px;}
.xe{left:8.040000px;}
.x5{left:108.000000px;}
.xa{left:109.500000px;}
.x7{left:135.000000px;}
.x8{left:162.000000px;}
.x3{left:163.535148px;}
.x13{left:188.033220px;}
.x9{left:214.523424px;}
.x1{left:242.490240px;}
.xc{left:249.000000px;}
.x2{left:294.029280px;}
.x11{left:337.763664px;}
.x14{left:344.746548px;}
.xd{left:357.000000px;}
.x15{left:363.757320px;}
.x6{left:409.992120px;}
.x16{left:415.986480px;}
.x4{left:459.000000px;}
.xf{left:595.500000px;}
.x10{left:702.000000px;}
.x12{left:810.000000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000256pt;}
.ls7{letter-spacing:0.001280pt;}
.ls6{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.213376pt;}
.ls0{letter-spacing:0.213760pt;}
.ls8{letter-spacing:6.385408pt;}
.ls4{letter-spacing:39.551744pt;}
.ls9{letter-spacing:751.631872pt;}
.ws1{word-spacing:-16.012800pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-4.192000pt;}
._13{margin-left:-3.104000pt;}
._a{margin-left:-2.156800pt;}
._4{margin-left:-0.902400pt;}
._10{width:0.889600pt;}
._b{width:1.830400pt;}
._3{width:2.924800pt;}
._c{width:3.859200pt;}
._f{width:4.947200pt;}
._d{width:6.368000pt;}
._16{width:7.616000pt;}
._e{width:8.531200pt;}
._9{width:9.478400pt;}
._8{width:10.937600pt;}
._15{width:12.268800pt;}
._11{width:13.644800pt;}
._6{width:15.046400pt;}
._17{width:17.638400pt;}
._5{width:18.988800pt;}
._7{width:20.787200pt;}
._18{width:21.721600pt;}
._12{width:23.718400pt;}
._19{width:25.529600pt;}
._1a{width:41.350400pt;}
._0{width:57.002240pt;}
._1{width:176.000000pt;}
._2{width:751.774720pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.733333pt;}
.y49{bottom:3.786667pt;}
.y56{bottom:4.053333pt;}
.y3c{bottom:4.106667pt;}
.y4c{bottom:4.266667pt;}
.y38{bottom:4.426667pt;}
.y3f{bottom:4.586667pt;}
.y46{bottom:4.640000pt;}
.y54{bottom:4.906667pt;}
.y35{bottom:5.280000pt;}
.y41{bottom:22.293333pt;}
.y48{bottom:22.346667pt;}
.y50{bottom:22.506667pt;}
.y37{bottom:22.666667pt;}
.y4b{bottom:22.826667pt;}
.y3e{bottom:23.146667pt;}
.y45{bottom:23.200000pt;}
.y34{bottom:23.520000pt;}
.y3b{bottom:40.906667pt;}
.y4f{bottom:41.066667pt;}
.y44{bottom:41.440000pt;}
.y53{bottom:41.706667pt;}
.y4e{bottom:59.306667pt;}
.y3a{bottom:59.466667pt;}
.y52{bottom:59.946667pt;}
.yab{bottom:104.640000pt;}
.y91{bottom:105.600000pt;}
.ycb{bottom:107.520000pt;}
.y4d{bottom:109.333333pt;}
.y6d{bottom:114.240000pt;}
.y2b{bottom:119.040000pt;}
.yaa{bottom:132.160000pt;}
.y8c{bottom:133.120000pt;}
.yca{bottom:135.040000pt;}
.y85{bottom:135.680000pt;}
.y6c{bottom:141.760000pt;}
.y2a{bottom:146.560000pt;}
.yba{bottom:147.520000pt;}
.y99{bottom:148.480000pt;}
.ya9{bottom:159.680000pt;}
.y8b{bottom:160.640000pt;}
.yc9{bottom:162.560000pt;}
.y84{bottom:163.200000pt;}
.y6b{bottom:169.280000pt;}
.y29{bottom:174.080000pt;}
.yb9{bottom:175.040000pt;}
.y98{bottom:176.000000pt;}
.ya8{bottom:187.520000pt;}
.y8a{bottom:188.480000pt;}
.yd4{bottom:190.080000pt;}
.y83{bottom:191.040000pt;}
.y6a{bottom:196.800000pt;}
.y4a{bottom:197.333333pt;}
.y28{bottom:201.600000pt;}
.yb8{bottom:202.560000pt;}
.yc8{bottom:203.520000pt;}
.ya7{bottom:215.040000pt;}
.y89{bottom:216.000000pt;}
.y97{bottom:216.960000pt;}
.yd3{bottom:217.920000pt;}
.y82{bottom:218.560000pt;}
.y69{bottom:224.320000pt;}
.y27{bottom:229.440000pt;}
.yb7{bottom:230.080000pt;}
.yc7{bottom:231.040000pt;}
.ya6{bottom:242.560000pt;}
.y81{bottom:246.080000pt;}
.y47{bottom:249.333333pt;}
.y26{bottom:256.960000pt;}
.y96{bottom:257.920000pt;}
.yc6{bottom:258.880000pt;}
.y68{bottom:265.280000pt;}
.y80{bottom:273.600000pt;}
.ya5{bottom:283.520000pt;}
.y25{bottom:284.480000pt;}
.yc5{bottom:286.400000pt;}
.y67{bottom:293.120000pt;}
.y95{bottom:298.880000pt;}
.yd6{bottom:299.520000pt;}
.y43{bottom:300.000000pt;}
.ya4{bottom:311.040000pt;}
.y24{bottom:312.000000pt;}
.yd2{bottom:313.920000pt;}
.y7f{bottom:314.560000pt;}
.y66{bottom:320.640000pt;}
.yb6{bottom:326.400000pt;}
.yc4{bottom:327.360000pt;}
.ya3{bottom:338.880000pt;}
.y23{bottom:339.520000pt;}
.y7e{bottom:342.080000pt;}
.y65{bottom:348.160000pt;}
.yb5{bottom:353.920000pt;}
.yc3{bottom:354.880000pt;}
.ya2{bottom:366.400000pt;}
.y78{bottom:367.360000pt;}
.y7d{bottom:369.920000pt;}
.y40{bottom:370.666667pt;}
.y64{bottom:375.680000pt;}
.y22{bottom:380.480000pt;}
.yb4{bottom:381.440000pt;}
.yd1{bottom:382.400000pt;}
.ya1{bottom:393.920000pt;}
.y77{bottom:394.880000pt;}
.yc2{bottom:395.840000pt;}
.y7c{bottom:397.440000pt;}
.y63{bottom:403.520000pt;}
.y94{bottom:408.320000pt;}
.yb3{bottom:409.280000pt;}
.y3d{bottom:421.333333pt;}
.y21{bottom:421.440000pt;}
.y76{bottom:422.400000pt;}
.yc1{bottom:423.360000pt;}
.y7b{bottom:424.960000pt;}
.y90{bottom:435.840000pt;}
.yb2{bottom:436.800000pt;}
.y62{bottom:444.480000pt;}
.y20{bottom:449.280000pt;}
.y75{bottom:449.920000pt;}
.yc0{bottom:450.880000pt;}
.y88{bottom:463.360000pt;}
.yb1{bottom:464.320000pt;}
.y7a{bottom:465.920000pt;}
.y61{bottom:472.000000pt;}
.y39{bottom:473.333333pt;}
.y1f{bottom:476.800000pt;}
.y74{bottom:477.760000pt;}
.yd0{bottom:478.720000pt;}
.y8f{bottom:490.880000pt;}
.ybf{bottom:491.840000pt;}
.y60{bottom:499.520000pt;}
.y79{bottom:503.360000pt;}
.y1e{bottom:504.320000pt;}
.y73{bottom:505.280000pt;}
.ycf{bottom:506.240000pt;}
.y8e{bottom:518.720000pt;}
.ybe{bottom:519.680000pt;}
.y5f{bottom:527.040000pt;}
.y1d{bottom:531.840000pt;}
.y72{bottom:532.800000pt;}
.yb0{bottom:546.240000pt;}
.ybd{bottom:547.200000pt;}
.y10{bottom:548.480000pt;}
.y5e{bottom:554.560000pt;}
.y1c{bottom:559.680000pt;}
.yd5{bottom:560.320000pt;}
.y36{bottom:561.333333pt;}
.yf{bottom:569.600000pt;}
.ya0{bottom:572.800000pt;}
.y71{bottom:573.760000pt;}
.yce{bottom:574.720000pt;}
.y5d{bottom:582.400000pt;}
.y1b{bottom:587.200000pt;}
.ybc{bottom:588.160000pt;}
.ye{bottom:590.720000pt;}
.yaf{bottom:601.280000pt;}
.yd{bottom:611.840000pt;}
.y33{bottom:612.000000pt;}
.y9f{bottom:613.760000pt;}
.y1a{bottom:614.720000pt;}
.ybb{bottom:615.680000pt;}
.y5c{bottom:623.360000pt;}
.y93{bottom:628.160000pt;}
.yae{bottom:629.120000pt;}
.yc{bottom:633.280000pt;}
.y9e{bottom:641.280000pt;}
.y19{bottom:642.240000pt;}
.ycd{bottom:643.200000pt;}
.yb{bottom:654.400000pt;}
.y92{bottom:655.680000pt;}
.yad{bottom:656.640000pt;}
.y5b{bottom:664.320000pt;}
.y9d{bottom:669.120000pt;}
.y70{bottom:669.760000pt;}
.ya{bottom:675.520000pt;}
.y18{bottom:683.200000pt;}
.y32{bottom:684.160000pt;}
.y9{bottom:696.640000pt;}
.y6f{bottom:697.600000pt;}
.y5a{bottom:704.960000pt;}
.y17{bottom:710.720000pt;}
.yac{bottom:711.680000pt;}
.y8{bottom:717.760000pt;}
.y9c{bottom:724.160000pt;}
.y31{bottom:725.120000pt;}
.y59{bottom:732.800000pt;}
.y16{bottom:738.560000pt;}
.y7{bottom:738.880000pt;}
.ycc{bottom:739.520000pt;}
.y9b{bottom:751.680000pt;}
.y30{bottom:752.640000pt;}
.y6{bottom:760.000000pt;}
.y58{bottom:760.320000pt;}
.y15{bottom:766.080000pt;}
.y9a{bottom:779.520000pt;}
.y2f{bottom:780.160000pt;}
.y5{bottom:781.120000pt;}
.y57{bottom:787.840000pt;}
.y14{bottom:793.600000pt;}
.y87{bottom:807.040000pt;}
.y6e{bottom:808.000000pt;}
.y13{bottom:821.120000pt;}
.y4{bottom:822.080000pt;}
.y55{bottom:826.666667pt;}
.y86{bottom:834.560000pt;}
.y8d{bottom:835.520000pt;}
.y12{bottom:848.960000pt;}
.y2e{bottom:862.080000pt;}
.y3{bottom:868.480000pt;}
.y11{bottom:876.480000pt;}
.y51{bottom:877.333333pt;}
.y2d{bottom:889.920000pt;}
.y2{bottom:904.000000pt;}
.y2c{bottom:917.440000pt;}
.y1{bottom:944.960000pt;}
.h3{height:28.545000pt;}
.h6{height:37.333333pt;}
.h5{height:38.666667pt;}
.h1{height:43.375000pt;}
.h4{height:44.468750pt;}
.h9{height:49.481250pt;}
.h2{height:50.305000pt;}
.h8{height:57.333333pt;}
.h7{height:74.666667pt;}
.h0{height:1056.000000pt;}
.w4{width:94.666667pt;}
.w2{width:96.000000pt;}
.w5{width:117.333333pt;}
.w1{width:124.000000pt;}
.w3{width:212.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.026699pt;}
.xe{left:7.146667pt;}
.x5{left:96.000000pt;}
.xa{left:97.333333pt;}
.x7{left:120.000000pt;}
.x8{left:144.000000pt;}
.x3{left:145.364576pt;}
.x13{left:167.140640pt;}
.x9{left:190.687488pt;}
.x1{left:215.546880pt;}
.xc{left:221.333333pt;}
.x2{left:261.359360pt;}
.x11{left:300.234368pt;}
.x14{left:306.441376pt;}
.xd{left:317.333333pt;}
.x15{left:323.339840pt;}
.x6{left:364.437440pt;}
.x16{left:369.765760pt;}
.x4{left:408.000000pt;}
.xf{left:529.333333pt;}
.x10{left:624.000000pt;}
.x12{left:720.000000pt;}
}




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