
    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_99c7ac18101fd65e7bea0076.woff')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_f938b022401db81b544abc6e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_a81b6b5511decd3ef06e40e8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.161000;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_6f9c60b014b7d644cd62cc48.woff')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_478a77d272abbbf4caa0d607.woff')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_5f39db01625f0ab5900d7af1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_49aaa4eba89e301a52a00c66.woff')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_e40eb5c7a539d8f7f980abad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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_ef5fda9639caffe27b21c5c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-2.100000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.158700px;}
.ls6{letter-spacing:0.702000px;}
.ls0{letter-spacing:0.815700px;}
.ls5{letter-spacing:0.875700px;}
.ls3{letter-spacing:0.930000px;}
.ls2{letter-spacing:2.982000px;}
.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;}
}
.ws4{word-spacing:-53.411400px;}
.ws9{word-spacing:-36.325800px;}
.wsa{word-spacing:-28.623000px;}
.ws8{word-spacing:-18.903300px;}
.ws7{word-spacing:-18.864000px;}
.ws1{word-spacing:-18.348300px;}
.ws6{word-spacing:-17.322900px;}
.ws2{word-spacing:-16.296300px;}
.ws3{word-spacing:-15.366300px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:27.169200px;}
.ws0{word-spacing:31.785150px;}
.wsb{word-spacing:52.165800px;}
._6{margin-left:-5.538000px;}
._5{margin-left:-4.459500px;}
._2{margin-left:-3.108450px;}
._4{margin-left:-1.876800px;}
._0{width:1.814550px;}
._1{width:2.932500px;}
._3{width:3.933150px;}
._7{width:4.935450px;}
._8{width:27.268200px;}
.fc6{color:transparent;}
.fc5{color:rgb(5,29,6);}
.fc7{color:rgb(242,242,242);}
.fc4{color:rgb(142,142,142);}
.fc3{color:rgb(67,67,67);}
.fc2{color:rgb(50,50,50);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(166,166,166);}
.fs0{font-size:58.650000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:72.150000px;}
.fs3{font-size:76.500000px;}
.fs4{font-size:76.650000px;}
.fs5{font-size:85.650000px;}
.fs8{font-size:121.650000px;}
.fs9{font-size:121.800000px;}
.fs7{font-size:144.150000px;}
.fsc{font-size:193.800000px;}
.fs2{font-size:211.950000px;}
.fsa{font-size:238.800000px;}
.fsb{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.y8{bottom:26.587500px;}
.y19{bottom:65.662500px;}
.y18{bottom:88.200000px;}
.yc{bottom:97.537500px;}
.y41{bottom:103.575000px;}
.y17{bottom:109.612500px;}
.y37{bottom:112.762500px;}
.yb{bottom:120.075000px;}
.y22{bottom:122.850000px;}
.y3b{bottom:124.687500px;}
.yf{bottom:135.900000px;}
.ya{bottom:141.487500px;}
.y2{bottom:143.737500px;}
.y1c{bottom:147.225000px;}
.y21{bottom:148.162500px;}
.y36{bottom:155.595000px;}
.ye{bottom:158.430000px;}
.y40{bottom:162.180000px;}
.y1b{bottom:168.630000px;}
.y7{bottom:171.645000px;}
.y13{bottom:177.600000px;}
.yd{bottom:179.850000px;}
.y5{bottom:223.380000px;}
.y31{bottom:227.280000px;}
.y3a{bottom:229.620000px;}
.y10{bottom:229.695000px;}
.y35{bottom:229.995000px;}
.y20{bottom:231.450000px;}
.y12{bottom:239.880000px;}
.y1f{bottom:252.870000px;}
.y11{bottom:261.300000px;}
.y3f{bottom:266.130000px;}
.y1a{bottom:268.275000px;}
.y34{bottom:272.820000px;}
.y1e{bottom:275.400000px;}
.y30{bottom:284.775000px;}
.y4{bottom:286.500000px;}
.y1d{bottom:296.820000px;}
.y16{bottom:298.725000px;}
.y23{bottom:319.380000px;}
.y15{bottom:321.270000px;}
.y27{bottom:323.400000px;}
.y3e{bottom:324.750000px;}
.y39{bottom:334.575000px;}
.y2f{bottom:342.225000px;}
.y14{bottom:342.705000px;}
.y26{bottom:344.820000px;}
.y3{bottom:349.620000px;}
.y33{bottom:350.595000px;}
.y25{bottom:367.350000px;}
.y24{bottom:388.755000px;}
.y9{bottom:394.800000px;}
.y2e{bottom:399.720000px;}
.y32{bottom:427.245000px;}
.y3d{bottom:428.700000px;}
.y2b{bottom:435.225000px;}
.y38{bottom:439.500000px;}
.y2d{bottom:457.200000px;}
.y6{bottom:462.945000px;}
.y2a{bottom:482.130000px;}
.y3c{bottom:487.320000px;}
.y29{bottom:504.720000px;}
.y28{bottom:526.125000px;}
.y2c{bottom:545.400000px;}
.y1{bottom:565.470000px;}
.h2{height:51.226500px;}
.h1{height:51.377452px;}
.h4{height:51.377456px;}
.h9{height:63.072000px;}
.h8{height:63.203400px;}
.h7{height:64.948462px;}
.h5{height:76.089111px;}
.h6{height:76.238306px;}
.hb{height:86.371500px;}
.hc{height:86.478000px;}
.ha{height:137.086650px;}
.hf{height:137.598000px;}
.hd{height:169.548000px;}
.he{height:169.654500px;}
.h3{height:201.564450px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:36.749984px;}
.xc{left:54.412484px;}
.xe{left:76.649984px;}
.xd{left:94.649984px;}
.x9{left:117.187484px;}
.x8{left:119.249984px;}
.x2a{left:144.224984px;}
.x2b{left:152.774984px;}
.x2c{left:160.349984px;}
.x7{left:163.154984px;}
.x2e{left:196.769984px;}
.x2d{left:207.299984px;}
.xf{left:215.399984px;}
.x12{left:273.824984px;}
.xa{left:294.224984px;}
.xb{left:296.774984px;}
.x11{left:299.519984px;}
.x2{left:307.649984px;}
.x10{left:330.869984px;}
.x16{left:343.919984px;}
.x5{left:394.349984px;}
.x14{left:469.244984px;}
.x15{left:474.374984px;}
.x1e{left:483.074984px;}
.x25{left:499.199984px;}
.x24{left:501.374984px;}
.x26{left:503.624984px;}
.x1d{left:506.399984px;}
.x13{left:522.329984px;}
.x18{left:555.299984px;}
.x17{left:562.154984px;}
.x1f{left:567.869984px;}
.x1a{left:570.449984px;}
.x1b{left:578.699984px;}
.x1c{left:592.499984px;}
.x19{left:610.799984px;}
.x6{left:659.549984px;}
.x3{left:663.854984px;}
.x21{left:679.049984px;}
.x22{left:697.529984px;}
.x20{left:701.024984px;}
.x23{left:711.329984px;}
.x27{left:744.854984px;}
.x29{left:926.849984px;}
.x28{left:969.629984px;}
.x1{left:1056.674984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.866667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.141067pt;}
.ls6{letter-spacing:0.624000pt;}
.ls0{letter-spacing:0.725067pt;}
.ls5{letter-spacing:0.778400pt;}
.ls3{letter-spacing:0.826667pt;}
.ls2{letter-spacing:2.650667pt;}
.ws4{word-spacing:-47.476800pt;}
.ws9{word-spacing:-32.289600pt;}
.wsa{word-spacing:-25.442667pt;}
.ws8{word-spacing:-16.802933pt;}
.ws7{word-spacing:-16.768000pt;}
.ws1{word-spacing:-16.309600pt;}
.ws6{word-spacing:-15.398133pt;}
.ws2{word-spacing:-14.485600pt;}
.ws3{word-spacing:-13.658933pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:24.150400pt;}
.ws0{word-spacing:28.253467pt;}
.wsb{word-spacing:46.369600pt;}
._6{margin-left:-4.922667pt;}
._5{margin-left:-3.964000pt;}
._2{margin-left:-2.763067pt;}
._4{margin-left:-1.668267pt;}
._0{width:1.612933pt;}
._1{width:2.606667pt;}
._3{width:3.496133pt;}
._7{width:4.387067pt;}
._8{width:24.238400pt;}
.fs0{font-size:52.133333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:64.133333pt;}
.fs3{font-size:68.000000pt;}
.fs4{font-size:68.133333pt;}
.fs5{font-size:76.133333pt;}
.fs8{font-size:108.133333pt;}
.fs9{font-size:108.266667pt;}
.fs7{font-size:128.133333pt;}
.fsc{font-size:172.266667pt;}
.fs2{font-size:188.400000pt;}
.fsa{font-size:212.266667pt;}
.fsb{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:23.633333pt;}
.y19{bottom:58.366667pt;}
.y18{bottom:78.400000pt;}
.yc{bottom:86.700000pt;}
.y41{bottom:92.066667pt;}
.y17{bottom:97.433333pt;}
.y37{bottom:100.233333pt;}
.yb{bottom:106.733333pt;}
.y22{bottom:109.200000pt;}
.y3b{bottom:110.833333pt;}
.yf{bottom:120.800000pt;}
.ya{bottom:125.766667pt;}
.y2{bottom:127.766667pt;}
.y1c{bottom:130.866667pt;}
.y21{bottom:131.700000pt;}
.y36{bottom:138.306667pt;}
.ye{bottom:140.826667pt;}
.y40{bottom:144.160000pt;}
.y1b{bottom:149.893333pt;}
.y7{bottom:152.573333pt;}
.y13{bottom:157.866667pt;}
.yd{bottom:159.866667pt;}
.y5{bottom:198.560000pt;}
.y31{bottom:202.026667pt;}
.y3a{bottom:204.106667pt;}
.y10{bottom:204.173333pt;}
.y35{bottom:204.440000pt;}
.y20{bottom:205.733333pt;}
.y12{bottom:213.226667pt;}
.y1f{bottom:224.773333pt;}
.y11{bottom:232.266667pt;}
.y3f{bottom:236.560000pt;}
.y1a{bottom:238.466667pt;}
.y34{bottom:242.506667pt;}
.y1e{bottom:244.800000pt;}
.y30{bottom:253.133333pt;}
.y4{bottom:254.666667pt;}
.y1d{bottom:263.840000pt;}
.y16{bottom:265.533333pt;}
.y23{bottom:283.893333pt;}
.y15{bottom:285.573333pt;}
.y27{bottom:287.466667pt;}
.y3e{bottom:288.666667pt;}
.y39{bottom:297.400000pt;}
.y2f{bottom:304.200000pt;}
.y14{bottom:304.626667pt;}
.y26{bottom:306.506667pt;}
.y3{bottom:310.773333pt;}
.y33{bottom:311.640000pt;}
.y25{bottom:326.533333pt;}
.y24{bottom:345.560000pt;}
.y9{bottom:350.933333pt;}
.y2e{bottom:355.306667pt;}
.y32{bottom:379.773333pt;}
.y3d{bottom:381.066667pt;}
.y2b{bottom:386.866667pt;}
.y38{bottom:390.666667pt;}
.y2d{bottom:406.400000pt;}
.y6{bottom:411.506667pt;}
.y2a{bottom:428.560000pt;}
.y3c{bottom:433.173333pt;}
.y29{bottom:448.640000pt;}
.y28{bottom:467.666667pt;}
.y2c{bottom:484.800000pt;}
.y1{bottom:502.640000pt;}
.h2{height:45.534667pt;}
.h1{height:45.668846pt;}
.h4{height:45.668849pt;}
.h9{height:56.064000pt;}
.h8{height:56.180800pt;}
.h7{height:57.731966pt;}
.h5{height:67.634766pt;}
.h6{height:67.767383pt;}
.hb{height:76.774667pt;}
.hc{height:76.869333pt;}
.ha{height:121.854800pt;}
.hf{height:122.309333pt;}
.hd{height:150.709333pt;}
.he{height:150.804000pt;}
.h3{height:179.168400pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:32.666652pt;}
.xc{left:48.366652pt;}
.xe{left:68.133319pt;}
.xd{left:84.133319pt;}
.x9{left:104.166652pt;}
.x8{left:105.999986pt;}
.x2a{left:128.199986pt;}
.x2b{left:135.799986pt;}
.x2c{left:142.533319pt;}
.x7{left:145.026652pt;}
.x2e{left:174.906652pt;}
.x2d{left:184.266652pt;}
.xf{left:191.466652pt;}
.x12{left:243.399986pt;}
.xa{left:261.533319pt;}
.xb{left:263.799986pt;}
.x11{left:266.239986pt;}
.x2{left:273.466652pt;}
.x10{left:294.106652pt;}
.x16{left:305.706652pt;}
.x5{left:350.533319pt;}
.x14{left:417.106652pt;}
.x15{left:421.666652pt;}
.x1e{left:429.399986pt;}
.x25{left:443.733319pt;}
.x24{left:445.666652pt;}
.x26{left:447.666652pt;}
.x1d{left:450.133319pt;}
.x13{left:464.293319pt;}
.x18{left:493.599986pt;}
.x17{left:499.693319pt;}
.x1f{left:504.773319pt;}
.x1a{left:507.066652pt;}
.x1b{left:514.399986pt;}
.x1c{left:526.666652pt;}
.x19{left:542.933319pt;}
.x6{left:586.266652pt;}
.x3{left:590.093319pt;}
.x21{left:603.599986pt;}
.x22{left:620.026652pt;}
.x20{left:623.133319pt;}
.x23{left:632.293319pt;}
.x27{left:662.093319pt;}
.x29{left:823.866652pt;}
.x28{left:861.893319pt;}
.x1{left:939.266652pt;}
}




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