
    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_504fb5d8edd7a7770acc21a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_43e826cf1420a23ee8291ba8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_5e165b804aca4622c4da5500.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_b9234d5317bd55a2d50f6f0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.681152;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;}
.v2{vertical-align:17.999993px;}
.v1{vertical-align:37.439985px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005760px;}
.ls3{letter-spacing:0.077760px;}
.ls1{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.302400px;}
.ls8{letter-spacing:33.521747px;}
.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;}
}
.ws1d{word-spacing:-91.439963px;}
.wsd{word-spacing:-90.179964px;}
.ws5{word-spacing:-55.005818px;}
.ws8{word-spacing:-48.828940px;}
.ws12{word-spacing:-46.329821px;}
.wse{word-spacing:-42.611023px;}
.ws2d{word-spacing:-36.575985px;}
.ws0{word-spacing:-34.703986px;}
.ws21{word-spacing:-31.754147px;}
.ws2{word-spacing:-30.540948px;}
.ws3{word-spacing:-27.431989px;}
.ws7{word-spacing:-25.968950px;}
.ws6{word-spacing:-24.639830px;}
.ws44{word-spacing:-18.740153px;}
.wsb{word-spacing:-1.830514px;}
.ws18{word-spacing:-1.295999px;}
.wsc{word-spacing:-1.110512px;}
.ws4{word-spacing:-1.079930px;}
.ws53{word-spacing:-0.892762px;}
.ws3b{word-spacing:-0.891118px;}
.ws1a{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.415470px;}
.ws13{word-spacing:-0.361728px;}
.ws3e{word-spacing:-0.332346px;}
.ws15{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.264391px;}
.ws10{word-spacing:-0.246272px;}
.ws17{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.138257px;}
.ws4d{word-spacing:-0.135380px;}
.ws30{word-spacing:-0.098911px;}
.ws3c{word-spacing:-0.002802px;}
.ws1{word-spacing:0.000000px;}
.ws47{word-spacing:0.082970px;}
.ws46{word-spacing:0.083514px;}
.ws16{word-spacing:0.144000px;}
.ws2b{word-spacing:0.313325px;}
.ws4b{word-spacing:0.316250px;}
.ws2f{word-spacing:0.581800px;}
.ws37{word-spacing:0.584677px;}
.ws39{word-spacing:0.621069px;}
.ws4e{word-spacing:0.679156px;}
.ws14{word-spacing:0.720000px;}
.ws54{word-spacing:0.783057px;}
.ws3a{word-spacing:0.783348px;}
.ws38{word-spacing:0.987318px;}
.ws35{word-spacing:1.135762px;}
.ws24{word-spacing:1.255672px;}
.ws1c{word-spacing:1.295999px;}
.ws33{word-spacing:1.341126px;}
.ws34{word-spacing:1.399135px;}
.ws31{word-spacing:1.436719px;}
.ws19{word-spacing:1.439999px;}
.ws2c{word-spacing:1.583999px;}
.ws4c{word-spacing:2.061106px;}
.ws45{word-spacing:4.941102px;}
.ws41{word-spacing:5.397086px;}
.ws52{word-spacing:5.428734px;}
.ws40{word-spacing:5.661081px;}
.ws43{word-spacing:6.784660px;}
.ws42{word-spacing:7.038987px;}
.ws48{word-spacing:11.623560px;}
.ws4a{word-spacing:12.133355px;}
.ws49{word-spacing:12.141053px;}
.ws36{word-spacing:15.021126px;}
.ws32{word-spacing:16.461086px;}
.ws20{word-spacing:18.535726px;}
.ws28{word-spacing:19.070671px;}
.ws3d{word-spacing:21.501098px;}
.ws4f{word-spacing:22.221078px;}
.ws50{word-spacing:22.501247px;}
.ws51{word-spacing:22.941057px;}
.ws2e{word-spacing:25.821053px;}
.ws25{word-spacing:41.168264px;}
.ws26{word-spacing:43.678818px;}
.ws1e{word-spacing:52.446256px;}
.ws1f{word-spacing:53.630647px;}
.ws22{word-spacing:56.288245px;}
.ws23{word-spacing:58.110880px;}
.ws27{word-spacing:83.870609px;}
.ws29{word-spacing:106.925832px;}
.ws2a{word-spacing:147.245694px;}
.wsf{word-spacing:224.186340px;}
.wsa{word-spacing:953.526434px;}
._7{margin-left:-2.239838px;}
._0{margin-left:-1.152000px;}
._2{width:1.006382px;}
._e{width:2.561248px;}
._16{width:3.889029px;}
._19{width:18.256088px;}
._18{width:19.686224px;}
._17{width:21.193855px;}
._1b{width:24.723314px;}
._1a{width:25.883063px;}
._1c{width:31.637424px;}
._4{width:33.542553px;}
._3{width:35.711968px;}
._1{width:37.727985px;}
._d{width:41.623903px;}
._8{width:42.641384px;}
._5{width:44.081314px;}
._6{width:45.730782px;}
._10{width:51.443807px;}
._12{width:75.801088px;}
._f{width:86.584367px;}
._11{width:90.875690px;}
._c{width:103.280316px;}
._a{width:104.286934px;}
._b{width:105.461310px;}
._13{width:116.735811px;}
._9{width:125.927910px;}
._14{width:139.981087px;}
._15{width:180.156282px;}
.fc6{color:transparent;}
.fc4{color:rgb(112,48,160);}
.fc7{color:rgb(0,176,80);}
.fc5{color:rgb(166,166,166);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc8{color:rgb(217,107,119);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(20,66,93);}
.fs9{font-size:77.759969px;}
.fs5{font-size:102.239959px;}
.fs3{font-size:107.999957px;}
.fs1{font-size:120.239952px;}
.fs8{font-size:131.759947px;}
.fs0{font-size:143.999942px;}
.fs2{font-size:167.759933px;}
.fs6{font-size:192.239923px;}
.fs4{font-size:228.239909px;}
.fs7{font-size:359.999856px;}
.y0{bottom:0.000000px;}
.y45{bottom:68.460330px;}
.y9{bottom:68.640330px;}
.yb3{bottom:113.280312px;}
.y15{bottom:132.900304px;}
.y88{bottom:133.260304px;}
.yb2{bottom:136.680302px;}
.y70{bottom:137.580302px;}
.y7b{bottom:137.760302px;}
.y3a{bottom:139.740301px;}
.y2c{bottom:140.820301px;}
.y40{bottom:144.780299px;}
.y3{bottom:153.600296px;}
.y31{bottom:158.280294px;}
.yb1{bottom:160.080293px;}
.y14{bottom:163.500292px;}
.y32{bottom:165.120291px;}
.y5a{bottom:169.800289px;}
.y2f{bottom:171.780288px;}
.y87{bottom:172.860288px;}
.y18{bottom:175.200287px;}
.y28{bottom:176.280286px;}
.y6f{bottom:180.780285px;}
.y7a{bottom:180.960285px;}
.yb0{bottom:183.480284px;}
.y9d{bottom:185.100283px;}
.y13{bottom:194.100279px;}
.y49{bottom:201.480276px;}
.y23{bottom:205.080275px;}
.y8f{bottom:206.520274px;}
.yaf{bottom:206.880274px;}
.y86{bottom:212.460272px;}
.y64{bottom:213.000272px;}
.y1c{bottom:214.980271px;}
.y17{bottom:218.400270px;}
.y95{bottom:220.020269px;}
.y6e{bottom:223.980267px;}
.y79{bottom:224.160267px;}
.y12{bottom:224.700267px;}
.yae{bottom:230.280265px;}
.y2{bottom:234.060263px;}
.y3e{bottom:243.240260px;}
.y9c{bottom:244.500259px;}
.y59{bottom:245.400259px;}
.y3f{bottom:248.280258px;}
.y5b{bottom:251.340256px;}
.y85{bottom:252.060256px;}
.yad{bottom:253.680256px;}
.y11{bottom:255.300255px;}
.y2e{bottom:265.380251px;}
.y6d{bottom:267.180250px;}
.y78{bottom:267.360250px;}
.y8e{bottom:271.320248px;}
.y51{bottom:271.500248px;}
.yac{bottom:277.080246px;}
.y1{bottom:277.260246px;}
.y94{bottom:284.820243px;}
.y10{bottom:285.900243px;}
.y84{bottom:291.660240px;}
.y35{bottom:298.500238px;}
.y46{bottom:300.480237px;}
.y43{bottom:303.720236px;}
.y9b{bottom:303.900235px;}
.y27{bottom:304.620235px;}
.y6c{bottom:310.380233px;}
.y77{bottom:310.560233px;}
.yf{bottom:316.500230px;}
.y58{bottom:321.000229px;}
.y22{bottom:322.620228px;}
.yab{bottom:323.880227px;}
.y33{bottom:327.840226px;}
.y83{bottom:331.260224px;}
.y5d{bottom:333.420224px;}
.y4b{bottom:334.680223px;}
.y8d{bottom:336.120223px;}
.y5f{bottom:339.180221px;}
.y39{bottom:339.360221px;}
.ye{bottom:347.100218px;}
.yaa{bottom:347.280218px;}
.y93{bottom:349.620217px;}
.y34{bottom:353.040216px;}
.y6b{bottom:353.580216px;}
.y76{bottom:353.760215px;}
.y1d{bottom:355.920215px;}
.y9a{bottom:363.300212px;}
.y63{bottom:364.200211px;}
.y1b{bottom:369.600209px;}
.ya9{bottom:370.680209px;}
.yd{bottom:377.700206px;}
.y5{bottom:387.960202px;}
.ya8{bottom:394.080199px;}
.y57{bottom:396.600198px;}
.y6a{bottom:396.780198px;}
.y75{bottom:396.960198px;}
.y50{bottom:397.140198px;}
.y3b{bottom:397.680198px;}
.y8c{bottom:400.920197px;}
.y2a{bottom:405.600195px;}
.y25{bottom:407.400194px;}
.yc{bottom:408.300194px;}
.y5e{bottom:412.440192px;}
.y92{bottom:414.420191px;}
.y4a{bottom:414.600191px;}
.y82{bottom:414.780191px;}
.y4c{bottom:416.040191px;}
.ya7{bottom:417.480190px;}
.y99{bottom:422.700188px;}
.y3d{bottom:428.280186px;}
.y24{bottom:432.240184px;}
.y4{bottom:438.360182px;}
.yb{bottom:438.900181px;}
.y62{bottom:439.800181px;}
.y69{bottom:439.980181px;}
.y74{bottom:440.160181px;}
.ya6{bottom:440.880181px;}
.y1f{bottom:441.960180px;}
.y81{bottom:454.380175px;}
.ya5{bottom:464.280171px;}
.y8b{bottom:465.720171px;}
.y91{bottom:479.220165px;}
.y37{bottom:481.740164px;}
.y98{bottom:482.100164px;}
.y68{bottom:483.180164px;}
.y73{bottom:483.360164px;}
.ya{bottom:484.980163px;}
.ya4{bottom:487.680162px;}
.y1a{bottom:491.460160px;}
.y52{bottom:495.960159px;}
.y4f{bottom:501.900156px;}
.y56{bottom:506.220155px;}
.y5c{bottom:506.760154px;}
.ya3{bottom:511.080153px;}
.y61{bottom:515.400151px;}
.y2d{bottom:519.540149px;}
.y26{bottom:521.880148px;}
.y67{bottom:526.380146px;}
.y47{bottom:526.560146px;}
.y21{bottom:527.640146px;}
.y8a{bottom:530.520145px;}
.y38{bottom:531.780144px;}
.ya2{bottom:534.480143px;}
.y16{bottom:535.740143px;}
.y97{bottom:541.500140px;}
.y90{bottom:544.020139px;}
.y3c{bottom:545.100139px;}
.y7e{bottom:548.520138px;}
.y48{bottom:548.880137px;}
.y55{bottom:556.620134px;}
.ya1{bottom:557.880134px;}
.y29{bottom:561.660132px;}
.y1e{bottom:566.340130px;}
.y66{bottom:569.580129px;}
.y72{bottom:569.760129px;}
.y80{bottom:575.340127px;}
.ya0{bottom:581.280124px;}
.y7d{bottom:584.520123px;}
.y7{bottom:588.120122px;}
.y60{bottom:591.000121px;}
.y36{bottom:599.820117px;}
.y96{bottom:600.900117px;}
.y19{bottom:603.600116px;}
.y4e{bottom:604.680115px;}
.y54{bottom:607.020114px;}
.y53{bottom:608.280114px;}
.y30{bottom:609.180113px;}
.y65{bottom:612.780112px;}
.y71{bottom:612.960112px;}
.y20{bottom:614.040111px;}
.y7f{bottom:614.940111px;}
.y42{bottom:620.160109px;}
.y7c{bottom:623.580108px;}
.y89{bottom:624.480107px;}
.y9f{bottom:628.080106px;}
.y2b{bottom:633.840103px;}
.y6{bottom:635.640103px;}
.y41{bottom:638.160102px;}
.y4d{bottom:639.600101px;}
.y9e{bottom:651.480096px;}
.y44{bottom:762.000052px;}
.y8{bottom:762.180052px;}
.hd{height:58.813570px;}
.h7{height:77.328953px;}
.h6{height:80.140398px;}
.h4{height:81.685514px;}
.h2{height:90.943206px;}
.hc{height:99.656327px;}
.h1{height:108.914019px;}
.ha{height:108.943199px;}
.h3{height:126.884832px;}
.h8{height:145.400215px;}
.h5{height:172.628720px;}
.h9{height:182.840200px;}
.hb{height:272.285047px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x65{left:124.716400px;}
.x48{left:136.785845px;}
.x5f{left:145.785842px;}
.x33{left:152.446439px;}
.x4e{left:154.966438px;}
.x5d{left:156.586017px;}
.x6{left:157.846437px;}
.x4b{left:160.006436px;}
.x2c{left:161.086436px;}
.x9{left:165.406434px;}
.x30{left:169.726432px;}
.x11{left:172.786431px;}
.x46{left:174.226430px;}
.x47{left:179.626428px;}
.x34{left:184.666426px;}
.x3d{left:190.786424px;}
.x13{left:198.886420px;}
.xa{left:205.906418px;}
.x1c{left:207.526417px;}
.x2{left:212.386415px;}
.x5{left:218.146413px;}
.x3b{left:220.126412px;}
.x60{left:223.006411px;}
.xe{left:232.726407px;}
.x38{left:244.066402px;}
.x41{left:245.686402px;}
.x4{left:258.646397px;}
.x2f{left:268.546393px;}
.x10{left:278.446389px;}
.x5c{left:285.257886px;}
.x45{left:294.106382px;}
.x63{left:302.566379px;}
.x4c{left:310.306376px;}
.x54{left:318.406373px;}
.x40{left:320.746372px;}
.x1{left:339.286364px;}
.x3{left:344.686362px;}
.x53{left:353.866358px;}
.x12{left:358.726357px;}
.xf{left:377.446349px;}
.x14{left:383.542947px;}
.x3f{left:390.226344px;}
.xb{left:392.566343px;}
.x31{left:405.145338px;}
.x24{left:411.286335px;}
.x58{left:417.226333px;}
.x4a{left:434.506326px;}
.x19{left:442.426323px;}
.x7{left:447.286321px;}
.x1f{left:449.806320px;}
.x5e{left:477.166309px;}
.x2a{left:479.866308px;}
.x4d{left:481.666307px;}
.x21{left:488.146305px;}
.x64{left:495.526302px;}
.x1d{left:510.826296px;}
.xc{left:512.086295px;}
.x52{left:513.526295px;}
.x20{left:520.726292px;}
.x3c{left:524.485290px;}
.x15{left:531.142888px;}
.x55{left:533.326287px;}
.x62{left:545.386282px;}
.x57{left:581.206268px;}
.x5b{left:591.466263px;}
.x16{left:613.246255px;}
.x50{left:617.386253px;}
.x27{left:618.466253px;}
.x2d{left:619.546252px;}
.x8{left:624.406250px;}
.x43{left:628.186249px;}
.x56{left:632.866247px;}
.x51{left:645.826242px;}
.x26{left:647.446241px;}
.x2b{left:657.166237px;}
.xd{left:660.766236px;}
.x59{left:679.648228px;}
.x28{left:699.826220px;}
.x36{left:704.506218px;}
.x5a{left:711.166216px;}
.x61{left:716.386213px;}
.x3a{left:728.626209px;}
.x23{left:750.766200px;}
.x18{left:755.266198px;}
.x39{left:757.066197px;}
.x44{left:769.126192px;}
.x17{left:784.066186px;}
.x29{left:790.006184px;}
.x35{left:793.246183px;}
.x32{left:795.946182px;}
.x22{left:800.446180px;}
.x3e{left:826.186170px;}
.x1b{left:845.986162px;}
.x49{left:853.905558px;}
.x37{left:864.886154px;}
.x42{left:870.985152px;}
.x1e{left:872.266151px;}
.x25{left:901.966139px;}
.x4f{left:912.562135px;}
.x1a{left:934.906126px;}
.x2e{left:966.766113px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.999994pt;}
.v1{vertical-align:33.279987pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005120pt;}
.ls3{letter-spacing:0.069120pt;}
.ls1{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.268800pt;}
.ls8{letter-spacing:29.797108pt;}
.ws1d{word-spacing:-81.279967pt;}
.wsd{word-spacing:-80.159968pt;}
.ws5{word-spacing:-48.894060pt;}
.ws8{word-spacing:-43.403503pt;}
.ws12{word-spacing:-41.182064pt;}
.wse{word-spacing:-37.876465pt;}
.ws2d{word-spacing:-32.511987pt;}
.ws0{word-spacing:-30.847988pt;}
.ws21{word-spacing:-28.225909pt;}
.ws2{word-spacing:-27.147509pt;}
.ws3{word-spacing:-24.383990pt;}
.ws7{word-spacing:-23.083511pt;}
.ws6{word-spacing:-21.902071pt;}
.ws44{word-spacing:-16.657913pt;}
.wsb{word-spacing:-1.627124pt;}
.ws18{word-spacing:-1.152000pt;}
.wsc{word-spacing:-0.987122pt;}
.ws4{word-spacing:-0.959937pt;}
.ws53{word-spacing:-0.793566pt;}
.ws3b{word-spacing:-0.792105pt;}
.ws1a{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.369307pt;}
.ws13{word-spacing:-0.321536pt;}
.ws3e{word-spacing:-0.295419pt;}
.ws15{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.235014pt;}
.ws10{word-spacing:-0.218908pt;}
.ws17{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.122895pt;}
.ws4d{word-spacing:-0.120338pt;}
.ws30{word-spacing:-0.087921pt;}
.ws3c{word-spacing:-0.002490pt;}
.ws1{word-spacing:0.000000pt;}
.ws47{word-spacing:0.073751pt;}
.ws46{word-spacing:0.074235pt;}
.ws16{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.278511pt;}
.ws4b{word-spacing:0.281111pt;}
.ws2f{word-spacing:0.517156pt;}
.ws37{word-spacing:0.519713pt;}
.ws39{word-spacing:0.552061pt;}
.ws4e{word-spacing:0.603694pt;}
.ws14{word-spacing:0.640000pt;}
.ws54{word-spacing:0.696050pt;}
.ws3a{word-spacing:0.696309pt;}
.ws38{word-spacing:0.877616pt;}
.ws35{word-spacing:1.009566pt;}
.ws24{word-spacing:1.116153pt;}
.ws1c{word-spacing:1.152000pt;}
.ws33{word-spacing:1.192112pt;}
.ws34{word-spacing:1.243676pt;}
.ws31{word-spacing:1.277084pt;}
.ws19{word-spacing:1.279999pt;}
.ws2c{word-spacing:1.407999pt;}
.ws4c{word-spacing:1.832094pt;}
.ws45{word-spacing:4.392090pt;}
.ws41{word-spacing:4.797410pt;}
.ws52{word-spacing:4.825542pt;}
.ws40{word-spacing:5.032072pt;}
.ws43{word-spacing:6.030809pt;}
.ws42{word-spacing:6.256877pt;}
.ws48{word-spacing:10.332053pt;}
.ws4a{word-spacing:10.785204pt;}
.ws49{word-spacing:10.792047pt;}
.ws36{word-spacing:13.352112pt;}
.ws32{word-spacing:14.632076pt;}
.ws20{word-spacing:16.476201pt;}
.ws28{word-spacing:16.951708pt;}
.ws3d{word-spacing:19.112087pt;}
.ws4f{word-spacing:19.752069pt;}
.ws50{word-spacing:20.001108pt;}
.ws51{word-spacing:20.392051pt;}
.ws2e{word-spacing:22.952047pt;}
.ws25{word-spacing:36.594012pt;}
.ws26{word-spacing:38.825616pt;}
.ws1e{word-spacing:46.618895pt;}
.ws1f{word-spacing:47.671686pt;}
.ws22{word-spacing:50.033995pt;}
.ws23{word-spacing:51.654116pt;}
.ws27{word-spacing:74.551652pt;}
.ws29{word-spacing:95.045184pt;}
.ws2a{word-spacing:130.885061pt;}
.wsf{word-spacing:199.276747pt;}
.wsa{word-spacing:847.579052pt;}
._7{margin-left:-1.990967pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.894562pt;}
._e{width:2.276665pt;}
._16{width:3.456914pt;}
._19{width:16.227634pt;}
._18{width:17.498866pt;}
._17{width:18.838982pt;}
._1b{width:21.976279pt;}
._1a{width:23.007167pt;}
._1c{width:28.122154pt;}
._4{width:29.815603pt;}
._3{width:31.743972pt;}
._1{width:33.535987pt;}
._d{width:36.999025pt;}
._8{width:37.903453pt;}
._5{width:39.183390pt;}
._6{width:40.649584pt;}
._10{width:45.727828pt;}
._12{width:67.378745pt;}
._f{width:76.963882pt;}
._11{width:80.778391pt;}
._c{width:91.804725pt;}
._a{width:92.699497pt;}
._b{width:93.743387pt;}
._13{width:103.765165pt;}
._9{width:111.935920pt;}
._14{width:124.427633pt;}
._15{width:160.138918pt;}
.fs9{font-size:69.119972pt;}
.fs5{font-size:90.879964pt;}
.fs3{font-size:95.999962pt;}
.fs1{font-size:106.879957pt;}
.fs8{font-size:117.119953pt;}
.fs0{font-size:127.999949pt;}
.fs2{font-size:149.119940pt;}
.fs6{font-size:170.879932pt;}
.fs4{font-size:202.879919pt;}
.fs7{font-size:319.999872pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:60.853626pt;}
.y9{bottom:61.013626pt;}
.yb3{bottom:100.693610pt;}
.y15{bottom:118.133603pt;}
.y88{bottom:118.453603pt;}
.yb2{bottom:121.493602pt;}
.y70{bottom:122.293602pt;}
.y7b{bottom:122.453602pt;}
.y3a{bottom:124.213601pt;}
.y2c{bottom:125.173601pt;}
.y40{bottom:128.693599pt;}
.y3{bottom:136.533596pt;}
.y31{bottom:140.693594pt;}
.yb1{bottom:142.293594pt;}
.y14{bottom:145.333593pt;}
.y32{bottom:146.773592pt;}
.y5a{bottom:150.933590pt;}
.y2f{bottom:152.693590pt;}
.y87{bottom:153.653589pt;}
.y18{bottom:155.733588pt;}
.y28{bottom:156.693588pt;}
.y6f{bottom:160.693586pt;}
.y7a{bottom:160.853586pt;}
.yb0{bottom:163.093585pt;}
.y9d{bottom:164.533585pt;}
.y13{bottom:172.533582pt;}
.y49{bottom:179.093579pt;}
.y23{bottom:182.293578pt;}
.y8f{bottom:183.573577pt;}
.yaf{bottom:183.893577pt;}
.y86{bottom:188.853575pt;}
.y64{bottom:189.333575pt;}
.y1c{bottom:191.093574pt;}
.y17{bottom:194.133573pt;}
.y95{bottom:195.573572pt;}
.y6e{bottom:199.093571pt;}
.y79{bottom:199.253571pt;}
.y12{bottom:199.733571pt;}
.yae{bottom:204.693569pt;}
.y2{bottom:208.053567pt;}
.y3e{bottom:216.213564pt;}
.y9c{bottom:217.333564pt;}
.y59{bottom:218.133563pt;}
.y3f{bottom:220.693562pt;}
.y5b{bottom:223.413561pt;}
.y85{bottom:224.053561pt;}
.yad{bottom:225.493560pt;}
.y11{bottom:226.933560pt;}
.y2e{bottom:235.893556pt;}
.y6d{bottom:237.493556pt;}
.y78{bottom:237.653556pt;}
.y8e{bottom:241.173554pt;}
.y51{bottom:241.333554pt;}
.yac{bottom:246.293552pt;}
.y1{bottom:246.453552pt;}
.y94{bottom:253.173549pt;}
.y10{bottom:254.133549pt;}
.y84{bottom:259.253547pt;}
.y35{bottom:265.333545pt;}
.y46{bottom:267.093544pt;}
.y43{bottom:269.973543pt;}
.y9b{bottom:270.133543pt;}
.y27{bottom:270.773542pt;}
.y6c{bottom:275.893540pt;}
.y77{bottom:276.053540pt;}
.yf{bottom:281.333538pt;}
.y58{bottom:285.333537pt;}
.y22{bottom:286.773536pt;}
.yab{bottom:287.893536pt;}
.y33{bottom:291.413534pt;}
.y83{bottom:294.453533pt;}
.y5d{bottom:296.373532pt;}
.y4b{bottom:297.493532pt;}
.y8d{bottom:298.773531pt;}
.y5f{bottom:301.493530pt;}
.y39{bottom:301.653530pt;}
.ye{bottom:308.533527pt;}
.yaa{bottom:308.693527pt;}
.y93{bottom:310.773526pt;}
.y34{bottom:313.813525pt;}
.y6b{bottom:314.293525pt;}
.y76{bottom:314.453525pt;}
.y1d{bottom:316.373524pt;}
.y9a{bottom:322.933521pt;}
.y63{bottom:323.733521pt;}
.y1b{bottom:328.533519pt;}
.ya9{bottom:329.493519pt;}
.yd{bottom:335.733516pt;}
.y5{bottom:344.853513pt;}
.ya8{bottom:350.293511pt;}
.y57{bottom:352.533510pt;}
.y6a{bottom:352.693510pt;}
.y75{bottom:352.853510pt;}
.y50{bottom:353.013509pt;}
.y3b{bottom:353.493509pt;}
.y8c{bottom:356.373508pt;}
.y2a{bottom:360.533506pt;}
.y25{bottom:362.133506pt;}
.yc{bottom:362.933505pt;}
.y5e{bottom:366.613504pt;}
.y92{bottom:368.373503pt;}
.y4a{bottom:368.533503pt;}
.y82{bottom:368.693503pt;}
.y4c{bottom:369.813503pt;}
.ya7{bottom:371.093502pt;}
.y99{bottom:375.733500pt;}
.y3d{bottom:380.693498pt;}
.y24{bottom:384.213497pt;}
.y4{bottom:389.653495pt;}
.yb{bottom:390.133495pt;}
.y62{bottom:390.933494pt;}
.y69{bottom:391.093494pt;}
.y74{bottom:391.253494pt;}
.ya6{bottom:391.893494pt;}
.y1f{bottom:392.853494pt;}
.y81{bottom:403.893489pt;}
.ya5{bottom:412.693486pt;}
.y8b{bottom:413.973485pt;}
.y91{bottom:425.973480pt;}
.y37{bottom:428.213479pt;}
.y98{bottom:428.533479pt;}
.y68{bottom:429.493479pt;}
.y73{bottom:429.653479pt;}
.ya{bottom:431.093478pt;}
.ya4{bottom:433.493477pt;}
.y1a{bottom:436.853476pt;}
.y52{bottom:440.853474pt;}
.y4f{bottom:446.133472pt;}
.y56{bottom:449.973471pt;}
.y5c{bottom:450.453470pt;}
.ya3{bottom:454.293469pt;}
.y61{bottom:458.133467pt;}
.y2d{bottom:461.813466pt;}
.y26{bottom:463.893465pt;}
.y67{bottom:467.893464pt;}
.y47{bottom:468.053463pt;}
.y21{bottom:469.013463pt;}
.y8a{bottom:471.573462pt;}
.y38{bottom:472.693462pt;}
.ya2{bottom:475.093461pt;}
.y16{bottom:476.213460pt;}
.y97{bottom:481.333458pt;}
.y90{bottom:483.573457pt;}
.y3c{bottom:484.533457pt;}
.y7e{bottom:487.573456pt;}
.y48{bottom:487.893456pt;}
.y55{bottom:494.773453pt;}
.ya1{bottom:495.893452pt;}
.y29{bottom:499.253451pt;}
.y1e{bottom:503.413449pt;}
.y66{bottom:506.293448pt;}
.y72{bottom:506.453448pt;}
.y80{bottom:511.413446pt;}
.ya0{bottom:516.693444pt;}
.y7d{bottom:519.573443pt;}
.y7{bottom:522.773442pt;}
.y60{bottom:525.333441pt;}
.y36{bottom:533.173437pt;}
.y96{bottom:534.133437pt;}
.y19{bottom:536.533436pt;}
.y4e{bottom:537.493436pt;}
.y54{bottom:539.573435pt;}
.y53{bottom:540.693434pt;}
.y30{bottom:541.493434pt;}
.y65{bottom:544.693433pt;}
.y71{bottom:544.853433pt;}
.y20{bottom:545.813432pt;}
.y7f{bottom:546.613432pt;}
.y42{bottom:551.253430pt;}
.y7c{bottom:554.293429pt;}
.y89{bottom:555.093429pt;}
.y9f{bottom:558.293427pt;}
.y2b{bottom:563.413425pt;}
.y6{bottom:565.013425pt;}
.y41{bottom:567.253424pt;}
.y4d{bottom:568.533423pt;}
.y9e{bottom:579.093419pt;}
.y44{bottom:677.333380pt;}
.y8{bottom:677.493380pt;}
.hd{height:52.278729pt;}
.h7{height:68.736848pt;}
.h6{height:71.235909pt;}
.h4{height:72.609346pt;}
.h2{height:80.838405pt;}
.hc{height:88.583402pt;}
.h1{height:96.812461pt;}
.ha{height:96.838399pt;}
.h3{height:112.786517pt;}
.h8{height:129.244636pt;}
.h5{height:153.447751pt;}
.h9{height:162.524622pt;}
.hb{height:242.031153pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x65{left:110.859022pt;}
.x48{left:121.587418pt;}
.x5f{left:129.587415pt;}
.x33{left:135.507946pt;}
.x4e{left:137.747945pt;}
.x5d{left:139.187571pt;}
.x6{left:140.307944pt;}
.x4b{left:142.227943pt;}
.x2c{left:143.187943pt;}
.x9{left:147.027941pt;}
.x30{left:150.867940pt;}
.x11{left:153.587939pt;}
.x46{left:154.867938pt;}
.x47{left:159.667936pt;}
.x34{left:164.147934pt;}
.x3d{left:169.587932pt;}
.x13{left:176.787929pt;}
.xa{left:183.027927pt;}
.x1c{left:184.467926pt;}
.x2{left:188.787924pt;}
.x5{left:193.907922pt;}
.x3b{left:195.667922pt;}
.x60{left:198.227921pt;}
.xe{left:206.867917pt;}
.x38{left:216.947913pt;}
.x41{left:218.387913pt;}
.x4{left:229.907908pt;}
.x2f{left:238.707905pt;}
.x10{left:247.507901pt;}
.x5c{left:253.562565pt;}
.x45{left:261.427895pt;}
.x63{left:268.947892pt;}
.x4c{left:275.827890pt;}
.x54{left:283.027887pt;}
.x40{left:285.107886pt;}
.x1{left:301.587879pt;}
.x3{left:306.387877pt;}
.x53{left:314.547874pt;}
.x12{left:318.867872pt;}
.xf{left:335.507866pt;}
.x14{left:340.927064pt;}
.x3f{left:346.867861pt;}
.xb{left:348.947860pt;}
.x31{left:360.129189pt;}
.x24{left:365.587854pt;}
.x58{left:370.867852pt;}
.x4a{left:386.227846pt;}
.x19{left:393.267843pt;}
.x7{left:397.587841pt;}
.x1f{left:399.827840pt;}
.x5e{left:424.147830pt;}
.x2a{left:426.547829pt;}
.x4d{left:428.147829pt;}
.x21{left:433.907826pt;}
.x64{left:440.467824pt;}
.x1d{left:454.067818pt;}
.xc{left:455.187818pt;}
.x52{left:456.467817pt;}
.x20{left:462.867815pt;}
.x3c{left:466.209147pt;}
.x15{left:472.127011pt;}
.x55{left:474.067810pt;}
.x62{left:484.787806pt;}
.x57{left:516.627793pt;}
.x5b{left:525.747790pt;}
.x16{left:545.107782pt;}
.x50{left:548.787780pt;}
.x27{left:549.747780pt;}
.x2d{left:550.707780pt;}
.x8{left:555.027778pt;}
.x43{left:558.387777pt;}
.x56{left:562.547775pt;}
.x51{left:574.067770pt;}
.x26{left:575.507770pt;}
.x2b{left:584.147766pt;}
.xd{left:587.347765pt;}
.x59{left:604.131758pt;}
.x28{left:622.067751pt;}
.x36{left:626.227750pt;}
.x5a{left:632.147747pt;}
.x61{left:636.787745pt;}
.x3a{left:647.667741pt;}
.x23{left:667.347733pt;}
.x18{left:671.347731pt;}
.x39{left:672.947731pt;}
.x44{left:683.667727pt;}
.x17{left:696.947721pt;}
.x29{left:702.227719pt;}
.x35{left:705.107718pt;}
.x32{left:707.507717pt;}
.x22{left:711.507715pt;}
.x3e{left:734.387706pt;}
.x1b{left:751.987699pt;}
.x49{left:759.027163pt;}
.x37{left:768.787692pt;}
.x42{left:774.209024pt;}
.x1e{left:775.347690pt;}
.x25{left:801.747679pt;}
.x4f{left:811.166342pt;}
.x1a{left:831.027668pt;}
.x2e{left:859.347656pt;}
}




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