
    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_51d35c9ba7a7d75e44ca97f2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_672f3bf12738af57b74987b2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_c13f2501ab06097c75eb8cc9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_00a0f3b57fafae8fc9646e38.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_d8302179d0412b9d095d16b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:181.140000px;}
.ls9{letter-spacing:-0.351600px;}
.ls7{letter-spacing:-0.345600px;}
.ls13{letter-spacing:-0.230400px;}
.lsd{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.115200px;}
.ls16{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.046080px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.019020px;}
.lsa{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.064200px;}
.ls8{letter-spacing:0.075600px;}
.lsc{letter-spacing:0.112200px;}
.lsb{letter-spacing:0.135600px;}
.ls18{letter-spacing:0.138000px;}
.ls12{letter-spacing:0.161400px;}
.ls14{letter-spacing:0.201600px;}
.ls15{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.291000px;}
.ls11{letter-spacing:0.317400px;}
.ls0{letter-spacing:0.351600px;}
.ls1{letter-spacing:15.672960px;}
.lsf{letter-spacing:18.031680px;}
.ls10{letter-spacing:18.751680px;}
.lse{letter-spacing:60.444000px;}
.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;}
}
.ws1{word-spacing:-45.560880px;}
.ws2{word-spacing:-34.973580px;}
.ws0{word-spacing:-18.009216px;}
.ws11{word-spacing:-17.098128px;}
.ws14{word-spacing:-16.153800px;}
.ws13{word-spacing:-15.836400px;}
.ws15{word-spacing:-15.698880px;}
.ws16{word-spacing:-14.310000px;}
.ws9{word-spacing:-14.163120px;}
.ws12{word-spacing:0.000000px;}
.wsa{word-spacing:13.340160px;}
.ws7{word-spacing:15.543840px;}
.wsb{word-spacing:17.445840px;}
.ws8{word-spacing:22.774800px;}
.ws10{word-spacing:45.400320px;}
.wse{word-spacing:45.527040px;}
.wsc{word-spacing:45.647280px;}
.ws6{word-spacing:47.209680px;}
.ws4{word-spacing:48.549960px;}
.wsd{word-spacing:48.661920px;}
.ws5{word-spacing:48.908880px;}
.ws3{word-spacing:50.855040px;}
.wsf{word-spacing:51.334200px;}
._5{margin-left:-2.429976px;}
._0{margin-left:-1.345680px;}
._1{width:1.391016px;}
._3{width:2.490096px;}
._2{width:3.497040px;}
._9{width:16.724424px;}
._6{width:32.164560px;}
._7{width:33.897600px;}
._4{width:35.177040px;}
._8{width:37.961280px;}
.fc4{color:transparent;}
.fc3{color:rgb(35,42,53);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(10,186,240);}
.fc0{color:rgb(69,84,107);}
.fsa{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs9{font-size:77.760000px;}
.fs2{font-size:131.904000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:16.704000px;}
.y65{bottom:42.264000px;}
.y64{bottom:58.464000px;}
.y2d{bottom:68.220000px;}
.y10{bottom:70.056000px;}
.y63{bottom:83.664000px;}
.y2c{bottom:88.740000px;}
.yf{bottom:90.576000px;}
.y2b{bottom:109.260000px;}
.ye{bottom:111.132000px;}
.y62{bottom:117.864000px;}
.y2a{bottom:129.780000px;}
.yd{bottom:131.652000px;}
.y61{bottom:134.064000px;}
.y29{bottom:150.300000px;}
.yc{bottom:152.175000px;}
.y60{bottom:159.270000px;}
.yb{bottom:172.695000px;}
.ya{bottom:193.215000px;}
.y5f{bottom:193.470000px;}
.y5e{bottom:209.670000px;}
.y2e{bottom:211.425000px;}
.y9{bottom:213.735000px;}
.y5d{bottom:234.900000px;}
.y5c{bottom:269.100000px;}
.y3d{bottom:271.155000px;}
.y28{bottom:272.670000px;}
.y5b{bottom:285.300000px;}
.y27{bottom:293.190000px;}
.y5a{bottom:301.500000px;}
.y26{bottom:313.710000px;}
.y25{bottom:334.230000px;}
.y59{bottom:335.700000px;}
.y38{bottom:336.420000px;}
.y58{bottom:351.900000px;}
.y24{bottom:354.750000px;}
.y37{bottom:356.940000px;}
.y57{bottom:368.100000px;}
.y36{bottom:377.460000px;}
.y35{bottom:397.980000px;}
.y39{bottom:416.130000px;}
.y34{bottom:418.500000px;}
.y4b{bottom:421.125000px;}
.y33{bottom:439.020000px;}
.y4a{bottom:441.645000px;}
.y32{bottom:459.540000px;}
.y23{bottom:477.930000px;}
.y31{bottom:480.090000px;}
.y49{bottom:482.685000px;}
.y22{bottom:498.450000px;}
.y30{bottom:500.610000px;}
.y48{bottom:504.105000px;}
.y21{bottom:518.970000px;}
.y2f{bottom:521.130000px;}
.y20{bottom:539.490000px;}
.y47{bottom:548.430000px;}
.y1f{bottom:560.010000px;}
.y46{bottom:568.950000px;}
.y1e{bottom:580.530000px;}
.y3c{bottom:580.650000px;}
.y45{bottom:589.470000px;}
.y1d{bottom:601.050000px;}
.y44{bottom:609.990000px;}
.y1c{bottom:621.615000px;}
.y43{bottom:630.510000px;}
.y1b{bottom:642.135000px;}
.y8{bottom:643.605000px;}
.y42{bottom:651.030000px;}
.y1a{bottom:662.655000px;}
.y7{bottom:664.125000px;}
.y41{bottom:672.450000px;}
.y19{bottom:683.175000px;}
.y6{bottom:684.690000px;}
.y18{bottom:703.695000px;}
.y5{bottom:705.210000px;}
.y17{bottom:724.215000px;}
.y4{bottom:725.730000px;}
.y56{bottom:735.915000px;}
.y52{bottom:740.055000px;}
.y16{bottom:744.735000px;}
.y3{bottom:746.250000px;}
.y55{bottom:759.675000px;}
.y51{bottom:763.635000px;}
.y54{bottom:786.315000px;}
.y50{bottom:790.455000px;}
.y3e{bottom:803.130000px;}
.y3b{bottom:806.040000px;}
.y53{bottom:812.955000px;}
.y4f{bottom:816.015000px;}
.y4e{bottom:839.595000px;}
.y4d{bottom:865.335000px;}
.y15{bottom:878.070000px;}
.y4c{bottom:888.915000px;}
.y14{bottom:900.750000px;}
.y13{bottom:923.295000px;}
.y40{bottom:938.340000px;}
.y12{bottom:945.795000px;}
.y3f{bottom:959.760000px;}
.y11{bottom:968.475000px;}
.y1{bottom:1042.740000px;}
.y2{bottom:1044.465000px;}
.ha{height:56.700000px;}
.h3{height:62.748000px;}
.h4{height:62.899200px;}
.h5{height:69.552000px;}
.h6{height:69.703200px;}
.h7{height:75.600000px;}
.h8{height:75.751200px;}
.h9{height:81.648000px;}
.h2{height:138.499200px;}
.h1{height:504.403200px;}
.h0{height:1170.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x5{left:36.539988px;}
.x1{left:40.355988px;}
.x3{left:44.855988px;}
.x11{left:55.187988px;}
.x4{left:71.891988px;}
.x13{left:86.687988px;}
.xf{left:94.391988px;}
.x10{left:114.731988px;}
.xd{left:173.519988px;}
.x2{left:187.019988px;}
.xb{left:219.314988px;}
.xc{left:227.879988px;}
.xa{left:362.954988px;}
.x12{left:421.919988px;}
.x6{left:441.869988px;}
.x7{left:468.869988px;}
.xe{left:530.924988px;}
.x8{left:551.519988px;}
.x9{left:610.589988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:161.013333pt;}
.ls9{letter-spacing:-0.312533pt;}
.ls7{letter-spacing:-0.307200pt;}
.ls13{letter-spacing:-0.204800pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.102400pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.040960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016907pt;}
.lsa{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.057067pt;}
.ls8{letter-spacing:0.067200pt;}
.lsc{letter-spacing:0.099733pt;}
.lsb{letter-spacing:0.120533pt;}
.ls18{letter-spacing:0.122667pt;}
.ls12{letter-spacing:0.143467pt;}
.ls14{letter-spacing:0.179200pt;}
.ls15{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.258667pt;}
.ls11{letter-spacing:0.282133pt;}
.ls0{letter-spacing:0.312533pt;}
.ls1{letter-spacing:13.931520pt;}
.lsf{letter-spacing:16.028160pt;}
.ls10{letter-spacing:16.668160pt;}
.lse{letter-spacing:53.728000pt;}
.ws1{word-spacing:-40.498560pt;}
.ws2{word-spacing:-31.087627pt;}
.ws0{word-spacing:-16.008192pt;}
.ws11{word-spacing:-15.198336pt;}
.ws14{word-spacing:-14.358933pt;}
.ws13{word-spacing:-14.076800pt;}
.ws15{word-spacing:-13.954560pt;}
.ws16{word-spacing:-12.720000pt;}
.ws9{word-spacing:-12.589440pt;}
.ws12{word-spacing:0.000000pt;}
.wsa{word-spacing:11.857920pt;}
.ws7{word-spacing:13.816747pt;}
.wsb{word-spacing:15.507413pt;}
.ws8{word-spacing:20.244267pt;}
.ws10{word-spacing:40.355840pt;}
.wse{word-spacing:40.468480pt;}
.wsc{word-spacing:40.575360pt;}
.ws6{word-spacing:41.964160pt;}
.ws4{word-spacing:43.155520pt;}
.wsd{word-spacing:43.255040pt;}
.ws5{word-spacing:43.474560pt;}
.ws3{word-spacing:45.204480pt;}
.wsf{word-spacing:45.630400pt;}
._5{margin-left:-2.159979pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.236459pt;}
._3{width:2.213419pt;}
._2{width:3.108480pt;}
._9{width:14.866155pt;}
._6{width:28.590720pt;}
._7{width:30.131200pt;}
._4{width:31.268480pt;}
._8{width:33.743360pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs9{font-size:69.120000pt;}
.fs2{font-size:117.248000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:14.848000pt;}
.y65{bottom:37.568000pt;}
.y64{bottom:51.968000pt;}
.y2d{bottom:60.640000pt;}
.y10{bottom:62.272000pt;}
.y63{bottom:74.368000pt;}
.y2c{bottom:78.880000pt;}
.yf{bottom:80.512000pt;}
.y2b{bottom:97.120000pt;}
.ye{bottom:98.784000pt;}
.y62{bottom:104.768000pt;}
.y2a{bottom:115.360000pt;}
.yd{bottom:117.024000pt;}
.y61{bottom:119.168000pt;}
.y29{bottom:133.600000pt;}
.yc{bottom:135.266667pt;}
.y60{bottom:141.573333pt;}
.yb{bottom:153.506667pt;}
.ya{bottom:171.746667pt;}
.y5f{bottom:171.973333pt;}
.y5e{bottom:186.373333pt;}
.y2e{bottom:187.933333pt;}
.y9{bottom:189.986667pt;}
.y5d{bottom:208.800000pt;}
.y5c{bottom:239.200000pt;}
.y3d{bottom:241.026667pt;}
.y28{bottom:242.373333pt;}
.y5b{bottom:253.600000pt;}
.y27{bottom:260.613333pt;}
.y5a{bottom:268.000000pt;}
.y26{bottom:278.853333pt;}
.y25{bottom:297.093333pt;}
.y59{bottom:298.400000pt;}
.y38{bottom:299.040000pt;}
.y58{bottom:312.800000pt;}
.y24{bottom:315.333333pt;}
.y37{bottom:317.280000pt;}
.y57{bottom:327.200000pt;}
.y36{bottom:335.520000pt;}
.y35{bottom:353.760000pt;}
.y39{bottom:369.893333pt;}
.y34{bottom:372.000000pt;}
.y4b{bottom:374.333333pt;}
.y33{bottom:390.240000pt;}
.y4a{bottom:392.573333pt;}
.y32{bottom:408.480000pt;}
.y23{bottom:424.826667pt;}
.y31{bottom:426.746667pt;}
.y49{bottom:429.053333pt;}
.y22{bottom:443.066667pt;}
.y30{bottom:444.986667pt;}
.y48{bottom:448.093333pt;}
.y21{bottom:461.306667pt;}
.y2f{bottom:463.226667pt;}
.y20{bottom:479.546667pt;}
.y47{bottom:487.493333pt;}
.y1f{bottom:497.786667pt;}
.y46{bottom:505.733333pt;}
.y1e{bottom:516.026667pt;}
.y3c{bottom:516.133333pt;}
.y45{bottom:523.973333pt;}
.y1d{bottom:534.266667pt;}
.y44{bottom:542.213333pt;}
.y1c{bottom:552.546667pt;}
.y43{bottom:560.453333pt;}
.y1b{bottom:570.786667pt;}
.y8{bottom:572.093333pt;}
.y42{bottom:578.693333pt;}
.y1a{bottom:589.026667pt;}
.y7{bottom:590.333333pt;}
.y41{bottom:597.733333pt;}
.y19{bottom:607.266667pt;}
.y6{bottom:608.613333pt;}
.y18{bottom:625.506667pt;}
.y5{bottom:626.853333pt;}
.y17{bottom:643.746667pt;}
.y4{bottom:645.093333pt;}
.y56{bottom:654.146667pt;}
.y52{bottom:657.826667pt;}
.y16{bottom:661.986667pt;}
.y3{bottom:663.333333pt;}
.y55{bottom:675.266667pt;}
.y51{bottom:678.786667pt;}
.y54{bottom:698.946667pt;}
.y50{bottom:702.626667pt;}
.y3e{bottom:713.893333pt;}
.y3b{bottom:716.480000pt;}
.y53{bottom:722.626667pt;}
.y4f{bottom:725.346667pt;}
.y4e{bottom:746.306667pt;}
.y4d{bottom:769.186667pt;}
.y15{bottom:780.506667pt;}
.y4c{bottom:790.146667pt;}
.y14{bottom:800.666667pt;}
.y13{bottom:820.706667pt;}
.y40{bottom:834.080000pt;}
.y12{bottom:840.706667pt;}
.y3f{bottom:853.120000pt;}
.y11{bottom:860.866667pt;}
.y1{bottom:926.880000pt;}
.y2{bottom:928.413333pt;}
.ha{height:50.400000pt;}
.h3{height:55.776000pt;}
.h4{height:55.910400pt;}
.h5{height:61.824000pt;}
.h6{height:61.958400pt;}
.h7{height:67.200000pt;}
.h8{height:67.334400pt;}
.h9{height:72.576000pt;}
.h2{height:123.110400pt;}
.h1{height:448.358400pt;}
.h0{height:1040.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x5{left:32.479989pt;}
.x1{left:35.871989pt;}
.x3{left:39.871989pt;}
.x11{left:49.055989pt;}
.x4{left:63.903989pt;}
.x13{left:77.055989pt;}
.xf{left:83.903989pt;}
.x10{left:101.983989pt;}
.xd{left:154.239989pt;}
.x2{left:166.239989pt;}
.xb{left:194.946656pt;}
.xc{left:202.559989pt;}
.xa{left:322.626656pt;}
.x12{left:375.039989pt;}
.x6{left:392.773323pt;}
.x7{left:416.773323pt;}
.xe{left:471.933323pt;}
.x8{left:490.239989pt;}
.x9{left:542.746656pt;}
}




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