
    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_0d983b716b681b05df6712db.woff')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_19d555c129b5a14ccf7519d8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_fe675ab4199e63ff3a70d097.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087000;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_95474fc599917bed79806976.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_9be17db47f165ebbb0451d8d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_8eeca9f3ab6105eebb227e75.woff')format("woff");}.ff6{font-family:ff6;line-height:1.012000;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;}
}
.wse{word-spacing:-0.078000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:146.052600px;}
.wsd{word-spacing:147.522600px;}
.wsa{word-spacing:147.732600px;}
.wsc{word-spacing:180.020400px;}
.ws5{word-spacing:255.200400px;}
.ws4{word-spacing:281.361000px;}
.ws1{word-spacing:295.461000px;}
.ws6{word-spacing:341.060400px;}
.ws8{word-spacing:352.040400px;}
.ws2{word-spacing:353.601000px;}
.ws9{word-spacing:360.680400px;}
.wsf{word-spacing:361.127400px;}
.ws3{word-spacing:423.320400px;}
.wsb{word-spacing:439.460400px;}
._3{width:147.023400px;}
._4{width:160.950000px;}
._b{width:162.102600px;}
._6{width:163.662600px;}
._2{width:164.912400px;}
._c{width:386.694000px;}
._8{width:395.574000px;}
._7{width:481.253400px;}
._0{width:495.640200px;}
._1{width:602.204400px;}
._9{width:679.133400px;}
._a{width:927.456000px;}
._5{width:929.015400px;}
._d{width:930.276000px;}
.fc4{color:rgb(41,145,127);}
.fc3{color:rgb(109,110,113);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(19,76,68);}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:38.037600px;}
.y13{bottom:38.143950px;}
.y12{bottom:88.638900px;}
.y52{bottom:118.509600px;}
.y51{bottom:142.509600px;}
.y6{bottom:147.713700px;}
.y11{bottom:151.662450px;}
.y50{bottom:166.509600px;}
.y61{bottom:179.265600px;}
.y4f{bottom:190.509600px;}
.y60{bottom:203.265600px;}
.y2d{bottom:204.347700px;}
.y4e{bottom:214.509600px;}
.y10{bottom:214.686150px;}
.y2c{bottom:224.147700px;}
.y2e{bottom:225.722700px;}
.y5f{bottom:227.265600px;}
.y5{bottom:229.743750px;}
.y4d{bottom:238.509600px;}
.y5e{bottom:251.265600px;}
.y2a{bottom:268.211850px;}
.y22{bottom:268.304700px;}
.y3d{bottom:274.840350px;}
.y4c{bottom:275.265600px;}
.yf{bottom:277.709700px;}
.y4{bottom:277.743750px;}
.y29{bottom:288.011850px;}
.y2b{bottom:289.586850px;}
.y21{bottom:295.304700px;}
.y67{bottom:297.359850px;}
.y3c{bottom:298.840350px;}
.y4b{bottom:299.265600px;}
.y20{bottom:322.304700px;}
.y3b{bottom:322.840350px;}
.y4a{bottom:323.265600px;}
.y66{bottom:324.359850px;}
.y3{bottom:325.743750px;}
.y27{bottom:332.076000px;}
.ye{bottom:340.733400px;}
.y3a{bottom:346.840350px;}
.y49{bottom:347.265600px;}
.y65{bottom:351.359850px;}
.y26{bottom:351.876000px;}
.y28{bottom:353.451000px;}
.y5d{bottom:360.021450px;}
.y39{bottom:370.840350px;}
.y48{bottom:371.265600px;}
.y1f{bottom:376.304700px;}
.y64{bottom:378.359850px;}
.y55{bottom:394.840350px;}
.y47{bottom:395.265600px;}
.y1e{bottom:403.304700px;}
.y25{bottom:403.569000px;}
.yd{bottom:403.756950px;}
.y63{bottom:405.359850px;}
.y38{bottom:407.596200px;}
.y54{bottom:418.840350px;}
.y57{bottom:419.265600px;}
.y5c{bottom:420.777300px;}
.y2{bottom:428.770650px;}
.y1d{bottom:430.304700px;}
.y46{bottom:432.021450px;}
.y62{bottom:432.359850px;}
.y59{bottom:443.265600px;}
.y5b{bottom:444.777300px;}
.y53{bottom:455.596200px;}
.y56{bottom:456.021450px;}
.y1c{bottom:457.304700px;}
.yc{bottom:466.780650px;}
.y37{bottom:468.352200px;}
.y5a{bottom:468.777300px;}
.y58{bottom:480.021450px;}
.y1b{bottom:484.304700px;}
.y36{bottom:492.352200px;}
.y45{bottom:492.777300px;}
.y1{bottom:503.770650px;}
.y1a{bottom:511.304700px;}
.y35{bottom:516.352200px;}
.y44{bottom:516.777300px;}
.yb{bottom:529.804200px;}
.y34{bottom:540.352200px;}
.y43{bottom:540.777300px;}
.y33{bottom:564.352200px;}
.y42{bottom:564.777300px;}
.y19{bottom:565.304700px;}
.y32{bottom:588.352200px;}
.y41{bottom:588.777300px;}
.y18{bottom:592.304700px;}
.ya{bottom:592.827900px;}
.y31{bottom:612.352200px;}
.y40{bottom:612.777300px;}
.y17{bottom:619.304700px;}
.y30{bottom:636.352200px;}
.y3f{bottom:636.777300px;}
.y16{bottom:646.304700px;}
.y9{bottom:655.851450px;}
.y2f{bottom:673.108050px;}
.y15{bottom:673.304700px;}
.y3e{bottom:673.533300px;}
.y8{bottom:716.850450px;}
.y24{bottom:746.050800px;}
.y14{bottom:746.334300px;}
.y7{bottom:776.452350px;}
.ha{height:48.840000px;}
.h6{height:50.040000px;}
.h9{height:50.424000px;}
.h5{height:53.724000px;}
.h7{height:56.040000px;}
.hb{height:58.608000px;}
.hc{height:67.248000px;}
.h8{height:72.852000px;}
.h4{height:80.064000px;}
.h3{height:134.496000px;}
.h2{height:250.200000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x3{left:76.535400px;}
.xb{left:108.425250px;}
.x4{left:142.440900px;}
.x6{left:162.283500px;}
.x7{left:163.700850px;}
.x1{left:565.511850px;}
.x8{left:905.669250px;}
.x9{left:1036.376100px;}
.xa{left:1165.592850px;}
.x5{left:1170.632850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wse{word-spacing:-0.069333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:129.824533pt;}
.wsd{word-spacing:131.131200pt;}
.wsa{word-spacing:131.317867pt;}
.wsc{word-spacing:160.018133pt;}
.ws5{word-spacing:226.844800pt;}
.ws4{word-spacing:250.098667pt;}
.ws1{word-spacing:262.632000pt;}
.ws6{word-spacing:303.164800pt;}
.ws8{word-spacing:312.924800pt;}
.ws2{word-spacing:314.312000pt;}
.ws9{word-spacing:320.604800pt;}
.wsf{word-spacing:321.002133pt;}
.ws3{word-spacing:376.284800pt;}
.wsb{word-spacing:390.631467pt;}
._3{width:130.687467pt;}
._4{width:143.066667pt;}
._b{width:144.091200pt;}
._6{width:145.477867pt;}
._2{width:146.588800pt;}
._c{width:343.728000pt;}
._8{width:351.621333pt;}
._7{width:427.780800pt;}
._0{width:440.569067pt;}
._1{width:535.292800pt;}
._9{width:603.674133pt;}
._a{width:824.405333pt;}
._5{width:825.791467pt;}
._d{width:826.912000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:33.811200pt;}
.y13{bottom:33.905733pt;}
.y12{bottom:78.790133pt;}
.y52{bottom:105.341867pt;}
.y51{bottom:126.675200pt;}
.y6{bottom:131.301067pt;}
.y11{bottom:134.811067pt;}
.y50{bottom:148.008533pt;}
.y61{bottom:159.347200pt;}
.y4f{bottom:169.341867pt;}
.y60{bottom:180.680533pt;}
.y2d{bottom:181.642400pt;}
.y4e{bottom:190.675200pt;}
.y10{bottom:190.832133pt;}
.y2c{bottom:199.242400pt;}
.y2e{bottom:200.642400pt;}
.y5f{bottom:202.013867pt;}
.y5{bottom:204.216667pt;}
.y4d{bottom:212.008533pt;}
.y5e{bottom:223.347200pt;}
.y2a{bottom:238.410533pt;}
.y22{bottom:238.493067pt;}
.y3d{bottom:244.302533pt;}
.y4c{bottom:244.680533pt;}
.yf{bottom:246.853067pt;}
.y4{bottom:246.883333pt;}
.y29{bottom:256.010533pt;}
.y2b{bottom:257.410533pt;}
.y21{bottom:262.493067pt;}
.y67{bottom:264.319867pt;}
.y3c{bottom:265.635867pt;}
.y4b{bottom:266.013867pt;}
.y20{bottom:286.493067pt;}
.y3b{bottom:286.969200pt;}
.y4a{bottom:287.347200pt;}
.y66{bottom:288.319867pt;}
.y3{bottom:289.550000pt;}
.y27{bottom:295.178667pt;}
.ye{bottom:302.874133pt;}
.y3a{bottom:308.302533pt;}
.y49{bottom:308.680533pt;}
.y65{bottom:312.319867pt;}
.y26{bottom:312.778667pt;}
.y28{bottom:314.178667pt;}
.y5d{bottom:320.019067pt;}
.y39{bottom:329.635867pt;}
.y48{bottom:330.013867pt;}
.y1f{bottom:334.493067pt;}
.y64{bottom:336.319867pt;}
.y55{bottom:350.969200pt;}
.y47{bottom:351.347200pt;}
.y1e{bottom:358.493067pt;}
.y25{bottom:358.728000pt;}
.yd{bottom:358.895067pt;}
.y63{bottom:360.319867pt;}
.y38{bottom:362.307733pt;}
.y54{bottom:372.302533pt;}
.y57{bottom:372.680533pt;}
.y5c{bottom:374.024267pt;}
.y2{bottom:381.129467pt;}
.y1d{bottom:382.493067pt;}
.y46{bottom:384.019067pt;}
.y62{bottom:384.319867pt;}
.y59{bottom:394.013867pt;}
.y5b{bottom:395.357600pt;}
.y53{bottom:404.974400pt;}
.y56{bottom:405.352400pt;}
.y1c{bottom:406.493067pt;}
.yc{bottom:414.916133pt;}
.y37{bottom:416.313067pt;}
.y5a{bottom:416.690933pt;}
.y58{bottom:426.685733pt;}
.y1b{bottom:430.493067pt;}
.y36{bottom:437.646400pt;}
.y45{bottom:438.024267pt;}
.y1{bottom:447.796133pt;}
.y1a{bottom:454.493067pt;}
.y35{bottom:458.979733pt;}
.y44{bottom:459.357600pt;}
.yb{bottom:470.937067pt;}
.y34{bottom:480.313067pt;}
.y43{bottom:480.690933pt;}
.y33{bottom:501.646400pt;}
.y42{bottom:502.024267pt;}
.y19{bottom:502.493067pt;}
.y32{bottom:522.979733pt;}
.y41{bottom:523.357600pt;}
.y18{bottom:526.493067pt;}
.ya{bottom:526.958133pt;}
.y31{bottom:544.313067pt;}
.y40{bottom:544.690933pt;}
.y17{bottom:550.493067pt;}
.y30{bottom:565.646400pt;}
.y3f{bottom:566.024267pt;}
.y16{bottom:574.493067pt;}
.y9{bottom:582.979067pt;}
.y2f{bottom:598.318267pt;}
.y15{bottom:598.493067pt;}
.y3e{bottom:598.696267pt;}
.y8{bottom:637.200400pt;}
.y24{bottom:663.156267pt;}
.y14{bottom:663.408267pt;}
.y7{bottom:690.179867pt;}
.ha{height:43.413333pt;}
.h6{height:44.480000pt;}
.h9{height:44.821333pt;}
.h5{height:47.754667pt;}
.h7{height:49.813333pt;}
.hb{height:52.096000pt;}
.hc{height:59.776000pt;}
.h8{height:64.757333pt;}
.h4{height:71.168000pt;}
.h3{height:119.552000pt;}
.h2{height:222.400000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x3{left:68.031467pt;}
.xb{left:96.378000pt;}
.x4{left:126.614133pt;}
.x6{left:144.252000pt;}
.x7{left:145.511867pt;}
.x1{left:502.677200pt;}
.x8{left:805.039333pt;}
.x9{left:921.223200pt;}
.xa{left:1036.082533pt;}
.x5{left:1040.562533pt;}
}




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