
    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_ed79341d2b53913ec2fa7f45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_7fd76e412b66542af0901362.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_799c88799714f3976a52ef25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_918d5cfd559fcbbc794e7a70.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_44c1e32333c611a4e2cd2220.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_2dbb29deb0336b136568a18e.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v3{vertical-align:-25.920045px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:25.920045px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:0.719091px;}
.ls3{letter-spacing:2288.220881px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-95.137901px;}
.ws5{word-spacing:-95.043600px;}
.ws1{word-spacing:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws7{word-spacing:-19.800788px;}
.ws6{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-13.363803px;}
._6{margin-left:-11.595714px;}
._1d{margin-left:-10.162848px;}
._e{margin-left:-9.031318px;}
._5{margin-left:-7.888979px;}
._1{margin-left:-6.609744px;}
._4{margin-left:-4.863237px;}
._2{margin-left:-3.231513px;}
._9{margin-left:-2.185643px;}
._3{margin-left:-1.121796px;}
._0{width:1.048595px;}
._11{width:2.617913px;}
._7{width:3.783137px;}
._a{width:4.843824px;}
._8{width:5.988968px;}
._d{width:7.982122px;}
._f{width:9.022603px;}
._c{width:10.041437px;}
._18{width:11.267197px;}
._b{width:12.355310px;}
._12{width:13.990977px;}
._13{width:15.215393px;}
._1a{width:16.523065px;}
._17{width:17.789070px;}
._1e{width:19.009677px;}
._15{width:22.607777px;}
._16{width:25.899430px;}
._14{width:26.929071px;}
._1b{width:1095.138329px;}
._1c{width:1663.888813px;}
._10{width:1695.568988px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:46.081800px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1b{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y34{bottom:41.040115px;}
.y33{bottom:97.920043px;}
.y94{bottom:99.900055px;}
.y7a{bottom:103.320099px;}
.y19{bottom:104.580000px;}
.y8a{bottom:105.480011px;}
.y9c{bottom:109.620072px;}
.y4e{bottom:116.820099px;}
.y9f{bottom:121.320099px;}
.y32{bottom:121.680039px;}
.y93{bottom:128.520058px;}
.y79{bottom:131.940033px;}
.y18{bottom:133.020000px;}
.y89{bottom:133.920043px;}
.y9b{bottom:138.060036px;}
.y65{bottom:140.400055px;}
.y4d{bottom:140.580093px;}
.y7c{bottom:145.440033px;}
.y9e{bottom:149.940033px;}
.y92{bottom:156.240074px;}
.ya9{bottom:159.480079px;}
.y78{bottom:160.020058px;}
.y17{bottom:161.100000px;}
.y88{bottom:162.540047px;}
.y9a{bottom:166.680039px;}
.y64{bottom:170.100083px;}
.y45{bottom:173.520058px;}
.y9d{bottom:178.560036px;}
.y91{bottom:183.960091px;}
.ya8{bottom:187.200096px;}
.y77{bottom:188.100083px;}
.y4c{bottom:188.280052px;}
.y16{bottom:189.360000px;}
.y87{bottom:190.260064px;}
.y99{bottom:192.420043px;}
.y44{bottom:197.280052px;}
.y63{bottom:199.800041px;}
.y31{bottom:207.000068px;}
.y90{bottom:211.680039px;}
.ya7{bottom:214.920043px;}
.y15{bottom:217.440000px;}
.y98{bottom:218.160049px;}
.y43{bottom:225.360077px;}
.y62{bottom:229.500068px;}
.y30{bottom:235.620072px;}
.y4b{bottom:235.800041px;}
.y8f{bottom:239.400055px;}
.ya6{bottom:242.640060px;}
.y97{bottom:243.900055px;}
.y76{bottom:244.440033px;}
.y42{bottom:249.120072px;}
.y61{bottom:259.380066px;}
.y2f{bottom:264.060036px;}
.y8e{bottom:267.120072px;}
.y96{bottom:269.640060px;}
.ya5{bottom:270.360077px;}
.y75{bottom:272.520058px;}
.y41{bottom:272.880066px;}
.y86{bottom:273.420043px;}
.y14{bottom:273.600150px;}
.y4a{bottom:292.680039px;}
.y8d{bottom:295.020058px;}
.y95{bottom:295.380066px;}
.y40{bottom:296.640060px;}
.y74{bottom:300.600083px;}
.y13{bottom:301.860150px;}
.y60{bottom:318.780052px;}
.y3f{bottom:320.400055px;}
.y2e{bottom:321.120072px;}
.y8c{bottom:322.740074px;}
.ya4{bottom:325.800041px;}
.y73{bottom:328.860077px;}
.y85{bottom:329.040047px;}
.y3e{bottom:348.480079px;}
.y49{bottom:349.740074px;}
.y8b{bottom:350.460091px;}
.ya3{bottom:353.520058px;}
.y84{bottom:356.760064px;}
.y72{bottom:356.940033px;}
.y3d{bottom:372.240074px;}
.y5f{bottom:378.180039px;}
.ya2{bottom:381.420043px;}
.y83{bottom:384.480079px;}
.y12{bottom:386.100000px;}
.y48{bottom:406.800041px;}
.y5e{bottom:407.880066px;}
.y82{bottom:412.200096px;}
.y11{bottom:414.360000px;}
.y3c{bottom:419.940033px;}
.y2d{bottom:435.240074px;}
.ya1{bottom:436.860077px;}
.y5d{bottom:437.580093px;}
.y81{bottom:439.920043px;}
.y71{bottom:441.360077px;}
.y10{bottom:442.440000px;}
.y3b{bottom:443.700096px;}
.y2c{bottom:463.860077px;}
.ya0{bottom:464.580093px;}
.y5c{bottom:467.280052px;}
.y80{bottom:467.640060px;}
.y70{bottom:469.440033px;}
.yf{bottom:470.520000px;}
.y7b{bottom:492.300041px;}
.y7f{bottom:495.360077px;}
.y6f{bottom:497.520058px;}
.y2b{bottom:520.920043px;}
.y7e{bottom:523.260064px;}
.y6e{bottom:525.780052px;}
.y5b{bottom:526.860077px;}
.y2a{bottom:549.360077px;}
.y7d{bottom:550.980079px;}
.y6d{bottom:553.860077px;}
.y5a{bottom:556.560036px;}
.y29{bottom:577.980079px;}
.y6c{bottom:581.940033px;}
.y28{bottom:606.420043px;}
.ye{bottom:611.100150px;}
.y59{bottom:615.960091px;}
.y27{bottom:635.040047px;}
.y6b{bottom:638.280052px;}
.yd{bottom:639.360150px;}
.y58{bottom:645.660049px;}
.y3a{bottom:663.480079px;}
.y6a{bottom:666.360077px;}
.y26{bottom:692.100083px;}
.y57{bottom:705.060070px;}
.y25{bottom:720.540081px;}
.y69{bottom:722.520058px;}
.yc{bottom:724.860150px;}
.y24{bottom:749.160049px;}
.y68{bottom:750.780052px;}
.yb{bottom:753.480150px;}
.y23{bottom:777.600083px;}
.y67{bottom:778.860077px;}
.y56{bottom:794.340054px;}
.y39{bottom:806.220051px;}
.y55{bottom:824.040081px;}
.y22{bottom:834.660049px;}
.y66{bottom:835.020058px;}
.y38{bottom:841.140060px;}
.y54{bottom:853.740074px;}
.y21{bottom:863.280052px;}
.y53{bottom:883.440067px;}
.y20{bottom:891.720051px;}
.ya{bottom:896.040000px;}
.y47{bottom:920.340054px;}
.y52{bottom:942.840054px;}
.y1f{bottom:948.780053px;}
.y9{bottom:953.100000px;}
.y37{bottom:977.400072px;}
.y8{bottom:981.720000px;}
.y51{bottom:1002.240074px;}
.y46{bottom:1005.840070px;}
.y7{bottom:1010.160000px;}
.y50{bottom:1031.940067px;}
.y1e{bottom:1034.460074px;}
.y6{bottom:1038.780000px;}
.y4f{bottom:1061.820065px;}
.y36{bottom:1062.900072px;}
.y1a{bottom:1073.700000px;}
.y35{bottom:1091.520058px;}
.y5{bottom:1095.840000px;}
.y1d{bottom:1119.960065px;}
.y4{bottom:1124.280000px;}
.y1c{bottom:1148.580068px;}
.y3{bottom:1152.900000px;}
.h6{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hf{height:57.475145px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.ha{height:64.414315px;}
.hb{height:65.992187px;}
.h7{height:67.837080px;}
.hc{height:69.496123px;}
.h9{height:83.395190px;}
.h5{height:83.395980px;}
.h8{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.xa{left:127.440000px;}
.xf{left:140.939999px;}
.x4{left:143.280000px;}
.x3{left:148.500000px;}
.x13{left:174.240006px;}
.x6{left:177.480000px;}
.x18{left:179.099997px;}
.x5{left:218.880000px;}
.x12{left:224.639992px;}
.x8{left:231.660000px;}
.x7{left:237.240000px;}
.xe{left:255.960000px;}
.x9{left:261.000000px;}
.x15{left:274.319996px;}
.xc{left:296.460000px;}
.xb{left:306.720000px;}
.xd{left:369.000000px;}
.x11{left:389.160015px;}
.x16{left:400.680005px;}
.x10{left:410.939999px;}
.x1b{left:419.220017px;}
.x17{left:471.240006px;}
.x1{left:532.800000px;}
.x19{left:610.919975px;}
.x1a{left:619.200027px;}
.x1c{left:685.799973px;}
.x14{left:741.059967px;}
@media print{
.v3{vertical-align:-23.040040pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:23.040040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:0.639192pt;}
.ls3{letter-spacing:2033.974117pt;}
.ws4{word-spacing:-84.567023pt;}
.ws5{word-spacing:-84.483200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws7{word-spacing:-17.600700pt;}
.ws6{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-11.878936pt;}
._6{margin-left:-10.307301pt;}
._1d{margin-left:-9.033643pt;}
._e{margin-left:-8.027839pt;}
._5{margin-left:-7.012425pt;}
._1{margin-left:-5.875328pt;}
._4{margin-left:-4.322877pt;}
._2{margin-left:-2.872456pt;}
._9{margin-left:-1.942794pt;}
._3{margin-left:-0.997152pt;}
._0{width:0.932084pt;}
._11{width:2.327033pt;}
._7{width:3.362788pt;}
._a{width:4.305621pt;}
._8{width:5.323527pt;}
._d{width:7.095220pt;}
._f{width:8.020091pt;}
._c{width:8.925722pt;}
._18{width:10.015286pt;}
._b{width:10.982498pt;}
._12{width:12.436424pt;}
._13{width:13.524794pt;}
._1a{width:14.687169pt;}
._17{width:15.812506pt;}
._1e{width:16.897491pt;}
._15{width:20.095802pt;}
._16{width:23.021716pt;}
._14{width:23.936952pt;}
._1b{width:973.456293pt;}
._1c{width:1479.012278pt;}
._10{width:1507.172434pt;}
.fs7{font-size:40.961600pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1b{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y34{bottom:36.480103pt;}
.y33{bottom:87.040039pt;}
.y94{bottom:88.800049pt;}
.y7a{bottom:91.840088pt;}
.y19{bottom:92.960000pt;}
.y8a{bottom:93.760010pt;}
.y9c{bottom:97.440064pt;}
.y4e{bottom:103.840088pt;}
.y9f{bottom:107.840088pt;}
.y32{bottom:108.160035pt;}
.y93{bottom:114.240052pt;}
.y79{bottom:117.280030pt;}
.y18{bottom:118.240000pt;}
.y89{bottom:119.040039pt;}
.y9b{bottom:122.720032pt;}
.y65{bottom:124.800049pt;}
.y4d{bottom:124.960083pt;}
.y7c{bottom:129.280030pt;}
.y9e{bottom:133.280030pt;}
.y92{bottom:138.880066pt;}
.ya9{bottom:141.760071pt;}
.y78{bottom:142.240052pt;}
.y17{bottom:143.200000pt;}
.y88{bottom:144.480042pt;}
.y9a{bottom:148.160035pt;}
.y64{bottom:151.200074pt;}
.y45{bottom:154.240052pt;}
.y9d{bottom:158.720032pt;}
.y91{bottom:163.520081pt;}
.ya8{bottom:166.400086pt;}
.y77{bottom:167.200074pt;}
.y4c{bottom:167.360047pt;}
.y16{bottom:168.320000pt;}
.y87{bottom:169.120057pt;}
.y99{bottom:171.040039pt;}
.y44{bottom:175.360047pt;}
.y63{bottom:177.600037pt;}
.y31{bottom:184.000061pt;}
.y90{bottom:188.160035pt;}
.ya7{bottom:191.040039pt;}
.y15{bottom:193.280000pt;}
.y98{bottom:193.920044pt;}
.y43{bottom:200.320069pt;}
.y62{bottom:204.000061pt;}
.y30{bottom:209.440064pt;}
.y4b{bottom:209.600037pt;}
.y8f{bottom:212.800049pt;}
.ya6{bottom:215.680054pt;}
.y97{bottom:216.800049pt;}
.y76{bottom:217.280030pt;}
.y42{bottom:221.440064pt;}
.y61{bottom:230.560059pt;}
.y2f{bottom:234.720032pt;}
.y8e{bottom:237.440064pt;}
.y96{bottom:239.680054pt;}
.ya5{bottom:240.320069pt;}
.y75{bottom:242.240052pt;}
.y41{bottom:242.560059pt;}
.y86{bottom:243.040039pt;}
.y14{bottom:243.200133pt;}
.y4a{bottom:260.160035pt;}
.y8d{bottom:262.240052pt;}
.y95{bottom:262.560059pt;}
.y40{bottom:263.680054pt;}
.y74{bottom:267.200074pt;}
.y13{bottom:268.320133pt;}
.y60{bottom:283.360047pt;}
.y3f{bottom:284.800049pt;}
.y2e{bottom:285.440064pt;}
.y8c{bottom:286.880066pt;}
.ya4{bottom:289.600037pt;}
.y73{bottom:292.320069pt;}
.y85{bottom:292.480042pt;}
.y3e{bottom:309.760071pt;}
.y49{bottom:310.880066pt;}
.y8b{bottom:311.520081pt;}
.ya3{bottom:314.240052pt;}
.y84{bottom:317.120057pt;}
.y72{bottom:317.280030pt;}
.y3d{bottom:330.880066pt;}
.y5f{bottom:336.160035pt;}
.ya2{bottom:339.040039pt;}
.y83{bottom:341.760071pt;}
.y12{bottom:343.200000pt;}
.y48{bottom:361.600037pt;}
.y5e{bottom:362.560059pt;}
.y82{bottom:366.400086pt;}
.y11{bottom:368.320000pt;}
.y3c{bottom:373.280030pt;}
.y2d{bottom:386.880066pt;}
.ya1{bottom:388.320069pt;}
.y5d{bottom:388.960083pt;}
.y81{bottom:391.040039pt;}
.y71{bottom:392.320069pt;}
.y10{bottom:393.280000pt;}
.y3b{bottom:394.400086pt;}
.y2c{bottom:412.320069pt;}
.ya0{bottom:412.960083pt;}
.y5c{bottom:415.360047pt;}
.y80{bottom:415.680054pt;}
.y70{bottom:417.280030pt;}
.yf{bottom:418.240000pt;}
.y7b{bottom:437.600037pt;}
.y7f{bottom:440.320069pt;}
.y6f{bottom:442.240052pt;}
.y2b{bottom:463.040039pt;}
.y7e{bottom:465.120057pt;}
.y6e{bottom:467.360047pt;}
.y5b{bottom:468.320069pt;}
.y2a{bottom:488.320069pt;}
.y7d{bottom:489.760071pt;}
.y6d{bottom:492.320069pt;}
.y5a{bottom:494.720032pt;}
.y29{bottom:513.760071pt;}
.y6c{bottom:517.280030pt;}
.y28{bottom:539.040039pt;}
.ye{bottom:543.200133pt;}
.y59{bottom:547.520081pt;}
.y27{bottom:564.480042pt;}
.y6b{bottom:567.360047pt;}
.yd{bottom:568.320133pt;}
.y58{bottom:573.920044pt;}
.y3a{bottom:589.760071pt;}
.y6a{bottom:592.320069pt;}
.y26{bottom:615.200074pt;}
.y57{bottom:626.720063pt;}
.y25{bottom:640.480072pt;}
.y69{bottom:642.240052pt;}
.yc{bottom:644.320133pt;}
.y24{bottom:665.920044pt;}
.y68{bottom:667.360047pt;}
.yb{bottom:669.760133pt;}
.y23{bottom:691.200074pt;}
.y67{bottom:692.320069pt;}
.y56{bottom:706.080048pt;}
.y39{bottom:716.640046pt;}
.y55{bottom:732.480072pt;}
.y22{bottom:741.920044pt;}
.y66{bottom:742.240052pt;}
.y38{bottom:747.680054pt;}
.y54{bottom:758.880066pt;}
.y21{bottom:767.360047pt;}
.y53{bottom:785.280060pt;}
.y20{bottom:792.640046pt;}
.ya{bottom:796.480000pt;}
.y47{bottom:818.080048pt;}
.y52{bottom:838.080048pt;}
.y1f{bottom:843.360047pt;}
.y9{bottom:847.200000pt;}
.y37{bottom:868.800064pt;}
.y8{bottom:872.640000pt;}
.y51{bottom:890.880066pt;}
.y46{bottom:894.080063pt;}
.y7{bottom:897.920000pt;}
.y50{bottom:917.280060pt;}
.y1e{bottom:919.520066pt;}
.y6{bottom:923.360000pt;}
.y4f{bottom:943.840058pt;}
.y36{bottom:944.800064pt;}
.y1a{bottom:954.400000pt;}
.y35{bottom:970.240052pt;}
.y5{bottom:974.080000pt;}
.y1d{bottom:995.520058pt;}
.y4{bottom:999.360000pt;}
.y1c{bottom:1020.960061pt;}
.y3{bottom:1024.800000pt;}
.h6{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hf{height:51.089018pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.ha{height:57.257169pt;}
.hb{height:58.659722pt;}
.h7{height:60.299627pt;}
.hc{height:61.774332pt;}
.h9{height:74.129058pt;}
.h5{height:74.129760pt;}
.h8{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.xa{left:113.280000pt;}
.xf{left:125.279999pt;}
.x4{left:127.360000pt;}
.x3{left:132.000000pt;}
.x13{left:154.880005pt;}
.x6{left:157.760000pt;}
.x18{left:159.199997pt;}
.x5{left:194.560000pt;}
.x12{left:199.679993pt;}
.x8{left:205.920000pt;}
.x7{left:210.880000pt;}
.xe{left:227.520000pt;}
.x9{left:232.000000pt;}
.x15{left:243.839996pt;}
.xc{left:263.520000pt;}
.xb{left:272.640000pt;}
.xd{left:328.000000pt;}
.x11{left:345.920013pt;}
.x16{left:356.160004pt;}
.x10{left:365.279999pt;}
.x1b{left:372.640015pt;}
.x17{left:418.880005pt;}
.x1{left:473.600000pt;}
.x19{left:543.039978pt;}
.x1a{left:550.400024pt;}
.x1c{left:609.599976pt;}
.x14{left:658.719971pt;}
}




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