
    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_6218c7f88b9e248302379fc3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_a29264be615027a04ff4564b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_1c34c6b19b3e63ee80cdd650.woff')format("woff");}.ff3{font-family:ff3;line-height:0.981000;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_30c73f2e57817c8fe171fdc2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_5d95214ddec0854db05454d1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_f8fa64a2474867852e0e2c50.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979000;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_f8b1d3da42a86bcdb9ade1af.woff')format("woff");}.ff7{font-family:ff7;line-height:0.790000;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_436832167786e50496de1ae4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.981000;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;}
.ls3{letter-spacing:-3.564000px;}
.ls4{letter-spacing:-3.432000px;}
.ls2{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.056000px;}
.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;}
}
.ws17{word-spacing:-42.240000px;}
.ws3{word-spacing:-13.248000px;}
.ws9{word-spacing:-9.768000px;}
.ws13{word-spacing:-4.554000px;}
.ws6{word-spacing:-2.904000px;}
.wsf{word-spacing:-1.056000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.132000px;}
.ws8{word-spacing:0.528000px;}
.ws7{word-spacing:4.158000px;}
.wsd{word-spacing:4.950000px;}
.wse{word-spacing:6.006000px;}
.ws5{word-spacing:6.402000px;}
.ws4{word-spacing:8.646000px;}
.ws14{word-spacing:10.626000px;}
.wsc{word-spacing:10.824000px;}
.ws1{word-spacing:11.484000px;}
.wsa{word-spacing:12.276000px;}
.ws10{word-spacing:12.738000px;}
.ws11{word-spacing:24.360000px;}
.ws15{word-spacing:26.664000px;}
.wsb{word-spacing:27.390000px;}
.ws0{word-spacing:28.710000px;}
.ws12{word-spacing:64.878000px;}
._1a{margin-left:-14.784000px;}
._11{margin-left:-13.236000px;}
._7{margin-left:-9.956400px;}
._3{margin-left:-8.393400px;}
._10{margin-left:-6.072000px;}
._4{margin-left:-4.142400px;}
._2{margin-left:-2.966400px;}
._0{margin-left:-1.584000px;}
._f{width:1.551000px;}
._16{width:3.507600px;}
._14{width:7.022400px;}
._1{width:9.952800px;}
._9{width:11.721600px;}
._a{width:12.909600px;}
._c{width:14.275800px;}
._8{width:17.787000px;}
._12{width:28.710000px;}
._6{width:29.891400px;}
._5{width:32.861400px;}
._e{width:37.204200px;}
._d{width:38.412000px;}
._18{width:40.086000px;}
._19{width:41.538000px;}
._b{width:43.401600px;}
._13{width:45.969000px;}
._15{width:47.407800px;}
._17{width:54.342000px;}
.fc5{color:rgb(5,6,6);}
.fc4{color:rgb(238,36,44);}
.fc3{color:rgb(48,88,159);}
.fc2{color:rgb(24,10,12);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:120.000000px;}
.fs3{font-size:132.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:22.056450px;}
.y65{bottom:25.245450px;}
.y69{bottom:97.045650px;}
.y52{bottom:98.272800px;}
.y68{bottom:115.045650px;}
.y51{bottom:116.272800px;}
.y67{bottom:133.045650px;}
.y50{bottom:134.272800px;}
.y20{bottom:146.887050px;}
.y66{bottom:151.045650px;}
.y4f{bottom:152.272800px;}
.y30{bottom:162.853800px;}
.y1f{bottom:166.387050px;}
.y2f{bottom:182.353800px;}
.y1e{bottom:185.887050px;}
.y2e{bottom:201.853800px;}
.y1d{bottom:205.387050px;}
.y2d{bottom:221.353800px;}
.y1c{bottom:224.887050px;}
.y2c{bottom:240.853800px;}
.y4d{bottom:253.158000px;}
.y1b{bottom:257.887050px;}
.y2b{bottom:260.353800px;}
.y4e{bottom:272.658000px;}
.y1a{bottom:277.387050px;}
.y2a{bottom:279.853800px;}
.y4c{bottom:283.158000px;}
.y19{bottom:296.887050px;}
.y4b{bottom:302.658000px;}
.y29{bottom:303.853800px;}
.y6f{bottom:314.503950px;}
.y18{bottom:316.387050px;}
.y4a{bottom:322.158000px;}
.y28{bottom:323.353800px;}
.y6e{bottom:335.503950px;}
.y17{bottom:335.887050px;}
.y27{bottom:342.853800px;}
.y16{bottom:355.387050px;}
.y26{bottom:362.353800px;}
.y49{bottom:364.654500px;}
.y6d{bottom:365.503950px;}
.y15{bottom:374.887050px;}
.y25{bottom:381.853800px;}
.y48{bottom:384.154500px;}
.y14{bottom:394.387050px;}
.y24{bottom:401.353800px;}
.y23{bottom:420.853800px;}
.y13{bottom:427.387050px;}
.y47{bottom:445.176000px;}
.y12{bottom:446.887050px;}
.y11{bottom:466.387050px;}
.y10{bottom:485.887050px;}
.yf{bottom:505.387050px;}
.y6c{bottom:513.984600px;}
.ye{bottom:524.887050px;}
.y6b{bottom:533.484600px;}
.yd{bottom:544.387050px;}
.y6a{bottom:552.984600px;}
.y45{bottom:559.368900px;}
.y4{bottom:563.887050px;}
.y44{bottom:578.868900px;}
.y3{bottom:583.387050px;}
.y43{bottom:598.368900px;}
.y2{bottom:602.887050px;}
.y46{bottom:617.868900px;}
.y1{bottom:622.387050px;}
.y54{bottom:623.010750px;}
.y42{bottom:628.368900px;}
.y41{bottom:647.868900px;}
.y40{bottom:667.368900px;}
.yc{bottom:704.709900px;}
.y3f{bottom:706.504200px;}
.yb{bottom:724.209900px;}
.ya{bottom:743.709900px;}
.y3e{bottom:745.504200px;}
.y3d{bottom:765.004200px;}
.y9{bottom:776.709900px;}
.y3c{bottom:784.504200px;}
.y61{bottom:789.775050px;}
.y8{bottom:796.209900px;}
.y3b{bottom:804.004200px;}
.y60{bottom:809.275050px;}
.y7{bottom:815.709900px;}
.y64{bottom:828.775050px;}
.y6{bottom:835.209900px;}
.y5f{bottom:839.275050px;}
.y5e{bottom:858.775050px;}
.y32{bottom:870.638100px;}
.y63{bottom:878.275050px;}
.y5d{bottom:888.775050px;}
.y5c{bottom:908.275050px;}
.y22{bottom:912.232500px;}
.y62{bottom:927.775050px;}
.y5b{bottom:938.275050px;}
.y5{bottom:955.962600px;}
.y5a{bottom:957.775050px;}
.y59{bottom:977.275050px;}
.y38{bottom:981.626550px;}
.y3a{bottom:992.126550px;}
.y37{bottom:1011.626550px;}
.y58{bottom:1011.827700px;}
.y36{bottom:1031.126550px;}
.y57{bottom:1031.327700px;}
.y39{bottom:1041.626550px;}
.y56{bottom:1050.827700px;}
.y35{bottom:1061.126550px;}
.y55{bottom:1070.327700px;}
.y34{bottom:1103.623050px;}
.y33{bottom:1123.123050px;}
.y53{bottom:1141.974750px;}
.y31{bottom:1184.144550px;}
.hb{height:45.600000px;}
.ha{height:45.840000px;}
.hc{height:48.132000px;}
.h2{height:50.160000px;}
.h3{height:50.424000px;}
.h9{height:51.150000px;}
.h6{height:51.414000px;}
.h5{height:92.880000px;}
.h7{height:102.300000px;}
.h8{height:102.828000px;}
.h4{height:111.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:81.046200px;}
.xc{left:89.123100px;}
.x5{left:90.139200px;}
.x7{left:91.744650px;}
.x2{left:94.518450px;}
.x8{left:117.630750px;}
.xe{left:200.883300px;}
.x9{left:454.977150px;}
.x1{left:460.036950px;}
.x4{left:479.282400px;}
.xa{left:481.977150px;}
.x3{left:554.587350px;}
.xd{left:559.714650px;}
.xb{left:577.468200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-3.168000pt;}
.ls4{letter-spacing:-3.050667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.938667pt;}
.ws17{word-spacing:-37.546667pt;}
.ws3{word-spacing:-11.776000pt;}
.ws9{word-spacing:-8.682667pt;}
.ws13{word-spacing:-4.048000pt;}
.ws6{word-spacing:-2.581333pt;}
.wsf{word-spacing:-0.938667pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.117333pt;}
.ws8{word-spacing:0.469333pt;}
.ws7{word-spacing:3.696000pt;}
.wsd{word-spacing:4.400000pt;}
.wse{word-spacing:5.338667pt;}
.ws5{word-spacing:5.690667pt;}
.ws4{word-spacing:7.685333pt;}
.ws14{word-spacing:9.445333pt;}
.wsc{word-spacing:9.621333pt;}
.ws1{word-spacing:10.208000pt;}
.wsa{word-spacing:10.912000pt;}
.ws10{word-spacing:11.322667pt;}
.ws11{word-spacing:21.653333pt;}
.ws15{word-spacing:23.701333pt;}
.wsb{word-spacing:24.346667pt;}
.ws0{word-spacing:25.520000pt;}
.ws12{word-spacing:57.669333pt;}
._1a{margin-left:-13.141333pt;}
._11{margin-left:-11.765333pt;}
._7{margin-left:-8.850133pt;}
._3{margin-left:-7.460800pt;}
._10{margin-left:-5.397333pt;}
._4{margin-left:-3.682133pt;}
._2{margin-left:-2.636800pt;}
._0{margin-left:-1.408000pt;}
._f{width:1.378667pt;}
._16{width:3.117867pt;}
._14{width:6.242133pt;}
._1{width:8.846933pt;}
._9{width:10.419200pt;}
._a{width:11.475200pt;}
._c{width:12.689600pt;}
._8{width:15.810667pt;}
._12{width:25.520000pt;}
._6{width:26.570133pt;}
._5{width:29.210133pt;}
._e{width:33.070400pt;}
._d{width:34.144000pt;}
._18{width:35.632000pt;}
._19{width:36.922667pt;}
._b{width:38.579200pt;}
._13{width:40.861333pt;}
._15{width:42.140267pt;}
._17{width:48.304000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:106.666667pt;}
.fs3{font-size:117.333333pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:19.605733pt;}
.y65{bottom:22.440400pt;}
.y69{bottom:86.262800pt;}
.y52{bottom:87.353600pt;}
.y68{bottom:102.262800pt;}
.y51{bottom:103.353600pt;}
.y67{bottom:118.262800pt;}
.y50{bottom:119.353600pt;}
.y20{bottom:130.566267pt;}
.y66{bottom:134.262800pt;}
.y4f{bottom:135.353600pt;}
.y30{bottom:144.758933pt;}
.y1f{bottom:147.899600pt;}
.y2f{bottom:162.092267pt;}
.y1e{bottom:165.232933pt;}
.y2e{bottom:179.425600pt;}
.y1d{bottom:182.566267pt;}
.y2d{bottom:196.758933pt;}
.y1c{bottom:199.899600pt;}
.y2c{bottom:214.092267pt;}
.y4d{bottom:225.029333pt;}
.y1b{bottom:229.232933pt;}
.y2b{bottom:231.425600pt;}
.y4e{bottom:242.362667pt;}
.y1a{bottom:246.566267pt;}
.y2a{bottom:248.758933pt;}
.y4c{bottom:251.696000pt;}
.y19{bottom:263.899600pt;}
.y4b{bottom:269.029333pt;}
.y29{bottom:270.092267pt;}
.y6f{bottom:279.559067pt;}
.y18{bottom:281.232933pt;}
.y4a{bottom:286.362667pt;}
.y28{bottom:287.425600pt;}
.y6e{bottom:298.225733pt;}
.y17{bottom:298.566267pt;}
.y27{bottom:304.758933pt;}
.y16{bottom:315.899600pt;}
.y26{bottom:322.092267pt;}
.y49{bottom:324.137333pt;}
.y6d{bottom:324.892400pt;}
.y15{bottom:333.232933pt;}
.y25{bottom:339.425600pt;}
.y48{bottom:341.470667pt;}
.y14{bottom:350.566267pt;}
.y24{bottom:356.758933pt;}
.y23{bottom:374.092267pt;}
.y13{bottom:379.899600pt;}
.y47{bottom:395.712000pt;}
.y12{bottom:397.232933pt;}
.y11{bottom:414.566267pt;}
.y10{bottom:431.899600pt;}
.yf{bottom:449.232933pt;}
.y6c{bottom:456.875200pt;}
.ye{bottom:466.566267pt;}
.y6b{bottom:474.208533pt;}
.yd{bottom:483.899600pt;}
.y6a{bottom:491.541867pt;}
.y45{bottom:497.216800pt;}
.y4{bottom:501.232933pt;}
.y44{bottom:514.550133pt;}
.y3{bottom:518.566267pt;}
.y43{bottom:531.883467pt;}
.y2{bottom:535.899600pt;}
.y46{bottom:549.216800pt;}
.y1{bottom:553.232933pt;}
.y54{bottom:553.787333pt;}
.y42{bottom:558.550133pt;}
.y41{bottom:575.883467pt;}
.y40{bottom:593.216800pt;}
.yc{bottom:626.408800pt;}
.y3f{bottom:628.003733pt;}
.yb{bottom:643.742133pt;}
.ya{bottom:661.075467pt;}
.y3e{bottom:662.670400pt;}
.y3d{bottom:680.003733pt;}
.y9{bottom:690.408800pt;}
.y3c{bottom:697.337067pt;}
.y61{bottom:702.022267pt;}
.y8{bottom:707.742133pt;}
.y3b{bottom:714.670400pt;}
.y60{bottom:719.355600pt;}
.y7{bottom:725.075467pt;}
.y64{bottom:736.688933pt;}
.y6{bottom:742.408800pt;}
.y5f{bottom:746.022267pt;}
.y5e{bottom:763.355600pt;}
.y32{bottom:773.900533pt;}
.y63{bottom:780.688933pt;}
.y5d{bottom:790.022267pt;}
.y5c{bottom:807.355600pt;}
.y22{bottom:810.873333pt;}
.y62{bottom:824.688933pt;}
.y5b{bottom:834.022267pt;}
.y5{bottom:849.744533pt;}
.y5a{bottom:851.355600pt;}
.y59{bottom:868.688933pt;}
.y38{bottom:872.556933pt;}
.y3a{bottom:881.890267pt;}
.y37{bottom:899.223600pt;}
.y58{bottom:899.402400pt;}
.y36{bottom:916.556933pt;}
.y57{bottom:916.735733pt;}
.y39{bottom:925.890267pt;}
.y56{bottom:934.069067pt;}
.y35{bottom:943.223600pt;}
.y55{bottom:951.402400pt;}
.y34{bottom:980.998267pt;}
.y33{bottom:998.331600pt;}
.y53{bottom:1015.088667pt;}
.y31{bottom:1052.572933pt;}
.hb{height:40.533333pt;}
.ha{height:40.746667pt;}
.hc{height:42.784000pt;}
.h2{height:44.586667pt;}
.h3{height:44.821333pt;}
.h9{height:45.466667pt;}
.h6{height:45.701333pt;}
.h5{height:82.560000pt;}
.h7{height:90.933333pt;}
.h8{height:91.402667pt;}
.h4{height:99.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:72.041067pt;}
.xc{left:79.220533pt;}
.x5{left:80.123733pt;}
.x7{left:81.550800pt;}
.x2{left:84.016400pt;}
.x8{left:104.560667pt;}
.xe{left:178.562933pt;}
.x9{left:404.424133pt;}
.x1{left:408.921733pt;}
.x4{left:426.028800pt;}
.xa{left:428.424133pt;}
.x3{left:492.966533pt;}
.xd{left:497.524133pt;}
.xb{left:513.305067pt;}
}




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