
    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_4c00affc53e6a6001fda96d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_28a190a9d8db4e0d2e8ddd39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_141664a8e09da79c7a25c774.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_28db3f21833858728f9db628.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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);}
.v1{vertical-align:-63.030832px;}
.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;}
}
.ws3{word-spacing:-20.013696px;}
.ws1{word-spacing:-15.010272px;}
.ws0{word-spacing:-0.048020px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-7.984374px;}
._5{margin-left:-6.612610px;}
._1{margin-left:-4.968250px;}
._3{margin-left:-3.341491px;}
._2{margin-left:-1.626763px;}
._0{width:2.929231px;}
.fc2{color:rgb(142,142,142);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.020172px;}
.fs1{font-size:54.026428px;}
.fs4{font-size:72.035237px;}
.fs5{font-size:81.039641px;}
.fs3{font-size:90.044046px;}
.fs2{font-size:108.052855px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.502195px;}
.y7{bottom:22.511005px;}
.y1{bottom:26.360536px;}
.y73{bottom:32.640724px;}
.y4e{bottom:38.268637px;}
.y72{bottom:58.528387px;}
.y27{bottom:61.905247px;}
.y4d{bottom:63.030749px;}
.y74{bottom:63.073856px;}
.y2{bottom:63.073928px;}
.y28{bottom:63.074014px;}
.y4f{bottom:63.074212px;}
.y26{bottom:86.667360px;}
.y71{bottom:101.299309px;}
.y4c{bottom:103.550570px;}
.y25{bottom:112.555023px;}
.y70{bottom:126.061421px;}
.y24{bottom:137.317136px;}
.y6f{bottom:151.949084px;}
.y4b{bottom:151.949245px;}
.y4a{bottom:176.711357px;}
.y23{bottom:180.088057px;}
.y6e{bottom:194.720006px;}
.y49{bottom:202.599020px;}
.y22{bottom:205.975721px;}
.y6d{bottom:219.482119px;}
.y48{bottom:227.361133px;}
.y21{bottom:230.737833px;}
.y47{bottom:252.123246px;}
.y20{bottom:255.499946px;}
.y6c{bottom:257.750838px;}
.y46{bottom:296.019718px;}
.y1f{bottom:299.396418px;}
.y6b{bottom:302.772861px;}
.y8a{bottom:311.777336px;}
.y6a{bottom:317.405019px;}
.y45{bottom:320.781831px;}
.y1e{bottom:324.158531px;}
.y89{bottom:337.664999px;}
.y44{bottom:346.669494px;}
.y1d{bottom:350.046194px;}
.y43{bottom:371.431606px;}
.y1c{bottom:374.808307px;}
.y69{bottom:380.435851px;}
.y88{bottom:380.435921px;}
.y1b{bottom:399.570419px;}
.y42{bottom:414.202528px;}
.y87{bottom:420.955742px;}
.y68{bottom:424.332323px;}
.y1a{bottom:425.458082px;}
.y41{bottom:440.090191px;}
.y67{bottom:449.094436px;}
.y19{bottom:450.220195px;}
.y40{bottom:464.852304px;}
.y86{bottom:472.731068px;}
.y66{bottom:473.856548px;}
.y3f{bottom:490.739967px;}
.y18{bottom:490.740016px;}
.y65{bottom:499.744211px;}
.y3e{bottom:515.502080px;}
.y85{bottom:517.753091px;}
.y64{bottom:524.506324px;}
.y17{bottom:539.138690px;}
.y63{bottom:550.393987px;}
.y3d{bottom:556.021900px;}
.y84{bottom:560.524013px;}
.y16{bottom:563.900803px;}
.y62{bottom:575.156100px;}
.y83{bottom:586.411676px;}
.y15{bottom:589.788466px;}
.y3c{bottom:604.420575px;}
.y14{bottom:614.550579px;}
.y61{bottom:617.927022px;}
.y82{bottom:629.182598px;}
.y3b{bottom:629.182688px;}
.y13{bottom:639.312691px;}
.y60{bottom:643.814685px;}
.y81{bottom:653.944710px;}
.y3a{bottom:653.944800px;}
.y12{bottom:665.200355px;}
.y5f{bottom:668.576797px;}
.y39{bottom:679.832463px;}
.y11{bottom:689.962467px;}
.y80{bottom:697.841183px;}
.y38{bottom:704.594576px;}
.y5e{bottom:712.473270px;}
.y10{bottom:733.858939px;}
.y5d{bottom:737.235382px;}
.y7f{bottom:740.612104px;}
.y37{bottom:748.491048px;}
.yf{bottom:758.621052px;}
.y5c{bottom:761.997495px;}
.y36{bottom:773.253161px;}
.y7e{bottom:783.383026px;}
.ye{bottom:783.383165px;}
.y35{bottom:798.015274px;}
.y5b{bottom:805.893967px;}
.yd{bottom:809.270828px;}
.y7d{bottom:827.279498px;}
.y5a{bottom:830.656080px;}
.y34{bottom:841.911746px;}
.yc{bottom:849.790648px;}
.y59{bottom:855.418193px;}
.y33{bottom:866.673858px;}
.y7c{bottom:870.050420px;}
.yb{bottom:876.803862px;}
.y32{bottom:891.435971px;}
.y7b{bottom:895.938083px;}
.y58{bottom:899.314665px;}
.ya{bottom:903.817076px;}
.y31{bottom:917.323634px;}
.y57{bottom:924.076778px;}
.y9{bottom:930.830290px;}
.y7a{bottom:938.709005px;}
.y30{bottom:942.085747px;}
.y56{bottom:949.964441px;}
.y2f{bottom:967.973410px;}
.y55{bottom:974.726553px;}
.y3{bottom:975.852313px;}
.y79{bottom:981.479927px;}
.y2e{bottom:992.735523px;}
.y78{bottom:1007.367590px;}
.y54{bottom:1017.497475px;}
.y2d{bottom:1017.497635px;}
.y53{bottom:1043.385138px;}
.y2c{bottom:1043.385298px;}
.y77{bottom:1050.138512px;}
.y5{bottom:1058.017505px;}
.y6{bottom:1062.562810px;}
.y52{bottom:1068.147251px;}
.y2b{bottom:1068.147411px;}
.y4{bottom:1090.658471px;}
.y51{bottom:1094.034914px;}
.y76{bottom:1094.034984px;}
.y2a{bottom:1094.035074px;}
.y50{bottom:1118.797027px;}
.y75{bottom:1118.797097px;}
.y29{bottom:1118.797187px;}
.h6{height:36.017610px;}
.h2{height:37.599795px;}
.h4{height:39.359097px;}
.hb{height:52.443622px;}
.h8{height:52.478795px;}
.h9{height:58.999075px;}
.h7{height:65.554528px;}
.h5{height:78.665433px;}
.ha{height:1136.805937px;}
.h3{height:1136.806045px;}
.hc{height:1136.806117px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:714.724602px;}
.w2{width:766.499908px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:22.124099px;}
.x4{left:25.500755px;}
.x8{left:50.649776px;}
.x2{left:62.999997px;}
.x7{left:70.522778px;}
.x5{left:88.887665px;}
.x9{left:133.553610px;}
.x3{left:646.980539px;}
.x1{left:816.671190px;}
@media print{
.v1{vertical-align:-56.027406pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.789952pt;}
.ws1{word-spacing:-13.342464pt;}
.ws0{word-spacing:-0.042685pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-7.097221pt;}
._5{margin-left:-5.877875pt;}
._1{margin-left:-4.416223pt;}
._3{margin-left:-2.970215pt;}
._2{margin-left:-1.446011pt;}
._0{width:2.603760pt;}
.fs0{font-size:42.684598pt;}
.fs1{font-size:48.023491pt;}
.fs4{font-size:64.031321pt;}
.fs5{font-size:72.035237pt;}
.fs3{font-size:80.039152pt;}
.fs2{font-size:96.046982pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.001952pt;}
.y7{bottom:20.009782pt;}
.y1{bottom:23.431587pt;}
.y73{bottom:29.013977pt;}
.y4e{bottom:34.016566pt;}
.y72{bottom:52.025233pt;}
.y27{bottom:55.026887pt;}
.y4d{bottom:56.027333pt;}
.y74{bottom:56.065650pt;}
.y2{bottom:56.065714pt;}
.y28{bottom:56.065791pt;}
.y4f{bottom:56.065967pt;}
.y26{bottom:77.037653pt;}
.y71{bottom:90.043830pt;}
.y4c{bottom:92.044951pt;}
.y25{bottom:100.048909pt;}
.y70{bottom:112.054597pt;}
.y24{bottom:122.059676pt;}
.y6f{bottom:135.065853pt;}
.y4b{bottom:135.065995pt;}
.y4a{bottom:157.076762pt;}
.y23{bottom:160.078273pt;}
.y6e{bottom:173.084450pt;}
.y49{bottom:180.088018pt;}
.y22{bottom:183.089529pt;}
.y6d{bottom:195.095217pt;}
.y48{bottom:202.098785pt;}
.y21{bottom:205.100296pt;}
.y47{bottom:224.109552pt;}
.y20{bottom:227.111063pt;}
.y6c{bottom:229.111856pt;}
.y46{bottom:263.128638pt;}
.y1f{bottom:266.130150pt;}
.y6b{bottom:269.131432pt;}
.y8a{bottom:277.135410pt;}
.y6a{bottom:282.137794pt;}
.y45{bottom:285.139405pt;}
.y1e{bottom:288.140916pt;}
.y89{bottom:300.146666pt;}
.y44{bottom:308.150661pt;}
.y1d{bottom:311.152172pt;}
.y43{bottom:330.161428pt;}
.y1c{bottom:333.162939pt;}
.y69{bottom:338.165201pt;}
.y88{bottom:338.165263pt;}
.y1b{bottom:355.173706pt;}
.y42{bottom:368.180025pt;}
.y87{bottom:374.182881pt;}
.y68{bottom:377.184287pt;}
.y1a{bottom:378.184962pt;}
.y41{bottom:391.191281pt;}
.y67{bottom:399.195054pt;}
.y19{bottom:400.195729pt;}
.y40{bottom:413.202048pt;}
.y86{bottom:420.205394pt;}
.y66{bottom:421.205821pt;}
.y3f{bottom:436.213304pt;}
.y18{bottom:436.213347pt;}
.y65{bottom:444.217077pt;}
.y3e{bottom:458.224071pt;}
.y85{bottom:460.224970pt;}
.y64{bottom:466.227844pt;}
.y17{bottom:479.234391pt;}
.y63{bottom:489.239100pt;}
.y3d{bottom:494.241689pt;}
.y84{bottom:498.243567pt;}
.y16{bottom:501.245158pt;}
.y62{bottom:511.249867pt;}
.y83{bottom:521.254823pt;}
.y15{bottom:524.256414pt;}
.y3c{bottom:537.262733pt;}
.y14{bottom:546.267181pt;}
.y61{bottom:549.268464pt;}
.y82{bottom:559.273420pt;}
.y3b{bottom:559.273500pt;}
.y13{bottom:568.277948pt;}
.y60{bottom:572.279720pt;}
.y81{bottom:581.284187pt;}
.y3a{bottom:581.284267pt;}
.y12{bottom:591.289204pt;}
.y5f{bottom:594.290487pt;}
.y39{bottom:604.295523pt;}
.y11{bottom:613.299971pt;}
.y80{bottom:620.303273pt;}
.y38{bottom:626.306290pt;}
.y5e{bottom:633.309573pt;}
.y10{bottom:652.319057pt;}
.y5d{bottom:655.320340pt;}
.y7f{bottom:658.321870pt;}
.y37{bottom:665.325376pt;}
.yf{bottom:674.329824pt;}
.y5c{bottom:677.331107pt;}
.y36{bottom:687.336143pt;}
.y7e{bottom:696.340468pt;}
.ye{bottom:696.340591pt;}
.y35{bottom:709.346910pt;}
.y5b{bottom:716.350193pt;}
.yd{bottom:719.351847pt;}
.y7d{bottom:735.359554pt;}
.y5a{bottom:738.360960pt;}
.y34{bottom:748.365996pt;}
.yc{bottom:755.369465pt;}
.y59{bottom:760.371727pt;}
.y33{bottom:770.376763pt;}
.y7c{bottom:773.378151pt;}
.yb{bottom:779.381211pt;}
.y32{bottom:792.387530pt;}
.y7b{bottom:796.389407pt;}
.y58{bottom:799.390813pt;}
.ya{bottom:803.392956pt;}
.y31{bottom:815.398786pt;}
.y57{bottom:821.401580pt;}
.y9{bottom:827.404702pt;}
.y7a{bottom:834.408005pt;}
.y30{bottom:837.409553pt;}
.y56{bottom:844.412836pt;}
.y2f{bottom:860.420809pt;}
.y55{bottom:866.423603pt;}
.y3{bottom:867.424278pt;}
.y79{bottom:872.426602pt;}
.y2e{bottom:882.431576pt;}
.y78{bottom:895.437858pt;}
.y54{bottom:904.442200pt;}
.y2d{bottom:904.442342pt;}
.y53{bottom:927.453456pt;}
.y2c{bottom:927.453599pt;}
.y77{bottom:933.456455pt;}
.y5{bottom:940.460004pt;}
.y6{bottom:944.500275pt;}
.y52{bottom:949.464223pt;}
.y2b{bottom:949.464365pt;}
.y4{bottom:969.474197pt;}
.y51{bottom:972.475479pt;}
.y76{bottom:972.475542pt;}
.y2a{bottom:972.475622pt;}
.y50{bottom:994.486246pt;}
.y75{bottom:994.486308pt;}
.y29{bottom:994.486388pt;}
.h6{height:32.015653pt;}
.h2{height:33.422040pt;}
.h4{height:34.985864pt;}
.hb{height:46.616553pt;}
.h8{height:46.647818pt;}
.h9{height:52.443622pt;}
.h7{height:58.270691pt;}
.h5{height:69.924829pt;}
.ha{height:1010.494166pt;}
.h3{height:1010.494262pt;}
.hc{height:1010.494326pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:635.310758pt;}
.w2{width:681.333252pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:19.665866pt;}
.x4{left:22.667338pt;}
.x8{left:45.022023pt;}
.x2{left:55.999998pt;}
.x7{left:62.686914pt;}
.x5{left:79.011258pt;}
.x9{left:118.714320pt;}
.x3{left:575.093812pt;}
.x1{left:725.929947pt;}
}




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