
    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_bab49f93e8adc48345bd4643.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_18cb052b1a65cf48aae61736.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_6212d1555b1b6cc1dd9d9251.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937988;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);}
.v3{vertical-align:-2.159910px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759995px;}
.v2{vertical-align:52.559969px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.799145px;}
.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:-16.560675px;}
.ws1{word-spacing:-14.940563px;}
.ws5{word-spacing:-13.500563px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:1.886521px;}
.ws0{word-spacing:2.160081px;}
.ws3{word-spacing:63.357313px;}
.ws7{word-spacing:63.592992px;}
.ws8{word-spacing:1079.941208px;}
._25{margin-left:-2.469486px;}
._1{margin-left:-1.344417px;}
._0{width:1.174702px;}
._4{width:2.618783px;}
._10{width:3.985689px;}
._11{width:5.067825px;}
._b{width:6.574556px;}
._d{width:8.423432px;}
._e{width:10.251505px;}
._9{width:11.293470px;}
._7{width:12.301531px;}
._8{width:13.538289px;}
._6{width:15.027298px;}
._1f{width:17.577372px;}
._5{width:18.630039px;}
._17{width:19.693542px;}
._3{width:21.176849px;}
._12{width:22.570341px;}
._c{width:23.687559px;}
._15{width:24.980131px;}
._23{width:26.126268px;}
._13{width:27.765783px;}
._f{width:28.980922px;}
._a{width:30.555932px;}
._19{width:31.839686px;}
._18{width:32.912838px;}
._24{width:33.917815px;}
._1c{width:35.705748px;}
._1b{width:36.952817px;}
._1d{width:39.348164px;}
._20{width:40.618951px;}
._16{width:45.356639px;}
._1e{width:56.309072px;}
._1a{width:62.731837px;}
._14{width:79.917988px;}
._22{width:85.941181px;}
._21{width:662.175423px;}
._2{width:1534.420981px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs4{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y3{bottom:69.840088px;}
.ybf{bottom:117.900055px;}
.y72{bottom:124.920043px;}
.y2d{bottom:131.400055px;}
.y5c{bottom:134.280052px;}
.ybe{bottom:136.800041px;}
.y2c{bottom:150.480079px;}
.y5b{bottom:153.360077px;}
.yaa{bottom:155.880066px;}
.y81{bottom:161.100083px;}
.y2b{bottom:169.380066px;}
.y5a{bottom:172.260064px;}
.ya9{bottom:174.780052px;}
.y80{bottom:180.180039px;}
.y2a{bottom:188.460091px;}
.y59{bottom:191.160049px;}
.ybd{bottom:192.060036px;}
.ya8{bottom:193.680039px;}
.y7f{bottom:199.080093px;}
.y29{bottom:207.180039px;}
.y58{bottom:210.240074px;}
.ybc{bottom:210.960091px;}
.ya7{bottom:212.760064px;}
.y28{bottom:226.080093px;}
.y57{bottom:229.140060px;}
.ybb{bottom:230.040047px;}
.ya6{bottom:231.660049px;}
.y7e{bottom:237.060036px;}
.y27{bottom:245.160049px;}
.y56{bottom:248.220085px;}
.yba{bottom:248.940033px;}
.ya5{bottom:250.740074px;}
.y7d{bottom:255.960091px;}
.yd8{bottom:257.940033px;}
.y26{bottom:264.060036px;}
.y55{bottom:267.120072px;}
.ya4{bottom:269.640060px;}
.y97{bottom:271.800041px;}
.y7c{bottom:275.040047px;}
.yd7{bottom:276.840088px;}
.y54{bottom:286.020058px;}
.yb9{bottom:286.920043px;}
.y7b{bottom:293.940033px;}
.yd6{bottom:295.920043px;}
.y25{bottom:302.040047px;}
.y53{bottom:305.100083px;}
.yb8{bottom:305.820099px;}
.ya3{bottom:307.620072px;}
.y7a{bottom:313.020058px;}
.yd5{bottom:314.820099px;}
.y24{bottom:320.940033px;}
.yb7{bottom:324.900055px;}
.ya2{bottom:326.520058px;}
.y79{bottom:331.920043px;}
.yd4{bottom:333.900055px;}
.y23{bottom:340.020058px;}
.y52{bottom:343.080093px;}
.yb6{bottom:343.800041px;}
.ya1{bottom:345.600083px;}
.y78{bottom:350.820099px;}
.yd3{bottom:352.800041px;}
.y22{bottom:358.920043px;}
.y51{bottom:361.980079px;}
.yb5{bottom:362.700096px;}
.ya0{bottom:364.500068px;}
.y77{bottom:369.900055px;}
.yd2{bottom:371.700096px;}
.y21{bottom:378.000068px;}
.y50{bottom:380.880066px;}
.y9f{bottom:383.400055px;}
.y76{bottom:388.800041px;}
.yd1{bottom:390.780052px;}
.y20{bottom:396.900055px;}
.y4f{bottom:399.960091px;}
.yb4{bottom:400.680039px;}
.yd0{bottom:409.680039px;}
.y1f{bottom:415.800041px;}
.y4e{bottom:418.860077px;}
.yb3{bottom:419.760064px;}
.y9e{bottom:421.020058px;}
.y75{bottom:426.420043px;}
.ycf{bottom:428.760064px;}
.y4d{bottom:437.940033px;}
.yb2{bottom:438.660049px;}
.yce{bottom:447.660049px;}
.y1e{bottom:453.420043px;}
.y4c{bottom:456.840088px;}
.yb1{bottom:457.740074px;}
.ycd{bottom:466.740074px;}
.y9d{bottom:468.180039px;}
.y74{bottom:473.400055px;}
.y4b{bottom:475.920043px;}
.yb0{bottom:476.640060px;}
.y1d{bottom:491.760064px;}
.y4a{bottom:494.820099px;}
.ycc{bottom:504.180039px;}
.y1c{bottom:510.660049px;}
.y49{bottom:513.720085px;}
.yaf{bottom:514.260064px;}
.y1b{bottom:529.740074px;}
.y48{bottom:532.800041px;}
.yae{bottom:533.160049px;}
.ycb{bottom:540.900055px;}
.y1a{bottom:548.640060px;}
.yca{bottom:559.800041px;}
.y19{bottom:567.720085px;}
.y47{bottom:570.780052px;}
.yc9{bottom:578.700096px;}
.y96{bottom:579.420043px;}
.yad{bottom:580.140060px;}
.y18{bottom:586.620072px;}
.y46{bottom:589.680039px;}
.yc8{bottom:597.780052px;}
.y17{bottom:605.700096px;}
.y45{bottom:608.580093px;}
.y16{bottom:624.600083px;}
.y95{bottom:625.860077px;}
.y8c{bottom:631.800041px;}
.yc7{bottom:633.600083px;}
.y8e{bottom:638.460091px;}
.y89{bottom:639.000068px;}
.y15{bottom:643.500068px;}
.y94{bottom:644.940033px;}
.y44{bottom:646.200096px;}
.y8b{bottom:647.280052px;}
.y8d{bottom:653.940033px;}
.y88{bottom:654.480079px;}
.y14{bottom:662.580093px;}
.y8a{bottom:662.760064px;}
.y93{bottom:663.840088px;}
.yc6{bottom:678.780052px;}
.y13{bottom:681.480079px;}
.y92{bottom:682.740074px;}
.y43{bottom:684.540047px;}
.y71{bottom:701.820065px;}
.y42{bottom:703.440067px;}
.y12{bottom:719.100083px;}
.y70{bottom:720.720051px;}
.y41{bottom:722.520058px;}
.y40{bottom:741.240074px;}
.y11{bottom:757.440067px;}
.y6f{bottom:758.520058px;}
.y3f{bottom:760.320065px;}
.y6e{bottom:777.420078px;}
.y3e{bottom:779.220051px;}
.y6d{bottom:796.500068px;}
.y6c{bottom:815.400055px;}
.y3d{bottom:816.840054px;}
.y10{bottom:817.560070px;}
.y85{bottom:820.800076px;}
.y84{bottom:823.140060px;}
.y87{bottom:824.220051px;}
.y6b{bottom:834.480079px;}
.yf{bottom:834.660049px;}
.y9c{bottom:836.100083px;}
.y83{bottom:838.800076px;}
.y86{bottom:839.700061px;}
.ye{bottom:851.940067px;}
.y6a{bottom:853.380066px;}
.y3c{bottom:855.180073px;}
.y69{bottom:872.280052px;}
.y3b{bottom:874.080059px;}
.yd9{bottom:879.660049px;}
.y82{bottom:885.780052px;}
.yd{bottom:889.920078px;}
.y68{bottom:891.360077px;}
.y3a{bottom:892.980079px;}
.yc{bottom:907.200061px;}
.y67{bottom:910.260064px;}
.y39{bottom:912.060070px;}
.yb{bottom:924.480079px;}
.y91{bottom:929.340054px;}
.y9b{bottom:930.960056px;}
.y66{bottom:948.240074px;}
.y38{bottom:950.040081px;}
.ya{bottom:958.860077px;}
.y65{bottom:967.320065px;}
.y9a{bottom:968.580059px;}
.y37{bottom:968.940067px;}
.y9{bottom:976.140060px;}
.y64{bottom:986.220068px;}
.y36{bottom:988.020058px;}
.yc5{bottom:991.440067px;}
.y8{bottom:993.420061px;}
.y90{bottom:1005.120072px;}
.y35{bottom:1006.920061px;}
.yc4{bottom:1010.340070px;}
.y63{bottom:1023.840070px;}
.yac{bottom:1024.200061px;}
.y34{bottom:1025.820065px;}
.y7{bottom:1028.340070px;}
.yc3{bottom:1029.240074px;}
.y8f{bottom:1043.100065px;}
.y33{bottom:1044.900072px;}
.yc2{bottom:1048.320065px;}
.y62{bottom:1062.180073px;}
.y32{bottom:1063.800058px;}
.yc1{bottom:1067.220068px;}
.y6{bottom:1069.740074px;}
.y61{bottom:1081.080059px;}
.y31{bottom:1082.880066px;}
.yc0{bottom:1086.300058px;}
.y5{bottom:1090.440067px;}
.y60{bottom:1099.980063px;}
.y73{bottom:1101.780069px;}
.y5f{bottom:1119.060070px;}
.y99{bottom:1120.320065px;}
.y30{bottom:1120.680064px;}
.y4{bottom:1131.840063px;}
.yab{bottom:1137.600065px;}
.y5e{bottom:1137.960065px;}
.y98{bottom:1139.400064px;}
.y2f{bottom:1139.760064px;}
.y2{bottom:1170.180064px;}
.y5d{bottom:1174.680064px;}
.y2e{bottom:1176.480063px;}
.y1{bottom:1186.920069px;}
.h8{height:48.412173px;}
.h2{height:53.079850px;}
.h3{height:53.575923px;}
.h7{height:58.835679px;}
.h6{height:59.385546px;}
.h4{height:63.951621px;}
.h5{height:66.607571px;}
.h9{height:100.972142px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:103.680005px;}
.xd{left:106.379998px;}
.x15{left:109.799998px;}
.x12{left:114.480002px;}
.x5{left:117.000000px;}
.xf{left:127.620002px;}
.x1c{left:133.379998px;}
.x1b{left:138.780001px;}
.x7{left:158.400003px;}
.x1e{left:160.379998px;}
.x6{left:172.620002px;}
.x1f{left:178.379998px;}
.x19{left:219.599997px;}
.x1a{left:230.039996px;}
.x8{left:236.520006px;}
.xb{left:243.360008px;}
.xa{left:250.560001px;}
.xc{left:253.620002px;}
.x11{left:260.639992px;}
.x20{left:267.659998px;}
.xe{left:285.120002px;}
.x18{left:296.279983px;}
.x10{left:306.180005px;}
.x16{left:321.839985px;}
.x13{left:331.379998px;}
.x1d{left:334.439999px;}
.x9{left:373.319996px;}
.x4{left:395.819996px;}
.x14{left:518.579990px;}
.x17{left:534.600014px;}
.x2{left:592.919975px;}
.x1{left:670.500000px;}
@media print{
.v3{vertical-align:-1.919920pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v2{vertical-align:46.719972pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.599240pt;}
.ws2{word-spacing:-14.720600pt;}
.ws1{word-spacing:-13.280500pt;}
.ws5{word-spacing:-12.000500pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:1.676907pt;}
.ws0{word-spacing:1.920072pt;}
.ws3{word-spacing:56.317612pt;}
.ws7{word-spacing:56.527104pt;}
.ws8{word-spacing:959.947740pt;}
._25{margin-left:-2.195099pt;}
._1{margin-left:-1.195038pt;}
._0{width:1.044179pt;}
._4{width:2.327807pt;}
._10{width:3.542834pt;}
._11{width:4.504734pt;}
._b{width:5.844050pt;}
._d{width:7.487495pt;}
._e{width:9.112449pt;}
._9{width:10.038640pt;}
._7{width:10.934694pt;}
._8{width:12.034034pt;}
._6{width:13.357598pt;}
._1f{width:15.624330pt;}
._5{width:16.560035pt;}
._17{width:17.505371pt;}
._3{width:18.823866pt;}
._12{width:20.062525pt;}
._c{width:21.055608pt;}
._15{width:22.204561pt;}
._23{width:23.223349pt;}
._13{width:24.680696pt;}
._f{width:25.760820pt;}
._a{width:27.160829pt;}
._19{width:28.301943pt;}
._18{width:29.255856pt;}
._24{width:30.149169pt;}
._1c{width:31.738442pt;}
._1b{width:32.846949pt;}
._1d{width:34.976146pt;}
._20{width:36.105734pt;}
._16{width:40.317012pt;}
._1e{width:50.052509pt;}
._1a{width:55.761633pt;}
._14{width:71.038212pt;}
._22{width:76.392161pt;}
._21{width:588.600376pt;}
._2{width:1363.929760pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:62.080079pt;}
.ybf{bottom:104.800049pt;}
.y72{bottom:111.040039pt;}
.y2d{bottom:116.800049pt;}
.y5c{bottom:119.360047pt;}
.ybe{bottom:121.600037pt;}
.y2c{bottom:133.760071pt;}
.y5b{bottom:136.320069pt;}
.yaa{bottom:138.560059pt;}
.y81{bottom:143.200074pt;}
.y2b{bottom:150.560059pt;}
.y5a{bottom:153.120057pt;}
.ya9{bottom:155.360047pt;}
.y80{bottom:160.160035pt;}
.y2a{bottom:167.520081pt;}
.y59{bottom:169.920044pt;}
.ybd{bottom:170.720032pt;}
.ya8{bottom:172.160035pt;}
.y7f{bottom:176.960083pt;}
.y29{bottom:184.160035pt;}
.y58{bottom:186.880066pt;}
.ybc{bottom:187.520081pt;}
.ya7{bottom:189.120057pt;}
.y28{bottom:200.960083pt;}
.y57{bottom:203.680054pt;}
.ybb{bottom:204.480042pt;}
.ya6{bottom:205.920044pt;}
.y7e{bottom:210.720032pt;}
.y27{bottom:217.920044pt;}
.y56{bottom:220.640076pt;}
.yba{bottom:221.280030pt;}
.ya5{bottom:222.880066pt;}
.y7d{bottom:227.520081pt;}
.yd8{bottom:229.280030pt;}
.y26{bottom:234.720032pt;}
.y55{bottom:237.440064pt;}
.ya4{bottom:239.680054pt;}
.y97{bottom:241.600037pt;}
.y7c{bottom:244.480042pt;}
.yd7{bottom:246.080079pt;}
.y54{bottom:254.240052pt;}
.yb9{bottom:255.040039pt;}
.y7b{bottom:261.280030pt;}
.yd6{bottom:263.040039pt;}
.y25{bottom:268.480042pt;}
.y53{bottom:271.200074pt;}
.yb8{bottom:271.840088pt;}
.ya3{bottom:273.440064pt;}
.y7a{bottom:278.240052pt;}
.yd5{bottom:279.840088pt;}
.y24{bottom:285.280030pt;}
.yb7{bottom:288.800049pt;}
.ya2{bottom:290.240052pt;}
.y79{bottom:295.040039pt;}
.yd4{bottom:296.800049pt;}
.y23{bottom:302.240052pt;}
.y52{bottom:304.960083pt;}
.yb6{bottom:305.600037pt;}
.ya1{bottom:307.200074pt;}
.y78{bottom:311.840088pt;}
.yd3{bottom:313.600037pt;}
.y22{bottom:319.040039pt;}
.y51{bottom:321.760071pt;}
.yb5{bottom:322.400086pt;}
.ya0{bottom:324.000061pt;}
.y77{bottom:328.800049pt;}
.yd2{bottom:330.400086pt;}
.y21{bottom:336.000061pt;}
.y50{bottom:338.560059pt;}
.y9f{bottom:340.800049pt;}
.y76{bottom:345.600037pt;}
.yd1{bottom:347.360047pt;}
.y20{bottom:352.800049pt;}
.y4f{bottom:355.520081pt;}
.yb4{bottom:356.160035pt;}
.yd0{bottom:364.160035pt;}
.y1f{bottom:369.600037pt;}
.y4e{bottom:372.320069pt;}
.yb3{bottom:373.120057pt;}
.y9e{bottom:374.240052pt;}
.y75{bottom:379.040039pt;}
.ycf{bottom:381.120057pt;}
.y4d{bottom:389.280030pt;}
.yb2{bottom:389.920044pt;}
.yce{bottom:397.920044pt;}
.y1e{bottom:403.040039pt;}
.y4c{bottom:406.080079pt;}
.yb1{bottom:406.880066pt;}
.ycd{bottom:414.880066pt;}
.y9d{bottom:416.160035pt;}
.y74{bottom:420.800049pt;}
.y4b{bottom:423.040039pt;}
.yb0{bottom:423.680054pt;}
.y1d{bottom:437.120057pt;}
.y4a{bottom:439.840088pt;}
.ycc{bottom:448.160035pt;}
.y1c{bottom:453.920044pt;}
.y49{bottom:456.640076pt;}
.yaf{bottom:457.120057pt;}
.y1b{bottom:470.880066pt;}
.y48{bottom:473.600037pt;}
.yae{bottom:473.920044pt;}
.ycb{bottom:480.800049pt;}
.y1a{bottom:487.680054pt;}
.yca{bottom:497.600037pt;}
.y19{bottom:504.640076pt;}
.y47{bottom:507.360047pt;}
.yc9{bottom:514.400086pt;}
.y96{bottom:515.040039pt;}
.yad{bottom:515.680054pt;}
.y18{bottom:521.440064pt;}
.y46{bottom:524.160035pt;}
.yc8{bottom:531.360047pt;}
.y17{bottom:538.400086pt;}
.y45{bottom:540.960083pt;}
.y16{bottom:555.200074pt;}
.y95{bottom:556.320069pt;}
.y8c{bottom:561.600037pt;}
.yc7{bottom:563.200074pt;}
.y8e{bottom:567.520081pt;}
.y89{bottom:568.000061pt;}
.y15{bottom:572.000061pt;}
.y94{bottom:573.280030pt;}
.y44{bottom:574.400086pt;}
.y8b{bottom:575.360047pt;}
.y8d{bottom:581.280030pt;}
.y88{bottom:581.760071pt;}
.y14{bottom:588.960083pt;}
.y8a{bottom:589.120057pt;}
.y93{bottom:590.080079pt;}
.yc6{bottom:603.360047pt;}
.y13{bottom:605.760071pt;}
.y92{bottom:606.880066pt;}
.y43{bottom:608.480042pt;}
.y71{bottom:623.840058pt;}
.y42{bottom:625.280060pt;}
.y12{bottom:639.200074pt;}
.y70{bottom:640.640046pt;}
.y41{bottom:642.240052pt;}
.y40{bottom:658.880066pt;}
.y11{bottom:673.280060pt;}
.y6f{bottom:674.240052pt;}
.y3f{bottom:675.840058pt;}
.y6e{bottom:691.040070pt;}
.y3e{bottom:692.640046pt;}
.y6d{bottom:708.000061pt;}
.y6c{bottom:724.800049pt;}
.y3d{bottom:726.080048pt;}
.y10{bottom:726.720063pt;}
.y85{bottom:729.600068pt;}
.y84{bottom:731.680054pt;}
.y87{bottom:732.640046pt;}
.y6b{bottom:741.760071pt;}
.yf{bottom:741.920044pt;}
.y9c{bottom:743.200074pt;}
.y83{bottom:745.600068pt;}
.y86{bottom:746.400055pt;}
.ye{bottom:757.280060pt;}
.y6a{bottom:758.560059pt;}
.y3c{bottom:760.160065pt;}
.y69{bottom:775.360047pt;}
.y3b{bottom:776.960053pt;}
.yd9{bottom:781.920044pt;}
.y82{bottom:787.360047pt;}
.yd{bottom:791.040070pt;}
.y68{bottom:792.320069pt;}
.y3a{bottom:793.760071pt;}
.yc{bottom:806.400055pt;}
.y67{bottom:809.120057pt;}
.y39{bottom:810.720063pt;}
.yb{bottom:821.760071pt;}
.y91{bottom:826.080048pt;}
.y9b{bottom:827.520050pt;}
.y66{bottom:842.880066pt;}
.y38{bottom:844.480072pt;}
.ya{bottom:852.320069pt;}
.y65{bottom:859.840058pt;}
.y9a{bottom:860.960053pt;}
.y37{bottom:861.280060pt;}
.y9{bottom:867.680054pt;}
.y64{bottom:876.640061pt;}
.y36{bottom:878.240052pt;}
.yc5{bottom:881.280060pt;}
.y8{bottom:883.040055pt;}
.y90{bottom:893.440064pt;}
.y35{bottom:895.040055pt;}
.yc4{bottom:898.080063pt;}
.y63{bottom:910.080063pt;}
.yac{bottom:910.400055pt;}
.y34{bottom:911.840058pt;}
.y7{bottom:914.080063pt;}
.yc3{bottom:914.880066pt;}
.y8f{bottom:927.200058pt;}
.y33{bottom:928.800064pt;}
.yc2{bottom:931.840058pt;}
.y62{bottom:944.160065pt;}
.y32{bottom:945.600052pt;}
.yc1{bottom:948.640061pt;}
.y6{bottom:950.880066pt;}
.y61{bottom:960.960053pt;}
.y31{bottom:962.560059pt;}
.yc0{bottom:965.600052pt;}
.y5{bottom:969.280060pt;}
.y60{bottom:977.760056pt;}
.y73{bottom:979.360062pt;}
.y5f{bottom:994.720063pt;}
.y99{bottom:995.840058pt;}
.y30{bottom:996.160057pt;}
.y4{bottom:1006.080056pt;}
.yab{bottom:1011.200058pt;}
.y5e{bottom:1011.520058pt;}
.y98{bottom:1012.800057pt;}
.y2f{bottom:1013.120057pt;}
.y2{bottom:1040.160057pt;}
.y5d{bottom:1044.160057pt;}
.y2e{bottom:1045.760056pt;}
.y1{bottom:1055.040062pt;}
.h8{height:43.033043pt;}
.h2{height:47.182089pt;}
.h3{height:47.623043pt;}
.h7{height:52.298382pt;}
.h6{height:52.787152pt;}
.h4{height:56.845885pt;}
.h5{height:59.206730pt;}
.h9{height:89.753015pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:92.160004pt;}
.xd{left:94.559998pt;}
.x15{left:97.599998pt;}
.x12{left:101.760002pt;}
.x5{left:104.000000pt;}
.xf{left:113.440002pt;}
.x1c{left:118.559998pt;}
.x1b{left:123.360001pt;}
.x7{left:140.800003pt;}
.x1e{left:142.559998pt;}
.x6{left:153.440002pt;}
.x1f{left:158.559998pt;}
.x19{left:195.199997pt;}
.x1a{left:204.479996pt;}
.x8{left:210.240005pt;}
.xb{left:216.320007pt;}
.xa{left:222.720001pt;}
.xc{left:225.440002pt;}
.x11{left:231.679993pt;}
.x20{left:237.919998pt;}
.xe{left:253.440002pt;}
.x18{left:263.359985pt;}
.x10{left:272.160004pt;}
.x16{left:286.079987pt;}
.x13{left:294.559998pt;}
.x1d{left:297.279999pt;}
.x9{left:331.839996pt;}
.x4{left:351.839996pt;}
.x14{left:460.959991pt;}
.x17{left:475.200012pt;}
.x2{left:527.039978pt;}
.x1{left:596.000000pt;}
}




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