
    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_aa608edc120b8ef20b9d5eee.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_2ba74923a7b7b43aebc3721a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.237305;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_24d5326ee9f5c918c69bed6b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_85840756961481d9d512176a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_f646925d7578542b7aacbf46.woff')format("woff");}.ff5{font-family:ff5;line-height:1.237305;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_ddb93ba98c1568aa38c1db02.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.604000px;}
.lsf{letter-spacing:-2.277000px;}
.lse{letter-spacing:-1.587000px;}
.ls8{letter-spacing:-1.176000px;}
.ls1{letter-spacing:-0.441000px;}
.ls7{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:1.918200px;}
.lsb{letter-spacing:2.400000px;}
.ls10{letter-spacing:4.347000px;}
.lsd{letter-spacing:5.460000px;}
.ls3{letter-spacing:5.760000px;}
.ls2{letter-spacing:6.000000px;}
.ls11{letter-spacing:6.300000px;}
.ls14{letter-spacing:7.275000px;}
.ls13{letter-spacing:7.849800px;}
.ls12{letter-spacing:7.887600px;}
.ls4{letter-spacing:8.400000px;}
.lsc{letter-spacing:8.550000px;}
.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;}
}
.wsa{word-spacing:-29.625000px;}
.ws14{word-spacing:-28.350000px;}
.ws10{word-spacing:-22.050000px;}
.ws1{word-spacing:-18.144000px;}
.ws11{word-spacing:-17.703000px;}
.wsb{word-spacing:-17.262000px;}
.wsd{word-spacing:-17.043000px;}
.ws0{word-spacing:-17.040000px;}
.wsc{word-spacing:-15.456000px;}
.ws15{word-spacing:-14.820000px;}
.wse{word-spacing:-14.766000px;}
.ws6{word-spacing:-8.400000px;}
.ws12{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws5{word-spacing:-5.760000px;}
.wsf{word-spacing:-2.400000px;}
.ws13{word-spacing:-1.323000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.ws3{word-spacing:0.441000px;}
.ws9{word-spacing:1.176000px;}
.ws16{word-spacing:9.009000px;}
._22{margin-left:-17.075400px;}
._d{margin-left:-9.859500px;}
._e{margin-left:-8.702400px;}
._c{margin-left:-6.831600px;}
._7{margin-left:-5.395200px;}
._9{margin-left:-4.182000px;}
._8{margin-left:-2.496000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._5{width:2.973600px;}
._4{width:4.025100px;}
._6{width:5.826000px;}
._a{width:7.566000px;}
._b{width:8.850000px;}
._19{width:9.918000px;}
._1a{width:11.139000px;}
._f{width:12.185400px;}
._10{width:14.151900px;}
._17{width:15.704700px;}
._16{width:16.986000px;}
._1b{width:18.254400px;}
._20{width:21.045000px;}
._1e{width:23.174700px;}
._11{width:25.281600px;}
._1c{width:26.792100px;}
._13{width:28.348500px;}
._12{width:29.711400px;}
._1d{width:31.643400px;}
._14{width:61.541100px;}
._15{width:63.039600px;}
._18{width:444.588000px;}
._21{width:448.450200px;}
._0{width:578.400000px;}
._3{width:940.057200px;}
._1f{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y21{bottom:106.180200px;}
.y6d{bottom:106.253550px;}
.y49{bottom:106.268850px;}
.y20{bottom:126.448950px;}
.y6c{bottom:126.586800px;}
.y48{bottom:127.227600px;}
.y1f{bottom:146.717700px;}
.y6b{bottom:146.920050px;}
.y47{bottom:148.186350px;}
.y1e{bottom:166.986450px;}
.y46{bottom:169.145100px;}
.y6a{bottom:175.758300px;}
.y1d{bottom:187.255200px;}
.y45{bottom:190.103850px;}
.y69{bottom:196.091550px;}
.y1c{bottom:207.523950px;}
.y44{bottom:211.062600px;}
.y68{bottom:224.929800px;}
.y1b{bottom:227.792700px;}
.y43{bottom:232.021350px;}
.y67{bottom:245.263050px;}
.y1a{bottom:248.061450px;}
.y42{bottom:252.980100px;}
.y19{bottom:268.330200px;}
.y41{bottom:273.938850px;}
.y66{bottom:274.101300px;}
.y18{bottom:288.598950px;}
.y65{bottom:294.434550px;}
.y40{bottom:294.897600px;}
.y17{bottom:308.867700px;}
.y64{bottom:314.767800px;}
.y3f{bottom:315.856350px;}
.y16{bottom:329.136450px;}
.y63{bottom:335.101050px;}
.y3e{bottom:336.815100px;}
.y15{bottom:349.405200px;}
.y62{bottom:355.434300px;}
.y3d{bottom:357.773850px;}
.y14{bottom:369.673950px;}
.y83{bottom:378.427350px;}
.y3c{bottom:378.732600px;}
.y61{bottom:384.272550px;}
.y13{bottom:389.942700px;}
.y82{bottom:398.677350px;}
.y3b{bottom:399.691350px;}
.y12{bottom:410.211450px;}
.y81{bottom:418.927350px;}
.y3a{bottom:420.650100px;}
.y11{bottom:430.480200px;}
.y80{bottom:439.177350px;}
.y39{bottom:441.608850px;}
.y60{bottom:455.270850px;}
.y7f{bottom:459.427350px;}
.y38{bottom:462.567600px;}
.y5f{bottom:475.608600px;}
.y7e{bottom:479.677350px;}
.y10{bottom:480.501600px;}
.y37{bottom:483.526350px;}
.y5e{bottom:495.946350px;}
.yf{bottom:501.516600px;}
.y36{bottom:504.485100px;}
.y5d{bottom:516.284100px;}
.y7d{bottom:520.177350px;}
.y35{bottom:525.443850px;}
.y5c{bottom:536.621850px;}
.y7c{bottom:540.427350px;}
.y34{bottom:546.402600px;}
.ye{bottom:552.281850px;}
.y5b{bottom:556.959600px;}
.y7b{bottom:560.677350px;}
.y33{bottom:567.361350px;}
.y5a{bottom:577.297350px;}
.y7a{bottom:580.927350px;}
.yd{bottom:583.802850px;}
.y32{bottom:588.320100px;}
.y59{bottom:597.635100px;}
.y79{bottom:601.177350px;}
.y31{bottom:609.278850px;}
.yc{bottom:615.316500px;}
.y58{bottom:617.972850px;}
.y78{bottom:621.427350px;}
.y30{bottom:630.237600px;}
.y57{bottom:638.310600px;}
.yb{bottom:646.825500px;}
.y2f{bottom:651.196350px;}
.y77{bottom:654.427350px;}
.y56{bottom:658.648350px;}
.y2e{bottom:672.155100px;}
.ya{bottom:678.336750px;}
.y55{bottom:678.986100px;}
.y2d{bottom:693.113850px;}
.y76{bottom:695.893350px;}
.y54{bottom:699.323850px;}
.y2c{bottom:714.072600px;}
.y75{bottom:716.147850px;}
.y53{bottom:719.661600px;}
.y2b{bottom:735.031350px;}
.y74{bottom:736.402350px;}
.y9{bottom:739.587600px;}
.y52{bottom:739.999350px;}
.y2a{bottom:755.990100px;}
.y51{bottom:760.337100px;}
.y73{bottom:765.161850px;}
.y8{bottom:769.107600px;}
.y29{bottom:776.948850px;}
.y50{bottom:780.674850px;}
.y72{bottom:785.416350px;}
.y7{bottom:790.122600px;}
.y28{bottom:797.907600px;}
.y4f{bottom:801.012600px;}
.y6{bottom:811.137600px;}
.y71{bottom:814.175850px;}
.y27{bottom:818.866350px;}
.y4e{bottom:821.350350px;}
.y70{bottom:834.430350px;}
.y26{bottom:839.825100px;}
.y5{bottom:840.657600px;}
.y4d{bottom:841.688100px;}
.y6f{bottom:854.684850px;}
.y25{bottom:860.783850px;}
.y4{bottom:861.672600px;}
.y4c{bottom:862.025850px;}
.y24{bottom:881.742600px;}
.y4b{bottom:882.363600px;}
.y3{bottom:882.687600px;}
.y6e{bottom:883.444350px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.y4a{bottom:966.189000px;}
.h9{height:40.757812px;}
.hc{height:43.466309px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h8{height:58.589355px;}
.hb{height:58.798828px;}
.hd{height:61.738770px;}
.h2{height:63.684082px;}
.ha{height:67.618652px;}
.h5{height:71.326172px;}
.h7{height:82.318359px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.808550px;}
.x6{left:83.914200px;}
.x1{left:85.039350px;}
.x3{left:104.353800px;}
.x4{left:105.613050px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.314667pt;}
.lsf{letter-spacing:-2.024000pt;}
.lse{letter-spacing:-1.410667pt;}
.ls8{letter-spacing:-1.045333pt;}
.ls1{letter-spacing:-0.392000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:1.705067pt;}
.lsb{letter-spacing:2.133333pt;}
.ls10{letter-spacing:3.864000pt;}
.lsd{letter-spacing:4.853333pt;}
.ls3{letter-spacing:5.120000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls11{letter-spacing:5.600000pt;}
.ls14{letter-spacing:6.466667pt;}
.ls13{letter-spacing:6.977600pt;}
.ls12{letter-spacing:7.011200pt;}
.ls4{letter-spacing:7.466667pt;}
.lsc{letter-spacing:7.600000pt;}
.wsa{word-spacing:-26.333333pt;}
.ws14{word-spacing:-25.200000pt;}
.ws10{word-spacing:-19.600000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws11{word-spacing:-15.736000pt;}
.wsb{word-spacing:-15.344000pt;}
.wsd{word-spacing:-15.149333pt;}
.ws0{word-spacing:-15.146667pt;}
.wsc{word-spacing:-13.738667pt;}
.ws15{word-spacing:-13.173333pt;}
.wse{word-spacing:-13.125333pt;}
.ws6{word-spacing:-7.466667pt;}
.ws12{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws5{word-spacing:-5.120000pt;}
.wsf{word-spacing:-2.133333pt;}
.ws13{word-spacing:-1.176000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.ws3{word-spacing:0.392000pt;}
.ws9{word-spacing:1.045333pt;}
.ws16{word-spacing:8.008000pt;}
._22{margin-left:-15.178133pt;}
._d{margin-left:-8.764000pt;}
._e{margin-left:-7.735467pt;}
._c{margin-left:-6.072533pt;}
._7{margin-left:-4.795733pt;}
._9{margin-left:-3.717333pt;}
._8{margin-left:-2.218667pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._5{width:2.643200pt;}
._4{width:3.577867pt;}
._6{width:5.178667pt;}
._a{width:6.725333pt;}
._b{width:7.866667pt;}
._19{width:8.816000pt;}
._1a{width:9.901333pt;}
._f{width:10.831467pt;}
._10{width:12.579467pt;}
._17{width:13.959733pt;}
._16{width:15.098667pt;}
._1b{width:16.226133pt;}
._20{width:18.706667pt;}
._1e{width:20.599733pt;}
._11{width:22.472533pt;}
._1c{width:23.815200pt;}
._13{width:25.198667pt;}
._12{width:26.410133pt;}
._1d{width:28.127467pt;}
._14{width:54.703200pt;}
._15{width:56.035200pt;}
._18{width:395.189333pt;}
._21{width:398.622400pt;}
._0{width:514.133333pt;}
._3{width:835.606400pt;}
._1f{width:843.739733pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y21{bottom:94.382400pt;}
.y6d{bottom:94.447600pt;}
.y49{bottom:94.461200pt;}
.y20{bottom:112.399067pt;}
.y6c{bottom:112.521600pt;}
.y48{bottom:113.091200pt;}
.y1f{bottom:130.415733pt;}
.y6b{bottom:130.595600pt;}
.y47{bottom:131.721200pt;}
.y1e{bottom:148.432400pt;}
.y46{bottom:150.351200pt;}
.y6a{bottom:156.229600pt;}
.y1d{bottom:166.449067pt;}
.y45{bottom:168.981200pt;}
.y69{bottom:174.303600pt;}
.y1c{bottom:184.465733pt;}
.y44{bottom:187.611200pt;}
.y68{bottom:199.937600pt;}
.y1b{bottom:202.482400pt;}
.y43{bottom:206.241200pt;}
.y67{bottom:218.011600pt;}
.y1a{bottom:220.499067pt;}
.y42{bottom:224.871200pt;}
.y19{bottom:238.515733pt;}
.y41{bottom:243.501200pt;}
.y66{bottom:243.645600pt;}
.y18{bottom:256.532400pt;}
.y65{bottom:261.719600pt;}
.y40{bottom:262.131200pt;}
.y17{bottom:274.549067pt;}
.y64{bottom:279.793600pt;}
.y3f{bottom:280.761200pt;}
.y16{bottom:292.565733pt;}
.y63{bottom:297.867600pt;}
.y3e{bottom:299.391200pt;}
.y15{bottom:310.582400pt;}
.y62{bottom:315.941600pt;}
.y3d{bottom:318.021200pt;}
.y14{bottom:328.599067pt;}
.y83{bottom:336.379867pt;}
.y3c{bottom:336.651200pt;}
.y61{bottom:341.575600pt;}
.y13{bottom:346.615733pt;}
.y82{bottom:354.379867pt;}
.y3b{bottom:355.281200pt;}
.y12{bottom:364.632400pt;}
.y81{bottom:372.379867pt;}
.y3a{bottom:373.911200pt;}
.y11{bottom:382.649067pt;}
.y80{bottom:390.379867pt;}
.y39{bottom:392.541200pt;}
.y60{bottom:404.685200pt;}
.y7f{bottom:408.379867pt;}
.y38{bottom:411.171200pt;}
.y5f{bottom:422.763200pt;}
.y7e{bottom:426.379867pt;}
.y10{bottom:427.112533pt;}
.y37{bottom:429.801200pt;}
.y5e{bottom:440.841200pt;}
.yf{bottom:445.792533pt;}
.y36{bottom:448.431200pt;}
.y5d{bottom:458.919200pt;}
.y7d{bottom:462.379867pt;}
.y35{bottom:467.061200pt;}
.y5c{bottom:476.997200pt;}
.y7c{bottom:480.379867pt;}
.y34{bottom:485.691200pt;}
.ye{bottom:490.917200pt;}
.y5b{bottom:495.075200pt;}
.y7b{bottom:498.379867pt;}
.y33{bottom:504.321200pt;}
.y5a{bottom:513.153200pt;}
.y7a{bottom:516.379867pt;}
.yd{bottom:518.935867pt;}
.y32{bottom:522.951200pt;}
.y59{bottom:531.231200pt;}
.y79{bottom:534.379867pt;}
.y31{bottom:541.581200pt;}
.yc{bottom:546.948000pt;}
.y58{bottom:549.309200pt;}
.y78{bottom:552.379867pt;}
.y30{bottom:560.211200pt;}
.y57{bottom:567.387200pt;}
.yb{bottom:574.956000pt;}
.y2f{bottom:578.841200pt;}
.y77{bottom:581.713200pt;}
.y56{bottom:585.465200pt;}
.y2e{bottom:597.471200pt;}
.ya{bottom:602.966000pt;}
.y55{bottom:603.543200pt;}
.y2d{bottom:616.101200pt;}
.y76{bottom:618.571867pt;}
.y54{bottom:621.621200pt;}
.y2c{bottom:634.731200pt;}
.y75{bottom:636.575867pt;}
.y53{bottom:639.699200pt;}
.y2b{bottom:653.361200pt;}
.y74{bottom:654.579867pt;}
.y9{bottom:657.411200pt;}
.y52{bottom:657.777200pt;}
.y2a{bottom:671.991200pt;}
.y51{bottom:675.855200pt;}
.y73{bottom:680.143867pt;}
.y8{bottom:683.651200pt;}
.y29{bottom:690.621200pt;}
.y50{bottom:693.933200pt;}
.y72{bottom:698.147867pt;}
.y7{bottom:702.331200pt;}
.y28{bottom:709.251200pt;}
.y4f{bottom:712.011200pt;}
.y6{bottom:721.011200pt;}
.y71{bottom:723.711867pt;}
.y27{bottom:727.881200pt;}
.y4e{bottom:730.089200pt;}
.y70{bottom:741.715867pt;}
.y26{bottom:746.511200pt;}
.y5{bottom:747.251200pt;}
.y4d{bottom:748.167200pt;}
.y6f{bottom:759.719867pt;}
.y25{bottom:765.141200pt;}
.y4{bottom:765.931200pt;}
.y4c{bottom:766.245200pt;}
.y24{bottom:783.771200pt;}
.y4b{bottom:784.323200pt;}
.y3{bottom:784.611200pt;}
.y6e{bottom:785.283867pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.y4a{bottom:858.834667pt;}
.h9{height:36.229167pt;}
.hc{height:38.636719pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h8{height:52.079427pt;}
.hb{height:52.265625pt;}
.hd{height:54.878906pt;}
.h2{height:56.608073pt;}
.ha{height:60.105469pt;}
.h5{height:63.401042pt;}
.h7{height:73.171875pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:73.607600pt;}
.x6{left:74.590400pt;}
.x1{left:75.590533pt;}
.x3{left:92.758933pt;}
.x4{left:93.878267pt;}
.x2{left:207.480400pt;}
}




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