
    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_e9bd55721a981da0d93a3a50.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_f32b1fc5649efcc883f32fb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_f67007022bc8719bd84f71d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_81e925ee05acb4a599b5f90d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_826b28b9aa0d074ecc29b739.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58d498275aec0f3e3e22c3fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_3e419e3108ee4799edc001ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_6e8ce733263af75f240304ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2977dc86d4c296a6bd7187f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls26{letter-spacing:-1.008000px;}
.ls22{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.597600px;}
.ls30{letter-spacing:-0.358560px;}
.ls17{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.252720px;}
.ls19{letter-spacing:-0.239040px;}
.ls10{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.191520px;}
.ls23{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.084240px;}
.ls15{letter-spacing:-0.077760px;}
.ls21{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.077760px;}
.ls3{letter-spacing:0.084240px;}
.ls2d{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132480px;}
.ls1a{letter-spacing:0.144000px;}
.lse{letter-spacing:0.179280px;}
.ls2b{letter-spacing:0.239040px;}
.ls12{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.342144px;}
.ls2c{letter-spacing:0.358560px;}
.ls28{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.418320px;}
.ls20{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.478080px;}
.ls24{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.734400px;}
.ls27{letter-spacing:0.741600px;}
.ls9{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.613520px;}
.ls8{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.880000px;}
.ls25{letter-spacing:4.320000px;}
.ls29{letter-spacing:4.482000px;}
.ls1e{letter-spacing:5.040000px;}
.ls33{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.480000px;}
.ls32{letter-spacing:7.920000px;}
.ls1f{letter-spacing:8.640000px;}
.ls0{letter-spacing:731.538000px;}
.ls35{letter-spacing:846.000000px;}
.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;}
}
.ws5f{word-spacing:-72.072000px;}
.ws5e{word-spacing:-72.000000px;}
.ws59{word-spacing:-26.429760px;}
.ws5{word-spacing:-20.198880px;}
.ws5c{word-spacing:-18.720000px;}
.ws54{word-spacing:-18.576000px;}
.ws26{word-spacing:-18.432000px;}
.ws28{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws29{word-spacing:-17.928000px;}
.ws2b{word-spacing:-17.856000px;}
.ws27{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws2a{word-spacing:-17.280000px;}
.ws44{word-spacing:-15.298560px;}
.ws41{word-spacing:-15.059520px;}
.ws45{word-spacing:-14.940000px;}
.ws43{word-spacing:-14.880240px;}
.ws42{word-spacing:-14.581440px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws40{word-spacing:-9.720000px;}
.ws20{word-spacing:-4.320000px;}
.ws48{word-spacing:-3.744000px;}
.ws3c{word-spacing:-3.600000px;}
.ws47{word-spacing:-3.543120px;}
.ws3e{word-spacing:-3.312000px;}
.ws1c{word-spacing:-3.024000px;}
.ws1d{word-spacing:-2.880000px;}
.ws14{word-spacing:-2.592000px;}
.ws36{word-spacing:-2.304000px;}
.ws2e{word-spacing:-2.160000px;}
.ws35{word-spacing:-1.872000px;}
.ws56{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.440000px;}
.ws37{word-spacing:-1.152000px;}
.ws3a{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.717120px;}
.ws19{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.421200px;}
.ws4f{word-spacing:-0.179280px;}
.ws3f{word-spacing:-0.144000px;}
.wsa{word-spacing:0.000000px;}
.ws53{word-spacing:0.059760px;}
.ws5d{word-spacing:0.072000px;}
.wse{word-spacing:0.084240px;}
.ws6{word-spacing:0.144000px;}
.wsf{word-spacing:0.155520px;}
.ws3{word-spacing:0.162000px;}
.wsc{word-spacing:0.252720px;}
.wsb{word-spacing:0.264960px;}
.ws11{word-spacing:0.288000px;}
.ws2d{word-spacing:0.576000px;}
.ws51{word-spacing:0.597600px;}
.ws1b{word-spacing:0.720000px;}
.ws5a{word-spacing:0.766080px;}
.ws38{word-spacing:1.008000px;}
.ws50{word-spacing:1.254960px;}
.ws49{word-spacing:1.296000px;}
.ws22{word-spacing:1.440000px;}
.ws4e{word-spacing:1.494000px;}
.ws52{word-spacing:1.673280px;}
.ws23{word-spacing:1.728000px;}
.ws4b{word-spacing:2.016000px;}
.ws1e{word-spacing:2.160000px;}
.ws1f{word-spacing:2.448000px;}
.ws3b{word-spacing:2.736000px;}
.ws15{word-spacing:2.880000px;}
.ws55{word-spacing:3.168000px;}
.ws39{word-spacing:3.456000px;}
.ws21{word-spacing:3.600000px;}
.ws30{word-spacing:3.888000px;}
.ws4d{word-spacing:4.123440px;}
.ws4a{word-spacing:4.176000px;}
.ws12{word-spacing:4.320000px;}
.ws4c{word-spacing:4.362480px;}
.ws13{word-spacing:4.608000px;}
.ws32{word-spacing:5.040000px;}
.ws31{word-spacing:5.328000px;}
.ws16{word-spacing:5.760000px;}
.ws17{word-spacing:6.048000px;}
.ws2f{word-spacing:6.336000px;}
.ws2c{word-spacing:6.480000px;}
.ws3d{word-spacing:6.768000px;}
.ws5b{word-spacing:7.056000px;}
.ws25{word-spacing:7.200000px;}
.ws1a{word-spacing:7.488000px;}
.ws34{word-spacing:7.920000px;}
.ws46{word-spacing:8.208000px;}
.ws33{word-spacing:8.640000px;}
.ws58{word-spacing:8.928000px;}
.ws57{word-spacing:11.088000px;}
.ws60{word-spacing:47.520000px;}
._7{margin-left:-8.928000px;}
._b{margin-left:-4.584960px;}
._a{margin-left:-3.532320px;}
._9{margin-left:-2.248200px;}
._0{margin-left:-1.063800px;}
._1{width:1.032480px;}
._2{width:2.060640px;}
._4{width:4.129920px;}
._3{width:5.734080px;}
._5{width:6.744960px;}
._6{width:7.848000px;}
._8{width:9.574560px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y95{bottom:165.420000px;}
.y55{bottom:167.580000px;}
.ycb{bottom:177.840000px;}
.y2e{bottom:181.080000px;}
.yd8{bottom:182.520000px;}
.y94{bottom:182.688840px;}
.yad{bottom:189.360000px;}
.y54{bottom:191.520000px;}
.y93{bottom:199.974420px;}
.yca{bottom:201.600000px;}
.yd7{bottom:206.280000px;}
.y71{bottom:213.300000px;}
.y2d{bottom:214.200000px;}
.y53{bottom:215.280000px;}
.y92{bottom:222.480000px;}
.yc9{bottom:225.360000px;}
.yd6{bottom:230.040000px;}
.y70{bottom:237.060000px;}
.y52{bottom:239.040000px;}
.y2c{bottom:246.960000px;}
.y91{bottom:247.320000px;}
.yc8{bottom:249.300000px;}
.yd5{bottom:253.800000px;}
.y6f{bottom:260.820000px;}
.y51{bottom:262.800000px;}
.y90{bottom:268.020000px;}
.ydc{bottom:269.820000px;}
.y2b{bottom:270.900000px;}
.yc7{bottom:273.060000px;}
.yac{bottom:284.580000px;}
.yd4{bottom:284.760000px;}
.y50{bottom:286.560000px;}
.y6e{bottom:293.580000px;}
.y2a{bottom:294.660000px;}
.y8f{bottom:295.560000px;}
.yc6{bottom:296.820000px;}
.yab{bottom:308.520000px;}
.y4f{bottom:310.500000px;}
.y6d{bottom:317.520000px;}
.y29{bottom:318.420000px;}
.y8e{bottom:319.500000px;}
.yc5{bottom:320.580000px;}
.yaa{bottom:332.280000px;}
.y4e{bottom:334.260000px;}
.y6c{bottom:341.280000px;}
.y28{bottom:342.180000px;}
.y8d{bottom:343.260000px;}
.yc4{bottom:344.520000px;}
.yd3{bottom:350.280000px;}
.ya9{bottom:356.040000px;}
.y4d{bottom:358.020000px;}
.y27{bottom:366.120000px;}
.y8c{bottom:367.020000px;}
.yc3{bottom:368.280000px;}
.y6b{bottom:374.040000px;}
.ya8{bottom:379.800000px;}
.y4c{bottom:381.780000px;}
.y26{bottom:389.880000px;}
.y8b{bottom:390.780000px;}
.yc2{bottom:392.040000px;}
.y6a{bottom:397.800000px;}
.ya7{bottom:403.740000px;}
.y4b{bottom:405.720000px;}
.ydb{bottom:412.740000px;}
.y25{bottom:413.640000px;}
.y8a{bottom:414.720000px;}
.yc1{bottom:415.800000px;}
.y69{bottom:421.740000px;}
.yce{bottom:423.720000px;}
.y4a{bottom:429.480000px;}
.ya6{bottom:436.500000px;}
.y24{bottom:437.400000px;}
.y89{bottom:438.480000px;}
.yc0{bottom:439.740000px;}
.y68{bottom:445.500000px;}
.ycd{bottom:447.480000px;}
.y49{bottom:453.240000px;}
.ya5{bottom:460.260000px;}
.y23{bottom:461.160000px;}
.y88{bottom:462.240000px;}
.ybf{bottom:463.500000px;}
.y67{bottom:469.260000px;}
.ycc{bottom:471.240000px;}
.y48{bottom:477.000000px;}
.ya4{bottom:484.020000px;}
.y22{bottom:485.100000px;}
.ybe{bottom:487.260000px;}
.y66{bottom:493.020000px;}
.y87{bottom:495.000000px;}
.y47{bottom:500.940000px;}
.ya3{bottom:507.780000px;}
.y21{bottom:508.860000px;}
.ybd{bottom:511.020000px;}
.y65{bottom:516.780000px;}
.y86{bottom:518.940000px;}
.y46{bottom:524.700000px;}
.ya2{bottom:531.720000px;}
.y20{bottom:532.620000px;}
.ybc{bottom:534.780000px;}
.y64{bottom:540.720000px;}
.y85{bottom:542.700000px;}
.yd2{bottom:549.720000px;}
.y45{bottom:555.480000px;}
.y1f{bottom:556.380000px;}
.ybb{bottom:558.720000px;}
.y63{bottom:564.480000px;}
.y84{bottom:566.460000px;}
.yd1{bottom:573.480000px;}
.ya1{bottom:579.240000px;}
.y1e{bottom:580.320000px;}
.yba{bottom:582.480000px;}
.y62{bottom:588.240000px;}
.y83{bottom:590.220000px;}
.yd0{bottom:597.240000px;}
.ya0{bottom:603.000000px;}
.y1d{bottom:604.080000px;}
.y61{bottom:612.000000px;}
.y82{bottom:614.160000px;}
.yb9{bottom:615.240000px;}
.y44{bottom:621.000000px;}
.y9f{bottom:626.940000px;}
.y1c{bottom:627.840000px;}
.ycf{bottom:630.000000px;}
.yda{bottom:635.940000px;}
.y81{bottom:637.920000px;}
.yb8{bottom:639.000000px;}
.y60{bottom:644.940000px;}
.yec{bottom:650.520000px;}
.y9e{bottom:650.700000px;}
.y1b{bottom:651.600000px;}
.y43{bottom:653.940000px;}
.yd9{bottom:659.700000px;}
.y80{bottom:661.680000px;}
.yb7{bottom:662.940000px;}
.y5f{bottom:668.700000px;}
.y9d{bottom:674.460000px;}
.y1a{bottom:675.540000px;}
.y42{bottom:677.700000px;}
.y7f{bottom:685.440000px;}
.yb6{bottom:686.700000px;}
.y5e{bottom:692.460000px;}
.y9c{bottom:698.220000px;}
.y19{bottom:699.300000px;}
.y41{bottom:701.460000px;}
.y7e{bottom:709.380000px;}
.yb5{bottom:710.460000px;}
.yeb{bottom:711.360000px;}
.y5d{bottom:716.220000px;}
.y18{bottom:723.060000px;}
.y40{bottom:725.220000px;}
.y9b{bottom:731.160000px;}
.y7d{bottom:733.140000px;}
.yb4{bottom:734.220000px;}
.y5c{bottom:740.160000px;}
.yea{bottom:746.100000px;}
.y3f{bottom:749.160000px;}
.y9a{bottom:754.920000px;}
.y7c{bottom:756.900000px;}
.y17{bottom:757.080000px;}
.yb3{bottom:758.160000px;}
.y5b{bottom:763.920000px;}
.ye9{bottom:772.020000px;}
.y3e{bottom:772.920000px;}
.y99{bottom:778.680000px;}
.y7b{bottom:780.660000px;}
.yb2{bottom:781.920000px;}
.y5a{bottom:787.680000px;}
.y16{bottom:790.200000px;}
.y3d{bottom:796.680000px;}
.y7a{bottom:804.420000px;}
.ye8{bottom:804.780000px;}
.yb1{bottom:805.680000px;}
.y59{bottom:811.440000px;}
.y3c{bottom:820.440000px;}
.y15{bottom:822.960000px;}
.ye7{bottom:828.540000px;}
.yb0{bottom:829.440000px;}
.y58{bottom:835.380000px;}
.y14{bottom:843.660000px;}
.y3b{bottom:844.380000px;}
.yaf{bottom:853.380000px;}
.y98{bottom:859.140000px;}
.ye6{bottom:863.460000px;}
.y3a{bottom:868.140000px;}
.y13{bottom:876.420000px;}
.yae{bottom:877.140000px;}
.y97{bottom:882.900000px;}
.ye5{bottom:889.380000px;}
.y39{bottom:891.900000px;}
.y12{bottom:900.180000px;}
.y79{bottom:900.900000px;}
.y96{bottom:906.660000px;}
.y38{bottom:915.660000px;}
.y11{bottom:922.853880px;}
.ye4{bottom:924.300000px;}
.y78{bottom:924.660000px;}
.y37{bottom:939.600000px;}
.y10{bottom:943.740000px;}
.y77{bottom:948.600000px;}
.ye3{bottom:950.040000px;}
.y36{bottom:963.360000px;}
.yf{bottom:965.880000px;}
.y76{bottom:972.360000px;}
.ye2{bottom:982.980000px;}
.y35{bottom:987.120000px;}
.y75{bottom:996.120000px;}
.ye1{bottom:1006.740000px;}
.ye{bottom:1008.724320px;}
.y34{bottom:1010.880000px;}
.y74{bottom:1019.880000px;}
.yd{bottom:1032.480000px;}
.y33{bottom:1034.640000px;}
.ye0{bottom:1041.660000px;}
.y73{bottom:1043.640000px;}
.y32{bottom:1058.580000px;}
.y72{bottom:1067.580000px;}
.ydf{bottom:1076.400000px;}
.y31{bottom:1082.340000px;}
.yc{bottom:1083.406320px;}
.y57{bottom:1091.340000px;}
.yde{bottom:1102.320000px;}
.y30{bottom:1106.100000px;}
.yb{bottom:1108.973160px;}
.y56{bottom:1115.100000px;}
.ydd{bottom:1133.100000px;}
.ya{bottom:1134.540000px;}
.y2f{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.he{height:27.014766px;}
.h5{height:32.758500px;}
.h3{height:38.759766px;}
.hf{height:41.522695px;}
.h10{height:41.567335px;}
.ha{height:48.656250px;}
.h9{height:48.905156px;}
.h4{height:50.027344px;}
.hb{height:51.679688px;}
.h8{height:58.921875px;}
.hd{height:60.878320px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.hc{height:69.715898px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620000px;}
.x1{left:152.100000px;}
.x9{left:155.880000px;}
.xa{left:187.917120px;}
.x7{left:292.863780px;}
.x4{left:297.180000px;}
.x6{left:324.180000px;}
.x10{left:343.620000px;}
.x8{left:407.535480px;}
.xc{left:437.220000px;}
.x5{left:466.740000px;}
.xe{left:499.140000px;}
.x2{left:532.620000px;}
.xb{left:541.080000px;}
.xf{left:556.020000px;}
.xd{left:829.081260px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.531200pt;}
.ls30{letter-spacing:-0.318720pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.224640pt;}
.ls19{letter-spacing:-0.212480pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.170240pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.074880pt;}
.ls15{letter-spacing:-0.069120pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.069120pt;}
.ls3{letter-spacing:0.074880pt;}
.ls2d{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117760pt;}
.ls1a{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.159360pt;}
.ls2b{letter-spacing:0.212480pt;}
.ls12{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.304128pt;}
.ls2c{letter-spacing:0.318720pt;}
.ls28{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.371840pt;}
.ls20{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.424960pt;}
.ls24{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.652800pt;}
.ls27{letter-spacing:0.659200pt;}
.ls9{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.434240pt;}
.ls8{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.560000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls29{letter-spacing:3.984000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls33{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls32{letter-spacing:7.040000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls0{letter-spacing:650.256000pt;}
.ls35{letter-spacing:752.000000pt;}
.ws5f{word-spacing:-64.064000pt;}
.ws5e{word-spacing:-64.000000pt;}
.ws59{word-spacing:-23.493120pt;}
.ws5{word-spacing:-17.954560pt;}
.ws5c{word-spacing:-16.640000pt;}
.ws54{word-spacing:-16.512000pt;}
.ws26{word-spacing:-16.384000pt;}
.ws28{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws29{word-spacing:-15.936000pt;}
.ws2b{word-spacing:-15.872000pt;}
.ws27{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2a{word-spacing:-15.360000pt;}
.ws44{word-spacing:-13.598720pt;}
.ws41{word-spacing:-13.386240pt;}
.ws45{word-spacing:-13.280000pt;}
.ws43{word-spacing:-13.226880pt;}
.ws42{word-spacing:-12.961280pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws40{word-spacing:-8.640000pt;}
.ws20{word-spacing:-3.840000pt;}
.ws48{word-spacing:-3.328000pt;}
.ws3c{word-spacing:-3.200000pt;}
.ws47{word-spacing:-3.149440pt;}
.ws3e{word-spacing:-2.944000pt;}
.ws1c{word-spacing:-2.688000pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws14{word-spacing:-2.304000pt;}
.ws36{word-spacing:-2.048000pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws35{word-spacing:-1.664000pt;}
.ws56{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.280000pt;}
.ws37{word-spacing:-1.024000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.637440pt;}
.ws19{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.374400pt;}
.ws4f{word-spacing:-0.159360pt;}
.ws3f{word-spacing:-0.128000pt;}
.wsa{word-spacing:0.000000pt;}
.ws53{word-spacing:0.053120pt;}
.ws5d{word-spacing:0.064000pt;}
.wse{word-spacing:0.074880pt;}
.ws6{word-spacing:0.128000pt;}
.wsf{word-spacing:0.138240pt;}
.ws3{word-spacing:0.144000pt;}
.wsc{word-spacing:0.224640pt;}
.wsb{word-spacing:0.235520pt;}
.ws11{word-spacing:0.256000pt;}
.ws2d{word-spacing:0.512000pt;}
.ws51{word-spacing:0.531200pt;}
.ws1b{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.680960pt;}
.ws38{word-spacing:0.896000pt;}
.ws50{word-spacing:1.115520pt;}
.ws49{word-spacing:1.152000pt;}
.ws22{word-spacing:1.280000pt;}
.ws4e{word-spacing:1.328000pt;}
.ws52{word-spacing:1.487360pt;}
.ws23{word-spacing:1.536000pt;}
.ws4b{word-spacing:1.792000pt;}
.ws1e{word-spacing:1.920000pt;}
.ws1f{word-spacing:2.176000pt;}
.ws3b{word-spacing:2.432000pt;}
.ws15{word-spacing:2.560000pt;}
.ws55{word-spacing:2.816000pt;}
.ws39{word-spacing:3.072000pt;}
.ws21{word-spacing:3.200000pt;}
.ws30{word-spacing:3.456000pt;}
.ws4d{word-spacing:3.665280pt;}
.ws4a{word-spacing:3.712000pt;}
.ws12{word-spacing:3.840000pt;}
.ws4c{word-spacing:3.877760pt;}
.ws13{word-spacing:4.096000pt;}
.ws32{word-spacing:4.480000pt;}
.ws31{word-spacing:4.736000pt;}
.ws16{word-spacing:5.120000pt;}
.ws17{word-spacing:5.376000pt;}
.ws2f{word-spacing:5.632000pt;}
.ws2c{word-spacing:5.760000pt;}
.ws3d{word-spacing:6.016000pt;}
.ws5b{word-spacing:6.272000pt;}
.ws25{word-spacing:6.400000pt;}
.ws1a{word-spacing:6.656000pt;}
.ws34{word-spacing:7.040000pt;}
.ws46{word-spacing:7.296000pt;}
.ws33{word-spacing:7.680000pt;}
.ws58{word-spacing:7.936000pt;}
.ws57{word-spacing:9.856000pt;}
.ws60{word-spacing:42.240000pt;}
._7{margin-left:-7.936000pt;}
._b{margin-left:-4.075520pt;}
._a{margin-left:-3.139840pt;}
._9{margin-left:-1.998400pt;}
._0{margin-left:-0.945600pt;}
._1{width:0.917760pt;}
._2{width:1.831680pt;}
._4{width:3.671040pt;}
._3{width:5.096960pt;}
._5{width:5.995520pt;}
._6{width:6.976000pt;}
._8{width:8.510720pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y95{bottom:147.040000pt;}
.y55{bottom:148.960000pt;}
.ycb{bottom:158.080000pt;}
.y2e{bottom:160.960000pt;}
.yd8{bottom:162.240000pt;}
.y94{bottom:162.390080pt;}
.yad{bottom:168.320000pt;}
.y54{bottom:170.240000pt;}
.y93{bottom:177.755040pt;}
.yca{bottom:179.200000pt;}
.yd7{bottom:183.360000pt;}
.y71{bottom:189.600000pt;}
.y2d{bottom:190.400000pt;}
.y53{bottom:191.360000pt;}
.y92{bottom:197.760000pt;}
.yc9{bottom:200.320000pt;}
.yd6{bottom:204.480000pt;}
.y70{bottom:210.720000pt;}
.y52{bottom:212.480000pt;}
.y2c{bottom:219.520000pt;}
.y91{bottom:219.840000pt;}
.yc8{bottom:221.600000pt;}
.yd5{bottom:225.600000pt;}
.y6f{bottom:231.840000pt;}
.y51{bottom:233.600000pt;}
.y90{bottom:238.240000pt;}
.ydc{bottom:239.840000pt;}
.y2b{bottom:240.800000pt;}
.yc7{bottom:242.720000pt;}
.yac{bottom:252.960000pt;}
.yd4{bottom:253.120000pt;}
.y50{bottom:254.720000pt;}
.y6e{bottom:260.960000pt;}
.y2a{bottom:261.920000pt;}
.y8f{bottom:262.720000pt;}
.yc6{bottom:263.840000pt;}
.yab{bottom:274.240000pt;}
.y4f{bottom:276.000000pt;}
.y6d{bottom:282.240000pt;}
.y29{bottom:283.040000pt;}
.y8e{bottom:284.000000pt;}
.yc5{bottom:284.960000pt;}
.yaa{bottom:295.360000pt;}
.y4e{bottom:297.120000pt;}
.y6c{bottom:303.360000pt;}
.y28{bottom:304.160000pt;}
.y8d{bottom:305.120000pt;}
.yc4{bottom:306.240000pt;}
.yd3{bottom:311.360000pt;}
.ya9{bottom:316.480000pt;}
.y4d{bottom:318.240000pt;}
.y27{bottom:325.440000pt;}
.y8c{bottom:326.240000pt;}
.yc3{bottom:327.360000pt;}
.y6b{bottom:332.480000pt;}
.ya8{bottom:337.600000pt;}
.y4c{bottom:339.360000pt;}
.y26{bottom:346.560000pt;}
.y8b{bottom:347.360000pt;}
.yc2{bottom:348.480000pt;}
.y6a{bottom:353.600000pt;}
.ya7{bottom:358.880000pt;}
.y4b{bottom:360.640000pt;}
.ydb{bottom:366.880000pt;}
.y25{bottom:367.680000pt;}
.y8a{bottom:368.640000pt;}
.yc1{bottom:369.600000pt;}
.y69{bottom:374.880000pt;}
.yce{bottom:376.640000pt;}
.y4a{bottom:381.760000pt;}
.ya6{bottom:388.000000pt;}
.y24{bottom:388.800000pt;}
.y89{bottom:389.760000pt;}
.yc0{bottom:390.880000pt;}
.y68{bottom:396.000000pt;}
.ycd{bottom:397.760000pt;}
.y49{bottom:402.880000pt;}
.ya5{bottom:409.120000pt;}
.y23{bottom:409.920000pt;}
.y88{bottom:410.880000pt;}
.ybf{bottom:412.000000pt;}
.y67{bottom:417.120000pt;}
.ycc{bottom:418.880000pt;}
.y48{bottom:424.000000pt;}
.ya4{bottom:430.240000pt;}
.y22{bottom:431.200000pt;}
.ybe{bottom:433.120000pt;}
.y66{bottom:438.240000pt;}
.y87{bottom:440.000000pt;}
.y47{bottom:445.280000pt;}
.ya3{bottom:451.360000pt;}
.y21{bottom:452.320000pt;}
.ybd{bottom:454.240000pt;}
.y65{bottom:459.360000pt;}
.y86{bottom:461.280000pt;}
.y46{bottom:466.400000pt;}
.ya2{bottom:472.640000pt;}
.y20{bottom:473.440000pt;}
.ybc{bottom:475.360000pt;}
.y64{bottom:480.640000pt;}
.y85{bottom:482.400000pt;}
.yd2{bottom:488.640000pt;}
.y45{bottom:493.760000pt;}
.y1f{bottom:494.560000pt;}
.ybb{bottom:496.640000pt;}
.y63{bottom:501.760000pt;}
.y84{bottom:503.520000pt;}
.yd1{bottom:509.760000pt;}
.ya1{bottom:514.880000pt;}
.y1e{bottom:515.840000pt;}
.yba{bottom:517.760000pt;}
.y62{bottom:522.880000pt;}
.y83{bottom:524.640000pt;}
.yd0{bottom:530.880000pt;}
.ya0{bottom:536.000000pt;}
.y1d{bottom:536.960000pt;}
.y61{bottom:544.000000pt;}
.y82{bottom:545.920000pt;}
.yb9{bottom:546.880000pt;}
.y44{bottom:552.000000pt;}
.y9f{bottom:557.280000pt;}
.y1c{bottom:558.080000pt;}
.ycf{bottom:560.000000pt;}
.yda{bottom:565.280000pt;}
.y81{bottom:567.040000pt;}
.yb8{bottom:568.000000pt;}
.y60{bottom:573.280000pt;}
.yec{bottom:578.240000pt;}
.y9e{bottom:578.400000pt;}
.y1b{bottom:579.200000pt;}
.y43{bottom:581.280000pt;}
.yd9{bottom:586.400000pt;}
.y80{bottom:588.160000pt;}
.yb7{bottom:589.280000pt;}
.y5f{bottom:594.400000pt;}
.y9d{bottom:599.520000pt;}
.y1a{bottom:600.480000pt;}
.y42{bottom:602.400000pt;}
.y7f{bottom:609.280000pt;}
.yb6{bottom:610.400000pt;}
.y5e{bottom:615.520000pt;}
.y9c{bottom:620.640000pt;}
.y19{bottom:621.600000pt;}
.y41{bottom:623.520000pt;}
.y7e{bottom:630.560000pt;}
.yb5{bottom:631.520000pt;}
.yeb{bottom:632.320000pt;}
.y5d{bottom:636.640000pt;}
.y18{bottom:642.720000pt;}
.y40{bottom:644.640000pt;}
.y9b{bottom:649.920000pt;}
.y7d{bottom:651.680000pt;}
.yb4{bottom:652.640000pt;}
.y5c{bottom:657.920000pt;}
.yea{bottom:663.200000pt;}
.y3f{bottom:665.920000pt;}
.y9a{bottom:671.040000pt;}
.y7c{bottom:672.800000pt;}
.y17{bottom:672.960000pt;}
.yb3{bottom:673.920000pt;}
.y5b{bottom:679.040000pt;}
.ye9{bottom:686.240000pt;}
.y3e{bottom:687.040000pt;}
.y99{bottom:692.160000pt;}
.y7b{bottom:693.920000pt;}
.yb2{bottom:695.040000pt;}
.y5a{bottom:700.160000pt;}
.y16{bottom:702.400000pt;}
.y3d{bottom:708.160000pt;}
.y7a{bottom:715.040000pt;}
.ye8{bottom:715.360000pt;}
.yb1{bottom:716.160000pt;}
.y59{bottom:721.280000pt;}
.y3c{bottom:729.280000pt;}
.y15{bottom:731.520000pt;}
.ye7{bottom:736.480000pt;}
.yb0{bottom:737.280000pt;}
.y58{bottom:742.560000pt;}
.y14{bottom:749.920000pt;}
.y3b{bottom:750.560000pt;}
.yaf{bottom:758.560000pt;}
.y98{bottom:763.680000pt;}
.ye6{bottom:767.520000pt;}
.y3a{bottom:771.680000pt;}
.y13{bottom:779.040000pt;}
.yae{bottom:779.680000pt;}
.y97{bottom:784.800000pt;}
.ye5{bottom:790.560000pt;}
.y39{bottom:792.800000pt;}
.y12{bottom:800.160000pt;}
.y79{bottom:800.800000pt;}
.y96{bottom:805.920000pt;}
.y38{bottom:813.920000pt;}
.y11{bottom:820.314560pt;}
.ye4{bottom:821.600000pt;}
.y78{bottom:821.920000pt;}
.y37{bottom:835.200000pt;}
.y10{bottom:838.880000pt;}
.y77{bottom:843.200000pt;}
.ye3{bottom:844.480000pt;}
.y36{bottom:856.320000pt;}
.yf{bottom:858.560000pt;}
.y76{bottom:864.320000pt;}
.ye2{bottom:873.760000pt;}
.y35{bottom:877.440000pt;}
.y75{bottom:885.440000pt;}
.ye1{bottom:894.880000pt;}
.ye{bottom:896.643840pt;}
.y34{bottom:898.560000pt;}
.y74{bottom:906.560000pt;}
.yd{bottom:917.760000pt;}
.y33{bottom:919.680000pt;}
.ye0{bottom:925.920000pt;}
.y73{bottom:927.680000pt;}
.y32{bottom:940.960000pt;}
.y72{bottom:948.960000pt;}
.ydf{bottom:956.800000pt;}
.y31{bottom:962.080000pt;}
.yc{bottom:963.027840pt;}
.y57{bottom:970.080000pt;}
.yde{bottom:979.840000pt;}
.y30{bottom:983.200000pt;}
.yb{bottom:985.753920pt;}
.y56{bottom:991.200000pt;}
.ydd{bottom:1007.200000pt;}
.ya{bottom:1008.480000pt;}
.y2f{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.he{height:24.013125pt;}
.h5{height:29.118667pt;}
.h3{height:34.453125pt;}
.hf{height:36.909063pt;}
.h10{height:36.948743pt;}
.ha{height:43.250000pt;}
.h9{height:43.471250pt;}
.h4{height:44.468750pt;}
.hb{height:45.937500pt;}
.h8{height:52.375000pt;}
.hd{height:54.114063pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.hc{height:61.969687pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440000pt;}
.x1{left:135.200000pt;}
.x9{left:138.560000pt;}
.xa{left:167.037440pt;}
.x7{left:260.323360pt;}
.x4{left:264.160000pt;}
.x6{left:288.160000pt;}
.x10{left:305.440000pt;}
.x8{left:362.253760pt;}
.xc{left:388.640000pt;}
.x5{left:414.880000pt;}
.xe{left:443.680000pt;}
.x2{left:473.440000pt;}
.xb{left:480.960000pt;}
.xf{left:494.240000pt;}
.xd{left:736.961120pt;}
}




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