
    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_ae888a79f8bd3eb4a30dbdcd.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_06f0ef8f153925a586f6b791.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776367;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_19b86c57319bda9648d86380.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_2daa60dfb7c15a866b32900d.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_71a28e9246ac16afb3c26683.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f5ef45ec2773ceb3fc574f65.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_329f9ed05eb59a36a883fa38.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cd06ba34207b021e902b1965.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_c399c1eda4e86d0fe9afa1b8.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;}
.v3{vertical-align:-82.776000px;}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.189735px;}
.ls1{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.284602px;}
.ls9{letter-spacing:89.729280px;}
.lsa{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;}
.ws8{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws9{word-spacing:-18.152520px;}
.wsa{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-14.965519px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._10{width:2.398080px;}
._6{width:3.639360px;}
._5{width:4.901760px;}
._c{width:6.511680px;}
._8{width:7.551360px;}
._a{width:8.942400px;}
._4{width:10.465920px;}
._9{width:12.453120px;}
._14{width:13.512960px;}
._e{width:15.917760px;}
._d{width:17.288640px;}
._13{width:22.537920px;}
._b{width:23.692800px;}
._7{width:25.453440px;}
._11{width:34.559520px;}
._12{width:37.445760px;}
._f{width:142.703520px;}
._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);}
.fs1{font-size:47.813160px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{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;}
.y3b{bottom:3.600000px;}
.y59{bottom:3.960000px;}
.y16{bottom:7.920000px;}
.y18{bottom:8.100000px;}
.y24{bottom:9.000000px;}
.y33{bottom:9.180000px;}
.y7{bottom:11.160000px;}
.ya{bottom:14.400000px;}
.ye{bottom:19.260000px;}
.y5d{bottom:22.320000px;}
.y2f{bottom:22.500000px;}
.y58{bottom:24.120000px;}
.y15{bottom:27.000000px;}
.y1e{bottom:31.500000px;}
.y6{bottom:36.000000px;}
.y9{bottom:39.240000px;}
.y2e{bottom:41.400000px;}
.y3a{bottom:41.580000px;}
.y57{bottom:43.020000px;}
.yd{bottom:44.280000px;}
.y1d{bottom:55.080000px;}
.y4{bottom:57.780000px;}
.y39{bottom:60.474000px;}
.y2d{bottom:60.480000px;}
.y56{bottom:62.100000px;}
.y3{bottom:78.516000px;}
.y38{bottom:79.374000px;}
.y2c{bottom:79.380000px;}
.y55{bottom:81.000000px;}
.y2b{bottom:98.280000px;}
.y37{bottom:98.454000px;}
.y54{bottom:100.110000px;}
.y34{bottom:107.496000px;}
.y69{bottom:110.376000px;}
.y36{bottom:117.354000px;}
.y2a{bottom:117.360000px;}
.y53{bottom:119.010000px;}
.y29{bottom:136.260000px;}
.y35{bottom:136.434000px;}
.y52{bottom:138.090000px;}
.y68{bottom:151.770000px;}
.y28{bottom:155.340000px;}
.y51{bottom:156.990000px;}
.y67{bottom:172.470000px;}
.y27{bottom:174.240000px;}
.y50{bottom:175.890000px;}
.y26{bottom:193.140000px;}
.y66{bottom:193.350000px;}
.y4f{bottom:194.970000px;}
.y4e{bottom:213.870000px;}
.y65{bottom:214.050000px;}
.y4d{bottom:232.950000px;}
.y64{bottom:234.750000px;}
.y4c{bottom:251.850000px;}
.y63{bottom:255.450000px;}
.y32{bottom:260.130000px;}
.y4b{bottom:270.750000px;}
.y62{bottom:272.910000px;}
.y4a{bottom:289.830000px;}
.y61{bottom:292.530000px;}
.y49{bottom:308.730000px;}
.y60{bottom:312.330000px;}
.y31{bottom:313.230000px;}
.y48{bottom:327.810000px;}
.y25{bottom:330.735000px;}
.y5f{bottom:331.995000px;}
.y47{bottom:346.755000px;}
.y5e{bottom:351.795000px;}
.y46{bottom:365.655000px;}
.y5c{bottom:371.595000px;}
.y45{bottom:403.635000px;}
.y5b{bottom:410.295000px;}
.y44{bottom:422.715000px;}
.y43{bottom:441.615000px;}
.y42{bottom:460.515000px;}
.y5a{bottom:463.395000px;}
.y41{bottom:479.595000px;}
.y3c{bottom:480.855000px;}
.y40{bottom:498.495000px;}
.y3f{bottom:517.575000px;}
.y3e{bottom:536.475000px;}
.y23{bottom:540.255000px;}
.y3d{bottom:555.375000px;}
.y22{bottom:593.205000px;}
.y21{bottom:610.845000px;}
.y20{bottom:639.465000px;}
.y1f{bottom:668.265000px;}
.y1c{bottom:696.885000px;}
.y1b{bottom:772.665000px;}
.y1a{bottom:801.285000px;}
.y19{bottom:830.130000px;}
.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;}
.h1c{height:18.936000px;}
.h1b{height:19.080000px;}
.hc{height:27.900000px;}
.hb{height:28.080000px;}
.hd{height:28.116000px;}
.h3{height:36.326795px;}
.h18{height:37.800000px;}
.h9{height:46.980000px;}
.h2{height:47.160000px;}
.h17{height:48.240000px;}
.hf{height:48.276000px;}
.h19{height:48.418594px;}
.h13{height:48.420000px;}
.h15{height:50.062500px;}
.h5{height:50.400000px;}
.h6{height:55.440000px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.h4{height:72.076975px;}
.h12{height:72.562500px;}
.h1d{height:74.004654px;}
.he{height:75.060000px;}
.h7{height:75.093750px;}
.h10{height:93.867188px;}
.h8{height:99.874688px;}
.h14{height:151.920000px;}
.h11{height:208.620000px;}
.h16{height:570.855000px;}
.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;}
.x15{left:34.596000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x13{left:45.000000px;}
.x17{left:53.100000px;}
.x18{left:57.240000px;}
.x10{left:77.400000px;}
.x3{left:84.959986px;}
.x14{left:88.590000px;}
.x7{left:115.380000px;}
.x19{left:167.429986px;}
.x1{left:315.434986px;}
.x12{left:351.255000px;}
.x2{left:458.894986px;}
.x4{left:495.105000px;}
.xf{left:576.644986px;}
.xc{left:636.405000px;}
.x8{left:724.650000px;}
.x16{left:734.190000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v3{vertical-align:-73.578667pt;}
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls1{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.252980pt;}
.ls9{letter-spacing:79.759360pt;}
.lsa{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;}
.ws8{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws9{word-spacing:-16.135573pt;}
.wsa{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.302684pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._10{width:2.131627pt;}
._6{width:3.234987pt;}
._5{width:4.357120pt;}
._c{width:5.788160pt;}
._8{width:6.712320pt;}
._a{width:7.948800pt;}
._4{width:9.303040pt;}
._9{width:11.069440pt;}
._14{width:12.011520pt;}
._e{width:14.149120pt;}
._d{width:15.367680pt;}
._13{width:20.033707pt;}
._b{width:21.060267pt;}
._7{width:22.625280pt;}
._11{width:30.719573pt;}
._12{width:33.285120pt;}
._f{width:126.847573pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs1{font-size:42.500587pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{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;}
.y3b{bottom:3.200000pt;}
.y59{bottom:3.520000pt;}
.y16{bottom:7.040000pt;}
.y18{bottom:7.200000pt;}
.y24{bottom:8.000000pt;}
.y33{bottom:8.160000pt;}
.y7{bottom:9.920000pt;}
.ya{bottom:12.800000pt;}
.ye{bottom:17.120000pt;}
.y5d{bottom:19.840000pt;}
.y2f{bottom:20.000000pt;}
.y58{bottom:21.440000pt;}
.y15{bottom:24.000000pt;}
.y1e{bottom:28.000000pt;}
.y6{bottom:32.000000pt;}
.y9{bottom:34.880000pt;}
.y2e{bottom:36.800000pt;}
.y3a{bottom:36.960000pt;}
.y57{bottom:38.240000pt;}
.yd{bottom:39.360000pt;}
.y1d{bottom:48.960000pt;}
.y4{bottom:51.360000pt;}
.y39{bottom:53.754667pt;}
.y2d{bottom:53.760000pt;}
.y56{bottom:55.200000pt;}
.y3{bottom:69.792000pt;}
.y38{bottom:70.554667pt;}
.y2c{bottom:70.560000pt;}
.y55{bottom:72.000000pt;}
.y2b{bottom:87.360000pt;}
.y37{bottom:87.514667pt;}
.y54{bottom:88.986667pt;}
.y34{bottom:95.552000pt;}
.y69{bottom:98.112000pt;}
.y36{bottom:104.314667pt;}
.y2a{bottom:104.320000pt;}
.y53{bottom:105.786667pt;}
.y29{bottom:121.120000pt;}
.y35{bottom:121.274667pt;}
.y52{bottom:122.746667pt;}
.y68{bottom:134.906667pt;}
.y28{bottom:138.080000pt;}
.y51{bottom:139.546667pt;}
.y67{bottom:153.306667pt;}
.y27{bottom:154.880000pt;}
.y50{bottom:156.346667pt;}
.y26{bottom:171.680000pt;}
.y66{bottom:171.866667pt;}
.y4f{bottom:173.306667pt;}
.y4e{bottom:190.106667pt;}
.y65{bottom:190.266667pt;}
.y4d{bottom:207.066667pt;}
.y64{bottom:208.666667pt;}
.y4c{bottom:223.866667pt;}
.y63{bottom:227.066667pt;}
.y32{bottom:231.226667pt;}
.y4b{bottom:240.666667pt;}
.y62{bottom:242.586667pt;}
.y4a{bottom:257.626667pt;}
.y61{bottom:260.026667pt;}
.y49{bottom:274.426667pt;}
.y60{bottom:277.626667pt;}
.y31{bottom:278.426667pt;}
.y48{bottom:291.386667pt;}
.y25{bottom:293.986667pt;}
.y5f{bottom:295.106667pt;}
.y47{bottom:308.226667pt;}
.y5e{bottom:312.706667pt;}
.y46{bottom:325.026667pt;}
.y5c{bottom:330.306667pt;}
.y45{bottom:358.786667pt;}
.y5b{bottom:364.706667pt;}
.y44{bottom:375.746667pt;}
.y43{bottom:392.546667pt;}
.y42{bottom:409.346667pt;}
.y5a{bottom:411.906667pt;}
.y41{bottom:426.306667pt;}
.y3c{bottom:427.426667pt;}
.y40{bottom:443.106667pt;}
.y3f{bottom:460.066667pt;}
.y3e{bottom:476.866667pt;}
.y23{bottom:480.226667pt;}
.y3d{bottom:493.666667pt;}
.y22{bottom:527.293333pt;}
.y21{bottom:542.973333pt;}
.y20{bottom:568.413333pt;}
.y1f{bottom:594.013333pt;}
.y1c{bottom:619.453333pt;}
.y1b{bottom:686.813333pt;}
.y1a{bottom:712.253333pt;}
.y19{bottom:737.893333pt;}
.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;}
.h1c{height:16.832000pt;}
.h1b{height:16.960000pt;}
.hc{height:24.800000pt;}
.hb{height:24.960000pt;}
.hd{height:24.992000pt;}
.h3{height:32.290485pt;}
.h18{height:33.600000pt;}
.h9{height:41.760000pt;}
.h2{height:41.920000pt;}
.h17{height:42.880000pt;}
.hf{height:42.912000pt;}
.h19{height:43.038750pt;}
.h13{height:43.040000pt;}
.h15{height:44.500000pt;}
.h5{height:44.800000pt;}
.h6{height:49.280000pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.h4{height:64.068422pt;}
.h12{height:64.500000pt;}
.h1d{height:65.781915pt;}
.he{height:66.720000pt;}
.h7{height:66.750000pt;}
.h10{height:83.437500pt;}
.h8{height:88.777500pt;}
.h14{height:135.040000pt;}
.h11{height:185.440000pt;}
.h16{height:507.426667pt;}
.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;}
.x15{left:30.752000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x13{left:40.000000pt;}
.x17{left:47.200000pt;}
.x18{left:50.880000pt;}
.x10{left:68.800000pt;}
.x3{left:75.519988pt;}
.x14{left:78.746667pt;}
.x7{left:102.560000pt;}
.x19{left:148.826655pt;}
.x1{left:280.386655pt;}
.x12{left:312.226667pt;}
.x2{left:407.906655pt;}
.x4{left:440.093333pt;}
.xf{left:512.573321pt;}
.xc{left:565.693333pt;}
.x8{left:644.133333pt;}
.x16{left:652.613333pt;}
}




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