
    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_6614f39e07eb1a16521fecdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_008eedc0e8643d92e57610f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_39de90e585a5fa2cf38f593c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_c4ad2bf6f53d4c1d78db34ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_78b3a8f0361f2eb624c61fc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_5ef5b6725ab4f84cd3441299.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172363;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_04badea5f18e176be50a9dfd.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.720000px;}
.ls1{letter-spacing:11.520000px;}
.ls2{letter-spacing:44.784000px;}
.ls6{letter-spacing:54.864000px;}
.ls5{letter-spacing:69.264000px;}
.ls8{letter-spacing:849.185760px;}
.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:-72.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.437760px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-14.970240px;}
._11{margin-left:-3.600000px;}
._4{margin-left:-2.126160px;}
._0{margin-left:-1.095120px;}
._1{width:1.019520px;}
._2{width:2.175600px;}
._7{width:3.572880px;}
._6{width:4.752000px;}
._5{width:5.832000px;}
._8{width:6.960000px;}
._13{width:9.360000px;}
._9{width:10.848000px;}
._3{width:12.672000px;}
._d{width:14.040000px;}
._c{width:15.192000px;}
._12{width:16.272000px;}
._b{width:21.096000px;}
._10{width:22.104480px;}
._15{width:24.048000px;}
._16{width:25.776480px;}
._14{width:27.864000px;}
._a{width:35.090640px;}
._18{width:141.192000px;}
._17{width:511.287120px;}
._e{width:843.096000px;}
.fc4{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(31,55,99);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y54{bottom:-14.370000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.790000px;}
.y4e{bottom:9.690000px;}
.y50{bottom:9.870000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.480000px;}
.y70{bottom:118.620000px;}
.y3b{bottom:123.840000px;}
.y1e{bottom:128.160000px;}
.y4b{bottom:132.120000px;}
.y6f{bottom:142.380000px;}
.y3a{bottom:148.860000px;}
.y1d{bottom:152.280000px;}
.y6e{bottom:166.350000px;}
.y4a{bottom:170.850000px;}
.y39{bottom:173.910000px;}
.y1c{bottom:176.430000px;}
.y49{bottom:194.610000px;}
.y38{bottom:199.110000px;}
.y6d{bottom:202.170000px;}
.y44{bottom:207.210000px;}
.y52{bottom:211.500000px;}
.y1b{bottom:213.330000px;}
.y37{bottom:224.310000px;}
.y6c{bottom:239.070000px;}
.y43{bottom:245.010000px;}
.y36{bottom:248.070000px;}
.y1a{bottom:248.970000px;}
.y35{bottom:273.090000px;}
.y6b{bottom:277.590000px;}
.y19{bottom:286.050000px;}
.y34{bottom:298.290000px;}
.y6a{bottom:301.530000px;}
.y33{bottom:322.050000px;}
.y69{bottom:325.290000px;}
.y18{bottom:330.690000px;}
.y86{bottom:336.090000px;}
.y51{bottom:347.070000px;}
.y68{bottom:349.050000px;}
.y17{bottom:354.495000px;}
.y32{bottom:355.935000px;}
.y85{bottom:359.895000px;}
.y67{bottom:372.855000px;}
.y84{bottom:383.655000px;}
.y31{bottom:388.335000px;}
.y16{bottom:390.315000px;}
.y66{bottom:396.795000px;}
.y83{bottom:407.775000px;}
.y30{bottom:412.455000px;}
.y65{bottom:420.555000px;}
.y15{bottom:429.375000px;}
.y82{bottom:431.895000px;}
.y2f{bottom:436.215000px;}
.y64{bottom:444.315000px;}
.y14{bottom:453.315000px;}
.y81{bottom:455.655000px;}
.y2e{bottom:459.975000px;}
.y63{bottom:468.075000px;}
.y13{bottom:477.075000px;}
.y80{bottom:479.595000px;}
.y2d{bottom:484.095000px;}
.y7f{bottom:503.355000px;}
.y62{bottom:503.895000px;}
.y48{bottom:506.055000px;}
.y12{bottom:512.715000px;}
.y2c{bottom:518.115000px;}
.y7e{bottom:527.475000px;}
.y47{bottom:529.995000px;}
.y11{bottom:536.655000px;}
.y61{bottom:539.715000px;}
.y7d{bottom:551.625000px;}
.y46{bottom:552.525000px;}
.y2b{bottom:553.425000px;}
.y10{bottom:560.445000px;}
.y60{bottom:563.505000px;}
.y45{bottom:569.445000px;}
.y7c{bottom:575.385000px;}
.yf{bottom:584.205000px;}
.y5f{bottom:587.445000px;}
.y2a{bottom:588.705000px;}
.y7b{bottom:599.145000px;}
.ye{bottom:607.965000px;}
.y5e{bottom:611.205000px;}
.y7a{bottom:622.905000px;}
.y29{bottom:624.165000px;}
.yd{bottom:631.905000px;}
.y5d{bottom:634.965000px;}
.y79{bottom:646.845000px;}
.y28{bottom:659.625000px;}
.yc{bottom:667.545000px;}
.y78{bottom:670.605000px;}
.y5c{bottom:670.785000px;}
.yb{bottom:691.305000px;}
.y27{bottom:695.085000px;}
.y42{bottom:706.245000px;}
.y5b{bottom:706.605000px;}
.y77{bottom:707.505000px;}
.ya{bottom:715.245000px;}
.y41{bottom:730.005000px;}
.y5a{bottom:730.365000px;}
.y26{bottom:732.345000px;}
.y4c{bottom:738.105000px;}
.y76{bottom:746.250000px;}
.y9{bottom:750.930000px;}
.y59{bottom:754.170000px;}
.y25{bottom:756.510000px;}
.y40{bottom:765.870000px;}
.y75{bottom:770.010000px;}
.y58{bottom:778.110000px;}
.y24{bottom:780.630000px;}
.y8{bottom:787.830000px;}
.y57{bottom:801.870000px;}
.y3f{bottom:802.770000px;}
.y23{bottom:804.570000px;}
.y74{bottom:805.830000px;}
.y7{bottom:818.610000px;}
.y56{bottom:825.630000px;}
.y22{bottom:828.870000px;}
.y6{bottom:838.410000px;}
.y73{bottom:841.650000px;}
.y3e{bottom:849.570000px;}
.y21{bottom:852.630000px;}
.y5{bottom:860.730000px;}
.y55{bottom:861.450000px;}
.y72{bottom:865.410000px;}
.y3d{bottom:874.770000px;}
.y4{bottom:876.210000px;}
.y20{bottom:876.750000px;}
.y4f{bottom:889.200000px;}
.y4d{bottom:892.620000px;}
.y3{bottom:898.350000px;}
.y3c{bottom:899.790000px;}
.y1f{bottom:900.870000px;}
.y71{bottom:901.230000px;}
.h10{height:20.160000px;}
.hc{height:25.380000px;}
.he{height:25.560000px;}
.h5{height:38.139609px;}
.h4{height:41.535703px;}
.hb{height:52.971680px;}
.h3{height:59.038594px;}
.ha{height:60.226875px;}
.h9{height:65.010937px;}
.h1{height:65.884219px;}
.hf{height:66.757500px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h8{height:74.004654px;}
.h2{height:84.898125px;}
.hd{height:86.255508px;}
.h0{height:1026.000000px;}
.w2{width:5.940000px;}
.w3{width:148.320000px;}
.w4{width:281.700000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x16{left:24.555000px;}
.x2{left:108.035988px;}
.x7{left:109.655988px;}
.x8{left:114.515988px;}
.x12{left:115.560000px;}
.x10{left:126.395988px;}
.x14{left:158.249988px;}
.x9{left:162.029988px;}
.xb{left:175.529988px;}
.x11{left:179.820000px;}
.xa{left:189.029988px;}
.x4{left:238.889988px;}
.x3{left:241.049988px;}
.xf{left:285.014988px;}
.x13{left:295.560000px;}
.x5{left:318.134988px;}
.x15{left:322.560000px;}
.xd{left:336.854988px;}
.x6{left:354.494988px;}
.x1{left:685.409988px;}
.xe{left:742.289988px;}
.xc{left:777.209988px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1{letter-spacing:10.240000pt;}
.ls2{letter-spacing:39.808000pt;}
.ls6{letter-spacing:48.768000pt;}
.ls5{letter-spacing:61.568000pt;}
.ls8{letter-spacing:754.831787pt;}
.ws4{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-13.306880pt;}
._11{margin-left:-3.200000pt;}
._4{margin-left:-1.889920pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.906240pt;}
._2{width:1.933867pt;}
._7{width:3.175893pt;}
._6{width:4.224000pt;}
._5{width:5.184000pt;}
._8{width:6.186667pt;}
._13{width:8.320000pt;}
._9{width:9.642667pt;}
._3{width:11.264000pt;}
._d{width:12.480000pt;}
._c{width:13.504000pt;}
._12{width:14.464000pt;}
._b{width:18.752000pt;}
._10{width:19.648427pt;}
._15{width:21.376000pt;}
._16{width:22.912427pt;}
._14{width:24.768000pt;}
._a{width:31.191680pt;}
._18{width:125.504000pt;}
._17{width:454.477440pt;}
._e{width:749.418667pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y54{bottom:-12.773333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.146667pt;}
.y4e{bottom:8.613333pt;}
.y50{bottom:8.773333pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.760000pt;}
.y70{bottom:105.440000pt;}
.y3b{bottom:110.080000pt;}
.y1e{bottom:113.920000pt;}
.y4b{bottom:117.440000pt;}
.y6f{bottom:126.560000pt;}
.y3a{bottom:132.320000pt;}
.y1d{bottom:135.360000pt;}
.y6e{bottom:147.866667pt;}
.y4a{bottom:151.866667pt;}
.y39{bottom:154.586667pt;}
.y1c{bottom:156.826667pt;}
.y49{bottom:172.986667pt;}
.y38{bottom:176.986667pt;}
.y6d{bottom:179.706667pt;}
.y44{bottom:184.186667pt;}
.y52{bottom:188.000000pt;}
.y1b{bottom:189.626667pt;}
.y37{bottom:199.386667pt;}
.y6c{bottom:212.506667pt;}
.y43{bottom:217.786667pt;}
.y36{bottom:220.506667pt;}
.y1a{bottom:221.306667pt;}
.y35{bottom:242.746667pt;}
.y6b{bottom:246.746667pt;}
.y19{bottom:254.266667pt;}
.y34{bottom:265.146667pt;}
.y6a{bottom:268.026667pt;}
.y33{bottom:286.266667pt;}
.y69{bottom:289.146667pt;}
.y18{bottom:293.946667pt;}
.y86{bottom:298.746667pt;}
.y51{bottom:308.506667pt;}
.y68{bottom:310.266667pt;}
.y17{bottom:315.106667pt;}
.y32{bottom:316.386667pt;}
.y85{bottom:319.906667pt;}
.y67{bottom:331.426667pt;}
.y84{bottom:341.026667pt;}
.y31{bottom:345.186667pt;}
.y16{bottom:346.946667pt;}
.y66{bottom:352.706667pt;}
.y83{bottom:362.466667pt;}
.y30{bottom:366.626667pt;}
.y65{bottom:373.826667pt;}
.y15{bottom:381.666667pt;}
.y82{bottom:383.906667pt;}
.y2f{bottom:387.746667pt;}
.y64{bottom:394.946667pt;}
.y14{bottom:402.946667pt;}
.y81{bottom:405.026667pt;}
.y2e{bottom:408.866667pt;}
.y63{bottom:416.066667pt;}
.y13{bottom:424.066667pt;}
.y80{bottom:426.306667pt;}
.y2d{bottom:430.306667pt;}
.y7f{bottom:447.426667pt;}
.y62{bottom:447.906667pt;}
.y48{bottom:449.826667pt;}
.y12{bottom:455.746667pt;}
.y2c{bottom:460.546667pt;}
.y7e{bottom:468.866667pt;}
.y47{bottom:471.106667pt;}
.y11{bottom:477.026667pt;}
.y61{bottom:479.746667pt;}
.y7d{bottom:490.333333pt;}
.y46{bottom:491.133333pt;}
.y2b{bottom:491.933333pt;}
.y10{bottom:498.173333pt;}
.y60{bottom:500.893333pt;}
.y45{bottom:506.173333pt;}
.y7c{bottom:511.453333pt;}
.yf{bottom:519.293333pt;}
.y5f{bottom:522.173333pt;}
.y2a{bottom:523.293333pt;}
.y7b{bottom:532.573333pt;}
.ye{bottom:540.413333pt;}
.y5e{bottom:543.293333pt;}
.y7a{bottom:553.693333pt;}
.y29{bottom:554.813333pt;}
.yd{bottom:561.693333pt;}
.y5d{bottom:564.413333pt;}
.y79{bottom:574.973333pt;}
.y28{bottom:586.333333pt;}
.yc{bottom:593.373333pt;}
.y78{bottom:596.093333pt;}
.y5c{bottom:596.253333pt;}
.yb{bottom:614.493333pt;}
.y27{bottom:617.853333pt;}
.y42{bottom:627.773333pt;}
.y5b{bottom:628.093333pt;}
.y77{bottom:628.893333pt;}
.ya{bottom:635.773333pt;}
.y41{bottom:648.893333pt;}
.y5a{bottom:649.213333pt;}
.y26{bottom:650.973333pt;}
.y4c{bottom:656.093333pt;}
.y76{bottom:663.333333pt;}
.y9{bottom:667.493333pt;}
.y59{bottom:670.373333pt;}
.y25{bottom:672.453333pt;}
.y40{bottom:680.773333pt;}
.y75{bottom:684.453333pt;}
.y58{bottom:691.653333pt;}
.y24{bottom:693.893333pt;}
.y8{bottom:700.293333pt;}
.y57{bottom:712.773333pt;}
.y3f{bottom:713.573333pt;}
.y23{bottom:715.173333pt;}
.y74{bottom:716.293333pt;}
.y7{bottom:727.653333pt;}
.y56{bottom:733.893333pt;}
.y22{bottom:736.773333pt;}
.y6{bottom:745.253333pt;}
.y73{bottom:748.133333pt;}
.y3e{bottom:755.173333pt;}
.y21{bottom:757.893333pt;}
.y5{bottom:765.093333pt;}
.y55{bottom:765.733333pt;}
.y72{bottom:769.253333pt;}
.y3d{bottom:777.573333pt;}
.y4{bottom:778.853333pt;}
.y20{bottom:779.333333pt;}
.y4f{bottom:790.400000pt;}
.y4d{bottom:793.440000pt;}
.y3{bottom:798.533333pt;}
.y3c{bottom:799.813333pt;}
.y1f{bottom:800.773333pt;}
.y71{bottom:801.093333pt;}
.h10{height:17.920000pt;}
.hc{height:22.560000pt;}
.he{height:22.720000pt;}
.h5{height:33.901875pt;}
.h4{height:36.920625pt;}
.hb{height:47.085938pt;}
.h3{height:52.478750pt;}
.ha{height:53.535000pt;}
.h9{height:57.787500pt;}
.h1{height:58.563750pt;}
.hf{height:59.340000pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h8{height:65.781915pt;}
.h2{height:75.465000pt;}
.hd{height:76.671562pt;}
.h0{height:912.000000pt;}
.w2{width:5.280000pt;}
.w3{width:131.840000pt;}
.w4{width:250.400000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x16{left:21.826667pt;}
.x2{left:96.031989pt;}
.x7{left:97.471989pt;}
.x8{left:101.791989pt;}
.x12{left:102.720000pt;}
.x10{left:112.351989pt;}
.x14{left:140.666656pt;}
.x9{left:144.026656pt;}
.xb{left:156.026656pt;}
.x11{left:159.840000pt;}
.xa{left:168.026656pt;}
.x4{left:212.346656pt;}
.x3{left:214.266656pt;}
.xf{left:253.346656pt;}
.x13{left:262.720000pt;}
.x5{left:282.786656pt;}
.x15{left:286.720000pt;}
.xd{left:299.426656pt;}
.x6{left:315.106656pt;}
.x1{left:609.253323pt;}
.xe{left:659.813323pt;}
.xc{left:690.853323pt;}
}




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