
    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_53391fad92b4f1d12b76cc3d.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_fa815b853f3633f1ea969587.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_01f5b028f1283d8e2a761ba3.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_46850727d4a2d23d9e98a6bf.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_9b002209ca639e88f04e9331.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_4ecc2cc932719fc0e4f8f01b.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;}
.y3c{bottom:70.514850px;}
.y1b{bottom:71.638725px;}
.y93{bottom:114.326514px;}
.y92{bottom:204.326517px;}
.y1a{bottom:235.348955px;}
.y91{bottom:249.326518px;}
.y3b{bottom:267.974857px;}
.y90{bottom:294.326520px;}
.y8f{bottom:339.326521px;}
.y19{bottom:343.348959px;}
.y3a{bottom:375.974860px;}
.y8e{bottom:384.326523px;}
.y8d{bottom:429.326524px;}
.y8c{bottom:474.326526px;}
.y39{bottom:483.974863px;}
.y8b{bottom:519.326527px;}
.ya1{bottom:533.270567px;}
.y8a{bottom:564.326528px;}
.y18{bottom:591.973967px;}
.y38{bottom:591.974867px;}
.y89{bottom:609.326530px;}
.y88{bottom:654.326531px;}
.ya0{bottom:693.047122px;}
.y87{bottom:699.326533px;}
.y37{bottom:699.599908px;}
.y17{bottom:699.973970px;}
.y86{bottom:744.326534px;}
.y85{bottom:789.326536px;}
.y16{bottom:807.973974px;}
.y84{bottom:834.326537px;}
.y36{bottom:840.599875px;}
.y9f{bottom:852.823902px;}
.y83{bottom:879.326539px;}
.y15{bottom:915.973977px;}
.y82{bottom:924.326540px;}
.y51{bottom:927.096740px;}
.y9e{bottom:935.188756px;}
.y35{bottom:948.599878px;}
.y81{bottom:969.326541px;}
.y50{bottom:1009.221743px;}
.y80{bottom:1014.326543px;}
.y14{bottom:1023.599131px;}
.y34{bottom:1056.599882px;}
.y7f{bottom:1059.326544px;}
.y4f{bottom:1091.346745px;}
.y7e{bottom:1104.326546px;}
.y7d{bottom:1149.326547px;}
.y9d{bottom:1159.769731px;}
.y13{bottom:1164.598985px;}
.y33{bottom:1164.599885px;}
.y4e{bottom:1173.471748px;}
.y7c{bottom:1194.326549px;}
.y7b{bottom:1239.326550px;}
.y9c{bottom:1241.894734px;}
.y4d{bottom:1255.596751px;}
.y12{bottom:1272.598989px;}
.y32{bottom:1272.599889px;}
.y7a{bottom:1284.326552px;}
.y9b{bottom:1324.019737px;}
.y79{bottom:1329.326553px;}
.y78{bottom:1374.326554px;}
.y11{bottom:1380.598992px;}
.y31{bottom:1380.599892px;}
.y77{bottom:1419.326556px;}
.y4c{bottom:1419.846756px;}
.y76{bottom:1464.326557px;}
.y9a{bottom:1488.269742px;}
.y10{bottom:1488.598996px;}
.y30{bottom:1488.599896px;}
.y4b{bottom:1501.971758px;}
.y75{bottom:1509.326559px;}
.y74{bottom:1554.326560px;}
.y99{bottom:1570.394744px;}
.y4a{bottom:1584.096761px;}
.yf{bottom:1596.598999px;}
.y2f{bottom:1596.599899px;}
.y73{bottom:1599.326562px;}
.y72{bottom:1644.326563px;}
.y98{bottom:1652.519747px;}
.y49{bottom:1666.221764px;}
.y71{bottom:1689.326564px;}
.ye{bottom:1704.599002px;}
.y2e{bottom:1704.599902px;}
.y70{bottom:1734.326566px;}
.y6f{bottom:1779.326567px;}
.yd{bottom:1812.224156px;}
.y2d{bottom:1812.224943px;}
.y97{bottom:1820.603741px;}
.y6e{bottom:1824.326569px;}
.y48{bottom:1830.471769px;}
.y6d{bottom:1869.326570px;}
.y47{bottom:1912.596772px;}
.y6c{bottom:1914.326572px;}
.y6b{bottom:1959.326573px;}
.yc{bottom:1963.154161px;}
.y2c{bottom:1963.154836px;}
.y46{bottom:1994.721774px;}
.y6a{bottom:2004.326575px;}
.y69{bottom:2049.326576px;}
.y45{bottom:2076.846777px;}
.yab{bottom:2099.603053px;}
.y68{bottom:2139.326579px;}
.yb{bottom:2144.473792px;}
.y44{bottom:2158.971780px;}
.yaa{bottom:2181.728055px;}
.y67{bottom:2184.326580px;}
.y66{bottom:2229.326582px;}
.ya{bottom:2252.473795px;}
.ya9{bottom:2263.853058px;}
.y65{bottom:2274.326583px;}
.y64{bottom:2319.326585px;}
.y43{bottom:2323.221785px;}
.ya8{bottom:2345.978061px;}
.y9{bottom:2360.473798px;}
.y63{bottom:2364.326586px;}
.y42{bottom:2405.346787px;}
.ya7{bottom:2428.103086px;}
.y62{bottom:2454.326589px;}
.y8{bottom:2468.098839px;}
.y41{bottom:2487.471790px;}
.y61{bottom:2499.326590px;}
.y60{bottom:2544.326592px;}
.y40{bottom:2569.596793px;}
.y5f{bottom:2589.326593px;}
.ya6{bottom:2592.353091px;}
.y5e{bottom:2634.326595px;}
.ya5{bottom:2674.478094px;}
.y5d{bottom:2679.326596px;}
.y5c{bottom:2724.326598px;}
.y3f{bottom:2733.846753px;}
.ya4{bottom:2756.603074px;}
.y2b{bottom:2757.599711px;}
.y5b{bottom:2769.326599px;}
.y5a{bottom:2814.326600px;}
.y3e{bottom:2815.971756px;}
.ya3{bottom:2838.728076px;}
.y2a{bottom:2865.599715px;}
.y59{bottom:2896.136603px;}
.y3d{bottom:2898.096754px;}
.y58{bottom:2919.176609px;}
.ya2{bottom:2920.853083px;}
.y29{bottom:2973.224868px;}
.y28{bottom:3124.154873px;}
.y96{bottom:3290.353221px;}
.y27{bottom:3305.474954px;}
.y57{bottom:3344.756861px;}
.y95{bottom:3412.978247px;}
.y26{bottom:3413.474957px;}
.y56{bottom:3426.881864px;}
.y25{bottom:3521.474961px;}
.y55{bottom:3591.131869px;}
.y24{bottom:3629.100002px;}
.y54{bottom:3673.256872px;}
.y23{bottom:3770.099969px;}
.y53{bottom:3837.506877px;}
.y7{bottom:3874.724972px;}
.y22{bottom:3878.099972px;}
.y52{bottom:3919.631891px;}
.y6{bottom:3982.724975px;}
.y21{bottom:3986.099975px;}
.y5{bottom:4090.349949px;}
.y20{bottom:4093.724949px;}
.y4{bottom:4231.349983px;}
.y1f{bottom:4234.724983px;}
.yad{bottom:4292.193293px;}
.y3{bottom:4339.349987px;}
.y1e{bottom:4342.724987px;}
.yac{bottom:4364.193298px;}
.y2{bottom:4446.974994px;}
.y1d{bottom:4450.349994px;}
.y94{bottom:4484.933413px;}
.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;}
.xf{left:653.358295px;}
.xe{left:659.622149px;}
.xd{left:827.083939px;}
.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;}
.y3c{bottom:62.679867pt;}
.y1b{bottom:63.678867pt;}
.y93{bottom:101.623568pt;}
.y92{bottom:181.623571pt;}
.y1a{bottom:209.199072pt;}
.y91{bottom:221.623572pt;}
.y3b{bottom:238.199872pt;}
.y90{bottom:261.623573pt;}
.y8f{bottom:301.623574pt;}
.y19{bottom:305.199075pt;}
.y3a{bottom:334.199876pt;}
.y8e{bottom:341.623576pt;}
.y8d{bottom:381.623577pt;}
.y8c{bottom:421.623578pt;}
.y39{bottom:430.199879pt;}
.y8b{bottom:461.623580pt;}
.ya1{bottom:474.018282pt;}
.y8a{bottom:501.623581pt;}
.y18{bottom:526.199082pt;}
.y38{bottom:526.199882pt;}
.y89{bottom:541.623582pt;}
.y88{bottom:581.623583pt;}
.ya0{bottom:616.041887pt;}
.y87{bottom:621.623585pt;}
.y37{bottom:621.866585pt;}
.y17{bottom:622.199085pt;}
.y86{bottom:661.623586pt;}
.y85{bottom:701.623587pt;}
.y16{bottom:718.199088pt;}
.y84{bottom:741.623589pt;}
.y36{bottom:747.199889pt;}
.y9f{bottom:758.065691pt;}
.y83{bottom:781.623590pt;}
.y15{bottom:814.199091pt;}
.y82{bottom:821.623591pt;}
.y51{bottom:824.085991pt;}
.y9e{bottom:831.278894pt;}
.y35{bottom:843.199892pt;}
.y81{bottom:861.623592pt;}
.y50{bottom:897.085994pt;}
.y80{bottom:901.623594pt;}
.y14{bottom:909.865894pt;}
.y34{bottom:939.199895pt;}
.y7f{bottom:941.623595pt;}
.y4f{bottom:970.085996pt;}
.y7e{bottom:981.623596pt;}
.y7d{bottom:1021.623598pt;}
.y9d{bottom:1030.906428pt;}
.y13{bottom:1035.199098pt;}
.y33{bottom:1035.199898pt;}
.y4e{bottom:1043.085998pt;}
.y7c{bottom:1061.623599pt;}
.y7b{bottom:1101.623600pt;}
.y9c{bottom:1103.906430pt;}
.y4d{bottom:1116.086001pt;}
.y12{bottom:1131.199101pt;}
.y32{bottom:1131.199901pt;}
.y7a{bottom:1141.623601pt;}
.y9b{bottom:1176.906432pt;}
.y79{bottom:1181.623603pt;}
.y78{bottom:1221.623604pt;}
.y11{bottom:1227.199104pt;}
.y31{bottom:1227.199904pt;}
.y77{bottom:1261.623605pt;}
.y4c{bottom:1262.086005pt;}
.y76{bottom:1301.623606pt;}
.y9a{bottom:1322.906437pt;}
.y10{bottom:1323.199107pt;}
.y30{bottom:1323.199907pt;}
.y4b{bottom:1335.086008pt;}
.y75{bottom:1341.623608pt;}
.y74{bottom:1381.623609pt;}
.y99{bottom:1395.906440pt;}
.y4a{bottom:1408.086010pt;}
.yf{bottom:1419.199110pt;}
.y2f{bottom:1419.199910pt;}
.y73{bottom:1421.623610pt;}
.y72{bottom:1461.623612pt;}
.y98{bottom:1468.906442pt;}
.y49{bottom:1481.086012pt;}
.y71{bottom:1501.623613pt;}
.ye{bottom:1515.199113pt;}
.y2e{bottom:1515.199913pt;}
.y70{bottom:1541.623614pt;}
.y6f{bottom:1581.623615pt;}
.yd{bottom:1610.865916pt;}
.y2d{bottom:1610.866616pt;}
.y97{bottom:1618.314437pt;}
.y6e{bottom:1621.623617pt;}
.y48{bottom:1627.086017pt;}
.y6d{bottom:1661.623618pt;}
.y47{bottom:1700.086019pt;}
.y6c{bottom:1701.623619pt;}
.y6b{bottom:1741.623621pt;}
.yc{bottom:1745.025921pt;}
.y2c{bottom:1745.026521pt;}
.y46{bottom:1773.086022pt;}
.y6a{bottom:1781.623622pt;}
.y69{bottom:1821.623623pt;}
.y45{bottom:1846.086024pt;}
.yab{bottom:1866.313825pt;}
.y68{bottom:1901.623626pt;}
.yb{bottom:1906.198926pt;}
.y44{bottom:1919.086026pt;}
.yaa{bottom:1939.313827pt;}
.y67{bottom:1941.623627pt;}
.y66{bottom:1981.623628pt;}
.ya{bottom:2002.198929pt;}
.ya9{bottom:2012.313829pt;}
.y65{bottom:2021.623630pt;}
.y64{bottom:2061.623631pt;}
.y43{bottom:2065.086031pt;}
.ya8{bottom:2085.313832pt;}
.y9{bottom:2098.198932pt;}
.y63{bottom:2101.623632pt;}
.y42{bottom:2138.086033pt;}
.ya7{bottom:2158.313854pt;}
.y62{bottom:2181.623635pt;}
.y8{bottom:2193.865635pt;}
.y41{bottom:2211.086036pt;}
.y61{bottom:2221.623636pt;}
.y60{bottom:2261.623637pt;}
.y40{bottom:2284.086038pt;}
.y5f{bottom:2301.623638pt;}
.ya6{bottom:2304.313859pt;}
.y5e{bottom:2341.623640pt;}
.ya5{bottom:2377.313861pt;}
.y5d{bottom:2381.623641pt;}
.y5c{bottom:2421.623642pt;}
.y3f{bottom:2430.086003pt;}
.ya4{bottom:2450.313843pt;}
.y2b{bottom:2451.199743pt;}
.y5b{bottom:2461.623644pt;}
.y5a{bottom:2501.623645pt;}
.y3e{bottom:2503.086005pt;}
.ya3{bottom:2523.313846pt;}
.y2a{bottom:2547.199746pt;}
.y59{bottom:2574.343647pt;}
.y3d{bottom:2576.086003pt;}
.y58{bottom:2594.823653pt;}
.ya2{bottom:2596.313852pt;}
.y29{bottom:2642.866549pt;}
.y28{bottom:2777.026554pt;}
.y96{bottom:2924.758418pt;}
.y27{bottom:2938.199959pt;}
.y57{bottom:2973.117210pt;}
.y95{bottom:3033.758442pt;}
.y26{bottom:3034.199962pt;}
.y56{bottom:3046.117212pt;}
.y25{bottom:3130.199965pt;}
.y55{bottom:3192.117217pt;}
.y24{bottom:3225.866668pt;}
.y54{bottom:3265.117219pt;}
.y23{bottom:3351.199972pt;}
.y53{bottom:3411.117224pt;}
.y7{bottom:3444.199975pt;}
.y22{bottom:3447.199975pt;}
.y52{bottom:3484.117236pt;}
.y6{bottom:3540.199978pt;}
.y21{bottom:3543.199978pt;}
.y5{bottom:3635.866621pt;}
.y20{bottom:3638.866621pt;}
.y4{bottom:3761.199985pt;}
.y1f{bottom:3764.199985pt;}
.yad{bottom:3815.282927pt;}
.y3{bottom:3857.199988pt;}
.y1e{bottom:3860.199988pt;}
.yac{bottom:3879.282932pt;}
.y2{bottom:3952.866661pt;}
.y1d{bottom:3955.866661pt;}
.y94{bottom:3986.607478pt;}
.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;}
.xf{left:580.762929pt;}
.xe{left:586.330799pt;}
.xd{left:735.185724pt;}
.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; }
  