
    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_9e9331eb2cbf3e8bdc4910a3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_11ef62e0168bda2769637fc8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f4611b425ab70a2d9e1a5a4a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_52caaf64fd827fcb865541c4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cc21093c738fa86f21adbf22.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_b4b399fb9f1a4b0cd3a27787.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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;}
.ls5{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.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:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.568000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-11.412000px;}
._e{margin-left:-8.280000px;}
._14{margin-left:-7.212000px;}
._a{margin-left:-6.048000px;}
._c{margin-left:-4.176000px;}
._d{margin-left:-2.736000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._3{width:2.652000px;}
._2{width:3.774000px;}
._11{width:5.070000px;}
._1e{width:6.138000px;}
._1c{width:7.200000px;}
._1b{width:8.280000px;}
._18{width:10.224000px;}
._5{width:11.508000px;}
._4{width:12.672000px;}
._13{width:13.788000px;}
._15{width:15.012000px;}
._10{width:16.632000px;}
._f{width:19.584000px;}
._1f{width:20.736000px;}
._7{width:22.176000px;}
._6{width:23.184000px;}
._9{width:24.624000px;}
._8{width:26.280000px;}
._b{width:27.330000px;}
._1d{width:32.688000px;}
._17{width:33.828000px;}
._16{width:34.920000px;}
._20{width:36.864000px;}
._21{width:37.872000px;}
._22{width:40.680000px;}
._19{width:42.840000px;}
._1a{width:43.992000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(31,31,31);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.337500px;}
.y53{bottom:89.737500px;}
.y52{bottom:113.437500px;}
.y2e{bottom:131.137500px;}
.y51{bottom:149.137500px;}
.y2d{bottom:155.130000px;}
.y75{bottom:158.130000px;}
.y2c{bottom:178.875000px;}
.y74{bottom:182.175000px;}
.y50{bottom:185.175000px;}
.y2b{bottom:202.575000px;}
.y73{bottom:205.875000px;}
.y4f{bottom:208.875000px;}
.y2a{bottom:226.575000px;}
.y72{bottom:229.575000px;}
.y4e{bottom:232.575000px;}
.y71{bottom:253.575000px;}
.y4d{bottom:256.575000px;}
.y29{bottom:262.275000px;}
.y28{bottom:285.975000px;}
.y70{bottom:289.275000px;}
.y4c{bottom:292.275000px;}
.y6f{bottom:312.975000px;}
.y4b{bottom:315.975000px;}
.y27{bottom:321.975000px;}
.y6e{bottom:336.975000px;}
.y4a{bottom:340.005000px;}
.y26{bottom:345.705000px;}
.y6d{bottom:360.705000px;}
.y49{bottom:363.705000px;}
.y25{bottom:369.420000px;}
.y6c{bottom:384.405000px;}
.y48{bottom:387.405000px;}
.y24{bottom:405.405000px;}
.y6b{bottom:408.405000px;}
.y47{bottom:423.405000px;}
.y23{bottom:429.120000px;}
.y6a{bottom:432.105000px;}
.y46{bottom:447.120000px;}
.y69{bottom:455.820000px;}
.y22{bottom:464.820000px;}
.y45{bottom:470.820000px;}
.y21{bottom:488.820000px;}
.y68{bottom:491.820000px;}
.y44{bottom:494.820000px;}
.y20{bottom:512.550000px;}
.y67{bottom:515.550000px;}
.y43{bottom:518.550000px;}
.y1f{bottom:536.250000px;}
.y66{bottom:539.250000px;}
.y42{bottom:542.250000px;}
.y1e{bottom:560.250000px;}
.y65{bottom:563.250000px;}
.y41{bottom:566.250000px;}
.y1d{bottom:583.950000px;}
.y64{bottom:586.950000px;}
.y40{bottom:592.950000px;}
.y3f{bottom:616.650000px;}
.y1c{bottom:619.650000px;}
.y63{bottom:622.650000px;}
.y3e{bottom:640.650000px;}
.y1b{bottom:643.650000px;}
.y62{bottom:646.650000px;}
.y3d{bottom:664.350000px;}
.y61{bottom:670.350000px;}
.y1a{bottom:679.380000px;}
.y3c{bottom:688.080000px;}
.y60{bottom:694.080000px;}
.y7b{bottom:702.780000px;}
.y19{bottom:703.080000px;}
.y3b{bottom:712.095000px;}
.y5f{bottom:718.080000px;}
.y18{bottom:727.095000px;}
.y3a{bottom:735.780000px;}
.y7a{bottom:738.780000px;}
.y5e{bottom:741.780000px;}
.y17{bottom:750.780000px;}
.y39{bottom:759.780000px;}
.y5d{bottom:765.780000px;}
.y79{bottom:774.495000px;}
.y38{bottom:786.480000px;}
.y16{bottom:786.795000px;}
.y5c{bottom:789.495000px;}
.y78{bottom:798.195000px;}
.y37{bottom:810.195000px;}
.y15{bottom:810.480000px;}
.y5b{bottom:813.195000px;}
.y14{bottom:834.195000px;}
.y5a{bottom:837.195000px;}
.y36{bottom:857.925000px;}
.y13{bottom:858.225000px;}
.y59{bottom:860.925000px;}
.y77{bottom:869.925000px;}
.y35{bottom:881.625000px;}
.y12{bottom:881.925000px;}
.y58{bottom:884.625000px;}
.y11{bottom:905.625000px;}
.y57{bottom:908.625000px;}
.y34{bottom:929.325000px;}
.y10{bottom:929.625000px;}
.y56{bottom:932.325000px;}
.y33{bottom:953.025000px;}
.yf{bottom:953.325000px;}
.y55{bottom:956.025000px;}
.y76{bottom:956.325000px;}
.y32{bottom:977.025000px;}
.ye{bottom:980.025000px;}
.y31{bottom:1003.725000px;}
.yd{bottom:1004.025000px;}
.y54{bottom:1015.755000px;}
.yc{bottom:1027.755000px;}
.y30{bottom:1039.455000px;}
.yb{bottom:1051.455000px;}
.y2f{bottom:1063.455000px;}
.ya{bottom:1075.455000px;}
.y9{bottom:1099.155000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.h8{height:50.484375px;}
.h6{height:50.800781px;}
.h2{height:61.435547px;}
.h4{height:65.645508px;}
.h5{height:72.562500px;}
.h7{height:74.004654px;}
.h3{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:84.937487px;}
.x5{left:94.837487px;}
.xe{left:99.337487px;}
.x12{left:105.937487px;}
.x9{left:256.274987px;}
.x13{left:260.174987px;}
.xf{left:261.674987px;}
.xa{left:292.574987px;}
.x11{left:328.919987px;}
.x8{left:334.904987px;}
.x18{left:341.519987px;}
.x3{left:350.504987px;}
.x16{left:351.719987px;}
.x15{left:375.119987px;}
.x17{left:377.219987px;}
.x6{left:391.904987px;}
.x14{left:423.749987px;}
.x4{left:433.949987px;}
.x7{left:446.249987px;}
.xd{left:449.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
.xc{left:529.949987px;}
.x10{left:549.194987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ws3{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-10.144000pt;}
._e{margin-left:-7.360000pt;}
._14{margin-left:-6.410667pt;}
._a{margin-left:-5.376000pt;}
._c{margin-left:-3.712000pt;}
._d{margin-left:-2.432000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._3{width:2.357333pt;}
._2{width:3.354667pt;}
._11{width:4.506667pt;}
._1e{width:5.456000pt;}
._1c{width:6.400000pt;}
._1b{width:7.360000pt;}
._18{width:9.088000pt;}
._5{width:10.229333pt;}
._4{width:11.264000pt;}
._13{width:12.256000pt;}
._15{width:13.344000pt;}
._10{width:14.784000pt;}
._f{width:17.408000pt;}
._1f{width:18.432000pt;}
._7{width:19.712000pt;}
._6{width:20.608000pt;}
._9{width:21.888000pt;}
._8{width:23.360000pt;}
._b{width:24.293333pt;}
._1d{width:29.056000pt;}
._17{width:30.069333pt;}
._16{width:31.040000pt;}
._20{width:32.768000pt;}
._21{width:33.664000pt;}
._22{width:36.160000pt;}
._19{width:38.080000pt;}
._1a{width:39.104000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.966667pt;}
.y53{bottom:79.766667pt;}
.y52{bottom:100.833333pt;}
.y2e{bottom:116.566667pt;}
.y51{bottom:132.566667pt;}
.y2d{bottom:137.893333pt;}
.y75{bottom:140.560000pt;}
.y2c{bottom:159.000000pt;}
.y74{bottom:161.933333pt;}
.y50{bottom:164.600000pt;}
.y2b{bottom:180.066667pt;}
.y73{bottom:183.000000pt;}
.y4f{bottom:185.666667pt;}
.y2a{bottom:201.400000pt;}
.y72{bottom:204.066667pt;}
.y4e{bottom:206.733333pt;}
.y71{bottom:225.400000pt;}
.y4d{bottom:228.066667pt;}
.y29{bottom:233.133333pt;}
.y28{bottom:254.200000pt;}
.y70{bottom:257.133333pt;}
.y4c{bottom:259.800000pt;}
.y6f{bottom:278.200000pt;}
.y4b{bottom:280.866667pt;}
.y27{bottom:286.200000pt;}
.y6e{bottom:299.533333pt;}
.y4a{bottom:302.226667pt;}
.y26{bottom:307.293333pt;}
.y6d{bottom:320.626667pt;}
.y49{bottom:323.293333pt;}
.y25{bottom:328.373333pt;}
.y6c{bottom:341.693333pt;}
.y48{bottom:344.360000pt;}
.y24{bottom:360.360000pt;}
.y6b{bottom:363.026667pt;}
.y47{bottom:376.360000pt;}
.y23{bottom:381.440000pt;}
.y6a{bottom:384.093333pt;}
.y46{bottom:397.440000pt;}
.y69{bottom:405.173333pt;}
.y22{bottom:413.173333pt;}
.y45{bottom:418.506667pt;}
.y21{bottom:434.506667pt;}
.y68{bottom:437.173333pt;}
.y44{bottom:439.840000pt;}
.y20{bottom:455.600000pt;}
.y67{bottom:458.266667pt;}
.y43{bottom:460.933333pt;}
.y1f{bottom:476.666667pt;}
.y66{bottom:479.333333pt;}
.y42{bottom:482.000000pt;}
.y1e{bottom:498.000000pt;}
.y65{bottom:500.666667pt;}
.y41{bottom:503.333333pt;}
.y1d{bottom:519.066667pt;}
.y64{bottom:521.733333pt;}
.y40{bottom:527.066667pt;}
.y3f{bottom:548.133333pt;}
.y1c{bottom:550.800000pt;}
.y63{bottom:553.466667pt;}
.y3e{bottom:569.466667pt;}
.y1b{bottom:572.133333pt;}
.y62{bottom:574.800000pt;}
.y3d{bottom:590.533333pt;}
.y61{bottom:595.866667pt;}
.y1a{bottom:603.893333pt;}
.y3c{bottom:611.626667pt;}
.y60{bottom:616.960000pt;}
.y7b{bottom:624.693333pt;}
.y19{bottom:624.960000pt;}
.y3b{bottom:632.973333pt;}
.y5f{bottom:638.293333pt;}
.y18{bottom:646.306667pt;}
.y3a{bottom:654.026667pt;}
.y7a{bottom:656.693333pt;}
.y5e{bottom:659.360000pt;}
.y17{bottom:667.360000pt;}
.y39{bottom:675.360000pt;}
.y5d{bottom:680.693333pt;}
.y79{bottom:688.440000pt;}
.y38{bottom:699.093333pt;}
.y16{bottom:699.373333pt;}
.y5c{bottom:701.773333pt;}
.y78{bottom:709.506667pt;}
.y37{bottom:720.173333pt;}
.y15{bottom:720.426667pt;}
.y5b{bottom:722.840000pt;}
.y14{bottom:741.506667pt;}
.y5a{bottom:744.173333pt;}
.y36{bottom:762.600000pt;}
.y13{bottom:762.866667pt;}
.y59{bottom:765.266667pt;}
.y77{bottom:773.266667pt;}
.y35{bottom:783.666667pt;}
.y12{bottom:783.933333pt;}
.y58{bottom:786.333333pt;}
.y11{bottom:805.000000pt;}
.y57{bottom:807.666667pt;}
.y34{bottom:826.066667pt;}
.y10{bottom:826.333333pt;}
.y56{bottom:828.733333pt;}
.y33{bottom:847.133333pt;}
.yf{bottom:847.400000pt;}
.y55{bottom:849.800000pt;}
.y76{bottom:850.066667pt;}
.y32{bottom:868.466667pt;}
.ye{bottom:871.133333pt;}
.y31{bottom:892.200000pt;}
.yd{bottom:892.466667pt;}
.y54{bottom:902.893333pt;}
.yc{bottom:913.560000pt;}
.y30{bottom:923.960000pt;}
.yb{bottom:934.626667pt;}
.y2f{bottom:945.293333pt;}
.ya{bottom:955.960000pt;}
.y9{bottom:977.026667pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.h8{height:44.875000pt;}
.h6{height:45.156250pt;}
.h2{height:54.609375pt;}
.h4{height:58.351562pt;}
.h5{height:64.500000pt;}
.h7{height:65.781915pt;}
.h3{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:75.499988pt;}
.x5{left:84.299988pt;}
.xe{left:88.299988pt;}
.x12{left:94.166655pt;}
.x9{left:227.799988pt;}
.x13{left:231.266655pt;}
.xf{left:232.599988pt;}
.xa{left:260.066655pt;}
.x11{left:292.373322pt;}
.x8{left:297.693322pt;}
.x18{left:303.573322pt;}
.x3{left:311.559988pt;}
.x16{left:312.639988pt;}
.x15{left:333.439988pt;}
.x17{left:335.306655pt;}
.x6{left:348.359988pt;}
.x14{left:376.666655pt;}
.x4{left:385.733322pt;}
.x7{left:396.666655pt;}
.xd{left:399.333322pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
.xc{left:471.066655pt;}
.x10{left:488.173322pt;}
}




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