
    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_a9f3d5eccfea6585b8ee3868.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873047;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_a9f3d5eccfea6585b8ee3868.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873047;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_7760d37d29ba23c6e5b35fa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_51f9455b477c1d9ab815259e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_5185f56bb0b5841d3f867ab3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_e85a1819b8f771a70a8f77f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933500;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_9f87fc481c66f5306ddcc072.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_9f87fc481c66f5306ddcc072.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_a62c185c10509700dda311df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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:ffa;src:url('chunks/assets/font_56fee06ca34d2e1212fc5237.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923500;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;}
.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:-104.374510px;}
.ws7{word-spacing:-100.079996px;}
.ws5{word-spacing:-87.749996px;}
.ws9{word-spacing:-74.241184px;}
.ws6{word-spacing:-42.912596px;}
.ws4{word-spacing:-34.739999px;}
.ws8{word-spacing:-29.267999px;}
.ws1{word-spacing:-20.843999px;}
.ws2{word-spacing:-13.895999px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-3455.758164px;}
._e{margin-left:-3085.211292px;}
._1{margin-left:-2618.758185px;}
._d{margin-left:-2511.136118px;}
._2{margin-left:-2384.578021px;}
._c{margin-left:-2243.443260px;}
._18{margin-left:-1784.755271px;}
._7{margin-left:-1557.659106px;}
._13{margin-left:-1500.851018px;}
._15{margin-left:-1441.045844px;}
._b{margin-left:-1168.836161px;}
._6{margin-left:-1046.727231px;}
._16{margin-left:-661.398899px;}
._8{margin-left:-350.565811px;}
._11{margin-left:-18.900094px;}
._12{margin-left:-16.201412px;}
._14{margin-left:-12.425071px;}
._4{margin-left:-11.338314px;}
._f{margin-left:-8.683593px;}
._0{margin-left:-6.130387px;}
._10{margin-left:-4.641892px;}
._5{margin-left:-3.239575px;}
._3{margin-left:-1.943625px;}
._9{width:2.724600px;}
._17{width:1949.134959px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(68,68,255);}
.fc3{color:rgb(139,116,61);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:71.999997px;}
.fs1{font-size:107.999996px;}
.fs2{font-size:116.999995px;}
.fs3{font-size:179.999993px;}
.fs0{font-size:278.999988px;}
.fs5{font-size:678.599985px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.125034px;}
.y6{bottom:19.124999px;}
.yb{bottom:80.999997px;}
.y1b{bottom:86.624996px;}
.y2f{bottom:107.999995px;}
.y1d{bottom:112.499995px;}
.y1a{bottom:151.874994px;}
.ya{bottom:156.374993px;}
.y18{bottom:159.749993px;}
.y28{bottom:168.749993px;}
.y16{bottom:176.624993px;}
.y19{bottom:183.374992px;}
.y9{bottom:202.499992px;}
.y15{bottom:203.624992px;}
.y11{bottom:206.999991px;}
.y27{bottom:213.749991px;}
.y5{bottom:219.374991px;}
.y37{bottom:230.624990px;}
.y8{bottom:235.124990px;}
.y4{bottom:251.999990px;}
.y26{bottom:258.749989px;}
.y14{bottom:271.124989px;}
.y3b{bottom:280.124988px;}
.y10{bottom:296.999988px;}
.y2d{bottom:298.124988px;}
.y25{bottom:303.749987px;}
.y36{bottom:311.624987px;}
.y3a{bottom:316.124987px;}
.yf{bottom:341.999986px;}
.y2c{bottom:343.124986px;}
.y24{bottom:348.749985px;}
.y34{bottom:371.249985px;}
.y35{bottom:372.374984px;}
.ye{bottom:386.999984px;}
.y2b{bottom:388.124984px;}
.y39{bottom:399.374983px;}
.y13{bottom:403.874983px;}
.y1f{bottom:422.999982px;}
.yd{bottom:431.999982px;}
.y2a{bottom:433.124982px;}
.y33{bottom:453.374981px;}
.y38{bottom:465.749981px;}
.y3{bottom:476.999980px;}
.y23{bottom:497.249979px;}
.y29{bottom:512.999979px;}
.yc{bottom:537.749978px;}
.y22{bottom:542.249977px;}
.y2{bottom:560.249977px;}
.y21{bottom:587.249976px;}
.y31{bottom:591.749975px;}
.y32{bottom:592.874975px;}
.y12{bottom:602.999975px;}
.y20{bottom:632.249974px;}
.y17{bottom:638.999973px;}
.y7{bottom:667.124972px;}
.y30{bottom:679.499972px;}
.y2e{bottom:696.374971px;}
.y1e{bottom:706.499971px;}
.y1c{bottom:712.124970px;}
.h6{height:55.835998px;}
.hb{height:79.541997px;}
.hc{height:80.243997px;}
.h8{height:81.161997px;}
.h4{height:81.694333px;}
.h3{height:83.753997px;}
.ha{height:132.569994px;}
.h7{height:135.269994px;}
.h5{height:139.589994px;}
.h2{height:207.342765px;}
.h9{height:504.311122px;}
.h1{height:817.874966px;}
.h0{height:819.000000px;}
.w2{width:1122.749953px;}
.w1{width:1123.500000px;}
.w0{width:1123.559970px;}
.x0{left:0.000000px;}
.x19{left:48.884764px;}
.xf{left:66.374997px;}
.x12{left:129.392573px;}
.x1e{left:143.718744px;}
.x1b{left:168.380852px;}
.x29{left:173.583977px;}
.x28{left:174.708977px;}
.x1d{left:175.710930px;}
.x4{left:187.910148px;}
.x2c{left:205.910148px;}
.xc{left:208.265616px;}
.x18{left:223.822262px;}
.x2b{left:230.818355px;}
.x1{left:234.017574px;}
.xa{left:244.371084px;}
.x17{left:247.482417px;}
.xb{left:250.207021px;}
.x2{left:263.302729px;}
.x27{left:268.839833px;}
.x16{left:276.521478px;}
.x15{left:280.933582px;}
.x30{left:300.234362px;}
.x6{left:313.980456px;}
.x21{left:318.779289px;}
.x2f{left:338.273423px;}
.x1a{left:340.769517px;}
.x7{left:347.976548px;}
.x10{left:366.662100px;}
.x22{left:373.763662px;}
.x23{left:381.234359px;}
.x26{left:386.244130px;}
.x25{left:387.369130px;}
.x2d{left:396.562483px;}
.xd{left:401.378890px;}
.x20{left:402.714827px;}
.xe{left:430.523420px;}
.x3{left:447.398419px;}
.x8{left:452.689440px;}
.x14{left:474.697251px;}
.x24{left:478.687480px;}
.x11{left:517.552718px;}
.x2a{left:584.947247px;}
.x13{left:644.537088px;}
.x9{left:715.675751px;}
.x2e{left:1044.421831px;}
.x1c{left:1075.587851px;}
.x1f{left:1077.749955px;}
.x5{left:1091.847611px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-92.777342pt;}
.ws7{word-spacing:-88.959996pt;}
.ws5{word-spacing:-77.999997pt;}
.ws9{word-spacing:-65.992164pt;}
.ws6{word-spacing:-38.144530pt;}
.ws4{word-spacing:-30.879999pt;}
.ws8{word-spacing:-26.015999pt;}
.ws1{word-spacing:-18.527999pt;}
.ws2{word-spacing:-12.351999pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-3071.785035pt;}
._e{margin-left:-2742.410037pt;}
._1{margin-left:-2327.785053pt;}
._d{margin-left:-2232.120994pt;}
._2{margin-left:-2119.624908pt;}
._c{margin-left:-1994.171787pt;}
._18{margin-left:-1586.449130pt;}
._7{margin-left:-1384.585872pt;}
._13{margin-left:-1334.089794pt;}
._15{margin-left:-1280.929639pt;}
._b{margin-left:-1038.965477pt;}
._6{margin-left:-930.424205pt;}
._16{margin-left:-587.910132pt;}
._8{margin-left:-311.614054pt;}
._11{margin-left:-16.800083pt;}
._12{margin-left:-14.401255pt;}
._14{margin-left:-11.044508pt;}
._4{margin-left:-10.078501pt;}
._f{margin-left:-7.718749pt;}
._0{margin-left:-5.449233pt;}
._10{margin-left:-4.126126pt;}
._5{margin-left:-2.879622pt;}
._3{margin-left:-1.727667pt;}
._9{width:2.421867pt;}
._17{width:1732.564408pt;}
.fs4{font-size:63.999997pt;}
.fs1{font-size:95.999996pt;}
.fs2{font-size:103.999996pt;}
.fs3{font-size:159.999993pt;}
.fs0{font-size:247.999990pt;}
.fs5{font-size:603.199987pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.000030pt;}
.y6{bottom:16.999999pt;}
.yb{bottom:71.999997pt;}
.y1b{bottom:76.999997pt;}
.y2f{bottom:95.999996pt;}
.y1d{bottom:99.999996pt;}
.y1a{bottom:134.999994pt;}
.ya{bottom:138.999994pt;}
.y18{bottom:141.999994pt;}
.y28{bottom:149.999994pt;}
.y16{bottom:156.999993pt;}
.y19{bottom:162.999993pt;}
.y9{bottom:179.999993pt;}
.y15{bottom:180.999992pt;}
.y11{bottom:183.999992pt;}
.y27{bottom:189.999992pt;}
.y5{bottom:194.999992pt;}
.y37{bottom:204.999991pt;}
.y8{bottom:208.999991pt;}
.y4{bottom:223.999991pt;}
.y26{bottom:229.999990pt;}
.y14{bottom:240.999990pt;}
.y3b{bottom:248.999990pt;}
.y10{bottom:263.999989pt;}
.y2d{bottom:264.999989pt;}
.y25{bottom:269.999989pt;}
.y36{bottom:276.999988pt;}
.y3a{bottom:280.999988pt;}
.yf{bottom:303.999987pt;}
.y2c{bottom:304.999987pt;}
.y24{bottom:309.999987pt;}
.y34{bottom:329.999986pt;}
.y35{bottom:330.999986pt;}
.ye{bottom:343.999986pt;}
.y2b{bottom:344.999986pt;}
.y39{bottom:354.999985pt;}
.y13{bottom:358.999985pt;}
.y1f{bottom:375.999984pt;}
.yd{bottom:383.999984pt;}
.y2a{bottom:384.999984pt;}
.y33{bottom:402.999983pt;}
.y38{bottom:413.999983pt;}
.y3{bottom:423.999982pt;}
.y23{bottom:441.999982pt;}
.y29{bottom:455.999981pt;}
.yc{bottom:477.999980pt;}
.y22{bottom:481.999980pt;}
.y2{bottom:497.999979pt;}
.y21{bottom:521.999978pt;}
.y31{bottom:525.999978pt;}
.y32{bottom:526.999978pt;}
.y12{bottom:535.999978pt;}
.y20{bottom:561.999977pt;}
.y17{bottom:567.999976pt;}
.y7{bottom:592.999975pt;}
.y30{bottom:603.999975pt;}
.y2e{bottom:618.999974pt;}
.y1e{bottom:627.999974pt;}
.y1c{bottom:632.999974pt;}
.h6{height:49.631998pt;}
.hb{height:70.703997pt;}
.hc{height:71.327997pt;}
.h8{height:72.143997pt;}
.h4{height:72.617184pt;}
.h3{height:74.447997pt;}
.ha{height:117.839995pt;}
.h7{height:120.239995pt;}
.h5{height:124.079995pt;}
.h2{height:184.304680pt;}
.h9{height:448.276553pt;}
.h1{height:726.999970pt;}
.h0{height:728.000000pt;}
.w2{width:997.999958pt;}
.w1{width:998.666667pt;}
.w0{width:998.719973pt;}
.x0{left:0.000000pt;}
.x19{left:43.453123pt;}
.xf{left:58.999998pt;}
.x12{left:115.015620pt;}
.x1e{left:127.749995pt;}
.x1b{left:149.671869pt;}
.x29{left:154.296869pt;}
.x28{left:155.296869pt;}
.x1d{left:156.187493pt;}
.x4{left:167.031243pt;}
.x2c{left:183.031242pt;}
.xc{left:185.124992pt;}
.x18{left:198.953122pt;}
.x2b{left:205.171871pt;}
.x1{left:208.015621pt;}
.xa{left:217.218741pt;}
.x17{left:219.984371pt;}
.xb{left:222.406241pt;}
.x2{left:234.046870pt;}
.x27{left:238.968740pt;}
.x16{left:245.796870pt;}
.x15{left:249.718740pt;}
.x30{left:266.874989pt;}
.x6{left:279.093738pt;}
.x21{left:283.359368pt;}
.x2f{left:300.687487pt;}
.x1a{left:302.906237pt;}
.x7{left:309.312487pt;}
.x10{left:325.921866pt;}
.x22{left:332.234366pt;}
.x23{left:338.874986pt;}
.x26{left:343.328116pt;}
.x25{left:344.328116pt;}
.x2d{left:352.499985pt;}
.xd{left:356.781235pt;}
.x20{left:357.968735pt;}
.xe{left:382.687484pt;}
.x3{left:397.687483pt;}
.x8{left:402.390613pt;}
.x14{left:421.953112pt;}
.x24{left:425.499982pt;}
.x11{left:460.046861pt;}
.x2a{left:519.953108pt;}
.x13{left:572.921856pt;}
.x9{left:636.156223pt;}
.x2e{left:928.374961pt;}
.x1c{left:956.078090pt;}
.x1f{left:957.999960pt;}
.x5{left:970.531210pt;}
}




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