
    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_e8120b4b5ab8049690729367.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_aa85de96f00840fdf29977bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_6e6f3a0d0bae3ac81d6e6c81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_c651d7133304b721978da46f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f7cd03b6d76dfa7d62e54f52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_1224ff0bafaac954c7b8917a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_638f92c379e89fafdcd81950.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.ls3{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:33.984000px;}
.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.420000px;}
.ws8{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-13.505760px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:81.526080px;}
._27{margin-left:-6.287520px;}
._2{margin-left:-5.184000px;}
._e{margin-left:-3.864480px;}
._f{margin-left:-2.808000px;}
._0{margin-left:-1.595760px;}
._1{width:1.235760px;}
._c{width:2.483760px;}
._12{width:3.865200px;}
._5{width:5.400000px;}
._6{width:6.540240px;}
._b{width:7.992000px;}
._7{width:9.288000px;}
._15{width:10.800000px;}
._16{width:11.963760px;}
._2a{width:13.032000px;}
._3{width:14.040000px;}
._4{width:15.264000px;}
._14{width:16.920000px;}
._11{width:19.008000px;}
._17{width:20.496480px;}
._21{width:21.538560px;}
._25{width:22.608000px;}
._8{width:23.688000px;}
._9{width:25.067760px;}
._20{width:26.363760px;}
._2b{width:28.451760px;}
._19{width:29.592000px;}
._1a{width:30.744000px;}
._1b{width:31.763760px;}
._23{width:33.048000px;}
._29{width:34.920000px;}
._28{width:36.000000px;}
._d{width:37.080000px;}
._13{width:38.484480px;}
._18{width:39.600000px;}
._10{width:40.968000px;}
._24{width:42.840000px;}
._2c{width:43.920000px;}
._34{width:45.432000px;}
._3d{width:46.512000px;}
._a{width:47.531760px;}
._33{width:50.328000px;}
._26{width:55.368000px;}
._1d{width:56.603760px;}
._1c{width:57.672000px;}
._22{width:65.232000px;}
._36{width:70.476000px;}
._35{width:71.724000px;}
._37{width:78.204000px;}
._38{width:79.272000px;}
._1e{width:83.376000px;}
._1f{width:85.164240px;}
._2d{width:96.728160px;}
._2e{width:104.428080px;}
._32{width:111.450000px;}
._2f{width:113.046480px;}
._31{width:114.820800px;}
._30{width:116.298000px;}
._3b{width:140.412000px;}
._3c{width:155.520000px;}
._39{width:272.831520px;}
._3e{width:299.880000px;}
._3a{width:608.820000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:13.575000px;}
.y45{bottom:33.045000px;}
.y3{bottom:58.356000px;}
.y46{bottom:60.765000px;}
.y2{bottom:78.516000px;}
.y47{bottom:88.485000px;}
.y40{bottom:106.056000px;}
.y43{bottom:112.356000px;}
.y3c{bottom:114.336000px;}
.y48{bottom:116.205000px;}
.y1f{bottom:120.996000px;}
.y3f{bottom:130.356000px;}
.y42{bottom:136.656000px;}
.y3b{bottom:138.636000px;}
.y49{bottom:143.925000px;}
.y1e{bottom:145.296000px;}
.y3e{bottom:154.650000px;}
.y41{bottom:155.550000px;}
.y44{bottom:155.880000px;}
.y3a{bottom:162.930000px;}
.y1d{bottom:169.590000px;}
.y4a{bottom:171.645000px;}
.y3d{bottom:173.550000px;}
.y39{bottom:187.230000px;}
.y1c{bottom:193.890000px;}
.y4b{bottom:199.365000px;}
.y38{bottom:211.575000px;}
.y1b{bottom:218.235000px;}
.y37{bottom:235.875000px;}
.y1a{bottom:242.535000px;}
.y36{bottom:260.175000px;}
.y19{bottom:266.835000px;}
.y35{bottom:284.475000px;}
.y18{bottom:290.955000px;}
.y34{bottom:308.595000px;}
.y17{bottom:315.255000px;}
.y33{bottom:332.895000px;}
.y16{bottom:339.555000px;}
.y32{bottom:357.195000px;}
.y15{bottom:363.855000px;}
.y31{bottom:381.495000px;}
.y14{bottom:388.155000px;}
.y30{bottom:405.825000px;}
.y13{bottom:412.485000px;}
.y2f{bottom:430.125000px;}
.y12{bottom:436.785000px;}
.y2e{bottom:454.425000px;}
.y11{bottom:462.885000px;}
.y2d{bottom:478.725000px;}
.y10{bottom:487.185000px;}
.y2c{bottom:503.025000px;}
.yf{bottom:516.345000px;}
.y2b{bottom:527.325000px;}
.ye{bottom:540.645000px;}
.y2a{bottom:551.625000px;}
.yd{bottom:564.945000px;}
.y29{bottom:575.745000px;}
.yc{bottom:589.245000px;}
.y28{bottom:600.090000px;}
.yb{bottom:613.590000px;}
.y27{bottom:624.390000px;}
.ya{bottom:637.890000px;}
.y26{bottom:648.690000px;}
.y4d{bottom:648.870000px;}
.y9{bottom:662.190000px;}
.y25{bottom:672.990000px;}
.y8{bottom:686.490000px;}
.y24{bottom:697.290000px;}
.y7{bottom:710.790000px;}
.y23{bottom:721.590000px;}
.y6{bottom:739.950000px;}
.y22{bottom:745.890000px;}
.y5{bottom:764.250000px;}
.y21{bottom:770.190000px;}
.y4{bottom:789.450000px;}
.y20{bottom:794.490000px;}
.y1{bottom:820.980000px;}
.h7{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h9{height:59.439023px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h8{height:220.320000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:497.340000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x17{left:9.936000px;}
.x16{left:17.532000px;}
.x15{left:47.952000px;}
.x3{left:64.835991px;}
.x14{left:65.880000px;}
.xa{left:70.415991px;}
.x12{left:78.155991px;}
.x18{left:80.892000px;}
.xf{left:83.375991px;}
.x5{left:90.395991px;}
.x19{left:91.835991px;}
.x6{left:110.375991px;}
.x13{left:117.395991px;}
.xc{left:127.295991px;}
.x9{left:160.769991px;}
.xd{left:167.429991px;}
.xb{left:210.494991px;}
.x8{left:227.594991px;}
.x4{left:256.934991px;}
.x10{left:278.174991px;}
.x1a{left:279.614991px;}
.x2{left:302.144991px;}
.x7{left:314.744991px;}
.x1{left:373.604991px;}
.x11{left:563.399991px;}
.xe{left:567.179991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:30.208000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:72.467627pt;}
._27{margin-left:-5.588907pt;}
._2{margin-left:-4.608000pt;}
._e{margin-left:-3.435093pt;}
._f{margin-left:-2.496000pt;}
._0{margin-left:-1.418453pt;}
._1{width:1.098453pt;}
._c{width:2.207787pt;}
._12{width:3.435733pt;}
._5{width:4.800000pt;}
._6{width:5.813547pt;}
._b{width:7.104000pt;}
._7{width:8.256000pt;}
._15{width:9.600000pt;}
._16{width:10.634453pt;}
._2a{width:11.584000pt;}
._3{width:12.480000pt;}
._4{width:13.568000pt;}
._14{width:15.040000pt;}
._11{width:16.896000pt;}
._17{width:18.219093pt;}
._21{width:19.145387pt;}
._25{width:20.096000pt;}
._8{width:21.056000pt;}
._9{width:22.282453pt;}
._20{width:23.434453pt;}
._2b{width:25.290453pt;}
._19{width:26.304000pt;}
._1a{width:27.328000pt;}
._1b{width:28.234453pt;}
._23{width:29.376000pt;}
._29{width:31.040000pt;}
._28{width:32.000000pt;}
._d{width:32.960000pt;}
._13{width:34.208427pt;}
._18{width:35.200000pt;}
._10{width:36.416000pt;}
._24{width:38.080000pt;}
._2c{width:39.040000pt;}
._34{width:40.384000pt;}
._3d{width:41.344000pt;}
._a{width:42.250453pt;}
._33{width:44.736000pt;}
._26{width:49.216000pt;}
._1d{width:50.314453pt;}
._1c{width:51.264000pt;}
._22{width:57.984000pt;}
._36{width:62.645333pt;}
._35{width:63.754667pt;}
._37{width:69.514667pt;}
._38{width:70.464000pt;}
._1e{width:74.112000pt;}
._1f{width:75.701547pt;}
._2d{width:85.980587pt;}
._2e{width:92.824960pt;}
._32{width:99.066667pt;}
._2f{width:100.485760pt;}
._31{width:102.062933pt;}
._30{width:103.376000pt;}
._3b{width:124.810667pt;}
._3c{width:138.240000pt;}
._39{width:242.516907pt;}
._3e{width:266.560000pt;}
._3a{width:541.173333pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:12.066667pt;}
.y45{bottom:29.373333pt;}
.y3{bottom:51.872000pt;}
.y46{bottom:54.013333pt;}
.y2{bottom:69.792000pt;}
.y47{bottom:78.653333pt;}
.y40{bottom:94.272000pt;}
.y43{bottom:99.872000pt;}
.y3c{bottom:101.632000pt;}
.y48{bottom:103.293333pt;}
.y1f{bottom:107.552000pt;}
.y3f{bottom:115.872000pt;}
.y42{bottom:121.472000pt;}
.y3b{bottom:123.232000pt;}
.y49{bottom:127.933333pt;}
.y1e{bottom:129.152000pt;}
.y3e{bottom:137.466667pt;}
.y41{bottom:138.266667pt;}
.y44{bottom:138.560000pt;}
.y3a{bottom:144.826667pt;}
.y1d{bottom:150.746667pt;}
.y4a{bottom:152.573333pt;}
.y3d{bottom:154.266667pt;}
.y39{bottom:166.426667pt;}
.y1c{bottom:172.346667pt;}
.y4b{bottom:177.213333pt;}
.y38{bottom:188.066667pt;}
.y1b{bottom:193.986667pt;}
.y37{bottom:209.666667pt;}
.y1a{bottom:215.586667pt;}
.y36{bottom:231.266667pt;}
.y19{bottom:237.186667pt;}
.y35{bottom:252.866667pt;}
.y18{bottom:258.626667pt;}
.y34{bottom:274.306667pt;}
.y17{bottom:280.226667pt;}
.y33{bottom:295.906667pt;}
.y16{bottom:301.826667pt;}
.y32{bottom:317.506667pt;}
.y15{bottom:323.426667pt;}
.y31{bottom:339.106667pt;}
.y14{bottom:345.026667pt;}
.y30{bottom:360.733333pt;}
.y13{bottom:366.653333pt;}
.y2f{bottom:382.333333pt;}
.y12{bottom:388.253333pt;}
.y2e{bottom:403.933333pt;}
.y11{bottom:411.453333pt;}
.y2d{bottom:425.533333pt;}
.y10{bottom:433.053333pt;}
.y2c{bottom:447.133333pt;}
.yf{bottom:458.973333pt;}
.y2b{bottom:468.733333pt;}
.ye{bottom:480.573333pt;}
.y2a{bottom:490.333333pt;}
.yd{bottom:502.173333pt;}
.y29{bottom:511.773333pt;}
.yc{bottom:523.773333pt;}
.y28{bottom:533.413333pt;}
.yb{bottom:545.413333pt;}
.y27{bottom:555.013333pt;}
.ya{bottom:567.013333pt;}
.y26{bottom:576.613333pt;}
.y4d{bottom:576.773333pt;}
.y9{bottom:588.613333pt;}
.y25{bottom:598.213333pt;}
.y8{bottom:610.213333pt;}
.y24{bottom:619.813333pt;}
.y7{bottom:631.813333pt;}
.y23{bottom:641.413333pt;}
.y6{bottom:657.733333pt;}
.y22{bottom:663.013333pt;}
.y5{bottom:679.333333pt;}
.y21{bottom:684.613333pt;}
.y4{bottom:701.733333pt;}
.y20{bottom:706.213333pt;}
.y1{bottom:729.760000pt;}
.h7{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h9{height:52.834688pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h8{height:195.840000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:442.080000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x17{left:8.832000pt;}
.x16{left:15.584000pt;}
.x15{left:42.624000pt;}
.x3{left:57.631992pt;}
.x14{left:58.560000pt;}
.xa{left:62.591992pt;}
.x12{left:69.471992pt;}
.x18{left:71.904000pt;}
.xf{left:74.111992pt;}
.x5{left:80.351992pt;}
.x19{left:81.631992pt;}
.x6{left:98.111992pt;}
.x13{left:104.351992pt;}
.xc{left:113.151992pt;}
.x9{left:142.906658pt;}
.xd{left:148.826658pt;}
.xb{left:187.106658pt;}
.x8{left:202.306658pt;}
.x4{left:228.386658pt;}
.x10{left:247.266658pt;}
.x1a{left:248.546658pt;}
.x2{left:268.573325pt;}
.x7{left:279.773325pt;}
.x1{left:332.093325pt;}
.x11{left:500.799992pt;}
.xe{left:504.159992pt;}
}




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