
    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_0adb0f88ac7e3a59b6a9f861.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_5d5a29075d29a2a8845e855e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_664d95ab342d9fd9ddae178d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_5f1905cb077b8ed7d211ed4f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_86210872c039210ae127a008.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.011903px;}
.ls27{letter-spacing:0.019113px;}
.ls2d{letter-spacing:0.031310px;}
.ls16{letter-spacing:0.149087px;}
.ls10{letter-spacing:0.149222px;}
.ls3{letter-spacing:1.810754px;}
.ls2b{letter-spacing:11.890741px;}
.ls2e{letter-spacing:14.050759px;}
.ls2a{letter-spacing:14.770772px;}
.ls30{letter-spacing:15.490754px;}
.ls23{letter-spacing:16.930754px;}
.ls2c{letter-spacing:18.370754px;}
.ls2f{letter-spacing:26.290763px;}
.lsd{letter-spacing:27.730763px;}
.ls32{letter-spacing:30.610759px;}
.ls31{letter-spacing:31.330777px;}
.ls18{letter-spacing:34.210736px;}
.ls12{letter-spacing:34.930754px;}
.ls0{letter-spacing:34.930759px;}
.ls1a{letter-spacing:36.370754px;}
.ls1f{letter-spacing:37.090736px;}
.ls17{letter-spacing:37.090768px;}
.ls14{letter-spacing:37.090804px;}
.ls1c{letter-spacing:37.810750px;}
.ls11{letter-spacing:37.810754px;}
.ls20{letter-spacing:38.530768px;}
.ls2{letter-spacing:39.250786px;}
.ls22{letter-spacing:39.970732px;}
.ls19{letter-spacing:40.690750px;}
.ls1e{letter-spacing:41.410763px;}
.ls13{letter-spacing:41.410768px;}
.ls25{letter-spacing:43.570745px;}
.ls5{letter-spacing:45.730763px;}
.ls24{letter-spacing:46.450745px;}
.ls26{letter-spacing:47.170759px;}
.ls7{letter-spacing:47.890781px;}
.ls1b{letter-spacing:48.610759px;}
.ls4{letter-spacing:48.610795px;}
.ls15{letter-spacing:49.330741px;}
.ls9{letter-spacing:49.330777px;}
.lsc{letter-spacing:50.770777px;}
.ls6{letter-spacing:52.210777px;}
.ls1d{letter-spacing:53.650772px;}
.ls21{letter-spacing:54.370754px;}
.ls28{letter-spacing:56.530772px;}
.lsf{letter-spacing:60.130781px;}
.ls8{letter-spacing:60.130786px;}
.lsb{letter-spacing:64.450781px;}
.lsa{letter-spacing:65.170799px;}
.lse{letter-spacing:73.810786px;}
.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:-14.970850px;}
.ws0{word-spacing:-13.447268px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-14.308423px;}
._9{margin-left:-2.422258px;}
._0{margin-left:-1.036077px;}
._3{width:1.005544px;}
._7{width:2.260532px;}
._2{width:3.699758px;}
._1{width:4.755243px;}
._8{width:6.050598px;}
._a{width:8.032186px;}
._6{width:9.463908px;}
._5{width:10.468934px;}
._4{width:15.228834px;}
._b{width:38.739738px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.242700px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.780121px;}
.y1{bottom:77.940033px;}
.y2f{bottom:116.280052px;}
.y7f{bottom:117.720085px;}
.y5a{bottom:122.220085px;}
.y9d{bottom:128.880066px;}
.y91{bottom:131.220085px;}
.ya9{bottom:133.380066px;}
.y2e{bottom:140.760064px;}
.y59{bottom:142.380066px;}
.y9c{bottom:153.540047px;}
.y90{bottom:155.880066px;}
.ya8{bottom:158.040047px;}
.y7e{bottom:162.540047px;}
.y2d{bottom:165.420043px;}
.y58{bottom:167.040047px;}
.y9b{bottom:178.200096px;}
.y8f{bottom:180.540047px;}
.ya7{bottom:182.700096px;}
.y7d{bottom:187.200096px;}
.y2c{bottom:190.080093px;}
.y57{bottom:191.700096px;}
.y8e{bottom:200.700096px;}
.y9a{bottom:202.860077px;}
.ya6{bottom:207.360077px;}
.y56{bottom:211.860077px;}
.y2b{bottom:214.740074px;}
.yb4{bottom:216.540047px;}
.y8d{bottom:225.360077px;}
.y99{bottom:227.520058px;}
.ya5{bottom:232.020058px;}
.y55{bottom:236.520058px;}
.y2a{bottom:239.400055px;}
.yb3{bottom:241.200096px;}
.y8c{bottom:250.020058px;}
.y98{bottom:252.180039px;}
.ya4{bottom:256.680039px;}
.y54{bottom:261.180039px;}
.y29{bottom:264.060036px;}
.yb2{bottom:265.860077px;}
.y8b{bottom:270.180039px;}
.y97{bottom:276.840088px;}
.y53{bottom:281.340088px;}
.y7c{bottom:285.840088px;}
.y28{bottom:288.900055px;}
.yb1{bottom:290.520058px;}
.y8a{bottom:294.840088px;}
.y96{bottom:301.320099px;}
.yaa{bottom:301.500068px;}
.y52{bottom:305.820099px;}
.y7b{bottom:310.320099px;}
.yb0{bottom:314.820099px;}
.y27{bottom:318.060036px;}
.y89{bottom:319.320099px;}
.y95{bottom:325.980079px;}
.y51{bottom:330.480079px;}
.y7a{bottom:334.980079px;}
.yaf{bottom:339.480079px;}
.y88{bottom:343.980079px;}
.y94{bottom:350.640060px;}
.y26{bottom:351.720085px;}
.y50{bottom:355.140060px;}
.y79{bottom:359.640060px;}
.yae{bottom:364.140060px;}
.y87{bottom:368.640060px;}
.y25{bottom:373.500068px;}
.y93{bottom:375.300041px;}
.y4f{bottom:379.800041px;}
.y78{bottom:384.300041px;}
.yad{bottom:388.800041px;}
.y86{bottom:393.300041px;}
.y24{bottom:395.280052px;}
.y92{bottom:399.960091px;}
.y4e{bottom:404.460091px;}
.y77{bottom:408.960091px;}
.yac{bottom:413.460091px;}
.y23{bottom:416.880066px;}
.y85{bottom:417.960091px;}
.y4d{bottom:424.620072px;}
.ya3{bottom:429.120072px;}
.y76{bottom:433.620072px;}
.yab{bottom:438.120072px;}
.y22{bottom:438.660049px;}
.y84{bottom:442.620072px;}
.y4c{bottom:449.280052px;}
.ya2{bottom:453.780052px;}
.y75{bottom:458.280052px;}
.y21{bottom:460.440033px;}
.y83{bottom:462.780052px;}
.y4b{bottom:473.940033px;}
.ya1{bottom:478.440033px;}
.y74{bottom:482.940033px;}
.y82{bottom:487.440033px;}
.y20{bottom:489.600083px;}
.y4a{bottom:498.600083px;}
.ya0{bottom:503.100083px;}
.y73{bottom:507.600083px;}
.y1f{bottom:509.760064px;}
.y81{bottom:512.100083px;}
.y49{bottom:523.260064px;}
.y9f{bottom:527.760064px;}
.y1e{bottom:529.920043px;}
.y72{bottom:532.260064px;}
.y48{bottom:547.740074px;}
.y1d{bottom:550.080093px;}
.y9e{bottom:552.240074px;}
.y71{bottom:556.740074px;}
.y1c{bottom:570.240074px;}
.y47{bottom:572.400055px;}
.y70{bottom:576.900055px;}
.y80{bottom:581.400055px;}
.y1b{bottom:590.220085px;}
.y46{bottom:597.060036px;}
.y6f{bottom:601.560036px;}
.y1a{bottom:610.380066px;}
.y45{bottom:621.720085px;}
.y6e{bottom:626.220085px;}
.y19{bottom:630.540047px;}
.y44{bottom:646.380066px;}
.y6d{bottom:650.880066px;}
.y18{bottom:659.700096px;}
.y43{bottom:671.040047px;}
.y6c{bottom:675.540047px;}
.y17{bottom:690.480079px;}
.y42{bottom:695.700061px;}
.y6b{bottom:700.200061px;}
.y16{bottom:712.260064px;}
.y41{bottom:720.360077px;}
.y6a{bottom:724.860077px;}
.y15{bottom:733.860077px;}
.y40{bottom:745.020058px;}
.y69{bottom:749.520058px;}
.y14{bottom:755.640060px;}
.y3f{bottom:769.680073px;}
.y68{bottom:774.180073px;}
.y13{bottom:777.420078px;}
.y3e{bottom:794.160049px;}
.y67{bottom:798.660049px;}
.y12{bottom:799.200061px;}
.y3d{bottom:818.820065px;}
.y11{bottom:820.800076px;}
.y66{bottom:823.320065px;}
.y3c{bottom:843.480079px;}
.y65{bottom:847.980079px;}
.y10{bottom:849.960056px;}
.y3b{bottom:868.140060px;}
.yf{bottom:870.120072px;}
.y64{bottom:872.640060px;}
.ye{bottom:890.280052px;}
.y3a{bottom:892.800076px;}
.y63{bottom:897.300076px;}
.yd{bottom:910.440067px;}
.y39{bottom:917.460056px;}
.y62{bottom:921.960056px;}
.yc{bottom:930.600083px;}
.y38{bottom:942.120072px;}
.y61{bottom:946.620072px;}
.yb{bottom:950.760064px;}
.y37{bottom:966.780053px;}
.y60{bottom:971.280053px;}
.ya{bottom:981.360060px;}
.y36{bottom:991.440067px;}
.y5f{bottom:995.940067px;}
.y9{bottom:1003.140060px;}
.y35{bottom:1016.100065px;}
.y5e{bottom:1020.600065px;}
.y8{bottom:1024.920061px;}
.y34{bottom:1040.580059px;}
.y5d{bottom:1045.080059px;}
.y7{bottom:1046.700061px;}
.y33{bottom:1065.240074px;}
.y6{bottom:1068.300058px;}
.y5c{bottom:1069.740074px;}
.y32{bottom:1089.900072px;}
.y5{bottom:1090.080059px;}
.y5b{bottom:1094.400072px;}
.y31{bottom:1114.560070px;}
.y4{bottom:1114.740074px;}
.y30{bottom:1139.220068px;}
.y3{bottom:1139.400064px;}
.h2{height:57.412496px;}
.h3{height:57.509532px;}
.h5{height:65.886904px;}
.h4{height:67.827608px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.xa{left:112.860000px;}
.x7{left:135.000000px;}
.x8{left:137.879998px;}
.x3{left:150.479994px;}
.x9{left:161.819996px;}
.x4{left:177.479994px;}
.x6{left:231.479994px;}
.x5{left:446.399987px;}
.xb{left:767.340019px;}
.x1{left:776.159981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.010580pt;}
.ls27{letter-spacing:0.016990pt;}
.ls2d{letter-spacing:0.027831pt;}
.ls16{letter-spacing:0.132522pt;}
.ls10{letter-spacing:0.132642pt;}
.ls3{letter-spacing:1.609559pt;}
.ls2b{letter-spacing:10.569547pt;}
.ls2e{letter-spacing:12.489563pt;}
.ls2a{letter-spacing:13.129575pt;}
.ls30{letter-spacing:13.769559pt;}
.ls23{letter-spacing:15.049559pt;}
.ls2c{letter-spacing:16.329559pt;}
.ls2f{letter-spacing:23.369567pt;}
.lsd{letter-spacing:24.649567pt;}
.ls32{letter-spacing:27.209563pt;}
.ls31{letter-spacing:27.849579pt;}
.ls18{letter-spacing:30.409543pt;}
.ls12{letter-spacing:31.049559pt;}
.ls0{letter-spacing:31.049563pt;}
.ls1a{letter-spacing:32.329559pt;}
.ls1f{letter-spacing:32.969543pt;}
.ls17{letter-spacing:32.969571pt;}
.ls14{letter-spacing:32.969603pt;}
.ls1c{letter-spacing:33.609555pt;}
.ls11{letter-spacing:33.609559pt;}
.ls20{letter-spacing:34.249571pt;}
.ls2{letter-spacing:34.889587pt;}
.ls22{letter-spacing:35.529539pt;}
.ls19{letter-spacing:36.169555pt;}
.ls1e{letter-spacing:36.809567pt;}
.ls13{letter-spacing:36.809571pt;}
.ls25{letter-spacing:38.729551pt;}
.ls5{letter-spacing:40.649567pt;}
.ls24{letter-spacing:41.289551pt;}
.ls26{letter-spacing:41.929563pt;}
.ls7{letter-spacing:42.569583pt;}
.ls1b{letter-spacing:43.209563pt;}
.ls4{letter-spacing:43.209595pt;}
.ls15{letter-spacing:43.849547pt;}
.ls9{letter-spacing:43.849579pt;}
.lsc{letter-spacing:45.129579pt;}
.ls6{letter-spacing:46.409579pt;}
.ls1d{letter-spacing:47.689575pt;}
.ls21{letter-spacing:48.329559pt;}
.ls28{letter-spacing:50.249575pt;}
.lsf{letter-spacing:53.449583pt;}
.ls8{letter-spacing:53.449587pt;}
.lsb{letter-spacing:57.289583pt;}
.lsa{letter-spacing:57.929599pt;}
.lse{letter-spacing:65.609587pt;}
.ws2{word-spacing:-13.307422pt;}
.ws0{word-spacing:-11.953127pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-12.718598pt;}
._9{margin-left:-2.153118pt;}
._0{margin-left:-0.920957pt;}
._3{width:0.893817pt;}
._7{width:2.009362pt;}
._2{width:3.288674pt;}
._1{width:4.226882pt;}
._8{width:5.378309pt;}
._a{width:7.139721pt;}
._6{width:8.412363pt;}
._5{width:9.305719pt;}
._4{width:13.536742pt;}
._b{width:34.435323pt;}
.fs0{font-size:58.882400pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.360108pt;}
.y1{bottom:69.280030pt;}
.y2f{bottom:103.360047pt;}
.y7f{bottom:104.640076pt;}
.y5a{bottom:108.640076pt;}
.y9d{bottom:114.560059pt;}
.y91{bottom:116.640076pt;}
.ya9{bottom:118.560059pt;}
.y2e{bottom:125.120057pt;}
.y59{bottom:126.560059pt;}
.y9c{bottom:136.480042pt;}
.y90{bottom:138.560059pt;}
.ya8{bottom:140.480042pt;}
.y7e{bottom:144.480042pt;}
.y2d{bottom:147.040039pt;}
.y58{bottom:148.480042pt;}
.y9b{bottom:158.400086pt;}
.y8f{bottom:160.480042pt;}
.ya7{bottom:162.400086pt;}
.y7d{bottom:166.400086pt;}
.y2c{bottom:168.960083pt;}
.y57{bottom:170.400086pt;}
.y8e{bottom:178.400086pt;}
.y9a{bottom:180.320069pt;}
.ya6{bottom:184.320069pt;}
.y56{bottom:188.320069pt;}
.y2b{bottom:190.880066pt;}
.yb4{bottom:192.480042pt;}
.y8d{bottom:200.320069pt;}
.y99{bottom:202.240052pt;}
.ya5{bottom:206.240052pt;}
.y55{bottom:210.240052pt;}
.y2a{bottom:212.800049pt;}
.yb3{bottom:214.400086pt;}
.y8c{bottom:222.240052pt;}
.y98{bottom:224.160035pt;}
.ya4{bottom:228.160035pt;}
.y54{bottom:232.160035pt;}
.y29{bottom:234.720032pt;}
.yb2{bottom:236.320069pt;}
.y8b{bottom:240.160035pt;}
.y97{bottom:246.080079pt;}
.y53{bottom:250.080079pt;}
.y7c{bottom:254.080079pt;}
.y28{bottom:256.800049pt;}
.yb1{bottom:258.240052pt;}
.y8a{bottom:262.080079pt;}
.y96{bottom:267.840088pt;}
.yaa{bottom:268.000061pt;}
.y52{bottom:271.840088pt;}
.y7b{bottom:275.840088pt;}
.yb0{bottom:279.840088pt;}
.y27{bottom:282.720032pt;}
.y89{bottom:283.840088pt;}
.y95{bottom:289.760071pt;}
.y51{bottom:293.760071pt;}
.y7a{bottom:297.760071pt;}
.yaf{bottom:301.760071pt;}
.y88{bottom:305.760071pt;}
.y94{bottom:311.680054pt;}
.y26{bottom:312.640076pt;}
.y50{bottom:315.680054pt;}
.y79{bottom:319.680054pt;}
.yae{bottom:323.680054pt;}
.y87{bottom:327.680054pt;}
.y25{bottom:332.000061pt;}
.y93{bottom:333.600037pt;}
.y4f{bottom:337.600037pt;}
.y78{bottom:341.600037pt;}
.yad{bottom:345.600037pt;}
.y86{bottom:349.600037pt;}
.y24{bottom:351.360047pt;}
.y92{bottom:355.520081pt;}
.y4e{bottom:359.520081pt;}
.y77{bottom:363.520081pt;}
.yac{bottom:367.520081pt;}
.y23{bottom:370.560059pt;}
.y85{bottom:371.520081pt;}
.y4d{bottom:377.440064pt;}
.ya3{bottom:381.440064pt;}
.y76{bottom:385.440064pt;}
.yab{bottom:389.440064pt;}
.y22{bottom:389.920044pt;}
.y84{bottom:393.440064pt;}
.y4c{bottom:399.360047pt;}
.ya2{bottom:403.360047pt;}
.y75{bottom:407.360047pt;}
.y21{bottom:409.280030pt;}
.y83{bottom:411.360047pt;}
.y4b{bottom:421.280030pt;}
.ya1{bottom:425.280030pt;}
.y74{bottom:429.280030pt;}
.y82{bottom:433.280030pt;}
.y20{bottom:435.200074pt;}
.y4a{bottom:443.200074pt;}
.ya0{bottom:447.200074pt;}
.y73{bottom:451.200074pt;}
.y1f{bottom:453.120057pt;}
.y81{bottom:455.200074pt;}
.y49{bottom:465.120057pt;}
.y9f{bottom:469.120057pt;}
.y1e{bottom:471.040039pt;}
.y72{bottom:473.120057pt;}
.y48{bottom:486.880066pt;}
.y1d{bottom:488.960083pt;}
.y9e{bottom:490.880066pt;}
.y71{bottom:494.880066pt;}
.y1c{bottom:506.880066pt;}
.y47{bottom:508.800049pt;}
.y70{bottom:512.800049pt;}
.y80{bottom:516.800049pt;}
.y1b{bottom:524.640076pt;}
.y46{bottom:530.720032pt;}
.y6f{bottom:534.720032pt;}
.y1a{bottom:542.560059pt;}
.y45{bottom:552.640076pt;}
.y6e{bottom:556.640076pt;}
.y19{bottom:560.480042pt;}
.y44{bottom:574.560059pt;}
.y6d{bottom:578.560059pt;}
.y18{bottom:586.400086pt;}
.y43{bottom:596.480042pt;}
.y6c{bottom:600.480042pt;}
.y17{bottom:613.760071pt;}
.y42{bottom:618.400055pt;}
.y6b{bottom:622.400055pt;}
.y16{bottom:633.120057pt;}
.y41{bottom:640.320069pt;}
.y6a{bottom:644.320069pt;}
.y15{bottom:652.320069pt;}
.y40{bottom:662.240052pt;}
.y69{bottom:666.240052pt;}
.y14{bottom:671.680054pt;}
.y3f{bottom:684.160065pt;}
.y68{bottom:688.160065pt;}
.y13{bottom:691.040070pt;}
.y3e{bottom:705.920044pt;}
.y67{bottom:709.920044pt;}
.y12{bottom:710.400055pt;}
.y3d{bottom:727.840058pt;}
.y11{bottom:729.600068pt;}
.y66{bottom:731.840058pt;}
.y3c{bottom:749.760071pt;}
.y65{bottom:753.760071pt;}
.y10{bottom:755.520050pt;}
.y3b{bottom:771.680054pt;}
.yf{bottom:773.440064pt;}
.y64{bottom:775.680054pt;}
.ye{bottom:791.360047pt;}
.y3a{bottom:793.600068pt;}
.y63{bottom:797.600068pt;}
.yd{bottom:809.280060pt;}
.y39{bottom:815.520050pt;}
.y62{bottom:819.520050pt;}
.yc{bottom:827.200074pt;}
.y38{bottom:837.440064pt;}
.y61{bottom:841.440064pt;}
.yb{bottom:845.120057pt;}
.y37{bottom:859.360047pt;}
.y60{bottom:863.360047pt;}
.ya{bottom:872.320054pt;}
.y36{bottom:881.280060pt;}
.y5f{bottom:885.280060pt;}
.y9{bottom:891.680054pt;}
.y35{bottom:903.200058pt;}
.y5e{bottom:907.200058pt;}
.y8{bottom:911.040055pt;}
.y34{bottom:924.960053pt;}
.y5d{bottom:928.960053pt;}
.y7{bottom:930.400055pt;}
.y33{bottom:946.880066pt;}
.y6{bottom:949.600052pt;}
.y5c{bottom:950.880066pt;}
.y32{bottom:968.800064pt;}
.y5{bottom:968.960053pt;}
.y5b{bottom:972.800064pt;}
.y31{bottom:990.720063pt;}
.y4{bottom:990.880066pt;}
.y30{bottom:1012.640061pt;}
.y3{bottom:1012.800057pt;}
.h2{height:51.033330pt;}
.h3{height:51.119584pt;}
.h5{height:58.566137pt;}
.h4{height:60.291207pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.xa{left:100.320000pt;}
.x7{left:120.000000pt;}
.x8{left:122.559998pt;}
.x3{left:133.759995pt;}
.x9{left:143.839996pt;}
.x4{left:157.759995pt;}
.x6{left:205.759995pt;}
.x5{left:396.799988pt;}
.xb{left:682.080017pt;}
.x1{left:689.919983pt;}
}




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