
    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_dde39d80e9c694782d7654bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_846c5105902f1378da93c9e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_3467a9855cbab0ea5ba6c6dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.724121;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_095515050aa50d867157ef27.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_bbaf74a6e693e281c9687889.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_d2c46fc53589b7a1d76e1161.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_d7e6ab5bd4336fe35a2e90f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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_8bdbe84c00d1ca0da6ed91d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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:ff9;src:url('chunks/assets/font_fadd9d5d4671f9bbe5f9bd53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.119528,0.219574,-0.219574,0.119528,0,0);-ms-transform:matrix(0.119528,0.219574,-0.219574,0.119528,0,0);-webkit-transform:matrix(0.119528,0.219574,-0.219574,0.119528,0,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);}
.m3{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;}
.v2{vertical-align:1.781346px;}
.v3{vertical-align:48.000042px;}
.v1{vertical-align:57.600030px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.057865px;}
.ls0{letter-spacing:0.069466px;}
.ls1{letter-spacing:0.069475px;}
.ls2{letter-spacing:0.163063px;}
.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;}
}
.ws5{word-spacing:-215.999994px;}
.ws6{word-spacing:-48.815999px;}
.ws0{word-spacing:-33.695975px;}
.ws4{word-spacing:-32.853613px;}
.ws7{word-spacing:0.000000px;}
.ws1{word-spacing:138.195832px;}
.ws2{word-spacing:3421.826113px;}
.ws3{word-spacing:3478.104479px;}
._8{margin-left:-12669.298033px;}
._9{margin-left:-16.200000px;}
._1{margin-left:-13.392006px;}
._6{margin-left:-10.008099px;}
._b{margin-left:-8.899756px;}
._5{margin-left:-5.951985px;}
._4{margin-left:-4.703996px;}
._3{margin-left:-2.736001px;}
._2{margin-left:-1.152000px;}
._0{width:1.104172px;}
._a{width:2.304001px;}
._7{width:4.494898px;}
.fc7{color:transparent;}
.fc6{color:rgb(128,0,128);}
.fc4{color:rgb(170,0,0);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,128,0);}
.fc1{color:rgb(0,104,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:56.103084px;}
.fsd{font-size:78.000047px;}
.fsa{font-size:83.175288px;}
.fsb{font-size:86.458554px;}
.fs2{font-size:93.599946px;}
.fs7{font-size:93.600036px;}
.fs4{font-size:95.999928px;}
.fs0{font-size:96.000096px;}
.fs8{font-size:99.719664px;}
.fsc{font-size:120.000077px;}
.fs1{font-size:144.000060px;}
.fs3{font-size:215.999994px;}
.fs6{font-size:216.001698px;}
.fs5{font-size:335.999070px;}
.y0{bottom:0.000000px;}
.ye{bottom:89.868973px;}
.y3f{bottom:115.068580px;}
.yd{bottom:119.868951px;}
.y3e{bottom:146.668720px;}
.yc{bottom:149.868928px;}
.y9{bottom:149.986113px;}
.y3d{bottom:178.268861px;}
.yb{bottom:179.868906px;}
.y8{bottom:179.986090px;}
.ya{bottom:209.423547px;}
.y3c{bottom:209.869000px;}
.y7{bottom:209.986068px;}
.y4f{bottom:951.379712px;}
.y46{bottom:1180.738846px;}
.y45{bottom:1227.955562px;}
.y2a{bottom:1328.695257px;}
.y4a{bottom:1517.846181px;}
.y49{bottom:1573.414959px;}
.y4e{bottom:1624.613940px;}
.y48{bottom:1627.540290px;}
.y4c{bottom:2061.316664px;}
.y4b{bottom:2094.558357px;}
.y4d{bottom:2156.381981px;}
.y32{bottom:2249.860768px;}
.y31{bottom:2297.077523px;}
.y30{bottom:2343.877543px;}
.y29{bottom:2443.721055px;}
.y50{bottom:2740.829895px;}
.y51{bottom:3112.011788px;}
.y44{bottom:3495.242770px;}
.y42{bottom:3502.571869px;}
.y43{bottom:3542.459526px;}
.y41{bottom:3549.788625px;}
.y40{bottom:3596.588645px;}
.y47{bottom:3690.408827px;}
.y5{bottom:3879.601734px;}
.y1{bottom:3883.886661px;}
.y4{bottom:3926.818489px;}
.y3{bottom:3977.238884px;}
.y2{bottom:4024.038903px;}
.y35{bottom:4160.553204px;}
.y38{bottom:4326.404727px;}
.y37{bottom:4353.410112px;}
.y36{bottom:4385.615289px;}
.y39{bottom:4445.031093px;}
.y3a{bottom:4504.241475px;}
.y3b{bottom:4563.640377px;}
.y2f{bottom:4598.775706px;}
.y34{bottom:4689.141848px;}
.y33{bottom:4720.341825px;}
.y1f{bottom:5094.461867px;}
.y21{bottom:5118.450765px;}
.y1e{bottom:5141.678623px;}
.y20{bottom:5165.250785px;}
.y1d{bottom:5188.895379px;}
.y2e{bottom:5189.312176px;}
.y1c{bottom:5236.112134px;}
.y2d{bottom:5236.528932px;}
.y1b{bottom:5283.328890px;}
.y2c{bottom:5283.328951px;}
.y1a{bottom:5330.128909px;}
.y2b{bottom:5330.128971px;}
.y28{bottom:5426.748936px;}
.y6{bottom:5426.748938px;}
.y27{bottom:5563.079470px;}
.y19{bottom:5566.283068px;}
.y14{bottom:5566.283104px;}
.y26{bottom:5610.296226px;}
.y18{bottom:5613.499823px;}
.y13{bottom:5613.499859px;}
.y25{bottom:5657.512981px;}
.y17{bottom:5660.716579px;}
.y12{bottom:5660.716615px;}
.y16{bottom:5707.933335px;}
.y11{bottom:5707.933371px;}
.y15{bottom:5755.150090px;}
.y10{bottom:5755.150127px;}
.yf{bottom:5826.689549px;}
.y24{bottom:6006.377780px;}
.y23{bottom:6097.312042px;}
.y22{bottom:6206.511739px;}
.hf{height:42.899136px;}
.h10{height:63.599854px;}
.h13{height:66.110398px;}
.h7{height:73.406195px;}
.h2{height:73.406323px;}
.he{height:76.250485px;}
.h8{height:78.562441px;}
.h5{height:110.109421px;}
.h11{height:110.109583px;}
.h3{height:117.843799px;}
.h4{height:129.171082px;}
.h12{height:129.171145px;}
.hc{height:129.171170px;}
.h14{height:139.757907px;}
.h6{height:147.656246px;}
.hd{height:147.867183px;}
.h9{height:165.164058px;}
.hb{height:165.165361px;}
.ha{height:274.967989px;}
.h0{height:6356.693115px;}
.h1{height:6357.000000px;}
.w0{width:3575.905518px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x23{left:82.812993px;}
.xc{left:125.537701px;}
.xd{left:153.838501px;}
.x1b{left:166.738977px;}
.x2{left:168.057391px;}
.x18{left:178.905114px;}
.xf{left:186.496851px;}
.xe{left:196.358191px;}
.x22{left:260.531412px;}
.x26{left:390.420948px;}
.x27{left:396.067995px;}
.x28{left:401.169501px;}
.x8{left:474.878919px;}
.x13{left:620.630885px;}
.x12{left:662.446221px;}
.x2b{left:724.198161px;}
.x2c{left:821.814471px;}
.x6{left:904.710926px;}
.x7{left:1180.315703px;}
.x9{left:1289.161218px;}
.xa{left:1307.600678px;}
.xb{left:1317.462018px;}
.x10{left:1348.556095px;}
.x11{left:1379.968232px;}
.x24{left:1411.905826px;}
.x1{left:1458.653445px;}
.x14{left:1497.357847px;}
.x19{left:1913.004752px;}
.x3{left:1915.323697px;}
.x1a{left:1918.322659px;}
.x1f{left:1939.462437px;}
.x21{left:1980.715895px;}
.x20{left:1983.332023px;}
.x1e{left:1989.632681px;}
.x29{left:2074.544196px;}
.x2a{left:2076.668831px;}
.x25{left:2438.685341px;}
.x15{left:2452.784780px;}
.x16{left:2471.224239px;}
.x17{left:2481.085561px;}
.x5{left:2709.295516px;}
.x1d{left:2726.798210px;}
.x1c{left:2853.822954px;}
.x4{left:2854.857447px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.583419pt;}
.v3{vertical-align:42.666704pt;}
.v1{vertical-align:51.200027pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.051435pt;}
.ls0{letter-spacing:0.061748pt;}
.ls1{letter-spacing:0.061756pt;}
.ls2{letter-spacing:0.144945pt;}
.ws5{word-spacing:-191.999995pt;}
.ws6{word-spacing:-43.391999pt;}
.ws0{word-spacing:-29.951978pt;}
.ws4{word-spacing:-29.203211pt;}
.ws7{word-spacing:0.000000pt;}
.ws1{word-spacing:122.840740pt;}
.ws2{word-spacing:3041.623212pt;}
.ws3{word-spacing:3091.648426pt;}
._8{margin-left:-11261.598251pt;}
._9{margin-left:-14.400000pt;}
._1{margin-left:-11.904005pt;}
._6{margin-left:-8.896088pt;}
._b{margin-left:-7.910894pt;}
._5{margin-left:-5.290653pt;}
._4{margin-left:-4.181330pt;}
._3{margin-left:-2.432001pt;}
._2{margin-left:-1.024000pt;}
._0{width:0.981487pt;}
._a{width:2.048001pt;}
._7{width:3.995465pt;}
.fs9{font-size:49.869408pt;}
.fsd{font-size:69.333375pt;}
.fsa{font-size:73.933589pt;}
.fsb{font-size:76.852048pt;}
.fs2{font-size:83.199952pt;}
.fs7{font-size:83.200032pt;}
.fs4{font-size:85.333269pt;}
.fs0{font-size:85.333419pt;}
.fs8{font-size:88.639701pt;}
.fsc{font-size:106.666735pt;}
.fs1{font-size:128.000053pt;}
.fs3{font-size:191.999995pt;}
.fs6{font-size:192.001509pt;}
.fs5{font-size:298.665840pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:79.883532pt;}
.y3f{bottom:102.283183pt;}
.yd{bottom:106.550178pt;}
.y3e{bottom:130.372196pt;}
.yc{bottom:133.216825pt;}
.y9{bottom:133.320989pt;}
.y3d{bottom:158.461209pt;}
.yb{bottom:159.883472pt;}
.y8{bottom:159.987636pt;}
.ya{bottom:186.154264pt;}
.y3c{bottom:186.550223pt;}
.y7{bottom:186.654283pt;}
.y4f{bottom:845.670855pt;}
.y46{bottom:1049.545641pt;}
.y45{bottom:1091.516055pt;}
.y2a{bottom:1181.062451pt;}
.y4a{bottom:1349.196605pt;}
.y49{bottom:1398.591075pt;}
.y4e{bottom:1444.101280pt;}
.y48{bottom:1446.702480pt;}
.y4c{bottom:1832.281479pt;}
.y4b{bottom:1861.829651pt;}
.y4d{bottom:1916.783983pt;}
.y32{bottom:1999.876238pt;}
.y31{bottom:2041.846687pt;}
.y30{bottom:2083.446705pt;}
.y29{bottom:2172.196493pt;}
.y50{bottom:2436.293240pt;}
.y51{bottom:2766.232700pt;}
.y44{bottom:3106.882462pt;}
.y42{bottom:3113.397217pt;}
.y43{bottom:3148.852912pt;}
.y41{bottom:3155.367667pt;}
.y40{bottom:3196.967684pt;}
.y47{bottom:3280.363401pt;}
.y5{bottom:3448.534875pt;}
.y1{bottom:3452.343699pt;}
.y4{bottom:3490.505324pt;}
.y3{bottom:3535.323452pt;}
.y2{bottom:3576.923469pt;}
.y35{bottom:3698.269515pt;}
.y38{bottom:3845.693091pt;}
.y37{bottom:3869.697877pt;}
.y36{bottom:3898.324701pt;}
.y39{bottom:3951.138750pt;}
.y3a{bottom:4003.770200pt;}
.y3b{bottom:4056.569224pt;}
.y2f{bottom:4087.800628pt;}
.y34{bottom:4168.126087pt;}
.y33{bottom:4195.859400pt;}
.y1f{bottom:4528.410549pt;}
.y21{bottom:4549.734014pt;}
.y1e{bottom:4570.380998pt;}
.y20{bottom:4591.334031pt;}
.y1d{bottom:4612.351448pt;}
.y2e{bottom:4612.721935pt;}
.y1c{bottom:4654.321897pt;}
.y2d{bottom:4654.692384pt;}
.y1b{bottom:4696.292347pt;}
.y2c{bottom:4696.292401pt;}
.y1a{bottom:4737.892364pt;}
.y2b{bottom:4737.892419pt;}
.y28{bottom:4823.776832pt;}
.y6{bottom:4823.776833pt;}
.y27{bottom:4944.959529pt;}
.y19{bottom:4947.807171pt;}
.y14{bottom:4947.807203pt;}
.y26{bottom:4986.929979pt;}
.y18{bottom:4989.777621pt;}
.y13{bottom:4989.777653pt;}
.y25{bottom:5028.900428pt;}
.y17{bottom:5031.748070pt;}
.y12{bottom:5031.748102pt;}
.y16{bottom:5073.718520pt;}
.y11{bottom:5073.718552pt;}
.y15{bottom:5115.688969pt;}
.y10{bottom:5115.689001pt;}
.yf{bottom:5179.279599pt;}
.y24{bottom:5339.002471pt;}
.y23{bottom:5419.832926pt;}
.y22{bottom:5516.899324pt;}
.hf{height:38.132565pt;}
.h10{height:56.533204pt;}
.h13{height:58.764798pt;}
.h7{height:65.249951pt;}
.h2{height:65.250065pt;}
.he{height:67.778209pt;}
.h8{height:69.833281pt;}
.h5{height:97.875041pt;}
.h11{height:97.875185pt;}
.h3{height:104.750044pt;}
.h4{height:114.818740pt;}
.h12{height:114.818796pt;}
.hc{height:114.818818pt;}
.h14{height:124.229250pt;}
.h6{height:131.249996pt;}
.hd{height:131.437496pt;}
.h9{height:146.812496pt;}
.hb{height:146.813654pt;}
.ha{height:244.415990pt;}
.h0{height:5650.393880pt;}
.h1{height:5650.666667pt;}
.w0{width:3178.582683pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x23{left:73.611549pt;}
.xc{left:111.589068pt;}
.xd{left:136.745334pt;}
.x1b{left:148.212424pt;}
.x2{left:149.384348pt;}
.x18{left:159.026768pt;}
.xf{left:165.774978pt;}
.xe{left:174.540614pt;}
.x22{left:231.583477pt;}
.x26{left:347.040843pt;}
.x27{left:352.060440pt;}
.x28{left:356.595112pt;}
.x8{left:422.114595pt;}
.x13{left:551.671898pt;}
.x12{left:588.841085pt;}
.x2b{left:643.731699pt;}
.x2c{left:730.501752pt;}
.x6{left:804.187489pt;}
.x7{left:1049.169514pt;}
.x9{left:1145.921083pt;}
.xa{left:1162.311713pt;}
.xb{left:1171.077349pt;}
.x10{left:1198.716529pt;}
.x11{left:1226.638428pt;}
.x24{left:1255.027401pt;}
.x1{left:1296.580840pt;}
.x14{left:1330.984753pt;}
.x19{left:1700.448668pt;}
.x3{left:1702.509953pt;}
.x1a{left:1705.175696pt;}
.x1f{left:1723.966611pt;}
.x21{left:1760.636351pt;}
.x20{left:1762.961799pt;}
.x1e{left:1768.562383pt;}
.x29{left:1844.039285pt;}
.x2a{left:1845.927849pt;}
.x25{left:2167.720303pt;}
.x15{left:2180.253137pt;}
.x16{left:2196.643768pt;}
.x17{left:2205.409387pt;}
.x5{left:2408.262681pt;}
.x1d{left:2423.820631pt;}
.x1c{left:2536.731515pt;}
.x4{left:2537.651064pt;}
}




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