
    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_29eb249cedc77f0244f145c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_78a61a4afc35e07dfa9097c2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2114af0f682ebf8848c2305.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_aef47843a068c246816a0c46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9185c644ed160fff06389028.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_2b43f60cf3f583ae957399c1.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v5{vertical-align:-56.250002px;}
.v1{vertical-align:-40.499988px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:36.000001px;}
.v4{vertical-align:50.219997px;}
.v7{vertical-align:51.750002px;}
.v6{vertical-align:56.250002px;}
.v2{vertical-align:58.500002px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005424px;}
.ls2{letter-spacing:0.005514px;}
.ls3{letter-spacing:0.006409px;}
.ls1{letter-spacing:0.011795px;}
.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:-33.240000px;}
.ws1{word-spacing:-27.700001px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-12.520801px;}
._4{margin-left:-11.520000px;}
._5{margin-left:-8.424000px;}
._a{margin-left:-6.926401px;}
._1{margin-left:-4.884000px;}
._0{margin-left:-3.630000px;}
._3{margin-left:-2.592000px;}
._7{margin-left:-1.296000px;}
._6{width:1.470000px;}
._b{width:48.887662px;}
._9{width:133.413995px;}
._8{width:136.421748px;}
.fc9{color:rgb(107,162,211);}
.fc8{color:rgb(0,32,107);}
.fc7{color:rgb(4,51,255);}
.fc6{color:rgb(255,38,0);}
.fc1{color:rgb(0,32,106);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(165,165,165);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(236,51,68);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:60.000000px;}
.fsb{font-size:64.000007px;}
.fs0{font-size:66.000004px;}
.fs17{font-size:72.000002px;}
.fs6{font-size:72.000006px;}
.fs12{font-size:84.000000px;}
.fsd{font-size:89.280007px;}
.fs11{font-size:92.000006px;}
.fsa{font-size:96.000006px;}
.fsf{font-size:100.000004px;}
.fs8{font-size:104.000013px;}
.fs3{font-size:108.000003px;}
.fs13{font-size:114.000007px;}
.fs18{font-size:120.000001px;}
.fsc{font-size:133.920004px;}
.fs10{font-size:138.000001px;}
.fs2{font-size:144.000005px;}
.fse{font-size:149.999999px;}
.fs7{font-size:156.000011px;}
.fs16{font-size:167.999999px;}
.fs15{font-size:168.959998px;}
.fs14{font-size:187.200015px;}
.fs9{font-size:216.000007px;}
.fs5{font-size:264.000014px;}
.fs1{font-size:338.400033px;}
.y0{bottom:0.000000px;}
.yc{bottom:17.239829px;}
.y18{bottom:22.739532px;}
.y25{bottom:33.198272px;}
.y7{bottom:40.350013px;}
.y37{bottom:45.906955px;}
.y6{bottom:55.552184px;}
.y24{bottom:67.062432px;}
.y36{bottom:67.506951px;}
.y21{bottom:70.903830px;}
.y1d{bottom:87.734841px;}
.y35{bottom:89.106950px;}
.y14{bottom:97.187768px;}
.y22{bottom:100.810381px;}
.y34{bottom:110.706953px;}
.y33{bottom:132.306953px;}
.y16{bottom:133.723666px;}
.y20{bottom:135.249636px;}
.y1c{bottom:137.429528px;}
.y31{bottom:142.788241px;}
.y10{bottom:171.893989px;}
.y15{bottom:172.603663px;}
.y1b{bottom:177.929523px;}
.y30{bottom:188.148231px;}
.y39{bottom:213.565965px;}
.y2f{bottom:233.508233px;}
.y38{bottom:249.565968px;}
.y5{bottom:251.234488px;}
.y1e{bottom:262.223330px;}
.y1a{bottom:262.553813px;}
.y2e{bottom:278.868228px;}
.y4{bottom:344.316281px;}
.yb{bottom:362.879986px;}
.ya{bottom:427.679987px;}
.y2d{bottom:430.763507px;}
.y3{bottom:435.684284px;}
.y2c{bottom:476.382700px;}
.ye{bottom:476.760743px;}
.y27{bottom:487.493855px;}
.yd{bottom:509.160748px;}
.y17{bottom:514.858306px;}
.y2{bottom:527.052276px;}
.y26{bottom:527.993849px;}
.y2b{bottom:548.155780px;}
.y13{bottom:571.755502px;}
.y2a{bottom:598.699782px;}
.y12{bottom:630.075493px;}
.y29{bottom:649.243775px;}
.y32{bottom:653.973036px;}
.yf{bottom:661.776078px;}
.y11{bottom:688.395495px;}
.y19{bottom:706.602242px;}
.y8{bottom:719.811584px;}
.y1{bottom:721.244101px;}
.y1f{bottom:723.699650px;}
.y9{bottom:728.684497px;}
.y23{bottom:735.662270px;}
.y28{bottom:737.013159px;}
.h5{height:43.710938px;}
.h1{height:48.082034px;}
.h15{height:52.453127px;}
.h10{height:61.195312px;}
.h7{height:78.732424px;}
.h4{height:78.943362px;}
.hb{height:82.593756px;}
.h11{height:82.995122px;}
.h16{height:87.714844px;}
.h3{height:100.054691px;}
.ha{height:104.835941px;}
.hd{height:109.204101px;}
.hc{height:115.218284px;}
.hf{height:118.728521px;}
.h14{height:122.308593px;}
.h13{height:123.007498px;}
.he{height:129.052739px;}
.h8{height:134.316417px;}
.h12{height:136.286730px;}
.h9{height:157.253911px;}
.h6{height:192.199229px;}
.h2{height:246.364477px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:16.635983px;}
.xb{left:19.160645px;}
.xa{left:33.549462px;}
.x2e{left:39.380072px;}
.x18{left:40.925533px;}
.x2c{left:46.915472px;}
.x2f{left:65.522244px;}
.x32{left:68.887915px;}
.x2d{left:73.203307px;}
.x8{left:84.093399px;}
.x1c{left:94.502956px;}
.x3{left:109.023654px;}
.x11{left:151.272952px;}
.x2a{left:153.013032px;}
.x29{left:172.879713px;}
.x2{left:192.866372px;}
.xf{left:210.305042px;}
.x22{left:222.399457px;}
.x1a{left:280.573659px;}
.x13{left:286.147472px;}
.x1e{left:305.994272px;}
.x14{left:316.054045px;}
.x1b{left:326.414658px;}
.x20{left:347.863410px;}
.x15{left:362.147482px;}
.x5{left:371.721983px;}
.x24{left:389.494374px;}
.x21{left:443.444770px;}
.x30{left:489.098401px;}
.x17{left:508.148762px;}
.x7{left:512.212741px;}
.x1d{left:531.020256px;}
.x1f{left:535.515868px;}
.x12{left:548.942890px;}
.x27{left:557.986833px;}
.x4{left:595.454678px;}
.x2b{left:705.046714px;}
.x19{left:744.330736px;}
.x26{left:759.212361px;}
.x16{left:829.772880px;}
.x25{left:925.977168px;}
.x23{left:979.088274px;}
.x1{left:1051.846936px;}
.x10{left:1053.836843px;}
.xd{left:1101.943779px;}
.xe{left:1105.586844px;}
.x31{left:1106.912488px;}
.x6{left:1270.915353px;}
.x28{left:1319.821972px;}
.x9{left:1328.160976px;}
@media print{
.v5{vertical-align:-50.000002pt;}
.v1{vertical-align:-35.999989pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:32.000001pt;}
.v4{vertical-align:44.639997pt;}
.v7{vertical-align:46.000001pt;}
.v6{vertical-align:50.000002pt;}
.v2{vertical-align:52.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004822pt;}
.ls2{letter-spacing:0.004902pt;}
.ls3{letter-spacing:0.005697pt;}
.ls1{letter-spacing:0.010484pt;}
.ws2{word-spacing:-29.546667pt;}
.ws1{word-spacing:-24.622223pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-11.129601pt;}
._4{margin-left:-10.240000pt;}
._5{margin-left:-7.488000pt;}
._a{margin-left:-6.156800pt;}
._1{margin-left:-4.341334pt;}
._0{margin-left:-3.226667pt;}
._3{margin-left:-2.304000pt;}
._7{margin-left:-1.152000pt;}
._6{width:1.306667pt;}
._b{width:43.455700pt;}
._9{width:118.590218pt;}
._8{width:121.263776pt;}
.fs4{font-size:53.333334pt;}
.fsb{font-size:56.888895pt;}
.fs0{font-size:58.666670pt;}
.fs17{font-size:64.000002pt;}
.fs6{font-size:64.000005pt;}
.fs12{font-size:74.666666pt;}
.fsd{font-size:79.360007pt;}
.fs11{font-size:81.777783pt;}
.fsa{font-size:85.333339pt;}
.fsf{font-size:88.888893pt;}
.fs8{font-size:92.444456pt;}
.fs3{font-size:96.000003pt;}
.fs13{font-size:101.333339pt;}
.fs18{font-size:106.666667pt;}
.fsc{font-size:119.040004pt;}
.fs10{font-size:122.666668pt;}
.fs2{font-size:128.000004pt;}
.fse{font-size:133.333332pt;}
.fs7{font-size:138.666676pt;}
.fs16{font-size:149.333333pt;}
.fs15{font-size:150.186665pt;}
.fs14{font-size:166.400013pt;}
.fs9{font-size:192.000006pt;}
.fs5{font-size:234.666680pt;}
.fs1{font-size:300.800030pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:15.324292pt;}
.y18{bottom:20.212918pt;}
.y25{bottom:29.509575pt;}
.y7{bottom:35.866678pt;}
.y37{bottom:40.806182pt;}
.y6{bottom:49.379720pt;}
.y24{bottom:59.611051pt;}
.y36{bottom:60.006179pt;}
.y21{bottom:63.025627pt;}
.y1d{bottom:77.986525pt;}
.y35{bottom:79.206177pt;}
.y14{bottom:86.389127pt;}
.y22{bottom:89.609228pt;}
.y34{bottom:98.406180pt;}
.y33{bottom:117.606181pt;}
.y16{bottom:118.865481pt;}
.y20{bottom:120.221899pt;}
.y1c{bottom:122.159581pt;}
.y31{bottom:126.922881pt;}
.y10{bottom:152.794657pt;}
.y15{bottom:153.425478pt;}
.y1b{bottom:158.159576pt;}
.y30{bottom:167.242872pt;}
.y39{bottom:189.836413pt;}
.y2f{bottom:207.562874pt;}
.y38{bottom:221.836416pt;}
.y5{bottom:223.319545pt;}
.y1e{bottom:233.087404pt;}
.y1a{bottom:233.381167pt;}
.y2e{bottom:247.882869pt;}
.y4{bottom:306.058917pt;}
.yb{bottom:322.559987pt;}
.ya{bottom:380.159988pt;}
.y2d{bottom:382.900895pt;}
.y3{bottom:387.274919pt;}
.y2c{bottom:423.451289pt;}
.ye{bottom:423.787328pt;}
.y27{bottom:433.327871pt;}
.yd{bottom:452.587331pt;}
.y17{bottom:457.651828pt;}
.y2{bottom:468.490912pt;}
.y26{bottom:469.327866pt;}
.y2b{bottom:487.249583pt;}
.y13{bottom:508.227113pt;}
.y2a{bottom:532.177584pt;}
.y12{bottom:560.067105pt;}
.y29{bottom:577.105577pt;}
.y32{bottom:581.309366pt;}
.yf{bottom:588.245403pt;}
.y11{bottom:611.907107pt;}
.y19{bottom:628.090882pt;}
.y8{bottom:639.832519pt;}
.y1{bottom:641.105867pt;}
.y1f{bottom:643.288578pt;}
.y9{bottom:647.719553pt;}
.y23{bottom:653.922018pt;}
.y28{bottom:655.122808pt;}
.h5{height:38.854167pt;}
.h1{height:42.739586pt;}
.h15{height:46.625001pt;}
.h10{height:54.395833pt;}
.h7{height:69.984377pt;}
.h4{height:70.171877pt;}
.hb{height:73.416672pt;}
.h11{height:73.773442pt;}
.h16{height:77.968751pt;}
.h3{height:88.937503pt;}
.ha{height:93.187503pt;}
.hd{height:97.070312pt;}
.hc{height:102.416252pt;}
.hf{height:105.536463pt;}
.h14{height:108.718750pt;}
.h13{height:109.339999pt;}
.he{height:114.713546pt;}
.h8{height:119.392371pt;}
.h12{height:121.143760pt;}
.h9{height:139.781254pt;}
.h6{height:170.843759pt;}
.h2{height:218.990647pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:14.787540pt;}
.xb{left:17.031685pt;}
.xa{left:29.821744pt;}
.x2e{left:35.004508pt;}
.x18{left:36.378251pt;}
.x2c{left:41.702641pt;}
.x2f{left:58.241995pt;}
.x32{left:61.233702pt;}
.x2d{left:65.069606pt;}
.x8{left:74.749688pt;}
.x1c{left:84.002628pt;}
.x3{left:96.909915pt;}
.x11{left:134.464846pt;}
.x2a{left:136.011584pt;}
.x29{left:153.670856pt;}
.x2{left:171.436775pt;}
.xf{left:186.937815pt;}
.x22{left:197.688406pt;}
.x1a{left:249.398808pt;}
.x13{left:254.353308pt;}
.x1e{left:271.994909pt;}
.x14{left:280.936929pt;}
.x1b{left:290.146362pt;}
.x20{left:309.211920pt;}
.x15{left:321.908873pt;}
.x5{left:330.419541pt;}
.x24{left:346.217221pt;}
.x21{left:394.173129pt;}
.x30{left:434.754134pt;}
.x17{left:451.687788pt;}
.x7{left:455.300215pt;}
.x1d{left:472.018005pt;}
.x1f{left:476.014105pt;}
.x12{left:487.949236pt;}
.x27{left:495.988296pt;}
.x4{left:529.293047pt;}
.x2b{left:626.708190pt;}
.x19{left:661.627321pt;}
.x26{left:674.855432pt;}
.x16{left:737.575894pt;}
.x25{left:823.090816pt;}
.x23{left:870.300688pt;}
.x1{left:934.975054pt;}
.x10{left:936.743861pt;}
.xd{left:979.505581pt;}
.xe{left:982.743861pt;}
.x31{left:983.922211pt;}
.x6{left:1129.702536pt;}
.x28{left:1173.175087pt;}
.x9{left:1180.587534pt;}
}




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