
    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_dca04e7a53c9ad4f4c6bfd12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_5ea268b46e7ceaedc0df6fa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026367;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_001ca94678f3c31a6cff2980.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_54c7cf7f7a8f6c6e35424731.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_a7504ff4d4ecc3f094379b87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_94ac64bc5bc27f97c10e0ad4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,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;}
}
.ws5{word-spacing:-17.496000px;}
.ws4{word-spacing:-16.434000px;}
.ws0{word-spacing:-16.038000px;}
.ws7{word-spacing:-2.820000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:5.220000px;}
.ws8{word-spacing:7.380000px;}
.wsa{word-spacing:8.100000px;}
.ws6{word-spacing:12.300000px;}
.wsb{word-spacing:20.400000px;}
.ws1{word-spacing:68.508000px;}
.ws3{word-spacing:69.366000px;}
._9{margin-left:-8.065200px;}
._6{margin-left:-6.724800px;}
._7{margin-left:-5.550600px;}
._8{margin-left:-3.928571px;}
._1{margin-left:-2.678029px;}
._0{margin-left:-1.217286px;}
._3{width:1.646286px;}
._2{width:2.684629px;}
._4{width:6.342060px;}
._5{width:84.942000px;}
.fc5{color:rgb(5,6,7);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(52,99,172);}
.fc4{color:transparent;}
.fc1{color:rgb(21,48,79);}
.fc0{color:rgb(238,116,68);}
.fs8{font-size:32.905200px;}
.fs7{font-size:51.837000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:121.728600px;}
.fs2{font-size:188.656800px;}
.y0{bottom:0.000000px;}
.y51{bottom:12.493680px;}
.y5a{bottom:20.645550px;}
.y4e{bottom:21.199200px;}
.y50{bottom:22.365240px;}
.y7{bottom:27.689100px;}
.y4f{bottom:32.236800px;}
.y25{bottom:38.596800px;}
.y6{bottom:48.693600px;}
.y24{bottom:58.396800px;}
.y5{bottom:69.698100px;}
.y23{bottom:78.196800px;}
.y44{bottom:84.266100px;}
.y4d{bottom:86.213400px;}
.y4{bottom:99.695100px;}
.y22{bottom:102.501300px;}
.y4c{bottom:104.213400px;}
.y43{bottom:113.058600px;}
.y3{bottom:120.699600px;}
.y4b{bottom:122.213400px;}
.y21{bottom:122.301300px;}
.y30{bottom:135.225000px;}
.y4a{bottom:140.213400px;}
.y42{bottom:141.851100px;}
.y20{bottom:142.101300px;}
.y2f{bottom:156.229500px;}
.y49{bottom:158.213400px;}
.y1f{bottom:166.405800px;}
.y41{bottom:170.643600px;}
.y48{bottom:176.213400px;}
.y2e{bottom:177.234000px;}
.y1e{bottom:186.205800px;}
.y47{bottom:194.213400px;}
.y40{bottom:199.436100px;}
.y1d{bottom:206.005800px;}
.y2d{bottom:207.231000px;}
.y3f{bottom:228.228600px;}
.y2c{bottom:228.235500px;}
.y46{bottom:229.045950px;}
.y1c{bottom:230.310300px;}
.y2b{bottom:249.240000px;}
.y1b{bottom:250.110300px;}
.y45{bottom:254.890200px;}
.y3e{bottom:257.021100px;}
.y1a{bottom:269.910300px;}
.y2a{bottom:270.244500px;}
.y3d{bottom:276.821100px;}
.y19{bottom:294.214800px;}
.y29{bottom:300.241500px;}
.y36{bottom:313.983450px;}
.y18{bottom:314.014800px;}
.y28{bottom:321.246000px;}
.y17{bottom:333.814800px;}
.y27{bottom:342.250500px;}
.y16{bottom:353.614800px;}
.y26{bottom:375.486300px;}
.y8{bottom:383.072700px;}
.y58{bottom:425.740050px;}
.y57{bottom:446.744550px;}
.y34{bottom:454.669050px;}
.y56{bottom:467.749050px;}
.y33{bottom:474.469050px;}
.y63{bottom:479.341950px;}
.y55{bottom:488.753550px;}
.y32{bottom:494.269050px;}
.y62{bottom:500.346450px;}
.y54{bottom:509.758050px;}
.y61{bottom:521.350950px;}
.y31{bottom:523.060500px;}
.y53{bottom:530.762550px;}
.y60{bottom:542.355450px;}
.y52{bottom:551.767050px;}
.y5f{bottom:572.352450px;}
.y65{bottom:592.456050px;}
.y5e{bottom:593.356950px;}
.y64{bottom:622.456050px;}
.y59{bottom:631.913100px;}
.y10{bottom:649.028100px;}
.yf{bottom:670.032600px;}
.y2{bottom:699.337500px;}
.ye{bottom:700.029600px;}
.yd{bottom:721.034100px;}
.yc{bottom:751.031100px;}
.yb{bottom:772.035600px;}
.ya{bottom:802.032600px;}
.y9{bottom:823.037100px;}
.y1{bottom:859.700700px;}
.y15{bottom:861.200700px;}
.y3c{bottom:870.606600px;}
.y3b{bottom:894.911100px;}
.y3a{bottom:934.511100px;}
.y14{bottom:950.705400px;}
.y35{bottom:951.832050px;}
.y39{bottom:954.311100px;}
.y38{bottom:978.615600px;}
.y37{bottom:998.415600px;}
.y13{bottom:1031.273400px;}
.y12{bottom:1071.533250px;}
.y11{bottom:1101.232950px;}
.y5d{bottom:1128.859950px;}
.y5c{bottom:1158.856950px;}
.y5b{bottom:1188.853950px;}
.hf{height:23.724649px;}
.he{height:37.374477px;}
.hd{height:45.615234px;}
.hb{height:47.812500px;}
.h5{height:50.176758px;}
.h4{height:52.593750px;}
.h8{height:53.280000px;}
.h9{height:54.738281px;}
.hc{height:57.375000px;}
.h7{height:62.160000px;}
.h10{height:79.920000px;}
.ha{height:88.800000px;}
.h2{height:90.079164px;}
.h3{height:134.815500px;}
.h6{height:139.606032px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:374.616900px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:30.344250px;}
.x1{left:44.704800px;}
.x8{left:47.137950px;}
.x18{left:48.610800px;}
.x13{left:58.760700px;}
.x11{left:71.469900px;}
.x9{left:74.131950px;}
.x12{left:78.125250px;}
.xc{left:96.175050px;}
.xe{left:137.953050px;}
.xb{left:164.020800px;}
.xf{left:193.267050px;}
.x15{left:206.510700px;}
.x6{left:242.693100px;}
.xd{left:259.970550px;}
.x4{left:269.315850px;}
.x14{left:387.710400px;}
.x10{left:482.318100px;}
.x17{left:486.101850px;}
.x7{left:489.400650px;}
.x2{left:493.340400px;}
.xa{left:513.438750px;}
.x3{left:520.334400px;}
.x16{left:595.146300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws4{word-spacing:-14.608000pt;}
.ws0{word-spacing:-14.256000pt;}
.ws7{word-spacing:-2.506667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:4.640000pt;}
.ws8{word-spacing:6.560000pt;}
.wsa{word-spacing:7.200000pt;}
.ws6{word-spacing:10.933333pt;}
.wsb{word-spacing:18.133333pt;}
.ws1{word-spacing:60.896000pt;}
.ws3{word-spacing:61.658667pt;}
._9{margin-left:-7.169067pt;}
._6{margin-left:-5.977600pt;}
._7{margin-left:-4.933867pt;}
._8{margin-left:-3.492063pt;}
._1{margin-left:-2.380470pt;}
._0{margin-left:-1.082032pt;}
._3{width:1.463365pt;}
._2{width:2.386337pt;}
._4{width:5.637387pt;}
._5{width:75.504000pt;}
.fs8{font-size:29.249067pt;}
.fs7{font-size:46.077333pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:108.203200pt;}
.fs2{font-size:167.694933pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:11.105493pt;}
.y5a{bottom:18.351600pt;}
.y4e{bottom:18.843733pt;}
.y50{bottom:19.880213pt;}
.y7{bottom:24.612533pt;}
.y4f{bottom:28.654933pt;}
.y25{bottom:34.308267pt;}
.y6{bottom:43.283200pt;}
.y24{bottom:51.908267pt;}
.y5{bottom:61.953867pt;}
.y23{bottom:69.508267pt;}
.y44{bottom:74.903200pt;}
.y4d{bottom:76.634133pt;}
.y4{bottom:88.617867pt;}
.y22{bottom:91.112267pt;}
.y4c{bottom:92.634133pt;}
.y43{bottom:100.496533pt;}
.y3{bottom:107.288533pt;}
.y4b{bottom:108.634133pt;}
.y21{bottom:108.712267pt;}
.y30{bottom:120.200000pt;}
.y4a{bottom:124.634133pt;}
.y42{bottom:126.089867pt;}
.y20{bottom:126.312267pt;}
.y2f{bottom:138.870667pt;}
.y49{bottom:140.634133pt;}
.y1f{bottom:147.916267pt;}
.y41{bottom:151.683200pt;}
.y48{bottom:156.634133pt;}
.y2e{bottom:157.541333pt;}
.y1e{bottom:165.516267pt;}
.y47{bottom:172.634133pt;}
.y40{bottom:177.276533pt;}
.y1d{bottom:183.116267pt;}
.y2d{bottom:184.205333pt;}
.y3f{bottom:202.869867pt;}
.y2c{bottom:202.876000pt;}
.y46{bottom:203.596400pt;}
.y1c{bottom:204.720267pt;}
.y2b{bottom:221.546667pt;}
.y1b{bottom:222.320267pt;}
.y45{bottom:226.569067pt;}
.y3e{bottom:228.463200pt;}
.y1a{bottom:239.920267pt;}
.y2a{bottom:240.217333pt;}
.y3d{bottom:246.063200pt;}
.y19{bottom:261.524267pt;}
.y29{bottom:266.881333pt;}
.y36{bottom:279.096400pt;}
.y18{bottom:279.124267pt;}
.y28{bottom:285.552000pt;}
.y17{bottom:296.724267pt;}
.y27{bottom:304.222667pt;}
.y16{bottom:314.324267pt;}
.y26{bottom:333.765600pt;}
.y8{bottom:340.509067pt;}
.y58{bottom:378.435600pt;}
.y57{bottom:397.106267pt;}
.y34{bottom:404.150267pt;}
.y56{bottom:415.776933pt;}
.y33{bottom:421.750267pt;}
.y63{bottom:426.081733pt;}
.y55{bottom:434.447600pt;}
.y32{bottom:439.350267pt;}
.y62{bottom:444.752400pt;}
.y54{bottom:453.118267pt;}
.y61{bottom:463.423067pt;}
.y31{bottom:464.942667pt;}
.y53{bottom:471.788933pt;}
.y60{bottom:482.093733pt;}
.y52{bottom:490.459600pt;}
.y5f{bottom:508.757733pt;}
.y65{bottom:526.627600pt;}
.y5e{bottom:527.428400pt;}
.y64{bottom:553.294267pt;}
.y59{bottom:561.700533pt;}
.y10{bottom:576.913867pt;}
.yf{bottom:595.584533pt;}
.y2{bottom:621.633333pt;}
.ye{bottom:622.248533pt;}
.yd{bottom:640.919200pt;}
.yc{bottom:667.583200pt;}
.yb{bottom:686.253867pt;}
.ya{bottom:712.917867pt;}
.y9{bottom:731.588533pt;}
.y1{bottom:764.178400pt;}
.y15{bottom:765.511733pt;}
.y3c{bottom:773.872533pt;}
.y3b{bottom:795.476533pt;}
.y3a{bottom:830.676533pt;}
.y14{bottom:845.071467pt;}
.y35{bottom:846.072933pt;}
.y39{bottom:848.276533pt;}
.y38{bottom:869.880533pt;}
.y37{bottom:887.480533pt;}
.y13{bottom:916.687467pt;}
.y12{bottom:952.474000pt;}
.y11{bottom:978.873733pt;}
.y5d{bottom:1003.431067pt;}
.y5c{bottom:1030.095067pt;}
.y5b{bottom:1056.759067pt;}
.hf{height:21.088577pt;}
.he{height:33.221757pt;}
.hd{height:40.546875pt;}
.hb{height:42.500000pt;}
.h5{height:44.601562pt;}
.h4{height:46.750000pt;}
.h8{height:47.360000pt;}
.h9{height:48.656250pt;}
.hc{height:51.000000pt;}
.h7{height:55.253333pt;}
.h10{height:71.040000pt;}
.ha{height:78.933333pt;}
.h2{height:80.070368pt;}
.h3{height:119.836000pt;}
.h6{height:124.094251pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:332.992800pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:26.972667pt;}
.x1{left:39.737600pt;}
.x8{left:41.900400pt;}
.x18{left:43.209600pt;}
.x13{left:52.231733pt;}
.x11{left:63.528800pt;}
.x9{left:65.895067pt;}
.x12{left:69.444667pt;}
.xc{left:85.488933pt;}
.xe{left:122.624933pt;}
.xb{left:145.796267pt;}
.xf{left:171.792933pt;}
.x15{left:183.565067pt;}
.x6{left:215.727200pt;}
.xd{left:231.084933pt;}
.x4{left:239.391867pt;}
.x14{left:344.631467pt;}
.x10{left:428.727200pt;}
.x17{left:432.090533pt;}
.x7{left:435.022800pt;}
.x2{left:438.524800pt;}
.xa{left:456.390000pt;}
.x3{left:462.519467pt;}
.x16{left:529.018933pt;}
}




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