
    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_90bec43f71f0dcb5e4219e2d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20cc16795ce9a27294bd7647.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_f00a8b0c93d8b33e99d89688.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_29b2bae0d4769d5fcebd81a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_44f9b9b7ad49f134b6059e09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_f324e36fe55a13421cddf399.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320000px;}
.v3{vertical-align:30.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.880000px;}
.ls1{letter-spacing:4.320000px;}
.ls2{letter-spacing:5.760000px;}
.ls3{letter-spacing:7.200000px;}
.ls4{letter-spacing:10.080000px;}
.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.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-2.220000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-147.630000px;}
._9{margin-left:-131.328000px;}
._a{margin-left:-107.160000px;}
._4{margin-left:-91.290000px;}
._8{margin-left:-70.362000px;}
._2{margin-left:-54.060000px;}
._5{margin-left:-38.610000px;}
._b{margin-left:-36.024000px;}
._6{margin-left:-26.820000px;}
._7{margin-left:-20.250000px;}
._3{margin-left:-11.424000px;}
._e{margin-left:-6.000000px;}
._10{margin-left:-4.800000px;}
._17{margin-left:-3.629280px;}
._11{margin-left:-2.580000px;}
._d{margin-left:-1.080000px;}
._f{width:1.080000px;}
._12{width:2.105280px;}
._13{width:3.666720px;}
._1a{width:4.926240px;}
._23{width:5.987760px;}
._22{width:7.157760px;}
._1{width:8.526000px;}
._14{width:9.642000px;}
._25{width:10.700400px;}
._24{width:11.796720px;}
._26{width:12.972240px;}
._15{width:14.400000px;}
._16{width:15.948000px;}
._2c{width:16.969440px;}
._18{width:19.280160px;}
._19{width:20.436000px;}
._1f{width:22.362720px;}
._20{width:23.822400px;}
._27{width:25.642080px;}
._1e{width:27.291840px;}
._1d{width:29.274720px;}
._21{width:31.024560px;}
._29{width:32.112000px;}
._1c{width:33.194880px;}
._1b{width:34.481280px;}
._28{width:36.144000px;}
._2b{width:39.533280px;}
._2a{width:40.990560px;}
._0{width:42.096000px;}
.fc2{color:rgb(31,73,125);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:transparent;}
.fs5{font-size:60.000000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:114.000000px;}
.fs4{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:125.280000px;}
.y11{bottom:128.520000px;}
.y1e{bottom:141.494250px;}
.y3b{bottom:153.360000px;}
.y5b{bottom:156.600000px;}
.y1d{bottom:159.494250px;}
.y3a{bottom:184.320000px;}
.y5a{bottom:187.560000px;}
.y1c{bottom:195.494250px;}
.y1b{bottom:213.494250px;}
.y39{bottom:215.280000px;}
.y59{bottom:218.880000px;}
.y1a{bottom:231.494250px;}
.y38{bottom:246.240000px;}
.y19{bottom:249.494250px;}
.y58{bottom:249.840000px;}
.ye{bottom:264.600000px;}
.yf{bottom:264.960000px;}
.y18{bottom:267.494250px;}
.y37{bottom:277.200000px;}
.y57{bottom:280.800000px;}
.y17{bottom:285.494250px;}
.y16{bottom:303.494250px;}
.y36{bottom:308.520000px;}
.y56{bottom:311.760000px;}
.y35{bottom:339.480000px;}
.y55{bottom:343.080000px;}
.y10{bottom:358.920000px;}
.y34{bottom:370.440000px;}
.y54{bottom:374.040000px;}
.y33{bottom:401.400000px;}
.y53{bottom:405.000000px;}
.y32{bottom:432.720000px;}
.y52{bottom:435.960000px;}
.y31{bottom:463.680000px;}
.y51{bottom:467.280000px;}
.y15{bottom:488.399250px;}
.y30{bottom:494.640000px;}
.y50{bottom:498.240000px;}
.yc{bottom:511.200000px;}
.yd{bottom:511.560000px;}
.y14{bottom:521.954250px;}
.y2f{bottom:525.600000px;}
.y4f{bottom:529.200000px;}
.y2e{bottom:556.920000px;}
.y13{bottom:558.374700px;}
.y4e{bottom:560.160000px;}
.yb{bottom:570.600000px;}
.y2d{bottom:587.880000px;}
.y4d{bottom:591.120000px;}
.y8{bottom:613.800000px;}
.y9{bottom:614.160000px;}
.ya{bottom:614.520000px;}
.y2c{bottom:618.480000px;}
.y4c{bottom:622.440000px;}
.y4b{bottom:653.400000px;}
.y6{bottom:657.360000px;}
.y5{bottom:657.720000px;}
.y7{bottom:658.080000px;}
.y2b{bottom:664.200000px;}
.y4a{bottom:684.360000px;}
.y2a{bottom:700.920000px;}
.y5c{bottom:714.960000px;}
.y49{bottom:715.320000px;}
.y29{bottom:737.280000px;}
.y48{bottom:746.640000px;}
.y28{bottom:773.280000px;}
.y47{bottom:777.600000px;}
.y4{bottom:800.640000px;}
.y27{bottom:806.760000px;}
.y46{bottom:808.560000px;}
.y26{bottom:838.080000px;}
.y45{bottom:839.520000px;}
.y25{bottom:869.040000px;}
.y44{bottom:870.840000px;}
.y24{bottom:900.000000px;}
.y43{bottom:901.800000px;}
.y3{bottom:930.240000px;}
.y2{bottom:930.960000px;}
.y42{bottom:932.760000px;}
.y23{bottom:961.920000px;}
.y41{bottom:963.720000px;}
.y1{bottom:979.560000px;}
.y40{bottom:995.040000px;}
.y22{bottom:1007.640000px;}
.y3f{bottom:1026.000000px;}
.y21{bottom:1044.000000px;}
.y3e{bottom:1056.960000px;}
.y20{bottom:1080.360000px;}
.y3d{bottom:1087.920000px;}
.y1f{bottom:1116.720000px;}
.y3c{bottom:1119.240000px;}
.ha{height:41.660156px;}
.hc{height:41.689453px;}
.hf{height:47.988281px;}
.h10{height:50.027344px;}
.he{height:57.990937px;}
.hd{height:58.031719px;}
.hb{height:71.660156px;}
.h4{height:93.867188px;}
.h6{height:100.125000px;}
.h3{height:106.382812px;}
.h2{height:110.702813px;}
.h5{height:118.898438px;}
.h7{height:143.929688px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.h8{height:1262.835000px;}
.h9{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:127.439848px;}
.x1d{left:130.320000px;}
.x19{left:140.740200px;}
.x20{left:148.680099px;}
.x1c{left:157.680002px;}
.x1a{left:166.660650px;}
.x6{left:218.160000px;}
.xc{left:222.840000px;}
.x7{left:286.200000px;}
.x2{left:302.760000px;}
.x8{left:322.920000px;}
.x1{left:329.400000px;}
.x11{left:346.680000px;}
.x21{left:365.040318px;}
.x1e{left:376.200699px;}
.x1b{left:382.320000px;}
.xd{left:399.960000px;}
.x14{left:411.120000px;}
.x5{left:418.320000px;}
.x17{left:438.840000px;}
.x9{left:463.320000px;}
.x10{left:472.680000px;}
.x3{left:480.240000px;}
.x15{left:498.960000px;}
.x12{left:504.720000px;}
.x16{left:508.680000px;}
.x18{left:524.520000px;}
.xe{left:559.800000px;}
.x13{left:590.760000px;}
.x4{left:617.400000px;}
.xa{left:630.360000px;}
.xf{left:656.280000px;}
.xb{left:796.320000px;}
@media print{
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840000pt;}
.v3{vertical-align:26.666667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls4{letter-spacing:8.960000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-1.973333pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-131.226667pt;}
._9{margin-left:-116.736000pt;}
._a{margin-left:-95.253333pt;}
._4{margin-left:-81.146667pt;}
._8{margin-left:-62.544000pt;}
._2{margin-left:-48.053333pt;}
._5{margin-left:-34.320000pt;}
._b{margin-left:-32.021333pt;}
._6{margin-left:-23.840000pt;}
._7{margin-left:-18.000000pt;}
._3{margin-left:-10.154667pt;}
._e{margin-left:-5.333333pt;}
._10{margin-left:-4.266667pt;}
._17{margin-left:-3.226027pt;}
._11{margin-left:-2.293333pt;}
._d{margin-left:-0.960000pt;}
._f{width:0.960000pt;}
._12{width:1.871360pt;}
._13{width:3.259307pt;}
._1a{width:4.378880pt;}
._23{width:5.322453pt;}
._22{width:6.362453pt;}
._1{width:7.578667pt;}
._14{width:8.570667pt;}
._25{width:9.511467pt;}
._24{width:10.485973pt;}
._26{width:11.530880pt;}
._15{width:12.800000pt;}
._16{width:14.176000pt;}
._2c{width:15.083947pt;}
._18{width:17.137920pt;}
._19{width:18.165333pt;}
._1f{width:19.877973pt;}
._20{width:21.175467pt;}
._27{width:22.792960pt;}
._1e{width:24.259413pt;}
._1d{width:26.021973pt;}
._21{width:27.577387pt;}
._29{width:28.544000pt;}
._1c{width:29.506560pt;}
._1b{width:30.650027pt;}
._28{width:32.128000pt;}
._2b{width:35.140693pt;}
._2a{width:36.436053pt;}
._0{width:37.418667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:101.333333pt;}
.fs4{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:111.360000pt;}
.y11{bottom:114.240000pt;}
.y1e{bottom:125.772667pt;}
.y3b{bottom:136.320000pt;}
.y5b{bottom:139.200000pt;}
.y1d{bottom:141.772667pt;}
.y3a{bottom:163.840000pt;}
.y5a{bottom:166.720000pt;}
.y1c{bottom:173.772667pt;}
.y1b{bottom:189.772667pt;}
.y39{bottom:191.360000pt;}
.y59{bottom:194.560000pt;}
.y1a{bottom:205.772667pt;}
.y38{bottom:218.880000pt;}
.y19{bottom:221.772667pt;}
.y58{bottom:222.080000pt;}
.ye{bottom:235.200000pt;}
.yf{bottom:235.520000pt;}
.y18{bottom:237.772667pt;}
.y37{bottom:246.400000pt;}
.y57{bottom:249.600000pt;}
.y17{bottom:253.772667pt;}
.y16{bottom:269.772667pt;}
.y36{bottom:274.240000pt;}
.y56{bottom:277.120000pt;}
.y35{bottom:301.760000pt;}
.y55{bottom:304.960000pt;}
.y10{bottom:319.040000pt;}
.y34{bottom:329.280000pt;}
.y54{bottom:332.480000pt;}
.y33{bottom:356.800000pt;}
.y53{bottom:360.000000pt;}
.y32{bottom:384.640000pt;}
.y52{bottom:387.520000pt;}
.y31{bottom:412.160000pt;}
.y51{bottom:415.360000pt;}
.y15{bottom:434.132667pt;}
.y30{bottom:439.680000pt;}
.y50{bottom:442.880000pt;}
.yc{bottom:454.400000pt;}
.yd{bottom:454.720000pt;}
.y14{bottom:463.959333pt;}
.y2f{bottom:467.200000pt;}
.y4f{bottom:470.400000pt;}
.y2e{bottom:495.040000pt;}
.y13{bottom:496.333067pt;}
.y4e{bottom:497.920000pt;}
.yb{bottom:507.200000pt;}
.y2d{bottom:522.560000pt;}
.y4d{bottom:525.440000pt;}
.y8{bottom:545.600000pt;}
.y9{bottom:545.920000pt;}
.ya{bottom:546.240000pt;}
.y2c{bottom:549.760000pt;}
.y4c{bottom:553.280000pt;}
.y4b{bottom:580.800000pt;}
.y6{bottom:584.320000pt;}
.y5{bottom:584.640000pt;}
.y7{bottom:584.960000pt;}
.y2b{bottom:590.400000pt;}
.y4a{bottom:608.320000pt;}
.y2a{bottom:623.040000pt;}
.y5c{bottom:635.520000pt;}
.y49{bottom:635.840000pt;}
.y29{bottom:655.360000pt;}
.y48{bottom:663.680000pt;}
.y28{bottom:687.360000pt;}
.y47{bottom:691.200000pt;}
.y4{bottom:711.680000pt;}
.y27{bottom:717.120000pt;}
.y46{bottom:718.720000pt;}
.y26{bottom:744.960000pt;}
.y45{bottom:746.240000pt;}
.y25{bottom:772.480000pt;}
.y44{bottom:774.080000pt;}
.y24{bottom:800.000000pt;}
.y43{bottom:801.600000pt;}
.y3{bottom:826.880000pt;}
.y2{bottom:827.520000pt;}
.y42{bottom:829.120000pt;}
.y23{bottom:855.040000pt;}
.y41{bottom:856.640000pt;}
.y1{bottom:870.720000pt;}
.y40{bottom:884.480000pt;}
.y22{bottom:895.680000pt;}
.y3f{bottom:912.000000pt;}
.y21{bottom:928.000000pt;}
.y3e{bottom:939.520000pt;}
.y20{bottom:960.320000pt;}
.y3d{bottom:967.040000pt;}
.y1f{bottom:992.640000pt;}
.y3c{bottom:994.880000pt;}
.ha{height:37.031250pt;}
.hc{height:37.057292pt;}
.hf{height:42.656250pt;}
.h10{height:44.468750pt;}
.he{height:51.547500pt;}
.hd{height:51.583750pt;}
.hb{height:63.697917pt;}
.h4{height:83.437500pt;}
.h6{height:89.000000pt;}
.h3{height:94.562500pt;}
.h2{height:98.402500pt;}
.h5{height:105.687500pt;}
.h7{height:127.937500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.h8{height:1122.520000pt;}
.h9{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:113.279865pt;}
.x1d{left:115.840000pt;}
.x19{left:125.102400pt;}
.x20{left:132.160088pt;}
.x1c{left:140.160002pt;}
.x1a{left:148.142800pt;}
.x6{left:193.920000pt;}
.xc{left:198.080000pt;}
.x7{left:254.400000pt;}
.x2{left:269.120000pt;}
.x8{left:287.040000pt;}
.x1{left:292.800000pt;}
.x11{left:308.160000pt;}
.x21{left:324.480283pt;}
.x1e{left:334.400622pt;}
.x1b{left:339.840000pt;}
.xd{left:355.520000pt;}
.x14{left:365.440000pt;}
.x5{left:371.840000pt;}
.x17{left:390.080000pt;}
.x9{left:411.840000pt;}
.x10{left:420.160000pt;}
.x3{left:426.880000pt;}
.x15{left:443.520000pt;}
.x12{left:448.640000pt;}
.x16{left:452.160000pt;}
.x18{left:466.240000pt;}
.xe{left:497.600000pt;}
.x13{left:525.120000pt;}
.x4{left:548.800000pt;}
.xa{left:560.320000pt;}
.xf{left:583.360000pt;}
.xb{left:707.840000pt;}
}




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