
    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_9104f9cf413c8a6a048dbc6a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_319eb27dbb9b7176faf9c5ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_afced36d0140b16781d5d775.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_3882719f8cda26bec25620b4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_f21a8ad8e1a3136c53d15a5d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_aae77f2366132e0be395c92c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_4a65627fc21c9f7c4c2db41c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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:ffa;src:url('chunks/assets/font_05ad44f30a27bb995ed3ce98.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d92a1ba65241a55c2d04943a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_6edf2635ee6257ca9bb939e4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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:ffd;src:url('chunks/assets/font_fc8236a00acf8788e95af409.woff')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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);}
.m1{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;}
.lsd{letter-spacing:-0.428400px;}
.ls14{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.183600px;}
.ls17{letter-spacing:-0.114000px;}
.ls11{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.034560px;}
.ls1{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.181440px;}
.ls2{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.249600px;}
.lsb{letter-spacing:0.291600px;}
.ls16{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.435600px;}
.lsa{letter-spacing:0.540000px;}
.ls5{letter-spacing:1.260000px;}
.lsf{letter-spacing:9.900000px;}
.lse{letter-spacing:36.540000px;}
.ls12{letter-spacing:41.381280px;}
.ls15{letter-spacing:83.861280px;}
.ls7{letter-spacing:179.226720px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.351600px;}
.ws3{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.946000px;}
.ws8{word-spacing:-20.700000px;}
.ws6{word-spacing:-19.976160px;}
.ws0{word-spacing:-19.542960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-5.873040px;}
._d{margin-left:-4.404240px;}
._c{margin-left:-3.369600px;}
._13{margin-left:-2.285280px;}
._3{margin-left:-1.155600px;}
._2{width:1.436400px;}
._12{width:2.966400px;}
._14{width:4.380480px;}
._a{width:5.728320px;}
._15{width:7.335600px;}
._1a{width:8.508240px;}
._1b{width:10.085040px;}
._2e{width:11.203920px;}
._22{width:12.534480px;}
._1f{width:13.983840px;}
._32{width:14.988480px;}
._9{width:16.011840px;}
._8{width:17.076960px;}
._24{width:18.195840px;}
._27{width:19.887120px;}
._5{width:22.889520px;}
._4{width:24.176880px;}
._b{width:25.922160px;}
._16{width:27.522720px;}
._2c{width:28.749600px;}
._7{width:29.760480px;}
._6{width:30.976560px;}
._48{width:32.011200px;}
._26{width:33.082560px;}
._25{width:34.285680px;}
._2a{width:35.609760px;}
._2b{width:37.091520px;}
._23{width:38.979360px;}
._1e{width:40.754880px;}
._1d{width:41.912400px;}
._4d{width:43.251120px;}
._47{width:44.478720px;}
._37{width:45.971280px;}
._1c{width:47.234880px;}
._20{width:48.323520px;}
._21{width:49.454880px;}
._17{width:51.615360px;}
._19{width:52.650000px;}
._29{width:54.179280px;}
._28{width:55.345680px;}
._49{width:56.676240px;}
._18{width:58.270320px;}
._31{width:61.158240px;}
._2d{width:62.590320px;}
._2f{width:63.853920px;}
._3d{width:66.633840px;}
._f{width:67.873680px;}
._36{width:69.107280px;}
._44{width:77.645520px;}
._40{width:78.764400px;}
._41{width:79.930800px;}
._50{width:81.124560px;}
._3e{width:88.899840px;}
._30{width:90.844320px;}
._11{width:92.640240px;}
._10{width:93.735360px;}
._42{width:94.905840px;}
._43{width:96.420240px;}
._3b{width:100.296480px;}
._3c{width:101.726160px;}
._4c{width:103.556160px;}
._38{width:108.657840px;}
._3f{width:112.268160px;}
._39{width:114.049440px;}
._3a{width:115.408800px;}
._4e{width:131.498640px;}
._4f{width:133.061520px;}
._45{width:134.429760px;}
._46{width:138.298320px;}
._34{width:146.162640px;}
._4b{width:154.327680px;}
._33{width:155.399040px;}
._51{width:205.014240px;}
._52{width:206.452800px;}
._35{width:239.999760px;}
._0{width:292.222560px;}
._4a{width:1167.650640px;}
._1{width:1605.106560px;}
.fc8{color:rgb(32,35,46);}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(51,51,204);}
.fc7{color:rgb(49,55,68);}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.475850px;}
.y5{bottom:31.176000px;}
.y2b{bottom:90.936000px;}
.y2e{bottom:111.816000px;}
.y2a{bottom:118.656000px;}
.y2d{bottom:139.536000px;}
.y29{bottom:146.376000px;}
.y2c{bottom:167.430000px;}
.y28{bottom:195.150000px;}
.y27{bottom:222.870000px;}
.y26{bottom:250.770000px;}
.y25{bottom:278.490000px;}
.y24{bottom:306.255000px;}
.y23{bottom:333.975000px;}
.y22{bottom:361.875000px;}
.y21{bottom:389.595000px;}
.y20{bottom:417.315000px;}
.y1f{bottom:445.215000px;}
.y1e{bottom:472.935000px;}
.y1d{bottom:500.655000px;}
.y1c{bottom:528.375000px;}
.y1b{bottom:556.275000px;}
.y1a{bottom:584.025000px;}
.y19{bottom:611.745000px;}
.y18{bottom:639.645000px;}
.y17{bottom:667.365000px;}
.y16{bottom:695.085000px;}
.y15{bottom:722.805000px;}
.y14{bottom:750.705000px;}
.y13{bottom:778.425000px;}
.y12{bottom:806.145000px;}
.y11{bottom:833.865000px;}
.y10{bottom:861.810000px;}
.yf{bottom:889.530000px;}
.ye{bottom:917.250000px;}
.yd{bottom:945.150000px;}
.yc{bottom:972.870000px;}
.yb{bottom:1000.590000px;}
.ya{bottom:1028.310000px;}
.y9{bottom:1056.210000px;}
.y8{bottom:1083.930000px;}
.y7{bottom:1111.650000px;}
.y4{bottom:1135.800000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:59.066719px;}
.h8{height:59.436914px;}
.hc{height:61.423863px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:86.115234px;}
.hd{height:86.585445px;}
.h3{height:95.874961px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.x1{left:106.415987px;}
.xf{left:115.775987px;}
.x6{left:121.715987px;}
.x7{left:151.589987px;}
.xa{left:231.509987px;}
.x11{left:267.509987px;}
.x10{left:269.849987px;}
.x9{left:273.989987px;}
.xb{left:319.394987px;}
.xc{left:372.314987px;}
.xe{left:395.354987px;}
.x8{left:446.474987px;}
.xd{left:478.184987px;}
.x2{left:508.964987px;}
.x3{left:632.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.380800pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.163200pt;}
.ls17{letter-spacing:-0.101333pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.030720pt;}
.ls1{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.161280pt;}
.ls2{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.221867pt;}
.lsb{letter-spacing:0.259200pt;}
.ls16{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.387200pt;}
.lsa{letter-spacing:0.480000pt;}
.ls5{letter-spacing:1.120000pt;}
.lsf{letter-spacing:8.800000pt;}
.lse{letter-spacing:32.480000pt;}
.ls12{letter-spacing:36.783360pt;}
.ls15{letter-spacing:74.543360pt;}
.ls7{letter-spacing:159.312640pt;}
.ws7{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.979200pt;}
.ws3{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.618667pt;}
.ws8{word-spacing:-18.400000pt;}
.ws6{word-spacing:-17.756587pt;}
.ws0{word-spacing:-17.371520pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-5.220480pt;}
._d{margin-left:-3.914880pt;}
._c{margin-left:-2.995200pt;}
._13{margin-left:-2.031360pt;}
._3{margin-left:-1.027200pt;}
._2{width:1.276800pt;}
._12{width:2.636800pt;}
._14{width:3.893760pt;}
._a{width:5.091840pt;}
._15{width:6.520533pt;}
._1a{width:7.562880pt;}
._1b{width:8.964480pt;}
._2e{width:9.959040pt;}
._22{width:11.141760pt;}
._1f{width:12.430080pt;}
._32{width:13.323093pt;}
._9{width:14.232747pt;}
._8{width:15.179520pt;}
._24{width:16.174080pt;}
._27{width:17.677440pt;}
._5{width:20.346240pt;}
._4{width:21.490560pt;}
._b{width:23.041920pt;}
._16{width:24.464640pt;}
._2c{width:25.555200pt;}
._7{width:26.453760pt;}
._6{width:27.534720pt;}
._48{width:28.454400pt;}
._26{width:29.406720pt;}
._25{width:30.476160pt;}
._2a{width:31.653120pt;}
._2b{width:32.970240pt;}
._23{width:34.648320pt;}
._1e{width:36.226560pt;}
._1d{width:37.255467pt;}
._4d{width:38.445440pt;}
._47{width:39.536640pt;}
._37{width:40.863360pt;}
._1c{width:41.986560pt;}
._20{width:42.954240pt;}
._21{width:43.959893pt;}
._17{width:45.880320pt;}
._19{width:46.800000pt;}
._29{width:48.159360pt;}
._28{width:49.196160pt;}
._49{width:50.378880pt;}
._18{width:51.795840pt;}
._31{width:54.362880pt;}
._2d{width:55.635840pt;}
._2f{width:56.759040pt;}
._3d{width:59.230080pt;}
._f{width:60.332160pt;}
._36{width:61.428693pt;}
._44{width:69.018240pt;}
._40{width:70.012800pt;}
._41{width:71.049600pt;}
._50{width:72.110720pt;}
._3e{width:79.022080pt;}
._30{width:80.750507pt;}
._11{width:82.346880pt;}
._10{width:83.320320pt;}
._42{width:84.360747pt;}
._43{width:85.706880pt;}
._3b{width:89.152427pt;}
._3c{width:90.423253pt;}
._4c{width:92.049920pt;}
._38{width:96.584747pt;}
._3f{width:99.793920pt;}
._39{width:101.377280pt;}
._3a{width:102.585600pt;}
._4e{width:116.887680pt;}
._4f{width:118.276907pt;}
._45{width:119.493120pt;}
._46{width:122.931840pt;}
._34{width:129.922347pt;}
._4b{width:137.180160pt;}
._33{width:138.132480pt;}
._51{width:182.234880pt;}
._52{width:183.513600pt;}
._35{width:213.333120pt;}
._0{width:259.753387pt;}
._4a{width:1037.911680pt;}
._1{width:1426.761387pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.311867pt;}
.y5{bottom:27.712000pt;}
.y2b{bottom:80.832000pt;}
.y2e{bottom:99.392000pt;}
.y2a{bottom:105.472000pt;}
.y2d{bottom:124.032000pt;}
.y29{bottom:130.112000pt;}
.y2c{bottom:148.826667pt;}
.y28{bottom:173.466667pt;}
.y27{bottom:198.106667pt;}
.y26{bottom:222.906667pt;}
.y25{bottom:247.546667pt;}
.y24{bottom:272.226667pt;}
.y23{bottom:296.866667pt;}
.y22{bottom:321.666667pt;}
.y21{bottom:346.306667pt;}
.y20{bottom:370.946667pt;}
.y1f{bottom:395.746667pt;}
.y1e{bottom:420.386667pt;}
.y1d{bottom:445.026667pt;}
.y1c{bottom:469.666667pt;}
.y1b{bottom:494.466667pt;}
.y1a{bottom:519.133333pt;}
.y19{bottom:543.773333pt;}
.y18{bottom:568.573333pt;}
.y17{bottom:593.213333pt;}
.y16{bottom:617.853333pt;}
.y15{bottom:642.493333pt;}
.y14{bottom:667.293333pt;}
.y13{bottom:691.933333pt;}
.y12{bottom:716.573333pt;}
.y11{bottom:741.213333pt;}
.y10{bottom:766.053333pt;}
.yf{bottom:790.693333pt;}
.ye{bottom:815.333333pt;}
.yd{bottom:840.133333pt;}
.yc{bottom:864.773333pt;}
.yb{bottom:889.413333pt;}
.ya{bottom:914.053333pt;}
.y9{bottom:938.853333pt;}
.y8{bottom:963.493333pt;}
.y7{bottom:988.133333pt;}
.y4{bottom:1009.600000pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:52.503750pt;}
.h8{height:52.832812pt;}
.hc{height:54.598989pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:76.546875pt;}
.hd{height:76.964840pt;}
.h3{height:85.222187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.x1{left:94.591988pt;}
.xf{left:102.911988pt;}
.x6{left:108.191988pt;}
.x7{left:134.746655pt;}
.xa{left:205.786655pt;}
.x11{left:237.786655pt;}
.x10{left:239.866655pt;}
.x9{left:243.546655pt;}
.xb{left:283.906655pt;}
.xc{left:330.946655pt;}
.xe{left:351.426655pt;}
.x8{left:396.866655pt;}
.xd{left:425.053322pt;}
.x2{left:452.413322pt;}
.x3{left:561.853322pt;}
}




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