
    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_d2242758b18089a1e7f97be5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_4517b19f137250e981eb19f4.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4a47efb821bc0a68910e944f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d1ae5c128f57eed84f14fd1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c4ee8b238ad25bd70889d463.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_77414ce6a5c567479efd3478.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1cfb7cd0991a0984ac27403.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_6f3a64d1ab951cb5cda72cfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_84a30ae7cbe22c742162dd2c.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls7{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001920px;}
.ls3{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.745920px;}
.ls5{letter-spacing:5.040000px;}
.lsd{letter-spacing:12.960000px;}
.lse{letter-spacing:20.880000px;}
.lsa{letter-spacing:36.720000px;}
.lsf{letter-spacing:42.480000px;}
.lsc{letter-spacing:45.360000px;}
.ls12{letter-spacing:47.502720px;}
.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;}
}
.ws1{word-spacing:-21.617280px;}
.ws0{word-spacing:-21.060000px;}
.ws6{word-spacing:-19.465920px;}
.ws4{word-spacing:-19.448640px;}
.ws3{word-spacing:-19.440000px;}
.ws2{word-spacing:-0.077760px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.010880px;}
._0{width:1.244160px;}
._2{width:2.633280px;}
._18{width:4.743360px;}
._17{width:6.609600px;}
._1a{width:7.698240px;}
._19{width:8.786880px;}
._13{width:9.875520px;}
._1f{width:11.112000px;}
._16{width:12.523200px;}
._15{width:13.915200px;}
._14{width:15.552000px;}
._1b{width:16.718400px;}
._29{width:17.884800px;}
._3a{width:20.450880px;}
._33{width:21.539520px;}
._8{width:23.250240px;}
._2b{width:24.416640px;}
._2d{width:26.205120px;}
._27{width:28.460160px;}
._20{width:30.326400px;}
._31{width:31.415040px;}
._1c{width:32.814720px;}
._2f{width:33.981120px;}
._22{width:34.992000px;}
._2a{width:36.158400px;}
._23{width:37.402560px;}
._38{width:42.612480px;}
._21{width:43.701120px;}
._a{width:45.645120px;}
._9{width:46.889280px;}
._28{width:48.366720px;}
._e{width:49.377600px;}
._d{width:50.388480px;}
._7{width:51.710400px;}
._37{width:53.187840px;}
._39{width:54.898560px;}
._3c{width:56.220480px;}
._3d{width:57.853440px;}
._26{width:61.119360px;}
._c{width:62.830080px;}
._32{width:66.873600px;}
._2e{width:69.050880px;}
._3{width:70.528320px;}
._36{width:71.694720px;}
._35{width:73.094400px;}
._6{width:76.495680px;}
._34{width:80.559360px;}
._25{width:84.888480px;}
._24{width:86.002560px;}
._1e{width:89.112960px;}
._1d{width:90.279360px;}
._2c{width:91.523520px;}
._30{width:95.800320px;}
._3b{width:98.599680px;}
._4{width:137.946240px;}
._11{width:163.140480px;}
._5{width:177.448320px;}
._b{width:210.496320px;}
._12{width:221.538240px;}
._f{width:275.970240px;}
._10{width:378.069120px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y18{bottom:4.140000px;}
.y1a{bottom:5.040000px;}
.y32{bottom:7.560000px;}
.y17{bottom:26.640000px;}
.y31{bottom:33.300000px;}
.y2f{bottom:33.660000px;}
.y3a{bottom:37.440000px;}
.y2b{bottom:48.960000px;}
.y2e{bottom:55.980000px;}
.yd{bottom:57.600000px;}
.y39{bottom:59.940000px;}
.y2a{bottom:71.460000px;}
.y2d{bottom:78.480000px;}
.yc{bottom:81.756000px;}
.y38{bottom:82.260000px;}
.y29{bottom:93.780000px;}
.y37{bottom:104.760000px;}
.yb{bottom:105.876000px;}
.y28{bottom:116.280000px;}
.y36{bottom:127.080000px;}
.ya{bottom:129.996000px;}
.y27{bottom:138.600000px;}
.y35{bottom:149.610000px;}
.y9{bottom:153.750000px;}
.y26{bottom:161.130000px;}
.y34{bottom:171.930000px;}
.y8{bottom:176.250000px;}
.y25{bottom:183.630000px;}
.y33{bottom:194.430000px;}
.y7{bottom:198.570000px;}
.y24{bottom:205.950000px;}
.y6{bottom:221.070000px;}
.y23{bottom:228.450000px;}
.y42{bottom:248.430000px;}
.y22{bottom:250.770000px;}
.y62{bottom:252.390000px;}
.y21{bottom:273.270000px;}
.y41{bottom:274.170000px;}
.y61{bottom:278.130000px;}
.y20{bottom:295.590000px;}
.y40{bottom:300.090000px;}
.y60{bottom:303.870000px;}
.y1f{bottom:318.090000px;}
.y3f{bottom:325.830000px;}
.y5f{bottom:329.835000px;}
.y1e{bottom:340.590000px;}
.y3e{bottom:351.615000px;}
.y5e{bottom:355.575000px;}
.y1d{bottom:362.910000px;}
.y3d{bottom:377.355000px;}
.y5d{bottom:381.315000px;}
.y1c{bottom:385.410000px;}
.y3c{bottom:403.275000px;}
.y5c{bottom:407.055000px;}
.y3b{bottom:429.555000px;}
.y5b{bottom:432.975000px;}
.y1b{bottom:449.175000px;}
.y5a{bottom:458.715000px;}
.y59{bottom:484.455000px;}
.y58{bottom:510.195000px;}
.y57{bottom:536.115000px;}
.y56{bottom:561.855000px;}
.y55{bottom:587.595000px;}
.y54{bottom:613.365000px;}
.y53{bottom:639.285000px;}
.y30{bottom:662.685000px;}
.y52{bottom:665.025000px;}
.y68{bottom:684.465000px;}
.y51{bottom:690.765000px;}
.y67{bottom:707.145000px;}
.y50{bottom:716.685000px;}
.y2c{bottom:732.165000px;}
.y66{bottom:735.045000px;}
.y4f{bottom:742.425000px;}
.y65{bottom:762.765000px;}
.y4e{bottom:768.165000px;}
.y64{bottom:790.485000px;}
.y4d{bottom:793.905000px;}
.y63{bottom:818.385000px;}
.y4c{bottom:819.825000px;}
.y19{bottom:829.545000px;}
.y4b{bottom:845.565000px;}
.y16{bottom:862.530000px;}
.y4a{bottom:871.350000px;}
.y49{bottom:897.090000px;}
.y15{bottom:920.670000px;}
.y48{bottom:923.010000px;}
.y14{bottom:942.990000px;}
.y47{bottom:948.750000px;}
.y13{bottom:965.490000px;}
.y46{bottom:974.490000px;}
.y12{bottom:987.810000px;}
.y45{bottom:1000.230000px;}
.y11{bottom:1010.310000px;}
.y44{bottom:1026.150000px;}
.y10{bottom:1032.630000px;}
.y43{bottom:1051.890000px;}
.yf{bottom:1055.130000px;}
.ye{bottom:1077.630000px;}
.y5{bottom:1100.310000px;}
.y4{bottom:1124.070000px;}
.y3{bottom:1146.960000px;}
.y2{bottom:1170.720000px;}
.y1{bottom:1193.040000px;}
.ha{height:32.220000px;}
.h9{height:54.000000px;}
.h7{height:54.523125px;}
.h6{height:56.611406px;}
.h8{height:56.839219px;}
.h5{height:59.066719px;}
.h2{height:62.261719px;}
.h3{height:67.242656px;}
.hd{height:69.480000px;}
.h4{height:72.846211px;}
.hc{height:96.660000px;}
.he{height:212.790000px;}
.hb{height:412.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:237.450000px;}
.w4{width:404.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x19{left:16.560000px;}
.x16{left:20.160000px;}
.x15{left:27.714000px;}
.x10{left:29.340000px;}
.xf{left:33.294000px;}
.x14{left:35.094000px;}
.xb{left:43.734000px;}
.x17{left:48.954000px;}
.x18{left:54.354000px;}
.x12{left:67.854000px;}
.xc{left:78.654000px;}
.x13{left:79.914000px;}
.x1{left:84.959987px;}
.x2{left:87.119987px;}
.x1b{left:106.235987px;}
.x4{left:126.215987px;}
.x1a{left:127.475987px;}
.x5{left:137.375987px;}
.xe{left:144.210000px;}
.x9{left:196.589987px;}
.x6{left:198.749987px;}
.xa{left:249.869987px;}
.xd{left:362.775000px;}
.x8{left:391.934987px;}
.x7{left:457.094987px;}
.x3{left:778.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001707pt;}
.ls3{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.663040pt;}
.ls5{letter-spacing:4.480000pt;}
.lsd{letter-spacing:11.520000pt;}
.lse{letter-spacing:18.560000pt;}
.lsa{letter-spacing:32.640000pt;}
.lsf{letter-spacing:37.760000pt;}
.lsc{letter-spacing:40.320000pt;}
.ls12{letter-spacing:42.224640pt;}
.ws1{word-spacing:-19.215360pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-17.303040pt;}
.ws4{word-spacing:-17.287680pt;}
.ws3{word-spacing:-17.280000pt;}
.ws2{word-spacing:-0.069120pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.105920pt;}
._2{width:2.340693pt;}
._18{width:4.216320pt;}
._17{width:5.875200pt;}
._1a{width:6.842880pt;}
._19{width:7.810560pt;}
._13{width:8.778240pt;}
._1f{width:9.877333pt;}
._16{width:11.131733pt;}
._15{width:12.369067pt;}
._14{width:13.824000pt;}
._1b{width:14.860800pt;}
._29{width:15.897600pt;}
._3a{width:18.178560pt;}
._33{width:19.146240pt;}
._8{width:20.666880pt;}
._2b{width:21.703680pt;}
._2d{width:23.293440pt;}
._27{width:25.297920pt;}
._20{width:26.956800pt;}
._31{width:27.924480pt;}
._1c{width:29.168640pt;}
._2f{width:30.205440pt;}
._22{width:31.104000pt;}
._2a{width:32.140800pt;}
._23{width:33.246720pt;}
._38{width:37.877760pt;}
._21{width:38.845440pt;}
._a{width:40.573440pt;}
._9{width:41.679360pt;}
._28{width:42.992640pt;}
._e{width:43.891200pt;}
._d{width:44.789760pt;}
._7{width:45.964800pt;}
._37{width:47.278080pt;}
._39{width:48.798720pt;}
._3c{width:49.973760pt;}
._3d{width:51.425280pt;}
._26{width:54.328320pt;}
._c{width:55.848960pt;}
._32{width:59.443200pt;}
._2e{width:61.378560pt;}
._3{width:62.691840pt;}
._36{width:63.728640pt;}
._35{width:64.972800pt;}
._6{width:67.996160pt;}
._34{width:71.608320pt;}
._25{width:75.456427pt;}
._24{width:76.446720pt;}
._1e{width:79.211520pt;}
._1d{width:80.248320pt;}
._2c{width:81.354240pt;}
._30{width:85.155840pt;}
._3b{width:87.644160pt;}
._4{width:122.618880pt;}
._11{width:145.013760pt;}
._5{width:157.731840pt;}
._b{width:187.107840pt;}
._12{width:196.922880pt;}
._f{width:245.306880pt;}
._10{width:336.061440pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:3.680000pt;}
.y1a{bottom:4.480000pt;}
.y32{bottom:6.720000pt;}
.y17{bottom:23.680000pt;}
.y31{bottom:29.600000pt;}
.y2f{bottom:29.920000pt;}
.y3a{bottom:33.280000pt;}
.y2b{bottom:43.520000pt;}
.y2e{bottom:49.760000pt;}
.yd{bottom:51.200000pt;}
.y39{bottom:53.280000pt;}
.y2a{bottom:63.520000pt;}
.y2d{bottom:69.760000pt;}
.yc{bottom:72.672000pt;}
.y38{bottom:73.120000pt;}
.y29{bottom:83.360000pt;}
.y37{bottom:93.120000pt;}
.yb{bottom:94.112000pt;}
.y28{bottom:103.360000pt;}
.y36{bottom:112.960000pt;}
.ya{bottom:115.552000pt;}
.y27{bottom:123.200000pt;}
.y35{bottom:132.986667pt;}
.y9{bottom:136.666667pt;}
.y26{bottom:143.226667pt;}
.y34{bottom:152.826667pt;}
.y8{bottom:156.666667pt;}
.y25{bottom:163.226667pt;}
.y33{bottom:172.826667pt;}
.y7{bottom:176.506667pt;}
.y24{bottom:183.066667pt;}
.y6{bottom:196.506667pt;}
.y23{bottom:203.066667pt;}
.y42{bottom:220.826667pt;}
.y22{bottom:222.906667pt;}
.y62{bottom:224.346667pt;}
.y21{bottom:242.906667pt;}
.y41{bottom:243.706667pt;}
.y61{bottom:247.226667pt;}
.y20{bottom:262.746667pt;}
.y40{bottom:266.746667pt;}
.y60{bottom:270.106667pt;}
.y1f{bottom:282.746667pt;}
.y3f{bottom:289.626667pt;}
.y5f{bottom:293.186667pt;}
.y1e{bottom:302.746667pt;}
.y3e{bottom:312.546667pt;}
.y5e{bottom:316.066667pt;}
.y1d{bottom:322.586667pt;}
.y3d{bottom:335.426667pt;}
.y5d{bottom:338.946667pt;}
.y1c{bottom:342.586667pt;}
.y3c{bottom:358.466667pt;}
.y5c{bottom:361.826667pt;}
.y3b{bottom:381.826667pt;}
.y5b{bottom:384.866667pt;}
.y1b{bottom:399.266667pt;}
.y5a{bottom:407.746667pt;}
.y59{bottom:430.626667pt;}
.y58{bottom:453.506667pt;}
.y57{bottom:476.546667pt;}
.y56{bottom:499.426667pt;}
.y55{bottom:522.306667pt;}
.y54{bottom:545.213333pt;}
.y53{bottom:568.253333pt;}
.y30{bottom:589.053333pt;}
.y52{bottom:591.133333pt;}
.y68{bottom:608.413333pt;}
.y51{bottom:614.013333pt;}
.y67{bottom:628.573333pt;}
.y50{bottom:637.053333pt;}
.y2c{bottom:650.813333pt;}
.y66{bottom:653.373333pt;}
.y4f{bottom:659.933333pt;}
.y65{bottom:678.013333pt;}
.y4e{bottom:682.813333pt;}
.y64{bottom:702.653333pt;}
.y4d{bottom:705.693333pt;}
.y63{bottom:727.453333pt;}
.y4c{bottom:728.733333pt;}
.y19{bottom:737.373333pt;}
.y4b{bottom:751.613333pt;}
.y16{bottom:766.693333pt;}
.y4a{bottom:774.533333pt;}
.y49{bottom:797.413333pt;}
.y15{bottom:818.373333pt;}
.y48{bottom:820.453333pt;}
.y14{bottom:838.213333pt;}
.y47{bottom:843.333333pt;}
.y13{bottom:858.213333pt;}
.y46{bottom:866.213333pt;}
.y12{bottom:878.053333pt;}
.y45{bottom:889.093333pt;}
.y11{bottom:898.053333pt;}
.y44{bottom:912.133333pt;}
.y10{bottom:917.893333pt;}
.y43{bottom:935.013333pt;}
.yf{bottom:937.893333pt;}
.ye{bottom:957.893333pt;}
.y5{bottom:978.053333pt;}
.y4{bottom:999.173333pt;}
.y3{bottom:1019.520000pt;}
.y2{bottom:1040.640000pt;}
.y1{bottom:1060.480000pt;}
.ha{height:28.640000pt;}
.h9{height:48.000000pt;}
.h7{height:48.465000pt;}
.h6{height:50.321250pt;}
.h8{height:50.523750pt;}
.h5{height:52.503750pt;}
.h2{height:55.343750pt;}
.h3{height:59.771250pt;}
.hd{height:61.760000pt;}
.h4{height:64.752187pt;}
.hc{height:85.920000pt;}
.he{height:189.146667pt;}
.hb{height:366.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:211.066667pt;}
.w4{width:359.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x19{left:14.720000pt;}
.x16{left:17.920000pt;}
.x15{left:24.634667pt;}
.x10{left:26.080000pt;}
.xf{left:29.594667pt;}
.x14{left:31.194667pt;}
.xb{left:38.874667pt;}
.x17{left:43.514667pt;}
.x18{left:48.314667pt;}
.x12{left:60.314667pt;}
.xc{left:69.914667pt;}
.x13{left:71.034667pt;}
.x1{left:75.519988pt;}
.x2{left:77.439988pt;}
.x1b{left:94.431988pt;}
.x4{left:112.191988pt;}
.x1a{left:113.311988pt;}
.x5{left:122.111988pt;}
.xe{left:128.186667pt;}
.x9{left:174.746655pt;}
.x6{left:176.666655pt;}
.xa{left:222.106655pt;}
.xd{left:322.466667pt;}
.x8{left:348.386655pt;}
.x7{left:406.306655pt;}
.x3{left:692.133322pt;}
}




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