
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_420a0a033162f714a858de46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_a05836cd9db89c8ac8d227db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.998000;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_5dfb3bdaffb79414d0b92674.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_193304fd310aa593e98d50c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{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);}
.v2{vertical-align:-3.596771px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.804857px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000205px;}
.ls2{letter-spacing:85.666825px;}
.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:-115.444419px;}
.ws1{word-spacing:-0.000205px;}
.ws2{word-spacing:0.000000px;}
._0{width:1.043556px;}
._f{width:2.868453px;}
._e{width:5.885430px;}
._10{width:12.229101px;}
._c{width:15.816653px;}
._b{width:19.344026px;}
._d{width:25.241663px;}
._1{width:52.557277px;}
._9{width:62.141382px;}
._8{width:66.553045px;}
._a{width:67.777523px;}
._3{width:69.470165px;}
._5{width:73.348466px;}
._2{width:76.600831px;}
._7{width:85.232032px;}
._4{width:91.787933px;}
._6{width:151.538948px;}
.fc3{color:transparent;}
.fc2{color:rgb(93,201,225);}
.fc4{color:rgb(16,94,147);}
.fc1{color:rgb(12,94,146);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.013569px;}
.fs4{font-size:42.000824px;}
.fs7{font-size:52.129641px;}
.fs5{font-size:54.020354px;}
.fs9{font-size:65.994864px;}
.fs6{font-size:72.027138px;}
.fs8{font-size:78.014394px;}
.fs1{font-size:84.001650px;}
.fs3{font-size:108.040707px;}
.fs2{font-size:205.052254px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y6{bottom:35.130998px;}
.y52{bottom:38.892192px;}
.y5{bottom:47.960819px;}
.y4{bottom:58.089636px;}
.y51{bottom:60.275248px;}
.y3{bottom:68.218452px;}
.y61{bottom:73.379770px;}
.y2{bottom:78.347268px;}
.y2c{bottom:78.779023px;}
.y50{bottom:81.658305px;}
.y2b{bottom:95.660383px;}
.y60{bottom:95.888251px;}
.yf{bottom:98.543435px;}
.y4f{bottom:103.041361px;}
.y4e{bottom:124.424418px;}
.y5f{bottom:140.905162px;}
.y20{bottom:141.348313px;}
.y4d{bottom:145.807475px;}
.y5e{bottom:163.413643px;}
.y4c{bottom:167.190531px;}
.y5d{bottom:185.922123px;}
.y1f{bottom:187.725959px;}
.y4b{bottom:194.200708px;}
.y5c{bottom:230.939077px;}
.y4a{bottom:233.590549px;}
.y1d{bottom:234.102417px;}
.y5b{bottom:253.447558px;}
.y49{bottom:253.848182px;}
.y48{bottom:275.231239px;}
.y5a{bottom:275.956039px;}
.y1c{bottom:283.240644px;}
.y47{bottom:295.488871px;}
.y59{bottom:320.972953px;}
.y46{bottom:322.499048px;}
.y2f{bottom:324.051696px;}
.y2e{bottom:340.933057px;}
.y58{bottom:343.481434px;}
.y72{bottom:348.117458px;}
.y45{bottom:355.136345px;}
.y2d{bottom:357.814417px;}
.y57{bottom:365.989915px;}
.y44{bottom:375.393977px;}
.y71{bottom:378.503907px;}
.y56{bottom:388.498395px;}
.y43{bottom:396.407879px;}
.y24{bottom:403.330340px;}
.y70{bottom:408.890356px;}
.y42{bottom:417.336262px;}
.y23{bottom:417.960852px;}
.y55{bottom:433.515357px;}
.y30{bottom:451.010469px;}
.y54{bottom:456.023837px;}
.y29{bottom:457.584399px;}
.y1b{bottom:468.797422px;}
.y28{bottom:474.465760px;}
.y68{bottom:475.295621px;}
.y53{bottom:478.532318px;}
.y41{bottom:488.198629px;}
.y27{bottom:491.347120px;}
.y1a{bottom:495.807598px;}
.y67{bottom:506.807494px;}
.y40{bottom:510.707110px;}
.y3d{bottom:528.421999px;}
.y3e{bottom:528.986215px;}
.y19{bottom:529.570319px;}
.y32{bottom:532.378619px;}
.y3f{bottom:533.187429px;}
.y22{bottom:537.035075px;}
.y66{bottom:538.319367px;}
.ye{bottom:546.532712px;}
.y3c{bottom:550.930480px;}
.y18{bottom:550.953376px;}
.y65{bottom:569.831239px;}
.y3b{bottom:571.188113px;}
.y17{bottom:572.336433px;}
.yd{bottom:578.044585px;}
.y39{bottom:578.871770px;}
.y26{bottom:583.411530px;}
.y16{bottom:593.719489px;}
.y38{bottom:600.254827px;}
.y64{bottom:601.343112px;}
.yc{bottom:609.556458px;}
.y3a{bottom:620.512459px;}
.y37{bottom:621.637883px;}
.y2a{bottom:629.789147px;}
.y63{bottom:632.854985px;}
.yb{bottom:641.068331px;}
.y36{bottom:643.020940px;}
.y6b{bottom:661.383716px;}
.y62{bottom:664.366858px;}
.y35{bottom:665.529421px;}
.ya{bottom:672.580204px;}
.y21{bottom:676.165619px;}
.y6a{bottom:683.441663px;}
.y34{bottom:683.730537px;}
.y6f{bottom:695.873471px;}
.y69{bottom:703.249121px;}
.y15{bottom:712.378557px;}
.y1e{bottom:722.542095px;}
.y6e{bottom:727.385344px;}
.y14{bottom:729.259918px;}
.y13{bottom:746.141278px;}
.y6d{bottom:756.646369px;}
.y12{bottom:763.022639px;}
.y25{bottom:768.919680px;}
.y11{bottom:779.903999px;}
.y31{bottom:783.045439px;}
.y9{bottom:784.079207px;}
.y6c{bottom:787.032818px;}
.y10{bottom:796.785360px;}
.y33{bottom:830.938987px;}
.y8{bottom:839.221353px;}
.y7{bottom:839.223602px;}
.h3{height:34.212891px;}
.h8{height:39.900783px;}
.hb{height:49.523159px;}
.h9{height:51.319336px;}
.hd{height:62.695121px;}
.hf{height:64.829010px;}
.ha{height:68.425781px;}
.hc{height:74.113674px;}
.he{height:79.499978px;}
.h4{height:79.801567px;}
.h7{height:80.166205px;}
.h6{height:86.864729px;}
.h5{height:144.561839px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x22{left:23.197241px;}
.x20{left:29.510166px;}
.x1e{left:57.821615px;}
.x4{left:76.542344px;}
.x27{left:91.318032px;}
.x18{left:97.829744px;}
.x3b{left:102.004213px;}
.x24{left:110.287759px;}
.x23{left:127.642221px;}
.x19{left:142.852318px;}
.x26{left:145.231046px;}
.x1c{left:152.251856px;}
.x16{left:163.179738px;}
.x17{left:237.909724px;}
.x28{left:320.271484px;}
.x21{left:332.899867px;}
.x1d{left:338.838163px;}
.x2b{left:352.765992px;}
.x29{left:369.260488px;}
.x2a{left:377.894595px;}
.x25{left:387.212416px;}
.x1f{left:407.687817px;}
.x2c{left:455.561524px;}
.x1a{left:493.520955px;}
.x9{left:496.534814px;}
.x5{left:505.443716px;}
.x1{left:512.296413px;}
.x2{left:514.019718px;}
.x13{left:523.861814px;}
.x2e{left:527.361746px;}
.x8{left:531.618814px;}
.x3{left:532.698069px;}
.x12{left:535.485334px;}
.x14{left:547.495719px;}
.x30{left:550.501159px;}
.x2d{left:551.785279px;}
.x31{left:558.203279px;}
.x11{left:560.033646px;}
.x32{left:568.894808px;}
.x33{left:573.906462px;}
.x15{left:576.598481px;}
.x10{left:578.339074px;}
.xe{left:581.521913px;}
.xa{left:587.553483px;}
.x2f{left:593.267705px;}
.xb{left:624.182518px;}
.xc{left:628.983155px;}
.xd{left:637.221319px;}
.xf{left:655.289942px;}
.x7{left:875.944476px;}
.x34{left:882.223307px;}
.x3c{left:909.645745px;}
.x3d{left:914.657399px;}
.x36{left:924.268446px;}
.x6{left:977.354239px;}
.x3e{left:1020.482428px;}
.x1b{left:1022.579417px;}
.x39{left:1034.472077px;}
.x37{left:1044.776741px;}
.x3a{left:1165.970842px;}
.x38{left:1167.571060px;}
.x3f{left:1197.121252px;}
.x35{left:1204.252849px;}
@media print{
.v2{vertical-align:-3.197130pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.937651pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000182pt;}
.ls2{letter-spacing:76.148289pt;}
.ws0{word-spacing:-102.617262pt;}
.ws1{word-spacing:-0.000182pt;}
.ws2{word-spacing:0.000000pt;}
._0{width:0.927605pt;}
._f{width:2.549736pt;}
._e{width:5.231493pt;}
._10{width:10.870312pt;}
._c{width:14.059247pt;}
._b{width:17.194690pt;}
._d{width:22.437034pt;}
._1{width:46.717580pt;}
._9{width:55.236784pt;}
._8{width:59.158262pt;}
._a{width:60.246687pt;}
._3{width:61.751258pt;}
._5{width:65.198636pt;}
._2{width:68.089627pt;}
._7{width:75.761806pt;}
._4{width:81.589274pt;}
._6{width:134.701287pt;}
.fs0{font-size:32.012061pt;}
.fs4{font-size:37.334066pt;}
.fs7{font-size:46.337458pt;}
.fs5{font-size:48.018092pt;}
.fs9{font-size:58.662102pt;}
.fs6{font-size:64.024123pt;}
.fs8{font-size:69.346128pt;}
.fs1{font-size:74.668133pt;}
.fs3{font-size:96.036184pt;}
.fs2{font-size:182.268671pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y6{bottom:31.227554pt;}
.y52{bottom:34.570837pt;}
.y5{bottom:42.631840pt;}
.y4{bottom:51.635232pt;}
.y51{bottom:53.577998pt;}
.y3{bottom:60.638624pt;}
.y61{bottom:65.226463pt;}
.y2{bottom:69.642016pt;}
.y2c{bottom:70.025798pt;}
.y50{bottom:72.585160pt;}
.y2b{bottom:85.031452pt;}
.y60{bottom:85.234001pt;}
.yf{bottom:87.594165pt;}
.y4f{bottom:91.592321pt;}
.y4e{bottom:110.599483pt;}
.y5f{bottom:125.249033pt;}
.y20{bottom:125.642945pt;}
.y4d{bottom:129.606644pt;}
.y5e{bottom:145.256571pt;}
.y4c{bottom:148.613806pt;}
.y5d{bottom:165.264110pt;}
.y1f{bottom:166.867519pt;}
.y4b{bottom:172.622852pt;}
.y5c{bottom:205.279180pt;}
.y4a{bottom:207.636044pt;}
.y1d{bottom:208.091038pt;}
.y5b{bottom:225.286718pt;}
.y49{bottom:225.642828pt;}
.y48{bottom:244.649990pt;}
.y5a{bottom:245.294257pt;}
.y1c{bottom:251.769462pt;}
.y47{bottom:262.656774pt;}
.y59{bottom:285.309292pt;}
.y46{bottom:286.665820pt;}
.y2f{bottom:288.045952pt;}
.y2e{bottom:303.051606pt;}
.y58{bottom:305.316830pt;}
.y72{bottom:309.437741pt;}
.y45{bottom:315.676751pt;}
.y2d{bottom:318.057260pt;}
.y57{bottom:325.324369pt;}
.y44{bottom:333.683536pt;}
.y71{bottom:336.447918pt;}
.y56{bottom:345.331907pt;}
.y43{bottom:352.362559pt;}
.y24{bottom:358.515858pt;}
.y70{bottom:363.458094pt;}
.y42{bottom:370.965566pt;}
.y23{bottom:371.520758pt;}
.y55{bottom:385.346984pt;}
.y30{bottom:400.898194pt;}
.y54{bottom:405.354522pt;}
.y29{bottom:406.741688pt;}
.y1b{bottom:416.708819pt;}
.y28{bottom:421.747342pt;}
.y68{bottom:422.484996pt;}
.y53{bottom:425.362060pt;}
.y41{bottom:433.954337pt;}
.y27{bottom:436.752996pt;}
.y1a{bottom:440.717865pt;}
.y67{bottom:450.495550pt;}
.y40{bottom:453.961875pt;}
.y3d{bottom:469.708444pt;}
.y3e{bottom:470.209969pt;}
.y19{bottom:470.729173pt;}
.y32{bottom:473.225439pt;}
.y3f{bottom:473.944382pt;}
.y22{bottom:477.364511pt;}
.y66{bottom:478.506104pt;}
.ye{bottom:485.806855pt;}
.y3c{bottom:489.715982pt;}
.y18{bottom:489.736334pt;}
.y65{bottom:506.516657pt;}
.y3b{bottom:507.722767pt;}
.y17{bottom:508.743496pt;}
.yd{bottom:513.817409pt;}
.y39{bottom:514.552684pt;}
.y26{bottom:518.588026pt;}
.y16{bottom:527.750657pt;}
.y38{bottom:533.559846pt;}
.y64{bottom:534.527211pt;}
.yc{bottom:541.827963pt;}
.y3a{bottom:551.566630pt;}
.y37{bottom:552.567007pt;}
.y2a{bottom:559.812575pt;}
.y63{bottom:562.537765pt;}
.yb{bottom:569.838516pt;}
.y36{bottom:571.574169pt;}
.y6b{bottom:587.896637pt;}
.y62{bottom:590.548318pt;}
.y35{bottom:591.581707pt;}
.ya{bottom:597.849070pt;}
.y21{bottom:601.036106pt;}
.y6a{bottom:607.503700pt;}
.y34{bottom:607.760478pt;}
.y6f{bottom:618.554196pt;}
.y69{bottom:625.110330pt;}
.y15{bottom:633.225384pt;}
.y1e{bottom:642.259640pt;}
.y6e{bottom:646.564750pt;}
.y14{bottom:648.231038pt;}
.y13{bottom:663.236692pt;}
.y6d{bottom:672.574550pt;}
.y12{bottom:678.242345pt;}
.y25{bottom:683.484160pt;}
.y11{bottom:693.247999pt;}
.y31{bottom:696.040390pt;}
.y9{bottom:696.959295pt;}
.y6c{bottom:699.584727pt;}
.y10{bottom:708.253653pt;}
.y33{bottom:738.612433pt;}
.y8{bottom:745.974536pt;}
.y7{bottom:745.976535pt;}
.h3{height:30.411458pt;}
.h8{height:35.467363pt;}
.hb{height:44.020586pt;}
.h9{height:45.617187pt;}
.hd{height:55.728997pt;}
.hf{height:57.625787pt;}
.ha{height:60.822917pt;}
.hc{height:65.878822pt;}
.he{height:70.666647pt;}
.h4{height:70.934727pt;}
.h7{height:71.258849pt;}
.h6{height:77.213092pt;}
.h5{height:128.499413pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x22{left:20.619770pt;}
.x20{left:26.231259pt;}
.x1e{left:51.396991pt;}
.x4{left:68.037639pt;}
.x27{left:81.171584pt;}
.x18{left:86.959772pt;}
.x3b{left:90.670411pt;}
.x24{left:98.033564pt;}
.x23{left:113.459752pt;}
.x19{left:126.979838pt;}
.x26{left:129.094264pt;}
.x1c{left:135.334983pt;}
.x16{left:145.048656pt;}
.x17{left:211.475310pt;}
.x28{left:284.685763pt;}
.x21{left:295.910993pt;}
.x1d{left:301.189479pt;}
.x2b{left:313.569771pt;}
.x29{left:328.231545pt;}
.x2a{left:335.906307pt;}
.x25{left:344.188814pt;}
.x1f{left:362.389170pt;}
.x2c{left:404.943577pt;}
.x1a{left:438.685294pt;}
.x9{left:441.364279pt;}
.x5{left:449.283303pt;}
.x1{left:455.374589pt;}
.x2{left:456.906416pt;}
.x13{left:465.654946pt;}
.x2e{left:468.765997pt;}
.x8{left:472.550057pt;}
.x3{left:473.509395pt;}
.x12{left:475.986964pt;}
.x14{left:486.662861pt;}
.x30{left:489.334363pt;}
.x2d{left:490.475803pt;}
.x31{left:496.180693pt;}
.x11{left:497.807685pt;}
.x32{left:505.684273pt;}
.x33{left:510.139077pt;}
.x15{left:512.531983pt;}
.x10{left:514.079176pt;}
.xe{left:516.908367pt;}
.xa{left:522.269762pt;}
.x2f{left:527.349071pt;}
.xb{left:554.828905pt;}
.xc{left:559.096138pt;}
.xd{left:566.418950pt;}
.xf{left:582.479948pt;}
.x7{left:778.617312pt;}
.x34{left:784.198495pt;}
.x3c{left:808.573996pt;}
.x3d{left:813.028799pt;}
.x36{left:821.571952pt;}
.x6{left:868.759324pt;}
.x3e{left:907.095491pt;}
.x1b{left:908.959482pt;}
.x39{left:919.530735pt;}
.x37{left:928.690436pt;}
.x3a{left:1036.418526pt;}
.x38{left:1037.840942pt;}
.x3f{left:1064.107780pt;}
.x35{left:1070.446977pt;}
}




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