
    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_2b56fb2e59085479e3a6e4b2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d32cdc42b70b6e16c495e5b1.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c59955c94fa24f85a4d67520.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_79ef01bfea6cb76310c23280.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ba45f6f667b611b70a6d7f5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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;}
.m3{transform:matrix(0.000000,-0.250849,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250849,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250849,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,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);}
.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);}
.v6{vertical-align:-29.861817px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:30.643992px;}
.ls7{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.143599px;}
.ls11{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.082822px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001543px;}
.lsd{letter-spacing:0.039448px;}
.lsc{letter-spacing:0.111752px;}
.ls2{letter-spacing:0.181200px;}
.ls1{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.325440px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls9{letter-spacing:4.320000px;}
.lsb{letter-spacing:239.765426px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wsa{word-spacing:-23.579820px;}
.wsb{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.305520px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.568000px;}
.ws8{word-spacing:-17.414966px;}
.ws0{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.412235px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:160.295434px;}
._a{margin-left:-4.320000px;}
._3{margin-left:-3.168000px;}
._0{margin-left:-1.301040px;}
._1{width:1.044000px;}
._b{width:2.292000px;}
._f{width:3.504000px;}
._c{width:4.680000px;}
._d{width:5.700000px;}
._e{width:6.936000px;}
._12{width:8.063760px;}
._6{width:9.315840px;}
._5{width:10.373040px;}
._4{width:11.448000px;}
._8{width:15.048000px;}
._9{width:16.176000px;}
._14{width:19.080000px;}
._10{width:26.424000px;}
._11{width:27.936000px;}
._7{width:31.320000px;}
._13{width:200.175862px;}
._2{width:845.885280px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:37.454084px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:50.895656px;}
.fs6{font-size:62.643763px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:70.812469px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs8{font-size:84.819497px;}
.fsa{font-size:85.107704px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:11.993866px;}
.y69{bottom:45.866778px;}
.y2{bottom:56.556000px;}
.y6a{bottom:64.505900px;}
.y1{bottom:75.456000px;}
.y6b{bottom:102.123076px;}
.y6c{bottom:139.655159px;}
.y79{bottom:145.784527px;}
.y6d{bottom:177.272334px;}
.y76{bottom:181.104214px;}
.y4d{bottom:184.890000px;}
.y75{bottom:200.338963px;}
.y4c{bottom:205.590000px;}
.y6e{bottom:214.807253px;}
.y74{bottom:219.572295px;}
.y4b{bottom:226.290000px;}
.y73{bottom:241.019402px;}
.y4a{bottom:246.990000px;}
.y6f{bottom:252.424427px;}
.y49{bottom:267.690000px;}
.y70{bottom:290.041602px;}
.y48{bottom:294.735000px;}
.y78{bottom:326.892948px;}
.y71{bottom:327.573685px;}
.y77{bottom:348.427983px;}
.y72{bottom:365.195114px;}
.y21{bottom:377.175000px;}
.y20{bottom:398.955000px;}
.y1f{bottom:420.735000px;}
.y1e{bottom:442.515000px;}
.y1d{bottom:464.475000px;}
.y1c{bottom:490.755000px;}
.y5a{bottom:498.135000px;}
.y1b{bottom:511.455000px;}
.y32{bottom:522.975000px;}
.y1a{bottom:525.315000px;}
.y59{bottom:529.095000px;}
.y31{bottom:544.755000px;}
.y19{bottom:546.015000px;}
.y58{bottom:560.235000px;}
.y30{bottom:566.565000px;}
.y18{bottom:566.745000px;}
.y80{bottom:566.925000px;}
.y2f{bottom:588.525000px;}
.y57{bottom:591.225000px;}
.y17{bottom:594.285000px;}
.y7f{bottom:602.565000px;}
.y16{bottom:608.145000px;}
.y41{bottom:615.345000px;}
.y66{bottom:621.645000px;}
.y56{bottom:622.365000px;}
.y2e{bottom:622.905000px;}
.y7e{bottom:623.265000px;}
.y89{bottom:633.705000px;}
.y15{bottom:635.685000px;}
.y2d{bottom:643.605000px;}
.y7d{bottom:643.965000px;}
.y40{bottom:646.305000px;}
.y14{bottom:649.545000px;}
.y65{bottom:652.605000px;}
.y55{bottom:653.325000px;}
.y2c{bottom:664.305000px;}
.y7c{bottom:664.665000px;}
.y88{bottom:664.845000px;}
.y64{bottom:673.305000px;}
.y13{bottom:677.085000px;}
.y3f{bottom:677.445000px;}
.y2b{bottom:683.925000px;}
.y54{bottom:684.465000px;}
.y7b{bottom:685.365000px;}
.y87{bottom:685.545000px;}
.y47{bottom:687.705000px;}
.y12{bottom:690.945000px;}
.y63{bottom:694.005000px;}
.y67{bottom:705.165000px;}
.y86{bottom:706.245000px;}
.y68{bottom:706.486940px;}
.y3e{bottom:708.405000px;}
.y11{bottom:711.645000px;}
.y62{bottom:714.705000px;}
.y53{bottom:715.425000px;}
.y85{bottom:726.945000px;}
.y46{bottom:729.105000px;}
.y61{bottom:735.405000px;}
.y10{bottom:739.185000px;}
.y2a{bottom:739.365000px;}
.y3d{bottom:739.545000px;}
.y52{bottom:746.565000px;}
.y84{bottom:747.645000px;}
.y45{bottom:749.805000px;}
.yf{bottom:753.045000px;}
.y60{bottom:756.105000px;}
.y3c{bottom:760.245000px;}
.y29{bottom:761.325000px;}
.y51{bottom:767.265000px;}
.y83{bottom:768.345000px;}
.y5f{bottom:776.805000px;}
.ye{bottom:780.585000px;}
.y44{bottom:780.765000px;}
.y3b{bottom:780.945000px;}
.y28{bottom:783.105000px;}
.y50{bottom:787.965000px;}
.y82{bottom:789.045000px;}
.yd{bottom:794.445000px;}
.y5e{bottom:797.505000px;}
.y3a{bottom:801.645000px;}
.y27{bottom:804.885000px;}
.y43{bottom:807.765000px;}
.y4f{bottom:808.665000px;}
.yc{bottom:815.145000px;}
.y81{bottom:817.305000px;}
.y5d{bottom:819.465000px;}
.y39{bottom:822.345000px;}
.y26{bottom:824.325000px;}
.y5c{bottom:840.165000px;}
.yb{bottom:842.685000px;}
.y38{bottom:843.045000px;}
.y4e{bottom:843.945000px;}
.y25{bottom:845.025000px;}
.y37{bottom:863.790000px;}
.y24{bottom:865.770000px;}
.y5b{bottom:867.390000px;}
.ya{bottom:877.470000px;}
.y36{bottom:884.490000px;}
.y23{bottom:886.470000px;}
.y9{bottom:898.170000px;}
.y35{bottom:905.190000px;}
.y22{bottom:906.090000px;}
.y8{bottom:918.870000px;}
.y34{bottom:932.190000px;}
.y7{bottom:970.890000px;}
.y6{bottom:1005.450000px;}
.y5{bottom:1044.330000px;}
.y4{bottom:1091.670000px;}
.y3{bottom:1137.060000px;}
.y42{bottom:1139.940000px;}
.y33{bottom:1141.200000px;}
.h8{height:33.683203px;}
.he{height:45.789899px;}
.h2{height:48.418594px;}
.h6{height:50.273438px;}
.h4{height:50.800781px;}
.hb{height:51.760872px;}
.h9{height:52.628906px;}
.hd{height:58.009973px;}
.hc{height:58.021318px;}
.h3{height:59.436914px;}
.h7{height:61.043203px;}
.hf{height:61.999408px;}
.h10{height:62.210075px;}
.h5{height:63.500977px;}
.ha{height:418.977084px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:545.534741px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:54.450309px;}
.x11{left:67.853352px;}
.x10{left:77.689035px;}
.x2{left:84.959987px;}
.x5{left:87.479987px;}
.xf{left:129.769100px;}
.x13{left:142.489466px;}
.xd{left:170.489987px;}
.xe{left:175.065035px;}
.x15{left:206.865915px;}
.x3{left:296.714987px;}
.x6{left:304.814987px;}
.x12{left:317.295768px;}
.x4{left:446.474987px;}
.x7{left:701.429987px;}
.x16{left:722.309987px;}
.xc{left:773.249987px;}
.x9{left:774.509987px;}
.x17{left:778.649987px;}
.x1{left:787.829987px;}
.xb{left:793.589987px;}
.x8{left:822.209987px;}
.x18{left:842.729987px;}
.xa{left:849.209987px;}
@media print{
.v6{vertical-align:-26.543837pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:27.239104pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.127644pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.073619pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.001372pt;}
.lsd{letter-spacing:0.035065pt;}
.lsc{letter-spacing:0.099335pt;}
.ls2{letter-spacing:0.161067pt;}
.ls1{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.289280pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls9{letter-spacing:3.840000pt;}
.lsb{letter-spacing:213.124823pt;}
.ws6{word-spacing:-64.000000pt;}
.wsa{word-spacing:-20.959840pt;}
.wsb{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.271573pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.616000pt;}
.ws8{word-spacing:-15.479970pt;}
.ws0{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.255320pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:142.484830pt;}
._a{margin-left:-3.840000pt;}
._3{margin-left:-2.816000pt;}
._0{margin-left:-1.156480pt;}
._1{width:0.928000pt;}
._b{width:2.037333pt;}
._f{width:3.114667pt;}
._c{width:4.160000pt;}
._d{width:5.066667pt;}
._e{width:6.165333pt;}
._12{width:7.167787pt;}
._6{width:8.280747pt;}
._5{width:9.220480pt;}
._4{width:10.176000pt;}
._8{width:13.376000pt;}
._9{width:14.378667pt;}
._14{width:16.960000pt;}
._10{width:23.488000pt;}
._11{width:24.832000pt;}
._7{width:27.840000pt;}
._13{width:177.934099pt;}
._2{width:751.898027pt;}
.fs7{font-size:33.292519pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:45.240583pt;}
.fs6{font-size:55.683345pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.944417pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs8{font-size:75.395109pt;}
.fsa{font-size:75.651293pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:10.661214pt;}
.y69{bottom:40.770469pt;}
.y2{bottom:50.272000pt;}
.y6a{bottom:57.338578pt;}
.y1{bottom:67.072000pt;}
.y6b{bottom:90.776068pt;}
.y6c{bottom:124.137920pt;}
.y79{bottom:129.586246pt;}
.y6d{bottom:157.575408pt;}
.y76{bottom:160.981523pt;}
.y4d{bottom:164.346667pt;}
.y75{bottom:178.079078pt;}
.y4c{bottom:182.746667pt;}
.y6e{bottom:190.939781pt;}
.y74{bottom:195.175373pt;}
.y4b{bottom:201.146667pt;}
.y73{bottom:214.239468pt;}
.y4a{bottom:219.546667pt;}
.y6f{bottom:224.377269pt;}
.y49{bottom:237.946667pt;}
.y70{bottom:257.814757pt;}
.y48{bottom:261.986667pt;}
.y78{bottom:290.571510pt;}
.y71{bottom:291.176609pt;}
.y77{bottom:309.713763pt;}
.y72{bottom:324.617879pt;}
.y21{bottom:335.266667pt;}
.y20{bottom:354.626667pt;}
.y1f{bottom:373.986667pt;}
.y1e{bottom:393.346667pt;}
.y1d{bottom:412.866667pt;}
.y1c{bottom:436.226667pt;}
.y5a{bottom:442.786667pt;}
.y1b{bottom:454.626667pt;}
.y32{bottom:464.866667pt;}
.y1a{bottom:466.946667pt;}
.y59{bottom:470.306667pt;}
.y31{bottom:484.226667pt;}
.y19{bottom:485.346667pt;}
.y58{bottom:497.986667pt;}
.y30{bottom:503.613333pt;}
.y18{bottom:503.773333pt;}
.y80{bottom:503.933333pt;}
.y2f{bottom:523.133333pt;}
.y57{bottom:525.533333pt;}
.y17{bottom:528.253333pt;}
.y7f{bottom:535.613333pt;}
.y16{bottom:540.573333pt;}
.y41{bottom:546.973333pt;}
.y66{bottom:552.573333pt;}
.y56{bottom:553.213333pt;}
.y2e{bottom:553.693333pt;}
.y7e{bottom:554.013333pt;}
.y89{bottom:563.293333pt;}
.y15{bottom:565.053333pt;}
.y2d{bottom:572.093333pt;}
.y7d{bottom:572.413333pt;}
.y40{bottom:574.493333pt;}
.y14{bottom:577.373333pt;}
.y65{bottom:580.093333pt;}
.y55{bottom:580.733333pt;}
.y2c{bottom:590.493333pt;}
.y7c{bottom:590.813333pt;}
.y88{bottom:590.973333pt;}
.y64{bottom:598.493333pt;}
.y13{bottom:601.853333pt;}
.y3f{bottom:602.173333pt;}
.y2b{bottom:607.933333pt;}
.y54{bottom:608.413333pt;}
.y7b{bottom:609.213333pt;}
.y87{bottom:609.373333pt;}
.y47{bottom:611.293333pt;}
.y12{bottom:614.173333pt;}
.y63{bottom:616.893333pt;}
.y67{bottom:626.813333pt;}
.y86{bottom:627.773333pt;}
.y68{bottom:627.988391pt;}
.y3e{bottom:629.693333pt;}
.y11{bottom:632.573333pt;}
.y62{bottom:635.293333pt;}
.y53{bottom:635.933333pt;}
.y85{bottom:646.173333pt;}
.y46{bottom:648.093333pt;}
.y61{bottom:653.693333pt;}
.y10{bottom:657.053333pt;}
.y2a{bottom:657.213333pt;}
.y3d{bottom:657.373333pt;}
.y52{bottom:663.613333pt;}
.y84{bottom:664.573333pt;}
.y45{bottom:666.493333pt;}
.yf{bottom:669.373333pt;}
.y60{bottom:672.093333pt;}
.y3c{bottom:675.773333pt;}
.y29{bottom:676.733333pt;}
.y51{bottom:682.013333pt;}
.y83{bottom:682.973333pt;}
.y5f{bottom:690.493333pt;}
.ye{bottom:693.853333pt;}
.y44{bottom:694.013333pt;}
.y3b{bottom:694.173333pt;}
.y28{bottom:696.093333pt;}
.y50{bottom:700.413333pt;}
.y82{bottom:701.373333pt;}
.yd{bottom:706.173333pt;}
.y5e{bottom:708.893333pt;}
.y3a{bottom:712.573333pt;}
.y27{bottom:715.453333pt;}
.y43{bottom:718.013333pt;}
.y4f{bottom:718.813333pt;}
.yc{bottom:724.573333pt;}
.y81{bottom:726.493333pt;}
.y5d{bottom:728.413333pt;}
.y39{bottom:730.973333pt;}
.y26{bottom:732.733333pt;}
.y5c{bottom:746.813333pt;}
.yb{bottom:749.053333pt;}
.y38{bottom:749.373333pt;}
.y4e{bottom:750.173333pt;}
.y25{bottom:751.133333pt;}
.y37{bottom:767.813333pt;}
.y24{bottom:769.573333pt;}
.y5b{bottom:771.013333pt;}
.ya{bottom:779.973333pt;}
.y36{bottom:786.213333pt;}
.y23{bottom:787.973333pt;}
.y9{bottom:798.373333pt;}
.y35{bottom:804.613333pt;}
.y22{bottom:805.413333pt;}
.y8{bottom:816.773333pt;}
.y34{bottom:828.613333pt;}
.y7{bottom:863.013333pt;}
.y6{bottom:893.733333pt;}
.y5{bottom:928.293333pt;}
.y4{bottom:970.373333pt;}
.y3{bottom:1010.720000pt;}
.y42{bottom:1013.280000pt;}
.y33{bottom:1014.400000pt;}
.h8{height:29.940625pt;}
.he{height:40.702132pt;}
.h2{height:43.038750pt;}
.h6{height:44.687500pt;}
.h4{height:45.156250pt;}
.hb{height:46.009664pt;}
.h9{height:46.781250pt;}
.hd{height:51.564420pt;}
.hc{height:51.574505pt;}
.h3{height:52.832812pt;}
.h7{height:54.260625pt;}
.hf{height:55.110585pt;}
.h10{height:55.297844pt;}
.h5{height:56.445312pt;}
.ha{height:372.424074pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:484.919769pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:48.400274pt;}
.x11{left:60.314091pt;}
.x10{left:69.056920pt;}
.x2{left:75.519988pt;}
.x5{left:77.759988pt;}
.xf{left:115.350311pt;}
.x13{left:126.657303pt;}
.xd{left:151.546655pt;}
.xe{left:155.613364pt;}
.x15{left:183.880813pt;}
.x3{left:263.746655pt;}
.x6{left:270.946655pt;}
.x12{left:282.040682pt;}
.x4{left:396.866655pt;}
.x7{left:623.493322pt;}
.x16{left:642.053322pt;}
.xc{left:687.333322pt;}
.x9{left:688.453322pt;}
.x17{left:692.133322pt;}
.x1{left:700.293322pt;}
.xb{left:705.413322pt;}
.x8{left:730.853322pt;}
.x18{left:749.093322pt;}
.xa{left:754.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; }
  