
    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_c9df615923b27070c952d66f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_e222bf439f936b3e6b4f1a29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_f151ceb2a043a97ff598b62a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_0285c10024f21bef9af048df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_e0875481968b2c23c5167b57.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_6667ea07d2a5a0884f19f364.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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;}
.ls11{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.378600px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.252720px;}
.lsb{letter-spacing:0.360000px;}
.ls6{letter-spacing:7.020000px;}
.ls12{letter-spacing:9.900000px;}
.ls9{letter-spacing:10.620000px;}
.ls2{letter-spacing:11.520000px;}
.ls1{letter-spacing:18.540000px;}
.ls3{letter-spacing:20.700000px;}
.ls7{letter-spacing:20.880000px;}
.lsd{letter-spacing:21.197280px;}
.lsa{letter-spacing:46.002720px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.312720px;}
.wsa{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.681400px;}
.ws5{word-spacing:-20.376000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._7d{margin-left:-20.510640px;}
._7c{margin-left:-6.345840px;}
._7a{margin-left:-5.268960px;}
._1c{margin-left:-4.104720px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._5{width:1.031520px;}
._4{width:2.244480px;}
._8{width:3.324240px;}
._d{width:4.344720px;}
._6e{width:5.394720px;}
._e{width:6.433200px;}
._7{width:7.750800px;}
._6{width:8.894880px;}
._22{width:10.090800px;}
._f{width:11.280240px;}
._a{width:12.431760px;}
._b{width:13.478400px;}
._20{width:14.904240px;}
._1e{width:16.174080px;}
._1d{width:17.401920px;}
._9{width:19.375200px;}
._21{width:22.688400px;}
._23{width:23.755680px;}
._25{width:25.294560px;}
._1b{width:26.827920px;}
._4e{width:28.184640px;}
._2d{width:29.279760px;}
._57{width:30.530640px;}
._67{width:31.533600px;}
._3c{width:33.780240px;}
._c{width:35.132160px;}
._13{width:36.520320px;}
._47{width:38.750400px;}
._11{width:40.098240px;}
._10{width:41.157600px;}
._1a{width:42.926640px;}
._24{width:44.899920px;}
._3e{width:45.910800px;}
._17{width:47.342880px;}
._59{width:48.438000px;}
._71{width:49.785840px;}
._79{width:50.845200px;}
._50{width:52.397280px;}
._19{width:54.574800px;}
._18{width:55.646880px;}
._33{width:56.994720px;}
._12{width:59.184960px;}
._70{width:61.663680px;}
._78{width:62.927280px;}
._6d{width:64.829040px;}
._27{width:66.008400px;}
._16{width:68.619840px;}
._15{width:69.799200px;}
._3b{width:71.772480px;}
._1f{width:73.373040px;}
._41{width:74.468160px;}
._32{width:75.666240px;}
._2a{width:77.145120px;}
._37{width:78.764400px;}
._43{width:80.196480px;}
._6b{width:81.797040px;}
._35{width:82.856400px;}
._58{width:84.277440px;}
._55{width:85.587840px;}
._56{width:87.019920px;}
._39{width:88.620480px;}
._4d{width:91.147680px;}
._62{width:92.242800px;}
._74{width:95.071200px;}
._36{width:97.924320px;}
._5e{width:101.132160px;}
._3d{width:103.109760px;}
._77{width:106.190880px;}
._38{width:107.791440px;}
._65{width:110.655600px;}
._2e{width:113.014320px;}
._69{width:114.987600px;}
._42{width:117.514800px;}
._52{width:120.595920px;}
._5b{width:122.737680px;}
._14{width:126.071520px;}
._5a{width:131.161680px;}
._66{width:133.183440px;}
._31{width:136.468800px;}
._30{width:140.512320px;}
._60{width:142.197120px;}
._63{width:143.256480px;}
._3f{width:149.526000px;}
._28{width:153.365280px;}
._6c{width:154.460400px;}
._29{width:165.531600px;}
._34{width:166.626720px;}
._4b{width:169.202400px;}
._2b{width:172.860480px;}
._51{width:178.805760px;}
._4a{width:180.996000px;}
._40{width:182.885040px;}
._68{width:186.928560px;}
._2f{width:188.950320px;}
._6a{width:193.583520px;}
._72{width:198.686400px;}
._7b{width:205.714080px;}
._5c{width:206.826000px;}
._26{width:208.072800px;}
._5d{width:210.263040px;}
._4c{width:222.694800px;}
._3a{width:226.704240px;}
._6f{width:239.157360px;}
._5f{width:240.926400px;}
._4f{width:245.110560px;}
._2c{width:252.720000px;}
._44{width:257.100480px;}
._46{width:261.902160px;}
._48{width:289.981920px;}
._53{width:293.913360px;}
._61{width:304.864560px;}
._45{width:308.065680px;}
._54{width:320.196240px;}
._49{width:325.419120px;}
._76{width:333.217680px;}
._75{width:346.984560px;}
._73{width:389.321520px;}
._64{width:404.015040px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2a{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.yaf{bottom:16.725000px;}
.y56{bottom:16.740000px;}
.y72{bottom:16.770000px;}
.ycf{bottom:16.905000px;}
.y6f{bottom:17.085000px;}
.y79{bottom:17.100000px;}
.y68{bottom:17.130000px;}
.y5d{bottom:17.265000px;}
.y63{bottom:17.280000px;}
.y2{bottom:20.340000px;}
.y7{bottom:31.500000px;}
.y4{bottom:47.010000px;}
.yaa{bottom:52.905000px;}
.y55{bottom:52.920000px;}
.y71{bottom:52.950000px;}
.yae{bottom:53.085000px;}
.y9e{bottom:53.100000px;}
.yc7{bottom:53.130000px;}
.y6e{bottom:53.265000px;}
.y78{bottom:53.280000px;}
.y67{bottom:53.310000px;}
.yad{bottom:53.445000px;}
.y9f{bottom:53.460000px;}
.y5c{bottom:53.490000px;}
.yc{bottom:59.400000px;}
.y28{bottom:82.410000px;}
.yb3{bottom:89.100000px;}
.ya9{bottom:89.265000px;}
.y9d{bottom:89.280000px;}
.y98{bottom:89.310000px;}
.y6d{bottom:89.445000px;}
.y77{bottom:89.460000px;}
.y7e{bottom:89.490000px;}
.yab{bottom:89.625000px;}
.y96{bottom:89.640000px;}
.y5b{bottom:89.670000px;}
.yd3{bottom:108.570000px;}
.yd1{bottom:108.705000px;}
.yd6{bottom:108.720000px;}
.ycb{bottom:108.750000px;}
.yb2{bottom:125.280000px;}
.ya8{bottom:125.445000px;}
.y9c{bottom:125.460000px;}
.y97{bottom:125.490000px;}
.yb1{bottom:125.640000px;}
.y6c{bottom:125.805000px;}
.y76{bottom:125.820000px;}
.y5a{bottom:125.850000px;}
.y26{bottom:131.400000px;}
.yc6{bottom:135.180000px;}
.y8c{bottom:135.900000px;}
.y46{bottom:138.240000px;}
.ycd{bottom:144.900000px;}
.yd5{bottom:144.930000px;}
.yd2{bottom:151.380000px;}
.y70{bottom:152.820000px;}
.y99{bottom:153.540000px;}
.y53{bottom:156.420000px;}
.y6a{bottom:161.625000px;}
.yb5{bottom:161.640000px;}
.y58{bottom:161.670000px;}
.ya4{bottom:161.820000px;}
.y6b{bottom:161.985000px;}
.y75{bottom:162.000000px;}
.y59{bottom:162.030000px;}
.y94{bottom:162.045000px;}
.ya6{bottom:162.180000px;}
.y62{bottom:162.210000px;}
.y25{bottom:167.580000px;}
.yc5{bottom:171.570000px;}
.y8b{bottom:172.290000px;}
.y45{bottom:174.450000px;}
.yc9{bottom:181.080000px;}
.yac{bottom:189.045000px;}
.y52{bottom:192.630000px;}
.y65{bottom:197.850000px;}
.y91{bottom:197.865000px;}
.y9a{bottom:198.030000px;}
.ya3{bottom:198.045000px;}
.y74{bottom:198.180000px;}
.y66{bottom:198.210000px;}
.y93{bottom:198.225000px;}
.y61{bottom:198.390000px;}
.ya5{bottom:198.405000px;}
.y24{bottom:203.790000px;}
.yc4{bottom:207.750000px;}
.y8a{bottom:208.470000px;}
.y44{bottom:210.630000px;}
.y69{bottom:226.125000px;}
.y51{bottom:228.990000px;}
.y90{bottom:234.045000px;}
.y5f{bottom:234.210000px;}
.ya2{bottom:234.225000px;}
.y7d{bottom:234.390000px;}
.y92{bottom:234.405000px;}
.y60{bottom:234.570000px;}
.ya1{bottom:234.585000px;}
.y23{bottom:239.970000px;}
.yc3{bottom:243.930000px;}
.y89{bottom:244.650000px;}
.y4b{bottom:245.370000px;}
.y43{bottom:246.990000px;}
.y50{bottom:260.310000px;}
.yd0{bottom:260.685000px;}
.ya7{bottom:262.305000px;}
.y8f{bottom:270.225000px;}
.y7b{bottom:270.390000px;}
.y8e{bottom:270.585000px;}
.y7c{bottom:270.750000px;}
.y22{bottom:276.330000px;}
.y4a{bottom:276.510000px;}
.yc2{bottom:280.110000px;}
.y88{bottom:280.830000px;}
.y42{bottom:283.170000px;}
.y21{bottom:312.510000px;}
.yc1{bottom:316.290000px;}
.y87{bottom:317.190000px;}
.y41{bottom:319.350000px;}
.y20{bottom:348.690000px;}
.yc0{bottom:352.650000px;}
.y86{bottom:353.370000px;}
.y40{bottom:355.530000px;}
.yce{bottom:370.125000px;}
.y1f{bottom:384.510000px;}
.ybf{bottom:388.830000px;}
.y85{bottom:389.550000px;}
.y3f{bottom:391.890000px;}
.y64{bottom:407.925000px;}
.y1e{bottom:420.735000px;}
.ybe{bottom:425.055000px;}
.y84{bottom:425.775000px;}
.y3e{bottom:428.115000px;}
.ycc{bottom:443.415000px;}
.y1d{bottom:457.455000px;}
.ybd{bottom:461.235000px;}
.y83{bottom:462.135000px;}
.y3d{bottom:464.295000px;}
.y1c{bottom:493.635000px;}
.ybc{bottom:497.595000px;}
.y82{bottom:498.315000px;}
.y3c{bottom:500.475000px;}
.y4f{bottom:520.995000px;}
.y1b{bottom:529.815000px;}
.yd8{bottom:533.415000px;}
.ybb{bottom:533.775000px;}
.y81{bottom:534.495000px;}
.y3b{bottom:536.835000px;}
.y4e{bottom:552.135000px;}
.y95{bottom:553.575000px;}
.y1a{bottom:565.995000px;}
.yba{bottom:569.955000px;}
.y80{bottom:570.675000px;}
.y3a{bottom:573.015000px;}
.yca{bottom:589.035000px;}
.y19{bottom:602.355000px;}
.yb9{bottom:606.135000px;}
.y7f{bottom:606.855000px;}
.y39{bottom:609.195000px;}
.y5e{bottom:625.935000px;}
.y7a{bottom:626.835000px;}
.y18{bottom:638.535000px;}
.yb8{bottom:642.495000px;}
.y38{bottom:645.375000px;}
.y17{bottom:674.745000px;}
.yb7{bottom:678.705000px;}
.y37{bottom:681.585000px;}
.yc8{bottom:698.505000px;}
.y16{bottom:710.925000px;}
.yd7{bottom:714.525000px;}
.yb6{bottom:714.885000px;}
.y36{bottom:717.945000px;}
.yb4{bottom:734.685000px;}
.ya0{bottom:735.405000px;}
.y15{bottom:747.285000px;}
.y35{bottom:754.125000px;}
.y8d{bottom:771.765000px;}
.y14{bottom:783.465000px;}
.y34{bottom:790.305000px;}
.y13{bottom:819.645000px;}
.y33{bottom:826.125000px;}
.y49{bottom:826.485000px;}
.y4d{bottom:835.665000px;}
.yd4{bottom:844.140000px;}
.y12{bottom:855.825000px;}
.y32{bottom:862.485000px;}
.y48{bottom:862.845000px;}
.y4c{bottom:866.805000px;}
.y57{bottom:880.320000px;}
.y11{bottom:892.005000px;}
.y31{bottom:898.665000px;}
.y47{bottom:899.025000px;}
.yb0{bottom:916.710000px;}
.y73{bottom:917.430000px;}
.y10{bottom:928.410000px;}
.y30{bottom:935.250000px;}
.yf{bottom:964.590000px;}
.y2f{bottom:971.430000px;}
.y9b{bottom:989.790000px;}
.ye{bottom:1000.410000px;}
.y2e{bottom:1007.790000px;}
.yd{bottom:1031.910000px;}
.y27{bottom:1033.560000px;}
.y2d{bottom:1043.970000px;}
.y54{bottom:1062.330000px;}
.y29{bottom:1079.790000px;}
.y2c{bottom:1080.150000px;}
.y2b{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h2{height:40.320000px;}
.h7{height:58.651172px;}
.ha{height:60.465234px;}
.h4{height:66.450000px;}
.he{height:72.345000px;}
.h13{height:72.396000px;}
.h1c{height:72.525000px;}
.h21{height:72.561000px;}
.hb{height:72.846211px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h16{height:86.585445px;}
.hc{height:101.880000px;}
.h23{height:108.576000px;}
.h22{height:108.705000px;}
.h24{height:108.720000px;}
.h1e{height:108.741000px;}
.h20{height:108.750000px;}
.h8{height:110.700000px;}
.h1d{height:144.705000px;}
.h1a{height:144.885000px;}
.h19{height:144.921000px;}
.hd{height:145.125000px;}
.h12{height:181.065000px;}
.h1f{height:181.080000px;}
.hf{height:181.095000px;}
.h1b{height:181.110000px;}
.h9{height:182.039062px;}
.h14{height:217.245000px;}
.h11{height:217.275000px;}
.h18{height:217.290000px;}
.h10{height:253.650000px;}
.h17{height:289.650000px;}
.h15{height:289.860000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:63.531000px;}
.w7{width:115.761000px;}
.w5{width:122.400000px;}
.wf{width:152.655000px;}
.wa{width:162.705000px;}
.w3{width:163.830000px;}
.w9{width:167.955000px;}
.w4{width:169.230000px;}
.w8{width:169.770000px;}
.wc{width:188.295000px;}
.w2{width:188.481000px;}
.we{width:192.480000px;}
.w11{width:241.935000px;}
.w10{width:262.830000px;}
.wd{width:266.430000px;}
.w6{width:693.900000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x22{left:7.725000px;}
.x26{left:12.225000px;}
.x7{left:14.940000px;}
.x4{left:22.680000px;}
.x29{left:23.925000px;}
.x2a{left:27.345000px;}
.x27{left:30.405000px;}
.x28{left:31.485000px;}
.x2e{left:34.731000px;}
.x36{left:40.305000px;}
.x30{left:42.105000px;}
.x38{left:60.840000px;}
.x2d{left:90.945000px;}
.x6{left:100.476000px;}
.x3a{left:102.765000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.x17{left:127.476000px;}
.x35{left:134.685000px;}
.xe{left:142.956000px;}
.x13{left:144.216000px;}
.xd{left:153.570000px;}
.x2f{left:155.385000px;}
.x1d{left:172.830000px;}
.x21{left:175.185000px;}
.x1b{left:187.950000px;}
.x1f{left:192.270000px;}
.x19{left:198.750000px;}
.x2c{left:206.670000px;}
.x1e{left:208.470000px;}
.x10{left:220.350000px;}
.x34{left:259.410000px;}
.x11{left:276.375000px;}
.xf{left:280.875000px;}
.xb{left:286.635000px;}
.x37{left:288.075000px;}
.x23{left:291.675000px;}
.xa{left:292.755000px;}
.x14{left:322.455000px;}
.x31{left:344.415000px;}
.x12{left:346.965000px;}
.x33{left:348.375000px;}
.x9{left:360.435000px;}
.x15{left:362.775000px;}
.x16{left:384.555000px;}
.x3b{left:423.615000px;}
.x3c{left:424.875000px;}
.xc{left:447.405000px;}
.x24{left:462.180000px;}
.x2b{left:473.865000px;}
.x39{left:551.640000px;}
.x32{left:611.580000px;}
.x25{left:630.870000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x18{left:687.750000px;}
.x1a{left:694.950000px;}
.x1c{left:699.090000px;}
.x20{left:717.270000px;}
.x8{left:795.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.336533pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.224640pt;}
.lsb{letter-spacing:0.320000pt;}
.ls6{letter-spacing:6.240000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls9{letter-spacing:9.440000pt;}
.ls2{letter-spacing:10.240000pt;}
.ls1{letter-spacing:16.480000pt;}
.ls3{letter-spacing:18.400000pt;}
.ls7{letter-spacing:18.560000pt;}
.lsd{letter-spacing:18.842027pt;}
.lsa{letter-spacing:40.891307pt;}
.ws6{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.944640pt;}
.wsa{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.383467pt;}
.ws5{word-spacing:-18.112000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._7d{margin-left:-18.231680pt;}
._7c{margin-left:-5.640747pt;}
._7a{margin-left:-4.683520pt;}
._1c{margin-left:-3.648640pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._5{width:0.916907pt;}
._4{width:1.995093pt;}
._8{width:2.954880pt;}
._d{width:3.861973pt;}
._6e{width:4.795307pt;}
._e{width:5.718400pt;}
._7{width:6.889600pt;}
._6{width:7.906560pt;}
._22{width:8.969600pt;}
._f{width:10.026880pt;}
._a{width:11.050453pt;}
._b{width:11.980800pt;}
._20{width:13.248213pt;}
._1e{width:14.376960pt;}
._1d{width:15.468373pt;}
._9{width:17.222400pt;}
._21{width:20.167467pt;}
._23{width:21.116160pt;}
._25{width:22.484053pt;}
._1b{width:23.847040pt;}
._4e{width:25.053013pt;}
._2d{width:26.026453pt;}
._57{width:27.138347pt;}
._67{width:28.029867pt;}
._3c{width:30.026880pt;}
._c{width:31.228587pt;}
._13{width:32.462507pt;}
._47{width:34.444800pt;}
._11{width:35.642880pt;}
._10{width:36.584533pt;}
._1a{width:38.157013pt;}
._24{width:39.911040pt;}
._3e{width:40.809600pt;}
._17{width:42.082560pt;}
._59{width:43.056000pt;}
._71{width:44.254080pt;}
._79{width:45.195733pt;}
._50{width:46.575360pt;}
._19{width:48.510933pt;}
._18{width:49.463893pt;}
._33{width:50.661973pt;}
._12{width:52.608853pt;}
._70{width:54.812160pt;}
._78{width:55.935360pt;}
._6d{width:57.625813pt;}
._27{width:58.674133pt;}
._16{width:60.995413pt;}
._15{width:62.043733pt;}
._3b{width:63.797760pt;}
._1f{width:65.220480pt;}
._41{width:66.193920pt;}
._32{width:67.258880pt;}
._2a{width:68.573440pt;}
._37{width:70.012800pt;}
._43{width:71.285760pt;}
._6b{width:72.708480pt;}
._35{width:73.650133pt;}
._58{width:74.913280pt;}
._55{width:76.078080pt;}
._56{width:77.351040pt;}
._39{width:78.773760pt;}
._4d{width:81.020160pt;}
._62{width:81.993600pt;}
._74{width:84.507733pt;}
._36{width:87.043840pt;}
._5e{width:89.895253pt;}
._3d{width:91.653120pt;}
._77{width:94.391893pt;}
._38{width:95.814613pt;}
._65{width:98.360533pt;}
._2e{width:100.457173pt;}
._69{width:102.211200pt;}
._42{width:104.457600pt;}
._52{width:107.196373pt;}
._5b{width:109.100160pt;}
._14{width:112.063573pt;}
._5a{width:116.588160pt;}
._66{width:118.385280pt;}
._31{width:121.305600pt;}
._30{width:124.899840pt;}
._60{width:126.397440pt;}
._63{width:127.339093pt;}
._3f{width:132.912000pt;}
._28{width:136.324693pt;}
._6c{width:137.298133pt;}
._29{width:147.139200pt;}
._34{width:148.112640pt;}
._4b{width:150.402133pt;}
._2b{width:153.653760pt;}
._51{width:158.938453pt;}
._4a{width:160.885333pt;}
._40{width:162.564480pt;}
._68{width:166.158720pt;}
._2f{width:167.955840pt;}
._6a{width:172.074240pt;}
._72{width:176.610133pt;}
._7b{width:182.856960pt;}
._5c{width:183.845333pt;}
._26{width:184.953600pt;}
._5d{width:186.900480pt;}
._4c{width:197.950933pt;}
._3a{width:201.514880pt;}
._6f{width:212.584320pt;}
._5f{width:214.156800pt;}
._4f{width:217.876053pt;}
._2c{width:224.640000pt;}
._44{width:228.533760pt;}
._46{width:232.801920pt;}
._48{width:257.761707pt;}
._53{width:261.256320pt;}
._61{width:270.990720pt;}
._45{width:273.836160pt;}
._54{width:284.618880pt;}
._49{width:289.261440pt;}
._76{width:296.193493pt;}
._75{width:308.430720pt;}
._73{width:346.063573pt;}
._64{width:359.124480pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2a{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.yaf{bottom:14.866667pt;}
.y56{bottom:14.880000pt;}
.y72{bottom:14.906667pt;}
.ycf{bottom:15.026667pt;}
.y6f{bottom:15.186667pt;}
.y79{bottom:15.200000pt;}
.y68{bottom:15.226667pt;}
.y5d{bottom:15.346667pt;}
.y63{bottom:15.360000pt;}
.y2{bottom:18.080000pt;}
.y7{bottom:28.000000pt;}
.y4{bottom:41.786667pt;}
.yaa{bottom:47.026667pt;}
.y55{bottom:47.040000pt;}
.y71{bottom:47.066667pt;}
.yae{bottom:47.186667pt;}
.y9e{bottom:47.200000pt;}
.yc7{bottom:47.226667pt;}
.y6e{bottom:47.346667pt;}
.y78{bottom:47.360000pt;}
.y67{bottom:47.386667pt;}
.yad{bottom:47.506667pt;}
.y9f{bottom:47.520000pt;}
.y5c{bottom:47.546667pt;}
.yc{bottom:52.800000pt;}
.y28{bottom:73.253333pt;}
.yb3{bottom:79.200000pt;}
.ya9{bottom:79.346667pt;}
.y9d{bottom:79.360000pt;}
.y98{bottom:79.386667pt;}
.y6d{bottom:79.506667pt;}
.y77{bottom:79.520000pt;}
.y7e{bottom:79.546667pt;}
.yab{bottom:79.666667pt;}
.y96{bottom:79.680000pt;}
.y5b{bottom:79.706667pt;}
.yd3{bottom:96.506667pt;}
.yd1{bottom:96.626667pt;}
.yd6{bottom:96.640000pt;}
.ycb{bottom:96.666667pt;}
.yb2{bottom:111.360000pt;}
.ya8{bottom:111.506667pt;}
.y9c{bottom:111.520000pt;}
.y97{bottom:111.546667pt;}
.yb1{bottom:111.680000pt;}
.y6c{bottom:111.826667pt;}
.y76{bottom:111.840000pt;}
.y5a{bottom:111.866667pt;}
.y26{bottom:116.800000pt;}
.yc6{bottom:120.160000pt;}
.y8c{bottom:120.800000pt;}
.y46{bottom:122.880000pt;}
.ycd{bottom:128.800000pt;}
.yd5{bottom:128.826667pt;}
.yd2{bottom:134.560000pt;}
.y70{bottom:135.840000pt;}
.y99{bottom:136.480000pt;}
.y53{bottom:139.040000pt;}
.y6a{bottom:143.666667pt;}
.yb5{bottom:143.680000pt;}
.y58{bottom:143.706667pt;}
.ya4{bottom:143.840000pt;}
.y6b{bottom:143.986667pt;}
.y75{bottom:144.000000pt;}
.y59{bottom:144.026667pt;}
.y94{bottom:144.040000pt;}
.ya6{bottom:144.160000pt;}
.y62{bottom:144.186667pt;}
.y25{bottom:148.960000pt;}
.yc5{bottom:152.506667pt;}
.y8b{bottom:153.146667pt;}
.y45{bottom:155.066667pt;}
.yc9{bottom:160.960000pt;}
.yac{bottom:168.040000pt;}
.y52{bottom:171.226667pt;}
.y65{bottom:175.866667pt;}
.y91{bottom:175.880000pt;}
.y9a{bottom:176.026667pt;}
.ya3{bottom:176.040000pt;}
.y74{bottom:176.160000pt;}
.y66{bottom:176.186667pt;}
.y93{bottom:176.200000pt;}
.y61{bottom:176.346667pt;}
.ya5{bottom:176.360000pt;}
.y24{bottom:181.146667pt;}
.yc4{bottom:184.666667pt;}
.y8a{bottom:185.306667pt;}
.y44{bottom:187.226667pt;}
.y69{bottom:201.000000pt;}
.y51{bottom:203.546667pt;}
.y90{bottom:208.040000pt;}
.y5f{bottom:208.186667pt;}
.ya2{bottom:208.200000pt;}
.y7d{bottom:208.346667pt;}
.y92{bottom:208.360000pt;}
.y60{bottom:208.506667pt;}
.ya1{bottom:208.520000pt;}
.y23{bottom:213.306667pt;}
.yc3{bottom:216.826667pt;}
.y89{bottom:217.466667pt;}
.y4b{bottom:218.106667pt;}
.y43{bottom:219.546667pt;}
.y50{bottom:231.386667pt;}
.yd0{bottom:231.720000pt;}
.ya7{bottom:233.160000pt;}
.y8f{bottom:240.200000pt;}
.y7b{bottom:240.346667pt;}
.y8e{bottom:240.520000pt;}
.y7c{bottom:240.666667pt;}
.y22{bottom:245.626667pt;}
.y4a{bottom:245.786667pt;}
.yc2{bottom:248.986667pt;}
.y88{bottom:249.626667pt;}
.y42{bottom:251.706667pt;}
.y21{bottom:277.786667pt;}
.yc1{bottom:281.146667pt;}
.y87{bottom:281.946667pt;}
.y41{bottom:283.866667pt;}
.y20{bottom:309.946667pt;}
.yc0{bottom:313.466667pt;}
.y86{bottom:314.106667pt;}
.y40{bottom:316.026667pt;}
.yce{bottom:329.000000pt;}
.y1f{bottom:341.786667pt;}
.ybf{bottom:345.626667pt;}
.y85{bottom:346.266667pt;}
.y3f{bottom:348.346667pt;}
.y64{bottom:362.600000pt;}
.y1e{bottom:373.986667pt;}
.ybe{bottom:377.826667pt;}
.y84{bottom:378.466667pt;}
.y3e{bottom:380.546667pt;}
.ycc{bottom:394.146667pt;}
.y1d{bottom:406.626667pt;}
.ybd{bottom:409.986667pt;}
.y83{bottom:410.786667pt;}
.y3d{bottom:412.706667pt;}
.y1c{bottom:438.786667pt;}
.ybc{bottom:442.306667pt;}
.y82{bottom:442.946667pt;}
.y3c{bottom:444.866667pt;}
.y4f{bottom:463.106667pt;}
.y1b{bottom:470.946667pt;}
.yd8{bottom:474.146667pt;}
.ybb{bottom:474.466667pt;}
.y81{bottom:475.106667pt;}
.y3b{bottom:477.186667pt;}
.y4e{bottom:490.786667pt;}
.y95{bottom:492.066667pt;}
.y1a{bottom:503.106667pt;}
.yba{bottom:506.626667pt;}
.y80{bottom:507.266667pt;}
.y3a{bottom:509.346667pt;}
.yca{bottom:523.586667pt;}
.y19{bottom:535.426667pt;}
.yb9{bottom:538.786667pt;}
.y7f{bottom:539.426667pt;}
.y39{bottom:541.506667pt;}
.y5e{bottom:556.386667pt;}
.y7a{bottom:557.186667pt;}
.y18{bottom:567.586667pt;}
.yb8{bottom:571.106667pt;}
.y38{bottom:573.666667pt;}
.y17{bottom:599.773333pt;}
.yb7{bottom:603.293333pt;}
.y37{bottom:605.853333pt;}
.yc8{bottom:620.893333pt;}
.y16{bottom:631.933333pt;}
.yd7{bottom:635.133333pt;}
.yb6{bottom:635.453333pt;}
.y36{bottom:638.173333pt;}
.yb4{bottom:653.053333pt;}
.ya0{bottom:653.693333pt;}
.y15{bottom:664.253333pt;}
.y35{bottom:670.333333pt;}
.y8d{bottom:686.013333pt;}
.y14{bottom:696.413333pt;}
.y34{bottom:702.493333pt;}
.y13{bottom:728.573333pt;}
.y33{bottom:734.333333pt;}
.y49{bottom:734.653333pt;}
.y4d{bottom:742.813333pt;}
.yd4{bottom:750.346667pt;}
.y12{bottom:760.733333pt;}
.y32{bottom:766.653333pt;}
.y48{bottom:766.973333pt;}
.y4c{bottom:770.493333pt;}
.y57{bottom:782.506667pt;}
.y11{bottom:792.893333pt;}
.y31{bottom:798.813333pt;}
.y47{bottom:799.133333pt;}
.yb0{bottom:814.853333pt;}
.y73{bottom:815.493333pt;}
.y10{bottom:825.253333pt;}
.y30{bottom:831.333333pt;}
.yf{bottom:857.413333pt;}
.y2f{bottom:863.493333pt;}
.y9b{bottom:879.813333pt;}
.ye{bottom:889.253333pt;}
.y2e{bottom:895.813333pt;}
.yd{bottom:917.253333pt;}
.y27{bottom:918.720000pt;}
.y2d{bottom:927.973333pt;}
.y54{bottom:944.293333pt;}
.y29{bottom:959.813333pt;}
.y2c{bottom:960.133333pt;}
.y2b{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h2{height:35.840000pt;}
.h7{height:52.134375pt;}
.ha{height:53.746875pt;}
.h4{height:59.066667pt;}
.he{height:64.306667pt;}
.h13{height:64.352000pt;}
.h1c{height:64.466667pt;}
.h21{height:64.498667pt;}
.hb{height:64.752187pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h16{height:76.964840pt;}
.hc{height:90.560000pt;}
.h23{height:96.512000pt;}
.h22{height:96.626667pt;}
.h24{height:96.640000pt;}
.h1e{height:96.658667pt;}
.h20{height:96.666667pt;}
.h8{height:98.400000pt;}
.h1d{height:128.626667pt;}
.h1a{height:128.786667pt;}
.h19{height:128.818667pt;}
.hd{height:129.000000pt;}
.h12{height:160.946667pt;}
.h1f{height:160.960000pt;}
.hf{height:160.973333pt;}
.h1b{height:160.986667pt;}
.h9{height:161.812500pt;}
.h14{height:193.106667pt;}
.h11{height:193.133333pt;}
.h18{height:193.146667pt;}
.h10{height:225.466667pt;}
.h17{height:257.466667pt;}
.h15{height:257.653333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:56.472000pt;}
.w7{width:102.898667pt;}
.w5{width:108.800000pt;}
.wf{width:135.693333pt;}
.wa{width:144.626667pt;}
.w3{width:145.626667pt;}
.w9{width:149.293333pt;}
.w4{width:150.426667pt;}
.w8{width:150.906667pt;}
.wc{width:167.373333pt;}
.w2{width:167.538667pt;}
.we{width:171.093333pt;}
.w11{width:215.053333pt;}
.w10{width:233.626667pt;}
.wd{width:236.826667pt;}
.w6{width:616.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x22{left:6.866667pt;}
.x26{left:10.866667pt;}
.x7{left:13.280000pt;}
.x4{left:20.160000pt;}
.x29{left:21.266667pt;}
.x2a{left:24.306667pt;}
.x27{left:27.026667pt;}
.x28{left:27.986667pt;}
.x2e{left:30.872000pt;}
.x36{left:35.826667pt;}
.x30{left:37.426667pt;}
.x38{left:54.080000pt;}
.x2d{left:80.840000pt;}
.x6{left:89.312000pt;}
.x3a{left:91.346667pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.x17{left:113.312000pt;}
.x35{left:119.720000pt;}
.xe{left:127.072000pt;}
.x13{left:128.192000pt;}
.xd{left:136.506667pt;}
.x2f{left:138.120000pt;}
.x1d{left:153.626667pt;}
.x21{left:155.720000pt;}
.x1b{left:167.066667pt;}
.x1f{left:170.906667pt;}
.x19{left:176.666667pt;}
.x2c{left:183.706667pt;}
.x1e{left:185.306667pt;}
.x10{left:195.866667pt;}
.x34{left:230.586667pt;}
.x11{left:245.666667pt;}
.xf{left:249.666667pt;}
.xb{left:254.786667pt;}
.x37{left:256.066667pt;}
.x23{left:259.266667pt;}
.xa{left:260.226667pt;}
.x14{left:286.626667pt;}
.x31{left:306.146667pt;}
.x12{left:308.413333pt;}
.x33{left:309.666667pt;}
.x9{left:320.386667pt;}
.x15{left:322.466667pt;}
.x16{left:341.826667pt;}
.x3b{left:376.546667pt;}
.x3c{left:377.666667pt;}
.xc{left:397.693333pt;}
.x24{left:410.826667pt;}
.x2b{left:421.213333pt;}
.x39{left:490.346667pt;}
.x32{left:543.626667pt;}
.x25{left:560.773333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x18{left:611.333333pt;}
.x1a{left:617.733333pt;}
.x1c{left:621.413333pt;}
.x20{left:637.573333pt;}
.x8{left:707.333333pt;}
}




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