
    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_5a0d4ed28bae76137a198801.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4750070c0688e9cd15aa7e86.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_12354a7d532b5c1afa0d544c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_84ca3e9243c152f99184642c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_7207c0fffa16e428e3561a92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_89432eb7a7b193052d0d17f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_cc88515f1b9a3ee4b54c6171.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e4fc2751ff1c55424ec553e3.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f28220ccc6a92c20fadda33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_6ca070eef69136e4ff3e8538.woff2')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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.538800px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.944000px;}
.ls9{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.600000px;}
.lsb{letter-spacing:9.360000px;}
.ls3{letter-spacing:20.880000px;}
.ls1{letter-spacing:28.080000px;}
.lsc{letter-spacing:53.424000px;}
.lsa{letter-spacing:195.264000px;}
.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:-24.120000px;}
.ws1{word-spacing:-23.581200px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-5.670240px;}
._2{margin-left:-4.268160px;}
._5{margin-left:-3.215040px;}
._4{margin-left:-2.188800px;}
._0{margin-left:-1.149120px;}
._3{width:1.094400px;}
._7{width:2.116800px;}
._8{width:3.468480px;}
._13{width:4.653600px;}
._1c{width:6.483840px;}
._1d{width:7.617600px;}
._1b{width:8.812800px;}
._27{width:9.959040px;}
._1e{width:10.969920px;}
._1a{width:12.518880px;}
._19{width:13.761120px;}
._21{width:15.170880px;}
._22{width:16.833600px;}
._14{width:19.929600px;}
._15{width:21.168000px;}
._b{width:22.320000px;}
._a{width:23.400000px;}
._c{width:24.796800px;}
._e{width:25.932000px;}
._d{width:27.360000px;}
._f{width:28.649760px;}
._10{width:30.960000px;}
._23{width:32.419200px;}
._11{width:33.624000px;}
._2b{width:34.625280px;}
._12{width:35.643360px;}
._20{width:37.311360px;}
._1f{width:38.347200px;}
._9{width:43.932000px;}
._18{width:45.288000px;}
._28{width:47.077440px;}
._25{width:55.901760px;}
._24{width:57.052800px;}
._26{width:59.122560px;}
._16{width:60.696000px;}
._17{width:62.092800px;}
._29{width:141.264000px;}
._2a{width:195.264000px;}
._6{width:1242.456000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs0{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.040000px;}
.y7{bottom:7.920000px;}
.y9{bottom:26.676000px;}
.y8{bottom:48.276000px;}
.y5{bottom:68.076000px;}
.y35{bottom:97.596000px;}
.y56{bottom:105.156000px;}
.y6f{bottom:113.436000px;}
.y34{bottom:121.356000px;}
.y55{bottom:128.952000px;}
.y6e{bottom:137.232000px;}
.y33{bottom:145.152000px;}
.y54{bottom:152.715000px;}
.y6d{bottom:160.995000px;}
.y32{bottom:168.555000px;}
.y53{bottom:176.475000px;}
.y6c{bottom:184.755000px;}
.y31{bottom:192.675000px;}
.y52{bottom:200.235000px;}
.y6b{bottom:208.515000px;}
.y30{bottom:216.435000px;}
.y51{bottom:223.995000px;}
.y6a{bottom:232.275000px;}
.y2f{bottom:240.195000px;}
.y50{bottom:248.115000px;}
.y69{bottom:256.395000px;}
.y2e{bottom:264.345000px;}
.y4f{bottom:271.905000px;}
.y68{bottom:280.185000px;}
.y2d{bottom:288.105000px;}
.y4e{bottom:295.665000px;}
.y67{bottom:303.945000px;}
.y2c{bottom:311.865000px;}
.y4d{bottom:319.425000px;}
.y66{bottom:327.705000px;}
.y2b{bottom:335.625000px;}
.y4c{bottom:342.825000px;}
.y72{bottom:351.105000px;}
.y65{bottom:351.465000px;}
.y2a{bottom:359.385000px;}
.y4b{bottom:366.945000px;}
.y71{bottom:374.865000px;}
.y64{bottom:375.225000px;}
.y29{bottom:383.145000px;}
.y4a{bottom:390.705000px;}
.y63{bottom:399.030000px;}
.y28{bottom:406.950000px;}
.y49{bottom:410.550000px;}
.y62{bottom:422.790000px;}
.y27{bottom:430.710000px;}
.y61{bottom:446.550000px;}
.y26{bottom:454.470000px;}
.y60{bottom:470.670000px;}
.y25{bottom:478.590000px;}
.y5f{bottom:494.430000px;}
.y24{bottom:502.350000px;}
.y70{bottom:517.830000px;}
.y5e{bottom:518.190000px;}
.y23{bottom:526.110000px;}
.y5d{bottom:541.980000px;}
.y22{bottom:549.900000px;}
.y5c{bottom:565.740000px;}
.y21{bottom:573.660000px;}
.y5b{bottom:589.500000px;}
.y20{bottom:597.420000px;}
.y5a{bottom:613.260000px;}
.y1f{bottom:621.180000px;}
.y59{bottom:637.020000px;}
.y1e{bottom:644.940000px;}
.y58{bottom:661.140000px;}
.y1d{bottom:669.090000px;}
.y57{bottom:684.930000px;}
.y1c{bottom:692.850000px;}
.y48{bottom:708.690000px;}
.y1b{bottom:716.610000px;}
.y47{bottom:732.450000px;}
.y1a{bottom:740.370000px;}
.y46{bottom:756.210000px;}
.y19{bottom:764.130000px;}
.y45{bottom:779.970000px;}
.y18{bottom:787.890000px;}
.y44{bottom:803.775000px;}
.y17{bottom:811.695000px;}
.y43{bottom:827.535000px;}
.y16{bottom:835.455000px;}
.y42{bottom:851.295000px;}
.y15{bottom:859.575000px;}
.y41{bottom:875.415000px;}
.y14{bottom:883.335000px;}
.y40{bottom:899.175000px;}
.y13{bottom:907.095000px;}
.y3f{bottom:922.935000px;}
.y12{bottom:930.885000px;}
.y3e{bottom:946.725000px;}
.y11{bottom:954.645000px;}
.y3d{bottom:970.485000px;}
.y10{bottom:978.045000px;}
.y3c{bottom:994.245000px;}
.yf{bottom:1002.165000px;}
.y3b{bottom:1018.005000px;}
.ye{bottom:1025.925000px;}
.y3a{bottom:1041.765000px;}
.yd{bottom:1049.325000px;}
.y39{bottom:1065.930000px;}
.yc{bottom:1073.850000px;}
.y38{bottom:1089.690000px;}
.yb{bottom:1099.410000px;}
.y37{bottom:1113.450000px;}
.ya{bottom:1131.090000px;}
.y36{bottom:1137.210000px;}
.y4{bottom:1157.730000px;}
.y3{bottom:1176.810000px;}
.y2{bottom:1192.290000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.120000px;}
.h2{height:38.608594px;}
.h3{height:42.672656px;}
.h7{height:50.484375px;}
.h9{height:50.800781px;}
.ha{height:51.996094px;}
.hc{height:52.417969px;}
.hb{height:52.628906px;}
.h4{height:54.000000px;}
.h6{height:58.561875px;}
.h8{height:68.073047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.632000px;}
.w3{width:287.025000px;}
.w5{width:301.065000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:88.230000px;}
.x4{left:95.795987px;}
.xc{left:114.875987px;}
.x1{left:117.755987px;}
.x12{left:127.835987px;}
.x5{left:143.709000px;}
.xf{left:149.111987px;}
.x2{left:150.194987px;}
.x9{left:218.234987px;}
.xe{left:296.024987px;}
.xb{left:311.504987px;}
.xd{left:365.909987px;}
.x6{left:383.190000px;}
.x3{left:402.629987px;}
.x10{left:404.069987px;}
.xa{left:446.579987px;}
.x8{left:517.890000px;}
.x11{left:767.804987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.478933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.728000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls2{letter-spacing:3.200000pt;}
.lsb{letter-spacing:8.320000pt;}
.ls3{letter-spacing:18.560000pt;}
.ls1{letter-spacing:24.960000pt;}
.lsc{letter-spacing:47.488000pt;}
.lsa{letter-spacing:173.568000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws1{word-spacing:-20.961067pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-5.040213pt;}
._2{margin-left:-3.793920pt;}
._5{margin-left:-2.857813pt;}
._4{margin-left:-1.945600pt;}
._0{margin-left:-1.021440pt;}
._3{width:0.972800pt;}
._7{width:1.881600pt;}
._8{width:3.083093pt;}
._13{width:4.136533pt;}
._1c{width:5.763413pt;}
._1d{width:6.771200pt;}
._1b{width:7.833600pt;}
._27{width:8.852480pt;}
._1e{width:9.751040pt;}
._1a{width:11.127893pt;}
._19{width:12.232107pt;}
._21{width:13.485227pt;}
._22{width:14.963200pt;}
._14{width:17.715200pt;}
._15{width:18.816000pt;}
._b{width:19.840000pt;}
._a{width:20.800000pt;}
._c{width:22.041600pt;}
._e{width:23.050667pt;}
._d{width:24.320000pt;}
._f{width:25.466453pt;}
._10{width:27.520000pt;}
._23{width:28.817067pt;}
._11{width:29.888000pt;}
._2b{width:30.778027pt;}
._12{width:31.682987pt;}
._20{width:33.165653pt;}
._1f{width:34.086400pt;}
._9{width:39.050667pt;}
._18{width:40.256000pt;}
._28{width:41.846613pt;}
._25{width:49.690453pt;}
._24{width:50.713600pt;}
._26{width:52.553387pt;}
._16{width:53.952000pt;}
._17{width:55.193600pt;}
._29{width:125.568000pt;}
._2a{width:173.568000pt;}
._6{width:1104.405333pt;}
.fs0{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.480000pt;}
.y7{bottom:7.040000pt;}
.y9{bottom:23.712000pt;}
.y8{bottom:42.912000pt;}
.y5{bottom:60.512000pt;}
.y35{bottom:86.752000pt;}
.y56{bottom:93.472000pt;}
.y6f{bottom:100.832000pt;}
.y34{bottom:107.872000pt;}
.y55{bottom:114.624000pt;}
.y6e{bottom:121.984000pt;}
.y33{bottom:129.024000pt;}
.y54{bottom:135.746667pt;}
.y6d{bottom:143.106667pt;}
.y32{bottom:149.826667pt;}
.y53{bottom:156.866667pt;}
.y6c{bottom:164.226667pt;}
.y31{bottom:171.266667pt;}
.y52{bottom:177.986667pt;}
.y6b{bottom:185.346667pt;}
.y30{bottom:192.386667pt;}
.y51{bottom:199.106667pt;}
.y6a{bottom:206.466667pt;}
.y2f{bottom:213.506667pt;}
.y50{bottom:220.546667pt;}
.y69{bottom:227.906667pt;}
.y2e{bottom:234.973333pt;}
.y4f{bottom:241.693333pt;}
.y68{bottom:249.053333pt;}
.y2d{bottom:256.093333pt;}
.y4e{bottom:262.813333pt;}
.y67{bottom:270.173333pt;}
.y2c{bottom:277.213333pt;}
.y4d{bottom:283.933333pt;}
.y66{bottom:291.293333pt;}
.y2b{bottom:298.333333pt;}
.y4c{bottom:304.733333pt;}
.y72{bottom:312.093333pt;}
.y65{bottom:312.413333pt;}
.y2a{bottom:319.453333pt;}
.y4b{bottom:326.173333pt;}
.y71{bottom:333.213333pt;}
.y64{bottom:333.533333pt;}
.y29{bottom:340.573333pt;}
.y4a{bottom:347.293333pt;}
.y63{bottom:354.693333pt;}
.y28{bottom:361.733333pt;}
.y49{bottom:364.933333pt;}
.y62{bottom:375.813333pt;}
.y27{bottom:382.853333pt;}
.y61{bottom:396.933333pt;}
.y26{bottom:403.973333pt;}
.y60{bottom:418.373333pt;}
.y25{bottom:425.413333pt;}
.y5f{bottom:439.493333pt;}
.y24{bottom:446.533333pt;}
.y70{bottom:460.293333pt;}
.y5e{bottom:460.613333pt;}
.y23{bottom:467.653333pt;}
.y5d{bottom:481.760000pt;}
.y22{bottom:488.800000pt;}
.y5c{bottom:502.880000pt;}
.y21{bottom:509.920000pt;}
.y5b{bottom:524.000000pt;}
.y20{bottom:531.040000pt;}
.y5a{bottom:545.120000pt;}
.y1f{bottom:552.160000pt;}
.y59{bottom:566.240000pt;}
.y1e{bottom:573.280000pt;}
.y58{bottom:587.680000pt;}
.y1d{bottom:594.746667pt;}
.y57{bottom:608.826667pt;}
.y1c{bottom:615.866667pt;}
.y48{bottom:629.946667pt;}
.y1b{bottom:636.986667pt;}
.y47{bottom:651.066667pt;}
.y1a{bottom:658.106667pt;}
.y46{bottom:672.186667pt;}
.y19{bottom:679.226667pt;}
.y45{bottom:693.306667pt;}
.y18{bottom:700.346667pt;}
.y44{bottom:714.466667pt;}
.y17{bottom:721.506667pt;}
.y43{bottom:735.586667pt;}
.y16{bottom:742.626667pt;}
.y42{bottom:756.706667pt;}
.y15{bottom:764.066667pt;}
.y41{bottom:778.146667pt;}
.y14{bottom:785.186667pt;}
.y40{bottom:799.266667pt;}
.y13{bottom:806.306667pt;}
.y3f{bottom:820.386667pt;}
.y12{bottom:827.453333pt;}
.y3e{bottom:841.533333pt;}
.y11{bottom:848.573333pt;}
.y3d{bottom:862.653333pt;}
.y10{bottom:869.373333pt;}
.y3c{bottom:883.773333pt;}
.yf{bottom:890.813333pt;}
.y3b{bottom:904.893333pt;}
.ye{bottom:911.933333pt;}
.y3a{bottom:926.013333pt;}
.yd{bottom:932.733333pt;}
.y39{bottom:947.493333pt;}
.yc{bottom:954.533333pt;}
.y38{bottom:968.613333pt;}
.yb{bottom:977.253333pt;}
.y37{bottom:989.733333pt;}
.ya{bottom:1005.413333pt;}
.y36{bottom:1010.853333pt;}
.y4{bottom:1029.093333pt;}
.y3{bottom:1046.053333pt;}
.y2{bottom:1059.813333pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.440000pt;}
.h2{height:34.318750pt;}
.h3{height:37.931250pt;}
.h7{height:44.875000pt;}
.h9{height:45.156250pt;}
.ha{height:46.218750pt;}
.hc{height:46.593750pt;}
.hb{height:46.781250pt;}
.h4{height:48.000000pt;}
.h6{height:52.055000pt;}
.h8{height:60.509375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.784000pt;}
.w3{width:255.133333pt;}
.w5{width:267.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:78.426667pt;}
.x4{left:85.151988pt;}
.xc{left:102.111988pt;}
.x1{left:104.671988pt;}
.x12{left:113.631988pt;}
.x5{left:127.741333pt;}
.xf{left:132.543988pt;}
.x2{left:133.506655pt;}
.x9{left:193.986655pt;}
.xe{left:263.133322pt;}
.xb{left:276.893322pt;}
.xd{left:325.253322pt;}
.x6{left:340.613333pt;}
.x3{left:357.893322pt;}
.x10{left:359.173322pt;}
.xa{left:396.959988pt;}
.x8{left:460.346667pt;}
.x11{left:682.493322pt;}
}




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