
    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_eadd15a55751d8b7b1fe5c04.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_077552925927ad1deceacf09.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ddb55a221de28f257bffdcd4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898438;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_c128ec9f12c859acf569e23d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_6b5e675f46b690d7ea59c203.woff')format("woff");}.ff5{font-family:ff5;line-height:1.012000;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_9933e92ce0d1b9f95b969348.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_80d3e9bc6c3453c621d51f4a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_90555f172f6e077cc6c9be41.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_23457d05203dc98ceb12b4fb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:200.880000px;}
.lsa{letter-spacing:-1.332000px;}
.ls6{letter-spacing:-0.382200px;}
.ls4{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.285600px;}
.lsc{letter-spacing:-0.255000px;}
.ls8{letter-spacing:-0.193800px;}
.ls7{letter-spacing:-0.094200px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.238200px;}
.ls1{letter-spacing:0.246240px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.343200px;}
.lsb{letter-spacing:0.555000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-105.996000px;}
.ws4{word-spacing:-68.718528px;}
.ws3{word-spacing:-68.688000px;}
.ws9{word-spacing:-59.718240px;}
.wsc{word-spacing:-38.468760px;}
.ws0{word-spacing:-37.913760px;}
.wsd{word-spacing:-37.658760px;}
.ws5{word-spacing:-37.531560px;}
.wsb{word-spacing:-36.581760px;}
.wsa{word-spacing:-32.544000px;}
.ws8{word-spacing:-27.412440px;}
.ws7{word-spacing:-27.174240px;}
.ws6{word-spacing:-26.980440px;}
.wse{word-spacing:0.000000px;}
.ws2{word-spacing:5817.000000px;}
._4{margin-left:-22.518000px;}
._7{margin-left:-14.944320px;}
._11{margin-left:-9.612720px;}
._f{margin-left:-7.305120px;}
._10{margin-left:-6.022800px;}
._6{margin-left:-4.718880px;}
._2{margin-left:-2.851920px;}
._1{margin-left:-1.677600px;}
._0{width:1.845360px;}
._8{width:2.989680px;}
._3{width:17.105760px;}
._5{width:25.241760px;}
._e{width:157.174560px;}
._c{width:329.764080px;}
._d{width:389.890080px;}
._b{width:437.961600px;}
._a{width:649.807200px;}
._9{width:8918.955408px;}
.fc3{color:rgb(247,150,70);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:144.000000px;}
.fs0{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs9{font-size:192.240000px;}
.fs4{font-size:264.240000px;}
.fs3{font-size:300.240000px;}
.fs5{font-size:324.000000px;}
.fs6{font-size:324.144000px;}
.fs2{font-size:480.240000px;}
.fs1{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y29{bottom:370.800000px;}
.y2d{bottom:412.305000px;}
.y28{bottom:421.200000px;}
.y2c{bottom:462.705000px;}
.y2b{bottom:799.275000px;}
.y27{bottom:954.540000px;}
.y16{bottom:1097.025000px;}
.y15{bottom:1154.625000px;}
.y14{bottom:1212.225000px;}
.y13{bottom:1327.425000px;}
.y12{bottom:1385.025000px;}
.y11{bottom:1442.625000px;}
.y10{bottom:1500.225000px;}
.yf{bottom:1557.825000px;}
.y8{bottom:1668.630000px;}
.y2a{bottom:1989.750000px;}
.y26{bottom:2119.680000px;}
.y25{bottom:2162.880000px;}
.y24{bottom:2206.080000px;}
.y2{bottom:2553.810000px;}
.y1{bottom:2604.210000px;}
.y20{bottom:2683.650000px;}
.y1f{bottom:2716.770000px;}
.y1e{bottom:2752.770000px;}
.ye{bottom:3080.700000px;}
.yd{bottom:3113.100000px;}
.y22{bottom:3118.290000px;}
.yc{bottom:3145.500000px;}
.ya{bottom:3160.110000px;}
.yb{bottom:3177.900000px;}
.y9{bottom:3210.510000px;}
.y17{bottom:3300.840000px;}
.y1c{bottom:3411.870000px;}
.y18{bottom:3417.045000px;}
.y21{bottom:3437.250000px;}
.y1b{bottom:3462.270000px;}
.y1a{bottom:3512.670000px;}
.y19{bottom:3699.390000px;}
.y1d{bottom:4061.235000px;}
.y7{bottom:4156.950000px;}
.y23{bottom:4421.595000px;}
.y6{bottom:4475.340000px;}
.y5{bottom:4574.880000px;}
.y4{bottom:4690.440000px;}
.y3{bottom:4834.470000px;}
.ha{height:112.640625px;}
.he{height:119.594180px;}
.hf{height:125.406562px;}
.h13{height:128.113594px;}
.h12{height:143.226562px;}
.h11{height:147.445312px;}
.hd{height:166.858945px;}
.h2{height:171.773789px;}
.hb{height:191.207461px;}
.hc{height:196.839492px;}
.h6{height:201.792656px;}
.h5{height:226.939219px;}
.h10{height:270.562148px;}
.h7{height:274.428000px;}
.h8{height:274.549968px;}
.h9{height:313.520625px;}
.h4{height:406.609453px;}
.h3{height:406.731375px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.xc{left:30.671947px;}
.x2{left:42.407947px;}
.x5{left:48.527947px;}
.x14{left:89.891947px;}
.xa{left:429.734947px;}
.x9{left:436.754947px;}
.x3{left:495.029947px;}
.xd{left:1606.289947px;}
.x7{left:1614.314947px;}
.x1{left:1626.809947px;}
.xf{left:1659.419947px;}
.x8{left:1668.314947px;}
.x12{left:1800.869947px;}
.x11{left:2119.064947px;}
.x13{left:2316.029947px;}
.x4{left:2354.399947px;}
.x6{left:2804.474947px;}
.xe{left:2946.419947px;}
.x15{left:3136.214947px;}
.x16{left:3149.384947px;}
.xb{left:3431.414947px;}
.x10{left:3543.734947px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:178.560000pt;}
.lsa{letter-spacing:-1.184000pt;}
.ls6{letter-spacing:-0.339733pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.253867pt;}
.lsc{letter-spacing:-0.226667pt;}
.ls8{letter-spacing:-0.172267pt;}
.ls7{letter-spacing:-0.083733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.211733pt;}
.ls1{letter-spacing:0.218880pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.305067pt;}
.lsb{letter-spacing:0.493333pt;}
.ws1{word-spacing:-94.218667pt;}
.ws4{word-spacing:-61.083136pt;}
.ws3{word-spacing:-61.056000pt;}
.ws9{word-spacing:-53.082880pt;}
.wsc{word-spacing:-34.194453pt;}
.ws0{word-spacing:-33.701120pt;}
.wsd{word-spacing:-33.474453pt;}
.ws5{word-spacing:-33.361387pt;}
.wsb{word-spacing:-32.517120pt;}
.wsa{word-spacing:-28.928000pt;}
.ws8{word-spacing:-24.366613pt;}
.ws7{word-spacing:-24.154880pt;}
.ws6{word-spacing:-23.982613pt;}
.wse{word-spacing:0.000000pt;}
.ws2{word-spacing:5170.666667pt;}
._4{margin-left:-20.016000pt;}
._7{margin-left:-13.283840pt;}
._11{margin-left:-8.544640pt;}
._f{margin-left:-6.493440pt;}
._10{margin-left:-5.353600pt;}
._6{margin-left:-4.194560pt;}
._2{margin-left:-2.535040pt;}
._1{margin-left:-1.491200pt;}
._0{width:1.640320pt;}
._8{width:2.657493pt;}
._3{width:15.205120pt;}
._5{width:22.437120pt;}
._e{width:139.710720pt;}
._c{width:293.123627pt;}
._d{width:346.568960pt;}
._b{width:389.299200pt;}
._a{width:577.606400pt;}
._9{width:7927.960363pt;}
.fs8{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:128.000000pt;}
.fs0{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs9{font-size:170.880000pt;}
.fs4{font-size:234.880000pt;}
.fs3{font-size:266.880000pt;}
.fs5{font-size:288.000000pt;}
.fs6{font-size:288.128000pt;}
.fs2{font-size:426.880000pt;}
.fs1{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:329.600000pt;}
.y2d{bottom:366.493333pt;}
.y28{bottom:374.400000pt;}
.y2c{bottom:411.293333pt;}
.y2b{bottom:710.466667pt;}
.y27{bottom:848.480000pt;}
.y16{bottom:975.133333pt;}
.y15{bottom:1026.333333pt;}
.y14{bottom:1077.533333pt;}
.y13{bottom:1179.933333pt;}
.y12{bottom:1231.133333pt;}
.y11{bottom:1282.333333pt;}
.y10{bottom:1333.533333pt;}
.yf{bottom:1384.733333pt;}
.y8{bottom:1483.226667pt;}
.y2a{bottom:1768.666667pt;}
.y26{bottom:1884.160000pt;}
.y25{bottom:1922.560000pt;}
.y24{bottom:1960.960000pt;}
.y2{bottom:2270.053333pt;}
.y1{bottom:2314.853333pt;}
.y20{bottom:2385.466667pt;}
.y1f{bottom:2414.906667pt;}
.y1e{bottom:2446.906667pt;}
.ye{bottom:2738.400000pt;}
.yd{bottom:2767.200000pt;}
.y22{bottom:2771.813333pt;}
.yc{bottom:2796.000000pt;}
.ya{bottom:2808.986667pt;}
.yb{bottom:2824.800000pt;}
.y9{bottom:2853.786667pt;}
.y17{bottom:2934.080000pt;}
.y1c{bottom:3032.773333pt;}
.y18{bottom:3037.373333pt;}
.y21{bottom:3055.333333pt;}
.y1b{bottom:3077.573333pt;}
.y1a{bottom:3122.373333pt;}
.y19{bottom:3288.346667pt;}
.y1d{bottom:3609.986667pt;}
.y7{bottom:3695.066667pt;}
.y23{bottom:3930.306667pt;}
.y6{bottom:3978.080000pt;}
.y5{bottom:4066.560000pt;}
.y4{bottom:4169.280000pt;}
.y3{bottom:4297.306667pt;}
.ha{height:100.125000pt;}
.he{height:106.305937pt;}
.hf{height:111.472500pt;}
.h13{height:113.878750pt;}
.h12{height:127.312500pt;}
.h11{height:131.062500pt;}
.hd{height:148.319063pt;}
.h2{height:152.687812pt;}
.hb{height:169.962187pt;}
.hc{height:174.968437pt;}
.h6{height:179.371250pt;}
.h5{height:201.723750pt;}
.h10{height:240.499688pt;}
.h7{height:243.936000pt;}
.h8{height:244.044416pt;}
.h9{height:278.685000pt;}
.h4{height:361.430625pt;}
.h3{height:361.539000pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.xc{left:27.263953pt;}
.x2{left:37.695953pt;}
.x5{left:43.135953pt;}
.x14{left:79.903953pt;}
.xa{left:381.986619pt;}
.x9{left:388.226619pt;}
.x3{left:440.026619pt;}
.xd{left:1427.813286pt;}
.x7{left:1434.946619pt;}
.x1{left:1446.053286pt;}
.xf{left:1475.039953pt;}
.x8{left:1482.946619pt;}
.x12{left:1600.773286pt;}
.x11{left:1883.613286pt;}
.x13{left:2058.693286pt;}
.x4{left:2092.799953pt;}
.x6{left:2492.866619pt;}
.xe{left:2619.039953pt;}
.x15{left:2787.746619pt;}
.x16{left:2799.453286pt;}
.xb{left:3050.146619pt;}
.x10{left:3149.986619pt;}
}




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