
    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_6fbde2a7f038e250204968af.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_3680f07f04b59030306318bd.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_a032ebd9f7deca6c3bac9e2a.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_1f871f3cc42a66562c4850d9.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_0d37966523ae3808124e6022.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_99573e820472c30f82128164.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1c0286370192139aa2de00ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.867676;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;}
.m1{transform:matrix(0.236542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236542,0.000000,0.000000,0.250000,0,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);}
.m2{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.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:0.719113px;}
.ls7{letter-spacing:1.439132px;}
.ls6{letter-spacing:2.425459px;}
.ls4{letter-spacing:3.611657px;}
.ls3{letter-spacing:13.679131px;}
.ls8{letter-spacing:15.119095px;}
.ls5{letter-spacing:28.900201px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws5{word-spacing:-27.372557px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-22.920668px;}
._5{margin-left:-11.691994px;}
._7{margin-left:-9.844692px;}
._b{margin-left:-7.885398px;}
._1{margin-left:-6.843204px;}
._4{margin-left:-5.607626px;}
._6{margin-left:-4.002231px;}
._2{margin-left:-2.566297px;}
._3{margin-left:-1.235293px;}
._0{width:1.048595px;}
._8{width:2.281068px;}
._9{width:3.418592px;}
._12{width:4.942267px;}
._11{width:6.228697px;}
._10{width:7.602745px;}
._f{width:9.083577px;}
._14{width:10.134348px;}
._13{width:11.215887px;}
._e{width:13.185924px;}
._a{width:14.256580px;}
._d{width:16.149867px;}
._15{width:17.202618px;}
._20{width:18.580051px;}
._1f{width:19.649522px;}
._16{width:21.232221px;}
._1b{width:22.827729px;}
._1e{width:26.542948px;}
._23{width:28.055137px;}
._1c{width:31.444269px;}
._26{width:32.876779px;}
._22{width:36.534719px;}
._21{width:38.280472px;}
._1d{width:39.918388px;}
._19{width:52.347716px;}
._18{width:56.788659px;}
._1a{width:61.297672px;}
._24{width:256.670663px;}
._25{width:313.643880px;}
._c{width:1695.568988px;}
.fc3{color:rgb(69,109,174);}
.fc2{color:rgb(192,25,19);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs5{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs4{font-size:79.204500px;}
.fs3{font-size:94.961664px;}
.fs7{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y16{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y31{bottom:41.040115px;}
.y6b{bottom:99.180039px;}
.ya2{bottom:100.260132px;}
.y3c{bottom:121.320099px;}
.y91{bottom:124.560036px;}
.y6a{bottom:127.800041px;}
.y3b{bottom:149.940033px;}
.y5b{bottom:150.300041px;}
.y7b{bottom:152.640060px;}
.y90{bottom:153.000068px;}
.y69{bottom:156.240074px;}
.ya1{bottom:157.320099px;}
.y3a{bottom:178.560036px;}
.y30{bottom:178.920043px;}
.y8f{bottom:181.620072px;}
.ya0{bottom:185.760064px;}
.y4a{bottom:207.000068px;}
.y5a{bottom:207.360077px;}
.y14{bottom:207.360150px;}
.y7a{bottom:209.700096px;}
.y49{bottom:235.620072px;}
.y2f{bottom:235.980079px;}
.y13{bottom:235.980150px;}
.y79{bottom:238.320099px;}
.y8e{bottom:238.680039px;}
.y68{bottom:241.920043px;}
.y48{bottom:264.060036px;}
.y59{bottom:264.420043px;}
.y81{bottom:266.760064px;}
.y67{bottom:270.360077px;}
.y9f{bottom:271.440033px;}
.y54{bottom:292.680039px;}
.y2e{bottom:293.040047px;}
.y12{bottom:293.040150px;}
.y78{bottom:295.380066px;}
.y53{bottom:321.120072px;}
.y2d{bottom:321.480079px;}
.y11{bottom:321.480150px;}
.y39{bottom:349.740074px;}
.y2c{bottom:350.100083px;}
.y77{bottom:352.440033px;}
.y47{bottom:378.180039px;}
.y2b{bottom:378.540047px;}
.y8d{bottom:381.240074px;}
.y66{bottom:384.480079px;}
.y46{bottom:406.800041px;}
.y10{bottom:407.160000px;}
.y2a{bottom:407.160049px;}
.y8c{bottom:409.860077px;}
.y9e{bottom:413.280052px;}
.y38{bottom:435.240074px;}
.y8b{bottom:438.300041px;}
.y9d{bottom:441.720085px;}
.y45{bottom:463.860077px;}
.y29{bottom:464.220085px;}
.y9c{bottom:469.980079px;}
.y37{bottom:492.300041px;}
.y28{bottom:492.660049px;}
.y80{bottom:495.000068px;}
.y9b{bottom:498.420043px;}
.y52{bottom:520.920043px;}
.yf{bottom:521.280000px;}
.y27{bottom:521.280052px;}
.y7f{bottom:523.620072px;}
.y8a{bottom:523.980079px;}
.y9a{bottom:526.680039px;}
.y65{bottom:527.220085px;}
.y4f{bottom:549.360077px;}
.y58{bottom:549.720085px;}
.y99{bottom:554.940033px;}
.y51{bottom:577.980079px;}
.y26{bottom:578.340088px;}
.y89{bottom:581.040047px;}
.y98{bottom:583.380066px;}
.y4e{bottom:606.420043px;}
.y57{bottom:606.780052px;}
.y7e{bottom:609.120072px;}
.y44{bottom:635.040047px;}
.y7d{bottom:637.740074px;}
.y97{bottom:640.080093px;}
.y64{bottom:641.340088px;}
.y43{bottom:663.480079px;}
.y25{bottom:663.840088px;}
.ye{bottom:663.840150px;}
.y96{bottom:668.340088px;}
.y36{bottom:692.100083px;}
.y24{bottom:692.460056px;}
.y4d{bottom:720.540081px;}
.y56{bottom:720.900055px;}
.y76{bottom:723.240074px;}
.y63{bottom:726.660049px;}
.y35{bottom:749.160049px;}
.yd{bottom:749.520000px;}
.y23{bottom:749.520058px;}
.y75{bottom:751.860077px;}
.y88{bottom:752.220051px;}
.y95{bottom:753.300076px;}
.y4c{bottom:777.600083px;}
.y22{bottom:777.960056px;}
.y42{bottom:806.220051px;}
.y21{bottom:806.580059px;}
.y41{bottom:834.660049px;}
.yc{bottom:835.020000px;}
.y20{bottom:835.020058px;}
.y74{bottom:837.360077px;}
.y87{bottom:837.720051px;}
.y62{bottom:839.160049px;}
.y34{bottom:863.280052px;}
.yb{bottom:863.640000px;}
.y1f{bottom:863.640060px;}
.y73{bottom:865.980079px;}
.y86{bottom:866.340054px;}
.y61{bottom:867.240074px;}
.y40{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y1e{bottom:892.080059px;}
.y7c{bottom:894.420078px;}
.y94{bottom:895.140060px;}
.y60{bottom:895.320065px;}
.y33{bottom:920.340054px;}
.y1d{bottom:920.700061px;}
.y9{bottom:920.704200px;}
.y72{bottom:923.040081px;}
.y85{bottom:923.400055px;}
.y32{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y1c{bottom:949.140060px;}
.y71{bottom:951.480079px;}
.ya3{bottom:977.400072px;}
.y1b{bottom:977.760064px;}
.y70{bottom:980.100065px;}
.y4b{bottom:1005.840070px;}
.y7{bottom:1006.200000px;}
.y1a{bottom:1006.200061px;}
.y6f{bottom:1008.540064px;}
.y3f{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y5f{bottom:1036.080059px;}
.y93{bottom:1037.160067px;}
.y84{bottom:1037.520058px;}
.y3e{bottom:1062.900072px;}
.y19{bottom:1063.260064px;}
.y5e{bottom:1064.160067px;}
.y6e{bottom:1065.600065px;}
.y83{bottom:1065.960074px;}
.y15{bottom:1070.460150px;}
.y50{bottom:1091.520058px;}
.y5{bottom:1091.880000px;}
.y55{bottom:1091.880066px;}
.y5d{bottom:1092.240074px;}
.y92{bottom:1094.220068px;}
.y3d{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y18{bottom:1120.320065px;}
.y6d{bottom:1122.660067px;}
.y5c{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y17{bottom:1148.940067px;}
.y6c{bottom:1151.280069px;}
.y82{bottom:1151.640069px;}
.h7{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.h9{height:64.414315px;}
.ha{height:65.992187px;}
.h8{height:67.837080px;}
.hf{height:69.496123px;}
.h10{height:70.346938px;}
.h6{height:83.323296px;}
.hc{height:83.395190px;}
.h5{height:83.395980px;}
.hb{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;}
.xd{left:140.939999px;}
.x1d{left:159.120002px;}
.x12{left:174.240006px;}
.x3{left:181.980000px;}
.x5{left:192.240000px;}
.x15{left:216.180005px;}
.x10{left:224.639992px;}
.x6{left:235.980000px;}
.x7{left:237.780000px;}
.xc{left:257.580000px;}
.x14{left:266.759994px;}
.x9{left:268.020000px;}
.x18{left:314.459988px;}
.x8{left:320.580000px;}
.xa{left:322.200000px;}
.x4{left:329.400000px;}
.x1a{left:342.720017px;}
.x13{left:365.040012px;}
.xb{left:369.000000px;}
.x1e{left:382.319996px;}
.xf{left:385.379998px;}
.x1c{left:393.120002px;}
.xe{left:410.939999px;}
.x20{left:446.579990px;}
.x17{left:466.560001px;}
.x1{left:532.800000px;}
.x11{left:599.039978px;}
.x16{left:640.980011px;}
.x1f{left:671.580025px;}
.x21{left:700.019989px;}
.x19{left:752.759994px;}
.x1b{left:803.159981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:0.639212pt;}
.ls7{letter-spacing:1.279228pt;}
.ls6{letter-spacing:2.155964pt;}
.ls4{letter-spacing:3.210362pt;}
.ls3{letter-spacing:12.159228pt;}
.ls8{letter-spacing:13.439196pt;}
.ls5{letter-spacing:25.689067pt;}
.ws1{word-spacing:-70.404000pt;}
.ws5{word-spacing:-24.331162pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-20.373927pt;}
._5{margin-left:-10.392884pt;}
._7{margin-left:-8.750838pt;}
._b{margin-left:-7.009243pt;}
._1{margin-left:-6.082848pt;}
._4{margin-left:-4.984556pt;}
._6{margin-left:-3.557539pt;}
._2{margin-left:-2.281152pt;}
._3{margin-left:-1.098039pt;}
._0{width:0.932084pt;}
._8{width:2.027616pt;}
._9{width:3.038748pt;}
._12{width:4.393126pt;}
._11{width:5.536620pt;}
._10{width:6.757996pt;}
._f{width:8.074291pt;}
._14{width:9.008309pt;}
._13{width:9.969678pt;}
._e{width:11.720821pt;}
._a{width:12.672516pt;}
._d{width:14.355437pt;}
._15{width:15.291216pt;}
._20{width:16.515601pt;}
._1f{width:17.466242pt;}
._16{width:18.873085pt;}
._1b{width:20.291315pt;}
._1e{width:23.593732pt;}
._23{width:24.937900pt;}
._1c{width:27.950462pt;}
._26{width:29.223803pt;}
._22{width:32.475306pt;}
._21{width:34.027086pt;}
._1d{width:35.483011pt;}
._19{width:46.531303pt;}
._18{width:50.478808pt;}
._1a{width:54.486819pt;}
._24{width:228.151700pt;}
._25{width:278.794560pt;}
._c{width:1507.172434pt;}
.fs6{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs5{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs4{font-size:70.404000pt;}
.fs3{font-size:84.410368pt;}
.fs7{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y16{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y31{bottom:36.480103pt;}
.y6b{bottom:88.160035pt;}
.ya2{bottom:89.120118pt;}
.y3c{bottom:107.840088pt;}
.y91{bottom:110.720032pt;}
.y6a{bottom:113.600037pt;}
.y3b{bottom:133.280030pt;}
.y5b{bottom:133.600037pt;}
.y7b{bottom:135.680054pt;}
.y90{bottom:136.000061pt;}
.y69{bottom:138.880066pt;}
.ya1{bottom:139.840088pt;}
.y3a{bottom:158.720032pt;}
.y30{bottom:159.040039pt;}
.y8f{bottom:161.440064pt;}
.ya0{bottom:165.120057pt;}
.y4a{bottom:184.000061pt;}
.y5a{bottom:184.320069pt;}
.y14{bottom:184.320133pt;}
.y7a{bottom:186.400086pt;}
.y49{bottom:209.440064pt;}
.y2f{bottom:209.760071pt;}
.y13{bottom:209.760133pt;}
.y79{bottom:211.840088pt;}
.y8e{bottom:212.160035pt;}
.y68{bottom:215.040039pt;}
.y48{bottom:234.720032pt;}
.y59{bottom:235.040039pt;}
.y81{bottom:237.120057pt;}
.y67{bottom:240.320069pt;}
.y9f{bottom:241.280030pt;}
.y54{bottom:260.160035pt;}
.y2e{bottom:260.480042pt;}
.y12{bottom:260.480133pt;}
.y78{bottom:262.560059pt;}
.y53{bottom:285.440064pt;}
.y2d{bottom:285.760071pt;}
.y11{bottom:285.760133pt;}
.y39{bottom:310.880066pt;}
.y2c{bottom:311.200074pt;}
.y77{bottom:313.280030pt;}
.y47{bottom:336.160035pt;}
.y2b{bottom:336.480042pt;}
.y8d{bottom:338.880066pt;}
.y66{bottom:341.760071pt;}
.y46{bottom:361.600037pt;}
.y10{bottom:361.920000pt;}
.y2a{bottom:361.920044pt;}
.y8c{bottom:364.320069pt;}
.y9e{bottom:367.360047pt;}
.y38{bottom:386.880066pt;}
.y8b{bottom:389.600037pt;}
.y9d{bottom:392.640076pt;}
.y45{bottom:412.320069pt;}
.y29{bottom:412.640076pt;}
.y9c{bottom:417.760071pt;}
.y37{bottom:437.600037pt;}
.y28{bottom:437.920044pt;}
.y80{bottom:440.000061pt;}
.y9b{bottom:443.040039pt;}
.y52{bottom:463.040039pt;}
.yf{bottom:463.360000pt;}
.y27{bottom:463.360047pt;}
.y7f{bottom:465.440064pt;}
.y8a{bottom:465.760071pt;}
.y9a{bottom:468.160035pt;}
.y65{bottom:468.640076pt;}
.y4f{bottom:488.320069pt;}
.y58{bottom:488.640076pt;}
.y99{bottom:493.280030pt;}
.y51{bottom:513.760071pt;}
.y26{bottom:514.080079pt;}
.y89{bottom:516.480042pt;}
.y98{bottom:518.560059pt;}
.y4e{bottom:539.040039pt;}
.y57{bottom:539.360047pt;}
.y7e{bottom:541.440064pt;}
.y44{bottom:564.480042pt;}
.y7d{bottom:566.880066pt;}
.y97{bottom:568.960083pt;}
.y64{bottom:570.080079pt;}
.y43{bottom:589.760071pt;}
.y25{bottom:590.080079pt;}
.ye{bottom:590.080133pt;}
.y96{bottom:594.080079pt;}
.y36{bottom:615.200074pt;}
.y24{bottom:615.520050pt;}
.y4d{bottom:640.480072pt;}
.y56{bottom:640.800049pt;}
.y76{bottom:642.880066pt;}
.y63{bottom:645.920044pt;}
.y35{bottom:665.920044pt;}
.yd{bottom:666.240000pt;}
.y23{bottom:666.240052pt;}
.y75{bottom:668.320069pt;}
.y88{bottom:668.640046pt;}
.y95{bottom:669.600068pt;}
.y4c{bottom:691.200074pt;}
.y22{bottom:691.520050pt;}
.y42{bottom:716.640046pt;}
.y21{bottom:716.960053pt;}
.y41{bottom:741.920044pt;}
.yc{bottom:742.240000pt;}
.y20{bottom:742.240052pt;}
.y74{bottom:744.320069pt;}
.y87{bottom:744.640046pt;}
.y62{bottom:745.920044pt;}
.y34{bottom:767.360047pt;}
.yb{bottom:767.680000pt;}
.y1f{bottom:767.680054pt;}
.y73{bottom:769.760071pt;}
.y86{bottom:770.080048pt;}
.y61{bottom:770.880066pt;}
.y40{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y1e{bottom:792.960053pt;}
.y7c{bottom:795.040070pt;}
.y94{bottom:795.680054pt;}
.y60{bottom:795.840058pt;}
.y33{bottom:818.080048pt;}
.y1d{bottom:818.400055pt;}
.y9{bottom:818.403733pt;}
.y72{bottom:820.480072pt;}
.y85{bottom:820.800049pt;}
.y32{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y1c{bottom:843.680054pt;}
.y71{bottom:845.760071pt;}
.ya3{bottom:868.800064pt;}
.y1b{bottom:869.120057pt;}
.y70{bottom:871.200058pt;}
.y4b{bottom:894.080063pt;}
.y7{bottom:894.400000pt;}
.y1a{bottom:894.400055pt;}
.y6f{bottom:896.480057pt;}
.y3f{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y5f{bottom:920.960053pt;}
.y93{bottom:921.920060pt;}
.y84{bottom:922.240052pt;}
.y3e{bottom:944.800064pt;}
.y19{bottom:945.120057pt;}
.y5e{bottom:945.920060pt;}
.y6e{bottom:947.200058pt;}
.y83{bottom:947.520066pt;}
.y15{bottom:951.520133pt;}
.y50{bottom:970.240052pt;}
.y5{bottom:970.560000pt;}
.y55{bottom:970.560059pt;}
.y5d{bottom:970.880066pt;}
.y92{bottom:972.640061pt;}
.y3d{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y18{bottom:995.840058pt;}
.y6d{bottom:997.920060pt;}
.y5c{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y17{bottom:1021.280060pt;}
.y6c{bottom:1023.360062pt;}
.y82{bottom:1023.680062pt;}
.h7{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.h9{height:57.257169pt;}
.ha{height:58.659722pt;}
.h8{height:60.299627pt;}
.hf{height:61.774332pt;}
.h10{height:62.530612pt;}
.h6{height:74.065152pt;}
.hc{height:74.129058pt;}
.h5{height:74.129760pt;}
.hb{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;}
.xd{left:125.279999pt;}
.x1d{left:141.440002pt;}
.x12{left:154.880005pt;}
.x3{left:161.760000pt;}
.x5{left:170.880000pt;}
.x15{left:192.160004pt;}
.x10{left:199.679993pt;}
.x6{left:209.760000pt;}
.x7{left:211.360000pt;}
.xc{left:228.960000pt;}
.x14{left:237.119995pt;}
.x9{left:238.240000pt;}
.x18{left:279.519989pt;}
.x8{left:284.960000pt;}
.xa{left:286.400000pt;}
.x4{left:292.800000pt;}
.x1a{left:304.640015pt;}
.x13{left:324.480011pt;}
.xb{left:328.000000pt;}
.x1e{left:339.839996pt;}
.xf{left:342.559998pt;}
.x1c{left:349.440002pt;}
.xe{left:365.279999pt;}
.x20{left:396.959991pt;}
.x17{left:414.720001pt;}
.x1{left:473.600000pt;}
.x11{left:532.479980pt;}
.x16{left:569.760010pt;}
.x1f{left:596.960022pt;}
.x21{left:622.239990pt;}
.x19{left:669.119995pt;}
.x1b{left:713.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; }
  