
    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_55da6f4c83b6f72e73a2e658.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b3e5a6357c34a2ed5747d19f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_b832eace432a8368cc9e55b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.147461;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_08ccc57d6ff2a4f7111b93e0.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_8309def24007ca25ceb56646.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_114f533c6dc0f5546a27220b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987305;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_577fd8ad507e973c19e3707d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.399230px;}
.ls2{letter-spacing:0.399298px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.242700px;}
.ws0{word-spacing:-18.349228px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-5.405203px;}
._1{margin-left:-4.022071px;}
._0{margin-left:-2.585617px;}
._2{margin-left:-1.532218px;}
._3{width:1.250530px;}
._d{width:2.299516px;}
._6{width:3.474895px;}
._7{width:4.911016px;}
._10{width:6.017994px;}
._c{width:7.987060px;}
._b{width:9.085342px;}
._5{width:10.720708px;}
._11{width:12.041940px;}
._1b{width:13.206621px;}
._18{width:14.536751px;}
._a{width:15.886341px;}
._9{width:16.923295px;}
._8{width:19.400861px;}
._15{width:20.535237px;}
._1a{width:22.554056px;}
._19{width:23.602163px;}
._12{width:24.607352px;}
._13{width:25.968721px;}
._f{width:27.235841px;}
._e{width:28.790312px;}
._1c{width:30.392624px;}
._16{width:31.617951px;}
._17{width:32.768918px;}
._30{width:34.302592px;}
._31{width:37.031821px;}
._2d{width:50.527976px;}
._33{width:60.549348px;}
._34{width:61.975835px;}
._14{width:149.529869px;}
._4{width:194.289839px;}
._32{width:270.296818px;}
._28{width:449.808855px;}
._2f{width:451.822214px;}
._25{width:469.149503px;}
._23{width:484.090065px;}
._27{width:510.168727px;}
._2a{width:528.911753px;}
._2c{width:542.317217px;}
._22{width:543.852315px;}
._1e{width:549.517176px;}
._1f{width:570.908774px;}
._20{width:578.677867px;}
._26{width:582.669201px;}
._29{width:641.179398px;}
._2e{width:787.845742px;}
._24{width:808.808031px;}
._21{width:811.975431px;}
._2b{width:992.283741px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs2{font-size:84.243145px;}
.fs1{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.420044px;}
.yab{bottom:3.420045px;}
.ya1{bottom:5.399987px;}
.ya6{bottom:5.579955px;}
.yaf{bottom:10.799972px;}
.y2{bottom:57.600083px;}
.y1{bottom:77.760132px;}
.yd5{bottom:111.420043px;}
.yb6{bottom:111.780052px;}
.y8d{bottom:114.120072px;}
.y124{bottom:116.640060px;}
.yf5{bottom:120.420043px;}
.y6f{bottom:128.160049px;}
.y7f{bottom:129.960091px;}
.y47{bottom:132.480079px;}
.y123{bottom:135.540047px;}
.y138{bottom:137.160049px;}
.yf4{bottom:139.320099px;}
.yd4{bottom:139.860077px;}
.yb5{bottom:140.220085px;}
.y8c{bottom:142.560036px;}
.y122{bottom:154.440033px;}
.y6e{bottom:156.600083px;}
.yf3{bottom:158.220085px;}
.y7e{bottom:158.580093px;}
.y46{bottom:160.920043px;}
.y137{bottom:164.700096px;}
.yd3{bottom:168.300041px;}
.yb4{bottom:168.660049px;}
.y8b{bottom:171.000068px;}
.y121{bottom:173.520058px;}
.yf2{bottom:177.300041px;}
.y6d{bottom:185.040047px;}
.y7d{bottom:187.020058px;}
.y45{bottom:189.360077px;}
.y120{bottom:192.420043px;}
.yf1{bottom:196.200096px;}
.yd2{bottom:196.920043px;}
.y8a{bottom:199.440033px;}
.yb3{bottom:203.220085px;}
.y11f{bottom:211.500068px;}
.y6c{bottom:213.660049px;}
.yf0{bottom:215.280052px;}
.y7c{bottom:215.460091px;}
.y44{bottom:217.800041px;}
.y136{bottom:219.960091px;}
.yd1{bottom:225.360077px;}
.y89{bottom:228.060036px;}
.y11e{bottom:230.400055px;}
.yb2{bottom:231.660049px;}
.yef{bottom:234.180039px;}
.y23{bottom:239.580093px;}
.y6b{bottom:242.100083px;}
.y7b{bottom:243.900055px;}
.y43{bottom:246.240074px;}
.y135{bottom:247.500068px;}
.y11d{bottom:249.300041px;}
.yee{bottom:253.080093px;}
.yd0{bottom:253.800041px;}
.y88{bottom:256.500068px;}
.yb1{bottom:260.100083px;}
.y22{bottom:268.020058px;}
.y11c{bottom:268.380066px;}
.y6a{bottom:270.540047px;}
.yed{bottom:272.160049px;}
.y7a{bottom:272.340088px;}
.y42{bottom:274.680039px;}
.y134{bottom:275.040047px;}
.ycf{bottom:282.240074px;}
.y87{bottom:284.940033px;}
.y11b{bottom:287.280052px;}
.yb0{bottom:288.540047px;}
.yec{bottom:291.060036px;}
.y21{bottom:296.460091px;}
.y55{bottom:297.720085px;}
.y69{bottom:298.980079px;}
.y79{bottom:300.780052px;}
.y133{bottom:302.760064px;}
.y41{bottom:303.300041px;}
.yae{bottom:306.360077px;}
.yeb{bottom:310.140060px;}
.yce{bottom:310.680039px;}
.y86{bottom:313.380066px;}
.yad{bottom:317.160049px;}
.y20{bottom:325.080093px;}
.y11a{bottom:325.260064px;}
.y54{bottom:326.160049px;}
.y68{bottom:327.420043px;}
.yea{bottom:329.040047px;}
.y132{bottom:330.300041px;}
.y40{bottom:332.100083px;}
.ycd{bottom:339.120072px;}
.y85{bottom:341.820099px;}
.yac{bottom:342.540047px;}
.y119{bottom:344.160049px;}
.ye9{bottom:349.020058px;}
.y1f{bottom:353.520058px;}
.y53{bottom:354.780052px;}
.y67{bottom:355.860077px;}
.y131{bottom:357.840088px;}
.yaa{bottom:358.920043px;}
.y3f{bottom:360.720085px;}
.ya9{bottom:362.340088px;}
.y118{bottom:363.240074px;}
.ycc{bottom:367.560036px;}
.ye8{bottom:368.100083px;}
.y84{bottom:370.260064px;}
.y1e{bottom:381.960091px;}
.y117{bottom:382.140060px;}
.y52{bottom:383.220085px;}
.y66{bottom:384.300041px;}
.ya8{bottom:385.560036px;}
.y3e{bottom:389.160049px;}
.ycb{bottom:396.000068px;}
.ye7{bottom:396.540047px;}
.y83{bottom:398.700096px;}
.y116{bottom:401.220085px;}
.ya7{bottom:406.980079px;}
.y1d{bottom:410.400055px;}
.y51{bottom:411.660049px;}
.y65{bottom:412.740074px;}
.y130{bottom:413.100083px;}
.y3d{bottom:417.600083px;}
.y115{bottom:420.120072px;}
.yca{bottom:424.440033px;}
.ye6{bottom:425.160049px;}
.y82{bottom:427.140060px;}
.y1c{bottom:438.840088px;}
.y114{bottom:439.020058px;}
.y50{bottom:440.100083px;}
.y12f{bottom:440.640060px;}
.y64{bottom:441.180039px;}
.ya5{bottom:443.340088px;}
.y3c{bottom:446.040047px;}
.ya4{bottom:448.920043px;}
.yc9{bottom:453.060036px;}
.ye5{bottom:453.600083px;}
.y81{bottom:455.580093px;}
.y113{bottom:458.100083px;}
.y1b{bottom:467.280052px;}
.y12e{bottom:468.360077px;}
.y63{bottom:469.800041px;}
.ya3{bottom:471.960091px;}
.y3b{bottom:474.480079px;}
.y112{bottom:477.000068px;}
.yc8{bottom:481.500068px;}
.ye4{bottom:482.040047px;}
.y80{bottom:484.200096px;}
.ya2{bottom:495.000068px;}
.y1a{bottom:495.720085px;}
.y12d{bottom:495.900055px;}
.y111{bottom:496.080093px;}
.y62{bottom:498.240074px;}
.y3a{bottom:502.920043px;}
.y4f{bottom:509.040047px;}
.yc7{bottom:509.940033px;}
.ye3{bottom:510.480079px;}
.ya0{bottom:511.200096px;}
.y110{bottom:514.980079px;}
.y9f{bottom:516.600083px;}
.y12c{bottom:523.440033px;}
.y19{bottom:524.160049px;}
.y61{bottom:526.680039px;}
.y39{bottom:531.540047px;}
.y10f{bottom:534.060036px;}
.y4e{bottom:537.480079px;}
.yc6{bottom:538.380066px;}
.ye2{bottom:538.920043px;}
.y9d{bottom:543.060036px;}
.y9c{bottom:546.480079px;}
.y12b{bottom:551.160049px;}
.y18{bottom:552.600083px;}
.y10e{bottom:552.960091px;}
.y60{bottom:555.120072px;}
.y38{bottom:559.980079px;}
.y9b{bottom:563.760064px;}
.y4d{bottom:565.920043px;}
.yc5{bottom:566.820099px;}
.ye1{bottom:567.360077px;}
.y10d{bottom:571.860077px;}
.y12a{bottom:578.700096px;}
.y9a{bottom:581.040047px;}
.y17{bottom:581.220085px;}
.y5f{bottom:583.560036px;}
.y37{bottom:588.420043px;}
.y10c{bottom:590.940033px;}
.y4c{bottom:594.360077px;}
.ye0{bottom:595.800041px;}
.y78{bottom:597.780052px;}
.yc4{bottom:601.200096px;}
.y129{bottom:606.240074px;}
.y16{bottom:609.660049px;}
.y10b{bottom:609.840088px;}
.y99{bottom:610.200096px;}
.y5e{bottom:612.000068px;}
.y36{bottom:616.860077px;}
.y4b{bottom:622.800041px;}
.y77{bottom:626.220085px;}
.y10a{bottom:628.920043px;}
.yc3{bottom:629.820099px;}
.ydf{bottom:630.360077px;}
.y128{bottom:633.960091px;}
.y98{bottom:638.820099px;}
.y5d{bottom:640.440033px;}
.y35{bottom:645.300041px;}
.y109{bottom:647.820099px;}
.y4a{bottom:651.240074px;}
.y76{bottom:654.660049px;}
.yc2{bottom:658.260064px;}
.yde{bottom:658.800041px;}
.y127{bottom:661.500068px;}
.y15{bottom:665.100083px;}
.y108{bottom:666.720085px;}
.y97{bottom:667.260064px;}
.y5c{bottom:668.880066px;}
.y34{bottom:673.740074px;}
.y49{bottom:679.680039px;}
.y75{bottom:683.100083px;}
.y107{bottom:685.800041px;}
.yc1{bottom:686.700096px;}
.ydd{bottom:687.240074px;}
.y126{bottom:689.040081px;}
.y14{bottom:693.540081px;}
.y96{bottom:695.700061px;}
.y5b{bottom:697.320065px;}
.y33{bottom:702.180073px;}
.y106{bottom:704.700061px;}
.y48{bottom:708.300076px;}
.y74{bottom:711.540081px;}
.ydc{bottom:715.680073px;}
.y125{bottom:716.760064px;}
.y13{bottom:721.980079px;}
.y105{bottom:723.780052px;}
.y95{bottom:724.140060px;}
.y5a{bottom:725.940067px;}
.y32{bottom:736.740074px;}
.y73{bottom:739.980079px;}
.yc0{bottom:742.140060px;}
.y104{bottom:742.680073px;}
.ydb{bottom:744.120072px;}
.y12{bottom:750.420078px;}
.y94{bottom:752.580059px;}
.y59{bottom:754.380066px;}
.y103{bottom:761.580059px;}
.y72{bottom:768.600083px;}
.ybf{bottom:770.580059px;}
.y31{bottom:771.120072px;}
.yda{bottom:772.560070px;}
.y11{bottom:778.860077px;}
.y102{bottom:780.660049px;}
.y93{bottom:781.380066px;}
.y58{bottom:782.820065px;}
.y71{bottom:797.040081px;}
.ybe{bottom:799.020058px;}
.y30{bottom:799.560070px;}
.yd9{bottom:801.000068px;}
.y10{bottom:807.300076px;}
.y92{bottom:810.000068px;}
.y57{bottom:811.260064px;}
.y101{bottom:818.640060px;}
.y70{bottom:825.480079px;}
.ybd{bottom:827.460056px;}
.y2f{bottom:828.000068px;}
.yd8{bottom:829.440067px;}
.yf{bottom:835.740074px;}
.y100{bottom:837.540081px;}
.y91{bottom:838.440067px;}
.y56{bottom:845.640060px;}
.ybc{bottom:855.900055px;}
.y2e{bottom:856.440067px;}
.yd7{bottom:858.060070px;}
.ye{bottom:864.360077px;}
.y90{bottom:867.060070px;}
.yff{bottom:875.520058px;}
.ybb{bottom:884.340054px;}
.y2d{bottom:885.060070px;}
.yd6{bottom:886.500068px;}
.yd{bottom:892.800076px;}
.yfe{bottom:894.420078px;}
.y8f{bottom:901.440067px;}
.yba{bottom:912.960056px;}
.y2c{bottom:913.500068px;}
.yc{bottom:921.240074px;}
.yfd{bottom:932.400055px;}
.y8e{bottom:935.820065px;}
.yb9{bottom:941.400055px;}
.y2b{bottom:941.940067px;}
.yb{bottom:949.680073px;}
.yfc{bottom:951.480079px;}
.yb8{bottom:969.840054px;}
.y2a{bottom:970.380066px;}
.ya{bottom:978.120072px;}
.yfb{bottom:989.280069px;}
.yb7{bottom:998.640060px;}
.y29{bottom:998.820065px;}
.y9{bottom:1006.560070px;}
.yfa{bottom:1008.360060px;}
.y8{bottom:1026.540064px;}
.y28{bottom:1027.260064px;}
.yf9{bottom:1046.340070px;}
.y7{bottom:1049.400072px;}
.y27{bottom:1055.700061px;}
.yf8{bottom:1065.240074px;}
.y6{bottom:1066.680073px;}
.y26{bottom:1084.140060px;}
.y5{bottom:1085.220068px;}
.yf7{bottom:1103.220068px;}
.y4{bottom:1109.340070px;}
.y25{bottom:1112.580059px;}
.yf6{bottom:1122.120063px;}
.y3{bottom:1134.180064px;}
.y24{bottom:1141.200061px;}
.hb{height:17.280053px;}
.h11{height:17.639992px;}
.hc{height:19.439964px;}
.hf{height:19.799972px;}
.h12{height:25.019989px;}
.h6{height:48.226497px;}
.hd{height:50.366037px;}
.ha{height:54.071997px;}
.h13{height:54.792154px;}
.h5{height:55.997929px;}
.he{height:56.717807px;}
.h10{height:56.718086px;}
.h7{height:59.223820px;}
.h8{height:59.935412px;}
.h9{height:62.070186px;}
.h2{height:65.886904px;}
.h4{height:76.221948px;}
.h3{height:86.645484px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:6.119985px;}
.w3{width:6.120002px;}
.w5{width:6.120003px;}
.w2{width:7.560036px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200002px;}
.xa{left:108.180005px;}
.x8{left:111.239997px;}
.xe{left:116.459997px;}
.xb{left:118.439999px;}
.x10{left:120.239997px;}
.x18{left:122.760003px;}
.x11{left:133.739997px;}
.x3{left:135.000000px;}
.x22{left:138.239997px;}
.x7{left:159.300007px;}
.x21{left:186.300007px;}
.x5{left:188.460005px;}
.x1b{left:230.400003px;}
.x1c{left:236.520006px;}
.x19{left:237.780001px;}
.x1d{left:239.580008px;}
.x1a{left:243.900003px;}
.x1e{left:245.699993px;}
.xf{left:272.699993px;}
.xc{left:278.099997px;}
.x1f{left:296.100013px;}
.x20{left:302.220017px;}
.x6{left:320.399987px;}
.x9{left:352.800007px;}
.x12{left:428.939999px;}
.x4{left:446.399987px;}
.x14{left:570.240006px;}
.x13{left:572.040012px;}
.x16{left:703.440033px;}
.x15{left:713.519989px;}
.xd{left:745.740006px;}
.x1{left:769.860008px;}
.x17{left:801.539978px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.354871pt;}
.ls2{letter-spacing:0.354931pt;}
.ws2{word-spacing:-58.882400pt;}
.ws0{word-spacing:-16.310425pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-4.804625pt;}
._1{margin-left:-3.575174pt;}
._0{margin-left:-2.298326pt;}
._2{margin-left:-1.361971pt;}
._3{width:1.111582pt;}
._d{width:2.044014pt;}
._6{width:3.088796pt;}
._7{width:4.365348pt;}
._10{width:5.349328pt;}
._c{width:7.099609pt;}
._b{width:8.075859pt;}
._5{width:9.529518pt;}
._11{width:10.703946pt;}
._1b{width:11.739218pt;}
._18{width:12.921556pt;}
._a{width:14.121192pt;}
._9{width:15.042929pt;}
._8{width:17.245210pt;}
._15{width:18.253544pt;}
._1a{width:20.048050pt;}
._19{width:20.979701pt;}
._12{width:21.873202pt;}
._13{width:23.083308pt;}
._f{width:24.209637pt;}
._e{width:25.591389pt;}
._1c{width:27.015665pt;}
._16{width:28.104846pt;}
._17{width:29.127927pt;}
._30{width:30.491193pt;}
._31{width:32.917174pt;}
._2d{width:44.913757pt;}
._33{width:53.821643pt;}
._34{width:55.089631pt;}
._14{width:132.915439pt;}
._4{width:172.702079pt;}
._32{width:240.263838pt;}
._28{width:399.830093pt;}
._2f{width:401.619746pt;}
._25{width:417.021780pt;}
._23{width:430.302280pt;}
._27{width:453.483313pt;}
._2a{width:470.143780pt;}
._2c{width:482.059748pt;}
._22{width:483.424280pt;}
._1e{width:488.459712pt;}
._1f{width:507.474466pt;}
._20{width:514.380326pt;}
._26{width:517.928178pt;}
._29{width:569.937242pt;}
._2e{width:700.307326pt;}
._24{width:718.940472pt;}
._21{width:721.755938pt;}
._2b{width:882.029992pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs2{font-size:74.882796pt;}
.fs1{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:3.040039pt;}
.yab{bottom:3.040040pt;}
.ya1{bottom:4.799988pt;}
.ya6{bottom:4.959960pt;}
.yaf{bottom:9.599975pt;}
.y2{bottom:51.200074pt;}
.y1{bottom:69.120118pt;}
.yd5{bottom:99.040039pt;}
.yb6{bottom:99.360047pt;}
.y8d{bottom:101.440064pt;}
.y124{bottom:103.680054pt;}
.yf5{bottom:107.040039pt;}
.y6f{bottom:113.920044pt;}
.y7f{bottom:115.520081pt;}
.y47{bottom:117.760071pt;}
.y123{bottom:120.480042pt;}
.y138{bottom:121.920044pt;}
.yf4{bottom:123.840088pt;}
.yd4{bottom:124.320069pt;}
.yb5{bottom:124.640076pt;}
.y8c{bottom:126.720032pt;}
.y122{bottom:137.280030pt;}
.y6e{bottom:139.200074pt;}
.yf3{bottom:140.640076pt;}
.y7e{bottom:140.960083pt;}
.y46{bottom:143.040039pt;}
.y137{bottom:146.400086pt;}
.yd3{bottom:149.600037pt;}
.yb4{bottom:149.920044pt;}
.y8b{bottom:152.000061pt;}
.y121{bottom:154.240052pt;}
.yf2{bottom:157.600037pt;}
.y6d{bottom:164.480042pt;}
.y7d{bottom:166.240052pt;}
.y45{bottom:168.320069pt;}
.y120{bottom:171.040039pt;}
.yf1{bottom:174.400086pt;}
.yd2{bottom:175.040039pt;}
.y8a{bottom:177.280030pt;}
.yb3{bottom:180.640076pt;}
.y11f{bottom:188.000061pt;}
.y6c{bottom:189.920044pt;}
.yf0{bottom:191.360047pt;}
.y7c{bottom:191.520081pt;}
.y44{bottom:193.600037pt;}
.y136{bottom:195.520081pt;}
.yd1{bottom:200.320069pt;}
.y89{bottom:202.720032pt;}
.y11e{bottom:204.800049pt;}
.yb2{bottom:205.920044pt;}
.yef{bottom:208.160035pt;}
.y23{bottom:212.960083pt;}
.y6b{bottom:215.200074pt;}
.y7b{bottom:216.800049pt;}
.y43{bottom:218.880066pt;}
.y135{bottom:220.000061pt;}
.y11d{bottom:221.600037pt;}
.yee{bottom:224.960083pt;}
.yd0{bottom:225.600037pt;}
.y88{bottom:228.000061pt;}
.yb1{bottom:231.200074pt;}
.y22{bottom:238.240052pt;}
.y11c{bottom:238.560059pt;}
.y6a{bottom:240.480042pt;}
.yed{bottom:241.920044pt;}
.y7a{bottom:242.080079pt;}
.y42{bottom:244.160035pt;}
.y134{bottom:244.480042pt;}
.ycf{bottom:250.880066pt;}
.y87{bottom:253.280030pt;}
.y11b{bottom:255.360047pt;}
.yb0{bottom:256.480042pt;}
.yec{bottom:258.720032pt;}
.y21{bottom:263.520081pt;}
.y55{bottom:264.640076pt;}
.y69{bottom:265.760071pt;}
.y79{bottom:267.360047pt;}
.y133{bottom:269.120057pt;}
.y41{bottom:269.600037pt;}
.yae{bottom:272.320069pt;}
.yeb{bottom:275.680054pt;}
.yce{bottom:276.160035pt;}
.y86{bottom:278.560059pt;}
.yad{bottom:281.920044pt;}
.y20{bottom:288.960083pt;}
.y11a{bottom:289.120057pt;}
.y54{bottom:289.920044pt;}
.y68{bottom:291.040039pt;}
.yea{bottom:292.480042pt;}
.y132{bottom:293.600037pt;}
.y40{bottom:295.200074pt;}
.ycd{bottom:301.440064pt;}
.y85{bottom:303.840088pt;}
.yac{bottom:304.480042pt;}
.y119{bottom:305.920044pt;}
.ye9{bottom:310.240052pt;}
.y1f{bottom:314.240052pt;}
.y53{bottom:315.360047pt;}
.y67{bottom:316.320069pt;}
.y131{bottom:318.080079pt;}
.yaa{bottom:319.040039pt;}
.y3f{bottom:320.640076pt;}
.ya9{bottom:322.080079pt;}
.y118{bottom:322.880066pt;}
.ycc{bottom:326.720032pt;}
.ye8{bottom:327.200074pt;}
.y84{bottom:329.120057pt;}
.y1e{bottom:339.520081pt;}
.y117{bottom:339.680054pt;}
.y52{bottom:340.640076pt;}
.y66{bottom:341.600037pt;}
.ya8{bottom:342.720032pt;}
.y3e{bottom:345.920044pt;}
.ycb{bottom:352.000061pt;}
.ye7{bottom:352.480042pt;}
.y83{bottom:354.400086pt;}
.y116{bottom:356.640076pt;}
.ya7{bottom:361.760071pt;}
.y1d{bottom:364.800049pt;}
.y51{bottom:365.920044pt;}
.y65{bottom:366.880066pt;}
.y130{bottom:367.200074pt;}
.y3d{bottom:371.200074pt;}
.y115{bottom:373.440064pt;}
.yca{bottom:377.280030pt;}
.ye6{bottom:377.920044pt;}
.y82{bottom:379.680054pt;}
.y1c{bottom:390.080079pt;}
.y114{bottom:390.240052pt;}
.y50{bottom:391.200074pt;}
.y12f{bottom:391.680054pt;}
.y64{bottom:392.160035pt;}
.ya5{bottom:394.080079pt;}
.y3c{bottom:396.480042pt;}
.ya4{bottom:399.040039pt;}
.yc9{bottom:402.720032pt;}
.ye5{bottom:403.200074pt;}
.y81{bottom:404.960083pt;}
.y113{bottom:407.200074pt;}
.y1b{bottom:415.360047pt;}
.y12e{bottom:416.320069pt;}
.y63{bottom:417.600037pt;}
.ya3{bottom:419.520081pt;}
.y3b{bottom:421.760071pt;}
.y112{bottom:424.000061pt;}
.yc8{bottom:428.000061pt;}
.ye4{bottom:428.480042pt;}
.y80{bottom:430.400086pt;}
.ya2{bottom:440.000061pt;}
.y1a{bottom:440.640076pt;}
.y12d{bottom:440.800049pt;}
.y111{bottom:440.960083pt;}
.y62{bottom:442.880066pt;}
.y3a{bottom:447.040039pt;}
.y4f{bottom:452.480042pt;}
.yc7{bottom:453.280030pt;}
.ye3{bottom:453.760071pt;}
.ya0{bottom:454.400086pt;}
.y110{bottom:457.760071pt;}
.y9f{bottom:459.200074pt;}
.y12c{bottom:465.280030pt;}
.y19{bottom:465.920044pt;}
.y61{bottom:468.160035pt;}
.y39{bottom:472.480042pt;}
.y10f{bottom:474.720032pt;}
.y4e{bottom:477.760071pt;}
.yc6{bottom:478.560059pt;}
.ye2{bottom:479.040039pt;}
.y9d{bottom:482.720032pt;}
.y9c{bottom:485.760071pt;}
.y12b{bottom:489.920044pt;}
.y18{bottom:491.200074pt;}
.y10e{bottom:491.520081pt;}
.y60{bottom:493.440064pt;}
.y38{bottom:497.760071pt;}
.y9b{bottom:501.120057pt;}
.y4d{bottom:503.040039pt;}
.yc5{bottom:503.840088pt;}
.ye1{bottom:504.320069pt;}
.y10d{bottom:508.320069pt;}
.y12a{bottom:514.400086pt;}
.y9a{bottom:516.480042pt;}
.y17{bottom:516.640076pt;}
.y5f{bottom:518.720032pt;}
.y37{bottom:523.040039pt;}
.y10c{bottom:525.280030pt;}
.y4c{bottom:528.320069pt;}
.ye0{bottom:529.600037pt;}
.y78{bottom:531.360047pt;}
.yc4{bottom:534.400086pt;}
.y129{bottom:538.880066pt;}
.y16{bottom:541.920044pt;}
.y10b{bottom:542.080079pt;}
.y99{bottom:542.400086pt;}
.y5e{bottom:544.000061pt;}
.y36{bottom:548.320069pt;}
.y4b{bottom:553.600037pt;}
.y77{bottom:556.640076pt;}
.y10a{bottom:559.040039pt;}
.yc3{bottom:559.840088pt;}
.ydf{bottom:560.320069pt;}
.y128{bottom:563.520081pt;}
.y98{bottom:567.840088pt;}
.y5d{bottom:569.280030pt;}
.y35{bottom:573.600037pt;}
.y109{bottom:575.840088pt;}
.y4a{bottom:578.880066pt;}
.y76{bottom:581.920044pt;}
.yc2{bottom:585.120057pt;}
.yde{bottom:585.600037pt;}
.y127{bottom:588.000061pt;}
.y15{bottom:591.200074pt;}
.y108{bottom:592.640076pt;}
.y97{bottom:593.120057pt;}
.y5c{bottom:594.560059pt;}
.y34{bottom:598.880066pt;}
.y49{bottom:604.160035pt;}
.y75{bottom:607.200074pt;}
.y107{bottom:609.600037pt;}
.yc1{bottom:610.400086pt;}
.ydd{bottom:610.880066pt;}
.y126{bottom:612.480072pt;}
.y14{bottom:616.480072pt;}
.y96{bottom:618.400055pt;}
.y5b{bottom:619.840058pt;}
.y33{bottom:624.160065pt;}
.y106{bottom:626.400055pt;}
.y48{bottom:629.600068pt;}
.y74{bottom:632.480072pt;}
.ydc{bottom:636.160065pt;}
.y125{bottom:637.120057pt;}
.y13{bottom:641.760071pt;}
.y105{bottom:643.360047pt;}
.y95{bottom:643.680054pt;}
.y5a{bottom:645.280060pt;}
.y32{bottom:654.880066pt;}
.y73{bottom:657.760071pt;}
.yc0{bottom:659.680054pt;}
.y104{bottom:660.160065pt;}
.ydb{bottom:661.440064pt;}
.y12{bottom:667.040070pt;}
.y94{bottom:668.960053pt;}
.y59{bottom:670.560059pt;}
.y103{bottom:676.960053pt;}
.y72{bottom:683.200074pt;}
.ybf{bottom:684.960053pt;}
.y31{bottom:685.440064pt;}
.yda{bottom:686.720063pt;}
.y11{bottom:692.320069pt;}
.y102{bottom:693.920044pt;}
.y93{bottom:694.560059pt;}
.y58{bottom:695.840058pt;}
.y71{bottom:708.480072pt;}
.ybe{bottom:710.240052pt;}
.y30{bottom:710.720063pt;}
.yd9{bottom:712.000061pt;}
.y10{bottom:717.600068pt;}
.y92{bottom:720.000061pt;}
.y57{bottom:721.120057pt;}
.y101{bottom:727.680054pt;}
.y70{bottom:733.760071pt;}
.ybd{bottom:735.520050pt;}
.y2f{bottom:736.000061pt;}
.yd8{bottom:737.280060pt;}
.yf{bottom:742.880066pt;}
.y100{bottom:744.480072pt;}
.y91{bottom:745.280060pt;}
.y56{bottom:751.680054pt;}
.ybc{bottom:760.800049pt;}
.y2e{bottom:761.280060pt;}
.yd7{bottom:762.720063pt;}
.ye{bottom:768.320069pt;}
.y90{bottom:770.720063pt;}
.yff{bottom:778.240052pt;}
.ybb{bottom:786.080048pt;}
.y2d{bottom:786.720063pt;}
.yd6{bottom:788.000061pt;}
.yd{bottom:793.600068pt;}
.yfe{bottom:795.040070pt;}
.y8f{bottom:801.280060pt;}
.yba{bottom:811.520050pt;}
.y2c{bottom:812.000061pt;}
.yc{bottom:818.880066pt;}
.yfd{bottom:828.800049pt;}
.y8e{bottom:831.840058pt;}
.yb9{bottom:836.800049pt;}
.y2b{bottom:837.280060pt;}
.yb{bottom:844.160065pt;}
.yfc{bottom:845.760071pt;}
.yb8{bottom:862.080048pt;}
.y2a{bottom:862.560059pt;}
.ya{bottom:869.440064pt;}
.yfb{bottom:879.360062pt;}
.yb7{bottom:887.680054pt;}
.y29{bottom:887.840058pt;}
.y9{bottom:894.720063pt;}
.yfa{bottom:896.320054pt;}
.y8{bottom:912.480057pt;}
.y28{bottom:913.120057pt;}
.yf9{bottom:930.080063pt;}
.y7{bottom:932.800064pt;}
.y27{bottom:938.400055pt;}
.yf8{bottom:946.880066pt;}
.y6{bottom:948.160065pt;}
.y26{bottom:963.680054pt;}
.y5{bottom:964.640061pt;}
.yf7{bottom:980.640061pt;}
.y4{bottom:986.080063pt;}
.y25{bottom:988.960053pt;}
.yf6{bottom:997.440056pt;}
.y3{bottom:1008.160057pt;}
.y24{bottom:1014.400055pt;}
.hb{height:15.360047pt;}
.h11{height:15.679993pt;}
.hc{height:17.279968pt;}
.hf{height:17.599975pt;}
.h12{height:22.239990pt;}
.h6{height:42.867997pt;}
.hd{height:44.769811pt;}
.ha{height:48.063997pt;}
.h13{height:48.704137pt;}
.h5{height:49.775937pt;}
.he{height:50.415829pt;}
.h10{height:50.416077pt;}
.h7{height:52.643396pt;}
.h8{height:53.275921pt;}
.h9{height:55.173499pt;}
.h2{height:58.566137pt;}
.h4{height:67.752842pt;}
.h3{height:77.018208pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:5.439987pt;}
.w3{width:5.440002pt;}
.w5{width:5.440003pt;}
.w2{width:6.720032pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400002pt;}
.xa{left:96.160004pt;}
.x8{left:98.879997pt;}
.xe{left:103.519997pt;}
.xb{left:105.279999pt;}
.x10{left:106.879997pt;}
.x18{left:109.120003pt;}
.x11{left:118.879997pt;}
.x3{left:120.000000pt;}
.x22{left:122.879997pt;}
.x7{left:141.600006pt;}
.x21{left:165.600006pt;}
.x5{left:167.520004pt;}
.x1b{left:204.800003pt;}
.x1c{left:210.240005pt;}
.x19{left:211.360001pt;}
.x1d{left:212.960007pt;}
.x1a{left:216.800003pt;}
.x1e{left:218.399994pt;}
.xf{left:242.399994pt;}
.xc{left:247.199997pt;}
.x1f{left:263.200012pt;}
.x20{left:268.640015pt;}
.x6{left:284.799988pt;}
.x9{left:313.600006pt;}
.x12{left:381.279999pt;}
.x4{left:396.799988pt;}
.x14{left:506.880005pt;}
.x13{left:508.480011pt;}
.x16{left:625.280029pt;}
.x15{left:634.239990pt;}
.xd{left:662.880005pt;}
.x1{left:684.320007pt;}
.x17{left:712.479980pt;}
}




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