
    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_f9c40c6a9e99f7d680cc18a2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2f45d671d8b7a7328fb1323.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_66f04e4663f92389cf08db04.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0b38943bf534a96e46ef802b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b569dece559c4d8c47a6f62f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6351520598ff2361e0f9e257.woff')format("woff");}.ff6{font-family:ff6;line-height:1.110840;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);}
.v1{vertical-align:-67.680000px;}
.v3{vertical-align:-64.800000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls17{letter-spacing:-6.145920px;}
.ls1a{letter-spacing:-4.752000px;}
.ls16{letter-spacing:-3.240000px;}
.ls19{letter-spacing:-2.280960px;}
.ls18{letter-spacing:-2.027520px;}
.lse{letter-spacing:-0.870000px;}
.ls7{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.404400px;}
.ls8{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.051840px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.152400px;}
.lsf{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.315600px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.600000px;}
.ls12{letter-spacing:6.480000px;}
.ls2{letter-spacing:6.840000px;}
.ls14{letter-spacing:10.080000px;}
.ls0{letter-spacing:20.545920px;}
.ls13{letter-spacing:29.185920px;}
.ls3{letter-spacing:119.136000px;}
.ls1{letter-spacing:351.696000px;}
.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:-16.865400px;}
.wsa{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.145400px;}
.wsd{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.788160px;}
.ws9{word-spacing:-15.690000px;}
.ws0{word-spacing:-13.860000px;}
.wse{word-spacing:-13.812480px;}
.wsf{word-spacing:-13.559040px;}
.ws3{word-spacing:-10.755600px;}
.ws4{word-spacing:-10.035600px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-4.798080px;}
._d{margin-left:-3.693600px;}
._11{margin-left:-2.494080px;}
._1{margin-left:-1.126080px;}
._5{width:1.656000px;}
._4{width:2.848320px;}
._3{width:4.140000px;}
._2{width:5.199840px;}
._0{width:6.359040px;}
._6{width:7.485120px;}
._12{width:8.942400px;}
._13{width:10.111680px;}
._14{width:11.395200px;}
._7{width:13.049280px;}
._15{width:14.771520px;}
._a{width:17.403840px;}
._9{width:18.408960px;}
._b{width:19.470720px;}
._e{width:20.957760px;}
._c{width:22.455360px;}
._16{width:28.946880px;}
._17{width:46.776000px;}
._10{width:68.900160px;}
._f{width:70.505280px;}
.fc4{color:rgb(33,40,45);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(160,43,147);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:208.650000px;}
.y76{bottom:229.350000px;}
.y6d{bottom:229.710000px;}
.y62{bottom:230.070000px;}
.y33{bottom:230.790000px;}
.ya5{bottom:230.970000px;}
.y75{bottom:248.070000px;}
.y32{bottom:248.610000px;}
.y61{bottom:248.970000px;}
.ya4{bottom:249.150000px;}
.y31{bottom:266.250000px;}
.y74{bottom:266.970000px;}
.ya3{bottom:267.330000px;}
.y6c{bottom:267.510000px;}
.y60{bottom:267.870000px;}
.y30{bottom:284.070000px;}
.ya2{bottom:285.330000px;}
.y73{bottom:285.690000px;}
.y6b{bottom:286.230000px;}
.y5f{bottom:286.770000px;}
.y2f{bottom:301.710000px;}
.ya1{bottom:303.510000px;}
.y72{bottom:304.590000px;}
.y6a{bottom:305.130000px;}
.y5e{bottom:305.490000px;}
.y2e{bottom:319.530000px;}
.ya0{bottom:321.510000px;}
.y71{bottom:323.310000px;}
.y69{bottom:323.850000px;}
.y5d{bottom:324.390000px;}
.y2d{bottom:337.170000px;}
.y9f{bottom:339.690000px;}
.y70{bottom:342.210000px;}
.y68{bottom:342.750000px;}
.y5c{bottom:343.110000px;}
.y2c{bottom:354.990000px;}
.y9e{bottom:357.870000px;}
.y6f{bottom:361.110000px;}
.y67{bottom:361.470000px;}
.y5b{bottom:362.010000px;}
.y2b{bottom:372.630000px;}
.y9d{bottom:375.870000px;}
.y6e{bottom:380.010000px;}
.y66{bottom:380.370000px;}
.y5a{bottom:380.730000px;}
.y2a{bottom:390.495000px;}
.y9c{bottom:394.095000px;}
.y65{bottom:399.135000px;}
.y59{bottom:399.675000px;}
.y29{bottom:408.135000px;}
.y9b{bottom:412.095000px;}
.y64{bottom:418.035000px;}
.y58{bottom:418.395000px;}
.y28{bottom:425.955000px;}
.y9a{bottom:430.275000px;}
.y63{bottom:437.115000px;}
.y57{bottom:437.295000px;}
.y99{bottom:448.455000px;}
.y56{bottom:456.015000px;}
.y27{bottom:459.795000px;}
.y98{bottom:466.455000px;}
.y26{bottom:471.495000px;}
.y55{bottom:474.915000px;}
.y97{bottom:483.195000px;}
.y25{bottom:489.315000px;}
.y54{bottom:493.995000px;}
.y96{bottom:495.255000px;}
.y24{bottom:506.955000px;}
.y53{bottom:512.895000px;}
.y95{bottom:514.155000px;}
.y23{bottom:523.155000px;}
.y52{bottom:531.975000px;}
.y94{bottom:533.235000px;}
.y22{bottom:534.855000px;}
.y51{bottom:550.875000px;}
.y93{bottom:552.135000px;}
.y21{bottom:552.675000px;}
.y50{bottom:569.775000px;}
.y20{bottom:570.315000px;}
.y92{bottom:571.035000px;}
.y4f{bottom:588.855000px;}
.y91{bottom:590.115000px;}
.y1f{bottom:604.335000px;}
.y4e{bottom:607.755000px;}
.y90{bottom:609.015000px;}
.y4d{bottom:626.835000px;}
.y8f{bottom:628.095000px;}
.y1e{bottom:632.955000px;}
.y1d{bottom:644.685000px;}
.y4c{bottom:645.765000px;}
.y8e{bottom:647.025000px;}
.y1c{bottom:663.045000px;}
.y4b{bottom:664.665000px;}
.y8d{bottom:665.925000px;}
.y1b{bottom:679.965000px;}
.y4a{bottom:683.745000px;}
.y8c{bottom:685.005000px;}
.y1a{bottom:697.605000px;}
.y49{bottom:702.645000px;}
.y8b{bottom:703.905000px;}
.y19{bottom:715.065000px;}
.y48{bottom:721.725000px;}
.y8a{bottom:722.985000px;}
.y18{bottom:732.705000px;}
.y47{bottom:740.625000px;}
.y89{bottom:741.885000px;}
.y17{bottom:750.345000px;}
.y46{bottom:759.705000px;}
.y88{bottom:760.965000px;}
.y16{bottom:767.985000px;}
.y45{bottom:778.605000px;}
.y87{bottom:779.865000px;}
.y15{bottom:785.445000px;}
.y44{bottom:797.505000px;}
.y86{bottom:798.765000px;}
.y14{bottom:803.085000px;}
.y43{bottom:816.585000px;}
.y85{bottom:817.845000px;}
.y13{bottom:820.725000px;}
.y42{bottom:835.485000px;}
.y84{bottom:836.745000px;}
.y12{bottom:838.185000px;}
.y41{bottom:854.565000px;}
.y11{bottom:855.825000px;}
.y10{bottom:873.465000px;}
.y83{bottom:874.725000px;}
.yf{bottom:890.925000px;}
.y40{bottom:892.365000px;}
.y82{bottom:893.670000px;}
.ye{bottom:908.610000px;}
.y3f{bottom:911.490000px;}
.y81{bottom:912.750000px;}
.yd{bottom:926.250000px;}
.y3e{bottom:930.390000px;}
.y80{bottom:931.650000px;}
.yc{bottom:943.710000px;}
.y3d{bottom:949.470000px;}
.y7f{bottom:950.730000px;}
.yb{bottom:959.910000px;}
.y3c{bottom:968.370000px;}
.y7e{bottom:969.630000px;}
.ya{bottom:971.790000px;}
.y3b{bottom:987.270000px;}
.y7d{bottom:988.530000px;}
.y9{bottom:990.330000px;}
.y3a{bottom:1006.350000px;}
.y7c{bottom:1007.430000px;}
.y8{bottom:1008.870000px;}
.y39{bottom:1025.250000px;}
.y7b{bottom:1026.150000px;}
.y7{bottom:1027.410000px;}
.yab{bottom:1031.190000px;}
.y38{bottom:1044.330000px;}
.y7a{bottom:1045.050000px;}
.y6{bottom:1045.950000px;}
.yaa{bottom:1049.010000px;}
.y37{bottom:1063.230000px;}
.y79{bottom:1063.770000px;}
.y5{bottom:1064.670000px;}
.ya9{bottom:1067.010000px;}
.y36{bottom:1082.130000px;}
.y78{bottom:1082.670000px;}
.y4{bottom:1083.210000px;}
.ya8{bottom:1085.010000px;}
.y35{bottom:1101.210000px;}
.y77{bottom:1101.390000px;}
.y3{bottom:1101.750000px;}
.ya7{bottom:1103.010000px;}
.y34{bottom:1120.110000px;}
.y2{bottom:1120.290000px;}
.ya6{bottom:1120.830000px;}
.hd{height:35.314453px;}
.hb{height:35.332031px;}
.h5{height:36.281250px;}
.h2{height:52.998047px;}
.h4{height:59.383125px;}
.h9{height:60.226875px;}
.hc{height:62.153438px;}
.h8{height:62.184375px;}
.h6{height:63.855000px;}
.he{height:64.724766px;}
.h3{height:65.010937px;}
.h7{height:65.124096px;}
.ha{height:66.757500px;}
.h1{height:672.000000px;}
.h0{height:672.210000px;}
.h10{height:1263.000000px;}
.hf{height:1263.060000px;}
.w0{width:887.641500px;}
.w1{width:888.000000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:135.097500px;}
.xf{left:140.435987px;}
.x4{left:145.711500px;}
.x11{left:148.895987px;}
.x2{left:167.131500px;}
.xe{left:172.469987px;}
.x1{left:434.506500px;}
.x10{left:436.424987px;}
.xd{left:439.844987px;}
.xa{left:460.786500px;}
.x5{left:467.806500px;}
.xb{left:482.026500px;}
.x8{left:500.386500px;}
.x6{left:530.626500px;}
.x7{left:586.291500px;}
.xc{left:588.811500px;}
.x9{left:747.601500px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v3{vertical-align:-57.600000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls17{letter-spacing:-5.463040pt;}
.ls1a{letter-spacing:-4.224000pt;}
.ls16{letter-spacing:-2.880000pt;}
.ls19{letter-spacing:-2.027520pt;}
.ls18{letter-spacing:-1.802240pt;}
.lse{letter-spacing:-0.773333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.359467pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.046080pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.135467pt;}
.lsf{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.280533pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls2{letter-spacing:6.080000pt;}
.ls14{letter-spacing:8.960000pt;}
.ls0{letter-spacing:18.263040pt;}
.ls13{letter-spacing:25.943040pt;}
.ls3{letter-spacing:105.898667pt;}
.ls1{letter-spacing:312.618667pt;}
.ws7{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.351467pt;}
.wsd{word-spacing:-14.313067pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-14.033920pt;}
.ws9{word-spacing:-13.946667pt;}
.ws0{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.277760pt;}
.wsf{word-spacing:-12.052480pt;}
.ws3{word-spacing:-9.560533pt;}
.ws4{word-spacing:-8.920533pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-4.264960pt;}
._d{margin-left:-3.283200pt;}
._11{margin-left:-2.216960pt;}
._1{margin-left:-1.000960pt;}
._5{width:1.472000pt;}
._4{width:2.531840pt;}
._3{width:3.680000pt;}
._2{width:4.622080pt;}
._0{width:5.652480pt;}
._6{width:6.653440pt;}
._12{width:7.948800pt;}
._13{width:8.988160pt;}
._14{width:10.129067pt;}
._7{width:11.599360pt;}
._15{width:13.130240pt;}
._a{width:15.470080pt;}
._9{width:16.363520pt;}
._b{width:17.307307pt;}
._e{width:18.629120pt;}
._c{width:19.960320pt;}
._16{width:25.730560pt;}
._17{width:41.578667pt;}
._10{width:61.244587pt;}
._f{width:62.671360pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:185.466667pt;}
.y76{bottom:203.866667pt;}
.y6d{bottom:204.186667pt;}
.y62{bottom:204.506667pt;}
.y33{bottom:205.146667pt;}
.ya5{bottom:205.306667pt;}
.y75{bottom:220.506667pt;}
.y32{bottom:220.986667pt;}
.y61{bottom:221.306667pt;}
.ya4{bottom:221.466667pt;}
.y31{bottom:236.666667pt;}
.y74{bottom:237.306667pt;}
.ya3{bottom:237.626667pt;}
.y6c{bottom:237.786667pt;}
.y60{bottom:238.106667pt;}
.y30{bottom:252.506667pt;}
.ya2{bottom:253.626667pt;}
.y73{bottom:253.946667pt;}
.y6b{bottom:254.426667pt;}
.y5f{bottom:254.906667pt;}
.y2f{bottom:268.186667pt;}
.ya1{bottom:269.786667pt;}
.y72{bottom:270.746667pt;}
.y6a{bottom:271.226667pt;}
.y5e{bottom:271.546667pt;}
.y2e{bottom:284.026667pt;}
.ya0{bottom:285.786667pt;}
.y71{bottom:287.386667pt;}
.y69{bottom:287.866667pt;}
.y5d{bottom:288.346667pt;}
.y2d{bottom:299.706667pt;}
.y9f{bottom:301.946667pt;}
.y70{bottom:304.186667pt;}
.y68{bottom:304.666667pt;}
.y5c{bottom:304.986667pt;}
.y2c{bottom:315.546667pt;}
.y9e{bottom:318.106667pt;}
.y6f{bottom:320.986667pt;}
.y67{bottom:321.306667pt;}
.y5b{bottom:321.786667pt;}
.y2b{bottom:331.226667pt;}
.y9d{bottom:334.106667pt;}
.y6e{bottom:337.786667pt;}
.y66{bottom:338.106667pt;}
.y5a{bottom:338.426667pt;}
.y2a{bottom:347.106667pt;}
.y9c{bottom:350.306667pt;}
.y65{bottom:354.786667pt;}
.y59{bottom:355.266667pt;}
.y29{bottom:362.786667pt;}
.y9b{bottom:366.306667pt;}
.y64{bottom:371.586667pt;}
.y58{bottom:371.906667pt;}
.y28{bottom:378.626667pt;}
.y9a{bottom:382.466667pt;}
.y63{bottom:388.546667pt;}
.y57{bottom:388.706667pt;}
.y99{bottom:398.626667pt;}
.y56{bottom:405.346667pt;}
.y27{bottom:408.706667pt;}
.y98{bottom:414.626667pt;}
.y26{bottom:419.106667pt;}
.y55{bottom:422.146667pt;}
.y97{bottom:429.506667pt;}
.y25{bottom:434.946667pt;}
.y54{bottom:439.106667pt;}
.y96{bottom:440.226667pt;}
.y24{bottom:450.626667pt;}
.y53{bottom:455.906667pt;}
.y95{bottom:457.026667pt;}
.y23{bottom:465.026667pt;}
.y52{bottom:472.866667pt;}
.y94{bottom:473.986667pt;}
.y22{bottom:475.426667pt;}
.y51{bottom:489.666667pt;}
.y93{bottom:490.786667pt;}
.y21{bottom:491.266667pt;}
.y50{bottom:506.466667pt;}
.y20{bottom:506.946667pt;}
.y92{bottom:507.586667pt;}
.y4f{bottom:523.426667pt;}
.y91{bottom:524.546667pt;}
.y1f{bottom:537.186667pt;}
.y4e{bottom:540.226667pt;}
.y90{bottom:541.346667pt;}
.y4d{bottom:557.186667pt;}
.y8f{bottom:558.306667pt;}
.y1e{bottom:562.626667pt;}
.y1d{bottom:573.053333pt;}
.y4c{bottom:574.013333pt;}
.y8e{bottom:575.133333pt;}
.y1c{bottom:589.373333pt;}
.y4b{bottom:590.813333pt;}
.y8d{bottom:591.933333pt;}
.y1b{bottom:604.413333pt;}
.y4a{bottom:607.773333pt;}
.y8c{bottom:608.893333pt;}
.y1a{bottom:620.093333pt;}
.y49{bottom:624.573333pt;}
.y8b{bottom:625.693333pt;}
.y19{bottom:635.613333pt;}
.y48{bottom:641.533333pt;}
.y8a{bottom:642.653333pt;}
.y18{bottom:651.293333pt;}
.y47{bottom:658.333333pt;}
.y89{bottom:659.453333pt;}
.y17{bottom:666.973333pt;}
.y46{bottom:675.293333pt;}
.y88{bottom:676.413333pt;}
.y16{bottom:682.653333pt;}
.y45{bottom:692.093333pt;}
.y87{bottom:693.213333pt;}
.y15{bottom:698.173333pt;}
.y44{bottom:708.893333pt;}
.y86{bottom:710.013333pt;}
.y14{bottom:713.853333pt;}
.y43{bottom:725.853333pt;}
.y85{bottom:726.973333pt;}
.y13{bottom:729.533333pt;}
.y42{bottom:742.653333pt;}
.y84{bottom:743.773333pt;}
.y12{bottom:745.053333pt;}
.y41{bottom:759.613333pt;}
.y11{bottom:760.733333pt;}
.y10{bottom:776.413333pt;}
.y83{bottom:777.533333pt;}
.yf{bottom:791.933333pt;}
.y40{bottom:793.213333pt;}
.y82{bottom:794.373333pt;}
.ye{bottom:807.653333pt;}
.y3f{bottom:810.213333pt;}
.y81{bottom:811.333333pt;}
.yd{bottom:823.333333pt;}
.y3e{bottom:827.013333pt;}
.y80{bottom:828.133333pt;}
.yc{bottom:838.853333pt;}
.y3d{bottom:843.973333pt;}
.y7f{bottom:845.093333pt;}
.yb{bottom:853.253333pt;}
.y3c{bottom:860.773333pt;}
.y7e{bottom:861.893333pt;}
.ya{bottom:863.813333pt;}
.y3b{bottom:877.573333pt;}
.y7d{bottom:878.693333pt;}
.y9{bottom:880.293333pt;}
.y3a{bottom:894.533333pt;}
.y7c{bottom:895.493333pt;}
.y8{bottom:896.773333pt;}
.y39{bottom:911.333333pt;}
.y7b{bottom:912.133333pt;}
.y7{bottom:913.253333pt;}
.yab{bottom:916.613333pt;}
.y38{bottom:928.293333pt;}
.y7a{bottom:928.933333pt;}
.y6{bottom:929.733333pt;}
.yaa{bottom:932.453333pt;}
.y37{bottom:945.093333pt;}
.y79{bottom:945.573333pt;}
.y5{bottom:946.373333pt;}
.ya9{bottom:948.453333pt;}
.y36{bottom:961.893333pt;}
.y78{bottom:962.373333pt;}
.y4{bottom:962.853333pt;}
.ya8{bottom:964.453333pt;}
.y35{bottom:978.853333pt;}
.y77{bottom:979.013333pt;}
.y3{bottom:979.333333pt;}
.ya7{bottom:980.453333pt;}
.y34{bottom:995.653333pt;}
.y2{bottom:995.813333pt;}
.ya6{bottom:996.293333pt;}
.hd{height:31.390625pt;}
.hb{height:31.406250pt;}
.h5{height:32.250000pt;}
.h2{height:47.109375pt;}
.h4{height:52.785000pt;}
.h9{height:53.535000pt;}
.hc{height:55.247500pt;}
.h8{height:55.275000pt;}
.h6{height:56.760000pt;}
.he{height:57.533125pt;}
.h3{height:57.787500pt;}
.h7{height:57.888085pt;}
.ha{height:59.340000pt;}
.h1{height:597.333333pt;}
.h0{height:597.520000pt;}
.h10{height:1122.666667pt;}
.hf{height:1122.720000pt;}
.w0{width:789.014667pt;}
.w1{width:789.333333pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:120.086667pt;}
.xf{left:124.831988pt;}
.x4{left:129.521333pt;}
.x11{left:132.351988pt;}
.x2{left:148.561333pt;}
.xe{left:153.306655pt;}
.x1{left:386.228000pt;}
.x10{left:387.933322pt;}
.xd{left:390.973322pt;}
.xa{left:409.588000pt;}
.x5{left:415.828000pt;}
.xb{left:428.468000pt;}
.x8{left:444.788000pt;}
.x6{left:471.668000pt;}
.x7{left:521.148000pt;}
.xc{left:523.388000pt;}
.x9{left:664.534667pt;}
}




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