
    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_3e3b9f841404066be955aa5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962000;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_7603ecc0a19266c07f80f2fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.741000;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_581761d27b165abbc620c690.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_c490b531e4e503e75f383265.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_332fccebf9cd9d0b1f08e3c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.057129;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_356583e5b7279f161756c1f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004395;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:ff7;src:url('chunks/assets/font_019c07dcc0fc5f9c0ce65950.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_634b72229ac5a18c86ad86f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_89d7f866077e60234fa5ed2b.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.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:-36.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.450000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-17.280000px;}
._9{margin-left:-14.301780px;}
._a{margin-left:-13.014000px;}
._6{margin-left:-6.966000px;}
._2{margin-left:-4.997940px;}
._4{margin-left:-3.888000px;}
._0{margin-left:-1.890000px;}
._1{width:1.011900px;}
._5{width:2.880000px;}
._3{width:4.896000px;}
._8{width:18.708000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:37.800000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.049565px;}
.y3a{bottom:55.050000px;}
.y39{bottom:95.992395px;}
.y6f{bottom:95.992815px;}
.y2e{bottom:115.492395px;}
.y6e{bottom:115.492815px;}
.y2d{bottom:134.992395px;}
.y6d{bottom:134.992815px;}
.y2c{bottom:154.492395px;}
.y6c{bottom:154.492815px;}
.y2b{bottom:173.992395px;}
.y6b{bottom:173.992815px;}
.y2a{bottom:193.492395px;}
.y6a{bottom:193.492815px;}
.y29{bottom:212.992395px;}
.y69{bottom:212.992815px;}
.y28{bottom:232.492395px;}
.y68{bottom:232.492815px;}
.y27{bottom:251.992395px;}
.y67{bottom:251.992815px;}
.y38{bottom:271.492395px;}
.y66{bottom:271.492815px;}
.y26{bottom:290.992395px;}
.y65{bottom:290.992815px;}
.y25{bottom:310.492395px;}
.y64{bottom:310.492815px;}
.y24{bottom:329.992395px;}
.y63{bottom:329.992815px;}
.y23{bottom:349.492395px;}
.y62{bottom:349.492815px;}
.y22{bottom:368.992395px;}
.y61{bottom:368.992815px;}
.y21{bottom:388.492395px;}
.y60{bottom:388.492815px;}
.y20{bottom:407.992395px;}
.y5f{bottom:407.992815px;}
.y1f{bottom:427.492395px;}
.y5e{bottom:427.492815px;}
.y37{bottom:446.992395px;}
.y5d{bottom:446.992815px;}
.y1e{bottom:466.492395px;}
.y5c{bottom:466.492815px;}
.y1d{bottom:485.992395px;}
.y5b{bottom:485.992815px;}
.y1c{bottom:505.492395px;}
.y5a{bottom:505.492815px;}
.y1b{bottom:524.992395px;}
.y72{bottom:524.992815px;}
.y1a{bottom:544.492395px;}
.y59{bottom:544.492815px;}
.y19{bottom:563.992395px;}
.y58{bottom:563.992815px;}
.y18{bottom:583.492395px;}
.y57{bottom:583.492815px;}
.y36{bottom:602.992395px;}
.y56{bottom:602.992815px;}
.y17{bottom:622.492395px;}
.y55{bottom:622.492815px;}
.y16{bottom:641.992395px;}
.y54{bottom:641.992815px;}
.y15{bottom:661.492395px;}
.y53{bottom:661.492815px;}
.y14{bottom:680.992395px;}
.y52{bottom:680.992815px;}
.y13{bottom:700.492395px;}
.y71{bottom:700.492815px;}
.y12{bottom:719.992395px;}
.y51{bottom:719.992815px;}
.y11{bottom:739.492395px;}
.y50{bottom:739.492815px;}
.y10{bottom:758.992395px;}
.y4f{bottom:758.992815px;}
.yf{bottom:778.492395px;}
.y4e{bottom:778.492815px;}
.ye{bottom:797.992395px;}
.y4d{bottom:797.992815px;}
.yd{bottom:817.492395px;}
.y4c{bottom:817.492815px;}
.yc{bottom:836.992395px;}
.y4b{bottom:836.992815px;}
.y35{bottom:856.492395px;}
.y4a{bottom:856.492815px;}
.yb{bottom:875.992395px;}
.y49{bottom:875.992815px;}
.ya{bottom:895.492395px;}
.y48{bottom:895.492815px;}
.y9{bottom:914.992395px;}
.y47{bottom:914.992815px;}
.y8{bottom:934.492395px;}
.y46{bottom:934.492815px;}
.y7{bottom:953.992395px;}
.y45{bottom:953.992815px;}
.y6{bottom:973.492395px;}
.y44{bottom:973.492815px;}
.y43{bottom:992.992815px;}
.y34{bottom:1012.492395px;}
.y42{bottom:1012.492815px;}
.y5{bottom:1031.992395px;}
.y73{bottom:1031.992815px;}
.y33{bottom:1051.492395px;}
.y41{bottom:1051.492815px;}
.y4{bottom:1070.992395px;}
.y40{bottom:1070.992815px;}
.y32{bottom:1090.492395px;}
.y3f{bottom:1090.492815px;}
.y3{bottom:1109.992395px;}
.y3e{bottom:1109.992815px;}
.y31{bottom:1129.492395px;}
.y3d{bottom:1129.492815px;}
.y2{bottom:1148.992395px;}
.y70{bottom:1148.992815px;}
.y30{bottom:1168.492395px;}
.y3c{bottom:1168.492815px;}
.y2f{bottom:1187.992395px;}
.y3b{bottom:1187.992815px;}
.h7{height:37.152000px;}
.ha{height:39.023438px;}
.h9{height:39.287109px;}
.h3{height:39.582000px;}
.h8{height:42.108398px;}
.h5{height:52.488000px;}
.h6{height:53.136000px;}
.h4{height:105.552000px;}
.h2{height:1262.844000px;}
.h0{height:1262.849985px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w3{width:892.943940px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x1{left:-824.925015px;}
.x0{left:0.000000px;}
.xc{left:63.795000px;}
.xe{left:66.982815px;}
.xa{left:68.025015px;}
.x3{left:186.788100px;}
.x4{left:187.800600px;}
.x6{left:273.392550px;}
.x5{left:274.762365px;}
.xd{left:403.935285px;}
.x8{left:521.970300px;}
.x7{left:523.379715px;}
.x9{left:538.450485px;}
.x2{left:544.231665px;}
.xb{left:892.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-32.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.400000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-15.360000pt;}
._9{margin-left:-12.712693pt;}
._a{margin-left:-11.568000pt;}
._6{margin-left:-6.192000pt;}
._2{margin-left:-4.442613pt;}
._4{margin-left:-3.456000pt;}
._0{margin-left:-1.680000pt;}
._1{width:0.899467pt;}
._5{width:2.560000pt;}
._3{width:4.352000pt;}
._8{width:16.629333pt;}
.fs4{font-size:33.600000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.932947pt;}
.y3a{bottom:48.933333pt;}
.y39{bottom:85.326573pt;}
.y6f{bottom:85.326947pt;}
.y2e{bottom:102.659907pt;}
.y6e{bottom:102.660280pt;}
.y2d{bottom:119.993240pt;}
.y6d{bottom:119.993613pt;}
.y2c{bottom:137.326573pt;}
.y6c{bottom:137.326947pt;}
.y2b{bottom:154.659907pt;}
.y6b{bottom:154.660280pt;}
.y2a{bottom:171.993240pt;}
.y6a{bottom:171.993613pt;}
.y29{bottom:189.326573pt;}
.y69{bottom:189.326947pt;}
.y28{bottom:206.659907pt;}
.y68{bottom:206.660280pt;}
.y27{bottom:223.993240pt;}
.y67{bottom:223.993613pt;}
.y38{bottom:241.326573pt;}
.y66{bottom:241.326947pt;}
.y26{bottom:258.659907pt;}
.y65{bottom:258.660280pt;}
.y25{bottom:275.993240pt;}
.y64{bottom:275.993613pt;}
.y24{bottom:293.326573pt;}
.y63{bottom:293.326947pt;}
.y23{bottom:310.659907pt;}
.y62{bottom:310.660280pt;}
.y22{bottom:327.993240pt;}
.y61{bottom:327.993613pt;}
.y21{bottom:345.326573pt;}
.y60{bottom:345.326947pt;}
.y20{bottom:362.659907pt;}
.y5f{bottom:362.660280pt;}
.y1f{bottom:379.993240pt;}
.y5e{bottom:379.993613pt;}
.y37{bottom:397.326573pt;}
.y5d{bottom:397.326947pt;}
.y1e{bottom:414.659907pt;}
.y5c{bottom:414.660280pt;}
.y1d{bottom:431.993240pt;}
.y5b{bottom:431.993613pt;}
.y1c{bottom:449.326573pt;}
.y5a{bottom:449.326947pt;}
.y1b{bottom:466.659907pt;}
.y72{bottom:466.660280pt;}
.y1a{bottom:483.993240pt;}
.y59{bottom:483.993613pt;}
.y19{bottom:501.326573pt;}
.y58{bottom:501.326947pt;}
.y18{bottom:518.659907pt;}
.y57{bottom:518.660280pt;}
.y36{bottom:535.993240pt;}
.y56{bottom:535.993613pt;}
.y17{bottom:553.326573pt;}
.y55{bottom:553.326947pt;}
.y16{bottom:570.659907pt;}
.y54{bottom:570.660280pt;}
.y15{bottom:587.993240pt;}
.y53{bottom:587.993613pt;}
.y14{bottom:605.326573pt;}
.y52{bottom:605.326947pt;}
.y13{bottom:622.659907pt;}
.y71{bottom:622.660280pt;}
.y12{bottom:639.993240pt;}
.y51{bottom:639.993613pt;}
.y11{bottom:657.326573pt;}
.y50{bottom:657.326947pt;}
.y10{bottom:674.659907pt;}
.y4f{bottom:674.660280pt;}
.yf{bottom:691.993240pt;}
.y4e{bottom:691.993613pt;}
.ye{bottom:709.326573pt;}
.y4d{bottom:709.326947pt;}
.yd{bottom:726.659907pt;}
.y4c{bottom:726.660280pt;}
.yc{bottom:743.993240pt;}
.y4b{bottom:743.993613pt;}
.y35{bottom:761.326573pt;}
.y4a{bottom:761.326947pt;}
.yb{bottom:778.659907pt;}
.y49{bottom:778.660280pt;}
.ya{bottom:795.993240pt;}
.y48{bottom:795.993613pt;}
.y9{bottom:813.326573pt;}
.y47{bottom:813.326947pt;}
.y8{bottom:830.659907pt;}
.y46{bottom:830.660280pt;}
.y7{bottom:847.993240pt;}
.y45{bottom:847.993613pt;}
.y6{bottom:865.326573pt;}
.y44{bottom:865.326947pt;}
.y43{bottom:882.660280pt;}
.y34{bottom:899.993240pt;}
.y42{bottom:899.993613pt;}
.y5{bottom:917.326573pt;}
.y73{bottom:917.326947pt;}
.y33{bottom:934.659907pt;}
.y41{bottom:934.660280pt;}
.y4{bottom:951.993240pt;}
.y40{bottom:951.993613pt;}
.y32{bottom:969.326573pt;}
.y3f{bottom:969.326947pt;}
.y3{bottom:986.659907pt;}
.y3e{bottom:986.660280pt;}
.y31{bottom:1003.993240pt;}
.y3d{bottom:1003.993613pt;}
.y2{bottom:1021.326573pt;}
.y70{bottom:1021.326947pt;}
.y30{bottom:1038.659907pt;}
.y3c{bottom:1038.660280pt;}
.y2f{bottom:1055.993240pt;}
.y3b{bottom:1055.993613pt;}
.h7{height:33.024000pt;}
.ha{height:34.687500pt;}
.h9{height:34.921875pt;}
.h3{height:35.184000pt;}
.h8{height:37.429688pt;}
.h5{height:46.656000pt;}
.h6{height:47.232000pt;}
.h4{height:93.824000pt;}
.h2{height:1122.528000pt;}
.h0{height:1122.533320pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w3{width:793.727947pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x1{left:-733.266680pt;}
.x0{left:0.000000pt;}
.xc{left:56.706667pt;}
.xe{left:59.540280pt;}
.xa{left:60.466680pt;}
.x3{left:166.033867pt;}
.x4{left:166.933867pt;}
.x6{left:243.015600pt;}
.x5{left:244.233213pt;}
.xd{left:359.053587pt;}
.x8{left:463.973600pt;}
.x7{left:465.226413pt;}
.x9{left:478.622653pt;}
.x2{left:483.761480pt;}
.xb{left:793.733333pt;}
}




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