
    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_7205a01359e71bf646bc4f05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a677f8f70c06d788f0dbcc83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_abd6302a30add65f55b48d8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_58fbfb84c53c7f1147c02121.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_dc50bfd2baedfebfd1693869.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_64c0b07b0c8cab833557bbaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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;}
.m2{transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.v1{vertical-align:1.800000px;}
.v2{vertical-align:45.150000px;}
.lsa{letter-spacing:-1.668000px;}
.ls5{letter-spacing:-1.512000px;}
.ls9{letter-spacing:-1.158000px;}
.ls8{letter-spacing:-0.504000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.213300px;}
.ls7{letter-spacing:31.755600px;}
.ls6{letter-spacing:31.824300px;}
.ls0{letter-spacing:32.433300px;}
.ls3{letter-spacing:42.060600px;}
.ls2{letter-spacing:42.129300px;}
.lsb{letter-spacing:240.279300px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,85,151),0 0.015em rgb(47,85,151),0.015em 0 rgb(47,85,151),0 -0.015em  rgb(47,85,151);}
.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(47,85,151);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.883800px;}
.ws6{word-spacing:-47.371800px;}
.ws8{word-spacing:-37.696800px;}
.ws7{word-spacing:-37.662900px;}
.wsb{word-spacing:-32.611800px;}
.ws5{word-spacing:-32.577900px;}
.wsa{word-spacing:-31.453800px;}
.ws9{word-spacing:-16.305900px;}
.wsd{word-spacing:-14.637900px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:630.290100px;}
.ws1{word-spacing:808.310100px;}
.ws4{word-spacing:1285.070100px;}
.ws3{word-spacing:1762.190100px;}
._f{margin-left:-15.002305px;}
._10{margin-left:-13.665300px;}
._5{margin-left:-11.626742px;}
._7{margin-left:-10.529581px;}
._6{margin-left:-8.509156px;}
._9{margin-left:-7.261252px;}
._a{margin-left:-6.235982px;}
._8{margin-left:-5.128328px;}
._1{margin-left:-3.557003px;}
._2{margin-left:-1.616819px;}
._4{width:1.064227px;}
._0{width:2.586911px;}
._3{width:4.203730px;}
._d{width:18.113551px;}
._13{width:512.860051px;}
._14{width:526.840981px;}
._b{width:563.560981px;}
._12{width:752.506838px;}
._11{width:881.601285px;}
._e{width:1034.955309px;}
._c{width:1511.460505px;}
.fc6{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc2{color:rgb(181,199,231);}
.fc1{color:rgb(47,85,151);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs7{font-size:106.910218px;}
.fs5{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.fs3{font-size:144.300000px;}
.fsa{font-size:166.650000px;}
.fsb{font-size:166.800000px;}
.fs8{font-size:216.300000px;}
.fs1{font-size:238.800000px;}
.fs2{font-size:238.950000px;}
.fs0{font-size:323.363870px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.769609px;}
.y34{bottom:14.812500px;}
.yf{bottom:24.937500px;}
.y2e{bottom:25.387500px;}
.ya{bottom:25.837500px;}
.y1f{bottom:25.875000px;}
.yc{bottom:98.977702px;}
.y3d{bottom:137.175000px;}
.y32{bottom:161.775000px;}
.y29{bottom:177.525000px;}
.y10{bottom:182.475000px;}
.y3c{bottom:183.375000px;}
.y9{bottom:187.245000px;}
.y44{bottom:193.500000px;}
.y28{bottom:202.125000px;}
.y31{bottom:207.975000px;}
.y11{bottom:212.550000px;}
.y8{bottom:216.525000px;}
.y1{bottom:219.443031px;}
.y3b{bottom:228.405000px;}
.y27{bottom:247.170000px;}
.y30{bottom:267.675000px;}
.y3a{bottom:289.230000px;}
.y2{bottom:299.370975px;}
.y7{bottom:301.905000px;}
.y26{bottom:308.025000px;}
.y43{bottom:310.650000px;}
.y2f{bottom:313.875000px;}
.y6{bottom:336.870000px;}
.y2d{bottom:337.320000px;}
.y39{bottom:348.975000px;}
.y42{bottom:364.725000px;}
.y25{bottom:367.725000px;}
.y2c{bottom:383.475000px;}
.y38{bottom:395.130000px;}
.y17{bottom:408.570000px;}
.y24{bottom:413.880000px;}
.y41{bottom:418.800000px;}
.y2b{bottom:428.550000px;}
.y5{bottom:445.875000px;}
.y16{bottom:448.005000px;}
.y37{bottom:454.875000px;}
.y40{bottom:472.875000px;}
.y23{bottom:473.625000px;}
.y15{bottom:500.970000px;}
.y1a{bottom:507.495000px;}
.y4{bottom:511.200000px;}
.y36{bottom:515.700000px;}
.y22{bottom:519.780000px;}
.y3f{bottom:526.950000px;}
.y2a{bottom:534.450000px;}
.y1e{bottom:536.700000px;}
.y14{bottom:555.045000px;}
.y19{bottom:561.570000px;}
.y3{bottom:575.400000px;}
.y1d{bottom:576.120000px;}
.y35{bottom:576.525000px;}
.y21{bottom:579.495000px;}
.y3e{bottom:581.025000px;}
.y13{bottom:594.450000px;}
.y18{bottom:601.005000px;}
.y20{bottom:625.695000px;}
.y1c{bottom:630.195000px;}
.y33{bottom:654.030000px;}
.ye{bottom:654.450000px;}
.y12{bottom:683.820000px;}
.yd{bottom:713.025000px;}
.y1b{bottom:717.780000px;}
.hd{height:52.628906px;}
.he{height:52.738550px;}
.hf{height:71.613281px;}
.h8{height:71.762476px;}
.h10{height:73.413281px;}
.hc{height:75.363281px;}
.ha{height:106.335993px;}
.h7{height:107.569116px;}
.h13{height:110.737573px;}
.h15{height:115.863281px;}
.h14{height:116.912476px;}
.h9{height:136.410341px;}
.h6{height:143.375757px;}
.h5{height:143.524951px;}
.h16{height:147.598901px;}
.h11{height:165.754907px;}
.h12{height:165.904102px;}
.hb{height:205.949707px;}
.h3{height:227.373047px;}
.h4{height:227.515869px;}
.h2{height:321.627052px;}
.h1{height:412.590890px;}
.h0{height:810.000000px;}
.w3{width:151.034525px;}
.w1{width:463.188844px;}
.w2{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:67.038794px;}
.x3{left:109.874979px;}
.x8{left:113.924979px;}
.x7{left:115.312479px;}
.x9{left:136.912479px;}
.x10{left:183.824979px;}
.x2{left:205.592900px;}
.xe{left:212.954979px;}
.xb{left:259.844979px;}
.xf{left:396.449979px;}
.xc{left:575.324979px;}
.x1{left:947.456587px;}
.xd{left:1222.244979px;}
.xa{left:1231.424979px;}
.x5{left:1253.684143px;}
.x4{left:1420.949979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.v2{vertical-align:40.133333pt;}
.lsa{letter-spacing:-1.482667pt;}
.ls5{letter-spacing:-1.344000pt;}
.ls9{letter-spacing:-1.029333pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.189600pt;}
.ls7{letter-spacing:28.227200pt;}
.ls6{letter-spacing:28.288267pt;}
.ls0{letter-spacing:28.829600pt;}
.ls3{letter-spacing:37.387200pt;}
.ls2{letter-spacing:37.448267pt;}
.lsb{letter-spacing:213.581600pt;}
.ws2{word-spacing:-43.452267pt;}
.ws6{word-spacing:-42.108267pt;}
.ws8{word-spacing:-33.508267pt;}
.ws7{word-spacing:-33.478133pt;}
.wsb{word-spacing:-28.988267pt;}
.ws5{word-spacing:-28.958133pt;}
.wsa{word-spacing:-27.958933pt;}
.ws9{word-spacing:-14.494133pt;}
.wsd{word-spacing:-13.011467pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:560.257867pt;}
.ws1{word-spacing:718.497867pt;}
.ws4{word-spacing:1142.284533pt;}
.ws3{word-spacing:1566.391200pt;}
._f{margin-left:-13.335382pt;}
._10{margin-left:-12.146933pt;}
._5{margin-left:-10.334882pt;}
._7{margin-left:-9.359627pt;}
._6{margin-left:-7.563694pt;}
._9{margin-left:-6.454446pt;}
._a{margin-left:-5.543095pt;}
._8{margin-left:-4.558514pt;}
._1{margin-left:-3.161780pt;}
._2{margin-left:-1.437173pt;}
._4{width:0.945980pt;}
._0{width:2.299476pt;}
._3{width:3.736649pt;}
._d{width:16.100934pt;}
._13{width:455.875600pt;}
._14{width:468.303094pt;}
._b{width:500.943094pt;}
._12{width:668.894967pt;}
._11{width:783.645586pt;}
._e{width:919.960274pt;}
._c{width:1343.520449pt;}
.fs9{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs7{font-size:95.031305pt;}
.fs5{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.fs3{font-size:128.266667pt;}
.fsa{font-size:148.133333pt;}
.fsb{font-size:148.266667pt;}
.fs8{font-size:192.266667pt;}
.fs1{font-size:212.266667pt;}
.fs2{font-size:212.400000pt;}
.fs0{font-size:287.434551pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.350763pt;}
.y34{bottom:13.166667pt;}
.yf{bottom:22.166667pt;}
.y2e{bottom:22.566667pt;}
.ya{bottom:22.966667pt;}
.y1f{bottom:23.000000pt;}
.yc{bottom:87.980179pt;}
.y3d{bottom:121.933333pt;}
.y32{bottom:143.800000pt;}
.y29{bottom:157.800000pt;}
.y10{bottom:162.200000pt;}
.y3c{bottom:163.000000pt;}
.y9{bottom:166.440000pt;}
.y44{bottom:172.000000pt;}
.y28{bottom:179.666667pt;}
.y31{bottom:184.866667pt;}
.y11{bottom:188.933333pt;}
.y8{bottom:192.466667pt;}
.y1{bottom:195.060472pt;}
.y3b{bottom:203.026667pt;}
.y27{bottom:219.706667pt;}
.y30{bottom:237.933333pt;}
.y3a{bottom:257.093333pt;}
.y2{bottom:266.107534pt;}
.y7{bottom:268.360000pt;}
.y26{bottom:273.800000pt;}
.y43{bottom:276.133333pt;}
.y2f{bottom:279.000000pt;}
.y6{bottom:299.440000pt;}
.y2d{bottom:299.840000pt;}
.y39{bottom:310.200000pt;}
.y42{bottom:324.200000pt;}
.y25{bottom:326.866667pt;}
.y2c{bottom:340.866667pt;}
.y38{bottom:351.226667pt;}
.y17{bottom:363.173333pt;}
.y24{bottom:367.893333pt;}
.y41{bottom:372.266667pt;}
.y2b{bottom:380.933333pt;}
.y5{bottom:396.333333pt;}
.y16{bottom:398.226667pt;}
.y37{bottom:404.333333pt;}
.y40{bottom:420.333333pt;}
.y23{bottom:421.000000pt;}
.y15{bottom:445.306667pt;}
.y1a{bottom:451.106667pt;}
.y4{bottom:454.400000pt;}
.y36{bottom:458.400000pt;}
.y22{bottom:462.026667pt;}
.y3f{bottom:468.400000pt;}
.y2a{bottom:475.066667pt;}
.y1e{bottom:477.066667pt;}
.y14{bottom:493.373333pt;}
.y19{bottom:499.173333pt;}
.y3{bottom:511.466667pt;}
.y1d{bottom:512.106667pt;}
.y35{bottom:512.466667pt;}
.y21{bottom:515.106667pt;}
.y3e{bottom:516.466667pt;}
.y13{bottom:528.400000pt;}
.y18{bottom:534.226667pt;}
.y20{bottom:556.173333pt;}
.y1c{bottom:560.173333pt;}
.y33{bottom:581.360000pt;}
.ye{bottom:581.733333pt;}
.y12{bottom:607.840000pt;}
.yd{bottom:633.800000pt;}
.y1b{bottom:638.026667pt;}
.hd{height:46.781250pt;}
.he{height:46.878711pt;}
.hf{height:63.656250pt;}
.h8{height:63.788867pt;}
.h10{height:65.256250pt;}
.hc{height:66.989583pt;}
.ha{height:94.520883pt;}
.h7{height:95.616992pt;}
.h13{height:98.433398pt;}
.h15{height:102.989583pt;}
.h14{height:103.922201pt;}
.h9{height:121.253636pt;}
.h6{height:127.445117pt;}
.h5{height:127.577734pt;}
.h16{height:131.199023pt;}
.h11{height:147.337695pt;}
.h12{height:147.470313pt;}
.hb{height:183.066406pt;}
.h3{height:202.109375pt;}
.h4{height:202.236328pt;}
.h2{height:285.890713pt;}
.h1{height:366.747458pt;}
.h0{height:720.000000pt;}
.w3{width:134.252911pt;}
.w1{width:411.723417pt;}
.w2{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:59.590039pt;}
.x3{left:97.666648pt;}
.x8{left:101.266648pt;}
.x7{left:102.499981pt;}
.x9{left:121.699981pt;}
.x10{left:163.399981pt;}
.x2{left:182.749244pt;}
.xe{left:189.293314pt;}
.xb{left:230.973314pt;}
.xf{left:352.399981pt;}
.xc{left:511.399981pt;}
.x1{left:842.183632pt;}
.xd{left:1086.439981pt;}
.xa{left:1094.599981pt;}
.x5{left:1114.385905pt;}
.x4{left:1263.066648pt;}
}




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