
    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_f1e2ed949a6d53b01c6425de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_a8467b23823d42ded4f2a73a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_e56560f3ef0b887f1e1040e5.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_405a3f7c437059a1db45306e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_d13222fcbcd23697550db379.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_58b024b15d1b3e7b19df7afc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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;}
}
.ws3{word-spacing:-20.288121px;}
.ws0{word-spacing:-18.984000px;}
.ws5{word-spacing:-18.544611px;}
.ws4{word-spacing:-18.443747px;}
.ws2{word-spacing:-13.335936px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-18.267394px;}
._6{margin-left:-8.744346px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-6.143428px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.011537px;}
._1{margin-left:-1.996800px;}
._4{width:1.283298px;}
._0{width:5.587200px;}
._7{width:2071.663814px;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,41,87);}
.fc7{color:rgb(18,18,18);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.999996px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:72.045886px;}
.fs6{font-size:79.250474px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:85.554489px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:202.629054px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.000001px;}
.y1c{bottom:3.000010px;}
.yc{bottom:8.040000px;}
.y1b{bottom:22.620074px;}
.y3f{bottom:30.394481px;}
.y41{bottom:43.661426px;}
.y1d{bottom:43.661487px;}
.y6f{bottom:43.661962px;}
.y6d{bottom:54.034659px;}
.y3e{bottom:61.914556px;}
.y6c{bottom:85.554734px;}
.y3d{bottom:93.434631px;}
.y13{bottom:99.795000px;}
.y17{bottom:113.670000px;}
.y3c{bottom:124.954706px;}
.y16{bottom:135.750000px;}
.y6b{bottom:150.846318px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y3b{bottom:156.474781px;}
.y15{bottom:157.830000px;}
.y6a{bottom:182.366393px;}
.y69{bottom:213.886468px;}
.y3a{bottom:221.766365px;}
.y68{bottom:245.406543px;}
.y39{bottom:253.286440px;}
.y67{bottom:276.926618px;}
.y38{bottom:284.806515px;}
.y66{bottom:308.446693px;}
.y37{bottom:316.326590px;}
.ya{bottom:344.680500px;}
.y36{bottom:347.846665px;}
.y65{bottom:373.738277px;}
.y35{bottom:379.366740px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.y64{bottom:405.258352px;}
.y34{bottom:410.886815px;}
.yb{bottom:434.850000px;}
.y63{bottom:436.778427px;}
.y33{bottom:442.406890px;}
.y8{bottom:446.698500px;}
.y62{bottom:468.298502px;}
.y32{bottom:473.926965px;}
.y10{bottom:488.055000px;}
.y7{bottom:497.707500px;}
.y61{bottom:499.818577px;}
.y11{bottom:538.230000px;}
.y31{bottom:539.218549px;}
.y6{bottom:548.716500px;}
.y60{bottom:565.110161px;}
.y18{bottom:589.605000px;}
.y5f{bottom:596.630236px;}
.y5{bottom:599.725500px;}
.y5e{bottom:628.150311px;}
.ye{bottom:631.920000px;}
.y5d{bottom:659.670386px;}
.y5c{bottom:691.190461px;}
.y5b{bottom:722.710536px;}
.y5a{bottom:754.230611px;}
.y4{bottom:778.225500px;}
.y12{bottom:815.670000px;}
.y59{bottom:819.522195px;}
.y58{bottom:851.042270px;}
.y57{bottom:882.562345px;}
.y3{bottom:905.716500px;}
.y56{bottom:947.853929px;}
.y2{bottom:964.228500px;}
.y30{bottom:969.242430px;}
.y55{bottom:979.374004px;}
.y1{bottom:989.716500px;}
.y2f{bottom:1000.762505px;}
.y54{bottom:1010.894079px;}
.y2e{bottom:1032.282580px;}
.y53{bottom:1042.414154px;}
.y2d{bottom:1063.802655px;}
.y52{bottom:1073.934229px;}
.y2c{bottom:1095.322730px;}
.y51{bottom:1105.454304px;}
.y2b{bottom:1160.614314px;}
.y50{bottom:1170.745888px;}
.y2a{bottom:1192.134389px;}
.y4f{bottom:1202.265963px;}
.y6e{bottom:1203.391680px;}
.y29{bottom:1223.654464px;}
.y4e{bottom:1233.786038px;}
.y28{bottom:1255.174539px;}
.y4d{bottom:1265.306113px;}
.y27{bottom:1286.694614px;}
.y1e{bottom:1295.700350px;}
.y4c{bottom:1296.826188px;}
.y26{bottom:1318.214689px;}
.y4b{bottom:1328.346263px;}
.y25{bottom:1349.734764px;}
.y4a{bottom:1393.637847px;}
.y24{bottom:1415.026348px;}
.y49{bottom:1425.157922px;}
.y23{bottom:1446.546423px;}
.y48{bottom:1456.677997px;}
.y22{bottom:1478.066498px;}
.y47{bottom:1488.198072px;}
.y21{bottom:1509.586573px;}
.y46{bottom:1519.718147px;}
.y20{bottom:1541.106648px;}
.y74{bottom:1543.357935px;}
.y45{bottom:1585.009731px;}
.y1f{bottom:1600.769647px;}
.y73{bottom:1608.649519px;}
.y44{bottom:1616.529806px;}
.y72{bottom:1635.666726px;}
.y43{bottom:1648.049881px;}
.y71{bottom:1659.306782px;}
.y42{bottom:1679.569956px;}
.y40{bottom:1681.821269px;}
.y70{bottom:1682.946838px;}
.y19{bottom:1752.119942px;}
.hd{height:13.499999px;}
.hb{height:13.500001px;}
.h4{height:33.000000px;}
.hc{height:34.945310px;}
.h12{height:55.871584px;}
.h3{height:58.406250px;}
.h11{height:61.458743px;}
.hf{height:63.566986px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h10{height:150.553387px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h13{height:1700.958097px;}
.he{height:1700.958457px;}
.ha{height:1788.000000px;}
.h9{height:1788.119940px;}
.we{width:61.320110px;}
.wb{width:125.999995px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.wc{width:1138.320005px;}
.wf{width:1177.499939px;}
.wd{width:1202.999890px;}
.w9{width:1264.320000px;}
.wa{width:1264.500000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xd{left:5.109386px;}
.xa{left:39.679684px;}
.xe{left:43.499996px;}
.x10{left:52.908697px;}
.xf{left:69.794452px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xb{left:350.179661px;}
.x12{left:383.165912px;}
.x11{left:539.218426px;}
.xc{left:1202.999890px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-18.033886pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5{word-spacing:-16.484099pt;}
.ws4{word-spacing:-16.394442pt;}
.ws2{word-spacing:-11.854166pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-16.237683pt;}
._6{margin-left:-7.772752pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.460825pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.676922pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.140710pt;}
._0{width:4.966400pt;}
._7{width:1841.478946pt;}
.fs3{font-size:42.666663pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:64.040787pt;}
.fs6{font-size:70.444866pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:76.048435pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:180.114714pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.666668pt;}
.y1c{bottom:2.666676pt;}
.yc{bottom:7.146667pt;}
.y1b{bottom:20.106732pt;}
.y3f{bottom:27.017316pt;}
.y41{bottom:38.810157pt;}
.y1d{bottom:38.810210pt;}
.y6f{bottom:38.810633pt;}
.y6d{bottom:48.030808pt;}
.y3e{bottom:55.035161pt;}
.y6c{bottom:76.048652pt;}
.y3d{bottom:83.053005pt;}
.y13{bottom:88.706667pt;}
.y17{bottom:101.040000pt;}
.y3c{bottom:111.070850pt;}
.y16{bottom:120.666667pt;}
.y6b{bottom:134.085616pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y3b{bottom:139.088694pt;}
.y15{bottom:140.293333pt;}
.y6a{bottom:162.103460pt;}
.y69{bottom:190.121305pt;}
.y3a{bottom:197.125658pt;}
.y68{bottom:218.139149pt;}
.y39{bottom:225.143502pt;}
.y67{bottom:246.156994pt;}
.y38{bottom:253.161347pt;}
.y66{bottom:274.174838pt;}
.y37{bottom:281.179191pt;}
.ya{bottom:306.382667pt;}
.y36{bottom:309.197036pt;}
.y65{bottom:332.211802pt;}
.y35{bottom:337.214880pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.y64{bottom:360.229646pt;}
.y34{bottom:365.232725pt;}
.yb{bottom:386.533333pt;}
.y63{bottom:388.247490pt;}
.y33{bottom:393.250569pt;}
.y8{bottom:397.065333pt;}
.y62{bottom:416.265335pt;}
.y32{bottom:421.268413pt;}
.y10{bottom:433.826667pt;}
.y7{bottom:442.406667pt;}
.y61{bottom:444.283179pt;}
.y11{bottom:478.426667pt;}
.y31{bottom:479.305377pt;}
.y6{bottom:487.748000pt;}
.y60{bottom:502.320143pt;}
.y18{bottom:524.093333pt;}
.y5f{bottom:530.337987pt;}
.y5{bottom:533.089333pt;}
.y5e{bottom:558.355832pt;}
.ye{bottom:561.706667pt;}
.y5d{bottom:586.373676pt;}
.y5c{bottom:614.391521pt;}
.y5b{bottom:642.409365pt;}
.y5a{bottom:670.427210pt;}
.y4{bottom:691.756000pt;}
.y12{bottom:725.040000pt;}
.y59{bottom:728.464173pt;}
.y58{bottom:756.482018pt;}
.y57{bottom:784.499862pt;}
.y3{bottom:805.081333pt;}
.y56{bottom:842.536826pt;}
.y2{bottom:857.092000pt;}
.y30{bottom:861.548827pt;}
.y55{bottom:870.554670pt;}
.y1{bottom:879.748000pt;}
.y2f{bottom:889.566671pt;}
.y54{bottom:898.572515pt;}
.y2e{bottom:917.584515pt;}
.y53{bottom:926.590359pt;}
.y2d{bottom:945.602360pt;}
.y52{bottom:954.608204pt;}
.y2c{bottom:973.620204pt;}
.y51{bottom:982.626048pt;}
.y2b{bottom:1031.657168pt;}
.y50{bottom:1040.663012pt;}
.y2a{bottom:1059.675012pt;}
.y4f{bottom:1068.680856pt;}
.y6e{bottom:1069.681493pt;}
.y29{bottom:1087.692857pt;}
.y4e{bottom:1096.698700pt;}
.y28{bottom:1115.710701pt;}
.y4d{bottom:1124.716545pt;}
.y27{bottom:1143.728546pt;}
.y1e{bottom:1151.733644pt;}
.y4c{bottom:1152.734389pt;}
.y26{bottom:1171.746390pt;}
.y4b{bottom:1180.752234pt;}
.y25{bottom:1199.764235pt;}
.y4a{bottom:1238.789197pt;}
.y24{bottom:1257.801198pt;}
.y49{bottom:1266.807042pt;}
.y23{bottom:1285.819043pt;}
.y48{bottom:1294.824886pt;}
.y22{bottom:1313.836887pt;}
.y47{bottom:1322.842731pt;}
.y21{bottom:1341.854732pt;}
.y46{bottom:1350.860575pt;}
.y20{bottom:1369.872576pt;}
.y74{bottom:1371.873720pt;}
.y45{bottom:1408.897539pt;}
.y1f{bottom:1422.906353pt;}
.y73{bottom:1429.910683pt;}
.y44{bottom:1436.915383pt;}
.y72{bottom:1453.925978pt;}
.y43{bottom:1464.933228pt;}
.y71{bottom:1474.939362pt;}
.y42{bottom:1492.951072pt;}
.y40{bottom:1494.952239pt;}
.y70{bottom:1495.952745pt;}
.y19{bottom:1557.439948pt;}
.hd{height:11.999999pt;}
.hb{height:12.000001pt;}
.h4{height:29.333333pt;}
.hc{height:31.062497pt;}
.h12{height:49.663631pt;}
.h3{height:51.916667pt;}
.h11{height:54.629994pt;}
.hf{height:56.503987pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h10{height:133.825233pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h13{height:1511.962753pt;}
.he{height:1511.963073pt;}
.ha{height:1589.333333pt;}
.h9{height:1589.439947pt;}
.we{width:54.506765pt;}
.wb{width:111.999995pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.wc{width:1011.840005pt;}
.wf{width:1046.666612pt;}
.wd{width:1069.333235pt;}
.w9{width:1123.840000pt;}
.wa{width:1124.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xd{left:4.541677pt;}
.xa{left:35.270830pt;}
.xe{left:38.666663pt;}
.x10{left:47.029953pt;}
.xf{left:62.039513pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xb{left:311.270810pt;}
.x12{left:340.591922pt;}
.x11{left:479.305268pt;}
.xc{left:1069.333235pt;}
}




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