
    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_c2e1a0279598aad51b77f20b.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_6e27df1550ef1a70c2e3c4dc.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_fdd508e77b198cf1eb312884.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_4cd32c5dd2a863ab20a551e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d13f55674c5f784291a3fe1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a0d6f47279dcc5595c70357b.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.239870px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.ls6{letter-spacing:3.599176px;}
.ls4{letter-spacing:9.359032px;}
.ls5{letter-spacing:9.359311px;}
.ls3{letter-spacing:14.399149px;}
.ls2{letter-spacing:15.839046px;}
.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;}
}
.ws2{word-spacing:-79.203150px;}
.ws1{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws4{word-spacing:-15.840563px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-23.307572px;}
._3{margin-left:-12.244660px;}
._16{margin-left:-10.489788px;}
._a{margin-left:-8.473360px;}
._9{margin-left:-6.668274px;}
._2{margin-left:-4.942267px;}
._6{margin-left:-3.790607px;}
._4{margin-left:-2.615555px;}
._5{margin-left:-1.012066px;}
._0{width:1.064507px;}
._b{width:2.179227px;}
._f{width:3.264525px;}
._c{width:4.989047px;}
._8{width:6.749581px;}
._7{width:8.569888px;}
._13{width:10.552810px;}
._d{width:12.320676px;}
._e{width:13.414328px;}
._11{width:15.187850px;}
._10{width:16.405780px;}
._12{width:17.692967px;}
._14{width:19.357241px;}
._1b{width:21.553377px;}
._19{width:27.855096px;}
._18{width:889.608695px;}
._1a{width:899.633236px;}
._1{width:1663.872901px;}
._17{width:1668.193000px;}
.fc2{color:transparent;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.fs4{font-size:102.964046px;}
.fs5{font-size:126.724950px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.800110px;}
.y1f{bottom:58.860077px;}
.y1d{bottom:102.780121px;}
.ya3{bottom:110.340088px;}
.yaa{bottom:120.600083px;}
.y98{bottom:121.320099px;}
.y6e{bottom:126.180039px;}
.y1c{bottom:131.220085px;}
.y4d{bottom:138.060036px;}
.y7e{bottom:139.680039px;}
.y34{bottom:140.400055px;}
.ya9{bottom:146.340088px;}
.y97{bottom:149.940033px;}
.y1b{bottom:159.840088px;}
.y4c{bottom:166.500068px;}
.ya2{bottom:167.400055px;}
.y7d{bottom:168.120072px;}
.y33{bottom:169.020058px;}
.y92{bottom:169.380066px;}
.y96{bottom:178.560036px;}
.y6d{bottom:183.240074px;}
.y1a{bottom:188.280052px;}
.ya1{bottom:195.840088px;}
.y32{bottom:197.460091px;}
.ya8{bottom:198.000068px;}
.y5a{bottom:207.000068px;}
.y6c{bottom:211.860077px;}
.y19{bottom:216.900055px;}
.ya7{bottom:223.740074px;}
.y31{bottom:226.080093px;}
.y4b{bottom:228.420043px;}
.y95{bottom:235.620072px;}
.y6b{bottom:240.300041px;}
.y18{bottom:245.340088px;}
.ya0{bottom:252.900055px;}
.y91{bottom:254.880066px;}
.y7c{bottom:263.700096px;}
.y59{bottom:264.060036px;}
.y17{bottom:273.960091px;}
.y9f{bottom:281.520058px;}
.y30{bottom:283.140060px;}
.y90{bottom:283.500068px;}
.y4a{bottom:290.160049px;}
.y58{bottom:292.680039px;}
.y6a{bottom:297.360077px;}
.ya6{bottom:300.960091px;}
.y7b{bottom:302.040047px;}
.y16{bottom:302.400055px;}
.y2f{bottom:311.580093px;}
.y8f{bottom:311.940033px;}
.y49{bottom:321.120072px;}
.y69{bottom:325.980079px;}
.ya5{bottom:326.700096px;}
.y2e{bottom:340.200096px;}
.y8e{bottom:340.560036px;}
.y57{bottom:349.740074px;}
.ya4{bottom:352.440033px;}
.y68{bottom:354.600083px;}
.y7a{bottom:359.100083px;}
.y9e{bottom:367.020058px;}
.y2d{bottom:368.640060px;}
.y8d{bottom:369.000068px;}
.y48{bottom:378.180039px;}
.y79{bottom:387.720085px;}
.y15{bottom:388.080093px;}
.y9d{bottom:395.640060px;}
.y8c{bottom:397.620072px;}
.y47{bottom:406.620072px;}
.y56{bottom:406.800041px;}
.y67{bottom:411.660049px;}
.y78{bottom:416.160049px;}
.ybc{bottom:424.620072px;}
.y2c{bottom:425.700096px;}
.y8b{bottom:426.060036px;}
.y46{bottom:435.240074px;}
.y66{bottom:440.100083px;}
.y77{bottom:444.780052px;}
.y14{bottom:445.140060px;}
.y9c{bottom:452.700096px;}
.ybb{bottom:453.060036px;}
.y45{bottom:463.680039px;}
.y55{bottom:463.860077px;}
.yba{bottom:478.800041px;}
.y2b{bottom:482.760064px;}
.y8a{bottom:483.120072px;}
.y44{bottom:492.300041px;}
.y65{bottom:497.160049px;}
.y76{bottom:501.840088px;}
.y13{bottom:502.200096px;}
.y89{bottom:511.740074px;}
.y43{bottom:520.740074px;}
.y54{bottom:520.920043px;}
.y64{bottom:525.780052px;}
.y75{bottom:530.280052px;}
.yb9{bottom:530.460091px;}
.y88{bottom:540.180039px;}
.y42{bottom:549.360077px;}
.y63{bottom:554.220085px;}
.yb8{bottom:556.200096px;}
.y74{bottom:558.900055px;}
.y12{bottom:559.260064px;}
.y87{bottom:568.800041px;}
.y41{bottom:577.800041px;}
.y53{bottom:577.980079px;}
.y62{bottom:582.840088px;}
.y11{bottom:587.880066px;}
.y9b{bottom:596.520058px;}
.y2a{bottom:596.880066px;}
.y86{bottom:597.240074px;}
.y40{bottom:606.420043px;}
.yb7{bottom:607.680039px;}
.y61{bottom:611.280052px;}
.y10{bottom:616.320099px;}
.y85{bottom:625.860077px;}
.yb6{bottom:633.420043px;}
.y3f{bottom:634.860077px;}
.y94{bottom:635.040047px;}
.y60{bottom:639.900055px;}
.yf{bottom:644.940033px;}
.y9a{bottom:653.580093px;}
.y84{bottom:654.300041px;}
.y3e{bottom:663.480079px;}
.y5f{bottom:668.340088px;}
.y73{bottom:673.020058px;}
.ye{bottom:673.380066px;}
.y29{bottom:682.560036px;}
.yb5{bottom:684.900055px;}
.y3d{bottom:691.920078px;}
.y52{bottom:692.100083px;}
.y5e{bottom:696.960056px;}
.y72{bottom:701.460056px;}
.yd{bottom:702.000068px;}
.yb4{bottom:710.640060px;}
.y28{bottom:711.000068px;}
.y83{bottom:711.360077px;}
.y99{bottom:720.540081px;}
.yc{bottom:730.440067px;}
.y27{bottom:739.620072px;}
.y3c{bottom:748.980079px;}
.y93{bottom:749.160049px;}
.y82{bottom:749.520058px;}
.yb{bottom:759.060070px;}
.yb3{bottom:762.120072px;}
.y3b{bottom:777.600083px;}
.y5d{bottom:782.460056px;}
.ya{bottom:787.500068px;}
.y3a{bottom:806.040081px;}
.y51{bottom:806.220051px;}
.y5c{bottom:811.080059px;}
.yb2{bottom:813.780052px;}
.y39{bottom:834.660049px;}
.y5b{bottom:839.520058px;}
.y26{bottom:853.740074px;}
.y50{bottom:863.280052px;}
.y81{bottom:863.640060px;}
.y25{bottom:882.180073px;}
.yb1{bottom:891.000068px;}
.y38{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.yb0{bottom:916.740074px;}
.y4f{bottom:920.340054px;}
.y8{bottom:920.700061px;}
.y71{bottom:948.780053px;}
.y7{bottom:949.140060px;}
.y24{bottom:967.860077px;}
.yaf{bottom:968.220051px;}
.y37{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.yae{bottom:993.960074px;}
.y23{bottom:996.300058px;}
.y4e{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.yad{bottom:1019.700061px;}
.y22{bottom:1024.920061px;}
.y36{bottom:1034.460074px;}
.y80{bottom:1034.820065px;}
.yac{bottom:1045.440067px;}
.y70{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y6f{bottom:1091.520058px;}
.y7f{bottom:1091.880066px;}
.y1e{bottom:1097.100065px;}
.y21{bottom:1110.420061px;}
.y35{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.yab{bottom:1122.840063px;}
.y20{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414315px;}
.h6{height:65.992187px;}
.h2{height:67.836531px;}
.hc{height:69.496123px;}
.hb{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.ha{height:90.344917px;}
.hd{height:111.193718px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:89.819996px;}
.x19{left:108.180005px;}
.x1{left:140.939999px;}
.x2{left:145.979994px;}
.x7{left:162.000000px;}
.xf{left:172.979994px;}
.x12{left:189.900003px;}
.x13{left:200.879998px;}
.x6{left:210.240006px;}
.x3{left:212.219999px;}
.x14{left:218.879998px;}
.x11{left:223.560001px;}
.x18{left:244.080008px;}
.x16{left:251.280001px;}
.x17{left:259.560001px;}
.x5{left:264.780001px;}
.x1c{left:273.419992px;}
.x4{left:290.519989px;}
.xc{left:304.560001px;}
.x9{left:356.399987px;}
.x15{left:365.579990px;}
.x8{left:367.740006px;}
.x10{left:385.379998px;}
.x1b{left:392.399987px;}
.xb{left:410.939999px;}
.x1d{left:429.660015px;}
.xa{left:455.220017px;}
.xd{left:532.800007px;}
.x1a{left:734.220017px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.879884pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ls6{letter-spacing:3.199268pt;}
.ls4{letter-spacing:8.319140pt;}
.ls5{letter-spacing:8.319388pt;}
.ls3{letter-spacing:12.799244pt;}
.ls2{letter-spacing:14.079152pt;}
.ws2{word-spacing:-70.402800pt;}
.ws1{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws4{word-spacing:-14.080500pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-20.717842pt;}
._3{margin-left:-10.884142pt;}
._16{margin-left:-9.324256pt;}
._a{margin-left:-7.531875pt;}
._9{margin-left:-5.927354pt;}
._2{margin-left:-4.393126pt;}
._6{margin-left:-3.369428pt;}
._4{margin-left:-2.324938pt;}
._5{margin-left:-0.899614pt;}
._0{width:0.946228pt;}
._b{width:1.937091pt;}
._f{width:2.901800pt;}
._c{width:4.434709pt;}
._8{width:5.999627pt;}
._7{width:7.617679pt;}
._13{width:9.380275pt;}
._d{width:10.951712pt;}
._e{width:11.923847pt;}
._11{width:13.500311pt;}
._10{width:14.582916pt;}
._12{width:15.727082pt;}
._14{width:17.206436pt;}
._1b{width:19.158557pt;}
._19{width:24.760086pt;}
._18{width:790.763285pt;}
._1a{width:799.673987pt;}
._1{width:1478.998134pt;}
._17{width:1482.838222pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.fs4{font-size:91.523596pt;}
.fs5{font-size:112.644400pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.600098pt;}
.y1f{bottom:52.320069pt;}
.y1d{bottom:91.360108pt;}
.ya3{bottom:98.080079pt;}
.yaa{bottom:107.200074pt;}
.y98{bottom:107.840088pt;}
.y6e{bottom:112.160035pt;}
.y1c{bottom:116.640076pt;}
.y4d{bottom:122.720032pt;}
.y7e{bottom:124.160035pt;}
.y34{bottom:124.800049pt;}
.ya9{bottom:130.080079pt;}
.y97{bottom:133.280030pt;}
.y1b{bottom:142.080079pt;}
.y4c{bottom:148.000061pt;}
.ya2{bottom:148.800049pt;}
.y7d{bottom:149.440064pt;}
.y33{bottom:150.240052pt;}
.y92{bottom:150.560059pt;}
.y96{bottom:158.720032pt;}
.y6d{bottom:162.880066pt;}
.y1a{bottom:167.360047pt;}
.ya1{bottom:174.080079pt;}
.y32{bottom:175.520081pt;}
.ya8{bottom:176.000061pt;}
.y5a{bottom:184.000061pt;}
.y6c{bottom:188.320069pt;}
.y19{bottom:192.800049pt;}
.ya7{bottom:198.880066pt;}
.y31{bottom:200.960083pt;}
.y4b{bottom:203.040039pt;}
.y95{bottom:209.440064pt;}
.y6b{bottom:213.600037pt;}
.y18{bottom:218.080079pt;}
.ya0{bottom:224.800049pt;}
.y91{bottom:226.560059pt;}
.y7c{bottom:234.400086pt;}
.y59{bottom:234.720032pt;}
.y17{bottom:243.520081pt;}
.y9f{bottom:250.240052pt;}
.y30{bottom:251.680054pt;}
.y90{bottom:252.000061pt;}
.y4a{bottom:257.920044pt;}
.y58{bottom:260.160035pt;}
.y6a{bottom:264.320069pt;}
.ya6{bottom:267.520081pt;}
.y7b{bottom:268.480042pt;}
.y16{bottom:268.800049pt;}
.y2f{bottom:276.960083pt;}
.y8f{bottom:277.280030pt;}
.y49{bottom:285.440064pt;}
.y69{bottom:289.760071pt;}
.ya5{bottom:290.400086pt;}
.y2e{bottom:302.400086pt;}
.y8e{bottom:302.720032pt;}
.y57{bottom:310.880066pt;}
.ya4{bottom:313.280030pt;}
.y68{bottom:315.200074pt;}
.y7a{bottom:319.200074pt;}
.y9e{bottom:326.240052pt;}
.y2d{bottom:327.680054pt;}
.y8d{bottom:328.000061pt;}
.y48{bottom:336.160035pt;}
.y79{bottom:344.640076pt;}
.y15{bottom:344.960083pt;}
.y9d{bottom:351.680054pt;}
.y8c{bottom:353.440064pt;}
.y47{bottom:361.440064pt;}
.y56{bottom:361.600037pt;}
.y67{bottom:365.920044pt;}
.y78{bottom:369.920044pt;}
.ybc{bottom:377.440064pt;}
.y2c{bottom:378.400086pt;}
.y8b{bottom:378.720032pt;}
.y46{bottom:386.880066pt;}
.y66{bottom:391.200074pt;}
.y77{bottom:395.360047pt;}
.y14{bottom:395.680054pt;}
.y9c{bottom:402.400086pt;}
.ybb{bottom:402.720032pt;}
.y45{bottom:412.160035pt;}
.y55{bottom:412.320069pt;}
.yba{bottom:425.600037pt;}
.y2b{bottom:429.120057pt;}
.y8a{bottom:429.440064pt;}
.y44{bottom:437.600037pt;}
.y65{bottom:441.920044pt;}
.y76{bottom:446.080079pt;}
.y13{bottom:446.400086pt;}
.y89{bottom:454.880066pt;}
.y43{bottom:462.880066pt;}
.y54{bottom:463.040039pt;}
.y64{bottom:467.360047pt;}
.y75{bottom:471.360047pt;}
.yb9{bottom:471.520081pt;}
.y88{bottom:480.160035pt;}
.y42{bottom:488.320069pt;}
.y63{bottom:492.640076pt;}
.yb8{bottom:494.400086pt;}
.y74{bottom:496.800049pt;}
.y12{bottom:497.120057pt;}
.y87{bottom:505.600037pt;}
.y41{bottom:513.600037pt;}
.y53{bottom:513.760071pt;}
.y62{bottom:518.080079pt;}
.y11{bottom:522.560059pt;}
.y9b{bottom:530.240052pt;}
.y2a{bottom:530.560059pt;}
.y86{bottom:530.880066pt;}
.y40{bottom:539.040039pt;}
.yb7{bottom:540.160035pt;}
.y61{bottom:543.360047pt;}
.y10{bottom:547.840088pt;}
.y85{bottom:556.320069pt;}
.yb6{bottom:563.040039pt;}
.y3f{bottom:564.320069pt;}
.y94{bottom:564.480042pt;}
.y60{bottom:568.800049pt;}
.yf{bottom:573.280030pt;}
.y9a{bottom:580.960083pt;}
.y84{bottom:581.600037pt;}
.y3e{bottom:589.760071pt;}
.y5f{bottom:594.080079pt;}
.y73{bottom:598.240052pt;}
.ye{bottom:598.560059pt;}
.y29{bottom:606.720032pt;}
.yb5{bottom:608.800049pt;}
.y3d{bottom:615.040070pt;}
.y52{bottom:615.200074pt;}
.y5e{bottom:619.520050pt;}
.y72{bottom:623.520050pt;}
.yd{bottom:624.000061pt;}
.yb4{bottom:631.680054pt;}
.y28{bottom:632.000061pt;}
.y83{bottom:632.320069pt;}
.y99{bottom:640.480072pt;}
.yc{bottom:649.280060pt;}
.y27{bottom:657.440064pt;}
.y3c{bottom:665.760071pt;}
.y93{bottom:665.920044pt;}
.y82{bottom:666.240052pt;}
.yb{bottom:674.720063pt;}
.yb3{bottom:677.440064pt;}
.y3b{bottom:691.200074pt;}
.y5d{bottom:695.520050pt;}
.ya{bottom:700.000061pt;}
.y3a{bottom:716.480072pt;}
.y51{bottom:716.640046pt;}
.y5c{bottom:720.960053pt;}
.yb2{bottom:723.360047pt;}
.y39{bottom:741.920044pt;}
.y5b{bottom:746.240052pt;}
.y26{bottom:758.880066pt;}
.y50{bottom:767.360047pt;}
.y81{bottom:767.680054pt;}
.y25{bottom:784.160065pt;}
.yb1{bottom:792.000061pt;}
.y38{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.yb0{bottom:814.880066pt;}
.y4f{bottom:818.080048pt;}
.y8{bottom:818.400055pt;}
.y71{bottom:843.360047pt;}
.y7{bottom:843.680054pt;}
.y24{bottom:860.320069pt;}
.yaf{bottom:860.640046pt;}
.y37{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.yae{bottom:883.520066pt;}
.y23{bottom:885.600052pt;}
.y4e{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.yad{bottom:906.400055pt;}
.y22{bottom:911.040055pt;}
.y36{bottom:919.520066pt;}
.y80{bottom:919.840058pt;}
.yac{bottom:929.280060pt;}
.y70{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y6f{bottom:970.240052pt;}
.y7f{bottom:970.560059pt;}
.y1e{bottom:975.200058pt;}
.y21{bottom:987.040055pt;}
.y35{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.yab{bottom:998.080056pt;}
.y20{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257169pt;}
.h6{height:58.659722pt;}
.h2{height:60.299139pt;}
.hc{height:61.774332pt;}
.hb{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.ha{height:80.306593pt;}
.hd{height:98.838861pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:79.839996pt;}
.x19{left:96.160004pt;}
.x1{left:125.279999pt;}
.x2{left:129.759995pt;}
.x7{left:144.000000pt;}
.xf{left:153.759995pt;}
.x12{left:168.800003pt;}
.x13{left:178.559998pt;}
.x6{left:186.880005pt;}
.x3{left:188.639999pt;}
.x14{left:194.559998pt;}
.x11{left:198.720001pt;}
.x18{left:216.960007pt;}
.x16{left:223.360001pt;}
.x17{left:230.720001pt;}
.x5{left:235.360001pt;}
.x1c{left:243.039993pt;}
.x4{left:258.239990pt;}
.xc{left:270.720001pt;}
.x9{left:316.799988pt;}
.x15{left:324.959991pt;}
.x8{left:326.880005pt;}
.x10{left:342.559998pt;}
.x1b{left:348.799988pt;}
.xb{left:365.279999pt;}
.x1d{left:381.920013pt;}
.xa{left:404.640015pt;}
.xd{left:473.600006pt;}
.x1a{left:652.640015pt;}
}




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