
    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_e72a4a35dc263e745bdfff65.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_46a36e476dea31233d3aed9d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_8d9356192075f034ddb8bb68.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_12def6bfab17c72174e8f440.woff')format("woff");}.ff5{font-family:ff5;line-height:0.945312;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_5af200227828384c0cbcafbf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_0a7af5a02a863b2b4f539b7e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.357000px;}
.ls5{letter-spacing:-0.108000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.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:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.904000px;}
.ws0{word-spacing:-14.613240px;}
.ws3{word-spacing:-14.508000px;}
.ws4{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.324800px;}
._1{width:1.014240px;}
.fc2{color:transparent;}
.fc1{color:rgb(15,17,21);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:2.880000px;}
.y6c{bottom:4.320000px;}
.y32{bottom:8.100000px;}
.y63{bottom:8.460000px;}
.y54{bottom:8.634000px;}
.y35{bottom:10.620000px;}
.y3a{bottom:10.800000px;}
.y5c{bottom:10.830000px;}
.y37{bottom:12.240000px;}
.y70{bottom:12.420000px;}
.y4f{bottom:14.580000px;}
.y44{bottom:16.380000px;}
.y5d{bottom:17.820000px;}
.y5f{bottom:22.320000px;}
.y31{bottom:23.625000px;}
.y6b{bottom:23.985000px;}
.y53{bottom:24.114000px;}
.y62{bottom:24.120000px;}
.y36{bottom:27.720000px;}
.y6e{bottom:27.750000px;}
.y3e{bottom:27.900000px;}
.y3c{bottom:27.930000px;}
.y4e{bottom:30.060000px;}
.y34{bottom:30.420000px;}
.y39{bottom:30.450000px;}
.y48{bottom:31.185000px;}
.y59{bottom:31.500000px;}
.y43{bottom:32.040000px;}
.y30{bottom:39.285000px;}
.y52{bottom:39.594000px;}
.y61{bottom:39.636000px;}
.y6a{bottom:39.645000px;}
.y4d{bottom:45.540000px;}
.y47{bottom:46.845000px;}
.y2a{bottom:47.025000px;}
.y42{bottom:47.520000px;}
.y2f{bottom:54.765000px;}
.y51{bottom:55.074000px;}
.y60{bottom:55.116000px;}
.y69{bottom:55.125000px;}
.y4c{bottom:61.020000px;}
.y29{bottom:62.505000px;}
.y41{bottom:63.180000px;}
.y2e{bottom:70.245000px;}
.y68{bottom:70.605000px;}
.y5e{bottom:74.808000px;}
.y4b{bottom:76.680000px;}
.y28{bottom:77.985000px;}
.y40{bottom:78.660000px;}
.y2d{bottom:85.725000px;}
.y26{bottom:86.436000px;}
.y67{bottom:87.165000px;}
.y46{bottom:93.465000px;}
.y2c{bottom:101.385000px;}
.y25{bottom:106.416000px;}
.y66{bottom:106.785000px;}
.y2b{bottom:116.865000px;}
.y65{bottom:122.445000px;}
.y5b{bottom:122.655000px;}
.y24{bottom:126.576000px;}
.y50{bottom:143.136000px;}
.y23{bottom:146.736000px;}
.y22{bottom:166.890000px;}
.y21{bottom:187.050000px;}
.y20{bottom:207.210000px;}
.y1f{bottom:227.370000px;}
.y5a{bottom:244.260000px;}
.y1e{bottom:247.575000px;}
.y3f{bottom:251.715000px;}
.y4a{bottom:253.335000px;}
.y1d{bottom:267.735000px;}
.y1c{bottom:287.895000px;}
.y49{bottom:305.355000px;}
.y3d{bottom:306.255000px;}
.y1b{bottom:307.875000px;}
.y1a{bottom:328.035000px;}
.y19{bottom:348.195000px;}
.y18{bottom:368.355000px;}
.y17{bottom:388.515000px;}
.y3b{bottom:400.755000px;}
.y6f{bottom:401.835000px;}
.y38{bottom:402.915000px;}
.y16{bottom:408.675000px;}
.y15{bottom:428.865000px;}
.y14{bottom:449.025000px;}
.y13{bottom:469.185000px;}
.y12{bottom:489.345000px;}
.y33{bottom:500.505000px;}
.y11{bottom:509.325000px;}
.y10{bottom:529.485000px;}
.yf{bottom:549.645000px;}
.ye{bottom:569.805000px;}
.y58{bottom:589.140000px;}
.yd{bottom:589.965000px;}
.y64{bottom:595.725000px;}
.y45{bottom:596.625000px;}
.y27{bottom:596.805000px;}
.yc{bottom:610.125000px;}
.yb{bottom:630.330000px;}
.ya{bottom:650.490000px;}
.y9{bottom:670.650000px;}
.y8{bottom:690.810000px;}
.y7{bottom:710.790000px;}
.y6{bottom:730.950000px;}
.y5{bottom:751.110000px;}
.y6d{bottom:754.350000px;}
.y55{bottom:754.710000px;}
.y57{bottom:755.430000px;}
.y4{bottom:771.270000px;}
.y3{bottom:789.270000px;}
.y2{bottom:801.870000px;}
.y1{bottom:823.140000px;}
.hf{height:15.840000px;}
.h3{height:36.861328px;}
.h6{height:39.471680px;}
.h7{height:39.840820px;}
.h10{height:40.605469px;}
.h8{height:49.860000px;}
.ha{height:49.896000px;}
.h9{height:50.273438px;}
.h4{height:65.884219px;}
.h2{height:67.824844px;}
.he{height:73.260000px;}
.h14{height:73.296000px;}
.hd{height:100.800000px;}
.hb{height:104.760000px;}
.hc{height:134.496000px;}
.h5{height:134.676000px;}
.h15{height:135.396000px;}
.h11{height:147.240000px;}
.h13{height:205.380000px;}
.h12{height:310.680000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w7{width:15.840000px;}
.w9{width:167.430000px;}
.w8{width:170.490000px;}
.wa{width:182.190000px;}
.w4{width:185.070000px;}
.w3{width:221.430000px;}
.w6{width:438.015000px;}
.w5{width:508.755000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:10.800000px;}
.xd{left:12.852000px;}
.xe{left:28.188000px;}
.x12{left:29.700000px;}
.x4{left:32.040000px;}
.xf{left:33.120000px;}
.x1{left:53.999981px;}
.xc{left:68.040000px;}
.x11{left:70.560000px;}
.xa{left:73.080000px;}
.x10{left:258.330000px;}
.x9{left:259.410000px;}
.x2{left:263.370000px;}
.x5{left:553.035000px;}
.x6{left:554.115000px;}
.xb{left:798.945000px;}
.x7{left:800.565000px;}
.x13{left:801.825000px;}
.x8{left:1050.990000px;}
.x14{left:1052.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.317333pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.248000pt;}
.ws0{word-spacing:-12.989547pt;}
.ws3{word-spacing:-12.896000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.901547pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.560000pt;}
.y6c{bottom:3.840000pt;}
.y32{bottom:7.200000pt;}
.y63{bottom:7.520000pt;}
.y54{bottom:7.674667pt;}
.y35{bottom:9.440000pt;}
.y3a{bottom:9.600000pt;}
.y5c{bottom:9.626667pt;}
.y37{bottom:10.880000pt;}
.y70{bottom:11.040000pt;}
.y4f{bottom:12.960000pt;}
.y44{bottom:14.560000pt;}
.y5d{bottom:15.840000pt;}
.y5f{bottom:19.840000pt;}
.y31{bottom:21.000000pt;}
.y6b{bottom:21.320000pt;}
.y53{bottom:21.434667pt;}
.y62{bottom:21.440000pt;}
.y36{bottom:24.640000pt;}
.y6e{bottom:24.666667pt;}
.y3e{bottom:24.800000pt;}
.y3c{bottom:24.826667pt;}
.y4e{bottom:26.720000pt;}
.y34{bottom:27.040000pt;}
.y39{bottom:27.066667pt;}
.y48{bottom:27.720000pt;}
.y59{bottom:28.000000pt;}
.y43{bottom:28.480000pt;}
.y30{bottom:34.920000pt;}
.y52{bottom:35.194667pt;}
.y61{bottom:35.232000pt;}
.y6a{bottom:35.240000pt;}
.y4d{bottom:40.480000pt;}
.y47{bottom:41.640000pt;}
.y2a{bottom:41.800000pt;}
.y42{bottom:42.240000pt;}
.y2f{bottom:48.680000pt;}
.y51{bottom:48.954667pt;}
.y60{bottom:48.992000pt;}
.y69{bottom:49.000000pt;}
.y4c{bottom:54.240000pt;}
.y29{bottom:55.560000pt;}
.y41{bottom:56.160000pt;}
.y2e{bottom:62.440000pt;}
.y68{bottom:62.760000pt;}
.y5e{bottom:66.496000pt;}
.y4b{bottom:68.160000pt;}
.y28{bottom:69.320000pt;}
.y40{bottom:69.920000pt;}
.y2d{bottom:76.200000pt;}
.y26{bottom:76.832000pt;}
.y67{bottom:77.480000pt;}
.y46{bottom:83.080000pt;}
.y2c{bottom:90.120000pt;}
.y25{bottom:94.592000pt;}
.y66{bottom:94.920000pt;}
.y2b{bottom:103.880000pt;}
.y65{bottom:108.840000pt;}
.y5b{bottom:109.026667pt;}
.y24{bottom:112.512000pt;}
.y50{bottom:127.232000pt;}
.y23{bottom:130.432000pt;}
.y22{bottom:148.346667pt;}
.y21{bottom:166.266667pt;}
.y20{bottom:184.186667pt;}
.y1f{bottom:202.106667pt;}
.y5a{bottom:217.120000pt;}
.y1e{bottom:220.066667pt;}
.y3f{bottom:223.746667pt;}
.y4a{bottom:225.186667pt;}
.y1d{bottom:237.986667pt;}
.y1c{bottom:255.906667pt;}
.y49{bottom:271.426667pt;}
.y3d{bottom:272.226667pt;}
.y1b{bottom:273.666667pt;}
.y1a{bottom:291.586667pt;}
.y19{bottom:309.506667pt;}
.y18{bottom:327.426667pt;}
.y17{bottom:345.346667pt;}
.y3b{bottom:356.226667pt;}
.y6f{bottom:357.186667pt;}
.y38{bottom:358.146667pt;}
.y16{bottom:363.266667pt;}
.y15{bottom:381.213333pt;}
.y14{bottom:399.133333pt;}
.y13{bottom:417.053333pt;}
.y12{bottom:434.973333pt;}
.y33{bottom:444.893333pt;}
.y11{bottom:452.733333pt;}
.y10{bottom:470.653333pt;}
.yf{bottom:488.573333pt;}
.ye{bottom:506.493333pt;}
.y58{bottom:523.680000pt;}
.yd{bottom:524.413333pt;}
.y64{bottom:529.533333pt;}
.y45{bottom:530.333333pt;}
.y27{bottom:530.493333pt;}
.yc{bottom:542.333333pt;}
.yb{bottom:560.293333pt;}
.ya{bottom:578.213333pt;}
.y9{bottom:596.133333pt;}
.y8{bottom:614.053333pt;}
.y7{bottom:631.813333pt;}
.y6{bottom:649.733333pt;}
.y5{bottom:667.653333pt;}
.y6d{bottom:670.533333pt;}
.y55{bottom:670.853333pt;}
.y57{bottom:671.493333pt;}
.y4{bottom:685.573333pt;}
.y3{bottom:701.573333pt;}
.y2{bottom:712.773333pt;}
.y1{bottom:731.680000pt;}
.hf{height:14.080000pt;}
.h3{height:32.765625pt;}
.h6{height:35.085938pt;}
.h7{height:35.414062pt;}
.h10{height:36.093750pt;}
.h8{height:44.320000pt;}
.ha{height:44.352000pt;}
.h9{height:44.687500pt;}
.h4{height:58.563750pt;}
.h2{height:60.288750pt;}
.he{height:65.120000pt;}
.h14{height:65.152000pt;}
.hd{height:89.600000pt;}
.hb{height:93.120000pt;}
.hc{height:119.552000pt;}
.h5{height:119.712000pt;}
.h15{height:120.352000pt;}
.h11{height:130.880000pt;}
.h13{height:182.560000pt;}
.h12{height:276.160000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w7{width:14.080000pt;}
.w9{width:148.826667pt;}
.w8{width:151.546667pt;}
.wa{width:161.946667pt;}
.w4{width:164.506667pt;}
.w3{width:196.826667pt;}
.w6{width:389.346667pt;}
.w5{width:452.226667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:9.600000pt;}
.xd{left:11.424000pt;}
.xe{left:25.056000pt;}
.x12{left:26.400000pt;}
.x4{left:28.480000pt;}
.xf{left:29.440000pt;}
.x1{left:47.999983pt;}
.xc{left:60.480000pt;}
.x11{left:62.720000pt;}
.xa{left:64.960000pt;}
.x10{left:229.626667pt;}
.x9{left:230.586667pt;}
.x2{left:234.106667pt;}
.x5{left:491.586667pt;}
.x6{left:492.546667pt;}
.xb{left:710.173333pt;}
.x7{left:711.613333pt;}
.x13{left:712.733333pt;}
.x8{left:934.213333pt;}
.x14{left:935.493333pt;}
}




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