
    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_528d3fc3ceb4e19c2393444f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_87942b23a8eebf4880dab2e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9901891882fe51ad0956c926.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_7156fd069c469dc433074964.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_3df53ddd741dee8bb7f2154b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_aaad50c594ce84104f5213bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_3c1e91e8fe3752e3f8317439.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.213000;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_01d16af3bf871659b6636c9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_5727e50be5e17e882bac68d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7156fd069c469dc433074964.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_008324f9d5b907a22251628c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f7d3fa956f1b10b66a9c4ca7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.239000;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);}
.v2{vertical-align:-19.200006px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.360000px;}
.ls2{letter-spacing:30.703191px;}
.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;}
}
.ws1{word-spacing:-13.296000px;}
.ws3{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.000000px;}
.ws2{word-spacing:-9.408000px;}
.ws7{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.400000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:1.776000px;}
.wsb{word-spacing:2.064000px;}
.ws6{word-spacing:2.820000px;}
.ws5{word-spacing:2.832000px;}
.ws9{word-spacing:3.480000px;}
._b{margin-left:-66.351585px;}
._1{margin-left:-5.100000px;}
._4{margin-left:-3.227999px;}
._0{margin-left:-1.920000px;}
._8{width:1.056000px;}
._9{width:2.268000px;}
._6{width:3.282000px;}
._5{width:4.314000px;}
._3{width:5.382000px;}
._7{width:6.576000px;}
._2{width:7.662000px;}
._a{width:8.910001px;}
._c{width:56.255991px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:46.736100px;}
.y76{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y75{bottom:90.425102px;}
.y46{bottom:94.801352px;}
.y4{bottom:97.125005px;}
.y74{bottom:108.425102px;}
.y45{bottom:119.133305px;}
.y73{bottom:126.425102px;}
.y44{bottom:133.383305px;}
.y21{bottom:139.264499px;}
.y82{bottom:139.551600px;}
.y72{bottom:144.425102px;}
.y81{bottom:153.801600px;}
.y71{bottom:162.425102px;}
.y70{bottom:180.425102px;}
.y80{bottom:181.926600px;}
.y7f{bottom:196.176590px;}
.y18{bottom:196.933500px;}
.y6f{bottom:198.425102px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y7e{bottom:210.426590px;}
.y3e{bottom:212.173210px;}
.y6e{bottom:216.425102px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y7d{bottom:224.676590px;}
.y3d{bottom:230.173210px;}
.y6d{bottom:234.425102px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y7c{bottom:238.926590px;}
.y3c{bottom:248.173210px;}
.y6c{bottom:252.425102px;}
.y7b{bottom:253.176590px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y3b{bottom:266.173210px;}
.y7a{bottom:267.426590px;}
.y6b{bottom:270.425102px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y79{bottom:281.676590px;}
.y3a{bottom:284.173210px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y6a{bottom:288.425102px;}
.y78{bottom:295.926590px;}
.y39{bottom:302.173210px;}
.y69{bottom:306.425102px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y38{bottom:320.173210px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y68{bottom:324.425102px;}
.y77{bottom:328.175102px;}
.y37{bottom:338.173210px;}
.y67{bottom:342.425102px;}
.yf{bottom:348.133500px;}
.y36{bottom:356.173210px;}
.y66{bottom:360.425102px;}
.y35{bottom:374.173210px;}
.y65{bottom:378.425102px;}
.ye{bottom:386.785499px;}
.y34{bottom:392.173187px;}
.y64{bottom:396.425079px;}
.yd{bottom:408.044999px;}
.y33{bottom:410.173187px;}
.y63{bottom:414.425079px;}
.y32{bottom:428.173187px;}
.y62{bottom:432.425079px;}
.y31{bottom:446.173187px;}
.y61{bottom:450.425079px;}
.y30{bottom:464.173187px;}
.y60{bottom:468.425079px;}
.y2f{bottom:482.173187px;}
.y5f{bottom:486.425079px;}
.y2e{bottom:500.173187px;}
.yc{bottom:502.864502px;}
.y5e{bottom:504.425079px;}
.y2d{bottom:518.173187px;}
.yb{bottom:520.864502px;}
.y5d{bottom:522.425079px;}
.y2c{bottom:536.173187px;}
.ya{bottom:538.864499px;}
.y5c{bottom:540.425079px;}
.y2b{bottom:554.173187px;}
.y9{bottom:556.864499px;}
.y5b{bottom:558.425079px;}
.y2a{bottom:572.173187px;}
.y5a{bottom:576.425079px;}
.y29{bottom:590.173187px;}
.y59{bottom:594.425079px;}
.y28{bottom:608.173187px;}
.y58{bottom:612.425079px;}
.y27{bottom:626.173187px;}
.y57{bottom:630.425079px;}
.y26{bottom:644.173187px;}
.y8{bottom:645.510000px;}
.y56{bottom:648.425079px;}
.y25{bottom:662.173187px;}
.y55{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.y54{bottom:684.425079px;}
.y53{bottom:702.425079px;}
.y52{bottom:720.425079px;}
.y40{bottom:725.096420px;}
.y6{bottom:726.298500px;}
.y51{bottom:738.425079px;}
.y3f{bottom:739.346420px;}
.y3{bottom:752.599495px;}
.y50{bottom:756.425079px;}
.y4f{bottom:774.425079px;}
.y43{bottom:781.237244px;}
.y4e{bottom:792.425079px;}
.y4d{bottom:810.425079px;}
.y42{bottom:823.686035px;}
.y4c{bottom:828.425079px;}
.y41{bottom:846.186035px;}
.y4b{bottom:846.425079px;}
.y4a{bottom:864.425079px;}
.y2{bottom:879.369000px;}
.y49{bottom:882.425079px;}
.y22{bottom:899.681122px;}
.y48{bottom:900.425079px;}
.y24{bottom:924.938965px;}
.y23{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h11{height:23.346094px;}
.h7{height:32.130000px;}
.h10{height:33.351562px;}
.hf{height:34.687500px;}
.hc{height:41.689453px;}
.hb{height:45.456000px;}
.h6{height:45.900000px;}
.h13{height:46.224000px;}
.ha{height:46.656000px;}
.h14{height:47.472000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.he{height:64.824000px;}
.h12{height:72.000000px;}
.hd{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.x8{left:90.123299px;}
.x7{left:93.543303px;}
.x9{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.xa{left:521.162704px;}
.xb{left:541.003052px;}
.xc{left:565.923019px;}
@media print{
.v2{vertical-align:-17.066672pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls2{letter-spacing:27.291725pt;}
.ws1{word-spacing:-11.818667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws7{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.466667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:1.578667pt;}
.wsb{word-spacing:1.834667pt;}
.ws6{word-spacing:2.506667pt;}
.ws5{word-spacing:2.517333pt;}
.ws9{word-spacing:3.093333pt;}
._b{margin-left:-58.979187pt;}
._1{margin-left:-4.533333pt;}
._4{margin-left:-2.869332pt;}
._0{margin-left:-1.706667pt;}
._8{width:0.938667pt;}
._9{width:2.016000pt;}
._6{width:2.917333pt;}
._5{width:3.834667pt;}
._3{width:4.784000pt;}
._7{width:5.845334pt;}
._2{width:6.810667pt;}
._a{width:7.920001pt;}
._c{width:50.005325pt;}
.fs7{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:41.543200pt;}
.y76{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y75{bottom:80.377869pt;}
.y46{bottom:84.267868pt;}
.y4{bottom:86.333337pt;}
.y74{bottom:96.377869pt;}
.y45{bottom:105.896271pt;}
.y73{bottom:112.377869pt;}
.y44{bottom:118.562937pt;}
.y21{bottom:123.790666pt;}
.y82{bottom:124.045867pt;}
.y72{bottom:128.377869pt;}
.y81{bottom:136.712533pt;}
.y71{bottom:144.377869pt;}
.y70{bottom:160.377869pt;}
.y80{bottom:161.712533pt;}
.y7f{bottom:174.379191pt;}
.y18{bottom:175.052000pt;}
.y6f{bottom:176.377869pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y7e{bottom:187.045858pt;}
.y3e{bottom:188.598409pt;}
.y6e{bottom:192.377869pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y7d{bottom:199.712524pt;}
.y3d{bottom:204.598409pt;}
.y6d{bottom:208.377869pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y7c{bottom:212.379191pt;}
.y3c{bottom:220.598409pt;}
.y6c{bottom:224.377869pt;}
.y7b{bottom:225.045858pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y3b{bottom:236.598409pt;}
.y7a{bottom:237.712524pt;}
.y6b{bottom:240.377869pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y79{bottom:250.379191pt;}
.y3a{bottom:252.598409pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y6a{bottom:256.377869pt;}
.y78{bottom:263.045858pt;}
.y39{bottom:268.598409pt;}
.y69{bottom:272.377869pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y38{bottom:284.598409pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y68{bottom:288.377869pt;}
.y77{bottom:291.711202pt;}
.y37{bottom:300.598409pt;}
.y67{bottom:304.377869pt;}
.yf{bottom:309.452000pt;}
.y36{bottom:316.598409pt;}
.y66{bottom:320.377869pt;}
.y35{bottom:332.598409pt;}
.y65{bottom:336.377869pt;}
.ye{bottom:343.809333pt;}
.y34{bottom:348.598389pt;}
.y64{bottom:352.377848pt;}
.yd{bottom:362.706666pt;}
.y33{bottom:364.598389pt;}
.y63{bottom:368.377848pt;}
.y32{bottom:380.598389pt;}
.y62{bottom:384.377848pt;}
.y31{bottom:396.598389pt;}
.y61{bottom:400.377848pt;}
.y30{bottom:412.598389pt;}
.y60{bottom:416.377848pt;}
.y2f{bottom:428.598389pt;}
.y5f{bottom:432.377848pt;}
.y2e{bottom:444.598389pt;}
.yc{bottom:446.990669pt;}
.y5e{bottom:448.377848pt;}
.y2d{bottom:460.598389pt;}
.yb{bottom:462.990669pt;}
.y5d{bottom:464.377848pt;}
.y2c{bottom:476.598389pt;}
.ya{bottom:478.990666pt;}
.y5c{bottom:480.377848pt;}
.y2b{bottom:492.598389pt;}
.y9{bottom:494.990666pt;}
.y5b{bottom:496.377848pt;}
.y2a{bottom:508.598389pt;}
.y5a{bottom:512.377848pt;}
.y29{bottom:524.598389pt;}
.y59{bottom:528.377848pt;}
.y28{bottom:540.598389pt;}
.y58{bottom:544.377848pt;}
.y27{bottom:556.598389pt;}
.y57{bottom:560.377848pt;}
.y26{bottom:572.598389pt;}
.y8{bottom:573.786667pt;}
.y56{bottom:576.377848pt;}
.y25{bottom:588.598389pt;}
.y55{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.y54{bottom:608.377848pt;}
.y53{bottom:624.377848pt;}
.y52{bottom:640.377848pt;}
.y40{bottom:644.530151pt;}
.y6{bottom:645.598667pt;}
.y51{bottom:656.377848pt;}
.y3f{bottom:657.196818pt;}
.y3{bottom:668.977329pt;}
.y50{bottom:672.377848pt;}
.y4f{bottom:688.377848pt;}
.y43{bottom:694.433105pt;}
.y4e{bottom:704.377848pt;}
.y4d{bottom:720.377848pt;}
.y42{bottom:732.165365pt;}
.y4c{bottom:736.377848pt;}
.y41{bottom:752.165365pt;}
.y4b{bottom:752.377848pt;}
.y4a{bottom:768.377848pt;}
.y2{bottom:781.661334pt;}
.y49{bottom:784.377848pt;}
.y22{bottom:799.716553pt;}
.y48{bottom:800.377848pt;}
.y24{bottom:822.167969pt;}
.y23{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h11{height:20.752083pt;}
.h7{height:28.560000pt;}
.h10{height:29.645833pt;}
.hf{height:30.833333pt;}
.hc{height:37.057292pt;}
.hb{height:40.405333pt;}
.h6{height:40.800000pt;}
.h13{height:41.088000pt;}
.ha{height:41.472000pt;}
.h14{height:42.197333pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.he{height:57.621333pt;}
.h12{height:64.000000pt;}
.hd{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.x8{left:80.109599pt;}
.x7{left:83.149602pt;}
.x9{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.xa{left:463.255737pt;}
.xb{left:480.891602pt;}
.xc{left:503.042684pt;}
}




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