
    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_497010505eedba1c376325f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_163f0038d9e1d73283922f4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_88183c00302377063481b8d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_88b673397ee7252124f7ac2e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2ea366eee5d0dc57264c18b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854980;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_aabfdfe11e0323d05f9f19f8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a6658f884b9e9ea52c07e359.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961426;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_55dde29e94fb123973352347.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.961426;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.580000px;}
.ls18{letter-spacing:-0.426600px;}
.ls16{letter-spacing:-0.204000px;}
.ls17{letter-spacing:-0.167400px;}
.ls9{letter-spacing:-0.151200px;}
.ls15{letter-spacing:-0.094200px;}
.ls11{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.075000px;}
.ls7{letter-spacing:-0.059040px;}
.lsc{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.038160px;}
.lse{letter-spacing:0.057600px;}
.lsb{letter-spacing:0.112200px;}
.lsd{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.155520px;}
.ls4{letter-spacing:0.185760px;}
.ls13{letter-spacing:0.213000px;}
.ls12{letter-spacing:0.219000px;}
.ls5{letter-spacing:0.231000px;}
.ls6{letter-spacing:0.238200px;}
.ls19{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.576000px;}
.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;}
}
.ws10{word-spacing:-167.760000px;}
.ws2{word-spacing:-120.240000px;}
.ws13{word-spacing:-115.920000px;}
.ws12{word-spacing:-115.344000px;}
.wsd{word-spacing:-86.544000px;}
.wsf{word-spacing:-86.486400px;}
.wse{word-spacing:-86.400000px;}
.ws1a{word-spacing:-48.816000px;}
.wsb{word-spacing:-43.446240px;}
.ws11{word-spacing:-38.132760px;}
.ws14{word-spacing:-38.126760px;}
.ws15{word-spacing:-37.951920px;}
.wsc{word-spacing:-37.946304px;}
.ws1c{word-spacing:-37.913760px;}
.ws16{word-spacing:-37.819560px;}
.ws18{word-spacing:-37.778904px;}
.ws17{word-spacing:-37.742304px;}
.ws19{word-spacing:-35.310240px;}
.ws5{word-spacing:-27.412440px;}
.ws4{word-spacing:-27.405240px;}
.wsa{word-spacing:-27.286440px;}
.ws1b{word-spacing:-27.206784px;}
.ws3{word-spacing:-27.174240px;}
.ws7{word-spacing:-27.173520px;}
.ws6{word-spacing:-27.115200px;}
.ws9{word-spacing:-27.099240px;}
.ws8{word-spacing:-27.023040px;}
.ws1{word-spacing:-24.444000px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-1732.615104px;}
._3{margin-left:-24.432768px;}
._2{margin-left:-17.699328px;}
._e{margin-left:-15.764640px;}
._f{margin-left:-12.096000px;}
._c{margin-left:-11.016000px;}
._8{margin-left:-9.859680px;}
._b{margin-left:-8.500320px;}
._10{margin-left:-7.156320px;}
._d{margin-left:-5.984640px;}
._9{margin-left:-4.617216px;}
._4{margin-left:-3.460320px;}
._0{margin-left:-2.308608px;}
._6{margin-left:-1.122000px;}
._1{width:1.032672px;}
._5{width:2.703072px;}
._11{width:3.818448px;}
._7{width:55.380000px;}
.fc9{color:rgb(0,139,188);}
.fc6{color:rgb(255,255,153);}
.fc5{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc7{color:rgb(245,118,46);}
.fc2{color:rgb(255,192,0);}
.fc8{color:rgb(127,127,127);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,255,112);}
.fsa{font-size:66.240000px;}
.fs16{font-size:84.240000px;}
.fs15{font-size:84.384000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs17{font-size:120.384000px;}
.fs11{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fs8{font-size:138.240000px;}
.fs9{font-size:138.384000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs10{font-size:156.240000px;}
.fs13{font-size:156.384000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs14{font-size:180.000000px;}
.fsf{font-size:180.144000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fsc{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fs7{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:1.620000px;}
.yac{bottom:16.632000px;}
.yb7{bottom:19.980000px;}
.y2f{bottom:37.440000px;}
.yab{bottom:49.608000px;}
.yb6{bottom:52.920000px;}
.ya2{bottom:55.440000px;}
.y87{bottom:57.240000px;}
.y4c{bottom:57.852000px;}
.y4b{bottom:58.536000px;}
.y55{bottom:62.064000px;}
.y91{bottom:62.280000px;}
.y5c{bottom:62.424000px;}
.y5d{bottom:62.964000px;}
.y56{bottom:68.364000px;}
.yb1{bottom:79.380000px;}
.yc{bottom:80.100000px;}
.ya1{bottom:81.684000px;}
.y37{bottom:82.692000px;}
.yc5{bottom:83.340000px;}
.ya3{bottom:83.844000px;}
.y2d{bottom:84.240000px;}
.yb2{bottom:85.575000px;}
.y97{bottom:86.652000px;}
.y4a{bottom:89.100000px;}
.yb{bottom:112.500000px;}
.y86{bottom:115.416000px;}
.y31{bottom:115.524000px;}
.y3c{bottom:116.964000px;}
.y90{bottom:121.716000px;}
.y2b{bottom:124.920000px;}
.y16{bottom:124.950000px;}
.y1c{bottom:124.995000px;}
.y22{bottom:125.025000px;}
.y19{bottom:125.070000px;}
.y1f{bottom:125.100000px;}
.y64{bottom:128.700000px;}
.y2a{bottom:131.220000px;}
.y46{bottom:132.624000px;}
.y44{bottom:133.272000px;}
.y4d{bottom:135.792000px;}
.y36{bottom:139.752000px;}
.y93{bottom:140.292000px;}
.y14{bottom:141.696000px;}
.yc4{bottom:146.736000px;}
.y76{bottom:151.770000px;}
.ya4{bottom:155.340000px;}
.y7d{bottom:160.275000px;}
.y30{bottom:162.390000px;}
.y6d{bottom:162.750000px;}
.y35{bottom:172.155000px;}
.y85{bottom:173.010000px;}
.y45{bottom:174.030000px;}
.y43{bottom:174.675000px;}
.y28{bottom:178.020000px;}
.y8f{bottom:182.190000px;}
.y9{bottom:184.140000px;}
.y63{bottom:190.620000px;}
.y5b{bottom:191.445000px;}
.y13{bottom:191.985000px;}
.y75{bottom:194.970000px;}
.y39{bottom:195.405000px;}
.yb0{bottom:207.540000px;}
.y2e{bottom:209.265000px;}
.ybb{bottom:209.415000px;}
.yc3{bottom:210.090000px;}
.y54{bottom:211.860000px;}
.y94{bottom:213.810000px;}
.y7c{bottom:217.905000px;}
.y6c{bottom:223.410000px;}
.y26{bottom:224.820000px;}
.ya5{bottom:226.800000px;}
.y84{bottom:229.170000px;}
.y5a{bottom:232.845000px;}
.y34{bottom:235.260000px;}
.y12{bottom:236.130000px;}
.y74{bottom:238.170000px;}
.y8e{bottom:241.230000px;}
.y8{bottom:246.060000px;}
.yb3{bottom:246.315000px;}
.y62{bottom:247.500000px;}
.y2c{bottom:256.140000px;}
.y1{bottom:257.430000px;}
.y3a{bottom:260.025000px;}
.y98{bottom:262.515000px;}
.yaf{bottom:267.300000px;}
.y6b{bottom:268.815000px;}
.yba{bottom:269.175000px;}
.y7b{bottom:271.365000px;}
.y24{bottom:271.800000px;}
.yc2{bottom:273.450000px;}
.y83{bottom:279.615000px;}
.y73{bottom:281.415000px;}
.y33{bottom:287.130000px;}
.y8d{bottom:295.455000px;}
.y96{bottom:297.255000px;}
.ya6{bottom:298.290000px;}
.y7{bottom:301.530000px;}
.y29{bottom:303.015000px;}
.y47{bottom:303.870000px;}
.y61{bottom:309.450000px;}
.y49{bottom:309.630000px;}
.y48{bottom:310.170000px;}
.y21{bottom:318.600000px;}
.y7a{bottom:321.765000px;}
.y53{bottom:321.915000px;}
.y72{bottom:324.615000px;}
.y6a{bottom:324.795000px;}
.yae{bottom:327.060000px;}
.yb9{bottom:328.965000px;}
.y95{bottom:329.655000px;}
.y82{bottom:330.015000px;}
.yc1{bottom:336.855000px;}
.y8c{bottom:348.015000px;}
.y27{bottom:349.890000px;}
.y32{bottom:350.490000px;}
.y6{bottom:356.970000px;}
.y1e{bottom:365.400000px;}
.y60{bottom:366.330000px;}
.y71{bottom:367.815000px;}
.y52{bottom:367.995000px;}
.ya7{bottom:369.795000px;}
.ye{bottom:378.690000px;}
.y69{bottom:380.595000px;}
.y81{bottom:381.855000px;}
.yad{bottom:386.850000px;}
.yb8{bottom:388.725000px;}
.y8b{bottom:395.535000px;}
.y38{bottom:396.105000px;}
.y25{bottom:396.750000px;}
.yc0{bottom:398.775000px;}
.yb4{bottom:407.010000px;}
.yd{bottom:411.090000px;}
.y1b{bottom:412.380000px;}
.y5{bottom:413.850000px;}
.y51{bottom:425.985000px;}
.y41{bottom:426.315000px;}
.y5f{bottom:428.295000px;}
.y68{bottom:436.425000px;}
.y80{bottom:438.585000px;}
.ya8{bottom:441.285000px;}
.y3b{bottom:442.770000px;}
.y8a{bottom:443.265000px;}
.y23{bottom:443.625000px;}
.y79{bottom:444.420000px;}
.y57{bottom:445.215000px;}
.y42{bottom:447.015000px;}
.ybf{bottom:454.245000px;}
.y18{bottom:459.180000px;}
.y70{bottom:462.600000px;}
.y40{bottom:467.715000px;}
.y4{bottom:477.255000px;}
.y5e{bottom:483.735000px;}
.y50{bottom:484.125000px;}
.y78{bottom:487.620000px;}
.y20{bottom:490.500000px;}
.y7f{bottom:492.225000px;}
.y89{bottom:492.405000px;}
.y67{bottom:493.845000px;}
.y15{bottom:506.160000px;}
.ybe{bottom:511.125000px;}
.y10{bottom:511.275000px;}
.ya9{bottom:512.790000px;}
.ya{bottom:519.870000px;}
.y6f{bottom:520.200000px;}
.y59{bottom:523.005000px;}
.y58{bottom:523.335000px;}
.y77{bottom:530.820000px;}
.y1d{bottom:537.375000px;}
.y3{bottom:540.615000px;}
.y4f{bottom:542.265000px;}
.yf{bottom:543.675000px;}
.y66{bottom:545.685000px;}
.y88{bottom:548.205000px;}
.y7e{bottom:550.365000px;}
.y3f{bottom:554.145000px;}
.y9b{bottom:556.815000px;}
.y9d{bottom:557.565000px;}
.yb5{bottom:567.720000px;}
.y9f{bottom:570.165000px;}
.ybd{bottom:574.485000px;}
.ya0{bottom:578.625000px;}
.y1a{bottom:584.250000px;}
.yaa{bottom:584.280000px;}
.y9e{bottom:595.365000px;}
.y9a{bottom:598.215000px;}
.y9c{bottom:598.965000px;}
.y4e{bottom:600.270000px;}
.y2{bottom:604.005000px;}
.y11{bottom:606.495000px;}
.y3e{bottom:612.330000px;}
.y17{bottom:631.110000px;}
.ybc{bottom:637.890000px;}
.y3d{bottom:658.410000px;}
.y65{bottom:660.930000px;}
.y99{bottom:668.775000px;}
.y6e{bottom:673.890000px;}
.he{height:47.545312px;}
.h21{height:60.465234px;}
.h20{height:60.568594px;}
.h5{height:75.093750px;}
.ha{height:75.193875px;}
.hf{height:77.519531px;}
.h10{height:77.622891px;}
.h6{height:77.673750px;}
.h8{height:83.604375px;}
.h23{height:86.305078px;}
.h24{height:86.408438px;}
.h1b{height:94.573828px;}
.h1c{height:94.677188px;}
.h15{height:95.976562px;}
.h16{height:96.072539px;}
.hc{height:99.225000px;}
.hd{height:99.328359px;}
.h1a{height:112.144922px;}
.h1d{height:112.248281px;}
.h18{height:116.645625px;}
.h17{height:116.745750px;}
.h3{height:120.413672px;}
.h4{height:120.517031px;}
.h14{height:128.128711px;}
.h13{height:128.224688px;}
.h1e{height:129.199219px;}
.h19{height:129.302578px;}
.h2{height:137.984766px;}
.h1{height:138.088125px;}
.h12{height:155.039062px;}
.h11{height:155.142422px;}
.hb{height:232.558594px;}
.h1f{height:238.095703px;}
.h9{height:260.280000px;}
.h7{height:269.640000px;}
.h22{height:618.840000px;}
.h25{height:622.440000px;}
.h0{height:810.000000px;}
.w1{width:431.640000px;}
.w2{width:495.360000px;}
.w3{width:966.240000px;}
.w4{width:971.100000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x5e{left:9.756000px;}
.x6b{left:12.636000px;}
.x5d{left:24.984000px;}
.x6a{left:27.828000px;}
.x5b{left:41.040000px;}
.x69{left:43.056000px;}
.x46{left:45.000000px;}
.x5c{left:55.404000px;}
.x68{left:58.248000px;}
.x31{left:61.632000px;}
.x2b{left:64.764000px;}
.xc{left:72.180000px;}
.x47{left:76.824000px;}
.x4c{left:79.164000px;}
.x48{left:81.036000px;}
.x1{left:86.256000px;}
.x2c{left:88.704000px;}
.x2{left:91.836000px;}
.x21{left:95.724000px;}
.x6{left:111.780000px;}
.x3a{left:119.448000px;}
.x39{left:128.268000px;}
.x32{left:132.732000px;}
.x2d{left:136.764000px;}
.x1b{left:141.660000px;}
.x5f{left:147.315000px;}
.x3{left:153.030000px;}
.x60{left:159.015000px;}
.x4d{left:175.965000px;}
.x18{left:178.950000px;}
.x1f{left:180.030000px;}
.xf{left:182.370000px;}
.x4b{left:193.350000px;}
.x17{left:195.150000px;}
.x1d{left:197.490000px;}
.x4{left:210.390000px;}
.x14{left:212.790000px;}
.x12{left:214.410000px;}
.x15{left:237.630000px;}
.x9{left:251.970000px;}
.x6d{left:267.045000px;}
.x6c{left:270.465000px;}
.x62{left:273.495000px;}
.x61{left:276.915000px;}
.xa{left:288.075000px;}
.x25{left:332.385000px;}
.x34{left:337.470000px;}
.x23{left:344.010000px;}
.x35{left:361.410000px;}
.xb{left:373.110000px;}
.x6f{left:382.035000px;}
.x6e{left:385.455000px;}
.x2e{left:388.260000px;}
.x63{left:394.740000px;}
.x50{left:397.335000px;}
.x33{left:404.130000px;}
.x3d{left:410.655000px;}
.x51{left:415.335000px;}
.x29{left:433.290000px;}
.x3e{left:462.600000px;}
.x22{left:463.890000px;}
.x71{left:490.170000px;}
.x3c{left:499.530000px;}
.x70{left:500.610000px;}
.x52{left:501.945000px;}
.x10{left:503.820000px;}
.x64{left:509.115000px;}
.x44{left:513.150000px;}
.x3f{left:514.515000px;}
.x53{left:519.945000px;}
.x1c{left:527.295000px;}
.x4a{left:538.890000px;}
.x11{left:542.595000px;}
.x20{left:547.995000px;}
.x19{left:549.795000px;}
.x13{left:557.895000px;}
.x41{left:559.695000px;}
.x16{left:567.075000px;}
.x40{left:572.295000px;}
.x5a{left:577.050000px;}
.xe{left:585.285000px;}
.x1a{left:596.775000px;}
.x73{left:605.160000px;}
.x36{left:607.065000px;}
.x2a{left:608.730000px;}
.x72{left:615.600000px;}
.x1e{left:620.175000px;}
.x54{left:624.570000px;}
.x66{left:630.360000px;}
.x5{left:632.520000px;}
.x65{left:640.800000px;}
.x26{left:647.355000px;}
.x8{left:653.115000px;}
.x2f{left:657.285000px;}
.x49{left:669.990000px;}
.x37{left:684.285000px;}
.x28{left:708.735000px;}
.x59{left:720.720000px;}
.x45{left:727.770000px;}
.x7{left:749.700000px;}
.x24{left:755.070000px;}
.x43{left:787.065000px;}
.x4e{left:792.690000px;}
.x67{left:797.865000px;}
.x42{left:799.665000px;}
.x27{left:801.030000px;}
.x74{left:802.800000px;}
.x4f{left:856.725000px;}
.x55{left:865.410000px;}
.x38{left:879.120000px;}
.x56{left:883.050000px;}
.x30{left:908.790000px;}
.x58{left:962.745000px;}
.x3b{left:964.800000px;}
.x57{left:984.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.293333pt;}
.ls18{letter-spacing:-0.379200pt;}
.ls16{letter-spacing:-0.181333pt;}
.ls17{letter-spacing:-0.148800pt;}
.ls9{letter-spacing:-0.134400pt;}
.ls15{letter-spacing:-0.083733pt;}
.ls11{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.066667pt;}
.ls7{letter-spacing:-0.052480pt;}
.lsc{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.033920pt;}
.lse{letter-spacing:0.051200pt;}
.lsb{letter-spacing:0.099733pt;}
.lsd{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.138240pt;}
.ls4{letter-spacing:0.165120pt;}
.ls13{letter-spacing:0.189333pt;}
.ls12{letter-spacing:0.194667pt;}
.ls5{letter-spacing:0.205333pt;}
.ls6{letter-spacing:0.211733pt;}
.ls19{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.512000pt;}
.ws10{word-spacing:-149.120000pt;}
.ws2{word-spacing:-106.880000pt;}
.ws13{word-spacing:-103.040000pt;}
.ws12{word-spacing:-102.528000pt;}
.wsd{word-spacing:-76.928000pt;}
.wsf{word-spacing:-76.876800pt;}
.wse{word-spacing:-76.800000pt;}
.ws1a{word-spacing:-43.392000pt;}
.wsb{word-spacing:-38.618880pt;}
.ws11{word-spacing:-33.895787pt;}
.ws14{word-spacing:-33.890453pt;}
.ws15{word-spacing:-33.735040pt;}
.wsc{word-spacing:-33.730048pt;}
.ws1c{word-spacing:-33.701120pt;}
.ws16{word-spacing:-33.617387pt;}
.ws18{word-spacing:-33.581248pt;}
.ws17{word-spacing:-33.548715pt;}
.ws19{word-spacing:-31.386880pt;}
.ws5{word-spacing:-24.366613pt;}
.ws4{word-spacing:-24.360213pt;}
.wsa{word-spacing:-24.254613pt;}
.ws1b{word-spacing:-24.183808pt;}
.ws3{word-spacing:-24.154880pt;}
.ws7{word-spacing:-24.154240pt;}
.ws6{word-spacing:-24.102400pt;}
.ws9{word-spacing:-24.088213pt;}
.ws8{word-spacing:-24.020480pt;}
.ws1{word-spacing:-21.728000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-1540.102315pt;}
._3{margin-left:-21.718016pt;}
._2{margin-left:-15.732736pt;}
._e{margin-left:-14.013013pt;}
._f{margin-left:-10.752000pt;}
._c{margin-left:-9.792000pt;}
._8{margin-left:-8.764160pt;}
._b{margin-left:-7.555840pt;}
._10{margin-left:-6.361173pt;}
._d{margin-left:-5.319680pt;}
._9{margin-left:-4.104192pt;}
._4{margin-left:-3.075840pt;}
._0{margin-left:-2.052096pt;}
._6{margin-left:-0.997333pt;}
._1{width:0.917931pt;}
._5{width:2.402731pt;}
._11{width:3.394176pt;}
._7{width:49.226667pt;}
.fsa{font-size:58.880000pt;}
.fs16{font-size:74.880000pt;}
.fs15{font-size:75.008000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs17{font-size:107.008000pt;}
.fs11{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fs8{font-size:122.880000pt;}
.fs9{font-size:123.008000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs10{font-size:138.880000pt;}
.fs13{font-size:139.008000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs14{font-size:160.000000pt;}
.fsf{font-size:160.128000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fsc{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fs7{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:1.440000pt;}
.yac{bottom:14.784000pt;}
.yb7{bottom:17.760000pt;}
.y2f{bottom:33.280000pt;}
.yab{bottom:44.096000pt;}
.yb6{bottom:47.040000pt;}
.ya2{bottom:49.280000pt;}
.y87{bottom:50.880000pt;}
.y4c{bottom:51.424000pt;}
.y4b{bottom:52.032000pt;}
.y55{bottom:55.168000pt;}
.y91{bottom:55.360000pt;}
.y5c{bottom:55.488000pt;}
.y5d{bottom:55.968000pt;}
.y56{bottom:60.768000pt;}
.yb1{bottom:70.560000pt;}
.yc{bottom:71.200000pt;}
.ya1{bottom:72.608000pt;}
.y37{bottom:73.504000pt;}
.yc5{bottom:74.080000pt;}
.ya3{bottom:74.528000pt;}
.y2d{bottom:74.880000pt;}
.yb2{bottom:76.066667pt;}
.y97{bottom:77.024000pt;}
.y4a{bottom:79.200000pt;}
.yb{bottom:100.000000pt;}
.y86{bottom:102.592000pt;}
.y31{bottom:102.688000pt;}
.y3c{bottom:103.968000pt;}
.y90{bottom:108.192000pt;}
.y2b{bottom:111.040000pt;}
.y16{bottom:111.066667pt;}
.y1c{bottom:111.106667pt;}
.y22{bottom:111.133333pt;}
.y19{bottom:111.173333pt;}
.y1f{bottom:111.200000pt;}
.y64{bottom:114.400000pt;}
.y2a{bottom:116.640000pt;}
.y46{bottom:117.888000pt;}
.y44{bottom:118.464000pt;}
.y4d{bottom:120.704000pt;}
.y36{bottom:124.224000pt;}
.y93{bottom:124.704000pt;}
.y14{bottom:125.952000pt;}
.yc4{bottom:130.432000pt;}
.y76{bottom:134.906667pt;}
.ya4{bottom:138.080000pt;}
.y7d{bottom:142.466667pt;}
.y30{bottom:144.346667pt;}
.y6d{bottom:144.666667pt;}
.y35{bottom:153.026667pt;}
.y85{bottom:153.786667pt;}
.y45{bottom:154.693333pt;}
.y43{bottom:155.266667pt;}
.y28{bottom:158.240000pt;}
.y8f{bottom:161.946667pt;}
.y9{bottom:163.680000pt;}
.y63{bottom:169.440000pt;}
.y5b{bottom:170.173333pt;}
.y13{bottom:170.653333pt;}
.y75{bottom:173.306667pt;}
.y39{bottom:173.693333pt;}
.yb0{bottom:184.480000pt;}
.y2e{bottom:186.013333pt;}
.ybb{bottom:186.146667pt;}
.yc3{bottom:186.746667pt;}
.y54{bottom:188.320000pt;}
.y94{bottom:190.053333pt;}
.y7c{bottom:193.693333pt;}
.y6c{bottom:198.586667pt;}
.y26{bottom:199.840000pt;}
.ya5{bottom:201.600000pt;}
.y84{bottom:203.706667pt;}
.y5a{bottom:206.973333pt;}
.y34{bottom:209.120000pt;}
.y12{bottom:209.893333pt;}
.y74{bottom:211.706667pt;}
.y8e{bottom:214.426667pt;}
.y8{bottom:218.720000pt;}
.yb3{bottom:218.946667pt;}
.y62{bottom:220.000000pt;}
.y2c{bottom:227.680000pt;}
.y1{bottom:228.826667pt;}
.y3a{bottom:231.133333pt;}
.y98{bottom:233.346667pt;}
.yaf{bottom:237.600000pt;}
.y6b{bottom:238.946667pt;}
.yba{bottom:239.266667pt;}
.y7b{bottom:241.213333pt;}
.y24{bottom:241.600000pt;}
.yc2{bottom:243.066667pt;}
.y83{bottom:248.546667pt;}
.y73{bottom:250.146667pt;}
.y33{bottom:255.226667pt;}
.y8d{bottom:262.626667pt;}
.y96{bottom:264.226667pt;}
.ya6{bottom:265.146667pt;}
.y7{bottom:268.026667pt;}
.y29{bottom:269.346667pt;}
.y47{bottom:270.106667pt;}
.y61{bottom:275.066667pt;}
.y49{bottom:275.226667pt;}
.y48{bottom:275.706667pt;}
.y21{bottom:283.200000pt;}
.y7a{bottom:286.013333pt;}
.y53{bottom:286.146667pt;}
.y72{bottom:288.546667pt;}
.y6a{bottom:288.706667pt;}
.yae{bottom:290.720000pt;}
.yb9{bottom:292.413333pt;}
.y95{bottom:293.026667pt;}
.y82{bottom:293.346667pt;}
.yc1{bottom:299.426667pt;}
.y8c{bottom:309.346667pt;}
.y27{bottom:311.013333pt;}
.y32{bottom:311.546667pt;}
.y6{bottom:317.306667pt;}
.y1e{bottom:324.800000pt;}
.y60{bottom:325.626667pt;}
.y71{bottom:326.946667pt;}
.y52{bottom:327.106667pt;}
.ya7{bottom:328.706667pt;}
.ye{bottom:336.613333pt;}
.y69{bottom:338.306667pt;}
.y81{bottom:339.426667pt;}
.yad{bottom:343.866667pt;}
.yb8{bottom:345.533333pt;}
.y8b{bottom:351.586667pt;}
.y38{bottom:352.093333pt;}
.y25{bottom:352.666667pt;}
.yc0{bottom:354.466667pt;}
.yb4{bottom:361.786667pt;}
.yd{bottom:365.413333pt;}
.y1b{bottom:366.560000pt;}
.y5{bottom:367.866667pt;}
.y51{bottom:378.653333pt;}
.y41{bottom:378.946667pt;}
.y5f{bottom:380.706667pt;}
.y68{bottom:387.933333pt;}
.y80{bottom:389.853333pt;}
.ya8{bottom:392.253333pt;}
.y3b{bottom:393.573333pt;}
.y8a{bottom:394.013333pt;}
.y23{bottom:394.333333pt;}
.y79{bottom:395.040000pt;}
.y57{bottom:395.746667pt;}
.y42{bottom:397.346667pt;}
.ybf{bottom:403.773333pt;}
.y18{bottom:408.160000pt;}
.y70{bottom:411.200000pt;}
.y40{bottom:415.746667pt;}
.y4{bottom:424.226667pt;}
.y5e{bottom:429.986667pt;}
.y50{bottom:430.333333pt;}
.y78{bottom:433.440000pt;}
.y20{bottom:436.000000pt;}
.y7f{bottom:437.533333pt;}
.y89{bottom:437.693333pt;}
.y67{bottom:438.973333pt;}
.y15{bottom:449.920000pt;}
.ybe{bottom:454.333333pt;}
.y10{bottom:454.466667pt;}
.ya9{bottom:455.813333pt;}
.ya{bottom:462.106667pt;}
.y6f{bottom:462.400000pt;}
.y59{bottom:464.893333pt;}
.y58{bottom:465.186667pt;}
.y77{bottom:471.840000pt;}
.y1d{bottom:477.666667pt;}
.y3{bottom:480.546667pt;}
.y4f{bottom:482.013333pt;}
.yf{bottom:483.266667pt;}
.y66{bottom:485.053333pt;}
.y88{bottom:487.293333pt;}
.y7e{bottom:489.213333pt;}
.y3f{bottom:492.573333pt;}
.y9b{bottom:494.946667pt;}
.y9d{bottom:495.613333pt;}
.yb5{bottom:504.640000pt;}
.y9f{bottom:506.813333pt;}
.ybd{bottom:510.653333pt;}
.ya0{bottom:514.333333pt;}
.y1a{bottom:519.333333pt;}
.yaa{bottom:519.360000pt;}
.y9e{bottom:529.213333pt;}
.y9a{bottom:531.746667pt;}
.y9c{bottom:532.413333pt;}
.y4e{bottom:533.573333pt;}
.y2{bottom:536.893333pt;}
.y11{bottom:539.106667pt;}
.y3e{bottom:544.293333pt;}
.y17{bottom:560.986667pt;}
.ybc{bottom:567.013333pt;}
.y3d{bottom:585.253333pt;}
.y65{bottom:587.493333pt;}
.y99{bottom:594.466667pt;}
.y6e{bottom:599.013333pt;}
.he{height:42.262500pt;}
.h21{height:53.746875pt;}
.h20{height:53.838750pt;}
.h5{height:66.750000pt;}
.ha{height:66.839000pt;}
.hf{height:68.906250pt;}
.h10{height:68.998125pt;}
.h6{height:69.043333pt;}
.h8{height:74.315000pt;}
.h23{height:76.715625pt;}
.h24{height:76.807500pt;}
.h1b{height:84.065625pt;}
.h1c{height:84.157500pt;}
.h15{height:85.312500pt;}
.h16{height:85.397813pt;}
.hc{height:88.200000pt;}
.hd{height:88.291875pt;}
.h1a{height:99.684375pt;}
.h1d{height:99.776250pt;}
.h18{height:103.685000pt;}
.h17{height:103.774000pt;}
.h3{height:107.034375pt;}
.h4{height:107.126250pt;}
.h14{height:113.892188pt;}
.h13{height:113.977500pt;}
.h1e{height:114.843750pt;}
.h19{height:114.935625pt;}
.h2{height:122.653125pt;}
.h1{height:122.745000pt;}
.h12{height:137.812500pt;}
.h11{height:137.904375pt;}
.hb{height:206.718750pt;}
.h1f{height:211.640625pt;}
.h9{height:231.360000pt;}
.h7{height:239.680000pt;}
.h22{height:550.080000pt;}
.h25{height:553.280000pt;}
.h0{height:720.000000pt;}
.w1{width:383.680000pt;}
.w2{width:440.320000pt;}
.w3{width:858.880000pt;}
.w4{width:863.200000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x5e{left:8.672000pt;}
.x6b{left:11.232000pt;}
.x5d{left:22.208000pt;}
.x6a{left:24.736000pt;}
.x5b{left:36.480000pt;}
.x69{left:38.272000pt;}
.x46{left:40.000000pt;}
.x5c{left:49.248000pt;}
.x68{left:51.776000pt;}
.x31{left:54.784000pt;}
.x2b{left:57.568000pt;}
.xc{left:64.160000pt;}
.x47{left:68.288000pt;}
.x4c{left:70.368000pt;}
.x48{left:72.032000pt;}
.x1{left:76.672000pt;}
.x2c{left:78.848000pt;}
.x2{left:81.632000pt;}
.x21{left:85.088000pt;}
.x6{left:99.360000pt;}
.x3a{left:106.176000pt;}
.x39{left:114.016000pt;}
.x32{left:117.984000pt;}
.x2d{left:121.568000pt;}
.x1b{left:125.920000pt;}
.x5f{left:130.946667pt;}
.x3{left:136.026667pt;}
.x60{left:141.346667pt;}
.x4d{left:156.413333pt;}
.x18{left:159.066667pt;}
.x1f{left:160.026667pt;}
.xf{left:162.106667pt;}
.x4b{left:171.866667pt;}
.x17{left:173.466667pt;}
.x1d{left:175.546667pt;}
.x4{left:187.013333pt;}
.x14{left:189.146667pt;}
.x12{left:190.586667pt;}
.x15{left:211.226667pt;}
.x9{left:223.973333pt;}
.x6d{left:237.373333pt;}
.x6c{left:240.413333pt;}
.x62{left:243.106667pt;}
.x61{left:246.146667pt;}
.xa{left:256.066667pt;}
.x25{left:295.453333pt;}
.x34{left:299.973333pt;}
.x23{left:305.786667pt;}
.x35{left:321.253333pt;}
.xb{left:331.653333pt;}
.x6f{left:339.586667pt;}
.x6e{left:342.626667pt;}
.x2e{left:345.120000pt;}
.x63{left:350.880000pt;}
.x50{left:353.186667pt;}
.x33{left:359.226667pt;}
.x3d{left:365.026667pt;}
.x51{left:369.186667pt;}
.x29{left:385.146667pt;}
.x3e{left:411.200000pt;}
.x22{left:412.346667pt;}
.x71{left:435.706667pt;}
.x3c{left:444.026667pt;}
.x70{left:444.986667pt;}
.x52{left:446.173333pt;}
.x10{left:447.840000pt;}
.x64{left:452.546667pt;}
.x44{left:456.133333pt;}
.x3f{left:457.346667pt;}
.x53{left:462.173333pt;}
.x1c{left:468.706667pt;}
.x4a{left:479.013333pt;}
.x11{left:482.306667pt;}
.x20{left:487.106667pt;}
.x19{left:488.706667pt;}
.x13{left:495.906667pt;}
.x41{left:497.506667pt;}
.x16{left:504.066667pt;}
.x40{left:508.706667pt;}
.x5a{left:512.933333pt;}
.xe{left:520.253333pt;}
.x1a{left:530.466667pt;}
.x73{left:537.920000pt;}
.x36{left:539.613333pt;}
.x2a{left:541.093333pt;}
.x72{left:547.200000pt;}
.x1e{left:551.266667pt;}
.x54{left:555.173333pt;}
.x66{left:560.320000pt;}
.x5{left:562.240000pt;}
.x65{left:569.600000pt;}
.x26{left:575.426667pt;}
.x8{left:580.546667pt;}
.x2f{left:584.253333pt;}
.x49{left:595.546667pt;}
.x37{left:608.253333pt;}
.x28{left:629.986667pt;}
.x59{left:640.640000pt;}
.x45{left:646.906667pt;}
.x7{left:666.400000pt;}
.x24{left:671.173333pt;}
.x43{left:699.613333pt;}
.x4e{left:704.613333pt;}
.x67{left:709.213333pt;}
.x42{left:710.813333pt;}
.x27{left:712.026667pt;}
.x74{left:713.600000pt;}
.x4f{left:761.533333pt;}
.x55{left:769.253333pt;}
.x38{left:781.440000pt;}
.x56{left:784.933333pt;}
.x30{left:807.813333pt;}
.x58{left:855.773333pt;}
.x3b{left:857.600000pt;}
.x57{left:874.813333pt;}
}




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