
    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_972ced7f4900a5b31814b33e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_bb44370bc630b6122a26c0f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_657ec0e03cac401f43c87825.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_7bbd2e9d5a565057937305f2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_3e85f44286a4751dafb1bb28.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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;}
.ls6{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.432000px;}
.ls3{letter-spacing:54.876000px;}
.ls4{letter-spacing:844.260000px;}
.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:-15.048000px;}
.ws0{word-spacing:-14.616000px;}
.ws1{word-spacing:-14.328000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-7.155840px;}
._2{margin-left:-6.065280px;}
._4{margin-left:-4.548960px;}
._3{margin-left:-3.538080px;}
._1{margin-left:-2.358720px;}
._7{margin-left:-1.134720px;}
._6{width:1.062720px;}
._8{width:2.148000px;}
._9{width:4.037280px;}
._0{width:1389.960000px;}
.fc2{color:rgb(21,96,130);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs2{font-size:119.520000px;}
.fs1{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y45{bottom:7.560000px;}
.y3{bottom:58.716000px;}
.y2{bottom:80.676000px;}
.y63{bottom:117.756000px;}
.y24{bottom:126.432000px;}
.y62{bottom:140.112000px;}
.y23{bottom:148.392000px;}
.y61{bottom:162.075000px;}
.y22{bottom:170.355000px;}
.y60{bottom:184.035000px;}
.y21{bottom:205.635000px;}
.y5f{bottom:205.995000px;}
.y20{bottom:227.595000px;}
.y43{bottom:234.075000px;}
.y5e{bottom:244.875000px;}
.y1f{bottom:249.555000px;}
.y42{bottom:269.385000px;}
.y1e{bottom:271.545000px;}
.y41{bottom:291.345000px;}
.y1d{bottom:293.505000px;}
.y5d{bottom:299.985000px;}
.y1c{bottom:315.465000px;}
.y78{bottom:322.305000px;}
.y40{bottom:326.985000px;}
.y5c{bottom:327.345000px;}
.y1b{bottom:337.425000px;}
.y77{bottom:344.265000px;}
.y3f{bottom:348.945000px;}
.y5b{bottom:354.705000px;}
.y1a{bottom:359.385000px;}
.y3e{bottom:370.905000px;}
.y76{bottom:381.030000px;}
.y19{bottom:381.390000px;}
.y5a{bottom:382.110000px;}
.y3d{bottom:392.910000px;}
.y18{bottom:403.350000px;}
.y59{bottom:409.470000px;}
.y75{bottom:425.310000px;}
.y17{bottom:425.670000px;}
.y3c{bottom:428.190000px;}
.y58{bottom:436.830000px;}
.y16{bottom:447.630000px;}
.y3b{bottom:450.150000px;}
.y74{bottom:462.030000px;}
.y57{bottom:464.190000px;}
.y15{bottom:469.590000px;}
.y73{bottom:483.990000px;}
.y3a{bottom:485.790000px;}
.y14{bottom:491.550000px;}
.y72{bottom:505.980000px;}
.y39{bottom:507.780000px;}
.y13{bottom:513.540000px;}
.y56{bottom:518.940000px;}
.y38{bottom:529.740000px;}
.y12{bottom:535.500000px;}
.y71{bottom:543.060000px;}
.y37{bottom:551.700000px;}
.y11{bottom:557.460000px;}
.y55{bottom:560.340000px;}
.y70{bottom:565.020000px;}
.y36{bottom:573.660000px;}
.y10{bottom:579.420000px;}
.y54{bottom:582.300000px;}
.y35{bottom:595.620000px;}
.yf{bottom:601.380000px;}
.y6f{bottom:602.100000px;}
.y53{bottom:617.940000px;}
.ye{bottom:623.340000px;}
.y6e{bottom:624.060000px;}
.y34{bottom:634.530000px;}
.y52{bottom:639.930000px;}
.yd{bottom:645.330000px;}
.y6d{bottom:646.050000px;}
.y51{bottom:661.890000px;}
.y6c{bottom:668.010000px;}
.yc{bottom:684.210000px;}
.y33{bottom:694.650000px;}
.y50{bottom:697.170000px;}
.y6b{bottom:705.090000px;}
.y32{bottom:716.610000px;}
.y4f{bottom:719.130000px;}
.y6a{bottom:727.050000px;}
.y31{bottom:738.570000px;}
.y4e{bottom:741.090000px;}
.yb{bottom:744.330000px;}
.y69{bottom:749.010000px;}
.y30{bottom:760.935000px;}
.y4d{bottom:763.095000px;}
.y68{bottom:771.015000px;}
.ya{bottom:783.255000px;}
.y2f{bottom:786.495000px;}
.y4c{bottom:802.335000px;}
.y2e{bottom:808.815000px;}
.y2d{bottom:834.375000px;}
.y9{bottom:843.375000px;}
.y2c{bottom:856.335000px;}
.y4b{bottom:857.415000px;}
.y67{bottom:862.455000px;}
.y2b{bottom:878.325000px;}
.y8{bottom:880.485000px;}
.y66{bottom:884.445000px;}
.y4a{bottom:884.805000px;}
.y2a{bottom:900.645000px;}
.y65{bottom:906.405000px;}
.y49{bottom:912.165000px;}
.y7{bottom:917.565000px;}
.y29{bottom:926.205000px;}
.y48{bottom:939.525000px;}
.y64{bottom:942.045000px;}
.y28{bottom:948.525000px;}
.y6{bottom:954.645000px;}
.y47{bottom:966.885000px;}
.y27{bottom:980.565000px;}
.y5{bottom:989.205000px;}
.y46{bottom:994.245000px;}
.y44{bottom:1021.650000px;}
.y4{bottom:1040.730000px;}
.y26{bottom:1041.090000px;}
.y25{bottom:1063.050000px;}
.y1{bottom:1138.680000px;}
.h5{height:27.360000px;}
.h7{height:27.396000px;}
.h4{height:62.226562px;}
.h1{height:62.402344px;}
.h6{height:62.507812px;}
.h3{height:103.296094px;}
.h2{height:145.610156px;}
.h0{height:1188.000000px;}
.w4{width:64.800000px;}
.w3{width:64.836000px;}
.w5{width:190.155000px;}
.w2{width:271.185000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.920000px;}
.xe{left:13.320000px;}
.x14{left:18.360000px;}
.xb{left:100.116000px;}
.x1{left:108.035986px;}
.x3{left:120.275986px;}
.x9{left:135.035986px;}
.x4{left:154.514986px;}
.xa{left:162.074986px;}
.x8{left:195.554986px;}
.x13{left:290.265000px;}
.x5{left:307.184986px;}
.x15{left:355.110000px;}
.xd{left:371.310000px;}
.x6{left:373.109986px;}
.x7{left:377.069986px;}
.x16{left:419.910000px;}
.xf{left:436.140000px;}
.x17{left:484.740000px;}
.x10{left:500.940000px;}
.x18{left:549.570000px;}
.x11{left:565.770000px;}
.x12{left:630.615000px;}
.x2{left:800.564986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls3{letter-spacing:48.778667pt;}
.ls4{letter-spacing:750.453333pt;}
.ws3{word-spacing:-13.376000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws1{word-spacing:-12.736000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-6.360747pt;}
._2{margin-left:-5.391360pt;}
._4{margin-left:-4.043520pt;}
._3{margin-left:-3.144960pt;}
._1{margin-left:-2.096640pt;}
._7{margin-left:-1.008640pt;}
._6{width:0.944640pt;}
._8{width:1.909333pt;}
._9{width:3.588693pt;}
._0{width:1235.520000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:106.240000pt;}
.fs1{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:6.720000pt;}
.y3{bottom:52.192000pt;}
.y2{bottom:71.712000pt;}
.y63{bottom:104.672000pt;}
.y24{bottom:112.384000pt;}
.y62{bottom:124.544000pt;}
.y23{bottom:131.904000pt;}
.y61{bottom:144.066667pt;}
.y22{bottom:151.426667pt;}
.y60{bottom:163.586667pt;}
.y21{bottom:182.786667pt;}
.y5f{bottom:183.106667pt;}
.y20{bottom:202.306667pt;}
.y43{bottom:208.066667pt;}
.y5e{bottom:217.666667pt;}
.y1f{bottom:221.826667pt;}
.y42{bottom:239.453333pt;}
.y1e{bottom:241.373333pt;}
.y41{bottom:258.973333pt;}
.y1d{bottom:260.893333pt;}
.y5d{bottom:266.653333pt;}
.y1c{bottom:280.413333pt;}
.y78{bottom:286.493333pt;}
.y40{bottom:290.653333pt;}
.y5c{bottom:290.973333pt;}
.y1b{bottom:299.933333pt;}
.y77{bottom:306.013333pt;}
.y3f{bottom:310.173333pt;}
.y5b{bottom:315.293333pt;}
.y1a{bottom:319.453333pt;}
.y3e{bottom:329.693333pt;}
.y76{bottom:338.693333pt;}
.y19{bottom:339.013333pt;}
.y5a{bottom:339.653333pt;}
.y3d{bottom:349.253333pt;}
.y18{bottom:358.533333pt;}
.y59{bottom:363.973333pt;}
.y75{bottom:378.053333pt;}
.y17{bottom:378.373333pt;}
.y3c{bottom:380.613333pt;}
.y58{bottom:388.293333pt;}
.y16{bottom:397.893333pt;}
.y3b{bottom:400.133333pt;}
.y74{bottom:410.693333pt;}
.y57{bottom:412.613333pt;}
.y15{bottom:417.413333pt;}
.y73{bottom:430.213333pt;}
.y3a{bottom:431.813333pt;}
.y14{bottom:436.933333pt;}
.y72{bottom:449.760000pt;}
.y39{bottom:451.360000pt;}
.y13{bottom:456.480000pt;}
.y56{bottom:461.280000pt;}
.y38{bottom:470.880000pt;}
.y12{bottom:476.000000pt;}
.y71{bottom:482.720000pt;}
.y37{bottom:490.400000pt;}
.y11{bottom:495.520000pt;}
.y55{bottom:498.080000pt;}
.y70{bottom:502.240000pt;}
.y36{bottom:509.920000pt;}
.y10{bottom:515.040000pt;}
.y54{bottom:517.600000pt;}
.y35{bottom:529.440000pt;}
.yf{bottom:534.560000pt;}
.y6f{bottom:535.200000pt;}
.y53{bottom:549.280000pt;}
.ye{bottom:554.080000pt;}
.y6e{bottom:554.720000pt;}
.y34{bottom:564.026667pt;}
.y52{bottom:568.826667pt;}
.yd{bottom:573.626667pt;}
.y6d{bottom:574.266667pt;}
.y51{bottom:588.346667pt;}
.y6c{bottom:593.786667pt;}
.yc{bottom:608.186667pt;}
.y33{bottom:617.466667pt;}
.y50{bottom:619.706667pt;}
.y6b{bottom:626.746667pt;}
.y32{bottom:636.986667pt;}
.y4f{bottom:639.226667pt;}
.y6a{bottom:646.266667pt;}
.y31{bottom:656.506667pt;}
.y4e{bottom:658.746667pt;}
.yb{bottom:661.626667pt;}
.y69{bottom:665.786667pt;}
.y30{bottom:676.386667pt;}
.y4d{bottom:678.306667pt;}
.y68{bottom:685.346667pt;}
.ya{bottom:696.226667pt;}
.y2f{bottom:699.106667pt;}
.y4c{bottom:713.186667pt;}
.y2e{bottom:718.946667pt;}
.y2d{bottom:741.666667pt;}
.y9{bottom:749.666667pt;}
.y2c{bottom:761.186667pt;}
.y4b{bottom:762.146667pt;}
.y67{bottom:766.626667pt;}
.y2b{bottom:780.733333pt;}
.y8{bottom:782.653333pt;}
.y66{bottom:786.173333pt;}
.y4a{bottom:786.493333pt;}
.y2a{bottom:800.573333pt;}
.y65{bottom:805.693333pt;}
.y49{bottom:810.813333pt;}
.y7{bottom:815.613333pt;}
.y29{bottom:823.293333pt;}
.y48{bottom:835.133333pt;}
.y64{bottom:837.373333pt;}
.y28{bottom:843.133333pt;}
.y6{bottom:848.573333pt;}
.y47{bottom:859.453333pt;}
.y27{bottom:871.613333pt;}
.y5{bottom:879.293333pt;}
.y46{bottom:883.773333pt;}
.y44{bottom:908.133333pt;}
.y4{bottom:925.093333pt;}
.y26{bottom:925.413333pt;}
.y25{bottom:944.933333pt;}
.y1{bottom:1012.160000pt;}
.h5{height:24.320000pt;}
.h7{height:24.352000pt;}
.h4{height:55.312500pt;}
.h1{height:55.468750pt;}
.h6{height:55.562500pt;}
.h3{height:91.818750pt;}
.h2{height:129.431250pt;}
.h0{height:1056.000000pt;}
.w4{width:57.600000pt;}
.w3{width:57.632000pt;}
.w5{width:169.026667pt;}
.w2{width:241.053333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.040000pt;}
.xe{left:11.840000pt;}
.x14{left:16.320000pt;}
.xb{left:88.992000pt;}
.x1{left:96.031988pt;}
.x3{left:106.911988pt;}
.x9{left:120.031988pt;}
.x4{left:137.346655pt;}
.xa{left:144.066655pt;}
.x8{left:173.826655pt;}
.x13{left:258.013333pt;}
.x5{left:273.053321pt;}
.x15{left:315.653333pt;}
.xd{left:330.053333pt;}
.x6{left:331.653321pt;}
.x7{left:335.173321pt;}
.x16{left:373.253333pt;}
.xf{left:387.680000pt;}
.x17{left:430.880000pt;}
.x10{left:445.280000pt;}
.x18{left:488.506667pt;}
.x11{left:502.906667pt;}
.x12{left:560.546667pt;}
.x2{left:711.613321pt;}
}




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