
    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_64e1bb0722ade08f787f71af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_82137abb0ba029324388157b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_a6b79c778eec3ee7d718d791.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8389a062b1776c80640aa5b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ecfbeb6e7a3d89a647fdae3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51aeb3b4644674997cf83f6a.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,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);}
.m2{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);}
.v2{vertical-align:-11.160000px;}
.v6{vertical-align:-3.960000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.080000px;}
.v4{vertical-align:2.160000px;}
.v1{vertical-align:11.160000px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
._e{margin-left:-23.340000px;}
._b{margin-left:-15.840000px;}
._21{margin-left:-12.618000px;}
._a{margin-left:-10.080000px;}
._17{margin-left:-8.982000px;}
._f{margin-left:-7.140000px;}
._d{margin-left:-5.040000px;}
._8{margin-left:-3.480000px;}
._16{margin-left:-1.938000px;}
._6{width:1.080000px;}
._9{width:2.640000px;}
._11{width:3.960000px;}
._c{width:5.760000px;}
._7{width:7.200000px;}
._1d{width:8.256000px;}
._18{width:9.780000px;}
._12{width:10.980000px;}
._19{width:12.078000px;}
._13{width:13.380000px;}
._1a{width:15.678000px;}
._10{width:18.120000px;}
._2{width:19.818000px;}
._3{width:25.458000px;}
._1c{width:28.854000px;}
._1e{width:32.472000px;}
._1{width:36.432000px;}
._15{width:43.632000px;}
._1f{width:47.268000px;}
._14{width:51.384000px;}
._20{width:53.184000px;}
._5{width:54.624000px;}
._1b{width:71.526000px;}
._22{width:89.352000px;}
._4{width:235.722000px;}
._0{width:295.320000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs8{font-size:37.740000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:67.474526px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:14.160000px;}
.y13{bottom:18.000000px;}
.y48{bottom:23.610000px;}
.y12{bottom:30.000000px;}
.y11{bottom:114.000000px;}
.y10{bottom:196.500000px;}
.yf{bottom:211.500000px;}
.y46{bottom:218.700000px;}
.y47{bottom:218.880000px;}
.y44{bottom:242.190000px;}
.y45{bottom:242.460000px;}
.y43{bottom:265.860000px;}
.y42{bottom:302.220000px;}
.y41{bottom:319.500000px;}
.y3f{bottom:336.690000px;}
.y40{bottom:337.140000px;}
.y3d{bottom:353.700000px;}
.y3e{bottom:354.060000px;}
.y3a{bottom:373.770000px;}
.y3b{bottom:373.860000px;}
.y3c{bottom:373.950000px;}
.y38{bottom:397.260000px;}
.y39{bottom:397.440000px;}
.y37{bottom:420.570000px;}
.y34{bottom:466.470000px;}
.y35{bottom:466.560000px;}
.y36{bottom:466.650000px;}
.y33{bottom:489.960000px;}
.y32{bottom:513.540000px;}
.y30{bottom:559.530000px;}
.y31{bottom:559.890000px;}
.y2e{bottom:573.750000px;}
.y2f{bottom:574.290000px;}
.y2b{bottom:587.970000px;}
.y2c{bottom:588.330000px;}
.y2d{bottom:588.510000px;}
.y2a{bottom:602.280000px;}
.y28{bottom:628.830000px;}
.y29{bottom:628.920000px;}
.y26{bottom:645.840000px;}
.y27{bottom:646.290000px;}
.y24{bottom:663.120000px;}
.y25{bottom:663.300000px;}
.y22{bottom:680.580000px;}
.y23{bottom:681.030000px;}
.y20{bottom:701.010000px;}
.y21{bottom:701.190000px;}
.y1e{bottom:723.960000px;}
.y1f{bottom:724.680000px;}
.y1d{bottom:747.720000px;}
.y1c{bottom:783.450000px;}
.ye{bottom:784.500000px;}
.y1b{bottom:800.550000px;}
.y1a{bottom:818.460000px;}
.yd{bottom:820.500000px;}
.yc{bottom:838.500000px;}
.y19{bottom:838.530000px;}
.yb{bottom:856.500000px;}
.y16{bottom:861.660000px;}
.y17{bottom:861.750000px;}
.y18{bottom:861.840000px;}
.ya{bottom:874.500000px;}
.y15{bottom:884.790000px;}
.y9{bottom:910.500000px;}
.y8{bottom:928.500000px;}
.y14{bottom:940.860000px;}
.y7{bottom:976.500000px;}
.y6{bottom:1000.500000px;}
.y5{bottom:1020.000000px;}
.y4{bottom:1039.500000px;}
.y3{bottom:1059.000000px;}
.y2{bottom:1078.500000px;}
.y1{bottom:1155.000000px;}
.h14{height:37.039746px;}
.hb{height:42.688125px;}
.h7{height:47.109375px;}
.h2{height:50.789062px;}
.h3{height:51.923757px;}
.h13{height:54.421875px;}
.h12{height:56.581875px;}
.h6{height:58.857422px;}
.h5{height:58.886719px;}
.hc{height:60.468750px;}
.ha{height:60.828750px;}
.he{height:61.188750px;}
.h11{height:61.548750px;}
.h10{height:61.908750px;}
.hf{height:62.628750px;}
.h4{height:64.775391px;}
.hd{height:71.268750px;}
.h1{height:75.093750px;}
.h8{height:1122.480000px;}
.h9{height:1122.750000px;}
.h0{height:1317.000000px;}
.w1{width:702.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:75.000000px;}
.x2{left:137.640000px;}
.x7{left:146.700000px;}
.x14{left:148.140000px;}
.xc{left:162.000000px;}
.x1b{left:163.170000px;}
.x16{left:164.250000px;}
.x4{left:172.500000px;}
.x23{left:181.800000px;}
.xe{left:194.220000px;}
.x25{left:196.710000px;}
.x9{left:201.150000px;}
.x15{left:222.120000px;}
.x12{left:236.160000px;}
.x20{left:247.500000px;}
.x5{left:250.095000px;}
.x1d{left:257.400000px;}
.x26{left:259.890000px;}
.x10{left:273.240000px;}
.x21{left:296.640000px;}
.x1c{left:299.340000px;}
.x1a{left:307.620000px;}
.x8{left:311.220000px;}
.x24{left:315.720000px;}
.x1e{left:318.420000px;}
.x17{left:329.310000px;}
.x6{left:330.420000px;}
.xa{left:335.340000px;}
.xd{left:361.620000px;}
.x22{left:371.790000px;}
.x1f{left:382.050000px;}
.xb{left:433.080000px;}
.xf{left:439.380000px;}
.x19{left:440.640000px;}
.x18{left:449.640000px;}
.x11{left:454.410000px;}
.x13{left:467.280000px;}
.x3{left:667.305000px;}
@media print{
.v2{vertical-align:-9.920000pt;}
.v6{vertical-align:-3.520000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.960000pt;}
.v4{vertical-align:1.920000pt;}
.v1{vertical-align:9.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-20.746667pt;}
._b{margin-left:-14.080000pt;}
._21{margin-left:-11.216000pt;}
._a{margin-left:-8.960000pt;}
._17{margin-left:-7.984000pt;}
._f{margin-left:-6.346667pt;}
._d{margin-left:-4.480000pt;}
._8{margin-left:-3.093333pt;}
._16{margin-left:-1.722667pt;}
._6{width:0.960000pt;}
._9{width:2.346667pt;}
._11{width:3.520000pt;}
._c{width:5.120000pt;}
._7{width:6.400000pt;}
._1d{width:7.338667pt;}
._18{width:8.693333pt;}
._12{width:9.760000pt;}
._19{width:10.736000pt;}
._13{width:11.893333pt;}
._1a{width:13.936000pt;}
._10{width:16.106667pt;}
._2{width:17.616000pt;}
._3{width:22.629333pt;}
._1c{width:25.648000pt;}
._1e{width:28.864000pt;}
._1{width:32.384000pt;}
._15{width:38.784000pt;}
._1f{width:42.016000pt;}
._14{width:45.674667pt;}
._20{width:47.274667pt;}
._5{width:48.554667pt;}
._1b{width:63.578667pt;}
._22{width:79.424000pt;}
._4{width:209.530667pt;}
._0{width:262.506667pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:33.546667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:59.977357pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:12.586667pt;}
.y13{bottom:16.000000pt;}
.y48{bottom:20.986667pt;}
.y12{bottom:26.666667pt;}
.y11{bottom:101.333333pt;}
.y10{bottom:174.666667pt;}
.yf{bottom:188.000000pt;}
.y46{bottom:194.400000pt;}
.y47{bottom:194.560000pt;}
.y44{bottom:215.280000pt;}
.y45{bottom:215.520000pt;}
.y43{bottom:236.320000pt;}
.y42{bottom:268.640000pt;}
.y41{bottom:284.000000pt;}
.y3f{bottom:299.280000pt;}
.y40{bottom:299.680000pt;}
.y3d{bottom:314.400000pt;}
.y3e{bottom:314.720000pt;}
.y3a{bottom:332.240000pt;}
.y3b{bottom:332.320000pt;}
.y3c{bottom:332.400000pt;}
.y38{bottom:353.120000pt;}
.y39{bottom:353.280000pt;}
.y37{bottom:373.840000pt;}
.y34{bottom:414.640000pt;}
.y35{bottom:414.720000pt;}
.y36{bottom:414.800000pt;}
.y33{bottom:435.520000pt;}
.y32{bottom:456.480000pt;}
.y30{bottom:497.360000pt;}
.y31{bottom:497.680000pt;}
.y2e{bottom:510.000000pt;}
.y2f{bottom:510.480000pt;}
.y2b{bottom:522.640000pt;}
.y2c{bottom:522.960000pt;}
.y2d{bottom:523.120000pt;}
.y2a{bottom:535.360000pt;}
.y28{bottom:558.960000pt;}
.y29{bottom:559.040000pt;}
.y26{bottom:574.080000pt;}
.y27{bottom:574.480000pt;}
.y24{bottom:589.440000pt;}
.y25{bottom:589.600000pt;}
.y22{bottom:604.960000pt;}
.y23{bottom:605.360000pt;}
.y20{bottom:623.120000pt;}
.y21{bottom:623.280000pt;}
.y1e{bottom:643.520000pt;}
.y1f{bottom:644.160000pt;}
.y1d{bottom:664.640000pt;}
.y1c{bottom:696.400000pt;}
.ye{bottom:697.333333pt;}
.y1b{bottom:711.600000pt;}
.y1a{bottom:727.520000pt;}
.yd{bottom:729.333333pt;}
.yc{bottom:745.333333pt;}
.y19{bottom:745.360000pt;}
.yb{bottom:761.333333pt;}
.y16{bottom:765.920000pt;}
.y17{bottom:766.000000pt;}
.y18{bottom:766.080000pt;}
.ya{bottom:777.333333pt;}
.y15{bottom:786.480000pt;}
.y9{bottom:809.333333pt;}
.y8{bottom:825.333333pt;}
.y14{bottom:836.320000pt;}
.y7{bottom:868.000000pt;}
.y6{bottom:889.333333pt;}
.y5{bottom:906.666667pt;}
.y4{bottom:924.000000pt;}
.y3{bottom:941.333333pt;}
.y2{bottom:958.666667pt;}
.y1{bottom:1026.666667pt;}
.h14{height:32.924219pt;}
.hb{height:37.945000pt;}
.h7{height:41.875000pt;}
.h2{height:45.145833pt;}
.h3{height:46.154450pt;}
.h13{height:48.375000pt;}
.h12{height:50.295000pt;}
.h6{height:52.317708pt;}
.h5{height:52.343750pt;}
.hc{height:53.750000pt;}
.ha{height:54.070000pt;}
.he{height:54.390000pt;}
.h11{height:54.710000pt;}
.h10{height:55.030000pt;}
.hf{height:55.670000pt;}
.h4{height:57.578125pt;}
.hd{height:63.350000pt;}
.h1{height:66.750000pt;}
.h8{height:997.760000pt;}
.h9{height:998.000000pt;}
.h0{height:1170.666667pt;}
.w1{width:624.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:66.666667pt;}
.x2{left:122.346667pt;}
.x7{left:130.400000pt;}
.x14{left:131.680000pt;}
.xc{left:144.000000pt;}
.x1b{left:145.040000pt;}
.x16{left:146.000000pt;}
.x4{left:153.333333pt;}
.x23{left:161.600000pt;}
.xe{left:172.640000pt;}
.x25{left:174.853333pt;}
.x9{left:178.800000pt;}
.x15{left:197.440000pt;}
.x12{left:209.920000pt;}
.x20{left:220.000000pt;}
.x5{left:222.306667pt;}
.x1d{left:228.800000pt;}
.x26{left:231.013333pt;}
.x10{left:242.880000pt;}
.x21{left:263.680000pt;}
.x1c{left:266.080000pt;}
.x1a{left:273.440000pt;}
.x8{left:276.640000pt;}
.x24{left:280.640000pt;}
.x1e{left:283.040000pt;}
.x17{left:292.720000pt;}
.x6{left:293.706667pt;}
.xa{left:298.080000pt;}
.xd{left:321.440000pt;}
.x22{left:330.480000pt;}
.x1f{left:339.600000pt;}
.xb{left:384.960000pt;}
.xf{left:390.560000pt;}
.x19{left:391.680000pt;}
.x18{left:399.680000pt;}
.x11{left:403.920000pt;}
.x13{left:415.360000pt;}
.x3{left:593.160000pt;}
}




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