
    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_b21bd8a7e64b6af6d8ce5218.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2ef9cb450d1a9190d56aec82.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_d516195deb3204db7cad8aa4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.774902;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_d45299b26b540b123ead3144.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_560046cb9f69b31b8008df95.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_359c5f97cb93026591c15920.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_4e5fe73732fb392e330725b4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_eb5f76b79bda9aac9b35fffb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_59f6ad66d55642368332f3fc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_0b6c193c380b531cf34fd0a4.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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-105.840000px;}
.v4{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.189735px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.284602px;}
.lsb{letter-spacing:0.305400px;}
.lsc{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.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;}
}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.ws7{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws8{word-spacing:-18.152520px;}
.ws9{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-14.965519px;}
.wsb{word-spacing:-11.609280px;}
.wsa{word-spacing:-11.519880px;}
.wsc{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._9{width:2.328000px;}
._d{width:4.362240px;}
._f{width:5.732640px;}
._7{width:7.559040px;}
._10{width:8.743680px;}
._11{width:10.061280px;}
._12{width:11.856960px;}
._6{width:13.089600px;}
._5{width:14.329920px;}
._4{width:15.552000px;}
._e{width:17.222400px;}
._c{width:20.223360px;}
._a{width:23.978880px;}
._b{width:26.193120px;}
._8{width:34.559520px;}
._0{width:414.000000px;}
._1{width:1336.620000px;}
.fc6{color:rgb(33,37,41);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:47.813160px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-7.020000px;}
.yf{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.420000px;}
.y39{bottom:3.600000px;}
.y4e{bottom:3.960000px;}
.y16{bottom:7.920000px;}
.y18{bottom:8.100000px;}
.y3a{bottom:9.000000px;}
.y33{bottom:9.180000px;}
.y23{bottom:9.210000px;}
.y7{bottom:11.160000px;}
.ya{bottom:14.400000px;}
.ye{bottom:19.260000px;}
.y4d{bottom:20.700000px;}
.y2f{bottom:22.500000px;}
.y15{bottom:27.000000px;}
.y1d{bottom:31.500000px;}
.y6{bottom:36.000000px;}
.y9{bottom:39.240000px;}
.y4b{bottom:41.400000px;}
.y38{bottom:41.580000px;}
.yd{bottom:44.280000px;}
.y4{bottom:57.780000px;}
.y37{bottom:60.474000px;}
.y4a{bottom:60.480000px;}
.y2e{bottom:62.505000px;}
.y3{bottom:78.516000px;}
.y36{bottom:79.374000px;}
.y49{bottom:79.380000px;}
.y2d{bottom:81.405000px;}
.y35{bottom:98.454000px;}
.y48{bottom:98.820000px;}
.y2c{bottom:100.485000px;}
.y34{bottom:106.236000px;}
.y47{bottom:115.740000px;}
.y2b{bottom:119.385000px;}
.y2a{bottom:138.465000px;}
.y29{bottom:157.365000px;}
.y28{bottom:176.265000px;}
.y3b{bottom:192.090000px;}
.y60{bottom:194.430000px;}
.y27{bottom:216.225000px;}
.y32{bottom:220.890000px;}
.y26{bottom:235.305000px;}
.y5f{bottom:235.830000px;}
.y25{bottom:254.565000px;}
.y5e{bottom:256.530000px;}
.y31{bottom:273.990000px;}
.y5d{bottom:277.410000px;}
.y24{bottom:291.450000px;}
.y5c{bottom:298.110000px;}
.y5b{bottom:318.855000px;}
.y5a{bottom:339.555000px;}
.y59{bottom:360.255000px;}
.y58{bottom:380.955000px;}
.y46{bottom:398.415000px;}
.y57{bottom:401.655000px;}
.y56{bottom:419.115000px;}
.y55{bottom:438.915000px;}
.y54{bottom:458.715000px;}
.y53{bottom:478.335000px;}
.y52{bottom:498.135000px;}
.y51{bottom:517.755000px;}
.y50{bottom:556.455000px;}
.y22{bottom:563.655000px;}
.y4f{bottom:609.585000px;}
.y21{bottom:616.785000px;}
.y4c{bottom:627.045000px;}
.y20{bottom:634.245000px;}
.y1f{bottom:663.045000px;}
.y45{bottom:673.500000px;}
.y1e{bottom:691.665000px;}
.y44{bottom:692.400000px;}
.y43{bottom:711.480000px;}
.y1c{bottom:720.465000px;}
.y42{bottom:730.380000px;}
.y41{bottom:749.280000px;}
.y40{bottom:768.360000px;}
.y1b{bottom:772.665000px;}
.y3f{bottom:787.260000px;}
.y1a{bottom:801.285000px;}
.y3e{bottom:806.340000px;}
.y3d{bottom:825.240000px;}
.y19{bottom:830.130000px;}
.y3c{bottom:844.140000px;}
.y17{bottom:858.750000px;}
.y14{bottom:887.550000px;}
.y13{bottom:939.210000px;}
.y12{bottom:960.990000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.340000px;}
.yc{bottom:1088.100000px;}
.y8{bottom:1089.900000px;}
.y5{bottom:1093.140000px;}
.h1a{height:18.900000px;}
.h1b{height:19.080000px;}
.hc{height:27.900000px;}
.hb{height:28.080000px;}
.hd{height:28.116000px;}
.h3{height:36.326795px;}
.h19{height:37.980000px;}
.h9{height:46.980000px;}
.h2{height:47.160000px;}
.h13{height:48.420000px;}
.h10{height:48.456000px;}
.h15{height:50.062500px;}
.h5{height:50.400000px;}
.he{height:51.480000px;}
.h6{height:55.440000px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.hf{height:70.914375px;}
.h4{height:72.076975px;}
.h18{height:72.562500px;}
.h1c{height:74.004654px;}
.h7{height:75.093750px;}
.h11{height:93.867188px;}
.h8{height:99.874688px;}
.h14{height:113.940000px;}
.h12{height:271.470000px;}
.h17{height:424.650000px;}
.h16{height:859.605000px;}
.h0{height:1188.000000px;}
.w4{width:70.236000px;}
.wa{width:114.660000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w5{width:273.135000px;}
.w6{width:489.495000px;}
.w9{width:655.890000px;}
.w7{width:763.710000px;}
.w8{width:771.990000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.xb{left:10.800000px;}
.xa{left:13.860000px;}
.x6{left:15.120000px;}
.xe{left:17.280000px;}
.xd{left:23.400000px;}
.x13{left:34.596000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x15{left:45.000000px;}
.x1a{left:51.660000px;}
.x1b{left:57.240000px;}
.x14{left:61.596000px;}
.x10{left:77.400000px;}
.x3{left:84.959986px;}
.x7{left:115.380000px;}
.x1c{left:167.429986px;}
.x1{left:315.434986px;}
.x12{left:351.255000px;}
.x18{left:385.635000px;}
.x2{left:458.894986px;}
.x4{left:495.105000px;}
.x17{left:565.485000px;}
.xf{left:576.644986px;}
.xc{left:636.405000px;}
.x19{left:640.590000px;}
.x8{left:724.650000px;}
.x16{left:735.090000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v4{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.252980pt;}
.lsb{letter-spacing:0.271467pt;}
.lsc{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.ws7{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws8{word-spacing:-16.135573pt;}
.ws9{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.302684pt;}
.wsb{word-spacing:-10.319360pt;}
.wsa{word-spacing:-10.239893pt;}
.wsc{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._9{width:2.069333pt;}
._d{width:3.877547pt;}
._f{width:5.095680pt;}
._7{width:6.719147pt;}
._10{width:7.772160pt;}
._11{width:8.943360pt;}
._12{width:10.539520pt;}
._6{width:11.635200pt;}
._5{width:12.737707pt;}
._4{width:13.824000pt;}
._e{width:15.308800pt;}
._c{width:17.976320pt;}
._a{width:21.314560pt;}
._b{width:23.282773pt;}
._8{width:30.719573pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.500587pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-6.240000pt;}
.yf{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.040000pt;}
.y39{bottom:3.200000pt;}
.y4e{bottom:3.520000pt;}
.y16{bottom:7.040000pt;}
.y18{bottom:7.200000pt;}
.y3a{bottom:8.000000pt;}
.y33{bottom:8.160000pt;}
.y23{bottom:8.186667pt;}
.y7{bottom:9.920000pt;}
.ya{bottom:12.800000pt;}
.ye{bottom:17.120000pt;}
.y4d{bottom:18.400000pt;}
.y2f{bottom:20.000000pt;}
.y15{bottom:24.000000pt;}
.y1d{bottom:28.000000pt;}
.y6{bottom:32.000000pt;}
.y9{bottom:34.880000pt;}
.y4b{bottom:36.800000pt;}
.y38{bottom:36.960000pt;}
.yd{bottom:39.360000pt;}
.y4{bottom:51.360000pt;}
.y37{bottom:53.754667pt;}
.y4a{bottom:53.760000pt;}
.y2e{bottom:55.560000pt;}
.y3{bottom:69.792000pt;}
.y36{bottom:70.554667pt;}
.y49{bottom:70.560000pt;}
.y2d{bottom:72.360000pt;}
.y35{bottom:87.514667pt;}
.y48{bottom:87.840000pt;}
.y2c{bottom:89.320000pt;}
.y34{bottom:94.432000pt;}
.y47{bottom:102.880000pt;}
.y2b{bottom:106.120000pt;}
.y2a{bottom:123.080000pt;}
.y29{bottom:139.880000pt;}
.y28{bottom:156.680000pt;}
.y3b{bottom:170.746667pt;}
.y60{bottom:172.826667pt;}
.y27{bottom:192.200000pt;}
.y32{bottom:196.346667pt;}
.y26{bottom:209.160000pt;}
.y5f{bottom:209.626667pt;}
.y25{bottom:226.280000pt;}
.y5e{bottom:228.026667pt;}
.y31{bottom:243.546667pt;}
.y5d{bottom:246.586667pt;}
.y24{bottom:259.066667pt;}
.y5c{bottom:264.986667pt;}
.y5b{bottom:283.426667pt;}
.y5a{bottom:301.826667pt;}
.y59{bottom:320.226667pt;}
.y58{bottom:338.626667pt;}
.y46{bottom:354.146667pt;}
.y57{bottom:357.026667pt;}
.y56{bottom:372.546667pt;}
.y55{bottom:390.146667pt;}
.y54{bottom:407.746667pt;}
.y53{bottom:425.186667pt;}
.y52{bottom:442.786667pt;}
.y51{bottom:460.226667pt;}
.y50{bottom:494.626667pt;}
.y22{bottom:501.026667pt;}
.y4f{bottom:541.853333pt;}
.y21{bottom:548.253333pt;}
.y4c{bottom:557.373333pt;}
.y20{bottom:563.773333pt;}
.y1f{bottom:589.373333pt;}
.y45{bottom:598.666667pt;}
.y1e{bottom:614.813333pt;}
.y44{bottom:615.466667pt;}
.y43{bottom:632.426667pt;}
.y1c{bottom:640.413333pt;}
.y42{bottom:649.226667pt;}
.y41{bottom:666.026667pt;}
.y40{bottom:682.986667pt;}
.y1b{bottom:686.813333pt;}
.y3f{bottom:699.786667pt;}
.y1a{bottom:712.253333pt;}
.y3e{bottom:716.746667pt;}
.y3d{bottom:733.546667pt;}
.y19{bottom:737.893333pt;}
.y3c{bottom:750.346667pt;}
.y17{bottom:763.333333pt;}
.y14{bottom:788.933333pt;}
.y13{bottom:834.853333pt;}
.y12{bottom:854.213333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:954.080000pt;}
.yc{bottom:967.200000pt;}
.y8{bottom:968.800000pt;}
.y5{bottom:971.680000pt;}
.h1a{height:16.800000pt;}
.h1b{height:16.960000pt;}
.hc{height:24.800000pt;}
.hb{height:24.960000pt;}
.hd{height:24.992000pt;}
.h3{height:32.290485pt;}
.h19{height:33.760000pt;}
.h9{height:41.760000pt;}
.h2{height:41.920000pt;}
.h13{height:43.040000pt;}
.h10{height:43.072000pt;}
.h15{height:44.500000pt;}
.h5{height:44.800000pt;}
.he{height:45.760000pt;}
.h6{height:49.280000pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.hf{height:63.035000pt;}
.h4{height:64.068422pt;}
.h18{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h7{height:66.750000pt;}
.h11{height:83.437500pt;}
.h8{height:88.777500pt;}
.h14{height:101.280000pt;}
.h12{height:241.306667pt;}
.h17{height:377.466667pt;}
.h16{height:764.093333pt;}
.h0{height:1056.000000pt;}
.w4{width:62.432000pt;}
.wa{width:101.920000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w5{width:242.786667pt;}
.w6{width:435.106667pt;}
.w9{width:583.013333pt;}
.w7{width:678.853333pt;}
.w8{width:686.213333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.xb{left:9.600000pt;}
.xa{left:12.320000pt;}
.x6{left:13.440000pt;}
.xe{left:15.360000pt;}
.xd{left:20.800000pt;}
.x13{left:30.752000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x15{left:40.000000pt;}
.x1a{left:45.920000pt;}
.x1b{left:50.880000pt;}
.x14{left:54.752000pt;}
.x10{left:68.800000pt;}
.x3{left:75.519988pt;}
.x7{left:102.560000pt;}
.x1c{left:148.826655pt;}
.x1{left:280.386655pt;}
.x12{left:312.226667pt;}
.x18{left:342.786667pt;}
.x2{left:407.906655pt;}
.x4{left:440.093333pt;}
.x17{left:502.653333pt;}
.xf{left:512.573321pt;}
.xc{left:565.693333pt;}
.x19{left:569.413333pt;}
.x8{left:644.133333pt;}
.x16{left:653.413333pt;}
}




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