
    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_3229dac0da2e9509f37135b3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_7193d933d8836187beb802ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.026000;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_260d3c2bb182473452521bfb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.031000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_91645585d5b23a23f281ac92.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3bf7030098f8348c4cb6ec7d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.198154;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d04ef643cd411cb159ca0ba8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.031069;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_5aa7c724497e7a99562dad72.woff')format("woff");}.ff9{font-family:ff9;line-height:1.036000;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:ffa;src:url('chunks/assets/font_db6f06d3132779a15b01e816.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.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;}
}
.ws0{word-spacing:-17.358000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-20.689717px;}
._11{margin-left:-6.165086px;}
._b{margin-left:-3.848319px;}
._1{margin-left:-2.268473px;}
._3{margin-left:-1.190125px;}
._c{width:1.131921px;}
._6{width:2.187811px;}
._8{width:4.464953px;}
._2{width:8.460254px;}
._a{width:9.839887px;}
._0{width:12.743019px;}
._e{width:14.104058px;}
._d{width:18.376493px;}
._5{width:21.887199px;}
._7{width:23.352159px;}
._4{width:26.964951px;}
._f{width:31.110505px;}
._10{width:36.388133px;}
._9{width:49.798827px;}
.fc9{color:rgb(102,0,0);}
.fc8{color:rgb(33,37,41);}
.fc6{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(39,78,19);}
.fc1{color:rgb(33,72,19);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(18,18,18);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs3{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523194px;}
.y22{bottom:59.967584px;}
.y48{bottom:59.967779px;}
.y62{bottom:130.279537px;}
.y2e{bottom:133.769958px;}
.y47{bottom:143.181023px;}
.y61{bottom:158.739253px;}
.y2d{bottom:165.450135px;}
.y21{bottom:167.072994px;}
.y46{bottom:174.861198px;}
.y60{bottom:189.224819px;}
.y20{bottom:198.752994px;}
.y45{bottom:206.541006px;}
.y2c{bottom:215.130029px;}
.y1f{bottom:230.432982px;}
.y44{bottom:238.221189px;}
.y1e{bottom:262.112969px;}
.y43{bottom:269.900997px;}
.y1d{bottom:293.792964px;}
.y42{bottom:301.580805px;}
.y1c{bottom:325.472960px;}
.y41{bottom:333.260984px;}
.y1b{bottom:357.152955px;}
.y40{bottom:378.440789px;}
.y1a{bottom:388.833037px;}
.y19{bottom:420.512940px;}
.y3f{bottom:423.620974px;}
.y3e{bottom:455.301149px;}
.y58{bottom:469.134135px;}
.y18{bottom:470.193023px;}
.y3d{bottom:486.980957px;}
.y17{bottom:501.873019px;}
.y3c{bottom:518.661134px;}
.y57{bottom:523.340940px;}
.y16{bottom:533.553014px;}
.y3b{bottom:563.840943px;}
.y15{bottom:565.233006px;}
.y56{bottom:573.021110px;}
.y3a{bottom:595.521120px;}
.y14{bottom:596.912999px;}
.y55{bottom:604.701293px;}
.y39{bottom:627.201300px;}
.y54{bottom:636.381101px;}
.y13{bottom:646.592985px;}
.y38{bottom:658.881105px;}
.y12{bottom:667.713015px;}
.y53{bottom:668.060909px;}
.y37{bottom:690.560913px;}
.y11{bottom:710.001035px;}
.y52{bottom:717.741089px;}
.y36{bottom:722.241090px;}
.y10{bottom:734.289015px;}
.y35{bottom:753.920895px;}
.yf{bottom:758.577000px;}
.y51{bottom:762.920888px;}
.ye{bottom:782.864985px;}
.y6f{bottom:783.380009px;}
.y34{bottom:785.600895px;}
.y50{bottom:794.600704px;}
.yd{bottom:807.153005px;}
.y33{bottom:817.281067px;}
.y4f{bottom:826.280879px;}
.y6e{bottom:826.535161px;}
.yc{bottom:831.440985px;}
.y32{bottom:848.961060px;}
.yb{bottom:852.561000px;}
.y6d{bottom:854.994860px;}
.y4e{bottom:857.961056px;}
.ya{bottom:873.680985px;}
.y31{bottom:880.640865px;}
.y6c{bottom:883.454603px;}
.y2b{bottom:884.961054px;}
.y4d{bottom:889.640864px;}
.y6b{bottom:911.915045px;}
.y9{bottom:912.801015px;}
.y2a{bottom:916.641054px;}
.y30{bottom:930.321044px;}
.y5f{bottom:932.181030px;}
.y8{bottom:933.920985px;}
.y4c{bottom:934.821044px;}
.y6a{bottom:940.375486px;}
.y29{bottom:948.321042px;}
.y4b{bottom:966.500851px;}
.y69{bottom:968.835212px;}
.y5e{bottom:971.361210px;}
.y7{bottom:973.041015px;}
.y28{bottom:980.000858px;}
.y6{bottom:994.161000px;}
.y68{bottom:997.294917px;}
.y4a{bottom:998.181027px;}
.y5d{bottom:1003.041376px;}
.y27{bottom:1011.681024px;}
.y67{bottom:1025.755370px;}
.y49{bottom:1029.861205px;}
.y5{bottom:1033.280997px;}
.y5c{bottom:1034.720822px;}
.y26{bottom:1043.361020px;}
.y66{bottom:1054.215821px;}
.y5b{bottom:1066.400998px;}
.y25{bottom:1075.041015px;}
.y4{bottom:1075.277998px;}
.y65{bottom:1082.675535px;}
.y5a{bottom:1098.081176px;}
.y24{bottom:1106.721007px;}
.y2f{bottom:1106.721192px;}
.y3{bottom:1109.837999px;}
.y64{bottom:1111.135253px;}
.y59{bottom:1133.874000px;}
.y23{bottom:1138.401000px;}
.y63{bottom:1139.595703px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.hb{height:45.858399px;}
.h6{height:49.830001px;}
.h4{height:50.160001px;}
.ha{height:50.490001px;}
.h7{height:61.192155px;}
.h5{height:62.700001px;}
.h9{height:63.419998px;}
.h3{height:81.540000px;}
.h8{height:107.625000px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:128.583984px;}
.x9{left:135.000000px;}
.xa{left:162.000000px;}
.xc{left:282.375000px;}
.x5{left:405.611798px;}
.x3{left:418.383336px;}
.x6{left:426.195788px;}
.x4{left:438.967321px;}
.x7{left:645.803693px;}
.x8{left:666.387677px;}
.xb{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.429334pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-18.390860pt;}
._11{margin-left:-5.480076pt;}
._b{margin-left:-3.420728pt;}
._1{margin-left:-2.016421pt;}
._3{margin-left:-1.057889pt;}
._c{width:1.006152pt;}
._6{width:1.944721pt;}
._8{width:3.968847pt;}
._2{width:7.520226pt;}
._a{width:8.746566pt;}
._0{width:11.327128pt;}
._e{width:12.536941pt;}
._d{width:16.334660pt;}
._5{width:19.455288pt;}
._7{width:20.757475pt;}
._4{width:23.968846pt;}
._f{width:27.653782pt;}
._10{width:32.345007pt;}
._9{width:44.265624pt;}
.fs0{font-size:58.666668pt;}
.fs3{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242839pt;}
.y22{bottom:53.304519pt;}
.y48{bottom:53.304692pt;}
.y62{bottom:115.804033pt;}
.y2e{bottom:118.906629pt;}
.y47{bottom:127.272020pt;}
.y61{bottom:141.101559pt;}
.y2d{bottom:147.066787pt;}
.y21{bottom:148.509328pt;}
.y46{bottom:155.432176pt;}
.y60{bottom:168.199839pt;}
.y20{bottom:176.669328pt;}
.y45{bottom:183.592005pt;}
.y2c{bottom:191.226693pt;}
.y1f{bottom:204.829318pt;}
.y44{bottom:211.752168pt;}
.y1e{bottom:232.989306pt;}
.y43{bottom:239.911997pt;}
.y1d{bottom:261.149302pt;}
.y42{bottom:268.071827pt;}
.y1c{bottom:289.309298pt;}
.y41{bottom:296.231986pt;}
.y1b{bottom:317.469294pt;}
.y40{bottom:336.391813pt;}
.y1a{bottom:345.629367pt;}
.y19{bottom:373.789280pt;}
.y3f{bottom:376.551977pt;}
.y3e{bottom:404.712133pt;}
.y58{bottom:417.008120pt;}
.y18{bottom:417.949354pt;}
.y3d{bottom:432.871962pt;}
.y17{bottom:446.109350pt;}
.y3c{bottom:461.032119pt;}
.y57{bottom:465.191947pt;}
.y16{bottom:474.269346pt;}
.y3b{bottom:501.191949pt;}
.y15{bottom:502.429339pt;}
.y56{bottom:509.352098pt;}
.y3a{bottom:529.352107pt;}
.y14{bottom:530.589333pt;}
.y55{bottom:537.512261pt;}
.y39{bottom:557.512267pt;}
.y54{bottom:565.672090pt;}
.y13{bottom:574.749320pt;}
.y38{bottom:585.672094pt;}
.y12{bottom:593.522680pt;}
.y53{bottom:593.831919pt;}
.y37{bottom:613.831923pt;}
.y11{bottom:631.112031pt;}
.y52{bottom:637.992079pt;}
.y36{bottom:641.992080pt;}
.y10{bottom:652.701347pt;}
.y35{bottom:670.151907pt;}
.yf{bottom:674.290667pt;}
.y51{bottom:678.151901pt;}
.ye{bottom:695.879987pt;}
.y6f{bottom:696.337786pt;}
.y34{bottom:698.311907pt;}
.y50{bottom:706.311737pt;}
.yd{bottom:717.469338pt;}
.y33{bottom:726.472060pt;}
.y4f{bottom:734.471893pt;}
.y6e{bottom:734.697921pt;}
.yc{bottom:739.058654pt;}
.y32{bottom:754.632054pt;}
.yb{bottom:757.832000pt;}
.y6d{bottom:759.995431pt;}
.y4e{bottom:762.632050pt;}
.ya{bottom:776.605320pt;}
.y31{bottom:782.791880pt;}
.y6c{bottom:785.292981pt;}
.y2b{bottom:786.632048pt;}
.y4d{bottom:790.791879pt;}
.y6b{bottom:810.591151pt;}
.y9{bottom:811.378680pt;}
.y2a{bottom:814.792048pt;}
.y30{bottom:826.952039pt;}
.y5f{bottom:828.605360pt;}
.y8{bottom:830.151987pt;}
.y4c{bottom:830.952039pt;}
.y6a{bottom:835.889321pt;}
.y29{bottom:842.952038pt;}
.y4b{bottom:859.111867pt;}
.y69{bottom:861.186855pt;}
.y5e{bottom:863.432187pt;}
.y7{bottom:864.925347pt;}
.y28{bottom:871.111874pt;}
.y6{bottom:883.698667pt;}
.y68{bottom:886.484371pt;}
.y4a{bottom:887.272024pt;}
.y5d{bottom:891.592335pt;}
.y27{bottom:899.272022pt;}
.y67{bottom:911.782551pt;}
.y49{bottom:915.432182pt;}
.y5{bottom:918.471998pt;}
.y5c{bottom:919.751842pt;}
.y26{bottom:927.432018pt;}
.y66{bottom:937.080730pt;}
.y5b{bottom:947.911999pt;}
.y25{bottom:955.592014pt;}
.y4{bottom:955.802665pt;}
.y65{bottom:962.378254pt;}
.y5a{bottom:976.072156pt;}
.y24{bottom:983.752007pt;}
.y2f{bottom:983.752171pt;}
.y3{bottom:986.522666pt;}
.y64{bottom:987.675781pt;}
.y59{bottom:1007.888000pt;}
.y23{bottom:1011.912000pt;}
.y63{bottom:1012.973959pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.hb{height:40.763022pt;}
.h6{height:44.293334pt;}
.h4{height:44.586668pt;}
.ha{height:44.880001pt;}
.h7{height:54.393027pt;}
.h5{height:55.733335pt;}
.h9{height:56.373331pt;}
.h3{height:72.480000pt;}
.h8{height:95.666667pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:114.296875pt;}
.x9{left:120.000000pt;}
.xa{left:144.000000pt;}
.xc{left:251.000000pt;}
.x5{left:360.543820pt;}
.x3{left:371.896299pt;}
.x6{left:378.840700pt;}
.x4{left:390.193174pt;}
.x7{left:574.047727pt;}
.x8{left:592.344602pt;}
.xb{left:702.000000pt;}
}




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