
    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_6990be6bace9f3b5754aac40.woff')format("woff");}.ff1{font-family:ff1;line-height:1.023000;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_bcfc7d18fd25f172b9a95e8e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_758804b10d504367b67a749f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_cfff719f6f0df0bcd3b9a1df.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_5dc636c7f15592350cf4ea4c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_ce71b14cd0fbcd91eaa7a0fe.woff')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_a0ae63a05e3fdf0d63748f50.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_b31c1f7baf77593c2c0bd0d0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_6eaa50cac8bc855b4c49213c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.995310px;}
.ls4{letter-spacing:108.000408px;}
.ls3{letter-spacing:108.000426px;}
.ls2{letter-spacing:108.010551px;}
.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;}
}
.ws6{word-spacing:-33.960000px;}
.ws4{word-spacing:-33.240000px;}
.ws1{word-spacing:-31.440000px;}
.ws2{word-spacing:-30.564001px;}
.ws3{word-spacing:-24.408001px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:107.959038px;}
._8{margin-left:-32.136340px;}
._19{margin-left:-10.800000px;}
._18{margin-left:-9.018000px;}
._2{margin-left:-7.470000px;}
._4{margin-left:-6.156000px;}
._a{margin-left:-4.868050px;}
._1{margin-left:-3.330000px;}
._0{margin-left:-1.998000px;}
._3{width:1.134000px;}
._b{width:2.442005px;}
._1a{width:6.126985px;}
._15{width:7.128000px;}
._14{width:8.627445px;}
._5{width:22.320000px;}
._6{width:23.940000px;}
._11{width:25.974001px;}
._13{width:29.214001px;}
._10{width:35.313751px;}
._12{width:49.014001px;}
._9{width:53.087389px;}
._d{width:58.884000px;}
._c{width:60.396000px;}
._e{width:92.042503px;}
._f{width:93.231499px;}
._17{width:108.127857px;}
._7{width:179.280001px;}
._16{width:311.742010px;}
.fc6{color:rgb(205,155,198);}
.fc5{color:rgb(170,10,45);}
.fc4{color:rgb(0,16,44);}
.fc2{color:rgb(166,29,54);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(105,35,100);}
.fs7{font-size:84.000000px;}
.fs2{font-size:108.000003px;}
.fs5{font-size:114.000007px;}
.fs1{font-size:120.000001px;}
.fs6{font-size:126.000004px;}
.fs3{font-size:198.000006px;}
.fs4{font-size:210.000013px;}
.fs0{font-size:222.000001px;}
.y0{bottom:0.000000px;}
.y45{bottom:125.055001px;}
.y39{bottom:132.255012px;}
.y44{bottom:157.454979px;}
.y38{bottom:164.655013px;}
.y1f{bottom:168.814532px;}
.y2c{bottom:175.357888px;}
.y54{bottom:180.974320px;}
.yf{bottom:188.710720px;}
.y43{bottom:189.854980px;}
.y37{bottom:197.055003px;}
.y2b{bottom:209.557893px;}
.y3{bottom:211.297908px;}
.y1e{bottom:220.654556px;}
.y42{bottom:222.254970px;}
.y36{bottom:229.454981px;}
.ye{bottom:230.110699px;}
.y53{bottom:234.974322px;}
.y2a{bottom:243.757894px;}
.y2{bottom:244.417912px;}
.y1d{bottom:246.574568px;}
.y41{bottom:254.654971px;}
.y35{bottom:261.854982px;}
.yd{bottom:271.510689px;}
.y1c{bottom:272.494580px;}
.y29{bottom:277.957895px;}
.y40{bottom:287.054979px;}
.y52{bottom:288.974323px;}
.y34{bottom:294.254972px;}
.y1b{bottom:298.414592px;}
.yc{bottom:312.910668px;}
.y3f{bottom:319.454984px;}
.y56{bottom:323.212903px;}
.y1a{bottom:324.334604px;}
.y33{bottom:326.654973px;}
.y51{bottom:342.974325px;}
.y19{bottom:350.254617px;}
.yb{bottom:354.310658px;}
.y32{bottom:359.054981px;}
.y31{bottom:391.454987px;}
.y28{bottom:393.613445px;}
.ya{bottom:395.710648px;}
.y50{bottom:396.974327px;}
.y18{bottom:405.550618px;}
.y4b{bottom:421.523616px;}
.y27{bottom:426.013443px;}
.y9{bottom:437.110638px;}
.y17{bottom:448.774616px;}
.y4f{bottom:450.974329px;}
.y3e{bottom:455.874563px;}
.y4{bottom:457.418950px;}
.y4a{bottom:471.923629px;}
.y16{bottom:474.694628px;}
.y8{bottom:478.510617px;}
.y15{bottom:500.614618px;}
.y4e{bottom:504.974330px;}
.y22{bottom:511.834479px;}
.y7{bottom:519.910618px;}
.y49{bottom:522.323626px;}
.y30{bottom:526.053293px;}
.y14{bottom:526.534618px;}
.y26{bottom:528.932117px;}
.y2e{bottom:530.993258px;}
.y24{bottom:533.873612px;}
.y3b{bottom:540.154738px;}
.y21{bottom:546.034480px;}
.y13{bottom:552.454619px;}
.y3d{bottom:555.070042px;}
.y4d{bottom:558.974321px;}
.y25{bottom:563.132123px;}
.y2f{bottom:563.853293px;}
.y3a{bottom:564.904738px;}
.y23{bottom:568.073618px;}
.y2d{bottom:568.793258px;}
.y48{bottom:572.723623px;}
.y12{bottom:578.374625px;}
.y20{bottom:580.234481px;}
.y6{bottom:591.910621px;}
.y3c{bottom:592.870039px;}
.y4c{bottom:612.974313px;}
.y1{bottom:621.115600px;}
.y47{bottom:626.136247px;}
.y5{bottom:627.910624px;}
.y11{bottom:633.670622px;}
.y46{bottom:682.836249px;}
.y10{bottom:698.490586px;}
.y55{bottom:710.641177px;}
.he{height:70.728000px;}
.hb{height:74.830081px;}
.h8{height:75.093752px;}
.hd{height:77.625002px;}
.hc{height:78.626956px;}
.h9{height:78.987309px;}
.h7{height:79.265630px;}
.hf{height:81.328126px;}
.h10{height:87.363282px;}
.ha{height:87.609378px;}
.h3{height:90.936003px;}
.h2{height:92.760001px;}
.h5{height:101.040001px;}
.h4{height:153.054005px;}
.h6{height:162.330010px;}
.h1{height:171.606001px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:96.510828px;}
.x1{left:100.762799px;}
.x3{left:109.125003px;}
.x31{left:111.115246px;}
.x17{left:122.625004px;}
.x4{left:125.626178px;}
.x6{left:126.672367px;}
.xf{left:127.990040px;}
.x22{left:133.316899px;}
.x8{left:147.676586px;}
.x7{left:159.168894px;}
.x5{left:163.125005px;}
.x23{left:176.625006px;}
.x11{left:181.461341px;}
.x10{left:182.783083px;}
.x9{left:186.814317px;}
.x29{left:225.217672px;}
.x1f{left:237.923378px;}
.x28{left:244.889794px;}
.x13{left:247.774823px;}
.x1e{left:257.595499px;}
.x2a{left:271.221831px;}
.x14{left:303.361243px;}
.x18{left:403.928158px;}
.x2b{left:530.149569px;}
.x2c{left:584.149575px;}
.xb{left:592.214585px;}
.xe{left:597.796651px;}
.xa{left:613.564258px;}
.x2d{left:627.457678px;}
.x19{left:657.342516px;}
.x1a{left:668.034411px;}
.x1c{left:676.275359px;}
.x1d{left:679.696287px;}
.x12{left:681.118109px;}
.x1b{left:722.034417px;}
.x24{left:765.342519px;}
.x25{left:776.034419px;}
.x30{left:896.167379px;}
.x26{left:904.689299px;}
.x27{left:922.423433px;}
.x2e{left:926.982261px;}
.x20{left:935.102662px;}
.x16{left:941.293459px;}
.x21{left:952.836796px;}
.x15{left:960.965581px;}
.x2f{left:970.290369px;}
.xc{left:1024.605324px;}
.xd{left:1040.647185px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.995831pt;}
.ls4{letter-spacing:96.000363pt;}
.ls3{letter-spacing:96.000379pt;}
.ls2{letter-spacing:96.009379pt;}
.ws6{word-spacing:-30.186667pt;}
.ws4{word-spacing:-29.546667pt;}
.ws1{word-spacing:-27.946667pt;}
.ws2{word-spacing:-27.168001pt;}
.ws3{word-spacing:-21.696001pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:95.963589pt;}
._8{margin-left:-28.565635pt;}
._19{margin-left:-9.600000pt;}
._18{margin-left:-8.016000pt;}
._2{margin-left:-6.640000pt;}
._4{margin-left:-5.472000pt;}
._a{margin-left:-4.327156pt;}
._1{margin-left:-2.960000pt;}
._0{margin-left:-1.776000pt;}
._3{width:1.008000pt;}
._b{width:2.170671pt;}
._1a{width:5.446209pt;}
._15{width:6.336000pt;}
._14{width:7.668840pt;}
._5{width:19.840000pt;}
._6{width:21.280000pt;}
._11{width:23.088001pt;}
._13{width:25.968001pt;}
._10{width:31.390001pt;}
._12{width:43.568001pt;}
._9{width:47.188790pt;}
._d{width:52.341334pt;}
._c{width:53.685334pt;}
._e{width:81.815558pt;}
._f{width:82.872443pt;}
._17{width:96.113650pt;}
._7{width:159.360001pt;}
._16{width:277.104009pt;}
.fs7{font-size:74.666666pt;}
.fs2{font-size:96.000003pt;}
.fs5{font-size:101.333339pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:112.000004pt;}
.fs3{font-size:176.000006pt;}
.fs4{font-size:186.666678pt;}
.fs0{font-size:197.333334pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:111.160001pt;}
.y39{bottom:117.560011pt;}
.y44{bottom:139.959981pt;}
.y38{bottom:146.360012pt;}
.y1f{bottom:150.057362pt;}
.y2c{bottom:155.873678pt;}
.y54{bottom:160.866062pt;}
.yf{bottom:167.742862pt;}
.y43{bottom:168.759982pt;}
.y37{bottom:175.160003pt;}
.y2b{bottom:186.273683pt;}
.y3{bottom:187.820363pt;}
.y1e{bottom:196.137383pt;}
.y42{bottom:197.559973pt;}
.y36{bottom:203.959983pt;}
.ye{bottom:204.542844pt;}
.y53{bottom:208.866064pt;}
.y2a{bottom:216.673684pt;}
.y2{bottom:217.260366pt;}
.y1d{bottom:219.177394pt;}
.y41{bottom:226.359974pt;}
.y35{bottom:232.759984pt;}
.yd{bottom:241.342835pt;}
.y1c{bottom:242.217405pt;}
.y29{bottom:247.073685pt;}
.y40{bottom:255.159981pt;}
.y52{bottom:256.866065pt;}
.y34{bottom:261.559975pt;}
.y1b{bottom:265.257415pt;}
.yc{bottom:278.142816pt;}
.y3f{bottom:283.959986pt;}
.y56{bottom:287.300358pt;}
.y1a{bottom:288.297426pt;}
.y33{bottom:290.359976pt;}
.y51{bottom:304.866067pt;}
.y19{bottom:311.337437pt;}
.yb{bottom:314.942807pt;}
.y32{bottom:319.159983pt;}
.y31{bottom:347.959988pt;}
.y28{bottom:349.878618pt;}
.ya{bottom:351.742798pt;}
.y50{bottom:352.866068pt;}
.y18{bottom:360.489438pt;}
.y4b{bottom:374.687659pt;}
.y27{bottom:378.678616pt;}
.y9{bottom:388.542789pt;}
.y17{bottom:398.910770pt;}
.y4f{bottom:400.866070pt;}
.y3e{bottom:405.221834pt;}
.y4{bottom:406.594622pt;}
.y4a{bottom:419.487670pt;}
.y16{bottom:421.950780pt;}
.y8{bottom:425.342771pt;}
.y15{bottom:444.990771pt;}
.y4e{bottom:448.866071pt;}
.y22{bottom:454.963982pt;}
.y7{bottom:462.142772pt;}
.y49{bottom:464.287668pt;}
.y30{bottom:467.602927pt;}
.y14{bottom:468.030772pt;}
.y26{bottom:470.161882pt;}
.y2e{bottom:471.994007pt;}
.y24{bottom:474.554322pt;}
.y3b{bottom:480.137545pt;}
.y21{bottom:485.363982pt;}
.y13{bottom:491.070773pt;}
.y3d{bottom:493.395593pt;}
.y4d{bottom:496.866063pt;}
.y25{bottom:500.561887pt;}
.y2f{bottom:501.202927pt;}
.y3a{bottom:502.137545pt;}
.y23{bottom:504.954327pt;}
.y2d{bottom:505.594007pt;}
.y48{bottom:509.087665pt;}
.y12{bottom:514.110777pt;}
.y20{bottom:515.763983pt;}
.y6{bottom:526.142774pt;}
.y3c{bottom:526.995590pt;}
.y4c{bottom:544.866056pt;}
.y1{bottom:552.102756pt;}
.y47{bottom:556.565553pt;}
.y5{bottom:558.142777pt;}
.y11{bottom:563.262775pt;}
.y46{bottom:606.965554pt;}
.y10{bottom:620.880521pt;}
.y55{bottom:631.681046pt;}
.he{height:62.869333pt;}
.hb{height:66.515627pt;}
.h8{height:66.750002pt;}
.hd{height:69.000002pt;}
.hc{height:69.890627pt;}
.h9{height:70.210942pt;}
.h7{height:70.458337pt;}
.hf{height:72.291667pt;}
.h10{height:77.656251pt;}
.ha{height:77.875002pt;}
.h3{height:80.832003pt;}
.h2{height:82.453334pt;}
.h5{height:89.813334pt;}
.h4{height:136.048004pt;}
.h6{height:144.293342pt;}
.h1{height:152.538667pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:85.787403pt;}
.x1{left:89.566933pt;}
.x3{left:97.000003pt;}
.x31{left:98.769107pt;}
.x17{left:109.000003pt;}
.x4{left:111.667714pt;}
.x6{left:112.597660pt;}
.xf{left:113.768925pt;}
.x22{left:118.503910pt;}
.x8{left:131.268076pt;}
.x7{left:141.483462pt;}
.x5{left:145.000005pt;}
.x23{left:157.000005pt;}
.x11{left:161.298970pt;}
.x10{left:162.473851pt;}
.x9{left:166.057170pt;}
.x29{left:200.193486pt;}
.x1f{left:211.487447pt;}
.x28{left:217.679817pt;}
.x13{left:220.244287pt;}
.x1e{left:228.973777pt;}
.x2a{left:241.086072pt;}
.x14{left:269.654439pt;}
.x18{left:359.047251pt;}
.x2b{left:471.244061pt;}
.x2c{left:519.244067pt;}
.xb{left:526.412965pt;}
.xe{left:531.374801pt;}
.xa{left:545.390451pt;}
.x2d{left:557.740158pt;}
.x19{left:584.304459pt;}
.x1a{left:593.808365pt;}
.x1c{left:601.133652pt;}
.x1d{left:604.174477pt;}
.x12{left:605.438319pt;}
.x1b{left:641.808371pt;}
.x24{left:680.304462pt;}
.x25{left:689.808372pt;}
.x30{left:796.593225pt;}
.x26{left:804.168266pt;}
.x27{left:819.931940pt;}
.x2e{left:823.984232pt;}
.x20{left:831.202367pt;}
.x16{left:836.705297pt;}
.x21{left:846.966041pt;}
.x15{left:854.191627pt;}
.x2f{left:862.480328pt;}
.xc{left:910.760288pt;}
.xd{left:925.019720pt;}
}




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