
    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_d9c1b5e915da45bf05c40573.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_b924a3500f005dde780a3c2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_7b2be7eccff5f220d2468fdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_8c3cb3be3fc1330d0411d521.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_0a90c0ef215b9e2070916ce8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws3{word-spacing:-14.958623px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-3.965823px;}
._3{margin-left:-2.455253px;}
._2{margin-left:-1.030221px;}
._0{width:1.304731px;}
._1{width:3.110486px;}
._5{width:4.561074px;}
._6{width:5.755385px;}
._4{width:7.249441px;}
._7{width:8.386791px;}
._9{width:12.977513px;}
._a{width:14.494447px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs4{font-size:72.002705px;}
.fs3{font-size:131.764946px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y34{bottom:112.140060px;}
.y91{bottom:117.000068px;}
.y33{bottom:130.140060px;}
.y90{bottom:133.560036px;}
.y69{bottom:139.860077px;}
.y32{bottom:148.140060px;}
.y8f{bottom:150.120072px;}
.y68{bottom:157.860077px;}
.y31{bottom:166.140060px;}
.y8e{bottom:166.500068px;}
.y67{bottom:175.860077px;}
.y8d{bottom:183.060036px;}
.y30{bottom:193.140060px;}
.y66{bottom:193.860077px;}
.y8c{bottom:199.620072px;}
.y2f{bottom:211.140060px;}
.y65{bottom:211.860077px;}
.y8b{bottom:222.120072px;}
.y2e{bottom:229.140060px;}
.y64{bottom:229.860077px;}
.y8a{bottom:244.980079px;}
.y2d{bottom:247.140060px;}
.y63{bottom:247.860077px;}
.y2c{bottom:265.140060px;}
.y62{bottom:265.860077px;}
.y89{bottom:271.980079px;}
.y2b{bottom:283.140060px;}
.y61{bottom:283.860077px;}
.y88{bottom:289.620072px;}
.y2a{bottom:301.140060px;}
.y60{bottom:301.860077px;}
.y87{bottom:312.120072px;}
.y5f{bottom:319.860077px;}
.y29{bottom:328.140060px;}
.y86{bottom:328.500068px;}
.y5e{bottom:337.860077px;}
.y28{bottom:346.140060px;}
.y85{bottom:351.360077px;}
.y5d{bottom:355.860077px;}
.y27{bottom:364.140060px;}
.y84{bottom:369.000068px;}
.y5c{bottom:373.860077px;}
.y26{bottom:382.140060px;}
.y83{bottom:391.500068px;}
.y5b{bottom:391.860077px;}
.y25{bottom:400.140060px;}
.y82{bottom:408.060036px;}
.y5a{bottom:409.860077px;}
.y24{bottom:418.140060px;}
.y81{bottom:430.560036px;}
.y59{bottom:436.860077px;}
.y23{bottom:445.140060px;}
.y80{bottom:447.120072px;}
.y58{bottom:454.860077px;}
.y22{bottom:463.140060px;}
.y7f{bottom:469.620072px;}
.y57{bottom:472.860077px;}
.y21{bottom:481.140060px;}
.y56{bottom:490.860077px;}
.y7e{bottom:492.120072px;}
.y20{bottom:499.140060px;}
.y55{bottom:508.860077px;}
.y7d{bottom:514.620072px;}
.y1f{bottom:517.140060px;}
.y54{bottom:526.860077px;}
.y1e{bottom:535.140060px;}
.y7c{bottom:537.120072px;}
.y53{bottom:544.860077px;}
.y1d{bottom:553.140060px;}
.y7b{bottom:553.500068px;}
.y52{bottom:562.860077px;}
.y1c{bottom:571.140060px;}
.y7a{bottom:576.000068px;}
.y51{bottom:580.860077px;}
.y79{bottom:592.560036px;}
.y1b{bottom:598.140060px;}
.y50{bottom:598.860077px;}
.y78{bottom:615.060036px;}
.y4f{bottom:616.860077px;}
.y1a{bottom:624.420043px;}
.y77{bottom:631.620072px;}
.y19{bottom:639.720085px;}
.y4e{bottom:643.860077px;}
.y76{bottom:654.120072px;}
.y4d{bottom:661.860077px;}
.y18{bottom:663.480079px;}
.y75{bottom:676.620072px;}
.y17{bottom:678.420043px;}
.y4c{bottom:679.860077px;}
.y16{bottom:693.720051px;}
.y4b{bottom:697.860077px;}
.y74{bottom:699.120072px;}
.y73{bottom:715.500068px;}
.y4a{bottom:715.860077px;}
.y15{bottom:718.380066px;}
.y49{bottom:733.860077px;}
.y14{bottom:738.000068px;}
.y72{bottom:738.360077px;}
.y48{bottom:760.860077px;}
.y13{bottom:762.120072px;}
.y47{bottom:778.860077px;}
.y12{bottom:786.060070px;}
.y71{bottom:787.860077px;}
.y46{bottom:796.860077px;}
.y70{bottom:805.860077px;}
.y45{bottom:814.860077px;}
.y11{bottom:820.620072px;}
.y6f{bottom:823.860077px;}
.y44{bottom:832.860077px;}
.ya1{bottom:838.620072px;}
.y6e{bottom:841.860077px;}
.y10{bottom:844.560070px;}
.y43{bottom:859.860077px;}
.ya0{bottom:861.120072px;}
.yf{bottom:868.320065px;}
.y9f{bottom:877.500068px;}
.y42{bottom:877.860077px;}
.y41{bottom:895.860077px;}
.y9e{bottom:900.000068px;}
.y40{bottom:913.860077px;}
.y9d{bottom:916.560070px;}
.ye{bottom:928.800076px;}
.y3f{bottom:931.860077px;}
.y9c{bottom:939.060070px;}
.y6d{bottom:940.860077px;}
.y3e{bottom:949.860077px;}
.y6c{bottom:958.860077px;}
.y9b{bottom:961.560070px;}
.yd{bottom:964.800076px;}
.y3d{bottom:967.860077px;}
.y6b{bottom:976.860060px;}
.y9a{bottom:978.120072px;}
.y3c{bottom:985.860060px;}
.y99{bottom:994.500068px;}
.y6a{bottom:994.860060px;}
.yc{bottom:1002.060070px;}
.y98{bottom:1011.060070px;}
.y3b{bottom:1012.860060px;}
.y97{bottom:1027.620072px;}
.y3a{bottom:1030.860060px;}
.y96{bottom:1044.000068px;}
.y39{bottom:1048.860060px;}
.y95{bottom:1060.560070px;}
.y38{bottom:1066.860060px;}
.y94{bottom:1083.060070px;}
.y37{bottom:1084.860060px;}
.y9{bottom:1098.720068px;}
.y36{bottom:1102.860060px;}
.y93{bottom:1105.560070px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.y35{bottom:1120.860068px;}
.y92{bottom:1122.120063px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.h5{height:48.412173px;}
.ha{height:48.860434px;}
.h2{height:53.575923px;}
.h3{height:54.071997px;}
.h9{height:62.650791px;}
.h8{height:63.213312px;}
.h7{height:115.680357px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xe{left:85.140000px;}
.xf{left:106.379998px;}
.x1{left:318.060001px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.xb{left:544.139992px;}
.x2{left:570.240006px;}
.xc{left:574.920010px;}
.xa{left:606.960023px;}
.x5{left:622.799973px;}
.x3{left:636.120002px;}
.xd{left:654.480011px;}
.x9{left:673.919975px;}
.x7{left:825.659981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws3{word-spacing:-13.296554pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-3.525176pt;}
._3{margin-left:-2.182447pt;}
._2{margin-left:-0.915752pt;}
._0{width:1.159761pt;}
._1{width:2.764877pt;}
._5{width:4.054288pt;}
._6{width:5.115898pt;}
._4{width:6.443948pt;}
._7{width:7.454926pt;}
._9{width:11.535567pt;}
._a{width:12.883953pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs4{font-size:64.002404pt;}
.fs3{font-size:117.124396pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y34{bottom:99.680054pt;}
.y91{bottom:104.000061pt;}
.y33{bottom:115.680054pt;}
.y90{bottom:118.720032pt;}
.y69{bottom:124.320069pt;}
.y32{bottom:131.680054pt;}
.y8f{bottom:133.440064pt;}
.y68{bottom:140.320069pt;}
.y31{bottom:147.680054pt;}
.y8e{bottom:148.000061pt;}
.y67{bottom:156.320069pt;}
.y8d{bottom:162.720032pt;}
.y30{bottom:171.680054pt;}
.y66{bottom:172.320069pt;}
.y8c{bottom:177.440064pt;}
.y2f{bottom:187.680054pt;}
.y65{bottom:188.320069pt;}
.y8b{bottom:197.440064pt;}
.y2e{bottom:203.680054pt;}
.y64{bottom:204.320069pt;}
.y8a{bottom:217.760071pt;}
.y2d{bottom:219.680054pt;}
.y63{bottom:220.320069pt;}
.y2c{bottom:235.680054pt;}
.y62{bottom:236.320069pt;}
.y89{bottom:241.760071pt;}
.y2b{bottom:251.680054pt;}
.y61{bottom:252.320069pt;}
.y88{bottom:257.440064pt;}
.y2a{bottom:267.680054pt;}
.y60{bottom:268.320069pt;}
.y87{bottom:277.440064pt;}
.y5f{bottom:284.320069pt;}
.y29{bottom:291.680054pt;}
.y86{bottom:292.000061pt;}
.y5e{bottom:300.320069pt;}
.y28{bottom:307.680054pt;}
.y85{bottom:312.320069pt;}
.y5d{bottom:316.320069pt;}
.y27{bottom:323.680054pt;}
.y84{bottom:328.000061pt;}
.y5c{bottom:332.320069pt;}
.y26{bottom:339.680054pt;}
.y83{bottom:348.000061pt;}
.y5b{bottom:348.320069pt;}
.y25{bottom:355.680054pt;}
.y82{bottom:362.720032pt;}
.y5a{bottom:364.320069pt;}
.y24{bottom:371.680054pt;}
.y81{bottom:382.720032pt;}
.y59{bottom:388.320069pt;}
.y23{bottom:395.680054pt;}
.y80{bottom:397.440064pt;}
.y58{bottom:404.320069pt;}
.y22{bottom:411.680054pt;}
.y7f{bottom:417.440064pt;}
.y57{bottom:420.320069pt;}
.y21{bottom:427.680054pt;}
.y56{bottom:436.320069pt;}
.y7e{bottom:437.440064pt;}
.y20{bottom:443.680054pt;}
.y55{bottom:452.320069pt;}
.y7d{bottom:457.440064pt;}
.y1f{bottom:459.680054pt;}
.y54{bottom:468.320069pt;}
.y1e{bottom:475.680054pt;}
.y7c{bottom:477.440064pt;}
.y53{bottom:484.320069pt;}
.y1d{bottom:491.680054pt;}
.y7b{bottom:492.000061pt;}
.y52{bottom:500.320069pt;}
.y1c{bottom:507.680054pt;}
.y7a{bottom:512.000061pt;}
.y51{bottom:516.320069pt;}
.y79{bottom:526.720032pt;}
.y1b{bottom:531.680054pt;}
.y50{bottom:532.320069pt;}
.y78{bottom:546.720032pt;}
.y4f{bottom:548.320069pt;}
.y1a{bottom:555.040039pt;}
.y77{bottom:561.440064pt;}
.y19{bottom:568.640076pt;}
.y4e{bottom:572.320069pt;}
.y76{bottom:581.440064pt;}
.y4d{bottom:588.320069pt;}
.y18{bottom:589.760071pt;}
.y75{bottom:601.440064pt;}
.y17{bottom:603.040039pt;}
.y4c{bottom:604.320069pt;}
.y16{bottom:616.640046pt;}
.y4b{bottom:620.320069pt;}
.y74{bottom:621.440064pt;}
.y73{bottom:636.000061pt;}
.y4a{bottom:636.320069pt;}
.y15{bottom:638.560059pt;}
.y49{bottom:652.320069pt;}
.y14{bottom:656.000061pt;}
.y72{bottom:656.320069pt;}
.y48{bottom:676.320069pt;}
.y13{bottom:677.440064pt;}
.y47{bottom:692.320069pt;}
.y12{bottom:698.720063pt;}
.y71{bottom:700.320069pt;}
.y46{bottom:708.320069pt;}
.y70{bottom:716.320069pt;}
.y45{bottom:724.320069pt;}
.y11{bottom:729.440064pt;}
.y6f{bottom:732.320069pt;}
.y44{bottom:740.320069pt;}
.ya1{bottom:745.440064pt;}
.y6e{bottom:748.320069pt;}
.y10{bottom:750.720063pt;}
.y43{bottom:764.320069pt;}
.ya0{bottom:765.440064pt;}
.yf{bottom:771.840058pt;}
.y9f{bottom:780.000061pt;}
.y42{bottom:780.320069pt;}
.y41{bottom:796.320069pt;}
.y9e{bottom:800.000061pt;}
.y40{bottom:812.320069pt;}
.y9d{bottom:814.720063pt;}
.ye{bottom:825.600068pt;}
.y3f{bottom:828.320069pt;}
.y9c{bottom:834.720063pt;}
.y6d{bottom:836.320069pt;}
.y3e{bottom:844.320069pt;}
.y6c{bottom:852.320069pt;}
.y9b{bottom:854.720063pt;}
.yd{bottom:857.600068pt;}
.y3d{bottom:860.320069pt;}
.y6b{bottom:868.320054pt;}
.y9a{bottom:869.440064pt;}
.y3c{bottom:876.320054pt;}
.y99{bottom:884.000061pt;}
.y6a{bottom:884.320054pt;}
.yc{bottom:890.720063pt;}
.y98{bottom:898.720063pt;}
.y3b{bottom:900.320054pt;}
.y97{bottom:913.440064pt;}
.y3a{bottom:916.320054pt;}
.y96{bottom:928.000061pt;}
.y39{bottom:932.320054pt;}
.y95{bottom:942.720063pt;}
.y38{bottom:948.320054pt;}
.y94{bottom:962.720063pt;}
.y37{bottom:964.320054pt;}
.y9{bottom:976.640061pt;}
.y36{bottom:980.320054pt;}
.y93{bottom:982.720063pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.y35{bottom:996.320061pt;}
.y92{bottom:997.440056pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.h5{height:43.033043pt;}
.ha{height:43.431497pt;}
.h2{height:47.623043pt;}
.h3{height:48.063997pt;}
.h9{height:55.689592pt;}
.h8{height:56.189611pt;}
.h7{height:102.826984pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xe{left:75.680000pt;}
.xf{left:94.559998pt;}
.x1{left:282.720001pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.xb{left:483.679993pt;}
.x2{left:506.880005pt;}
.xc{left:511.040009pt;}
.xa{left:539.520020pt;}
.x5{left:553.599976pt;}
.x3{left:565.440002pt;}
.xd{left:581.760010pt;}
.x9{left:599.039978pt;}
.x7{left:733.919983pt;}
}




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