
    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_308d7a5994ff842f3c6eeda1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_92bd056f3c6660d74ec62348.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_dd35aba83c92bcbe4634afbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_64589020809f184d87436fb8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_59c3661356de3d71b099188e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_b9b1b9efcc405e90e3e255b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5c078f5cce7704c3ecf875f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_63922fced020fea4d73c58f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ee65bd3cc10ea73264922c08.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_cf30183116e4da29ef0004a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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:ffb;src:url('chunks/assets/font_05e5107554a71d1a046cebbe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-87.840000px;}
.v2{vertical-align:-72.144000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:38.880000px;}
.ls8{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.166800px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.403200px;}
.ls9{letter-spacing:3.030000px;}
.ls5{letter-spacing:241.709760px;}
.ls4{letter-spacing:1382.249280px;}
.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;}
}
.ws3{word-spacing:-31.644000px;}
.ws0{word-spacing:-20.733120px;}
.ws2{word-spacing:-20.655360px;}
.ws5{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.410720px;}
.ws6{word-spacing:-13.229520px;}
.ws7{word-spacing:-8.406720px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-3.540480px;}
._1{margin-left:-1.684800px;}
._2{width:1.267680px;}
._3{width:2.914560px;}
._4{width:4.438080px;}
._8{width:9.037440px;}
._7{width:10.134720px;}
._5{width:26.098560px;}
._6{width:27.224640px;}
._0{width:829.436640px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs5{font-size:96.480000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:119.520000px;}
.fs2{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.320000px;}
.y20{bottom:20.880000px;}
.y1f{bottom:34.596000px;}
.y1d{bottom:45.360000px;}
.y1e{bottom:48.456000px;}
.y2{bottom:56.196000px;}
.y1c{bottom:75.636000px;}
.y1{bottom:75.996000px;}
.y1b{bottom:90.936000px;}
.y41{bottom:112.176000px;}
.y40{bottom:132.336000px;}
.y3f{bottom:152.490000px;}
.y18{bottom:167.835000px;}
.y3e{bottom:172.650000px;}
.y3d{bottom:192.810000px;}
.y3c{bottom:212.970000px;}
.y3b{bottom:233.130000px;}
.y3a{bottom:248.790000px;}
.y17{bottom:296.745000px;}
.y16{bottom:331.665000px;}
.y15{bottom:366.945000px;}
.y14{bottom:401.865000px;}
.y13{bottom:437.190000px;}
.y12{bottom:472.110000px;}
.y11{bottom:507.030000px;}
.y39{bottom:536.835000px;}
.y10{bottom:542.310000px;}
.y38{bottom:556.995000px;}
.y37{bottom:577.155000px;}
.yf{bottom:577.260000px;}
.y36{bottom:597.135000px;}
.ye{bottom:612.540000px;}
.y35{bottom:617.325000px;}
.y34{bottom:637.485000px;}
.yd{bottom:650.340000px;}
.y33{bottom:657.645000px;}
.y32{bottom:677.805000px;}
.y31{bottom:697.965000px;}
.yc{bottom:698.250000px;}
.y30{bottom:718.125000px;}
.y2f{bottom:738.285000px;}
.yb{bottom:751.170000px;}
.y2e{bottom:758.445000px;}
.y2d{bottom:778.605000px;}
.ya{bottom:788.610000px;}
.y2c{bottom:798.585000px;}
.y2b{bottom:818.745000px;}
.y2a{bottom:839.265000px;}
.y9{bottom:839.775000px;}
.y29{bottom:861.225000px;}
.y28{bottom:883.230000px;}
.y8{bottom:893.775000px;}
.y27{bottom:905.370000px;}
.y26{bottom:927.330000px;}
.y7{bottom:947.805000px;}
.y25{bottom:949.290000px;}
.y24{bottom:971.250000px;}
.y23{bottom:993.930000px;}
.y6{bottom:1001.445000px;}
.y22{bottom:1041.630000px;}
.y1a{bottom:1051.890000px;}
.y5{bottom:1055.445000px;}
.y19{bottom:1066.110000px;}
.y4{bottom:1114.530000px;}
.y3{bottom:1126.410000px;}
.he{height:30.963516px;}
.ha{height:35.261367px;}
.hc{height:40.104141px;}
.h9{height:42.164648px;}
.hd{height:53.573906px;}
.hb{height:59.796000px;}
.h10{height:62.964844px;}
.h8{height:64.546875px;}
.h13{height:65.884219px;}
.h11{height:65.946445px;}
.h2{height:66.272344px;}
.h14{height:67.824844px;}
.h12{height:73.722656px;}
.h7{height:78.955312px;}
.hf{height:86.255508px;}
.h6{height:88.382812px;}
.h5{height:95.445000px;}
.h3{height:97.810312px;}
.h4{height:137.877187px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w6{width:321.555000px;}
.w1{width:892.500000px;}
.w2{width:892.800000px;}
.w0{width:892.800015px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:84.959987px;}
.x2{left:127.475987px;}
.x5{left:189.794987px;}
.xe{left:234.389987px;}
.x4{left:260.744987px;}
.x7{left:332.069987px;}
.xa{left:346.934987px;}
.x8{left:351.149987px;}
.x6{left:377.789987px;}
.xf{left:382.034987px;}
.xd{left:385.274987px;}
.x1{left:441.899987px;}
.x3{left:446.579987px;}
.x9{left:516.089987px;}
.xc{left:549.825000px;}
.x10{left:676.049987px;}
@media print{
.v4{vertical-align:-78.080000pt;}
.v2{vertical-align:-64.128000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:34.560000pt;}
.ls8{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.148267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.358400pt;}
.ls9{letter-spacing:2.693333pt;}
.ls5{letter-spacing:214.853120pt;}
.ls4{letter-spacing:1228.666027pt;}
.ws3{word-spacing:-28.128000pt;}
.ws0{word-spacing:-18.429440pt;}
.ws2{word-spacing:-18.360320pt;}
.ws5{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-11.920640pt;}
.ws6{word-spacing:-11.759573pt;}
.ws7{word-spacing:-7.472640pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-3.147093pt;}
._1{margin-left:-1.497600pt;}
._2{width:1.126827pt;}
._3{width:2.590720pt;}
._4{width:3.944960pt;}
._8{width:8.033280pt;}
._7{width:9.008640pt;}
._5{width:23.198720pt;}
._6{width:24.199680pt;}
._0{width:737.277013pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs5{font-size:85.760000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.240000pt;}
.fs2{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.840000pt;}
.y20{bottom:18.560000pt;}
.y1f{bottom:30.752000pt;}
.y1d{bottom:40.320000pt;}
.y1e{bottom:43.072000pt;}
.y2{bottom:49.952000pt;}
.y1c{bottom:67.232000pt;}
.y1{bottom:67.552000pt;}
.y1b{bottom:80.832000pt;}
.y41{bottom:99.712000pt;}
.y40{bottom:117.632000pt;}
.y3f{bottom:135.546667pt;}
.y18{bottom:149.186667pt;}
.y3e{bottom:153.466667pt;}
.y3d{bottom:171.386667pt;}
.y3c{bottom:189.306667pt;}
.y3b{bottom:207.226667pt;}
.y3a{bottom:221.146667pt;}
.y17{bottom:263.773333pt;}
.y16{bottom:294.813333pt;}
.y15{bottom:326.173333pt;}
.y14{bottom:357.213333pt;}
.y13{bottom:388.613333pt;}
.y12{bottom:419.653333pt;}
.y11{bottom:450.693333pt;}
.y39{bottom:477.186667pt;}
.y10{bottom:482.053333pt;}
.y38{bottom:495.106667pt;}
.y37{bottom:513.026667pt;}
.yf{bottom:513.120000pt;}
.y36{bottom:530.786667pt;}
.ye{bottom:544.480000pt;}
.y35{bottom:548.733333pt;}
.y34{bottom:566.653333pt;}
.yd{bottom:578.080000pt;}
.y33{bottom:584.573333pt;}
.y32{bottom:602.493333pt;}
.y31{bottom:620.413333pt;}
.yc{bottom:620.666667pt;}
.y30{bottom:638.333333pt;}
.y2f{bottom:656.253333pt;}
.yb{bottom:667.706667pt;}
.y2e{bottom:674.173333pt;}
.y2d{bottom:692.093333pt;}
.ya{bottom:700.986667pt;}
.y2c{bottom:709.853333pt;}
.y2b{bottom:727.773333pt;}
.y2a{bottom:746.013333pt;}
.y9{bottom:746.466667pt;}
.y29{bottom:765.533333pt;}
.y28{bottom:785.093333pt;}
.y8{bottom:794.466667pt;}
.y27{bottom:804.773333pt;}
.y26{bottom:824.293333pt;}
.y7{bottom:842.493333pt;}
.y25{bottom:843.813333pt;}
.y24{bottom:863.333333pt;}
.y23{bottom:883.493333pt;}
.y6{bottom:890.173333pt;}
.y22{bottom:925.893333pt;}
.y1a{bottom:935.013333pt;}
.y5{bottom:938.173333pt;}
.y19{bottom:947.653333pt;}
.y4{bottom:990.693333pt;}
.y3{bottom:1001.253333pt;}
.he{height:27.523125pt;}
.ha{height:31.343437pt;}
.hc{height:35.648125pt;}
.h9{height:37.479688pt;}
.hd{height:47.621250pt;}
.hb{height:53.152000pt;}
.h10{height:55.968750pt;}
.h8{height:57.375000pt;}
.h13{height:58.563750pt;}
.h11{height:58.619063pt;}
.h2{height:58.908750pt;}
.h14{height:60.288750pt;}
.h12{height:65.531250pt;}
.h7{height:70.182500pt;}
.hf{height:76.671562pt;}
.h6{height:78.562500pt;}
.h5{height:84.840000pt;}
.h3{height:86.942500pt;}
.h4{height:122.557500pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w6{width:285.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.600000pt;}
.w0{width:793.600013pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:75.519988pt;}
.x2{left:113.311988pt;}
.x5{left:168.706655pt;}
.xe{left:208.346655pt;}
.x4{left:231.773322pt;}
.x7{left:295.173322pt;}
.xa{left:308.386655pt;}
.x8{left:312.133322pt;}
.x6{left:335.813322pt;}
.xf{left:339.586655pt;}
.xd{left:342.466655pt;}
.x1{left:392.799988pt;}
.x3{left:396.959988pt;}
.x9{left:458.746655pt;}
.xc{left:488.733333pt;}
.x10{left:600.933322pt;}
}




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