
    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_5f4d101845468543fb3f560b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_495b3b59de83da8072c68ac5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_28570974b3d27551054d8b36.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_8e72a1a49a4ce4d2a566bcdd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_6f8d2e5981402c570ea6a663.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_a512fc2e0f4143e5994f992e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_e51124d5dcad785902415c25.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730957;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.373600px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-48.756000px;}
.ws0{word-spacing:-44.820000px;}
.ws3{word-spacing:-44.640000px;}
.ws5{word-spacing:-5.220000px;}
.ws6{word-spacing:-1.620000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:945.051000px;}
._6{margin-left:-49.440000px;}
._a{margin-left:-44.996400px;}
._10{margin-left:-14.692200px;}
._7{margin-left:-9.516000px;}
._5{margin-left:-6.900000px;}
._4{margin-left:-5.724000px;}
._3{margin-left:-4.536000px;}
._d{margin-left:-3.456000px;}
._0{margin-left:-2.343600px;}
._1{margin-left:-1.072800px;}
._9{width:1.605600px;}
._f{width:2.735400px;}
._8{width:4.680000px;}
._e{width:6.138000px;}
._2{width:62.629200px;}
._b{width:99.727200px;}
._c{width:171.180000px;}
.fc4{color:rgb(0,104,144);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(28,97,139);}
.fs5{font-size:108.000000px;}
.fs1{font-size:180.000000px;}
.fs6{font-size:204.000000px;}
.fs4{font-size:282.000000px;}
.fs3{font-size:360.000000px;}
.fs0{font-size:372.000000px;}
.fs2{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:91.487100px;}
.y3d{bottom:122.977200px;}
.y3e{bottom:204.172050px;}
.y42{bottom:621.544800px;}
.y69{bottom:642.601800px;}
.y41{bottom:675.544800px;}
.y68{bottom:696.601800px;}
.y40{bottom:729.544800px;}
.y67{bottom:750.601800px;}
.y6a{bottom:821.295000px;}
.y45{bottom:865.647450px;}
.y66{bottom:886.214400px;}
.y44{bottom:919.647450px;}
.y65{bottom:940.214400px;}
.y64{bottom:994.214400px;}
.y6d{bottom:1044.432150px;}
.y60{bottom:1090.245150px;}
.y6c{bottom:1098.432150px;}
.y43{bottom:1124.259300px;}
.y6b{bottom:1152.432150px;}
.y63{bottom:1166.138250px;}
.y62{bottom:1220.138250px;}
.y61{bottom:1274.138250px;}
.y5f{bottom:1370.933400px;}
.y1{bottom:1379.933400px;}
.y51{bottom:1582.071900px;}
.y29{bottom:1582.376550px;}
.y3c{bottom:1583.876550px;}
.y50{bottom:1636.071900px;}
.y28{bottom:1636.376550px;}
.y3b{bottom:1637.876550px;}
.y4f{bottom:1690.071900px;}
.y27{bottom:1690.376550px;}
.y3a{bottom:1691.876550px;}
.y4e{bottom:1741.978500px;}
.y5e{bottom:1742.760750px;}
.y5d{bottom:1842.318900px;}
.y39{bottom:1890.420600px;}
.y5c{bottom:1896.318900px;}
.y38{bottom:1944.420600px;}
.y5b{bottom:1950.318900px;}
.y26{bottom:1983.966000px;}
.y37{bottom:1998.420600px;}
.y5a{bottom:2004.318900px;}
.y25{bottom:2037.966000px;}
.y36{bottom:2052.420600px;}
.y56{bottom:2059.718700px;}
.y24{bottom:2091.966000px;}
.y35{bottom:2106.420600px;}
.y32{bottom:2112.729150px;}
.y55{bottom:2113.718700px;}
.y1f{bottom:2123.465850px;}
.y2e{bottom:2137.912650px;}
.y23{bottom:2145.966000px;}
.y34{bottom:2160.420600px;}
.y31{bottom:2166.729150px;}
.y54{bottom:2167.718700px;}
.y1e{bottom:2177.465850px;}
.y2d{bottom:2191.912650px;}
.y22{bottom:2199.966000px;}
.y33{bottom:2214.420600px;}
.y30{bottom:2220.729150px;}
.y53{bottom:2221.718700px;}
.y1d{bottom:2231.465850px;}
.y2c{bottom:2245.912650px;}
.y2f{bottom:2274.729150px;}
.y52{bottom:2275.718700px;}
.y2b{bottom:2299.912650px;}
.y4d{bottom:2346.652050px;}
.y2a{bottom:2353.912650px;}
.y1c{bottom:2533.939950px;}
.y21{bottom:2537.521800px;}
.y1b{bottom:2587.939950px;}
.y20{bottom:2591.521800px;}
.y59{bottom:2844.844650px;}
.yd{bottom:2864.112000px;}
.y58{bottom:2906.044500px;}
.y4c{bottom:2907.646200px;}
.y13{bottom:2916.581850px;}
.yc{bottom:2918.112000px;}
.y57{bottom:2967.244650px;}
.y4b{bottom:2968.846200px;}
.y12{bottom:2970.581850px;}
.yb{bottom:2972.112000px;}
.y11{bottom:3024.581850px;}
.ya{bottom:3026.112000px;}
.y10{bottom:3078.581850px;}
.y9{bottom:3080.112000px;}
.y8{bottom:3134.112000px;}
.y4a{bottom:3330.688500px;}
.y7{bottom:3349.956300px;}
.y19{bottom:3352.437000px;}
.y47{bottom:3391.758600px;}
.y49{bottom:3391.888500px;}
.y6{bottom:3403.956300px;}
.y18{bottom:3406.437000px;}
.y46{bottom:3452.958600px;}
.y48{bottom:3453.088650px;}
.y5{bottom:3457.956300px;}
.y17{bottom:3460.437000px;}
.y4{bottom:3511.956300px;}
.y16{bottom:3514.437000px;}
.y3{bottom:3565.956300px;}
.y15{bottom:3568.437000px;}
.y2{bottom:3619.956300px;}
.y14{bottom:3622.437000px;}
.y1a{bottom:3787.045500px;}
.yf{bottom:3933.118350px;}
.ye{bottom:4292.893800px;}
.h7{height:82.107422px;}
.ha{height:129.814453px;}
.hc{height:135.000000px;}
.h3{height:143.349609px;}
.hb{height:151.723209px;}
.h9{height:155.091797px;}
.h6{height:211.500000px;}
.h5{height:273.691406px;}
.h2{height:282.814453px;}
.h4{height:456.152344px;}
.h1{height:5140.500000px;}
.h8{height:5140.630500px;}
.h0{height:5140.635000px;}
.w1{width:3660.750000px;}
.w0{width:3660.945000px;}
.x0{left:0.000000px;}
.x7{left:92.989200px;}
.x6{left:98.539350px;}
.x9{left:100.359150px;}
.x1{left:103.829550px;}
.x1e{left:111.507900px;}
.x8{left:119.989200px;}
.xb{left:144.826800px;}
.xa{left:326.274900px;}
.x21{left:546.378000px;}
.x1f{left:690.859200px;}
.x14{left:915.519150px;}
.x5{left:986.727900px;}
.x20{left:1031.386950px;}
.x4{left:1106.650950px;}
.xd{left:1135.393650px;}
.x27{left:1215.337500px;}
.x17{left:1238.207100px;}
.x22{left:1256.406000px;}
.x18{left:1259.859750px;}
.xc{left:1261.444200px;}
.x23{left:1297.295700px;}
.x2f{left:1443.442950px;}
.x2b{left:1446.321300px;}
.x2a{left:1448.850450px;}
.x30{left:1452.023250px;}
.x28{left:1460.539800px;}
.x2e{left:1463.526000px;}
.x2d{left:1466.887800px;}
.x29{left:1481.930250px;}
.x2c{left:1498.978800px;}
.x31{left:1683.458250px;}
.x33{left:1685.928450px;}
.x32{left:1711.142100px;}
.x24{left:1717.936950px;}
.x10{left:1769.988150px;}
.x25{left:1826.840700px;}
.xe{left:2034.047250px;}
.x1c{left:2083.151400px;}
.x1a{left:2092.633050px;}
.x19{left:2101.062600px;}
.x1d{left:2122.870650px;}
.x1b{left:2150.207400px;}
.xf{left:2310.460500px;}
.x26{left:2408.268300px;}
.x2{left:2531.688300px;}
.x3{left:2558.688300px;}
.x16{left:2656.858200px;}
.x13{left:2660.495550px;}
.x11{left:2893.252950px;}
.x12{left:3058.002900px;}
.x15{left:3124.794000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.443200pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-43.338667pt;}
.ws0{word-spacing:-39.840000pt;}
.ws3{word-spacing:-39.680000pt;}
.ws5{word-spacing:-4.640000pt;}
.ws6{word-spacing:-1.440000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:840.045333pt;}
._6{margin-left:-43.946667pt;}
._a{margin-left:-39.996800pt;}
._10{margin-left:-13.059733pt;}
._7{margin-left:-8.458667pt;}
._5{margin-left:-6.133333pt;}
._4{margin-left:-5.088000pt;}
._3{margin-left:-4.032000pt;}
._d{margin-left:-3.072000pt;}
._0{margin-left:-2.083200pt;}
._1{margin-left:-0.953600pt;}
._9{width:1.427200pt;}
._f{width:2.431467pt;}
._8{width:4.160000pt;}
._e{width:5.456000pt;}
._2{width:55.670400pt;}
._b{width:88.646400pt;}
._c{width:152.160000pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:160.000000pt;}
.fs6{font-size:181.333333pt;}
.fs4{font-size:250.666667pt;}
.fs3{font-size:320.000000pt;}
.fs0{font-size:330.666667pt;}
.fs2{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:81.321867pt;}
.y3d{bottom:109.313067pt;}
.y3e{bottom:181.486267pt;}
.y42{bottom:552.484267pt;}
.y69{bottom:571.201600pt;}
.y41{bottom:600.484267pt;}
.y68{bottom:619.201600pt;}
.y40{bottom:648.484267pt;}
.y67{bottom:667.201600pt;}
.y6a{bottom:730.040000pt;}
.y45{bottom:769.464400pt;}
.y66{bottom:787.746133pt;}
.y44{bottom:817.464400pt;}
.y65{bottom:835.746133pt;}
.y64{bottom:883.746133pt;}
.y6d{bottom:928.384133pt;}
.y60{bottom:969.106800pt;}
.y6c{bottom:976.384133pt;}
.y43{bottom:999.341600pt;}
.y6b{bottom:1024.384133pt;}
.y63{bottom:1036.567333pt;}
.y62{bottom:1084.567333pt;}
.y61{bottom:1132.567333pt;}
.y5f{bottom:1218.607467pt;}
.y1{bottom:1226.607467pt;}
.y51{bottom:1406.286133pt;}
.y29{bottom:1406.556933pt;}
.y3c{bottom:1407.890267pt;}
.y50{bottom:1454.286133pt;}
.y28{bottom:1454.556933pt;}
.y3b{bottom:1455.890267pt;}
.y4f{bottom:1502.286133pt;}
.y27{bottom:1502.556933pt;}
.y3a{bottom:1503.890267pt;}
.y4e{bottom:1548.425333pt;}
.y5e{bottom:1549.120667pt;}
.y5d{bottom:1637.616800pt;}
.y39{bottom:1680.373867pt;}
.y5c{bottom:1685.616800pt;}
.y38{bottom:1728.373867pt;}
.y5b{bottom:1733.616800pt;}
.y26{bottom:1763.525333pt;}
.y37{bottom:1776.373867pt;}
.y5a{bottom:1781.616800pt;}
.y25{bottom:1811.525333pt;}
.y36{bottom:1824.373867pt;}
.y56{bottom:1830.861067pt;}
.y24{bottom:1859.525333pt;}
.y35{bottom:1872.373867pt;}
.y32{bottom:1877.981467pt;}
.y55{bottom:1878.861067pt;}
.y1f{bottom:1887.525200pt;}
.y2e{bottom:1900.366800pt;}
.y23{bottom:1907.525333pt;}
.y34{bottom:1920.373867pt;}
.y31{bottom:1925.981467pt;}
.y54{bottom:1926.861067pt;}
.y1e{bottom:1935.525200pt;}
.y2d{bottom:1948.366800pt;}
.y22{bottom:1955.525333pt;}
.y33{bottom:1968.373867pt;}
.y30{bottom:1973.981467pt;}
.y53{bottom:1974.861067pt;}
.y1d{bottom:1983.525200pt;}
.y2c{bottom:1996.366800pt;}
.y2f{bottom:2021.981467pt;}
.y52{bottom:2022.861067pt;}
.y2b{bottom:2044.366800pt;}
.y4d{bottom:2085.912933pt;}
.y2a{bottom:2092.366800pt;}
.y1c{bottom:2252.391067pt;}
.y21{bottom:2255.574933pt;}
.y1b{bottom:2300.391067pt;}
.y20{bottom:2303.574933pt;}
.y59{bottom:2528.750800pt;}
.yd{bottom:2545.877333pt;}
.y58{bottom:2583.150667pt;}
.y4c{bottom:2584.574400pt;}
.y13{bottom:2592.517200pt;}
.yc{bottom:2593.877333pt;}
.y57{bottom:2637.550800pt;}
.y4b{bottom:2638.974400pt;}
.y12{bottom:2640.517200pt;}
.yb{bottom:2641.877333pt;}
.y11{bottom:2688.517200pt;}
.ya{bottom:2689.877333pt;}
.y10{bottom:2736.517200pt;}
.y9{bottom:2737.877333pt;}
.y8{bottom:2785.877333pt;}
.y4a{bottom:2960.612000pt;}
.y7{bottom:2977.738933pt;}
.y19{bottom:2979.944000pt;}
.y47{bottom:3014.896533pt;}
.y49{bottom:3015.012000pt;}
.y6{bottom:3025.738933pt;}
.y18{bottom:3027.944000pt;}
.y46{bottom:3069.296533pt;}
.y48{bottom:3069.412133pt;}
.y5{bottom:3073.738933pt;}
.y17{bottom:3075.944000pt;}
.y4{bottom:3121.738933pt;}
.y16{bottom:3123.944000pt;}
.y3{bottom:3169.738933pt;}
.y15{bottom:3171.944000pt;}
.y2{bottom:3217.738933pt;}
.y14{bottom:3219.944000pt;}
.y1a{bottom:3366.262667pt;}
.yf{bottom:3496.105200pt;}
.ye{bottom:3815.905600pt;}
.h7{height:72.984375pt;}
.ha{height:115.390625pt;}
.hc{height:120.000000pt;}
.h3{height:127.421875pt;}
.hb{height:134.865075pt;}
.h9{height:137.859375pt;}
.h6{height:188.000000pt;}
.h5{height:243.281250pt;}
.h2{height:251.390625pt;}
.h4{height:405.468750pt;}
.h1{height:4569.333333pt;}
.h8{height:4569.449333pt;}
.h0{height:4569.453333pt;}
.w1{width:3254.000000pt;}
.w0{width:3254.173333pt;}
.x0{left:0.000000pt;}
.x7{left:82.657067pt;}
.x6{left:87.590533pt;}
.x9{left:89.208133pt;}
.x1{left:92.292933pt;}
.x1e{left:99.118133pt;}
.x8{left:106.657067pt;}
.xb{left:128.734933pt;}
.xa{left:290.022133pt;}
.x21{left:485.669333pt;}
.x1f{left:614.097067pt;}
.x14{left:813.794800pt;}
.x5{left:877.091467pt;}
.x20{left:916.788400pt;}
.x4{left:983.689733pt;}
.xd{left:1009.238800pt;}
.x27{left:1080.300000pt;}
.x17{left:1100.628533pt;}
.x22{left:1116.805333pt;}
.x18{left:1119.875333pt;}
.xc{left:1121.283733pt;}
.x23{left:1153.151733pt;}
.x2f{left:1283.060400pt;}
.x2b{left:1285.618933pt;}
.x2a{left:1287.867067pt;}
.x30{left:1290.687333pt;}
.x28{left:1298.257600pt;}
.x2e{left:1300.912000pt;}
.x2d{left:1303.900267pt;}
.x29{left:1317.271333pt;}
.x2c{left:1332.425600pt;}
.x31{left:1496.407333pt;}
.x33{left:1498.603067pt;}
.x32{left:1521.015200pt;}
.x24{left:1527.055067pt;}
.x10{left:1573.322800pt;}
.x25{left:1623.858400pt;}
.xe{left:1808.042000pt;}
.x1c{left:1851.690133pt;}
.x1a{left:1860.118267pt;}
.x19{left:1867.611200pt;}
.x1d{left:1886.996133pt;}
.x1b{left:1911.295467pt;}
.xf{left:2053.742667pt;}
.x26{left:2140.682933pt;}
.x2{left:2250.389600pt;}
.x3{left:2274.389600pt;}
.x16{left:2361.651733pt;}
.x13{left:2364.884933pt;}
.x11{left:2571.780400pt;}
.x12{left:2718.224800pt;}
.x15{left:2777.594667pt;}
}




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