
    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_a82d98f12fd07bc2b5b58505.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_275a06717e053e8a9cbefe77.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_b47441d049860b5849a2cdeb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725000;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_d3225d88e63fe418393b80a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_4cce45d05d1d9280a2e79530.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_ab8ec9f7f16fb5c63e3dcb87.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_46c0afaf01bb4e1458b14940.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926000;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_16225eb76f7ffad1345973a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_0d296528aabfdf3f50d847b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.931000;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_e1f88a7921082e604dcfc9d1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_04464566a9adfa61584a1552.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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:ffc;src:url('chunks/assets/font_86200abe3ca750669c9eb879.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929199;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:ffd;src:url('chunks/assets/font_999ea5c86aa3743ff3e2be78.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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:ffe;src:url('chunks/assets/font_ff0feef213bce0d9bd41c1f3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ac7959d7ae96c0ca319732c6.woff2')format("woff");}.fff{font-family:fff;line-height:0.740234;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:ff10;src:url('chunks/assets/font_c8e60c63aec302ff3daee291.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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:ff11;src:url('chunks/assets/font_62003316d22a63370efb6a64.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959473;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:ff12;src:url('chunks/assets/font_39991c92358d2c5382641a6f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.947754;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:ff13;src:url('chunks/assets/font_e1a71c79807b234fba7c0725.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941895;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;}
}
.ws2{word-spacing:-53.999998px;}
.ws1{word-spacing:-20.003905px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:198.035126px;}
._5{margin-left:-7.980468px;}
._4{margin-left:-5.796039px;}
._1{margin-left:-3.937494px;}
._7{margin-left:-2.675724px;}
._0{margin-left:-1.296931px;}
._6{width:4.499967px;}
._2{width:184.555117px;}
._3{width:1933.384419px;}
.fc5{color:rgb(7,39,113);}
.fc4{color:transparent;}
.fc2{color:rgb(51,134,176);}
.fc1{color:rgb(9,33,112);}
.fc6{color:rgb(32,32,32);}
.fc3{color:rgb(68,68,68);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:44.999998px;}
.fs2{font-size:62.999997px;}
.fs1{font-size:71.999997px;}
.fs4{font-size:80.999997px;}
.fs3{font-size:89.999996px;}
.y0{bottom:0.000000px;}
.y12{bottom:29.636711px;}
.y1{bottom:42.363336px;}
.y37{bottom:53.261710px;}
.y11{bottom:56.636710px;}
.y10{bottom:83.636709px;}
.y24{bottom:106.136708px;}
.yf{bottom:110.636707px;}
.ye{bottom:137.636706px;}
.y23{bottom:138.761706px;}
.yd{bottom:164.636705px;}
.y22{bottom:171.386705px;}
.yc{bottom:191.636704px;}
.yb{bottom:236.636702px;}
.y21{bottom:241.136702px;}
.y36{bottom:254.636701px;}
.y35{bottom:281.636700px;}
.ya{bottom:290.636700px;}
.y34{bottom:308.636699px;}
.y9{bottom:317.636699px;}
.y33{bottom:335.636698px;}
.y8{bottom:344.636698px;}
.y32{bottom:362.636697px;}
.y7{bottom:371.636697px;}
.y31{bottom:389.636696px;}
.y6{bottom:398.636695px;}
.y26{bottom:431.261694px;}
.y30{bottom:456.011693px;}
.y20{bottom:495.386691px;}
.y1f{bottom:522.386690px;}
.y1e{bottom:549.386689px;}
.y1d{bottom:576.386688px;}
.y1c{bottom:603.386687px;}
.y38{bottom:605.636687px;}
.y5{bottom:610.136687px;}
.y1b{bottom:630.386686px;}
.y4{bottom:638.261685px;}
.y2f{bottom:651.761685px;}
.y1a{bottom:657.386685px;}
.y3{bottom:666.386684px;}
.y2e{bottom:678.761684px;}
.y19{bottom:702.386683px;}
.y2d{bottom:705.761683px;}
.y18{bottom:729.386682px;}
.y17{bottom:756.386680px;}
.y2c{bottom:759.761680px;}
.y16{bottom:783.386679px;}
.y2b{bottom:786.761679px;}
.y2a{bottom:813.761678px;}
.y29{bottom:867.761676px;}
.y28{bottom:894.761675px;}
.y27{bottom:921.761674px;}
.y3e{bottom:1008.386670px;}
.y25{bottom:1011.761670px;}
.y3d{bottom:1021.886669px;}
.y2{bottom:1027.511669px;}
.y3c{bottom:1036.511669px;}
.y3b{bottom:1050.011668px;}
.y15{bottom:1057.886668px;}
.y3a{bottom:1064.636668px;}
.y13{bottom:1075.886667px;}
.y14{bottom:1084.886667px;}
.y39{bottom:1092.761666px;}
.h2{height:32.387694px;}
.hd{height:32.695311px;}
.he{height:32.739256px;}
.hb{height:33.156737px;}
.hc{height:33.376463px;}
.h5{height:46.052998px;}
.h3{height:51.983998px;}
.ha{height:52.417967px;}
.h9{height:52.453123px;}
.h7{height:52.631998px;}
.h4{height:53.050779px;}
.h8{height:58.970212px;}
.h6{height:65.789997px;}
.h1{height:1104.011666px;}
.h0{height:1188.000000px;}
.w1{width:834.011677px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:22.499999px;}
.x1{left:41.624998px;}
.x3{left:112.499995px;}
.x7{left:146.249994px;}
.x6{left:153.703119px;}
.x4{left:157.499993px;}
.xa{left:168.205071px;}
.xd{left:240.152334px;}
.xe{left:263.109364px;}
.xc{left:271.652332px;}
.xb{left:289.634759px;}
.x8{left:300.533196px;}
.x9{left:304.839831px;}
.x2{left:339.943351px;}
.xf{left:415.810535px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-47.999998pt;}
.ws1{word-spacing:-17.781249pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:176.031223pt;}
._5{margin-left:-7.093749pt;}
._4{margin-left:-5.152035pt;}
._1{margin-left:-3.499995pt;}
._7{margin-left:-2.378422pt;}
._0{margin-left:-1.152828pt;}
._6{width:3.999971pt;}
._2{width:164.048993pt;}
._3{width:1718.563928pt;}
.fs0{font-size:39.999998pt;}
.fs2{font-size:55.999998pt;}
.fs1{font-size:63.999997pt;}
.fs4{font-size:71.999997pt;}
.fs3{font-size:79.999997pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:26.343743pt;}
.y1{bottom:37.656298pt;}
.y37{bottom:47.343742pt;}
.y11{bottom:50.343742pt;}
.y10{bottom:74.343741pt;}
.y24{bottom:94.343740pt;}
.yf{bottom:98.343740pt;}
.ye{bottom:122.343739pt;}
.y23{bottom:123.343739pt;}
.yd{bottom:146.343738pt;}
.y22{bottom:152.343738pt;}
.yc{bottom:170.343737pt;}
.yb{bottom:210.343735pt;}
.y21{bottom:214.343735pt;}
.y36{bottom:226.343735pt;}
.y35{bottom:250.343734pt;}
.ya{bottom:258.343733pt;}
.y34{bottom:274.343733pt;}
.y9{bottom:282.343732pt;}
.y33{bottom:298.343732pt;}
.y8{bottom:306.343731pt;}
.y32{bottom:322.343731pt;}
.y7{bottom:330.343730pt;}
.y31{bottom:346.343730pt;}
.y6{bottom:354.343729pt;}
.y26{bottom:383.343728pt;}
.y30{bottom:405.343727pt;}
.y20{bottom:440.343726pt;}
.y1f{bottom:464.343725pt;}
.y1e{bottom:488.343724pt;}
.y1d{bottom:512.343723pt;}
.y1c{bottom:536.343722pt;}
.y38{bottom:538.343722pt;}
.y5{bottom:542.343721pt;}
.y1b{bottom:560.343721pt;}
.y4{bottom:567.343720pt;}
.y2f{bottom:579.343720pt;}
.y1a{bottom:584.343720pt;}
.y3{bottom:592.343719pt;}
.y2e{bottom:603.343719pt;}
.y19{bottom:624.343718pt;}
.y2d{bottom:627.343718pt;}
.y18{bottom:648.343717pt;}
.y17{bottom:672.343716pt;}
.y2c{bottom:675.343716pt;}
.y16{bottom:696.343715pt;}
.y2b{bottom:699.343715pt;}
.y2a{bottom:723.343714pt;}
.y29{bottom:771.343712pt;}
.y28{bottom:795.343711pt;}
.y27{bottom:819.343710pt;}
.y3e{bottom:896.343707pt;}
.y25{bottom:899.343707pt;}
.y3d{bottom:908.343706pt;}
.y2{bottom:913.343706pt;}
.y3c{bottom:921.343706pt;}
.y3b{bottom:933.343705pt;}
.y15{bottom:940.343705pt;}
.y3a{bottom:946.343705pt;}
.y13{bottom:956.343704pt;}
.y14{bottom:964.343704pt;}
.y39{bottom:971.343704pt;}
.h2{height:28.789061pt;}
.hd{height:29.062499pt;}
.he{height:29.101561pt;}
.hb{height:29.472655pt;}
.hc{height:29.667968pt;}
.h5{height:40.935998pt;}
.h3{height:46.207998pt;}
.ha{height:46.593748pt;}
.h9{height:46.624998pt;}
.h7{height:46.783998pt;}
.h4{height:47.156248pt;}
.h8{height:52.417967pt;}
.h6{height:58.479998pt;}
.h1{height:981.343703pt;}
.h0{height:1056.000000pt;}
.w1{width:741.343713pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:19.999999pt;}
.x1{left:36.999998pt;}
.x3{left:99.999996pt;}
.x7{left:129.999995pt;}
.x6{left:136.624994pt;}
.x4{left:139.999994pt;}
.xa{left:149.515619pt;}
.xd{left:213.468741pt;}
.xe{left:233.874990pt;}
.xc{left:241.468740pt;}
.xb{left:257.453119pt;}
.x8{left:267.140619pt;}
.x9{left:270.968739pt;}
.x2{left:302.171867pt;}
.xf{left:369.609365pt;}
}




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