
    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_b187453059dfbfcf9e5c65f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_8634a2aed0bd2583eec00585.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_1efdc782006b49306d3a9a4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_6accf084599c0ab12bd3534d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_57a826b199801b6b45e5bbd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_7e040709a949ef7f830208fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:12.240418px;}
.v3{vertical-align:26.639924px;}
.v2{vertical-align:31.680175px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.030450px;}
.ls1{letter-spacing:12.239100px;}
.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:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws4{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:355.136045px;}
._21{margin-left:-20.627098px;}
._f{margin-left:-12.343177px;}
._5{margin-left:-11.066252px;}
._23{margin-left:-9.694447px;}
._22{margin-left:-8.590882px;}
._b{margin-left:-7.575173px;}
._3{margin-left:-6.240717px;}
._1{margin-left:-4.281914px;}
._4{margin-left:-2.456140px;}
._2{margin-left:-1.250500px;}
._0{width:1.048595px;}
._8{width:2.390880px;}
._6{width:3.418592px;}
._e{width:5.306525px;}
._c{width:6.652830px;}
._d{width:7.835245px;}
._13{width:9.081293px;}
._12{width:10.234263px;}
._9{width:11.845332px;}
._a{width:13.088642px;}
._7{width:14.256580px;}
._10{width:15.263979px;}
._20{width:17.156727px;}
._15{width:20.720171px;}
._16{width:21.847977px;}
._1e{width:31.047122px;}
._1d{width:32.217038px;}
._1f{width:33.245572px;}
._18{width:234.368537px;}
._1c{width:275.481241px;}
._1b{width:326.963288px;}
._1a{width:397.812053px;}
._14{width:571.460534px;}
._17{width:580.129742px;}
._19{width:636.453544px;}
._24{width:1394.918786px;}
._11{width:1695.568988px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:46.081800px;}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1e{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y35{bottom:41.040115px;}
.y45{bottom:121.320099px;}
.y1c{bottom:121.860000px;}
.y57{bottom:124.740074px;}
.y44{bottom:149.940033px;}
.y1b{bottom:150.300000px;}
.y56{bottom:153.180039px;}
.y43{bottom:178.560036px;}
.y1a{bottom:178.920000px;}
.y55{bottom:181.800041px;}
.y42{bottom:207.000068px;}
.y19{bottom:207.360000px;}
.y54{bottom:210.240074px;}
.y41{bottom:235.620072px;}
.y53{bottom:238.860077px;}
.y34{bottom:264.060036px;}
.y18{bottom:264.420000px;}
.y40{bottom:292.680039px;}
.y52{bottom:295.920043px;}
.y33{bottom:321.120072px;}
.y32{bottom:349.560036px;}
.y3f{bottom:349.740074px;}
.y17{bottom:350.100000px;}
.y51{bottom:352.980079px;}
.y31{bottom:378.180039px;}
.y49{bottom:406.800041px;}
.y16{bottom:407.160000px;}
.y50{bottom:410.040047px;}
.y30{bottom:435.240074px;}
.y15{bottom:435.600000px;}
.y4f{bottom:438.660049px;}
.y3e{bottom:463.860077px;}
.y14{bottom:464.220000px;}
.y4e{bottom:467.100083px;}
.y3d{bottom:492.300041px;}
.y13{bottom:492.660000px;}
.y4d{bottom:498.780052px;}
.y2f{bottom:520.740074px;}
.y3c{bottom:520.920043px;}
.y4c{bottom:533.340088px;}
.y2e{bottom:549.360077px;}
.y12{bottom:549.720000px;}
.y4b{bottom:567.900055px;}
.y2d{bottom:577.800041px;}
.y48{bottom:577.980079px;}
.y11{bottom:578.340000px;}
.y4a{bottom:602.460091px;}
.y2c{bottom:606.420043px;}
.y10{bottom:606.780000px;}
.y47{bottom:635.040047px;}
.yf{bottom:635.400000px;}
.y3b{bottom:663.480079px;}
.y3a{bottom:692.100083px;}
.ye{bottom:692.460000px;}
.y2b{bottom:720.540081px;}
.yd{bottom:720.900000px;}
.y2a{bottom:748.980079px;}
.y39{bottom:749.160049px;}
.y38{bottom:777.600083px;}
.yc{bottom:777.960000px;}
.y29{bottom:806.040081px;}
.y37{bottom:806.220051px;}
.y46{bottom:834.660049px;}
.y28{bottom:863.280052px;}
.yb{bottom:863.640000px;}
.y27{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y36{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y26{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y25{bottom:977.400072px;}
.y7{bottom:977.760000px;}
.y24{bottom:1005.840070px;}
.y23{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y22{bottom:1062.900072px;}
.y1d{bottom:1069.020000px;}
.y21{bottom:1091.520058px;}
.y5{bottom:1091.880000px;}
.y20{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y1f{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.hd{height:44.025626px;}
.h3{height:44.027189px;}
.h15{height:55.032267px;}
.h8{height:55.303923px;}
.h9{height:57.534328px;}
.h2{height:57.535781px;}
.h14{height:58.658674px;}
.h6{height:64.414925px;}
.ha{height:65.992187px;}
.h7{height:65.992812px;}
.hb{height:66.038595px;}
.h5{height:66.039220px;}
.h12{height:69.482501px;}
.h11{height:69.482636px;}
.hf{height:70.202519px;}
.h10{height:70.202659px;}
.he{height:70.202794px;}
.h13{height:70.346938px;}
.hc{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x9{left:96.480000px;}
.x4{left:98.280000px;}
.x3{left:115.560000px;}
.x5{left:128.520000px;}
.xf{left:140.939999px;}
.x8{left:146.520000px;}
.x12{left:174.240006px;}
.x17{left:188.639992px;}
.x1c{left:192.060001px;}
.x15{left:201.599997px;}
.x16{left:203.219999px;}
.x1b{left:213.120002px;}
.x7{left:217.260000px;}
.x6{left:218.880000px;}
.x23{left:219.960005px;}
.x11{left:224.639992px;}
.xe{left:255.960000px;}
.x1d{left:274.319996px;}
.xa{left:302.580000px;}
.xb{left:304.020000px;}
.x25{left:309.240006px;}
.x1a{left:339.480011px;}
.x26{left:340.740006px;}
.xd{left:360.360000px;}
.xc{left:369.000000px;}
.x1e{left:386.459988px;}
.x10{left:389.160015px;}
.x27{left:402.120002px;}
.x18{left:408.600014px;}
.x19{left:413.639992px;}
.x13{left:439.560001px;}
.x22{left:453.779983px;}
.x21{left:455.399987px;}
.x24{left:479.879998px;}
.x1{left:532.800000px;}
.x1f{left:537.839985px;}
.x20{left:601.559967px;}
.x28{left:615.059967px;}
.x14{left:752.580025px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v3{vertical-align:23.679932pt;}
.v2{vertical-align:28.160156pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.027066pt;}
.ls1{letter-spacing:10.879200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws4{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:315.676484pt;}
._21{margin-left:-18.335198pt;}
._f{margin-left:-10.971713pt;}
._5{margin-left:-9.836669pt;}
._23{margin-left:-8.617286pt;}
._22{margin-left:-7.636339pt;}
._b{margin-left:-6.733487pt;}
._3{margin-left:-5.547304pt;}
._1{margin-left:-3.806146pt;}
._4{margin-left:-2.183236pt;}
._2{margin-left:-1.111556pt;}
._0{width:0.932084pt;}
._8{width:2.125226pt;}
._6{width:3.038748pt;}
._e{width:4.716911pt;}
._c{width:5.913627pt;}
._d{width:6.964663pt;}
._13{width:8.072260pt;}
._12{width:9.097123pt;}
._9{width:10.529184pt;}
._a{width:11.634349pt;}
._7{width:12.672516pt;}
._10{width:13.567981pt;}
._20{width:15.250424pt;}
._15{width:18.417930pt;}
._16{width:19.420424pt;}
._1e{width:27.597441pt;}
._1d{width:28.637367pt;}
._1f{width:29.551619pt;}
._18{width:208.327588pt;}
._1c{width:244.872214pt;}
._1b{width:290.634034pt;}
._1a{width:353.610713pt;}
._14{width:507.964919pt;}
._17{width:515.670882pt;}
._19{width:565.736484pt;}
._24{width:1239.927810pt;}
._11{width:1507.172434pt;}
.fs9{font-size:40.961600pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1e{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y35{bottom:36.480103pt;}
.y45{bottom:107.840088pt;}
.y1c{bottom:108.320000pt;}
.y57{bottom:110.880066pt;}
.y44{bottom:133.280030pt;}
.y1b{bottom:133.600000pt;}
.y56{bottom:136.160035pt;}
.y43{bottom:158.720032pt;}
.y1a{bottom:159.040000pt;}
.y55{bottom:161.600037pt;}
.y42{bottom:184.000061pt;}
.y19{bottom:184.320000pt;}
.y54{bottom:186.880066pt;}
.y41{bottom:209.440064pt;}
.y53{bottom:212.320069pt;}
.y34{bottom:234.720032pt;}
.y18{bottom:235.040000pt;}
.y40{bottom:260.160035pt;}
.y52{bottom:263.040039pt;}
.y33{bottom:285.440064pt;}
.y32{bottom:310.720032pt;}
.y3f{bottom:310.880066pt;}
.y17{bottom:311.200000pt;}
.y51{bottom:313.760071pt;}
.y31{bottom:336.160035pt;}
.y49{bottom:361.600037pt;}
.y16{bottom:361.920000pt;}
.y50{bottom:364.480042pt;}
.y30{bottom:386.880066pt;}
.y15{bottom:387.200000pt;}
.y4f{bottom:389.920044pt;}
.y3e{bottom:412.320069pt;}
.y14{bottom:412.640000pt;}
.y4e{bottom:415.200074pt;}
.y3d{bottom:437.600037pt;}
.y13{bottom:437.920000pt;}
.y4d{bottom:443.360047pt;}
.y2f{bottom:462.880066pt;}
.y3c{bottom:463.040039pt;}
.y4c{bottom:474.080079pt;}
.y2e{bottom:488.320069pt;}
.y12{bottom:488.640000pt;}
.y4b{bottom:504.800049pt;}
.y2d{bottom:513.600037pt;}
.y48{bottom:513.760071pt;}
.y11{bottom:514.080000pt;}
.y4a{bottom:535.520081pt;}
.y2c{bottom:539.040039pt;}
.y10{bottom:539.360000pt;}
.y47{bottom:564.480042pt;}
.yf{bottom:564.800000pt;}
.y3b{bottom:589.760071pt;}
.y3a{bottom:615.200074pt;}
.ye{bottom:615.520000pt;}
.y2b{bottom:640.480072pt;}
.yd{bottom:640.800000pt;}
.y2a{bottom:665.760071pt;}
.y39{bottom:665.920044pt;}
.y38{bottom:691.200074pt;}
.yc{bottom:691.520000pt;}
.y29{bottom:716.480072pt;}
.y37{bottom:716.640046pt;}
.y46{bottom:741.920044pt;}
.y28{bottom:767.360047pt;}
.yb{bottom:767.680000pt;}
.y27{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y36{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y26{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y25{bottom:868.800064pt;}
.y7{bottom:869.120000pt;}
.y24{bottom:894.080063pt;}
.y23{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y22{bottom:944.800064pt;}
.y1d{bottom:950.240000pt;}
.y21{bottom:970.240052pt;}
.y5{bottom:970.560000pt;}
.y20{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y1f{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.hd{height:39.133890pt;}
.h3{height:39.135279pt;}
.h15{height:48.917571pt;}
.h8{height:49.159043pt;}
.h9{height:51.141625pt;}
.h2{height:51.142916pt;}
.h14{height:52.141044pt;}
.h6{height:57.257711pt;}
.ha{height:58.659722pt;}
.h7{height:58.660277pt;}
.hb{height:58.700973pt;}
.h5{height:58.701529pt;}
.h12{height:61.762223pt;}
.h11{height:61.762343pt;}
.hf{height:62.402239pt;}
.h10{height:62.402363pt;}
.he{height:62.402483pt;}
.h13{height:62.530612pt;}
.hc{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x9{left:85.760000pt;}
.x4{left:87.360000pt;}
.x3{left:102.720000pt;}
.x5{left:114.240000pt;}
.xf{left:125.279999pt;}
.x8{left:130.240000pt;}
.x12{left:154.880005pt;}
.x17{left:167.679993pt;}
.x1c{left:170.720001pt;}
.x15{left:179.199997pt;}
.x16{left:180.639999pt;}
.x1b{left:189.440002pt;}
.x7{left:193.120000pt;}
.x6{left:194.560000pt;}
.x23{left:195.520004pt;}
.x11{left:199.679993pt;}
.xe{left:227.520000pt;}
.x1d{left:243.839996pt;}
.xa{left:268.960000pt;}
.xb{left:270.240000pt;}
.x25{left:274.880005pt;}
.x1a{left:301.760010pt;}
.x26{left:302.880005pt;}
.xd{left:320.320000pt;}
.xc{left:328.000000pt;}
.x1e{left:343.519989pt;}
.x10{left:345.920013pt;}
.x27{left:357.440002pt;}
.x18{left:363.200012pt;}
.x19{left:367.679993pt;}
.x13{left:390.720001pt;}
.x22{left:403.359985pt;}
.x21{left:404.799988pt;}
.x24{left:426.559998pt;}
.x1{left:473.600000pt;}
.x1f{left:478.079987pt;}
.x20{left:534.719971pt;}
.x28{left:546.719971pt;}
.x14{left:668.960022pt;}
}




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