
    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_b7bf32b894ddda87b7165feb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_ca527119653976e7d199a2ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_98dcfdbe3b5e4ddb03365807.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_32cbabdd793d08adb6cba2c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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_a19b624dc9e413f81d1b1d32.woff')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_1c4efe9d268d2dc1407bb489.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8c6ff546329aee9e4d40b728.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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_a0f48b5f421a10a26399ed08.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003712px;}
.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;}
}
.ws0{word-spacing:-25.427204px;}
.ws3{word-spacing:-19.075172px;}
.ws1{word-spacing:-19.008409px;}
.ws2{word-spacing:-15.969608px;}
.ws4{word-spacing:-15.520499px;}
.ws5{word-spacing:-15.517653px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-8.411148px;}
._4{margin-left:-7.350857px;}
._3{margin-left:-4.520893px;}
._5{margin-left:-3.505832px;}
._2{margin-left:-2.381339px;}
._0{margin-left:-1.365071px;}
._1{width:1.245940px;}
.fc6{color:transparent;}
.fc5{color:rgb(22,74,123);}
.fc4{color:rgb(196,149,0);}
.fc3{color:rgb(26,77,125);}
.fc1{color:rgb(209,163,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:53.986336px;}
.fs4{font-size:54.644943px;}
.fs3{font-size:59.969821px;}
.fs0{font-size:66.581390px;}
.fsf{font-size:67.168001px;}
.fs8{font-size:69.282463px;}
.fs9{font-size:69.822330px;}
.fsd{font-size:73.196476px;}
.fsb{font-size:73.209899px;}
.fsa{font-size:74.051254px;}
.fs2{font-size:89.662307px;}
.fs7{font-size:89.977227px;}
.fse{font-size:97.588796px;}
.fsc{font-size:119.937062px;}
.fs1{font-size:119.939644px;}
.fs5{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.000021px;}
.y17{bottom:3.275626px;}
.y1d{bottom:3.429621px;}
.y8{bottom:4.220295px;}
.y6{bottom:4.232960px;}
.y3{bottom:4.518428px;}
.y41{bottom:4.648739px;}
.y3e{bottom:4.747968px;}
.y58{bottom:4.764351px;}
.y54{bottom:4.820996px;}
.y50{bottom:5.713848px;}
.y4c{bottom:7.398640px;}
.y4a{bottom:7.616982px;}
.y19{bottom:16.397207px;}
.y1c{bottom:21.644602px;}
.y5{bottom:27.536446px;}
.y2{bottom:27.821915px;}
.y40{bottom:30.272204px;}
.y3d{bottom:30.371433px;}
.y57{bottom:30.387815px;}
.y53{bottom:30.444461px;}
.y18{bottom:36.642083px;}
.y1b{bottom:39.859582px;}
.y56{bottom:56.011280px;}
.y52{bottom:56.067926px;}
.y16{bottom:64.010254px;}
.y15{bottom:87.127401px;}
.y24{bottom:135.245995px;}
.y23{bottom:153.241440px;}
.y1a{bottom:158.535014px;}
.y22{bottom:171.236886px;}
.y21{bottom:189.232331px;}
.y20{bottom:207.227777px;}
.y1f{bottom:225.223222px;}
.y14{bottom:251.241555px;}
.y4e{bottom:308.729271px;}
.y5c{bottom:309.188500px;}
.y7{bottom:319.095007px;}
.y5b{bottom:331.682807px;}
.y4d{bottom:333.473008px;}
.y35{bottom:334.817659px;}
.y34{bottom:358.436681px;}
.y3f{bottom:375.975005px;}
.y33{bottom:382.055703px;}
.y4{bottom:384.615005px;}
.y32{bottom:405.674725px;}
.y31{bottom:429.293747px;}
.y3c{bottom:452.655002px;}
.y30{bottom:452.912769px;}
.y5a{bottom:458.765130px;}
.y1{bottom:474.615001px;}
.y2f{bottom:476.531791px;}
.y59{bottom:483.508867px;}
.y2e{bottom:500.150813px;}
.y2d{bottom:523.769835px;}
.y55{bottom:531.494999px;}
.y51{bottom:534.374998px;}
.y2c{bottom:547.388857px;}
.yb{bottom:569.536028px;}
.y2b{bottom:603.624624px;}
.ya{bottom:611.150496px;}
.y4f{bottom:623.294995px;}
.y3b{bottom:718.315065px;}
.y13{bottom:724.832464px;}
.y48{bottom:737.194215px;}
.y3a{bottom:744.183518px;}
.y12{bottom:755.199778px;}
.y47{bottom:768.686244px;}
.y39{bottom:775.502022px;}
.y11{bottom:785.567092px;}
.y46{bottom:800.178274px;}
.y38{bottom:806.994051px;}
.y10{bottom:815.934406px;}
.y45{bottom:831.670303px;}
.y37{bottom:838.486081px;}
.yf{bottom:846.301721px;}
.y44{bottom:863.162333px;}
.y36{bottom:869.978110px;}
.ye{bottom:876.669035px;}
.y43{bottom:894.654362px;}
.y2a{bottom:902.594774px;}
.yd{bottom:907.036349px;}
.y42{bottom:926.146392px;}
.y29{bottom:934.086803px;}
.yc{bottom:937.403663px;}
.y4b{bottom:970.694980px;}
.y49{bottom:972.134980px;}
.y28{bottom:976.660443px;}
.y27{bottom:1034.416083px;}
.y26{bottom:1068.178747px;}
.y25{bottom:1099.670776px;}
.y1e{bottom:1147.933182px;}
.h5{height:20.159999px;}
.h1d{height:28.799999px;}
.h1b{height:34.919999px;}
.h19{height:35.279999px;}
.h4{height:43.559998px;}
.h2{height:43.919998px;}
.h17{height:47.879998px;}
.he{height:48.371757px;}
.hc{height:48.961869px;}
.h9{height:49.535072px;}
.hb{height:52.559998px;}
.ha{height:53.732960px;}
.h3{height:54.996228px;}
.h21{height:55.480769px;}
.h10{height:57.227314px;}
.h14{height:57.673245px;}
.h1c{height:60.460289px;}
.h18{height:60.471377px;}
.h16{height:61.166336px;}
.h12{height:62.077087px;}
.h11{height:65.818340px;}
.h20{height:73.439997px;}
.h1f{height:73.799997px;}
.h8{height:74.061065px;}
.h13{height:74.321189px;}
.h1e{height:80.608345px;}
.hf{height:80.619595px;}
.h15{height:85.478366px;}
.h1a{height:99.068013px;}
.h7{height:99.070146px;}
.hd{height:236.975507px;}
.h1{height:1263.000000px;}
.h6{height:1263.374947px;}
.h0{height:1263.374968px;}
.w8{width:91.799996px;}
.wc{width:92.519996px;}
.we{width:94.679996px;}
.wd{width:105.479996px;}
.w7{width:120.959995px;}
.w9{width:296.639988px;}
.w2{width:305.999987px;}
.wa{width:307.439987px;}
.w3{width:403.919983px;}
.wb{width:432.359982px;}
.w4{width:433.799982px;}
.w6{width:815.399966px;}
.w5{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x30{left:3.995841px;}
.x24{left:9.646500px;}
.xa{left:13.749168px;}
.x35{left:14.971192px;}
.x26{left:17.425093px;}
.x9{left:25.761683px;}
.xd{left:36.682817px;}
.x4{left:53.009767px;}
.x2{left:61.748425px;}
.x27{left:76.584146px;}
.x2a{left:108.359995px;}
.x2d{left:134.563865px;}
.x2c{left:170.625051px;}
.x2e{left:181.439992px;}
.x23{left:182.879992px;}
.x2f{left:192.599992px;}
.x25{left:198.719992px;}
.x10{left:237.453769px;}
.x28{left:273.177834px;}
.x29{left:295.672120px;}
.xe{left:303.410496px;}
.x11{left:362.121434px;}
.x12{left:379.431506px;}
.x32{left:432.969353px;}
.x36{left:438.066423px;}
.xf{left:468.146146px;}
.x2b{left:474.839980px;}
.x31{left:485.279980px;}
.x34{left:487.439980px;}
.x8{left:500.560312px;}
.x33{left:508.957933px;}
.xc{left:675.429236px;}
.x5{left:743.039969px;}
.x6{left:747.538834px;}
.x3{left:755.999969px;}
.x1{left:802.799967px;}
.x7{left:825.601108px;}
.x14{left:848.032244px;}
.xb{left:905.657758px;}
.x1f{left:936.266073px;}
.x20{left:958.760362px;}
.x21{left:1047.331622px;}
.x22{left:1069.825917px;}
.x13{left:1160.361511px;}
.x16{left:1293.720192px;}
.x1a{left:1318.130030px;}
.x18{left:1320.924244px;}
.x1c{left:1325.001337px;}
.x19{left:1353.242237px;}
.x15{left:1395.208178px;}
.x1d{left:1414.240470px;}
.x1e{left:1431.814147px;}
.x1b{left:1433.272762px;}
.x17{left:1487.962046px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003300pt;}
.ws0{word-spacing:-22.601959pt;}
.ws3{word-spacing:-16.955709pt;}
.ws1{word-spacing:-16.896364pt;}
.ws2{word-spacing:-14.195207pt;}
.ws4{word-spacing:-13.795999pt;}
.ws5{word-spacing:-13.793469pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-7.476576pt;}
._4{margin-left:-6.534095pt;}
._3{margin-left:-4.018572pt;}
._5{margin-left:-3.116295pt;}
._2{margin-left:-2.116746pt;}
._0{margin-left:-1.213396pt;}
._1{width:1.107502pt;}
.fs6{font-size:47.987854pt;}
.fs4{font-size:48.573282pt;}
.fs3{font-size:53.306508pt;}
.fs0{font-size:59.183457pt;}
.fsf{font-size:59.704890pt;}
.fs8{font-size:61.584412pt;}
.fs9{font-size:62.064294pt;}
.fsd{font-size:65.063535pt;}
.fsb{font-size:65.075466pt;}
.fsa{font-size:65.823337pt;}
.fs2{font-size:79.699828pt;}
.fs7{font-size:79.979757pt;}
.fse{font-size:86.745596pt;}
.fsc{font-size:106.610722pt;}
.fs1{font-size:106.613016pt;}
.fs5{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.000018pt;}
.y17{bottom:2.911667pt;}
.y1d{bottom:3.048552pt;}
.y8{bottom:3.751373pt;}
.y6{bottom:3.762631pt;}
.y3{bottom:4.016381pt;}
.y41{bottom:4.132213pt;}
.y3e{bottom:4.220416pt;}
.y58{bottom:4.234978pt;}
.y54{bottom:4.285330pt;}
.y50{bottom:5.078976pt;}
.y4c{bottom:6.576569pt;}
.y4a{bottom:6.770651pt;}
.y19{bottom:14.575295pt;}
.y1c{bottom:19.239646pt;}
.y5{bottom:24.476841pt;}
.y2{bottom:24.730591pt;}
.y40{bottom:26.908626pt;}
.y3d{bottom:26.996829pt;}
.y57{bottom:27.011391pt;}
.y53{bottom:27.061743pt;}
.y18{bottom:32.570741pt;}
.y1b{bottom:35.430740pt;}
.y56{bottom:49.787805pt;}
.y52{bottom:49.838156pt;}
.y16{bottom:56.898004pt;}
.y15{bottom:77.446579pt;}
.y24{bottom:120.218662pt;}
.y23{bottom:136.214614pt;}
.y1a{bottom:140.920013pt;}
.y22{bottom:152.210565pt;}
.y21{bottom:168.206517pt;}
.y20{bottom:184.202468pt;}
.y1f{bottom:200.198420pt;}
.y14{bottom:223.325826pt;}
.y4e{bottom:274.426018pt;}
.y5c{bottom:274.834222pt;}
.y7{bottom:283.640007pt;}
.y5b{bottom:294.829162pt;}
.y4d{bottom:296.420452pt;}
.y35{bottom:297.615696pt;}
.y34{bottom:318.610383pt;}
.y3f{bottom:334.200004pt;}
.y33{bottom:339.605069pt;}
.y4{bottom:341.880004pt;}
.y32{bottom:360.599755pt;}
.y31{bottom:381.594442pt;}
.y3c{bottom:402.360002pt;}
.y30{bottom:402.589128pt;}
.y5a{bottom:407.791227pt;}
.y1{bottom:421.880001pt;}
.y2f{bottom:423.583814pt;}
.y59{bottom:429.785660pt;}
.y2e{bottom:444.578501pt;}
.y2d{bottom:465.573187pt;}
.y55{bottom:472.439999pt;}
.y51{bottom:474.999999pt;}
.y2c{bottom:486.567873pt;}
.yb{bottom:506.254247pt;}
.y2b{bottom:536.555221pt;}
.ya{bottom:543.244885pt;}
.y4f{bottom:554.039995pt;}
.y3b{bottom:638.502280pt;}
.y13{bottom:644.295524pt;}
.y48{bottom:655.283747pt;}
.y3a{bottom:661.496460pt;}
.y12{bottom:671.288692pt;}
.y47{bottom:683.276662pt;}
.y39{bottom:689.335131pt;}
.y11{bottom:698.281860pt;}
.y46{bottom:711.269577pt;}
.y38{bottom:717.328046pt;}
.y10{bottom:725.275028pt;}
.y45{bottom:739.262492pt;}
.y37{bottom:745.320961pt;}
.yf{bottom:752.268196pt;}
.y44{bottom:767.255407pt;}
.y36{bottom:773.313876pt;}
.ye{bottom:779.261364pt;}
.y43{bottom:795.248322pt;}
.y2a{bottom:802.306466pt;}
.yd{bottom:806.254532pt;}
.y42{bottom:823.241237pt;}
.y29{bottom:830.299381pt;}
.yc{bottom:833.247700pt;}
.y4b{bottom:862.839982pt;}
.y49{bottom:864.119982pt;}
.y28{bottom:868.142616pt;}
.y27{bottom:919.480963pt;}
.y26{bottom:949.492219pt;}
.y25{bottom:977.485135pt;}
.y1e{bottom:1020.385051pt;}
.h5{height:17.919999pt;}
.h1d{height:25.599999pt;}
.h1b{height:31.039999pt;}
.h19{height:31.359999pt;}
.h4{height:38.719998pt;}
.h2{height:39.039998pt;}
.h17{height:42.559998pt;}
.he{height:42.997118pt;}
.hc{height:43.521661pt;}
.h9{height:44.031175pt;}
.hb{height:46.719998pt;}
.ha{height:47.762631pt;}
.h3{height:48.885536pt;}
.h21{height:49.316239pt;}
.h10{height:50.868724pt;}
.h14{height:51.265107pt;}
.h1c{height:53.742480pt;}
.h18{height:53.752335pt;}
.h16{height:54.370076pt;}
.h12{height:55.179633pt;}
.h11{height:58.505191pt;}
.h20{height:65.279997pt;}
.h1f{height:65.599997pt;}
.h8{height:65.832058pt;}
.h13{height:66.063280pt;}
.h1e{height:71.651863pt;}
.hf{height:71.661863pt;}
.h15{height:75.980769pt;}
.h1a{height:88.060456pt;}
.h7{height:88.062352pt;}
.hd{height:210.644895pt;}
.h1{height:1122.666667pt;}
.h6{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w8{width:81.599997pt;}
.wc{width:82.239997pt;}
.we{width:84.159996pt;}
.wd{width:93.759996pt;}
.w7{width:107.519996pt;}
.w9{width:263.679989pt;}
.w2{width:271.999989pt;}
.wa{width:273.279989pt;}
.w3{width:359.039985pt;}
.wb{width:384.319984pt;}
.w4{width:385.599984pt;}
.w6{width:724.799970pt;}
.w5{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x30{left:3.551858pt;}
.x24{left:8.574667pt;}
.xa{left:12.221483pt;}
.x35{left:13.307726pt;}
.x26{left:15.488972pt;}
.x9{left:22.899274pt;}
.xd{left:32.606948pt;}
.x4{left:47.119793pt;}
.x2{left:54.887489pt;}
.x27{left:68.074796pt;}
.x2a{left:96.319996pt;}
.x2d{left:119.612325pt;}
.x2c{left:151.666712pt;}
.x2e{left:161.279993pt;}
.x23{left:162.559993pt;}
.x2f{left:171.199993pt;}
.x25{left:176.639993pt;}
.x10{left:211.070017pt;}
.x28{left:242.824742pt;}
.x29{left:262.819662pt;}
.xe{left:269.698219pt;}
.x11{left:321.885719pt;}
.x12{left:337.272450pt;}
.x32{left:384.861647pt;}
.x36{left:389.392376pt;}
.xf{left:416.129907pt;}
.x2b{left:422.079982pt;}
.x31{left:431.359982pt;}
.x34{left:433.279982pt;}
.x8{left:444.942500pt;}
.x33{left:452.407052pt;}
.xc{left:600.381543pt;}
.x5{left:660.479972pt;}
.x6{left:664.478964pt;}
.x3{left:671.999972pt;}
.x1{left:713.599970pt;}
.x7{left:733.867651pt;}
.x14{left:753.806439pt;}
.xb{left:805.029118pt;}
.x1f{left:832.236509pt;}
.x20{left:852.231433pt;}
.x21{left:930.961441pt;}
.x22{left:950.956371pt;}
.x13{left:1031.432454pt;}
.x16{left:1149.973504pt;}
.x1a{left:1171.671137pt;}
.x18{left:1174.154884pt;}
.x1c{left:1177.778967pt;}
.x19{left:1202.881988pt;}
.x15{left:1240.185047pt;}
.x1d{left:1257.102640pt;}
.x1e{left:1272.723686pt;}
.x1b{left:1274.020233pt;}
.x17{left:1322.632929pt;}
}




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