
    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_daee74efa224ee19195553c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_75a61de2c3ebb24538789ff4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_ac760af835056db9a36aa6b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022000;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_ad9da4cfb4be65fa738d9a6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022000;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_a55766a1a9a6f070874f166c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_0ce5c8cd75d9fad98bc3b297.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5e61ecf43c9d67c754972b88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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:ff8;src:url('chunks/assets/font_2310606c697ce2aa3b87fa11.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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:ff9;src:url('chunks/assets/font_0be50880b5c59fac961d2cb7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-81.360003px;}
.ws1{word-spacing:-59.328002px;}
.ws7{word-spacing:-51.360000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:441.744314px;}
.ws3{word-spacing:453.408315px;}
.ws2{word-spacing:776.760325px;}
.ws4{word-spacing:1206.623289px;}
.ws6{word-spacing:1218.719289px;}
._9{margin-left:-39.600002px;}
._12{margin-left:-36.456001px;}
._8{margin-left:-33.936001px;}
._5{margin-left:-31.680001px;}
._a{margin-left:-26.472001px;}
._17{margin-left:-23.509771px;}
._b{margin-left:-20.913751px;}
._f{margin-left:-19.440001px;}
._13{margin-left:-13.856970px;}
._e{margin-left:-12.178230px;}
._2{margin-left:-10.800000px;}
._10{margin-left:-9.504001px;}
._3{margin-left:-8.112000px;}
._7{margin-left:-6.490230px;}
._d{margin-left:-5.293770px;}
._0{margin-left:-4.224000px;}
._1{margin-left:-2.616000px;}
._4{margin-left:-1.080000px;}
._6{width:1.816875px;}
._c{width:4.320000px;}
._11{width:6.864780px;}
._15{width:178.103307px;}
._14{width:440.976362px;}
._16{width:654.311271px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,242,204);}
.fc2{color:rgb(7,55,99);}
.fc5{color:rgb(242,242,242);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:6.000000px;}
.fs5{font-size:149.999999px;}
.fsa{font-size:167.999999px;}
.fs9{font-size:216.000007px;}
.fs8{font-size:240.000002px;}
.fs2{font-size:264.000014px;}
.fs3{font-size:288.000009px;}
.fs1{font-size:360.000012px;}
.fs7{font-size:432.000014px;}
.fs0{font-size:528.000029px;}
.fs6{font-size:576.000018px;}
.y0{bottom:0.000000px;}
.yae{bottom:59.808229px;}
.y1b{bottom:65.640225px;}
.y3c{bottom:67.215900px;}
.y93{bottom:114.776739px;}
.y92{bottom:204.776742px;}
.y1a{bottom:229.800005px;}
.y91{bottom:249.776743px;}
.y3b{bottom:264.375419px;}
.y90{bottom:294.776745px;}
.y19{bottom:337.800009px;}
.y8f{bottom:339.776746px;}
.y3a{bottom:372.375422px;}
.y8e{bottom:384.776748px;}
.y8d{bottom:429.776749px;}
.y8c{bottom:474.776751px;}
.y39{bottom:480.375426px;}
.y8b{bottom:519.776752px;}
.ya1{bottom:533.270567px;}
.y8a{bottom:564.776754px;}
.y18{bottom:586.799867px;}
.y38{bottom:588.375429px;}
.y89{bottom:609.776755px;}
.y88{bottom:654.776756px;}
.ya0{bottom:693.047122px;}
.y17{bottom:694.799870px;}
.y37{bottom:696.375433px;}
.y87{bottom:699.776758px;}
.y86{bottom:744.776647px;}
.y85{bottom:789.776648px;}
.y16{bottom:802.799874px;}
.y84{bottom:834.776650px;}
.y36{bottom:837.375287px;}
.y9f{bottom:852.823565px;}
.y83{bottom:879.776651px;}
.y15{bottom:910.799877px;}
.y82{bottom:924.776653px;}
.y51{bottom:927.590728px;}
.y9e{bottom:935.188756px;}
.y35{bottom:945.375291px;}
.y81{bottom:969.776654px;}
.y50{bottom:1009.670843px;}
.y80{bottom:1014.776655px;}
.y14{bottom:1018.799881px;}
.y34{bottom:1053.375294px;}
.y7f{bottom:1059.776657px;}
.y4f{bottom:1091.750958px;}
.y7e{bottom:1104.776658px;}
.y7d{bottom:1149.776660px;}
.y13{bottom:1159.799848px;}
.y9d{bottom:1159.837366px;}
.y33{bottom:1161.375298px;}
.y4e{bottom:1173.830960px;}
.y7c{bottom:1194.776661px;}
.y7b{bottom:1239.776663px;}
.y9c{bottom:1241.917313px;}
.y4d{bottom:1255.911076px;}
.y12{bottom:1267.799851px;}
.y32{bottom:1269.375301px;}
.y7a{bottom:1284.776664px;}
.y9b{bottom:1323.997315px;}
.y79{bottom:1329.776665px;}
.y78{bottom:1374.776667px;}
.y11{bottom:1375.799854px;}
.y31{bottom:1377.375305px;}
.y77{bottom:1419.776668px;}
.y4c{bottom:1420.071306px;}
.y76{bottom:1464.776670px;}
.y10{bottom:1483.799858px;}
.y30{bottom:1485.375308px;}
.y9a{bottom:1488.157208px;}
.y4b{bottom:1502.151421px;}
.y75{bottom:1509.776671px;}
.y74{bottom:1554.776673px;}
.y99{bottom:1570.237166px;}
.y4a{bottom:1584.231424px;}
.yf{bottom:1591.799861px;}
.y2f{bottom:1593.375311px;}
.y73{bottom:1599.776674px;}
.y72{bottom:1644.776676px;}
.y98{bottom:1652.317123px;}
.y49{bottom:1666.311539px;}
.y71{bottom:1689.776677px;}
.ye{bottom:1699.799865px;}
.y2e{bottom:1701.375315px;}
.y70{bottom:1734.776678px;}
.y6f{bottom:1779.776680px;}
.yd{bottom:1807.799868px;}
.y2d{bottom:1809.375318px;}
.y97{bottom:1820.581084px;}
.y6e{bottom:1824.776681px;}
.y48{bottom:1830.471769px;}
.y6d{bottom:1869.776683px;}
.y47{bottom:1912.551715px;}
.y6c{bottom:1914.776684px;}
.yc{bottom:1958.879836px;}
.y6b{bottom:1959.776686px;}
.y2c{bottom:1960.455286px;}
.y46{bottom:1994.631662px;}
.y6a{bottom:2004.776687px;}
.y69{bottom:2049.776689px;}
.y45{bottom:2076.711631px;}
.yab{bottom:2100.053390px;}
.y68{bottom:2139.776691px;}
.yb{bottom:2140.199579px;}
.y44{bottom:2158.791555px;}
.yaa{bottom:2182.133337px;}
.y67{bottom:2184.776693px;}
.y66{bottom:2229.776694px;}
.ya{bottom:2248.199582px;}
.ya9{bottom:2264.213283px;}
.y65{bottom:2274.776696px;}
.y64{bottom:2319.776697px;}
.y43{bottom:2322.951504px;}
.ya8{bottom:2346.293286px;}
.y9{bottom:2356.199586px;}
.y63{bottom:2364.776699px;}
.y42{bottom:2405.031450px;}
.ya7{bottom:2428.373209px;}
.y62{bottom:2454.776724px;}
.y8{bottom:2464.199589px;}
.y41{bottom:2487.111419px;}
.y61{bottom:2499.776725px;}
.y60{bottom:2544.776727px;}
.y40{bottom:2569.191376px;}
.y5f{bottom:2589.776728px;}
.ya6{bottom:2592.533125px;}
.y5e{bottom:2634.776730px;}
.ya5{bottom:2674.613071px;}
.y5d{bottom:2679.776731px;}
.y5c{bottom:2724.776733px;}
.y3f{bottom:2733.351337px;}
.y2b{bottom:2756.174786px;}
.ya4{bottom:2756.693096px;}
.y5b{bottom:2769.776723px;}
.y5a{bottom:2814.776724px;}
.y3e{bottom:2815.431328px;}
.ya3{bottom:2838.773088px;}
.y2a{bottom:2864.174790px;}
.y59{bottom:2896.136727px;}
.y3d{bottom:2897.511319px;}
.y58{bottom:2919.176722px;}
.ya2{bottom:2920.853083px;}
.y29{bottom:2972.174793px;}
.y28{bottom:3123.254985px;}
.y96{bottom:3290.353221px;}
.y27{bottom:3304.574954px;}
.y57{bottom:3344.712007px;}
.y26{bottom:3412.574957px;}
.y95{bottom:3413.473225px;}
.y56{bottom:3426.792010px;}
.y25{bottom:3520.574961px;}
.y55{bottom:3590.951903px;}
.y24{bottom:3628.574964px;}
.y54{bottom:3673.031849px;}
.y23{bottom:3769.574976px;}
.y53{bottom:3837.191776px;}
.y7{bottom:3874.199979px;}
.y22{bottom:3877.574980px;}
.y52{bottom:3919.271733px;}
.y6{bottom:3982.199983px;}
.y21{bottom:3985.574983px;}
.y5{bottom:4090.199986px;}
.y20{bottom:4093.574986px;}
.y4{bottom:4231.200021px;}
.y1f{bottom:4234.575021px;}
.yad{bottom:4292.193293px;}
.y3{bottom:4339.200024px;}
.y1e{bottom:4342.575024px;}
.yac{bottom:4364.193298px;}
.y2{bottom:4447.200005px;}
.y1d{bottom:4450.575005px;}
.y94{bottom:4484.822763px;}
.y1{bottom:4598.279995px;}
.y1c{bottom:4601.654995px;}
.h7{height:3.999024px;}
.h8{height:109.277343px;}
.he{height:142.295999px;}
.hc{height:157.359380px;}
.hb{height:174.843751px;}
.h4{height:182.917979px;}
.hd{height:203.280001px;}
.h5{height:243.936008px;}
.h2{height:249.433602px;}
.h3{height:261.386727px;}
.h6{height:304.920010px;}
.h1{height:365.835958px;}
.ha{height:365.904012px;}
.h9{height:487.872016px;}
.h0{height:4752.000000px;}
.w0{width:4752.000000px;}
.x5{left:-1461.375047px;}
.x6{left:-1244.042196px;}
.x0{left:0.000000px;}
.x7{left:174.109258px;}
.xd{left:300.862922px;}
.xf{left:653.358295px;}
.xe{left:659.622149px;}
.x13{left:1427.235733px;}
.xa{left:1604.541651px;}
.xb{left:1658.541653px;}
.x9{left:1719.176916px;}
.x14{left:1882.080285px;}
.xc{left:2318.414328px;}
.x12{left:3108.303437px;}
.x11{left:3111.678437px;}
.x15{left:3212.441282px;}
.x8{left:3414.534859px;}
.x10{left:3415.786366px;}
.x1{left:4878.000156px;}
.x2{left:4944.717934px;}
.x3{left:4992.596350px;}
.x4{left:5091.958007px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-72.320002pt;}
.ws1{word-spacing:-52.736002pt;}
.ws7{word-spacing:-45.653334pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:392.661613pt;}
.ws3{word-spacing:403.029613pt;}
.ws2{word-spacing:690.453622pt;}
.ws4{word-spacing:1072.554034pt;}
.ws6{word-spacing:1083.306035pt;}
._9{margin-left:-35.200002pt;}
._12{margin-left:-32.405334pt;}
._8{margin-left:-30.165334pt;}
._5{margin-left:-28.160001pt;}
._a{margin-left:-23.530667pt;}
._17{margin-left:-20.897574pt;}
._b{margin-left:-18.590001pt;}
._f{margin-left:-17.280001pt;}
._13{margin-left:-12.317307pt;}
._e{margin-left:-10.825093pt;}
._2{margin-left:-9.600000pt;}
._10{margin-left:-8.448000pt;}
._3{margin-left:-7.210667pt;}
._7{margin-left:-5.769093pt;}
._d{margin-left:-4.705574pt;}
._0{margin-left:-3.754667pt;}
._1{margin-left:-2.325333pt;}
._4{margin-left:-0.960000pt;}
._6{width:1.615000pt;}
._c{width:3.840000pt;}
._11{width:6.102027pt;}
._15{width:158.314050pt;}
._14{width:391.978989pt;}
._16{width:581.610019pt;}
.fs4{font-size:5.333334pt;}
.fs5{font-size:133.333332pt;}
.fsa{font-size:149.333333pt;}
.fs9{font-size:192.000006pt;}
.fs8{font-size:213.333335pt;}
.fs2{font-size:234.666680pt;}
.fs3{font-size:256.000008pt;}
.fs1{font-size:320.000010pt;}
.fs7{font-size:384.000012pt;}
.fs0{font-size:469.333359pt;}
.fs6{font-size:512.000016pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:53.162871pt;}
.y1b{bottom:58.346867pt;}
.y3c{bottom:59.747467pt;}
.y93{bottom:102.023768pt;}
.y92{bottom:182.023771pt;}
.y1a{bottom:204.266671pt;}
.y91{bottom:222.023772pt;}
.y3b{bottom:235.000372pt;}
.y90{bottom:262.023773pt;}
.y19{bottom:300.266674pt;}
.y8f{bottom:302.023774pt;}
.y3a{bottom:331.000375pt;}
.y8e{bottom:342.023776pt;}
.y8d{bottom:382.023777pt;}
.y8c{bottom:422.023778pt;}
.y39{bottom:427.000378pt;}
.y8b{bottom:462.023780pt;}
.ya1{bottom:474.018282pt;}
.y8a{bottom:502.023781pt;}
.y18{bottom:521.599882pt;}
.y38{bottom:523.000382pt;}
.y89{bottom:542.023782pt;}
.y88{bottom:582.023783pt;}
.ya0{bottom:616.041887pt;}
.y17{bottom:617.599885pt;}
.y37{bottom:619.000385pt;}
.y87{bottom:622.023785pt;}
.y86{bottom:662.023686pt;}
.y85{bottom:702.023687pt;}
.y16{bottom:713.599888pt;}
.y84{bottom:742.023689pt;}
.y36{bottom:744.333589pt;}
.y9f{bottom:758.065391pt;}
.y83{bottom:782.023690pt;}
.y15{bottom:809.599891pt;}
.y82{bottom:822.023691pt;}
.y51{bottom:824.525091pt;}
.y9e{bottom:831.278894pt;}
.y35{bottom:840.333592pt;}
.y81{bottom:862.023692pt;}
.y50{bottom:897.485194pt;}
.y80{bottom:902.023694pt;}
.y14{bottom:905.599894pt;}
.y34{bottom:936.333595pt;}
.y7f{bottom:942.023695pt;}
.y4f{bottom:970.445296pt;}
.y7e{bottom:982.023696pt;}
.y7d{bottom:1022.023698pt;}
.y13{bottom:1030.933198pt;}
.y9d{bottom:1030.966548pt;}
.y33{bottom:1032.333598pt;}
.y4e{bottom:1043.405298pt;}
.y7c{bottom:1062.023699pt;}
.y7b{bottom:1102.023700pt;}
.y9c{bottom:1103.926500pt;}
.y4d{bottom:1116.365401pt;}
.y12{bottom:1126.933201pt;}
.y32{bottom:1128.333601pt;}
.y7a{bottom:1142.023701pt;}
.y9b{bottom:1176.886502pt;}
.y79{bottom:1182.023703pt;}
.y78{bottom:1222.023704pt;}
.y11{bottom:1222.933204pt;}
.y31{bottom:1224.333604pt;}
.y77{bottom:1262.023705pt;}
.y4c{bottom:1262.285605pt;}
.y76{bottom:1302.023706pt;}
.y10{bottom:1318.933207pt;}
.y30{bottom:1320.333607pt;}
.y9a{bottom:1322.806407pt;}
.y4b{bottom:1335.245708pt;}
.y75{bottom:1342.023708pt;}
.y74{bottom:1382.023709pt;}
.y99{bottom:1395.766369pt;}
.y4a{bottom:1408.205710pt;}
.yf{bottom:1414.933210pt;}
.y2f{bottom:1416.333610pt;}
.y73{bottom:1422.023710pt;}
.y72{bottom:1462.023712pt;}
.y98{bottom:1468.726332pt;}
.y49{bottom:1481.165812pt;}
.y71{bottom:1502.023713pt;}
.ye{bottom:1510.933213pt;}
.y2e{bottom:1512.333613pt;}
.y70{bottom:1542.023714pt;}
.y6f{bottom:1582.023715pt;}
.yd{bottom:1606.933216pt;}
.y2d{bottom:1608.333616pt;}
.y97{bottom:1618.294297pt;}
.y6e{bottom:1622.023717pt;}
.y48{bottom:1627.086017pt;}
.y6d{bottom:1662.023718pt;}
.y47{bottom:1700.045969pt;}
.y6c{bottom:1702.023719pt;}
.yc{bottom:1741.226521pt;}
.y6b{bottom:1742.023721pt;}
.y2c{bottom:1742.626921pt;}
.y46{bottom:1773.005922pt;}
.y6a{bottom:1782.023722pt;}
.y69{bottom:1822.023723pt;}
.y45{bottom:1845.965894pt;}
.yab{bottom:1866.714125pt;}
.y68{bottom:1902.023726pt;}
.yb{bottom:1902.399626pt;}
.y44{bottom:1918.925826pt;}
.yaa{bottom:1939.674077pt;}
.y67{bottom:1942.023727pt;}
.y66{bottom:1982.023728pt;}
.ya{bottom:1998.399629pt;}
.ya9{bottom:2012.634029pt;}
.y65{bottom:2022.023730pt;}
.y64{bottom:2062.023731pt;}
.y43{bottom:2064.845781pt;}
.ya8{bottom:2085.594032pt;}
.y9{bottom:2094.399632pt;}
.y63{bottom:2102.023732pt;}
.y42{bottom:2137.805733pt;}
.ya7{bottom:2158.553964pt;}
.y62{bottom:2182.023755pt;}
.y8{bottom:2190.399635pt;}
.y41{bottom:2210.765706pt;}
.y61{bottom:2222.023756pt;}
.y60{bottom:2262.023757pt;}
.y40{bottom:2283.725668pt;}
.y5f{bottom:2302.023758pt;}
.ya6{bottom:2304.473889pt;}
.y5e{bottom:2342.023760pt;}
.ya5{bottom:2377.433841pt;}
.y5d{bottom:2382.023761pt;}
.y5c{bottom:2422.023762pt;}
.y3f{bottom:2429.645633pt;}
.y2b{bottom:2449.933143pt;}
.ya4{bottom:2450.393863pt;}
.y5b{bottom:2462.023754pt;}
.y5a{bottom:2502.023755pt;}
.y3e{bottom:2502.605625pt;}
.ya3{bottom:2523.353856pt;}
.y2a{bottom:2545.933146pt;}
.y59{bottom:2574.343757pt;}
.y3d{bottom:2575.565617pt;}
.y58{bottom:2594.823753pt;}
.ya2{bottom:2596.313852pt;}
.y29{bottom:2641.933149pt;}
.y28{bottom:2776.226654pt;}
.y96{bottom:2924.758418pt;}
.y27{bottom:2937.399959pt;}
.y57{bottom:2973.077340pt;}
.y26{bottom:3033.399962pt;}
.y95{bottom:3034.198422pt;}
.y56{bottom:3046.037342pt;}
.y25{bottom:3129.399965pt;}
.y55{bottom:3191.957247pt;}
.y24{bottom:3225.399968pt;}
.y54{bottom:3264.917199pt;}
.y23{bottom:3350.733312pt;}
.y53{bottom:3410.837134pt;}
.y7{bottom:3443.733315pt;}
.y22{bottom:3446.733315pt;}
.y52{bottom:3483.797096pt;}
.y6{bottom:3539.733318pt;}
.y21{bottom:3542.733318pt;}
.y5{bottom:3635.733321pt;}
.y20{bottom:3638.733321pt;}
.y4{bottom:3761.066685pt;}
.y1f{bottom:3764.066685pt;}
.yad{bottom:3815.282927pt;}
.y3{bottom:3857.066688pt;}
.y1e{bottom:3860.066688pt;}
.yac{bottom:3879.282932pt;}
.y2{bottom:3953.066671pt;}
.y1d{bottom:3956.066671pt;}
.y94{bottom:3986.509122pt;}
.y1{bottom:4087.359996pt;}
.y1c{bottom:4090.359996pt;}
.h7{height:3.554688pt;}
.h8{height:97.135416pt;}
.he{height:126.485333pt;}
.hc{height:139.875004pt;}
.hb{height:155.416668pt;}
.h4{height:162.593759pt;}
.hd{height:180.693335pt;}
.h5{height:216.832007pt;}
.h2{height:221.718757pt;}
.h3{height:232.343757pt;}
.h6{height:271.040009pt;}
.h1{height:325.187518pt;}
.ha{height:325.248010pt;}
.h9{height:433.664014pt;}
.h0{height:4224.000000pt;}
.w0{width:4224.000000pt;}
.x5{left:-1299.000042pt;}
.x6{left:-1105.815285pt;}
.x0{left:0.000000pt;}
.x7{left:154.763785pt;}
.xd{left:267.433709pt;}
.xf{left:580.762929pt;}
.xe{left:586.330799pt;}
.x13{left:1268.653985pt;}
.xa{left:1426.259246pt;}
.xb{left:1474.259247pt;}
.x9{left:1528.157259pt;}
.x14{left:1672.960254pt;}
.xc{left:2060.812736pt;}
.x12{left:2762.936388pt;}
.x11{left:2765.936389pt;}
.x15{left:2855.503361pt;}
.x8{left:3035.142097pt;}
.x10{left:3036.254547pt;}
.x1{left:4336.000139pt;}
.x2{left:4395.304831pt;}
.x3{left:4437.863422pt;}
.x4{left:4526.184895pt;}
}




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