
    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_31c2d65ea8bb974bfe50221d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d83ae129546f73d3f1d94d41.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_ffc662aed4dcae162d299f2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_6781ddb46633c62414c26c32.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d4ea09b669f544e50a908c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.814941;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_40d29a1212e211a7d37a5770.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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:ffa;src:url('chunks/assets/font_fc21d348f6bcb7fd6b88b962.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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:ffb;src:url('chunks/assets/font_8b572502a484081ffcdcf741.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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:ffc;src:url('chunks/assets/font_ad4d6fe6b628d3b7f868090b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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);}
.v3{vertical-align:-14.400000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.880000px;}
.v4{vertical-align:14.400000px;}
.ls11{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.341280px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.080000px;}
.ls18{letter-spacing:2.801520px;}
.ls16{letter-spacing:2.880000px;}
.ls17{letter-spacing:18.641520px;}
.ls19{letter-spacing:33.984000px;}
.lsf{letter-spacing:89.976000px;}
.lsc{letter-spacing:101.664000px;}
.ls9{letter-spacing:118.224000px;}
.lsa{letter-spacing:121.824000px;}
.ls8{letter-spacing:137.640000px;}
.lsb{letter-spacing:141.960000px;}
.ls7{letter-spacing:157.800000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-56.664000px;}
.wsd{word-spacing:-56.448000px;}
.wsa{word-spacing:-55.944000px;}
.wsc{word-spacing:-55.824000px;}
.wsb{word-spacing:-53.496000px;}
.ws8{word-spacing:-51.624000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-88.479360px;}
._1d{margin-left:-16.560000px;}
._30{margin-left:-15.120000px;}
._27{margin-left:-13.704000px;}
._32{margin-left:-6.912000px;}
._1f{margin-left:-5.240160px;}
._19{margin-left:-4.075920px;}
._15{margin-left:-2.664000px;}
._4{margin-left:-1.108080px;}
._0{width:1.359360px;}
._1a{width:2.405280px;}
._5{width:3.423840px;}
._10{width:5.256000px;}
._11{width:6.528000px;}
._e{width:7.704000px;}
._f{width:8.784000px;}
._c{width:10.224000px;}
._d{width:11.376000px;}
._13{width:12.424800px;}
._8{width:13.464000px;}
._9{width:14.760000px;}
._1b{width:16.200000px;}
._31{width:17.460000px;}
._16{width:19.008000px;}
._14{width:20.376000px;}
._12{width:21.600000px;}
._a{width:22.752000px;}
._b{width:23.976000px;}
._17{width:25.560000px;}
._18{width:26.576640px;}
._22{width:28.719360px;}
._20{width:30.240000px;}
._21{width:31.400640px;}
._33{width:34.056000px;}
._34{width:35.093280px;}
._6{width:38.652000px;}
._2a{width:46.776000px;}
._29{width:50.304000px;}
._2c{width:62.328000px;}
._1c{width:70.949280px;}
._1e{width:76.883520px;}
._3{width:83.380080px;}
._28{width:86.304000px;}
._2b{width:94.296000px;}
._1{width:109.380000px;}
._2d{width:140.476080px;}
._2f{width:144.984240px;}
._23{width:150.312000px;}
._24{width:157.392000px;}
._26{width:166.296000px;}
._25{width:170.328000px;}
._7{width:198.000000px;}
._2e{width:203.940000px;}
.fc4{color:transparent;}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y30{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.y2e{bottom:10.800000px;}
.yd4{bottom:19.974000px;}
.yad{bottom:19.980000px;}
.yc5{bottom:20.010000px;}
.yb2{bottom:20.160000px;}
.yb7{bottom:20.190000px;}
.yaf{bottom:20.205000px;}
.y8{bottom:21.600000px;}
.y2f{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.yd5{bottom:36.714000px;}
.yd0{bottom:36.720000px;}
.yd2{bottom:36.900000px;}
.yd6{bottom:36.930000px;}
.y7{bottom:57.780000px;}
.y6{bottom:78.516000px;}
.y69{bottom:115.236000px;}
.yb5{bottom:116.136000px;}
.y52{bottom:116.676000px;}
.yec{bottom:122.976000px;}
.y94{bottom:129.816000px;}
.y85{bottom:131.076000px;}
.y4f{bottom:131.616000px;}
.y2d{bottom:132.516000px;}
.y105{bottom:142.056000px;}
.yd3{bottom:145.116000px;}
.y68{bottom:146.376000px;}
.y51{bottom:147.816000px;}
.yb4{bottom:153.570000px;}
.yeb{bottom:160.410000px;}
.y84{bottom:162.210000px;}
.y4e{bottom:162.750000px;}
.y93{bottom:176.790000px;}
.y67{bottom:177.330000px;}
.y50{bottom:178.770000px;}
.yd1{bottom:182.550000px;}
.y104{bottom:183.450000px;}
.y2c{bottom:189.750000px;}
.yb3{bottom:191.190000px;}
.y4d{bottom:193.710000px;}
.yea{bottom:198.030000px;}
.y103{bottom:204.150000px;}
.y66{bottom:208.470000px;}
.y83{bottom:209.010000px;}
.ycf{bottom:220.170000px;}
.y92{bottom:223.590000px;}
.y7c{bottom:224.310000px;}
.y4c{bottom:224.850000px;}
.y2b{bottom:226.290000px;}
.yb1{bottom:228.630000px;}
.ye9{bottom:235.470000px;}
.y8c{bottom:239.430000px;}
.y82{bottom:239.970000px;}
.y102{bottom:245.550000px;}
.y2a{bottom:246.990000px;}
.y91{bottom:254.730000px;}
.y65{bottom:255.270000px;}
.y4b{bottom:255.810000px;}
.yce{bottom:257.610000px;}
.yb0{bottom:266.250000px;}
.y8b{bottom:270.570000px;}
.y81{bottom:271.110000px;}
.ye8{bottom:273.090000px;}
.y29{bottom:283.710000px;}
.y90{bottom:285.690000px;}
.y64{bottom:286.410000px;}
.y4a{bottom:286.950000px;}
.y8a{bottom:301.530000px;}
.y80{bottom:302.070000px;}
.yae{bottom:303.690000px;}
.y28{bottom:304.770000px;}
.y101{bottom:307.650000px;}
.ycd{bottom:309.495000px;}
.ye7{bottom:314.535000px;}
.y63{bottom:317.415000px;}
.y49{bottom:317.955000px;}
.y27{bottom:325.695000px;}
.y100{bottom:328.395000px;}
.y89{bottom:332.715000px;}
.y7f{bottom:333.255000px;}
.ycc{bottom:340.635000px;}
.yac{bottom:341.355000px;}
.ye6{bottom:345.675000px;}
.y26{bottom:346.575000px;}
.y62{bottom:348.375000px;}
.y48{bottom:349.095000px;}
.ye5{bottom:363.135000px;}
.y88{bottom:363.675000px;}
.y7e{bottom:364.215000px;}
.y25{bottom:367.635000px;}
.yff{bottom:369.795000px;}
.ycb{bottom:371.595000px;}
.y61{bottom:379.515000px;}
.y47{bottom:380.055000px;}
.y24{bottom:388.515000px;}
.yfe{bottom:390.495000px;}
.yab{bottom:393.195000px;}
.y87{bottom:394.815000px;}
.y7d{bottom:395.355000px;}
.ye4{bottom:400.755000px;}
.yca{bottom:402.735000px;}
.y23{bottom:409.575000px;}
.y60{bottom:410.475000px;}
.y46{bottom:411.195000px;}
.yaa{bottom:424.155000px;}
.y86{bottom:425.775000px;}
.y7b{bottom:426.315000px;}
.y22{bottom:430.455000px;}
.yfd{bottom:431.895000px;}
.yc9{bottom:433.695000px;}
.ye3{bottom:438.195000px;}
.y5f{bottom:441.615000px;}
.y45{bottom:442.155000px;}
.y21{bottom:451.515000px;}
.yfc{bottom:452.595000px;}
.ya9{bottom:455.295000px;}
.y8f{bottom:456.915000px;}
.y7a{bottom:457.455000px;}
.yc8{bottom:464.835000px;}
.y20{bottom:472.395000px;}
.y5e{bottom:472.575000px;}
.y44{bottom:473.295000px;}
.ye2{bottom:475.815000px;}
.yc7{bottom:482.295000px;}
.ya8{bottom:486.255000px;}
.y8e{bottom:487.875000px;}
.y79{bottom:488.415000px;}
.y1f{bottom:493.275000px;}
.yfb{bottom:493.995000px;}
.y5d{bottom:503.715000px;}
.y43{bottom:504.255000px;}
.ye1{bottom:513.255000px;}
.y1e{bottom:514.335000px;}
.yfa{bottom:514.695000px;}
.ya7{bottom:517.395000px;}
.y8d{bottom:518.835000px;}
.y78{bottom:519.555000px;}
.yc6{bottom:519.735000px;}
.y115{bottom:529.635000px;}
.y5c{bottom:534.675000px;}
.y1d{bottom:535.215000px;}
.y42{bottom:535.395000px;}
.ya6{bottom:548.355000px;}
.y77{bottom:550.515000px;}
.ye0{bottom:550.875000px;}
.yf9{bottom:556.095000px;}
.y1c{bottom:556.275000px;}
.yc4{bottom:557.355000px;}
.y5b{bottom:565.845000px;}
.y41{bottom:566.385000px;}
.yf8{bottom:576.825000px;}
.y1b{bottom:577.185000px;}
.ya5{bottom:579.525000px;}
.y76{bottom:581.685000px;}
.y114{bottom:587.085000px;}
.ydf{bottom:588.345000px;}
.yc3{bottom:594.825000px;}
.y5a{bottom:596.805000px;}
.y40{bottom:597.525000px;}
.y1a{bottom:598.245000px;}
.y113{bottom:607.785000px;}
.ya4{bottom:610.485000px;}
.y75{bottom:612.645000px;}
.yf7{bottom:618.225000px;}
.y19{bottom:619.125000px;}
.yde{bottom:625.965000px;}
.y59{bottom:627.945000px;}
.y3f{bottom:628.485000px;}
.yc2{bottom:632.445000px;}
.yf6{bottom:638.925000px;}
.y18{bottom:640.005000px;}
.ya3{bottom:641.625000px;}
.y74{bottom:643.785000px;}
.y112{bottom:649.185000px;}
.y58{bottom:658.905000px;}
.y3e{bottom:659.625000px;}
.y17{bottom:661.065000px;}
.ydd{bottom:663.405000px;}
.yc1{bottom:669.885000px;}
.ya2{bottom:672.585000px;}
.y73{bottom:674.745000px;}
.yf5{bottom:680.325000px;}
.y16{bottom:681.945000px;}
.y57{bottom:690.045000px;}
.y3d{bottom:690.585000px;}
.yf4{bottom:701.025000px;}
.y15{bottom:703.005000px;}
.ya1{bottom:703.725000px;}
.ydc{bottom:704.985000px;}
.y72{bottom:705.885000px;}
.yc0{bottom:707.505000px;}
.y111{bottom:711.285000px;}
.y56{bottom:721.005000px;}
.y3c{bottom:721.725000px;}
.y14{bottom:723.885000px;}
.ydb{bottom:725.685000px;}
.y110{bottom:731.985000px;}
.ya0{bottom:734.685000px;}
.y71{bottom:736.845000px;}
.yf3{bottom:742.425000px;}
.ybf{bottom:744.945000px;}
.y55{bottom:752.145000px;}
.y3b{bottom:752.685000px;}
.yda{bottom:757.005000px;}
.yf2{bottom:763.125000px;}
.y13{bottom:765.285000px;}
.y9f{bottom:765.825000px;}
.y70{bottom:767.985000px;}
.y10f{bottom:773.385000px;}
.ybe{bottom:782.565000px;}
.y54{bottom:783.105000px;}
.y3a{bottom:783.825000px;}
.yd9{bottom:788.145000px;}
.y10e{bottom:794.085000px;}
.y9e{bottom:796.785000px;}
.y6f{bottom:798.945000px;}
.yf1{bottom:804.525000px;}
.y97{bottom:814.290000px;}
.y39{bottom:814.830000px;}
.yd8{bottom:819.150000px;}
.y12{bottom:822.570000px;}
.yf0{bottom:825.270000px;}
.y9d{bottom:827.970000px;}
.y53{bottom:830.130000px;}
.ybd{bottom:834.450000px;}
.y10d{bottom:835.530000px;}
.y11{bottom:843.450000px;}
.y96{bottom:845.250000px;}
.y38{bottom:845.970000px;}
.yd7{bottom:850.290000px;}
.y10c{bottom:856.230000px;}
.y9c{bottom:858.930000px;}
.y6e{bottom:861.090000px;}
.y10{bottom:864.510000px;}
.yef{bottom:866.670000px;}
.y37{bottom:876.930000px;}
.ybc{bottom:881.250000px;}
.yf{bottom:885.390000px;}
.yee{bottom:887.370000px;}
.y9b{bottom:890.070000px;}
.y6d{bottom:892.230000px;}
.y10b{bottom:897.630000px;}
.ye{bottom:906.450000px;}
.y36{bottom:908.070000px;}
.ybb{bottom:912.390000px;}
.y10a{bottom:918.330000px;}
.y9a{bottom:921.030000px;}
.y6c{bottom:923.190000px;}
.yed{bottom:928.770000px;}
.yba{bottom:929.850000px;}
.yd{bottom:930.210000px;}
.y35{bottom:939.030000px;}
.yc{bottom:951.090000px;}
.y99{bottom:952.170000px;}
.y6b{bottom:954.330000px;}
.y109{bottom:959.730000px;}
.yb9{bottom:967.290000px;}
.y34{bottom:970.170000px;}
.y5{bottom:971.790000px;}
.y108{bottom:980.430000px;}
.y98{bottom:982.950000px;}
.y6a{bottom:985.290000px;}
.y33{bottom:1001.130000px;}
.yb8{bottom:1004.910000px;}
.y4{bottom:1013.550000px;}
.y95{bottom:1016.430000px;}
.y107{bottom:1021.830000px;}
.y32{bottom:1032.270000px;}
.yb6{bottom:1042.350000px;}
.y106{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y31{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.ha{height:36.720000px;}
.hd{height:36.756000px;}
.hc{height:36.900000px;}
.hb{height:36.936000px;}
.h5{height:49.500000px;}
.h2{height:50.800781px;}
.h4{height:51.679688px;}
.h8{height:52.417969px;}
.h9{height:54.246094px;}
.h7{height:54.316406px;}
.hf{height:54.773438px;}
.h6{height:58.320000px;}
.h1{height:59.436914px;}
.he{height:60.679688px;}
.h3{height:67.565039px;}
.h0{height:1188.000000px;}
.wf{width:63.720000px;}
.w10{width:63.936000px;}
.w15{width:65.880000px;}
.w7{width:67.320000px;}
.we{width:69.660000px;}
.wc{width:69.840000px;}
.wd{width:69.876000px;}
.w2{width:75.240000px;}
.w3{width:75.276000px;}
.w5{width:75.420000px;}
.w4{width:75.456000px;}
.w8{width:92.916000px;}
.w11{width:93.420000px;}
.wb{width:97.380000px;}
.w14{width:97.416000px;}
.w9{width:100.440000px;}
.w13{width:103.320000px;}
.wa{width:103.356000px;}
.w12{width:107.316000px;}
.w17{width:129.816000px;}
.w16{width:169.920000px;}
.w6{width:228.450000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:6.660000px;}
.x22{left:7.740000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x5{left:106.955986px;}
.xb{left:108.035986px;}
.xe{left:135.035986px;}
.xa{left:145.655986px;}
.xd{left:162.029986px;}
.x1{left:176.249986px;}
.x11{left:184.890000px;}
.xf{left:189.029986px;}
.x23{left:202.890000px;}
.x3{left:206.309986px;}
.x28{left:216.029986px;}
.xc{left:217.109986px;}
.x4{left:236.549986px;}
.x12{left:260.850000px;}
.x1d{left:277.410000px;}
.x27{left:279.390000px;}
.x2{left:284.249986px;}
.x24{left:311.115000px;}
.x13{left:337.035000px;}
.x1e{left:348.015000px;}
.x1a{left:405.975000px;}
.x14{left:412.995000px;}
.x25{left:415.155000px;}
.x1f{left:418.575000px;}
.x9{left:423.074986px;}
.x15{left:489.165000px;}
.x1b{left:499.605000px;}
.x26{left:513.285000px;}
.x20{left:559.905000px;}
.x16{left:565.305000px;}
.x1c{left:600.765000px;}
.x21{left:624.345000px;}
.x17{left:641.445000px;}
.x18{left:717.630000px;}
.x19{left:793.770000px;}
.x6{left:842.909986px;}
@media print{
.v3{vertical-align:-12.800000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.226667pt;}
.v4{vertical-align:12.800000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.303360pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls18{letter-spacing:2.490240pt;}
.ls16{letter-spacing:2.560000pt;}
.ls17{letter-spacing:16.570240pt;}
.ls19{letter-spacing:30.208000pt;}
.lsf{letter-spacing:79.978667pt;}
.lsc{letter-spacing:90.368000pt;}
.ls9{letter-spacing:105.088000pt;}
.lsa{letter-spacing:108.288000pt;}
.ls8{letter-spacing:122.346667pt;}
.lsb{letter-spacing:126.186667pt;}
.ls7{letter-spacing:140.266667pt;}
.ws9{word-spacing:-50.368000pt;}
.wsd{word-spacing:-50.176000pt;}
.wsa{word-spacing:-49.728000pt;}
.wsc{word-spacing:-49.621333pt;}
.wsb{word-spacing:-47.552000pt;}
.ws8{word-spacing:-45.888000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-78.648320pt;}
._1d{margin-left:-14.720000pt;}
._30{margin-left:-13.440000pt;}
._27{margin-left:-12.181333pt;}
._32{margin-left:-6.144000pt;}
._1f{margin-left:-4.657920pt;}
._19{margin-left:-3.623040pt;}
._15{margin-left:-2.368000pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.208320pt;}
._1a{width:2.138027pt;}
._5{width:3.043413pt;}
._10{width:4.672000pt;}
._11{width:5.802667pt;}
._e{width:6.848000pt;}
._f{width:7.808000pt;}
._c{width:9.088000pt;}
._d{width:10.112000pt;}
._13{width:11.044267pt;}
._8{width:11.968000pt;}
._9{width:13.120000pt;}
._1b{width:14.400000pt;}
._31{width:15.520000pt;}
._16{width:16.896000pt;}
._14{width:18.112000pt;}
._12{width:19.200000pt;}
._a{width:20.224000pt;}
._b{width:21.312000pt;}
._17{width:22.720000pt;}
._18{width:23.623680pt;}
._22{width:25.528320pt;}
._20{width:26.880000pt;}
._21{width:27.911680pt;}
._33{width:30.272000pt;}
._34{width:31.194027pt;}
._6{width:34.357333pt;}
._2a{width:41.578667pt;}
._29{width:44.714667pt;}
._2c{width:55.402667pt;}
._1c{width:63.066027pt;}
._1e{width:68.340907pt;}
._3{width:74.115627pt;}
._28{width:76.714667pt;}
._2b{width:83.818667pt;}
._1{width:97.226667pt;}
._2d{width:124.867627pt;}
._2f{width:128.874880pt;}
._23{width:133.610667pt;}
._24{width:139.904000pt;}
._26{width:147.818667pt;}
._25{width:151.402667pt;}
._7{width:176.000000pt;}
._2e{width:181.280000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.y2e{bottom:9.600000pt;}
.yd4{bottom:17.754667pt;}
.yad{bottom:17.760000pt;}
.yc5{bottom:17.786667pt;}
.yb2{bottom:17.920000pt;}
.yb7{bottom:17.946667pt;}
.yaf{bottom:17.960000pt;}
.y8{bottom:19.200000pt;}
.y2f{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.yd5{bottom:32.634667pt;}
.yd0{bottom:32.640000pt;}
.yd2{bottom:32.800000pt;}
.yd6{bottom:32.826667pt;}
.y7{bottom:51.360000pt;}
.y6{bottom:69.792000pt;}
.y69{bottom:102.432000pt;}
.yb5{bottom:103.232000pt;}
.y52{bottom:103.712000pt;}
.yec{bottom:109.312000pt;}
.y94{bottom:115.392000pt;}
.y85{bottom:116.512000pt;}
.y4f{bottom:116.992000pt;}
.y2d{bottom:117.792000pt;}
.y105{bottom:126.272000pt;}
.yd3{bottom:128.992000pt;}
.y68{bottom:130.112000pt;}
.y51{bottom:131.392000pt;}
.yb4{bottom:136.506667pt;}
.yeb{bottom:142.586667pt;}
.y84{bottom:144.186667pt;}
.y4e{bottom:144.666667pt;}
.y93{bottom:157.146667pt;}
.y67{bottom:157.626667pt;}
.y50{bottom:158.906667pt;}
.yd1{bottom:162.266667pt;}
.y104{bottom:163.066667pt;}
.y2c{bottom:168.666667pt;}
.yb3{bottom:169.946667pt;}
.y4d{bottom:172.186667pt;}
.yea{bottom:176.026667pt;}
.y103{bottom:181.466667pt;}
.y66{bottom:185.306667pt;}
.y83{bottom:185.786667pt;}
.ycf{bottom:195.706667pt;}
.y92{bottom:198.746667pt;}
.y7c{bottom:199.386667pt;}
.y4c{bottom:199.866667pt;}
.y2b{bottom:201.146667pt;}
.yb1{bottom:203.226667pt;}
.ye9{bottom:209.306667pt;}
.y8c{bottom:212.826667pt;}
.y82{bottom:213.306667pt;}
.y102{bottom:218.266667pt;}
.y2a{bottom:219.546667pt;}
.y91{bottom:226.426667pt;}
.y65{bottom:226.906667pt;}
.y4b{bottom:227.386667pt;}
.yce{bottom:228.986667pt;}
.yb0{bottom:236.666667pt;}
.y8b{bottom:240.506667pt;}
.y81{bottom:240.986667pt;}
.ye8{bottom:242.746667pt;}
.y29{bottom:252.186667pt;}
.y90{bottom:253.946667pt;}
.y64{bottom:254.586667pt;}
.y4a{bottom:255.066667pt;}
.y8a{bottom:268.026667pt;}
.y80{bottom:268.506667pt;}
.yae{bottom:269.946667pt;}
.y28{bottom:270.906667pt;}
.y101{bottom:273.466667pt;}
.ycd{bottom:275.106667pt;}
.ye7{bottom:279.586667pt;}
.y63{bottom:282.146667pt;}
.y49{bottom:282.626667pt;}
.y27{bottom:289.506667pt;}
.y100{bottom:291.906667pt;}
.y89{bottom:295.746667pt;}
.y7f{bottom:296.226667pt;}
.ycc{bottom:302.786667pt;}
.yac{bottom:303.426667pt;}
.ye6{bottom:307.266667pt;}
.y26{bottom:308.066667pt;}
.y62{bottom:309.666667pt;}
.y48{bottom:310.306667pt;}
.ye5{bottom:322.786667pt;}
.y88{bottom:323.266667pt;}
.y7e{bottom:323.746667pt;}
.y25{bottom:326.786667pt;}
.yff{bottom:328.706667pt;}
.ycb{bottom:330.306667pt;}
.y61{bottom:337.346667pt;}
.y47{bottom:337.826667pt;}
.y24{bottom:345.346667pt;}
.yfe{bottom:347.106667pt;}
.yab{bottom:349.506667pt;}
.y87{bottom:350.946667pt;}
.y7d{bottom:351.426667pt;}
.ye4{bottom:356.226667pt;}
.yca{bottom:357.986667pt;}
.y23{bottom:364.066667pt;}
.y60{bottom:364.866667pt;}
.y46{bottom:365.506667pt;}
.yaa{bottom:377.026667pt;}
.y86{bottom:378.466667pt;}
.y7b{bottom:378.946667pt;}
.y22{bottom:382.626667pt;}
.yfd{bottom:383.906667pt;}
.yc9{bottom:385.506667pt;}
.ye3{bottom:389.506667pt;}
.y5f{bottom:392.546667pt;}
.y45{bottom:393.026667pt;}
.y21{bottom:401.346667pt;}
.yfc{bottom:402.306667pt;}
.ya9{bottom:404.706667pt;}
.y8f{bottom:406.146667pt;}
.y7a{bottom:406.626667pt;}
.yc8{bottom:413.186667pt;}
.y20{bottom:419.906667pt;}
.y5e{bottom:420.066667pt;}
.y44{bottom:420.706667pt;}
.ye2{bottom:422.946667pt;}
.yc7{bottom:428.706667pt;}
.ya8{bottom:432.226667pt;}
.y8e{bottom:433.666667pt;}
.y79{bottom:434.146667pt;}
.y1f{bottom:438.466667pt;}
.yfb{bottom:439.106667pt;}
.y5d{bottom:447.746667pt;}
.y43{bottom:448.226667pt;}
.ye1{bottom:456.226667pt;}
.y1e{bottom:457.186667pt;}
.yfa{bottom:457.506667pt;}
.ya7{bottom:459.906667pt;}
.y8d{bottom:461.186667pt;}
.y78{bottom:461.826667pt;}
.yc6{bottom:461.986667pt;}
.y115{bottom:470.786667pt;}
.y5c{bottom:475.266667pt;}
.y1d{bottom:475.746667pt;}
.y42{bottom:475.906667pt;}
.ya6{bottom:487.426667pt;}
.y77{bottom:489.346667pt;}
.ye0{bottom:489.666667pt;}
.yf9{bottom:494.306667pt;}
.y1c{bottom:494.466667pt;}
.yc4{bottom:495.426667pt;}
.y5b{bottom:502.973333pt;}
.y41{bottom:503.453333pt;}
.yf8{bottom:512.733333pt;}
.y1b{bottom:513.053333pt;}
.ya5{bottom:515.133333pt;}
.y76{bottom:517.053333pt;}
.y114{bottom:521.853333pt;}
.ydf{bottom:522.973333pt;}
.yc3{bottom:528.733333pt;}
.y5a{bottom:530.493333pt;}
.y40{bottom:531.133333pt;}
.y1a{bottom:531.773333pt;}
.y113{bottom:540.253333pt;}
.ya4{bottom:542.653333pt;}
.y75{bottom:544.573333pt;}
.yf7{bottom:549.533333pt;}
.y19{bottom:550.333333pt;}
.yde{bottom:556.413333pt;}
.y59{bottom:558.173333pt;}
.y3f{bottom:558.653333pt;}
.yc2{bottom:562.173333pt;}
.yf6{bottom:567.933333pt;}
.y18{bottom:568.893333pt;}
.ya3{bottom:570.333333pt;}
.y74{bottom:572.253333pt;}
.y112{bottom:577.053333pt;}
.y58{bottom:585.693333pt;}
.y3e{bottom:586.333333pt;}
.y17{bottom:587.613333pt;}
.ydd{bottom:589.693333pt;}
.yc1{bottom:595.453333pt;}
.ya2{bottom:597.853333pt;}
.y73{bottom:599.773333pt;}
.yf5{bottom:604.733333pt;}
.y16{bottom:606.173333pt;}
.y57{bottom:613.373333pt;}
.y3d{bottom:613.853333pt;}
.yf4{bottom:623.133333pt;}
.y15{bottom:624.893333pt;}
.ya1{bottom:625.533333pt;}
.ydc{bottom:626.653333pt;}
.y72{bottom:627.453333pt;}
.yc0{bottom:628.893333pt;}
.y111{bottom:632.253333pt;}
.y56{bottom:640.893333pt;}
.y3c{bottom:641.533333pt;}
.y14{bottom:643.453333pt;}
.ydb{bottom:645.053333pt;}
.y110{bottom:650.653333pt;}
.ya0{bottom:653.053333pt;}
.y71{bottom:654.973333pt;}
.yf3{bottom:659.933333pt;}
.ybf{bottom:662.173333pt;}
.y55{bottom:668.573333pt;}
.y3b{bottom:669.053333pt;}
.yda{bottom:672.893333pt;}
.yf2{bottom:678.333333pt;}
.y13{bottom:680.253333pt;}
.y9f{bottom:680.733333pt;}
.y70{bottom:682.653333pt;}
.y10f{bottom:687.453333pt;}
.ybe{bottom:695.613333pt;}
.y54{bottom:696.093333pt;}
.y3a{bottom:696.733333pt;}
.yd9{bottom:700.573333pt;}
.y10e{bottom:705.853333pt;}
.y9e{bottom:708.253333pt;}
.y6f{bottom:710.173333pt;}
.yf1{bottom:715.133333pt;}
.y97{bottom:723.813333pt;}
.y39{bottom:724.293333pt;}
.yd8{bottom:728.133333pt;}
.y12{bottom:731.173333pt;}
.yf0{bottom:733.573333pt;}
.y9d{bottom:735.973333pt;}
.y53{bottom:737.893333pt;}
.ybd{bottom:741.733333pt;}
.y10d{bottom:742.693333pt;}
.y11{bottom:749.733333pt;}
.y96{bottom:751.333333pt;}
.y38{bottom:751.973333pt;}
.yd7{bottom:755.813333pt;}
.y10c{bottom:761.093333pt;}
.y9c{bottom:763.493333pt;}
.y6e{bottom:765.413333pt;}
.y10{bottom:768.453333pt;}
.yef{bottom:770.373333pt;}
.y37{bottom:779.493333pt;}
.ybc{bottom:783.333333pt;}
.yf{bottom:787.013333pt;}
.yee{bottom:788.773333pt;}
.y9b{bottom:791.173333pt;}
.y6d{bottom:793.093333pt;}
.y10b{bottom:797.893333pt;}
.ye{bottom:805.733333pt;}
.y36{bottom:807.173333pt;}
.ybb{bottom:811.013333pt;}
.y10a{bottom:816.293333pt;}
.y9a{bottom:818.693333pt;}
.y6c{bottom:820.613333pt;}
.yed{bottom:825.573333pt;}
.yba{bottom:826.533333pt;}
.yd{bottom:826.853333pt;}
.y35{bottom:834.693333pt;}
.yc{bottom:845.413333pt;}
.y99{bottom:846.373333pt;}
.y6b{bottom:848.293333pt;}
.y109{bottom:853.093333pt;}
.yb9{bottom:859.813333pt;}
.y34{bottom:862.373333pt;}
.y5{bottom:863.813333pt;}
.y108{bottom:871.493333pt;}
.y98{bottom:873.733333pt;}
.y6a{bottom:875.813333pt;}
.y33{bottom:889.893333pt;}
.yb8{bottom:893.253333pt;}
.y4{bottom:900.933333pt;}
.y95{bottom:903.493333pt;}
.y107{bottom:908.293333pt;}
.y32{bottom:917.573333pt;}
.yb6{bottom:926.533333pt;}
.y106{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y31{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.ha{height:32.640000pt;}
.hd{height:32.672000pt;}
.hc{height:32.800000pt;}
.hb{height:32.832000pt;}
.h5{height:44.000000pt;}
.h2{height:45.156250pt;}
.h4{height:45.937500pt;}
.h8{height:46.593750pt;}
.h9{height:48.218750pt;}
.h7{height:48.281250pt;}
.hf{height:48.687500pt;}
.h6{height:51.840000pt;}
.h1{height:52.832812pt;}
.he{height:53.937500pt;}
.h3{height:60.057813pt;}
.h0{height:1056.000000pt;}
.wf{width:56.640000pt;}
.w10{width:56.832000pt;}
.w15{width:58.560000pt;}
.w7{width:59.840000pt;}
.we{width:61.920000pt;}
.wc{width:62.080000pt;}
.wd{width:62.112000pt;}
.w2{width:66.880000pt;}
.w3{width:66.912000pt;}
.w5{width:67.040000pt;}
.w4{width:67.072000pt;}
.w8{width:82.592000pt;}
.w11{width:83.040000pt;}
.wb{width:86.560000pt;}
.w14{width:86.592000pt;}
.w9{width:89.280000pt;}
.w13{width:91.840000pt;}
.wa{width:91.872000pt;}
.w12{width:95.392000pt;}
.w17{width:115.392000pt;}
.w16{width:151.040000pt;}
.w6{width:203.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.920000pt;}
.x22{left:6.880000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x5{left:95.071988pt;}
.xb{left:96.031988pt;}
.xe{left:120.031988pt;}
.xa{left:129.471988pt;}
.xd{left:144.026655pt;}
.x1{left:156.666655pt;}
.x11{left:164.346667pt;}
.xf{left:168.026655pt;}
.x23{left:180.346667pt;}
.x3{left:183.386655pt;}
.x28{left:192.026655pt;}
.xc{left:192.986655pt;}
.x4{left:210.266655pt;}
.x12{left:231.866667pt;}
.x1d{left:246.586667pt;}
.x27{left:248.346667pt;}
.x2{left:252.666655pt;}
.x24{left:276.546667pt;}
.x13{left:299.586667pt;}
.x1e{left:309.346667pt;}
.x1a{left:360.866667pt;}
.x14{left:367.106667pt;}
.x25{left:369.026667pt;}
.x1f{left:372.066667pt;}
.x9{left:376.066655pt;}
.x15{left:434.813333pt;}
.x1b{left:444.093333pt;}
.x26{left:456.253333pt;}
.x20{left:497.693333pt;}
.x16{left:502.493333pt;}
.x1c{left:534.013333pt;}
.x21{left:554.973333pt;}
.x17{left:570.173333pt;}
.x18{left:637.893333pt;}
.x19{left:705.573333pt;}
.x6{left:749.253321pt;}
}




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