
    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_450b064b95b6727778f8a446.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_1d1fc6d3099197154c9e9f4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_2aae5a7dee47540ba830b55e.woff2')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_5d52e89df256769d8d4d1377.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f01785293f24a3694d65159.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bf07497b5202e6b98696870a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ba9808901e338df38e3fa2b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9a00dae779f5fd43656f0ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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;}
.ls2{letter-spacing:-1.149750px;}
.lsc{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.348950px;}
.ls8{letter-spacing:1.404000px;}
.lsb{letter-spacing:1.466250px;}
.lse{letter-spacing:1.485000px;}
.lsa{letter-spacing:1.579500px;}
.ls6{letter-spacing:1.642200px;}
.ls5{letter-spacing:2.111400px;}
.ls4{letter-spacing:2.580600px;}
.ls9{letter-spacing:2.866500px;}
.ls7{letter-spacing:3.049800px;}
.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:-66.000015px;}
.ws4{word-spacing:-21.308700px;}
.ws8{word-spacing:-19.354500px;}
.ws9{word-spacing:-19.129500px;}
.ws6{word-spacing:-18.416100px;}
.wse{word-spacing:-17.770950px;}
.ws1{word-spacing:-16.500004px;}
.ws0{word-spacing:-13.489200px;}
.wsd{word-spacing:-8.991000px;}
.wsc{word-spacing:-7.506000px;}
.wsb{word-spacing:-4.500000px;}
.wsa{word-spacing:-3.996000px;}
.ws5{word-spacing:-2.575200px;}
.ws7{word-spacing:-2.364000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-5.433798px;}
._3{margin-left:-3.965724px;}
._0{margin-left:-2.730552px;}
._2{margin-left:-1.024576px;}
._7{width:1.041071px;}
._4{width:2.057626px;}
._6{width:3.420402px;}
._5{width:4.437548px;}
._8{width:14.085428px;}
.fc4{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000000px;}
.fsa{font-size:27.000000px;}
.fs8{font-size:40.500000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:58.500000px;}
.fs6{font-size:58.650000px;}
.fs1{font-size:66.000015px;}
.fs3{font-size:76.650000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:81.150000px;}
.fs0{font-size:120.000015px;}
.y0{bottom:0.000000px;}
.y4c{bottom:25.837500px;}
.y4b{bottom:38.212500px;}
.y4a{bottom:42.712500px;}
.y4d{bottom:80.625000px;}
.y2f{bottom:113.733439px;}
.y2e{bottom:132.706823px;}
.y2d{bottom:151.680218px;}
.y2c{bottom:170.653601px;}
.y2b{bottom:189.626951px;}
.y2a{bottom:208.600373px;}
.y29{bottom:227.573768px;}
.y28{bottom:246.547151px;}
.y27{bottom:265.520501px;}
.y49{bottom:280.875000px;}
.y26{bottom:284.493889px;}
.y25{bottom:303.467272px;}
.y24{bottom:322.440668px;}
.y23{bottom:341.414051px;}
.y4e{bottom:342.150000px;}
.y22{bottom:360.387401px;}
.y21{bottom:379.360894px;}
.y48{bottom:386.220000px;}
.y20{bottom:398.334289px;}
.y1f{bottom:417.307672px;}
.y1e{bottom:436.281067px;}
.y1d{bottom:455.254451px;}
.y1c{bottom:474.227801px;}
.y1b{bottom:493.201189px;}
.y1a{bottom:512.174572px;}
.y19{bottom:531.147967px;}
.y18{bottom:550.121351px;}
.y17{bottom:569.094701px;}
.y47{bottom:570.750000px;}
.y16{bottom:588.068137px;}
.y15{bottom:607.041510px;}
.y14{bottom:626.014894px;}
.y46{bottom:628.380000px;}
.y13{bottom:644.988289px;}
.y45{bottom:662.130000px;}
.y12{bottom:663.961672px;}
.y41{bottom:668.220000px;}
.y11{bottom:682.935067px;}
.y10{bottom:701.908451px;}
.yf{bottom:720.881801px;}
.y44{bottom:729.525000px;}
.ye{bottom:739.855189px;}
.y43{bottom:752.175000px;}
.yd{bottom:758.828572px;}
.y40{bottom:761.021501px;}
.y42{bottom:775.800000px;}
.yc{bottom:777.801967px;}
.y3f{bottom:779.994851px;}
.yb{bottom:796.775351px;}
.y3e{bottom:798.968201px;}
.y3d{bottom:817.941701px;}
.ya{bottom:833.748701px;}
.y3c{bottom:836.915051px;}
.y3b{bottom:855.888394px;}
.y9{bottom:872.401729px;}
.y3a{bottom:874.861789px;}
.y8{bottom:890.253979px;}
.y39{bottom:893.835172px;}
.y7{bottom:908.106229px;}
.y38{bottom:912.808567px;}
.y6{bottom:925.958479px;}
.y37{bottom:931.781951px;}
.y5{bottom:942.131051px;}
.y36{bottom:950.755301px;}
.y4{bottom:961.104551px;}
.y35{bottom:969.728760px;}
.y3{bottom:982.998045px;}
.y34{bottom:988.702144px;}
.y33{bottom:1007.675539px;}
.y2{bottom:1017.495113px;}
.y32{bottom:1026.648923px;}
.y31{bottom:1045.622318px;}
.y1{bottom:1051.992191px;}
.y30{bottom:1064.595701px;}
.hd{height:13.104492px;}
.he{height:20.302734px;}
.hc{height:29.485107px;}
.h4{height:37.494141px;}
.h3{height:37.520508px;}
.hb{height:42.589600px;}
.ha{height:42.698804px;}
.h5{height:45.826182px;}
.h2{height:45.858409px;}
.h7{height:55.803296px;}
.h8{height:58.970215px;}
.h9{height:59.079419px;}
.h1{height:81.328135px;}
.h6{height:810.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w2{width:1079.999984px;}
.w1{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:18.562484px;}
.x11{left:24.187484px;}
.x4{left:108.000000px;}
.x2{left:132.738435px;}
.x5{left:137.775150px;}
.x1{left:144.994286px;}
.xc{left:176.999984px;}
.xd{left:187.004984px;}
.xa{left:191.249984px;}
.xb{left:267.269984px;}
.x3{left:288.653963px;}
.x6{left:290.658713px;}
.x7{left:346.692263px;}
.x12{left:358.694984px;}
.x14{left:376.424984px;}
.x13{left:415.004984px;}
.x8{left:429.389663px;}
.x9{left:464.924984px;}
.x15{left:470.849984px;}
.xe{left:549.104984px;}
.x10{left:859.919984px;}
.x16{left:975.074984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.022000pt;}
.lsc{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.199067pt;}
.ls8{letter-spacing:1.248000pt;}
.lsb{letter-spacing:1.303333pt;}
.lse{letter-spacing:1.320000pt;}
.lsa{letter-spacing:1.404000pt;}
.ls6{letter-spacing:1.459733pt;}
.ls5{letter-spacing:1.876800pt;}
.ls4{letter-spacing:2.293867pt;}
.ls9{letter-spacing:2.548000pt;}
.ls7{letter-spacing:2.710933pt;}
.ws3{word-spacing:-58.666680pt;}
.ws4{word-spacing:-18.941067pt;}
.ws8{word-spacing:-17.204000pt;}
.ws9{word-spacing:-17.004000pt;}
.ws6{word-spacing:-16.369867pt;}
.wse{word-spacing:-15.796400pt;}
.ws1{word-spacing:-14.666670pt;}
.ws0{word-spacing:-11.990400pt;}
.wsd{word-spacing:-7.992000pt;}
.wsc{word-spacing:-6.672000pt;}
.wsb{word-spacing:-4.000000pt;}
.wsa{word-spacing:-3.552000pt;}
.ws5{word-spacing:-2.289067pt;}
.ws7{word-spacing:-2.101333pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-4.830042pt;}
._3{margin-left:-3.525088pt;}
._0{margin-left:-2.427158pt;}
._2{margin-left:-0.910734pt;}
._7{width:0.925397pt;}
._4{width:1.829001pt;}
._6{width:3.040358pt;}
._5{width:3.944487pt;}
._8{width:12.520380pt;}
.fs9{font-size:16.000000pt;}
.fsa{font-size:24.000000pt;}
.fs8{font-size:36.000000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:52.000000pt;}
.fs6{font-size:52.133333pt;}
.fs1{font-size:58.666680pt;}
.fs3{font-size:68.133333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:72.133333pt;}
.fs0{font-size:106.666680pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:22.966667pt;}
.y4b{bottom:33.966667pt;}
.y4a{bottom:37.966667pt;}
.y4d{bottom:71.666667pt;}
.y2f{bottom:101.096390pt;}
.y2e{bottom:117.961620pt;}
.y2d{bottom:134.826860pt;}
.y2c{bottom:151.692090pt;}
.y2b{bottom:168.557290pt;}
.y2a{bottom:185.422553pt;}
.y29{bottom:202.287793pt;}
.y28{bottom:219.153023pt;}
.y27{bottom:236.018223pt;}
.y49{bottom:249.666667pt;}
.y26{bottom:252.883457pt;}
.y25{bottom:269.748687pt;}
.y24{bottom:286.613927pt;}
.y23{bottom:303.479157pt;}
.y4e{bottom:304.133333pt;}
.y22{bottom:320.344357pt;}
.y21{bottom:337.209683pt;}
.y48{bottom:343.306667pt;}
.y20{bottom:354.074923pt;}
.y1f{bottom:370.940153pt;}
.y1e{bottom:387.805393pt;}
.y1d{bottom:404.670623pt;}
.y1c{bottom:421.535823pt;}
.y1b{bottom:438.401057pt;}
.y1a{bottom:455.266287pt;}
.y19{bottom:472.131527pt;}
.y18{bottom:488.996757pt;}
.y17{bottom:505.861957pt;}
.y47{bottom:507.333333pt;}
.y16{bottom:522.727233pt;}
.y15{bottom:539.592453pt;}
.y14{bottom:556.457683pt;}
.y46{bottom:558.560000pt;}
.y13{bottom:573.322923pt;}
.y45{bottom:588.560000pt;}
.y12{bottom:590.188153pt;}
.y41{bottom:593.973333pt;}
.y11{bottom:607.053393pt;}
.y10{bottom:623.918623pt;}
.yf{bottom:640.783823pt;}
.y44{bottom:648.466667pt;}
.ye{bottom:657.649057pt;}
.y43{bottom:668.600000pt;}
.yd{bottom:674.514287pt;}
.y40{bottom:676.463557pt;}
.y42{bottom:689.600000pt;}
.yc{bottom:691.379527pt;}
.y3f{bottom:693.328757pt;}
.yb{bottom:708.244757pt;}
.y3e{bottom:710.193957pt;}
.y3d{bottom:727.059290pt;}
.ya{bottom:741.109957pt;}
.y3c{bottom:743.924490pt;}
.y3b{bottom:760.789683pt;}
.y9{bottom:775.468203pt;}
.y3a{bottom:777.654923pt;}
.y8{bottom:791.336870pt;}
.y39{bottom:794.520153pt;}
.y7{bottom:807.205537pt;}
.y38{bottom:811.385393pt;}
.y6{bottom:823.074203pt;}
.y37{bottom:828.250623pt;}
.y5{bottom:837.449823pt;}
.y36{bottom:845.115823pt;}
.y4{bottom:854.315157pt;}
.y35{bottom:861.981120pt;}
.y3{bottom:873.776040pt;}
.y34{bottom:878.846350pt;}
.y33{bottom:895.711590pt;}
.y2{bottom:904.440100pt;}
.y32{bottom:912.576820pt;}
.y31{bottom:929.442060pt;}
.y1{bottom:935.104170pt;}
.y30{bottom:946.307290pt;}
.hd{height:11.648438pt;}
.he{height:18.046875pt;}
.hc{height:26.208984pt;}
.h4{height:33.328125pt;}
.h3{height:33.351563pt;}
.hb{height:37.857422pt;}
.ha{height:37.954492pt;}
.h5{height:40.734384pt;}
.h2{height:40.763030pt;}
.h7{height:49.602930pt;}
.h8{height:52.417969pt;}
.h9{height:52.515039pt;}
.h1{height:72.291676pt;}
.h6{height:720.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w2{width:959.999986pt;}
.w1{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:16.499986pt;}
.x11{left:21.499986pt;}
.x4{left:96.000000pt;}
.x2{left:117.989720pt;}
.x5{left:122.466800pt;}
.x1{left:128.883810pt;}
.xc{left:157.333319pt;}
.xd{left:166.226652pt;}
.xa{left:169.999986pt;}
.xb{left:237.573319pt;}
.x3{left:256.581300pt;}
.x6{left:258.363300pt;}
.x7{left:308.170900pt;}
.x12{left:318.839986pt;}
.x14{left:334.599986pt;}
.x13{left:368.893319pt;}
.x8{left:381.679700pt;}
.x9{left:413.266652pt;}
.x15{left:418.533319pt;}
.xe{left:488.093319pt;}
.x10{left:764.373319pt;}
.x16{left:866.733319pt;}
}




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