
    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_e9cf5f3e721c643b25417cb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_9765959d4bfb8755bc6e111f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_8435583a6242d58042ff2e91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_7d7d861f214f3b3d6e8be223.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.188800px;}
.ls19{letter-spacing:-2.109600px;}
.ls17{letter-spacing:-1.101600px;}
.ls10{letter-spacing:-0.950400px;}
.ls12{letter-spacing:-0.892800px;}
.ls14{letter-spacing:-0.727200px;}
.lsa{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.712800px;}
.ls1c{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.532800px;}
.ls9{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.345600px;}
.ls11{letter-spacing:-0.266400px;}
.ls1a{letter-spacing:-0.223200px;}
.ls5{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.028800px;}
.ls6{letter-spacing:-0.021600px;}
.lsc{letter-spacing:-0.014400px;}
.ls8{letter-spacing:-0.007200px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls1b{letter-spacing:0.008640px;}
.ls15{letter-spacing:0.008928px;}
.ls7{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.021600px;}
.ls1{letter-spacing:0.028800px;}
.lsb{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.043200px;}
.lsf{letter-spacing:0.820800px;}
.ls18{letter-spacing:0.979200px;}
.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:-14.644800px;}
.ws7{word-spacing:-14.637600px;}
.wse{word-spacing:-14.630400px;}
.ws1{word-spacing:-14.623200px;}
.ws0{word-spacing:-14.616000px;}
.ws4{word-spacing:-14.608800px;}
.ws8{word-spacing:-14.601600px;}
.wsf{word-spacing:-14.594400px;}
.ws2{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.349600px;}
.wsc{word-spacing:-14.270400px;}
.wsd{word-spacing:-14.184000px;}
.wsb{word-spacing:-13.903200px;}
.ws5{word-spacing:-13.896000px;}
.ws9{word-spacing:-13.665600px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-6.012000px;}
._5{margin-left:-4.972896px;}
._4{margin-left:-3.909600px;}
._0{margin-left:-2.361600px;}
._1{margin-left:-1.346400px;}
._3{width:1.336896px;}
._6{width:3.158208px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.060000px;}
.y2{bottom:51.000000px;}
.y1{bottom:57.420000px;}
.y32{bottom:126.180000px;}
.y31{bottom:148.140000px;}
.y30{bottom:170.100000px;}
.y2f{bottom:192.060000px;}
.y2e{bottom:214.380000px;}
.y2d{bottom:236.340000px;}
.y2c{bottom:258.300000px;}
.y2b{bottom:280.260000px;}
.y2a{bottom:302.220000px;}
.y29{bottom:324.180000px;}
.y28{bottom:346.140000px;}
.y27{bottom:368.100000px;}
.y26{bottom:390.060000px;}
.y25{bottom:412.020000px;}
.y24{bottom:433.980000px;}
.y23{bottom:455.940000px;}
.y22{bottom:477.900000px;}
.y21{bottom:499.860000px;}
.y20{bottom:521.820000px;}
.y1f{bottom:543.780000px;}
.y1e{bottom:565.740000px;}
.y1d{bottom:587.700000px;}
.y1c{bottom:609.660000px;}
.y1b{bottom:631.620000px;}
.y1a{bottom:653.580000px;}
.y19{bottom:675.540000px;}
.y18{bottom:697.500000px;}
.y17{bottom:719.460000px;}
.y16{bottom:741.420000px;}
.y15{bottom:763.380000px;}
.y14{bottom:785.340000px;}
.y13{bottom:807.300000px;}
.y12{bottom:829.620000px;}
.y11{bottom:851.580000px;}
.y10{bottom:873.540000px;}
.yf{bottom:895.500000px;}
.ye{bottom:917.460000px;}
.yd{bottom:939.420000px;}
.yc{bottom:961.380000px;}
.yb{bottom:983.340000px;}
.ya{bottom:1005.300000px;}
.y9{bottom:1027.260000px;}
.y8{bottom:1049.220000px;}
.y7{bottom:1071.180000px;}
.y6{bottom:1093.140000px;}
.y5{bottom:1115.100000px;}
.y4{bottom:1137.060000px;}
.h3{height:24.000000px;}
.h5{height:47.988281px;}
.h2{height:48.023438px;}
.h4{height:1251.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w4{width:19.500000px;}
.w3{width:880.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:12.000000px;}
.x4{left:96.720108px;}
.x1{left:108.720108px;}
.xa{left:118.020048px;}
.x9{left:123.731856px;}
.x52{left:133.347060px;}
.x20{left:143.146872px;}
.x53{left:150.720108px;}
.x21{left:163.062900px;}
.xc{left:169.118568px;}
.x7{left:178.136136px;}
.x12{left:181.519920px;}
.x1a{left:189.808020px;}
.xe{left:198.333396px;}
.x4c{left:206.621460px;}
.x17{left:214.601940px;}
.x1f{left:220.473036px;}
.x16{left:222.512112px;}
.x51{left:224.586324px;}
.x18{left:228.181032px;}
.xb{left:231.753420px;}
.x50{left:235.493532px;}
.x23{left:245.064852px;}
.x3f{left:259.637112px;}
.x4e{left:268.408584px;}
.xd{left:286.724988px;}
.x1c{left:296.397000px;}
.x46{left:299.908584px;}
.x37{left:306.271872px;}
.x38{left:319.332420px;}
.x34{left:321.476940px;}
.x2f{left:323.507232px;}
.x3a{left:335.803104px;}
.x2d{left:337.640040px;}
.x3c{left:342.706536px;}
.x45{left:345.527856px;}
.x56{left:353.117556px;}
.x19{left:356.000400px;}
.xf{left:357.916392px;}
.x5{left:360.430056px;}
.x32{left:364.956444px;}
.x54{left:376.039440px;}
.x24{left:382.819680px;}
.x1b{left:405.491760px;}
.x29{left:424.814040px;}
.x55{left:429.933960px;}
.x15{left:434.310840px;}
.x2c{left:440.190720px;}
.x35{left:443.930040px;}
.x3b{left:449.085240px;}
.x42{left:451.818720px;}
.x31{left:467.902800px;}
.x13{left:471.817800px;}
.x30{left:474.292440px;}
.x2b{left:492.468120px;}
.x33{left:511.584480px;}
.x44{left:521.647920px;}
.x48{left:531.834480px;}
.x3e{left:535.007160px;}
.x26{left:545.949720px;}
.x41{left:562.183200px;}
.x14{left:575.023680px;}
.x47{left:578.126520px;}
.x4a{left:599.378400px;}
.x10{left:613.757160px;}
.x40{left:615.629160px;}
.x2e{left:632.653560px;}
.x25{left:634.376520px;}
.x4f{left:638.357760px;}
.x4b{left:644.132160px;}
.x2a{left:655.153560px;}
.x1e{left:662.185080px;}
.x6{left:666.254160px;}
.x11{left:668.188080px;}
.x39{left:670.587480px;}
.x43{left:686.407680px;}
.x22{left:687.427200px;}
.x36{left:692.436960px;}
.x28{left:714.277800px;}
.x8{left:735.151680px;}
.x27{left:751.824720px;}
.x1d{left:755.560080px;}
.x3d{left:766.500000px;}
.x2{left:775.500000px;}
.x49{left:778.798440px;}
.x4d{left:780.441840px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.945600pt;}
.ls19{letter-spacing:-1.875200pt;}
.ls17{letter-spacing:-0.979200pt;}
.ls10{letter-spacing:-0.844800pt;}
.ls12{letter-spacing:-0.793600pt;}
.ls14{letter-spacing:-0.646400pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.633600pt;}
.ls1c{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.473600pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.307200pt;}
.ls11{letter-spacing:-0.236800pt;}
.ls1a{letter-spacing:-0.198400pt;}
.ls5{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.025600pt;}
.ls6{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:-0.006400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls1b{letter-spacing:0.007680pt;}
.ls15{letter-spacing:0.007936pt;}
.ls7{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.019200pt;}
.ls1{letter-spacing:0.025600pt;}
.lsb{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.038400pt;}
.lsf{letter-spacing:0.729600pt;}
.ls18{letter-spacing:0.870400pt;}
.ws3{word-spacing:-13.017600pt;}
.ws7{word-spacing:-13.011200pt;}
.wse{word-spacing:-13.004800pt;}
.ws1{word-spacing:-12.998400pt;}
.ws0{word-spacing:-12.992000pt;}
.ws4{word-spacing:-12.985600pt;}
.ws8{word-spacing:-12.979200pt;}
.wsf{word-spacing:-12.972800pt;}
.ws2{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.755200pt;}
.wsc{word-spacing:-12.684800pt;}
.wsd{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.358400pt;}
.ws5{word-spacing:-12.352000pt;}
.ws9{word-spacing:-12.147200pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-5.344000pt;}
._5{margin-left:-4.420352pt;}
._4{margin-left:-3.475200pt;}
._0{margin-left:-2.099200pt;}
._1{margin-left:-1.196800pt;}
._3{width:1.188352pt;}
._6{width:2.807296pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:5.386667pt;}
.y2{bottom:45.333333pt;}
.y1{bottom:51.040000pt;}
.y32{bottom:112.160000pt;}
.y31{bottom:131.680000pt;}
.y30{bottom:151.200000pt;}
.y2f{bottom:170.720000pt;}
.y2e{bottom:190.560000pt;}
.y2d{bottom:210.080000pt;}
.y2c{bottom:229.600000pt;}
.y2b{bottom:249.120000pt;}
.y2a{bottom:268.640000pt;}
.y29{bottom:288.160000pt;}
.y28{bottom:307.680000pt;}
.y27{bottom:327.200000pt;}
.y26{bottom:346.720000pt;}
.y25{bottom:366.240000pt;}
.y24{bottom:385.760000pt;}
.y23{bottom:405.280000pt;}
.y22{bottom:424.800000pt;}
.y21{bottom:444.320000pt;}
.y20{bottom:463.840000pt;}
.y1f{bottom:483.360000pt;}
.y1e{bottom:502.880000pt;}
.y1d{bottom:522.400000pt;}
.y1c{bottom:541.920000pt;}
.y1b{bottom:561.440000pt;}
.y1a{bottom:580.960000pt;}
.y19{bottom:600.480000pt;}
.y18{bottom:620.000000pt;}
.y17{bottom:639.520000pt;}
.y16{bottom:659.040000pt;}
.y15{bottom:678.560000pt;}
.y14{bottom:698.080000pt;}
.y13{bottom:717.600000pt;}
.y12{bottom:737.440000pt;}
.y11{bottom:756.960000pt;}
.y10{bottom:776.480000pt;}
.yf{bottom:796.000000pt;}
.ye{bottom:815.520000pt;}
.yd{bottom:835.040000pt;}
.yc{bottom:854.560000pt;}
.yb{bottom:874.080000pt;}
.ya{bottom:893.600000pt;}
.y9{bottom:913.120000pt;}
.y8{bottom:932.640000pt;}
.y7{bottom:952.160000pt;}
.y6{bottom:971.680000pt;}
.y5{bottom:991.200000pt;}
.y4{bottom:1010.720000pt;}
.h3{height:21.333333pt;}
.h5{height:42.656250pt;}
.h2{height:42.687500pt;}
.h4{height:1112.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w4{width:17.333333pt;}
.w3{width:782.933333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:10.666667pt;}
.x4{left:85.973429pt;}
.x1{left:96.640096pt;}
.xa{left:104.906709pt;}
.x9{left:109.983872pt;}
.x52{left:118.530720pt;}
.x20{left:127.241664pt;}
.x53{left:133.973429pt;}
.x21{left:144.944800pt;}
.xc{left:150.327616pt;}
.x7{left:158.343232pt;}
.x12{left:161.351040pt;}
.x1a{left:168.718240pt;}
.xe{left:176.296352pt;}
.x4c{left:183.663520pt;}
.x17{left:190.757280pt;}
.x1f{left:195.976032pt;}
.x16{left:197.788544pt;}
.x51{left:199.632288pt;}
.x18{left:202.827584pt;}
.xb{left:206.003040pt;}
.x50{left:209.327584pt;}
.x23{left:217.835424pt;}
.x3f{left:230.788544pt;}
.x4e{left:238.585408pt;}
.xd{left:254.866656pt;}
.x1c{left:263.464000pt;}
.x46{left:266.585408pt;}
.x37{left:272.241664pt;}
.x38{left:283.851040pt;}
.x34{left:285.757280pt;}
.x2f{left:287.561984pt;}
.x3a{left:298.491648pt;}
.x2d{left:300.124480pt;}
.x3c{left:304.628032pt;}
.x45{left:307.135872pt;}
.x56{left:313.882272pt;}
.x19{left:316.444800pt;}
.xf{left:318.147904pt;}
.x5{left:320.382272pt;}
.x32{left:324.405728pt;}
.x54{left:334.257280pt;}
.x24{left:340.284160pt;}
.x1b{left:360.437120pt;}
.x29{left:377.612480pt;}
.x55{left:382.163520pt;}
.x15{left:386.054080pt;}
.x2c{left:391.280640pt;}
.x35{left:394.604480pt;}
.x3b{left:399.186880pt;}
.x42{left:401.616640pt;}
.x31{left:415.913600pt;}
.x13{left:419.393600pt;}
.x30{left:421.593280pt;}
.x2b{left:437.749440pt;}
.x33{left:454.741760pt;}
.x44{left:463.687040pt;}
.x48{left:472.741760pt;}
.x3e{left:475.561920pt;}
.x26{left:485.288640pt;}
.x41{left:499.718400pt;}
.x14{left:511.132160pt;}
.x47{left:513.890240pt;}
.x4a{left:532.780800pt;}
.x10{left:545.561920pt;}
.x40{left:547.225920pt;}
.x2e{left:562.358720pt;}
.x25{left:563.890240pt;}
.x4f{left:567.429120pt;}
.x4b{left:572.561920pt;}
.x2a{left:582.358720pt;}
.x1e{left:588.608960pt;}
.x6{left:592.225920pt;}
.x11{left:593.944960pt;}
.x39{left:596.077760pt;}
.x43{left:610.140160pt;}
.x22{left:611.046400pt;}
.x36{left:615.499520pt;}
.x28{left:634.913600pt;}
.x8{left:653.468160pt;}
.x27{left:668.288640pt;}
.x1d{left:671.608960pt;}
.x3d{left:681.333333pt;}
.x2{left:689.333333pt;}
.x49{left:692.265280pt;}
.x4d{left:693.726080pt;}
}




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