
    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_17b283e716328c44be77b6d5.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fe60486d6ffb0c1840e2c137.woff2')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_50a7cff37dfabfb5616965fc.woff2')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_d0a598b60c4cdc9fc260812d.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_81326c7253f63ae8359db4cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_51c252a14fa91dd07bc8293a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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;}
.ls3{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.540000px;}
.ls7{letter-spacing:11.466720px;}
.ls6{letter-spacing:41.682720px;}
.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:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.328000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.080960px;}
._1{width:1.002960px;}
._6{width:2.007120px;}
._10{width:3.026880px;}
._2{width:4.029360px;}
._12{width:5.046480px;}
._7{width:6.168240px;}
._9{width:7.470000px;}
._f{width:9.075360px;}
._c{width:10.582800px;}
._a{width:12.066240px;}
._8{width:13.511040px;}
._d{width:16.088400px;}
._11{width:17.882400px;}
._e{width:19.302480px;}
._15{width:20.583360px;}
._17{width:21.708240px;}
._b{width:22.721760px;}
._1e{width:23.724720px;}
._16{width:24.753600px;}
._14{width:26.367120px;}
._13{width:27.609120px;}
._19{width:28.625040px;}
._1a{width:29.833200px;}
._1d{width:30.840960px;}
._1c{width:32.873280px;}
._1b{width:34.122960px;}
._1f{width:36.031680px;}
._20{width:37.131120px;}
._22{width:70.875360px;}
._21{width:71.951040px;}
._23{width:73.660080px;}
._5{width:85.656000px;}
._25{width:105.297120px;}
._24{width:106.850880px;}
._18{width:190.873200px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y78{bottom:119.556000px;}
.y41{bottom:121.896000px;}
.y77{bottom:136.836000px;}
.y40{bottom:139.176000px;}
.y76{bottom:154.110000px;}
.y3f{bottom:156.450000px;}
.y75{bottom:171.390000px;}
.y3e{bottom:173.730000px;}
.y74{bottom:188.490000px;}
.y3d{bottom:191.010000px;}
.y73{bottom:205.770000px;}
.y3c{bottom:208.290000px;}
.y72{bottom:223.050000px;}
.y3b{bottom:225.390000px;}
.y71{bottom:240.330000px;}
.y3a{bottom:242.670000px;}
.y70{bottom:257.610000px;}
.y39{bottom:259.950000px;}
.y6f{bottom:274.890000px;}
.y38{bottom:277.230000px;}
.y6e{bottom:291.990000px;}
.y37{bottom:294.510000px;}
.y6d{bottom:309.270000px;}
.y36{bottom:311.790000px;}
.y6c{bottom:326.550000px;}
.y35{bottom:328.890000px;}
.y6b{bottom:343.875000px;}
.y34{bottom:346.215000px;}
.y6a{bottom:361.155000px;}
.y33{bottom:363.495000px;}
.y69{bottom:378.255000px;}
.y32{bottom:380.775000px;}
.y68{bottom:395.535000px;}
.y31{bottom:398.055000px;}
.y67{bottom:412.815000px;}
.y30{bottom:415.155000px;}
.y66{bottom:430.095000px;}
.y2f{bottom:432.435000px;}
.y65{bottom:447.375000px;}
.y2e{bottom:449.715000px;}
.y64{bottom:464.655000px;}
.y2d{bottom:466.995000px;}
.y63{bottom:481.755000px;}
.y2c{bottom:484.275000px;}
.y62{bottom:499.035000px;}
.y2b{bottom:501.555000px;}
.y61{bottom:516.315000px;}
.y2a{bottom:518.655000px;}
.y60{bottom:533.595000px;}
.y29{bottom:535.935000px;}
.y5f{bottom:550.875000px;}
.y28{bottom:553.215000px;}
.y5e{bottom:568.155000px;}
.y27{bottom:570.495000px;}
.y5d{bottom:585.255000px;}
.y26{bottom:587.775000px;}
.y5c{bottom:602.535000px;}
.y25{bottom:605.085000px;}
.y5b{bottom:619.845000px;}
.y24{bottom:622.185000px;}
.y5a{bottom:637.125000px;}
.y23{bottom:639.465000px;}
.y59{bottom:654.405000px;}
.y22{bottom:658.905000px;}
.y58{bottom:671.685000px;}
.y21{bottom:676.185000px;}
.y57{bottom:688.785000px;}
.y20{bottom:693.465000px;}
.y56{bottom:706.065000px;}
.y1f{bottom:710.745000px;}
.y55{bottom:723.345000px;}
.y1e{bottom:728.025000px;}
.y54{bottom:740.625000px;}
.y1d{bottom:745.305000px;}
.y53{bottom:757.905000px;}
.y1c{bottom:762.405000px;}
.y52{bottom:775.005000px;}
.y1b{bottom:779.685000px;}
.y51{bottom:792.285000px;}
.y1a{bottom:796.965000px;}
.y50{bottom:809.565000px;}
.y19{bottom:814.245000px;}
.y4f{bottom:826.845000px;}
.y18{bottom:831.525000px;}
.y4e{bottom:844.125000px;}
.y17{bottom:848.805000px;}
.y4d{bottom:861.405000px;}
.y16{bottom:865.905000px;}
.y4c{bottom:878.550000px;}
.y15{bottom:883.230000px;}
.y4b{bottom:895.830000px;}
.y14{bottom:900.510000px;}
.y4a{bottom:913.110000px;}
.y13{bottom:917.790000px;}
.y49{bottom:930.390000px;}
.y12{bottom:935.070000px;}
.y48{bottom:947.670000px;}
.y11{bottom:954.510000px;}
.y47{bottom:964.950000px;}
.y10{bottom:972.150000px;}
.y46{bottom:982.050000px;}
.yf{bottom:991.230000px;}
.y45{bottom:999.330000px;}
.ye{bottom:1009.770000px;}
.y44{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y43{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y42{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.ha{height:49.255313px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x8{left:116.315987px;}
.x2{left:121.355987px;}
.x11{left:135.035987px;}
.xf{left:139.535987px;}
.x7{left:155.369987px;}
.x4{left:157.169987px;}
.x12{left:162.029987px;}
.xe{left:308.234987px;}
.xb{left:318.494987px;}
.xd{left:368.354987px;}
.xc{left:378.974987px;}
.x10{left:388.154987px;}
.x6{left:396.434987px;}
.xa{left:405.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls7{letter-spacing:10.192640pt;}
.ls6{letter-spacing:37.051307pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.736000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-0.960853pt;}
._1{width:0.891520pt;}
._6{width:1.784107pt;}
._10{width:2.690560pt;}
._2{width:3.581653pt;}
._12{width:4.485760pt;}
._7{width:5.482880pt;}
._9{width:6.640000pt;}
._f{width:8.066987pt;}
._c{width:9.406933pt;}
._a{width:10.725547pt;}
._8{width:12.009813pt;}
._d{width:14.300800pt;}
._11{width:15.895467pt;}
._e{width:17.157760pt;}
._15{width:18.296320pt;}
._17{width:19.296213pt;}
._b{width:20.197120pt;}
._1e{width:21.088640pt;}
._16{width:22.003200pt;}
._14{width:23.437440pt;}
._13{width:24.541440pt;}
._19{width:25.444480pt;}
._1a{width:26.518400pt;}
._1d{width:27.414187pt;}
._1c{width:29.220693pt;}
._1b{width:30.331520pt;}
._1f{width:32.028160pt;}
._20{width:33.005440pt;}
._22{width:63.000320pt;}
._21{width:63.956480pt;}
._23{width:65.475627pt;}
._5{width:76.138667pt;}
._25{width:93.597440pt;}
._24{width:94.978560pt;}
._18{width:169.665067pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y78{bottom:106.272000pt;}
.y41{bottom:108.352000pt;}
.y77{bottom:121.632000pt;}
.y40{bottom:123.712000pt;}
.y76{bottom:136.986667pt;}
.y3f{bottom:139.066667pt;}
.y75{bottom:152.346667pt;}
.y3e{bottom:154.426667pt;}
.y74{bottom:167.546667pt;}
.y3d{bottom:169.786667pt;}
.y73{bottom:182.906667pt;}
.y3c{bottom:185.146667pt;}
.y72{bottom:198.266667pt;}
.y3b{bottom:200.346667pt;}
.y71{bottom:213.626667pt;}
.y3a{bottom:215.706667pt;}
.y70{bottom:228.986667pt;}
.y39{bottom:231.066667pt;}
.y6f{bottom:244.346667pt;}
.y38{bottom:246.426667pt;}
.y6e{bottom:259.546667pt;}
.y37{bottom:261.786667pt;}
.y6d{bottom:274.906667pt;}
.y36{bottom:277.146667pt;}
.y6c{bottom:290.266667pt;}
.y35{bottom:292.346667pt;}
.y6b{bottom:305.666667pt;}
.y34{bottom:307.746667pt;}
.y6a{bottom:321.026667pt;}
.y33{bottom:323.106667pt;}
.y69{bottom:336.226667pt;}
.y32{bottom:338.466667pt;}
.y68{bottom:351.586667pt;}
.y31{bottom:353.826667pt;}
.y67{bottom:366.946667pt;}
.y30{bottom:369.026667pt;}
.y66{bottom:382.306667pt;}
.y2f{bottom:384.386667pt;}
.y65{bottom:397.666667pt;}
.y2e{bottom:399.746667pt;}
.y64{bottom:413.026667pt;}
.y2d{bottom:415.106667pt;}
.y63{bottom:428.226667pt;}
.y2c{bottom:430.466667pt;}
.y62{bottom:443.586667pt;}
.y2b{bottom:445.826667pt;}
.y61{bottom:458.946667pt;}
.y2a{bottom:461.026667pt;}
.y60{bottom:474.306667pt;}
.y29{bottom:476.386667pt;}
.y5f{bottom:489.666667pt;}
.y28{bottom:491.746667pt;}
.y5e{bottom:505.026667pt;}
.y27{bottom:507.106667pt;}
.y5d{bottom:520.226667pt;}
.y26{bottom:522.466667pt;}
.y5c{bottom:535.586667pt;}
.y25{bottom:537.853333pt;}
.y5b{bottom:550.973333pt;}
.y24{bottom:553.053333pt;}
.y5a{bottom:566.333333pt;}
.y23{bottom:568.413333pt;}
.y59{bottom:581.693333pt;}
.y22{bottom:585.693333pt;}
.y58{bottom:597.053333pt;}
.y21{bottom:601.053333pt;}
.y57{bottom:612.253333pt;}
.y20{bottom:616.413333pt;}
.y56{bottom:627.613333pt;}
.y1f{bottom:631.773333pt;}
.y55{bottom:642.973333pt;}
.y1e{bottom:647.133333pt;}
.y54{bottom:658.333333pt;}
.y1d{bottom:662.493333pt;}
.y53{bottom:673.693333pt;}
.y1c{bottom:677.693333pt;}
.y52{bottom:688.893333pt;}
.y1b{bottom:693.053333pt;}
.y51{bottom:704.253333pt;}
.y1a{bottom:708.413333pt;}
.y50{bottom:719.613333pt;}
.y19{bottom:723.773333pt;}
.y4f{bottom:734.973333pt;}
.y18{bottom:739.133333pt;}
.y4e{bottom:750.333333pt;}
.y17{bottom:754.493333pt;}
.y4d{bottom:765.693333pt;}
.y16{bottom:769.693333pt;}
.y4c{bottom:780.933333pt;}
.y15{bottom:785.093333pt;}
.y4b{bottom:796.293333pt;}
.y14{bottom:800.453333pt;}
.y4a{bottom:811.653333pt;}
.y13{bottom:815.813333pt;}
.y49{bottom:827.013333pt;}
.y12{bottom:831.173333pt;}
.y48{bottom:842.373333pt;}
.y11{bottom:848.453333pt;}
.y47{bottom:857.733333pt;}
.y10{bottom:864.133333pt;}
.y46{bottom:872.933333pt;}
.yf{bottom:881.093333pt;}
.y45{bottom:888.293333pt;}
.ye{bottom:897.573333pt;}
.y44{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y43{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y42{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.ha{height:43.782500pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x8{left:103.391988pt;}
.x2{left:107.871988pt;}
.x11{left:120.031988pt;}
.xf{left:124.031988pt;}
.x7{left:138.106655pt;}
.x4{left:139.706655pt;}
.x12{left:144.026655pt;}
.xe{left:273.986655pt;}
.xb{left:283.106655pt;}
.xd{left:327.426655pt;}
.xc{left:336.866655pt;}
.x10{left:345.026655pt;}
.x6{left:352.386655pt;}
.xa{left:360.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
}




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