
    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_aba27a9a5a7acc276ed3681a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f8b6fb2139ae9650a6e9b57d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_42bdb6470aa495255f97026b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_691a7b36b824d17024e38df8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_dd5e21a52d6589c13bc2b1c1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_adae3a8ea130b6f81036f40f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d95e50d1fc7ac84435815335.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e9fadd6d0506f29d204f346.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d41d60a613a11e97810cff52.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7b5405c6486d5eea326de9c6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a2f3d79e7c3afc4e5ea346b7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb0d673834307412998a24fc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.622000px;}
.ls1d{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.738000px;}
.ls6{letter-spacing:-0.684000px;}
.ls11{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.028080px;}
.ls1c{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls7{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls10{letter-spacing:4.860000px;}
.ls18{letter-spacing:7.020000px;}
.ls9{letter-spacing:10.620000px;}
.lsd{letter-spacing:12.060000px;}
.ls15{letter-spacing:13.500000px;}
.ls16{letter-spacing:14.220000px;}
.ls14{letter-spacing:22.140000px;}
.ls1{letter-spacing:32.220000px;}
.ls12{letter-spacing:41.381280px;}
.ls17{letter-spacing:78.300000px;}
.ls1b{letter-spacing:87.660000px;}
.ls1a{letter-spacing:88.380000px;}
.ls19{letter-spacing:115.020000px;}
.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;}
}
.ws0{word-spacing:-21.795720px;}
.ws9{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.322000px;}
.ws2{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.620000px;}
.ws3{word-spacing:-14.970240px;}
.ws4{word-spacing:-12.348240px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-5.761680px;}
._6{margin-left:-4.405200px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.657200px;}
._2{width:1.231440px;}
._5{width:2.482320px;}
._c{width:3.498480px;}
._1c{width:4.499760px;}
._16{width:5.644080px;}
._20{width:6.648960px;}
._9{width:7.665840px;}
._a{width:8.794560px;}
._10{width:9.856080px;}
._11{width:11.086080px;}
._1e{width:13.090800px;}
._21{width:14.405040px;}
._1f{width:15.921360px;}
._22{width:17.448240px;}
._1d{width:18.532800px;}
._f{width:19.909680px;}
._8{width:22.159680px;}
._7{width:23.306880px;}
._13{width:24.855360px;}
._12{width:26.171040px;}
._17{width:28.150080px;}
._14{width:29.442480px;}
._3{width:30.764880px;}
._4{width:32.739360px;}
._15{width:33.752640px;}
._b{width:35.212320px;}
._18{width:40.323360px;}
._24{width:44.726880px;}
._23{width:45.730800px;}
._1a{width:47.848320px;}
._25{width:48.859200px;}
._26{width:49.926720px;}
._2e{width:51.836640px;}
._d{width:52.902720px;}
._e{width:54.002400px;}
._1b{width:55.851120px;}
._30{width:77.585040px;}
._2f{width:78.848640px;}
._2b{width:85.644480px;}
._36{width:87.505920px;}
._35{width:89.182560px;}
._33{width:114.650640px;}
._34{width:116.192160px;}
._2c{width:126.949680px;}
._2d{width:128.741760px;}
._28{width:150.669600px;}
._27{width:151.897200px;}
._29{width:161.066880px;}
._2a{width:163.056240px;}
._31{width:231.912720px;}
._32{width:233.110560px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y30{bottom:65.700000px;}
.y2{bottom:72.720000px;}
.y2f{bottom:93.636000px;}
.y2e{bottom:121.356000px;}
.y2d{bottom:149.076000px;}
.y2c{bottom:176.790000px;}
.y2b{bottom:204.690000px;}
.y2a{bottom:232.410000px;}
.y29{bottom:260.130000px;}
.y28{bottom:288.030000px;}
.y27{bottom:315.750000px;}
.y26{bottom:343.515000px;}
.y25{bottom:371.235000px;}
.y24{bottom:399.135000px;}
.y23{bottom:426.855000px;}
.y22{bottom:454.575000px;}
.y21{bottom:482.475000px;}
.y20{bottom:510.195000px;}
.y1f{bottom:537.915000px;}
.y1e{bottom:565.635000px;}
.y1d{bottom:593.535000px;}
.y1c{bottom:621.285000px;}
.y1b{bottom:649.005000px;}
.y1a{bottom:676.725000px;}
.y19{bottom:704.625000px;}
.y18{bottom:732.345000px;}
.y17{bottom:760.065000px;}
.y16{bottom:787.965000px;}
.y15{bottom:815.685000px;}
.y14{bottom:843.405000px;}
.y13{bottom:871.125000px;}
.y12{bottom:899.070000px;}
.y11{bottom:926.790000px;}
.y10{bottom:954.510000px;}
.yf{bottom:982.410000px;}
.ye{bottom:1010.130000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.h8{height:58.651172px;}
.hb{height:58.819922px;}
.h6{height:65.884219px;}
.h4{height:75.849609px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.hd{height:86.585445px;}
.h2{height:92.340000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.836000px;}
.w3{width:207.255000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x4{left:62.280000px;}
.x7{left:63.719987px;}
.x8{left:108.755987px;}
.xc{left:125.675987px;}
.x1{left:137.736000px;}
.x9{left:241.409987px;}
.xf{left:276.554987px;}
.xb{left:303.194987px;}
.x2{left:340.269000px;}
.xe{left:423.284987px;}
.xa{left:451.904987px;}
.x5{left:752.550000px;}
.xd{left:840.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.330667pt;}
.ls1d{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.656000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls11{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.024960pt;}
.ls1c{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls7{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls10{letter-spacing:4.320000pt;}
.ls18{letter-spacing:6.240000pt;}
.ls9{letter-spacing:9.440000pt;}
.lsd{letter-spacing:10.720000pt;}
.ls15{letter-spacing:12.000000pt;}
.ls16{letter-spacing:12.640000pt;}
.ls14{letter-spacing:19.680000pt;}
.ls1{letter-spacing:28.640000pt;}
.ls12{letter-spacing:36.783360pt;}
.ls17{letter-spacing:69.600000pt;}
.ls1b{letter-spacing:77.920000pt;}
.ls1a{letter-spacing:78.560000pt;}
.ls19{letter-spacing:102.240000pt;}
.ws0{word-spacing:-19.373973pt;}
.ws9{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.064000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws4{word-spacing:-10.976213pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-5.121493pt;}
._6{margin-left:-3.915733pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.473067pt;}
._2{width:1.094613pt;}
._5{width:2.206507pt;}
._c{width:3.109760pt;}
._1c{width:3.999787pt;}
._16{width:5.016960pt;}
._20{width:5.910187pt;}
._9{width:6.814080pt;}
._a{width:7.817387pt;}
._10{width:8.760960pt;}
._11{width:9.854293pt;}
._1e{width:11.636267pt;}
._21{width:12.804480pt;}
._1f{width:14.152320pt;}
._22{width:15.509547pt;}
._1d{width:16.473600pt;}
._f{width:17.697493pt;}
._8{width:19.697493pt;}
._7{width:20.717227pt;}
._13{width:22.093653pt;}
._12{width:23.263147pt;}
._17{width:25.022293pt;}
._14{width:26.171093pt;}
._3{width:27.346560pt;}
._4{width:29.101653pt;}
._15{width:30.002347pt;}
._b{width:31.299840pt;}
._18{width:35.842987pt;}
._24{width:39.757227pt;}
._23{width:40.649600pt;}
._1a{width:42.531840pt;}
._25{width:43.430400pt;}
._26{width:44.379307pt;}
._2e{width:46.077013pt;}
._d{width:47.024640pt;}
._e{width:48.002133pt;}
._1b{width:49.645440pt;}
._30{width:68.964480pt;}
._2f{width:70.087680pt;}
._2b{width:76.128427pt;}
._36{width:77.783040pt;}
._35{width:79.273387pt;}
._33{width:101.911680pt;}
._34{width:103.281920pt;}
._2c{width:112.844160pt;}
._2d{width:114.437120pt;}
._28{width:133.928533pt;}
._27{width:135.019733pt;}
._29{width:143.170560pt;}
._2a{width:144.938880pt;}
._31{width:206.144640pt;}
._32{width:207.209387pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y30{bottom:58.400000pt;}
.y2{bottom:64.640000pt;}
.y2f{bottom:83.232000pt;}
.y2e{bottom:107.872000pt;}
.y2d{bottom:132.512000pt;}
.y2c{bottom:157.146667pt;}
.y2b{bottom:181.946667pt;}
.y2a{bottom:206.586667pt;}
.y29{bottom:231.226667pt;}
.y28{bottom:256.026667pt;}
.y27{bottom:280.666667pt;}
.y26{bottom:305.346667pt;}
.y25{bottom:329.986667pt;}
.y24{bottom:354.786667pt;}
.y23{bottom:379.426667pt;}
.y22{bottom:404.066667pt;}
.y21{bottom:428.866667pt;}
.y20{bottom:453.506667pt;}
.y1f{bottom:478.146667pt;}
.y1e{bottom:502.786667pt;}
.y1d{bottom:527.586667pt;}
.y1c{bottom:552.253333pt;}
.y1b{bottom:576.893333pt;}
.y1a{bottom:601.533333pt;}
.y19{bottom:626.333333pt;}
.y18{bottom:650.973333pt;}
.y17{bottom:675.613333pt;}
.y16{bottom:700.413333pt;}
.y15{bottom:725.053333pt;}
.y14{bottom:749.693333pt;}
.y13{bottom:774.333333pt;}
.y12{bottom:799.173333pt;}
.y11{bottom:823.813333pt;}
.y10{bottom:848.453333pt;}
.yf{bottom:873.253333pt;}
.ye{bottom:897.893333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.h8{height:52.134375pt;}
.hb{height:52.284375pt;}
.h6{height:58.563750pt;}
.h4{height:67.421875pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.hd{height:76.964840pt;}
.h2{height:82.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.632000pt;}
.w3{width:184.226667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x4{left:55.360000pt;}
.x7{left:56.639988pt;}
.x8{left:96.671988pt;}
.xc{left:111.711988pt;}
.x1{left:122.432000pt;}
.x9{left:214.586655pt;}
.xf{left:245.826655pt;}
.xb{left:269.506655pt;}
.x2{left:302.461333pt;}
.xe{left:376.253321pt;}
.xa{left:401.693321pt;}
.x5{left:668.933333pt;}
.xd{left:746.879988pt;}
}




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