
    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_812a3b61205d981b4694b8b3.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_d866053193a89f6a5eee67a9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_822771412072455a5a27a194.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_894db634ef5e449604f507ec.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_079b055eea3b9c3bae63ccd1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_86db92149d308d8f7d50cdda.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_cd79df4902bdb619d238a303.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_eabfad9074128b04eba42d5b.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;}
.ws4{word-spacing:-19.456676px;}
.ws3{word-spacing:-19.075172px;}
.ws1{word-spacing:-19.008409px;}
.ws2{word-spacing:-15.520499px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-9.297239px;}
._4{margin-left:-6.464767px;}
._5{margin-left:-4.969392px;}
._1{margin-left:-3.462279px;}
._0{margin-left:-1.831466px;}
._2{width:1.748158px;}
._3{width:2.911226px;}
.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);}
.fs4{font-size:53.986336px;}
.fs3{font-size:59.969821px;}
.fs0{font-size:66.581390px;}
.fs7{font-size:69.282463px;}
.fs9{font-size:69.552396px;}
.fsb{font-size:73.196476px;}
.fsa{font-size:73.209899px;}
.fs8{font-size:83.948753px;}
.fs2{font-size:89.662307px;}
.fs6{font-size:89.977227px;}
.fsd{font-size:91.776772px;}
.fsc{font-size:119.937062px;}
.fs1{font-size:119.939644px;}
.fs5{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.135021px;}
.y3{bottom:4.430538px;}
.y8{bottom:4.492580px;}
.y6{bottom:4.505069px;}
.y4b{bottom:4.648739px;}
.y5c{bottom:4.727665px;}
.y46{bottom:4.747968px;}
.y43{bottom:4.764351px;}
.y3f{bottom:4.820996px;}
.y57{bottom:7.398640px;}
.y55{bottom:7.616982px;}
.y1b{bottom:20.611020px;}
.y18{bottom:23.385502px;}
.y2{bottom:27.734024px;}
.y5{bottom:27.808555px;}
.y4a{bottom:30.272204px;}
.y5b{bottom:30.351130px;}
.y45{bottom:30.371433px;}
.y42{bottom:30.387815px;}
.y3e{bottom:30.444461px;}
.y1a{bottom:38.606466px;}
.y41{bottom:56.011280px;}
.y3d{bottom:56.067926px;}
.y17{bottom:63.875254px;}
.y16{bottom:86.992401px;}
.y22{bottom:135.110995px;}
.y21{bottom:153.106440px;}
.y20{bottom:171.101886px;}
.y1f{bottom:189.097331px;}
.y1e{bottom:207.092777px;}
.y1d{bottom:225.088222px;}
.y15{bottom:248.857167px;}
.y19{bottom:249.519171px;}
.y5a{bottom:300.375008px;}
.y59{bottom:308.594271px;}
.y34{bottom:319.908299px;}
.y58{bottom:333.338008px;}
.y7{bottom:337.095007px;}
.y33{bottom:343.527322px;}
.y32{bottom:368.271059px;}
.y49{bottom:375.975005px;}
.y31{bottom:396.388942px;}
.y4{bottom:402.615004px;}
.y30{bottom:421.132680px;}
.y2f{bottom:449.250563px;}
.y44{bottom:452.655002px;}
.y48{bottom:457.918844px;}
.y2e{bottom:473.994301px;}
.y47{bottom:482.662582px;}
.y1{bottom:492.975000px;}
.y2d{bottom:502.112184px;}
.y2c{bottom:526.855921px;}
.y40{bottom:531.494999px;}
.y3c{bottom:534.374998px;}
.y2b{bottom:554.973805px;}
.y2a{bottom:579.717542px;}
.yb{bottom:587.673213px;}
.y29{bottom:611.209572px;}
.y5e{bottom:621.335731px;}
.ya{bottom:629.287680px;}
.y5f{bottom:631.301771px;}
.y5d{bottom:652.827761px;}
.y3b{bottom:688.390534px;}
.y14{bottom:694.330150px;}
.y53{bottom:705.567185px;}
.y3a{bottom:719.882563px;}
.y13{bottom:724.697464px;}
.y52{bottom:737.059215px;}
.y39{bottom:751.374592px;}
.y12{bottom:755.064778px;}
.y51{bottom:768.551244px;}
.y38{bottom:782.220709px;}
.y11{bottom:785.432092px;}
.y50{bottom:800.043274px;}
.y37{bottom:813.712738px;}
.y10{bottom:815.799406px;}
.y4f{bottom:831.535303px;}
.y36{bottom:845.204768px;}
.yf{bottom:846.166721px;}
.y4e{bottom:863.027333px;}
.ye{bottom:876.534035px;}
.y35{bottom:876.696797px;}
.y4d{bottom:894.519362px;}
.yd{bottom:906.901349px;}
.y28{bottom:907.542948px;}
.y4c{bottom:926.011392px;}
.yc{bottom:937.268663px;}
.y27{bottom:939.034978px;}
.y56{bottom:970.694980px;}
.y54{bottom:972.134980px;}
.y26{bottom:976.525443px;}
.y25{bottom:1024.429248px;}
.y24{bottom:1064.311087px;}
.y23{bottom:1095.803116px;}
.y1c{bottom:1147.798182px;}
.h5{height:20.519999px;}
.h1c{height:34.919999px;}
.h1a{height:35.279999px;}
.h2{height:43.559998px;}
.h4{height:43.919998px;}
.h18{height:47.879998px;}
.hb{height:48.371757px;}
.h9{height:49.535072px;}
.ha{height:53.732960px;}
.h3{height:54.996228px;}
.he{height:57.227314px;}
.h13{height:57.450279px;}
.h19{height:60.460289px;}
.h16{height:60.471377px;}
.h10{height:62.077087px;}
.hf{height:65.818340px;}
.h12{height:69.341670px;}
.h17{height:73.439997px;}
.h15{height:73.799997px;}
.h8{height:74.061065px;}
.h11{height:74.321189px;}
.h1d{height:75.807613px;}
.hd{height:80.619595px;}
.h14{height:85.478366px;}
.h1b{height:99.068013px;}
.h7{height:99.070146px;}
.hc{height:238.955380px;}
.h1{height:1263.000000px;}
.h6{height:1263.239947px;}
.h0{height:1263.374968px;}
.w9{width:91.799996px;}
.w6{width:92.519996px;}
.wa{width:109.439995px;}
.w7{width:115.559995px;}
.w8{width:120.959995px;}
.wd{width:202.679992px;}
.wc{width:233.279990px;}
.wb{width:300.239987px;}
.w2{width:349.199985px;}
.w4{width:430.919982px;}
.w3{width:439.559982px;}
.w5{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x25{left:3.995841px;}
.x2d{left:8.389669px;}
.x26{left:10.416006px;}
.xa{left:13.749168px;}
.x2c{left:17.425093px;}
.x9{left:25.761683px;}
.x36{left:45.148263px;}
.x4{left:48.838481px;}
.x2{left:70.437986px;}
.x2e{left:76.584146px;}
.x31{left:106.559996px;}
.x37{left:120.248302px;}
.x34{left:134.563865px;}
.x33{left:170.625051px;}
.x28{left:182.879992px;}
.x38{left:191.351400px;}
.x24{left:192.599992px;}
.x2b{left:198.719992px;}
.xf{left:258.445107px;}
.xd{left:274.110689px;}
.x2f{left:283.025387px;}
.x30{left:305.519683px;}
.xe{left:322.051681px;}
.x3a{left:379.194900px;}
.x10{left:385.924561px;}
.x11{left:403.234633px;}
.x39{left:424.884607px;}
.x35{left:434.159982px;}
.x2a{left:464.649295px;}
.x27{left:480.599980px;}
.x29{left:485.087481px;}
.x8{left:504.785261px;}
.x32{left:512.279979px;}
.xc{left:678.692636px;}
.x3{left:754.199969px;}
.x5{left:761.039968px;}
.x7{left:771.760464px;}
.x6{left:795.133455px;}
.x1{left:797.759967px;}
.x13{left:847.502000px;}
.x1f{left:885.742321px;}
.xb{left:914.503570px;}
.x22{left:959.804764px;}
.x20{left:967.137896px;}
.x23{left:982.299054px;}
.x21{left:989.632186px;}
.x12{left:1106.814517px;}
.x1d{left:1314.661508px;}
.x18{left:1320.355379px;}
.x19{left:1329.054349px;}
.x16{left:1354.290150px;}
.x15{left:1356.135386px;}
.x1b{left:1365.765761px;}
.x1c{left:1389.683535px;}
.x14{left:1396.379106px;}
.x1a{left:1405.605287px;}
.x17{left:1415.235662px;}
.x1e{left:1451.050816px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003300pt;}
.ws0{word-spacing:-22.601959pt;}
.ws4{word-spacing:-17.294823pt;}
.ws3{word-spacing:-16.955709pt;}
.ws1{word-spacing:-16.896364pt;}
.ws2{word-spacing:-13.795999pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-8.264212pt;}
._4{margin-left:-5.746459pt;}
._5{margin-left:-4.417237pt;}
._1{margin-left:-3.077581pt;}
._0{margin-left:-1.627970pt;}
._2{width:1.553918pt;}
._3{width:2.587757pt;}
.fs4{font-size:47.987854pt;}
.fs3{font-size:53.306508pt;}
.fs0{font-size:59.183457pt;}
.fs7{font-size:61.584412pt;}
.fs9{font-size:61.824352pt;}
.fsb{font-size:65.063535pt;}
.fsa{font-size:65.075466pt;}
.fs8{font-size:74.621114pt;}
.fs2{font-size:79.699828pt;}
.fs6{font-size:79.979757pt;}
.fsd{font-size:81.579352pt;}
.fsc{font-size:106.610722pt;}
.fs1{font-size:106.613016pt;}
.fs5{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.120018pt;}
.y3{bottom:3.938256pt;}
.y8{bottom:3.993404pt;}
.y6{bottom:4.004506pt;}
.y4b{bottom:4.132213pt;}
.y5c{bottom:4.202369pt;}
.y46{bottom:4.220416pt;}
.y43{bottom:4.234978pt;}
.y3f{bottom:4.285330pt;}
.y57{bottom:6.576569pt;}
.y55{bottom:6.770651pt;}
.y1b{bottom:18.320907pt;}
.y18{bottom:20.787113pt;}
.y2{bottom:24.652466pt;}
.y5{bottom:24.718716pt;}
.y4a{bottom:26.908626pt;}
.y5b{bottom:26.978782pt;}
.y45{bottom:26.996829pt;}
.y42{bottom:27.011391pt;}
.y3e{bottom:27.061743pt;}
.y1a{bottom:34.316858pt;}
.y41{bottom:49.787805pt;}
.y3d{bottom:49.838156pt;}
.y17{bottom:56.778004pt;}
.y16{bottom:77.326579pt;}
.y22{bottom:120.098662pt;}
.y21{bottom:136.094614pt;}
.y20{bottom:152.090565pt;}
.y1f{bottom:168.086517pt;}
.y1e{bottom:184.082468pt;}
.y1d{bottom:200.078420pt;}
.y15{bottom:221.206371pt;}
.y19{bottom:221.794819pt;}
.y5a{bottom:267.000007pt;}
.y59{bottom:274.306018pt;}
.y34{bottom:284.362933pt;}
.y58{bottom:296.300452pt;}
.y7{bottom:299.640006pt;}
.y33{bottom:305.357619pt;}
.y32{bottom:327.352052pt;}
.y49{bottom:334.200004pt;}
.y31{bottom:352.345727pt;}
.y4{bottom:357.880003pt;}
.y30{bottom:374.340160pt;}
.y2f{bottom:399.333834pt;}
.y44{bottom:402.360002pt;}
.y48{bottom:407.038973pt;}
.y2e{bottom:421.328267pt;}
.y47{bottom:429.033406pt;}
.y1{bottom:438.200000pt;}
.y2d{bottom:446.321941pt;}
.y2c{bottom:468.316375pt;}
.y40{bottom:472.439999pt;}
.y3c{bottom:474.999999pt;}
.y2b{bottom:493.310049pt;}
.y2a{bottom:515.304482pt;}
.yb{bottom:522.376189pt;}
.y29{bottom:543.297397pt;}
.y5e{bottom:552.298428pt;}
.ya{bottom:559.366827pt;}
.y5f{bottom:561.157129pt;}
.y5d{bottom:580.291343pt;}
.y3b{bottom:611.902696pt;}
.y14{bottom:617.182356pt;}
.y53{bottom:627.170832pt;}
.y3a{bottom:639.895612pt;}
.y13{bottom:644.175524pt;}
.y52{bottom:655.163747pt;}
.y39{bottom:667.888527pt;}
.y12{bottom:671.168692pt;}
.y51{bottom:683.156662pt;}
.y38{bottom:695.307297pt;}
.y11{bottom:698.161860pt;}
.y50{bottom:711.149577pt;}
.y37{bottom:723.300212pt;}
.y10{bottom:725.155028pt;}
.y4f{bottom:739.142492pt;}
.y36{bottom:751.293127pt;}
.yf{bottom:752.148196pt;}
.y4e{bottom:767.135407pt;}
.ye{bottom:779.141364pt;}
.y35{bottom:779.286042pt;}
.y4d{bottom:795.128322pt;}
.yd{bottom:806.134532pt;}
.y28{bottom:806.704843pt;}
.y4c{bottom:823.121237pt;}
.yc{bottom:833.127700pt;}
.y27{bottom:834.697758pt;}
.y56{bottom:862.839982pt;}
.y54{bottom:864.119982pt;}
.y26{bottom:868.022616pt;}
.y25{bottom:910.603776pt;}
.y24{bottom:946.054300pt;}
.y23{bottom:974.047215pt;}
.y1c{bottom:1020.265051pt;}
.h5{height:18.239999pt;}
.h1c{height:31.039999pt;}
.h1a{height:31.359999pt;}
.h2{height:38.719998pt;}
.h4{height:39.039998pt;}
.h18{height:42.559998pt;}
.hb{height:42.997118pt;}
.h9{height:44.031175pt;}
.ha{height:47.762631pt;}
.h3{height:48.885536pt;}
.he{height:50.868724pt;}
.h13{height:51.066915pt;}
.h19{height:53.742480pt;}
.h16{height:53.752335pt;}
.h10{height:55.179633pt;}
.hf{height:58.505191pt;}
.h12{height:61.637040pt;}
.h17{height:65.279997pt;}
.h15{height:65.599997pt;}
.h8{height:65.832058pt;}
.h11{height:66.063280pt;}
.h1d{height:67.384545pt;}
.hd{height:71.661863pt;}
.h14{height:75.980769pt;}
.h1b{height:88.060456pt;}
.h7{height:88.062352pt;}
.hc{height:212.404782pt;}
.h1{height:1122.666667pt;}
.h6{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w9{width:81.599997pt;}
.w6{width:82.239997pt;}
.wa{width:97.279996pt;}
.w7{width:102.719996pt;}
.w8{width:107.519996pt;}
.wd{width:180.159992pt;}
.wc{width:207.359991pt;}
.wb{width:266.879989pt;}
.w2{width:310.399987pt;}
.w4{width:383.039984pt;}
.w3{width:390.719984pt;}
.w5{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x25{left:3.551858pt;}
.x2d{left:7.457484pt;}
.x26{left:9.258672pt;}
.xa{left:12.221483pt;}
.x2c{left:15.488972pt;}
.x9{left:22.899274pt;}
.x36{left:40.131790pt;}
.x4{left:43.411983pt;}
.x2{left:62.611543pt;}
.x2e{left:68.074796pt;}
.x31{left:94.719996pt;}
.x37{left:106.887380pt;}
.x34{left:119.612325pt;}
.x33{left:151.666712pt;}
.x28{left:162.559993pt;}
.x38{left:170.090133pt;}
.x24{left:171.199993pt;}
.x2b{left:176.639993pt;}
.xf{left:229.728984pt;}
.xd{left:243.653946pt;}
.x2f{left:251.578122pt;}
.x30{left:271.573051pt;}
.xe{left:286.268161pt;}
.x3a{left:337.062133pt;}
.x10{left:343.044054pt;}
.x11{left:358.430785pt;}
.x39{left:377.675206pt;}
.x35{left:385.919984pt;}
.x2a{left:413.021595pt;}
.x27{left:427.199982pt;}
.x29{left:431.188872pt;}
.x8{left:448.698010pt;}
.x32{left:455.359981pt;}
.xc{left:603.282343pt;}
.x3{left:670.399972pt;}
.x5{left:676.479972pt;}
.x7{left:686.009301pt;}
.x6{left:706.785293pt;}
.x1{left:709.119970pt;}
.x13{left:753.335111pt;}
.x1f{left:787.326508pt;}
.xb{left:812.892062pt;}
.x22{left:853.159790pt;}
.x20{left:859.678130pt;}
.x23{left:873.154715pt;}
.x21{left:879.673054pt;}
.x12{left:983.835126pt;}
.x1d{left:1168.588007pt;}
.x18{left:1173.649226pt;}
.x19{left:1181.381644pt;}
.x16{left:1203.813466pt;}
.x15{left:1205.453676pt;}
.x1b{left:1214.014010pt;}
.x1c{left:1235.274254pt;}
.x14{left:1241.225872pt;}
.x1a{left:1249.426922pt;}
.x17{left:1257.987255pt;}
.x1e{left:1289.822947pt;}
}




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