
    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_65619175635cd4a0601199d7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e62d2248ebe7d295fc2b6d7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_05dd842d5f6dbd267de9397b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_16d103eb4a588e99d616c138.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_440b85676373ba0d5832ef90.woff')format("woff");}.ff5{font-family:ff5;line-height:1.028000;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_0698429877d74150efe3593b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_b5e6a1ce1ee71e465ed16c16.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_dbc0e32fc0eadde4e584dd58.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050781;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_91ba24f0bce1ddf84ff8a749.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666992;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_9bf524325ff8d6709330777c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls22{letter-spacing:-7.200000px;}
.ls25{letter-spacing:-1.224000px;}
.ls26{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.403200px;}
.ls16{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.100800px;}
.lsb{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.936000px;}
.ls9{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.224000px;}
.ls24{letter-spacing:2.371200px;}
.ls1{letter-spacing:2.850000px;}
.ls3{letter-spacing:4.560000px;}
.ls29{letter-spacing:4.752000px;}
.ls27{letter-spacing:5.090400px;}
.ls2a{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws56{word-spacing:-45.864000px;}
.ws2{word-spacing:-25.320000px;}
.ws7b{word-spacing:-20.952000px;}
.ws49{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws55{word-spacing:-18.432000px;}
.ws71{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.784000px;}
.ws54{word-spacing:-17.496000px;}
.ws70{word-spacing:-16.632000px;}
.ws10{word-spacing:-14.263200px;}
.ws12{word-spacing:-14.162400px;}
.ws11{word-spacing:-13.759200px;}
.ws87{word-spacing:-13.488000px;}
.wsf{word-spacing:-12.448800px;}
.ws80{word-spacing:-11.856000px;}
.wse{word-spacing:-8.496000px;}
.ws52{word-spacing:-8.460000px;}
.ws89{word-spacing:-8.100000px;}
.ws86{word-spacing:-4.752000px;}
.wsb{word-spacing:-4.560000px;}
.ws65{word-spacing:-1.152000px;}
.ws24{word-spacing:-1.008000px;}
.ws58{word-spacing:-0.936000px;}
.ws5d{word-spacing:-0.792000px;}
.ws5e{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.648000px;}
.ws64{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.288000px;}
.ws79{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.144000px;}
.ws19{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws2a{word-spacing:0.072000px;}
.ws2e{word-spacing:0.144000px;}
.ws61{word-spacing:0.216000px;}
.ws5f{word-spacing:0.288000px;}
.ws47{word-spacing:0.360000px;}
.ws26{word-spacing:0.504000px;}
.ws1d{word-spacing:0.576000px;}
.ws4d{word-spacing:0.792000px;}
.ws4e{word-spacing:0.864000px;}
.ws7e{word-spacing:0.936000px;}
.ws25{word-spacing:1.008000px;}
.ws33{word-spacing:1.080000px;}
.ws36{word-spacing:1.152000px;}
.ws32{word-spacing:1.224000px;}
.ws1e{word-spacing:1.296000px;}
.ws42{word-spacing:1.368000px;}
.ws63{word-spacing:1.440000px;}
.ws5a{word-spacing:1.512000px;}
.ws69{word-spacing:1.584000px;}
.ws44{word-spacing:1.656000px;}
.ws75{word-spacing:1.728000px;}
.ws8{word-spacing:1.800000px;}
.wsc{word-spacing:1.860000px;}
.ws78{word-spacing:1.872000px;}
.ws85{word-spacing:1.944000px;}
.ws38{word-spacing:2.016000px;}
.ws6b{word-spacing:2.304000px;}
.ws57{word-spacing:2.376000px;}
.ws6e{word-spacing:2.400000px;}
.ws6c{word-spacing:2.520000px;}
.wsd{word-spacing:2.592000px;}
.ws53{word-spacing:2.664000px;}
.ws76{word-spacing:2.808000px;}
.ws3a{word-spacing:2.880000px;}
.ws88{word-spacing:2.976000px;}
.ws31{word-spacing:3.024000px;}
.ws72{word-spacing:3.168000px;}
.ws34{word-spacing:3.360000px;}
.ws2f{word-spacing:3.384000px;}
.ws30{word-spacing:3.456000px;}
.ws3c{word-spacing:3.528000px;}
.ws73{word-spacing:3.672000px;}
.ws5{word-spacing:3.720000px;}
.ws59{word-spacing:3.744000px;}
.ws50{word-spacing:3.816000px;}
.ws66{word-spacing:3.888000px;}
.ws46{word-spacing:3.960000px;}
.ws82{word-spacing:4.032000px;}
.ws3{word-spacing:4.200000px;}
.ws62{word-spacing:4.320000px;}
.ws9{word-spacing:4.464000px;}
.ws51{word-spacing:4.608000px;}
.ws77{word-spacing:4.680000px;}
.ws4c{word-spacing:4.752000px;}
.ws20{word-spacing:4.824000px;}
.ws7d{word-spacing:4.968000px;}
.ws2d{word-spacing:5.040000px;}
.ws4f{word-spacing:5.184000px;}
.ws83{word-spacing:5.400000px;}
.ws81{word-spacing:5.472000px;}
.ws3d{word-spacing:5.688000px;}
.ws41{word-spacing:5.760000px;}
.ws14{word-spacing:5.832000px;}
.ws18{word-spacing:5.904000px;}
.ws16{word-spacing:6.048000px;}
.ws67{word-spacing:6.120000px;}
.ws5c{word-spacing:6.192000px;}
.ws6a{word-spacing:6.264000px;}
.ws2c{word-spacing:6.408000px;}
.ws6f{word-spacing:6.480000px;}
.ws3f{word-spacing:6.552000px;}
.ws2b{word-spacing:6.624000px;}
.ws15{word-spacing:6.696000px;}
.ws21{word-spacing:6.768000px;}
.ws4b{word-spacing:6.984000px;}
.ws7a{word-spacing:7.056000px;}
.ws45{word-spacing:7.272000px;}
.ws68{word-spacing:7.344000px;}
.ws43{word-spacing:7.416000px;}
.ws48{word-spacing:7.488000px;}
.ws3e{word-spacing:7.776000px;}
.ws74{word-spacing:7.992000px;}
.ws5b{word-spacing:8.136000px;}
.ws40{word-spacing:8.208000px;}
.ws60{word-spacing:8.280000px;}
.ws27{word-spacing:8.352000px;}
.ws7{word-spacing:8.400000px;}
.ws6d{word-spacing:8.424000px;}
.ws3b{word-spacing:8.568000px;}
.ws4a{word-spacing:8.856000px;}
.ws1b{word-spacing:8.928000px;}
.ws13{word-spacing:9.072000px;}
.ws7f{word-spacing:9.216000px;}
.ws84{word-spacing:9.504000px;}
.ws39{word-spacing:9.720000px;}
.ws22{word-spacing:9.864000px;}
.ws7c{word-spacing:9.936000px;}
.ws37{word-spacing:10.008000px;}
.ws1f{word-spacing:10.080000px;}
.ws28{word-spacing:10.152000px;}
.ws1c{word-spacing:10.224000px;}
.ws23{word-spacing:10.728000px;}
.ws4{word-spacing:16.620000px;}
.ws6{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
._e{margin-left:-948.820800px;}
._4{margin-left:-69.234000px;}
._14{margin-left:-68.208000px;}
._6{margin-left:-14.520000px;}
._7{margin-left:-11.928000px;}
._16{margin-left:-9.144000px;}
._f{margin-left:-7.389000px;}
._3{margin-left:-5.964000px;}
._12{margin-left:-4.527600px;}
._2{margin-left:-3.474000px;}
._b{margin-left:-2.268000px;}
._0{margin-left:-1.242000px;}
._1{width:1.596000px;}
._9{width:2.706000px;}
._8{width:3.756000px;}
._a{width:5.130000px;}
._c{width:6.283200px;}
._d{width:7.704000px;}
._11{width:8.907600px;}
._10{width:10.908000px;}
._15{width:12.630000px;}
._5{width:23.280000px;}
._13{width:31.645500px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6b{bottom:117.000000px;}
.y8f{bottom:117.150000px;}
.yd6{bottom:118.920000px;}
.y182{bottom:119.586600px;}
.y24{bottom:119.652750px;}
.yb3{bottom:120.600000px;}
.y17d{bottom:120.984000px;}
.y1d5{bottom:121.136250px;}
.y47{bottom:121.207500px;}
.y1aa{bottom:121.324050px;}
.y116{bottom:122.122050px;}
.y139{bottom:122.340000px;}
.y6a{bottom:132.000000px;}
.y1a9{bottom:135.124050px;}
.y23{bottom:138.552750px;}
.y46{bottom:139.500000px;}
.y8e{bottom:139.650000px;}
.y1d4{bottom:139.736250px;}
.y181{bottom:142.086600px;}
.yd5{bottom:142.626000px;}
.yb2{bottom:143.406000px;}
.y17c{bottom:143.484000px;}
.y115{bottom:145.666050px;}
.y138{bottom:145.884000px;}
.y15b{bottom:147.000000px;}
.ye6{bottom:147.630150px;}
.y1a8{bottom:148.924050px;}
.y69{bottom:151.207500px;}
.y45{bottom:154.500000px;}
.y1d3{bottom:158.336250px;}
.y15a{bottom:162.000000px;}
.y8d{bottom:162.150000px;}
.y1a7{bottom:162.724050px;}
.y107{bottom:163.882050px;}
.y180{bottom:164.586600px;}
.y22{bottom:165.955650px;}
.y17b{bottom:165.984000px;}
.yb1{bottom:166.212000px;}
.yd4{bottom:166.332000px;}
.y114{bottom:169.210050px;}
.y137{bottom:169.428000px;}
.ye5{bottom:170.724150px;}
.y44{bottom:173.707500px;}
.y1a6{bottom:176.524050px;}
.y1d2{bottom:176.936250px;}
.y159{bottom:181.207500px;}
.y8c{bottom:184.650000px;}
.y21{bottom:184.855650px;}
.y17f{bottom:187.086600px;}
.y106{bottom:187.426050px;}
.y17a{bottom:188.484000px;}
.yb0{bottom:189.018000px;}
.yd3{bottom:190.038000px;}
.y1a5{bottom:190.324050px;}
.y68{bottom:192.300000px;}
.y113{bottom:192.754050px;}
.y136{bottom:192.972000px;}
.ye4{bottom:193.818150px;}
.y43{bottom:196.207500px;}
.y20{bottom:203.755650px;}
.y1a4{bottom:204.124050px;}
.y1d1{bottom:206.636250px;}
.y8b{bottom:207.150000px;}
.y17e{bottom:209.586600px;}
.y105{bottom:210.970050px;}
.yaf{bottom:211.824000px;}
.yd2{bottom:213.744000px;}
.y67{bottom:215.250000px;}
.y112{bottom:216.298050px;}
.y135{bottom:216.516000px;}
.ye3{bottom:216.912150px;}
.y1a3{bottom:217.924050px;}
.y179{bottom:219.480000px;}
.y158{bottom:220.920000px;}
.y1f{bottom:222.655650px;}
.y104{bottom:234.514050px;}
.yd1{bottom:237.450000px;}
.y42{bottom:237.750000px;}
.y1a2{bottom:238.096050px;}
.y66{bottom:238.200000px;}
.y111{bottom:239.842050px;}
.ye2{bottom:240.006150px;}
.y134{bottom:240.060000px;}
.y1e{bottom:241.555650px;}
.y178{bottom:241.980000px;}
.yae{bottom:243.126000px;}
.y157{bottom:243.564000px;}
.y1d0{bottom:247.586250px;}
.y8a{bottom:252.150000px;}
.y103{bottom:258.058050px;}
.y1d{bottom:260.455650px;}
.y41{bottom:260.700000px;}
.y65{bottom:261.150000px;}
.yd0{bottom:261.156000px;}
.ye1{bottom:263.100150px;}
.y110{bottom:263.386050px;}
.y133{bottom:263.604000px;}
.y177{bottom:264.480000px;}
.yad{bottom:265.932000px;}
.y1cf{bottom:266.186250px;}
.y156{bottom:266.208000px;}
.y89{bottom:274.650000px;}
.y1c{bottom:279.355650px;}
.y1a1{bottom:280.866000px;}
.y102{bottom:281.602050px;}
.y40{bottom:283.650000px;}
.y64{bottom:284.100000px;}
.y1ce{bottom:284.786250px;}
.ycf{bottom:284.862000px;}
.y10f{bottom:286.930050px;}
.y176{bottom:286.980000px;}
.y132{bottom:287.148000px;}
.yac{bottom:288.738000px;}
.y155{bottom:288.852000px;}
.ye0{bottom:294.708150px;}
.y88{bottom:297.150000px;}
.y1b{bottom:298.255650px;}
.y1a0{bottom:302.160000px;}
.y1cd{bottom:303.386250px;}
.y101{bottom:305.286000px;}
.y3f{bottom:306.600000px;}
.y63{bottom:307.050000px;}
.yce{bottom:308.568000px;}
.y175{bottom:309.480000px;}
.y10e{bottom:310.474050px;}
.y131{bottom:310.692000px;}
.y154{bottom:311.496000px;}
.yab{bottom:311.544000px;}
.y1a{bottom:317.155650px;}
.ydf{bottom:317.802150px;}
.y87{bottom:319.650000px;}
.y1cc{bottom:321.986250px;}
.y19f{bottom:323.454000px;}
.y100{bottom:328.830000px;}
.y3e{bottom:329.550000px;}
.y62{bottom:330.000000px;}
.y174{bottom:331.980000px;}
.ycd{bottom:332.274000px;}
.y10d{bottom:334.018050px;}
.y153{bottom:334.140000px;}
.y130{bottom:334.236000px;}
.yaa{bottom:334.350000px;}
.y19{bottom:336.055650px;}
.y1cb{bottom:340.586250px;}
.yde{bottom:340.896150px;}
.y86{bottom:342.150000px;}
.y19e{bottom:344.748000px;}
.yff{bottom:352.374000px;}
.y3d{bottom:352.500000px;}
.y61{bottom:352.950000px;}
.y173{bottom:354.480000px;}
.y18{bottom:354.955650px;}
.ycc{bottom:355.980000px;}
.y152{bottom:356.784000px;}
.ya9{bottom:357.156000px;}
.y10c{bottom:357.568050px;}
.y12f{bottom:357.780000px;}
.y1ca{bottom:359.186250px;}
.ydd{bottom:363.990150px;}
.y85{bottom:364.650000px;}
.y19d{bottom:366.042000px;}
.y3c{bottom:375.450000px;}
.y60{bottom:375.900000px;}
.yfe{bottom:375.918000px;}
.y172{bottom:376.980000px;}
.y1c9{bottom:377.786250px;}
.y151{bottom:379.428000px;}
.ycb{bottom:379.686000px;}
.ya8{bottom:379.962000px;}
.y12e{bottom:381.324000px;}
.y17{bottom:382.360650px;}
.ydc{bottom:387.084150px;}
.y84{bottom:387.150000px;}
.y19c{bottom:387.336000px;}
.y1c8{bottom:396.386250px;}
.y3b{bottom:398.400000px;}
.y5f{bottom:398.850000px;}
.yfd{bottom:399.462000px;}
.y171{bottom:399.480000px;}
.y150{bottom:402.072000px;}
.ya7{bottom:402.768000px;}
.yca{bottom:403.392000px;}
.y12d{bottom:404.868000px;}
.y19b{bottom:408.630000px;}
.y83{bottom:409.650000px;}
.ydb{bottom:410.178150px;}
.y1c7{bottom:414.986250px;}
.y3a{bottom:421.350000px;}
.y5e{bottom:421.800000px;}
.y170{bottom:421.980000px;}
.yfc{bottom:423.006000px;}
.y14f{bottom:424.716000px;}
.ya6{bottom:425.574000px;}
.yc9{bottom:427.098000px;}
.y16{bottom:427.660650px;}
.y12c{bottom:428.412000px;}
.y19a{bottom:429.924000px;}
.y82{bottom:432.150000px;}
.yda{bottom:433.272150px;}
.y1c6{bottom:433.586250px;}
.y39{bottom:444.300000px;}
.y16f{bottom:444.480000px;}
.y5d{bottom:444.750000px;}
.yfb{bottom:446.550000px;}
.y15{bottom:446.560650px;}
.y14e{bottom:447.360000px;}
.ya5{bottom:448.380000px;}
.yc8{bottom:450.804000px;}
.y199{bottom:451.218000px;}
.y12b{bottom:451.956000px;}
.y1c5{bottom:452.186250px;}
.y81{bottom:454.650000px;}
.yd9{bottom:456.366150px;}
.y16e{bottom:466.980000px;}
.y38{bottom:467.250000px;}
.y5c{bottom:467.700000px;}
.y14d{bottom:470.004000px;}
.yfa{bottom:470.094000px;}
.y1c4{bottom:470.786250px;}
.ya4{bottom:471.186000px;}
.y198{bottom:472.512000px;}
.y14{bottom:473.963550px;}
.yc7{bottom:474.510000px;}
.y12a{bottom:475.500000px;}
.y80{bottom:477.150000px;}
.y1c3{bottom:489.386250px;}
.y16d{bottom:489.480000px;}
.y37{bottom:490.200000px;}
.y5b{bottom:490.650000px;}
.y14c{bottom:492.648000px;}
.y13{bottom:493.013550px;}
.yf9{bottom:493.638000px;}
.ya3{bottom:493.992000px;}
.yc6{bottom:498.216000px;}
.y129{bottom:499.044000px;}
.y7f{bottom:499.650000px;}
.y197{bottom:502.320000px;}
.y1c2{bottom:507.986250px;}
.y16c{bottom:511.980000px;}
.y12{bottom:512.063550px;}
.y36{bottom:513.150000px;}
.y5a{bottom:513.600000px;}
.y14b{bottom:515.292000px;}
.ya2{bottom:516.798000px;}
.yf8{bottom:517.182000px;}
.yc5{bottom:521.922000px;}
.y7e{bottom:522.150000px;}
.y128{bottom:522.588000px;}
.y196{bottom:523.614000px;}
.y1c1{bottom:526.586250px;}
.y11{bottom:531.113550px;}
.y16b{bottom:534.480000px;}
.y35{bottom:536.100000px;}
.y59{bottom:536.550000px;}
.y14a{bottom:537.936000px;}
.ya1{bottom:539.604000px;}
.yf7{bottom:540.726000px;}
.y7d{bottom:544.650000px;}
.y195{bottom:544.908000px;}
.y1c0{bottom:545.186250px;}
.yc4{bottom:545.628000px;}
.y127{bottom:546.132000px;}
.y10{bottom:550.163550px;}
.y16a{bottom:556.980000px;}
.y34{bottom:559.050000px;}
.y58{bottom:559.500000px;}
.y149{bottom:560.580000px;}
.ya0{bottom:562.410000px;}
.y1bf{bottom:563.786250px;}
.yf6{bottom:564.270000px;}
.y194{bottom:566.202000px;}
.y7c{bottom:567.150000px;}
.yf{bottom:569.213550px;}
.yc3{bottom:569.334000px;}
.y126{bottom:569.676000px;}
.y169{bottom:579.480000px;}
.y33{bottom:582.000000px;}
.y1be{bottom:582.386250px;}
.y57{bottom:582.450000px;}
.y148{bottom:583.224000px;}
.y9f{bottom:585.216000px;}
.y193{bottom:587.496000px;}
.yf5{bottom:587.814000px;}
.ye{bottom:588.263550px;}
.y7b{bottom:589.650000px;}
.yc2{bottom:593.040000px;}
.y125{bottom:593.220000px;}
.y1bd{bottom:600.986250px;}
.y168{bottom:601.980000px;}
.y32{bottom:604.950000px;}
.y56{bottom:605.400000px;}
.y147{bottom:605.868000px;}
.yd{bottom:607.313550px;}
.y9e{bottom:608.022000px;}
.y192{bottom:608.790000px;}
.y7a{bottom:612.150000px;}
.yc1{bottom:616.746000px;}
.y124{bottom:616.764000px;}
.yf4{bottom:619.872000px;}
.y167{bottom:624.480000px;}
.yc{bottom:626.363550px;}
.y31{bottom:627.900000px;}
.y55{bottom:628.350000px;}
.y146{bottom:628.512000px;}
.y191{bottom:630.084000px;}
.y9d{bottom:630.828000px;}
.y1bc{bottom:632.342100px;}
.y79{bottom:634.650000px;}
.y123{bottom:640.308000px;}
.yc0{bottom:640.452000px;}
.yf3{bottom:643.416000px;}
.yb{bottom:645.413550px;}
.y166{bottom:646.980000px;}
.y30{bottom:650.850000px;}
.y145{bottom:651.156000px;}
.y54{bottom:651.300000px;}
.y190{bottom:651.378000px;}
.y9c{bottom:653.634000px;}
.y78{bottom:657.150000px;}
.y1bb{bottom:663.018000px;}
.ybf{bottom:664.158000px;}
.ya{bottom:664.463550px;}
.yf2{bottom:666.960000px;}
.y165{bottom:669.480000px;}
.y122{bottom:672.366000px;}
.y18f{bottom:672.672000px;}
.y2f{bottom:673.800000px;}
.y144{bottom:673.818000px;}
.y53{bottom:674.250000px;}
.y9b{bottom:676.440000px;}
.y77{bottom:679.650000px;}
.y9{bottom:683.513550px;}
.ybe{bottom:687.864000px;}
.yf1{bottom:690.504000px;}
.y18e{bottom:693.966000px;}
.y121{bottom:695.910000px;}
.y143{bottom:696.462000px;}
.y2e{bottom:696.750000px;}
.y52{bottom:697.200000px;}
.y9a{bottom:699.246000px;}
.y164{bottom:700.476000px;}
.y76{bottom:702.150000px;}
.y8{bottom:711.068550px;}
.ybd{bottom:711.570000px;}
.y1ba{bottom:711.966000px;}
.yf0{bottom:714.048000px;}
.y18d{bottom:715.260000px;}
.y142{bottom:719.106000px;}
.y120{bottom:719.454000px;}
.y2d{bottom:719.700000px;}
.y51{bottom:720.150000px;}
.y99{bottom:722.052000px;}
.y163{bottom:722.976000px;}
.y75{bottom:724.650000px;}
.y1b9{bottom:726.810000px;}
.ybc{bottom:735.276000px;}
.y18c{bottom:736.554000px;}
.yef{bottom:737.592000px;}
.y1b8{bottom:741.654000px;}
.y141{bottom:741.750000px;}
.y2c{bottom:742.650000px;}
.y11f{bottom:742.998000px;}
.y50{bottom:743.100000px;}
.y98{bottom:744.858000px;}
.y162{bottom:745.476000px;}
.y74{bottom:747.150000px;}
.y1b7{bottom:756.498000px;}
.y7{bottom:757.254300px;}
.y18b{bottom:757.848000px;}
.ybb{bottom:758.982000px;}
.yee{bottom:761.136000px;}
.y140{bottom:764.394000px;}
.y2b{bottom:765.600000px;}
.y4f{bottom:766.050000px;}
.y11e{bottom:766.542000px;}
.y97{bottom:767.664000px;}
.y161{bottom:767.976000px;}
.y73{bottom:769.650000px;}
.y1b6{bottom:771.342000px;}
.y18a{bottom:779.142000px;}
.y6{bottom:780.054300px;}
.yba{bottom:782.688000px;}
.yed{bottom:784.680000px;}
.y1b5{bottom:786.186000px;}
.y13f{bottom:787.038000px;}
.y2a{bottom:788.550000px;}
.y4e{bottom:789.000000px;}
.y11d{bottom:790.086000px;}
.y96{bottom:790.470000px;}
.y160{bottom:790.476000px;}
.y72{bottom:792.150000px;}
.y189{bottom:800.436000px;}
.y1b4{bottom:801.030000px;}
.yb9{bottom:806.394000px;}
.yec{bottom:808.224000px;}
.y13e{bottom:809.682000px;}
.y29{bottom:811.500000px;}
.y4d{bottom:811.950000px;}
.y15f{bottom:812.976000px;}
.y95{bottom:813.276000px;}
.y11c{bottom:813.630000px;}
.y71{bottom:814.650000px;}
.y1b3{bottom:815.886000px;}
.y188{bottom:821.730000px;}
.yb8{bottom:830.100000px;}
.y1b2{bottom:830.730000px;}
.yeb{bottom:831.768000px;}
.y13d{bottom:833.226000px;}
.y28{bottom:834.450000px;}
.y4c{bottom:834.900000px;}
.y15e{bottom:835.476000px;}
.y94{bottom:836.082000px;}
.y11b{bottom:836.274000px;}
.y70{bottom:837.150000px;}
.y10b{bottom:837.450000px;}
.y187{bottom:843.024000px;}
.y1b1{bottom:845.574000px;}
.y5{bottom:847.500000px;}
.yb7{bottom:853.806000px;}
.yea{bottom:855.312000px;}
.y13c{bottom:856.482000px;}
.y27{bottom:857.400000px;}
.y4b{bottom:857.850000px;}
.y15d{bottom:858.282000px;}
.yd8{bottom:858.600000px;}
.y93{bottom:858.888000px;}
.y11a{bottom:858.918000px;}
.y6f{bottom:859.650000px;}
.y1b0{bottom:860.418000px;}
.y186{bottom:864.318000px;}
.y1af{bottom:875.262000px;}
.y4{bottom:877.500000px;}
.yb6{bottom:877.512000px;}
.ye9{bottom:878.856000px;}
.y13b{bottom:879.738000px;}
.y26{bottom:880.350000px;}
.y4a{bottom:880.800000px;}
.y15c{bottom:881.088000px;}
.y119{bottom:881.562000px;}
.y92{bottom:881.694000px;}
.y6e{bottom:882.150000px;}
.y10a{bottom:882.162000px;}
.y185{bottom:885.612000px;}
.y1ae{bottom:890.118000px;}
.yb5{bottom:901.506000px;}
.ye8{bottom:902.400000px;}
.y13a{bottom:902.994000px;}
.y25{bottom:903.300000px;}
.y49{bottom:903.750000px;}
.yd7{bottom:903.894000px;}
.y118{bottom:904.206000px;}
.y109{bottom:904.356000px;}
.y91{bottom:904.500000px;}
.y6d{bottom:904.650000px;}
.y1ad{bottom:904.962000px;}
.y184{bottom:906.906000px;}
.y1ac{bottom:919.806000px;}
.yb4{bottom:925.500000px;}
.ye7{bottom:925.950000px;}
.y3{bottom:926.250000px;}
.y108{bottom:926.550000px;}
.y48{bottom:926.700000px;}
.y117{bottom:926.850000px;}
.y90{bottom:927.000000px;}
.y6c{bottom:927.150000px;}
.y183{bottom:928.200000px;}
.y1ab{bottom:934.650000px;}
.ha{height:29.197998px;}
.hd{height:30.313623px;}
.h14{height:31.992188px;}
.h12{height:39.072000px;}
.hb{height:39.257812px;}
.h13{height:40.757812px;}
.h4{height:42.000000px;}
.h15{height:44.165039px;}
.h2{height:46.618652px;}
.h5{height:47.988281px;}
.hf{height:48.023438px;}
.he{height:48.840000px;}
.h1{height:49.072266px;}
.h6{height:50.947266px;}
.h7{height:58.886719px;}
.h8{height:61.136719px;}
.h10{height:64.420903px;}
.h9{height:64.980703px;}
.h11{height:66.483703px;}
.hc{height:66.555703px;}
.h3{height:98.144531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x7{left:82.381500px;}
.x3{left:97.263750px;}
.x9{left:99.391950px;}
.x5{left:112.500000px;}
.xb{left:114.271650px;}
.xc{left:116.392050px;}
.x6{left:127.381950px;}
.xd{left:131.278050px;}
.x2{left:135.000000px;}
.x8{left:144.396000px;}
.xa{left:159.277950px;}
.xe{left:161.397600px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls22{letter-spacing:-6.400000pt;}
.ls25{letter-spacing:-1.088000pt;}
.ls26{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.358400pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.089600pt;}
.lsb{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.896000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.088000pt;}
.ls24{letter-spacing:2.107733pt;}
.ls1{letter-spacing:2.533333pt;}
.ls3{letter-spacing:4.053333pt;}
.ls29{letter-spacing:4.224000pt;}
.ls27{letter-spacing:4.524800pt;}
.ls2a{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.546667pt;}
.ws56{word-spacing:-40.768000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws7b{word-spacing:-18.624000pt;}
.ws49{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws55{word-spacing:-16.384000pt;}
.ws71{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.808000pt;}
.ws54{word-spacing:-15.552000pt;}
.ws70{word-spacing:-14.784000pt;}
.ws10{word-spacing:-12.678400pt;}
.ws12{word-spacing:-12.588800pt;}
.ws11{word-spacing:-12.230400pt;}
.ws87{word-spacing:-11.989333pt;}
.wsf{word-spacing:-11.065600pt;}
.ws80{word-spacing:-10.538667pt;}
.wse{word-spacing:-7.552000pt;}
.ws52{word-spacing:-7.520000pt;}
.ws89{word-spacing:-7.200000pt;}
.ws86{word-spacing:-4.224000pt;}
.wsb{word-spacing:-4.053333pt;}
.ws65{word-spacing:-1.024000pt;}
.ws24{word-spacing:-0.896000pt;}
.ws58{word-spacing:-0.832000pt;}
.ws5d{word-spacing:-0.704000pt;}
.ws5e{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.576000pt;}
.ws64{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.256000pt;}
.ws79{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws19{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.064000pt;}
.ws2e{word-spacing:0.128000pt;}
.ws61{word-spacing:0.192000pt;}
.ws5f{word-spacing:0.256000pt;}
.ws47{word-spacing:0.320000pt;}
.ws26{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.512000pt;}
.ws4d{word-spacing:0.704000pt;}
.ws4e{word-spacing:0.768000pt;}
.ws7e{word-spacing:0.832000pt;}
.ws25{word-spacing:0.896000pt;}
.ws33{word-spacing:0.960000pt;}
.ws36{word-spacing:1.024000pt;}
.ws32{word-spacing:1.088000pt;}
.ws1e{word-spacing:1.152000pt;}
.ws42{word-spacing:1.216000pt;}
.ws63{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.344000pt;}
.ws69{word-spacing:1.408000pt;}
.ws44{word-spacing:1.472000pt;}
.ws75{word-spacing:1.536000pt;}
.ws8{word-spacing:1.600000pt;}
.wsc{word-spacing:1.653333pt;}
.ws78{word-spacing:1.664000pt;}
.ws85{word-spacing:1.728000pt;}
.ws38{word-spacing:1.792000pt;}
.ws6b{word-spacing:2.048000pt;}
.ws57{word-spacing:2.112000pt;}
.ws6e{word-spacing:2.133333pt;}
.ws6c{word-spacing:2.240000pt;}
.wsd{word-spacing:2.304000pt;}
.ws53{word-spacing:2.368000pt;}
.ws76{word-spacing:2.496000pt;}
.ws3a{word-spacing:2.560000pt;}
.ws88{word-spacing:2.645333pt;}
.ws31{word-spacing:2.688000pt;}
.ws72{word-spacing:2.816000pt;}
.ws34{word-spacing:2.986667pt;}
.ws2f{word-spacing:3.008000pt;}
.ws30{word-spacing:3.072000pt;}
.ws3c{word-spacing:3.136000pt;}
.ws73{word-spacing:3.264000pt;}
.ws5{word-spacing:3.306667pt;}
.ws59{word-spacing:3.328000pt;}
.ws50{word-spacing:3.392000pt;}
.ws66{word-spacing:3.456000pt;}
.ws46{word-spacing:3.520000pt;}
.ws82{word-spacing:3.584000pt;}
.ws3{word-spacing:3.733333pt;}
.ws62{word-spacing:3.840000pt;}
.ws9{word-spacing:3.968000pt;}
.ws51{word-spacing:4.096000pt;}
.ws77{word-spacing:4.160000pt;}
.ws4c{word-spacing:4.224000pt;}
.ws20{word-spacing:4.288000pt;}
.ws7d{word-spacing:4.416000pt;}
.ws2d{word-spacing:4.480000pt;}
.ws4f{word-spacing:4.608000pt;}
.ws83{word-spacing:4.800000pt;}
.ws81{word-spacing:4.864000pt;}
.ws3d{word-spacing:5.056000pt;}
.ws41{word-spacing:5.120000pt;}
.ws14{word-spacing:5.184000pt;}
.ws18{word-spacing:5.248000pt;}
.ws16{word-spacing:5.376000pt;}
.ws67{word-spacing:5.440000pt;}
.ws5c{word-spacing:5.504000pt;}
.ws6a{word-spacing:5.568000pt;}
.ws2c{word-spacing:5.696000pt;}
.ws6f{word-spacing:5.760000pt;}
.ws3f{word-spacing:5.824000pt;}
.ws2b{word-spacing:5.888000pt;}
.ws15{word-spacing:5.952000pt;}
.ws21{word-spacing:6.016000pt;}
.ws4b{word-spacing:6.208000pt;}
.ws7a{word-spacing:6.272000pt;}
.ws45{word-spacing:6.464000pt;}
.ws68{word-spacing:6.528000pt;}
.ws43{word-spacing:6.592000pt;}
.ws48{word-spacing:6.656000pt;}
.ws3e{word-spacing:6.912000pt;}
.ws74{word-spacing:7.104000pt;}
.ws5b{word-spacing:7.232000pt;}
.ws40{word-spacing:7.296000pt;}
.ws60{word-spacing:7.360000pt;}
.ws27{word-spacing:7.424000pt;}
.ws7{word-spacing:7.466667pt;}
.ws6d{word-spacing:7.488000pt;}
.ws3b{word-spacing:7.616000pt;}
.ws4a{word-spacing:7.872000pt;}
.ws1b{word-spacing:7.936000pt;}
.ws13{word-spacing:8.064000pt;}
.ws7f{word-spacing:8.192000pt;}
.ws84{word-spacing:8.448000pt;}
.ws39{word-spacing:8.640000pt;}
.ws22{word-spacing:8.768000pt;}
.ws7c{word-spacing:8.832000pt;}
.ws37{word-spacing:8.896000pt;}
.ws1f{word-spacing:8.960000pt;}
.ws28{word-spacing:9.024000pt;}
.ws1c{word-spacing:9.088000pt;}
.ws23{word-spacing:9.536000pt;}
.ws4{word-spacing:14.773333pt;}
.ws6{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
._e{margin-left:-843.396267pt;}
._4{margin-left:-61.541333pt;}
._14{margin-left:-60.629333pt;}
._6{margin-left:-12.906667pt;}
._7{margin-left:-10.602667pt;}
._16{margin-left:-8.128000pt;}
._f{margin-left:-6.568000pt;}
._3{margin-left:-5.301333pt;}
._12{margin-left:-4.024533pt;}
._2{margin-left:-3.088000pt;}
._b{margin-left:-2.016000pt;}
._0{margin-left:-1.104000pt;}
._1{width:1.418667pt;}
._9{width:2.405333pt;}
._8{width:3.338667pt;}
._a{width:4.560000pt;}
._c{width:5.585067pt;}
._d{width:6.848000pt;}
._11{width:7.917867pt;}
._10{width:9.696000pt;}
._15{width:11.226667pt;}
._5{width:20.693333pt;}
._13{width:28.129333pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6b{bottom:104.000000pt;}
.y8f{bottom:104.133333pt;}
.yd6{bottom:105.706667pt;}
.y182{bottom:106.299200pt;}
.y24{bottom:106.358000pt;}
.yb3{bottom:107.200000pt;}
.y17d{bottom:107.541333pt;}
.y1d5{bottom:107.676667pt;}
.y47{bottom:107.740000pt;}
.y1aa{bottom:107.843600pt;}
.y116{bottom:108.552933pt;}
.y139{bottom:108.746667pt;}
.y6a{bottom:117.333333pt;}
.y1a9{bottom:120.110267pt;}
.y23{bottom:123.158000pt;}
.y46{bottom:124.000000pt;}
.y8e{bottom:124.133333pt;}
.y1d4{bottom:124.210000pt;}
.y181{bottom:126.299200pt;}
.yd5{bottom:126.778667pt;}
.yb2{bottom:127.472000pt;}
.y17c{bottom:127.541333pt;}
.y115{bottom:129.480933pt;}
.y138{bottom:129.674667pt;}
.y15b{bottom:130.666667pt;}
.ye6{bottom:131.226800pt;}
.y1a8{bottom:132.376933pt;}
.y69{bottom:134.406667pt;}
.y45{bottom:137.333333pt;}
.y1d3{bottom:140.743333pt;}
.y15a{bottom:144.000000pt;}
.y8d{bottom:144.133333pt;}
.y1a7{bottom:144.643600pt;}
.y107{bottom:145.672933pt;}
.y180{bottom:146.299200pt;}
.y22{bottom:147.516133pt;}
.y17b{bottom:147.541333pt;}
.yb1{bottom:147.744000pt;}
.yd4{bottom:147.850667pt;}
.y114{bottom:150.408933pt;}
.y137{bottom:150.602667pt;}
.ye5{bottom:151.754800pt;}
.y44{bottom:154.406667pt;}
.y1a6{bottom:156.910267pt;}
.y1d2{bottom:157.276667pt;}
.y159{bottom:161.073333pt;}
.y8c{bottom:164.133333pt;}
.y21{bottom:164.316133pt;}
.y17f{bottom:166.299200pt;}
.y106{bottom:166.600933pt;}
.y17a{bottom:167.541333pt;}
.yb0{bottom:168.016000pt;}
.yd3{bottom:168.922667pt;}
.y1a5{bottom:169.176933pt;}
.y68{bottom:170.933333pt;}
.y113{bottom:171.336933pt;}
.y136{bottom:171.530667pt;}
.ye4{bottom:172.282800pt;}
.y43{bottom:174.406667pt;}
.y20{bottom:181.116133pt;}
.y1a4{bottom:181.443600pt;}
.y1d1{bottom:183.676667pt;}
.y8b{bottom:184.133333pt;}
.y17e{bottom:186.299200pt;}
.y105{bottom:187.528933pt;}
.yaf{bottom:188.288000pt;}
.yd2{bottom:189.994667pt;}
.y67{bottom:191.333333pt;}
.y112{bottom:192.264933pt;}
.y135{bottom:192.458667pt;}
.ye3{bottom:192.810800pt;}
.y1a3{bottom:193.710267pt;}
.y179{bottom:195.093333pt;}
.y158{bottom:196.373333pt;}
.y1f{bottom:197.916133pt;}
.y104{bottom:208.456933pt;}
.yd1{bottom:211.066667pt;}
.y42{bottom:211.333333pt;}
.y1a2{bottom:211.640933pt;}
.y66{bottom:211.733333pt;}
.y111{bottom:213.192933pt;}
.ye2{bottom:213.338800pt;}
.y134{bottom:213.386667pt;}
.y1e{bottom:214.716133pt;}
.y178{bottom:215.093333pt;}
.yae{bottom:216.112000pt;}
.y157{bottom:216.501333pt;}
.y1d0{bottom:220.076667pt;}
.y8a{bottom:224.133333pt;}
.y103{bottom:229.384933pt;}
.y1d{bottom:231.516133pt;}
.y41{bottom:231.733333pt;}
.y65{bottom:232.133333pt;}
.yd0{bottom:232.138667pt;}
.ye1{bottom:233.866800pt;}
.y110{bottom:234.120933pt;}
.y133{bottom:234.314667pt;}
.y177{bottom:235.093333pt;}
.yad{bottom:236.384000pt;}
.y1cf{bottom:236.610000pt;}
.y156{bottom:236.629333pt;}
.y89{bottom:244.133333pt;}
.y1c{bottom:248.316133pt;}
.y1a1{bottom:249.658667pt;}
.y102{bottom:250.312933pt;}
.y40{bottom:252.133333pt;}
.y64{bottom:252.533333pt;}
.y1ce{bottom:253.143333pt;}
.ycf{bottom:253.210667pt;}
.y10f{bottom:255.048933pt;}
.y176{bottom:255.093333pt;}
.y132{bottom:255.242667pt;}
.yac{bottom:256.656000pt;}
.y155{bottom:256.757333pt;}
.ye0{bottom:261.962800pt;}
.y88{bottom:264.133333pt;}
.y1b{bottom:265.116133pt;}
.y1a0{bottom:268.586667pt;}
.y1cd{bottom:269.676667pt;}
.y101{bottom:271.365333pt;}
.y3f{bottom:272.533333pt;}
.y63{bottom:272.933333pt;}
.yce{bottom:274.282667pt;}
.y175{bottom:275.093333pt;}
.y10e{bottom:275.976933pt;}
.y131{bottom:276.170667pt;}
.y154{bottom:276.885333pt;}
.yab{bottom:276.928000pt;}
.y1a{bottom:281.916133pt;}
.ydf{bottom:282.490800pt;}
.y87{bottom:284.133333pt;}
.y1cc{bottom:286.210000pt;}
.y19f{bottom:287.514667pt;}
.y100{bottom:292.293333pt;}
.y3e{bottom:292.933333pt;}
.y62{bottom:293.333333pt;}
.y174{bottom:295.093333pt;}
.ycd{bottom:295.354667pt;}
.y10d{bottom:296.904933pt;}
.y153{bottom:297.013333pt;}
.y130{bottom:297.098667pt;}
.yaa{bottom:297.200000pt;}
.y19{bottom:298.716133pt;}
.y1cb{bottom:302.743333pt;}
.yde{bottom:303.018800pt;}
.y86{bottom:304.133333pt;}
.y19e{bottom:306.442667pt;}
.yff{bottom:313.221333pt;}
.y3d{bottom:313.333333pt;}
.y61{bottom:313.733333pt;}
.y173{bottom:315.093333pt;}
.y18{bottom:315.516133pt;}
.ycc{bottom:316.426667pt;}
.y152{bottom:317.141333pt;}
.ya9{bottom:317.472000pt;}
.y10c{bottom:317.838267pt;}
.y12f{bottom:318.026667pt;}
.y1ca{bottom:319.276667pt;}
.ydd{bottom:323.546800pt;}
.y85{bottom:324.133333pt;}
.y19d{bottom:325.370667pt;}
.y3c{bottom:333.733333pt;}
.y60{bottom:334.133333pt;}
.yfe{bottom:334.149333pt;}
.y172{bottom:335.093333pt;}
.y1c9{bottom:335.810000pt;}
.y151{bottom:337.269333pt;}
.ycb{bottom:337.498667pt;}
.ya8{bottom:337.744000pt;}
.y12e{bottom:338.954667pt;}
.y17{bottom:339.876133pt;}
.ydc{bottom:344.074800pt;}
.y84{bottom:344.133333pt;}
.y19c{bottom:344.298667pt;}
.y1c8{bottom:352.343333pt;}
.y3b{bottom:354.133333pt;}
.y5f{bottom:354.533333pt;}
.yfd{bottom:355.077333pt;}
.y171{bottom:355.093333pt;}
.y150{bottom:357.397333pt;}
.ya7{bottom:358.016000pt;}
.yca{bottom:358.570667pt;}
.y12d{bottom:359.882667pt;}
.y19b{bottom:363.226667pt;}
.y83{bottom:364.133333pt;}
.ydb{bottom:364.602800pt;}
.y1c7{bottom:368.876667pt;}
.y3a{bottom:374.533333pt;}
.y5e{bottom:374.933333pt;}
.y170{bottom:375.093333pt;}
.yfc{bottom:376.005333pt;}
.y14f{bottom:377.525333pt;}
.ya6{bottom:378.288000pt;}
.yc9{bottom:379.642667pt;}
.y16{bottom:380.142800pt;}
.y12c{bottom:380.810667pt;}
.y19a{bottom:382.154667pt;}
.y82{bottom:384.133333pt;}
.yda{bottom:385.130800pt;}
.y1c6{bottom:385.410000pt;}
.y39{bottom:394.933333pt;}
.y16f{bottom:395.093333pt;}
.y5d{bottom:395.333333pt;}
.yfb{bottom:396.933333pt;}
.y15{bottom:396.942800pt;}
.y14e{bottom:397.653333pt;}
.ya5{bottom:398.560000pt;}
.yc8{bottom:400.714667pt;}
.y199{bottom:401.082667pt;}
.y12b{bottom:401.738667pt;}
.y1c5{bottom:401.943333pt;}
.y81{bottom:404.133333pt;}
.yd9{bottom:405.658800pt;}
.y16e{bottom:415.093333pt;}
.y38{bottom:415.333333pt;}
.y5c{bottom:415.733333pt;}
.y14d{bottom:417.781333pt;}
.yfa{bottom:417.861333pt;}
.y1c4{bottom:418.476667pt;}
.ya4{bottom:418.832000pt;}
.y198{bottom:420.010667pt;}
.y14{bottom:421.300933pt;}
.yc7{bottom:421.786667pt;}
.y12a{bottom:422.666667pt;}
.y80{bottom:424.133333pt;}
.y1c3{bottom:435.010000pt;}
.y16d{bottom:435.093333pt;}
.y37{bottom:435.733333pt;}
.y5b{bottom:436.133333pt;}
.y14c{bottom:437.909333pt;}
.y13{bottom:438.234267pt;}
.yf9{bottom:438.789333pt;}
.ya3{bottom:439.104000pt;}
.yc6{bottom:442.858667pt;}
.y129{bottom:443.594667pt;}
.y7f{bottom:444.133333pt;}
.y197{bottom:446.506667pt;}
.y1c2{bottom:451.543333pt;}
.y16c{bottom:455.093333pt;}
.y12{bottom:455.167600pt;}
.y36{bottom:456.133333pt;}
.y5a{bottom:456.533333pt;}
.y14b{bottom:458.037333pt;}
.ya2{bottom:459.376000pt;}
.yf8{bottom:459.717333pt;}
.yc5{bottom:463.930667pt;}
.y7e{bottom:464.133333pt;}
.y128{bottom:464.522667pt;}
.y196{bottom:465.434667pt;}
.y1c1{bottom:468.076667pt;}
.y11{bottom:472.100933pt;}
.y16b{bottom:475.093333pt;}
.y35{bottom:476.533333pt;}
.y59{bottom:476.933333pt;}
.y14a{bottom:478.165333pt;}
.ya1{bottom:479.648000pt;}
.yf7{bottom:480.645333pt;}
.y7d{bottom:484.133333pt;}
.y195{bottom:484.362667pt;}
.y1c0{bottom:484.610000pt;}
.yc4{bottom:485.002667pt;}
.y127{bottom:485.450667pt;}
.y10{bottom:489.034267pt;}
.y16a{bottom:495.093333pt;}
.y34{bottom:496.933333pt;}
.y58{bottom:497.333333pt;}
.y149{bottom:498.293333pt;}
.ya0{bottom:499.920000pt;}
.y1bf{bottom:501.143333pt;}
.yf6{bottom:501.573333pt;}
.y194{bottom:503.290667pt;}
.y7c{bottom:504.133333pt;}
.yf{bottom:505.967600pt;}
.yc3{bottom:506.074667pt;}
.y126{bottom:506.378667pt;}
.y169{bottom:515.093333pt;}
.y33{bottom:517.333333pt;}
.y1be{bottom:517.676667pt;}
.y57{bottom:517.733333pt;}
.y148{bottom:518.421333pt;}
.y9f{bottom:520.192000pt;}
.y193{bottom:522.218667pt;}
.yf5{bottom:522.501333pt;}
.ye{bottom:522.900933pt;}
.y7b{bottom:524.133333pt;}
.yc2{bottom:527.146667pt;}
.y125{bottom:527.306667pt;}
.y1bd{bottom:534.210000pt;}
.y168{bottom:535.093333pt;}
.y32{bottom:537.733333pt;}
.y56{bottom:538.133333pt;}
.y147{bottom:538.549333pt;}
.yd{bottom:539.834267pt;}
.y9e{bottom:540.464000pt;}
.y192{bottom:541.146667pt;}
.y7a{bottom:544.133333pt;}
.yc1{bottom:548.218667pt;}
.y124{bottom:548.234667pt;}
.yf4{bottom:550.997333pt;}
.y167{bottom:555.093333pt;}
.yc{bottom:556.767600pt;}
.y31{bottom:558.133333pt;}
.y55{bottom:558.533333pt;}
.y146{bottom:558.677333pt;}
.y191{bottom:560.074667pt;}
.y9d{bottom:560.736000pt;}
.y1bc{bottom:562.081867pt;}
.y79{bottom:564.133333pt;}
.y123{bottom:569.162667pt;}
.yc0{bottom:569.290667pt;}
.yf3{bottom:571.925333pt;}
.yb{bottom:573.700933pt;}
.y166{bottom:575.093333pt;}
.y30{bottom:578.533333pt;}
.y145{bottom:578.805333pt;}
.y54{bottom:578.933333pt;}
.y190{bottom:579.002667pt;}
.y9c{bottom:581.008000pt;}
.y78{bottom:584.133333pt;}
.y1bb{bottom:589.349333pt;}
.ybf{bottom:590.362667pt;}
.ya{bottom:590.634267pt;}
.yf2{bottom:592.853333pt;}
.y165{bottom:595.093333pt;}
.y122{bottom:597.658667pt;}
.y18f{bottom:597.930667pt;}
.y2f{bottom:598.933333pt;}
.y144{bottom:598.949333pt;}
.y53{bottom:599.333333pt;}
.y9b{bottom:601.280000pt;}
.y77{bottom:604.133333pt;}
.y9{bottom:607.567600pt;}
.ybe{bottom:611.434667pt;}
.yf1{bottom:613.781333pt;}
.y18e{bottom:616.858667pt;}
.y121{bottom:618.586667pt;}
.y143{bottom:619.077333pt;}
.y2e{bottom:619.333333pt;}
.y52{bottom:619.733333pt;}
.y9a{bottom:621.552000pt;}
.y164{bottom:622.645333pt;}
.y76{bottom:624.133333pt;}
.y8{bottom:632.060933pt;}
.ybd{bottom:632.506667pt;}
.y1ba{bottom:632.858667pt;}
.yf0{bottom:634.709333pt;}
.y18d{bottom:635.786667pt;}
.y142{bottom:639.205333pt;}
.y120{bottom:639.514667pt;}
.y2d{bottom:639.733333pt;}
.y51{bottom:640.133333pt;}
.y99{bottom:641.824000pt;}
.y163{bottom:642.645333pt;}
.y75{bottom:644.133333pt;}
.y1b9{bottom:646.053333pt;}
.ybc{bottom:653.578667pt;}
.y18c{bottom:654.714667pt;}
.yef{bottom:655.637333pt;}
.y1b8{bottom:659.248000pt;}
.y141{bottom:659.333333pt;}
.y2c{bottom:660.133333pt;}
.y11f{bottom:660.442667pt;}
.y50{bottom:660.533333pt;}
.y98{bottom:662.096000pt;}
.y162{bottom:662.645333pt;}
.y74{bottom:664.133333pt;}
.y1b7{bottom:672.442667pt;}
.y7{bottom:673.114933pt;}
.y18b{bottom:673.642667pt;}
.ybb{bottom:674.650667pt;}
.yee{bottom:676.565333pt;}
.y140{bottom:679.461333pt;}
.y2b{bottom:680.533333pt;}
.y4f{bottom:680.933333pt;}
.y11e{bottom:681.370667pt;}
.y97{bottom:682.368000pt;}
.y161{bottom:682.645333pt;}
.y73{bottom:684.133333pt;}
.y1b6{bottom:685.637333pt;}
.y18a{bottom:692.570667pt;}
.y6{bottom:693.381600pt;}
.yba{bottom:695.722667pt;}
.yed{bottom:697.493333pt;}
.y1b5{bottom:698.832000pt;}
.y13f{bottom:699.589333pt;}
.y2a{bottom:700.933333pt;}
.y4e{bottom:701.333333pt;}
.y11d{bottom:702.298667pt;}
.y96{bottom:702.640000pt;}
.y160{bottom:702.645333pt;}
.y72{bottom:704.133333pt;}
.y189{bottom:711.498667pt;}
.y1b4{bottom:712.026667pt;}
.yb9{bottom:716.794667pt;}
.yec{bottom:718.421333pt;}
.y13e{bottom:719.717333pt;}
.y29{bottom:721.333333pt;}
.y4d{bottom:721.733333pt;}
.y15f{bottom:722.645333pt;}
.y95{bottom:722.912000pt;}
.y11c{bottom:723.226667pt;}
.y71{bottom:724.133333pt;}
.y1b3{bottom:725.232000pt;}
.y188{bottom:730.426667pt;}
.yb8{bottom:737.866667pt;}
.y1b2{bottom:738.426667pt;}
.yeb{bottom:739.349333pt;}
.y13d{bottom:740.645333pt;}
.y28{bottom:741.733333pt;}
.y4c{bottom:742.133333pt;}
.y15e{bottom:742.645333pt;}
.y94{bottom:743.184000pt;}
.y11b{bottom:743.354667pt;}
.y70{bottom:744.133333pt;}
.y10b{bottom:744.400000pt;}
.y187{bottom:749.354667pt;}
.y1b1{bottom:751.621333pt;}
.y5{bottom:753.333333pt;}
.yb7{bottom:758.938667pt;}
.yea{bottom:760.277333pt;}
.y13c{bottom:761.317333pt;}
.y27{bottom:762.133333pt;}
.y4b{bottom:762.533333pt;}
.y15d{bottom:762.917333pt;}
.yd8{bottom:763.200000pt;}
.y93{bottom:763.456000pt;}
.y11a{bottom:763.482667pt;}
.y6f{bottom:764.133333pt;}
.y1b0{bottom:764.816000pt;}
.y186{bottom:768.282667pt;}
.y1af{bottom:778.010667pt;}
.y4{bottom:780.000000pt;}
.yb6{bottom:780.010667pt;}
.ye9{bottom:781.205333pt;}
.y13b{bottom:781.989333pt;}
.y26{bottom:782.533333pt;}
.y4a{bottom:782.933333pt;}
.y15c{bottom:783.189333pt;}
.y119{bottom:783.610667pt;}
.y92{bottom:783.728000pt;}
.y6e{bottom:784.133333pt;}
.y10a{bottom:784.144000pt;}
.y185{bottom:787.210667pt;}
.y1ae{bottom:791.216000pt;}
.yb5{bottom:801.338667pt;}
.ye8{bottom:802.133333pt;}
.y13a{bottom:802.661333pt;}
.y25{bottom:802.933333pt;}
.y49{bottom:803.333333pt;}
.yd7{bottom:803.461333pt;}
.y118{bottom:803.738667pt;}
.y109{bottom:803.872000pt;}
.y91{bottom:804.000000pt;}
.y6d{bottom:804.133333pt;}
.y1ad{bottom:804.410667pt;}
.y184{bottom:806.138667pt;}
.y1ac{bottom:817.605333pt;}
.yb4{bottom:822.666667pt;}
.ye7{bottom:823.066667pt;}
.y3{bottom:823.333333pt;}
.y108{bottom:823.600000pt;}
.y48{bottom:823.733333pt;}
.y117{bottom:823.866667pt;}
.y90{bottom:824.000000pt;}
.y6c{bottom:824.133333pt;}
.y183{bottom:825.066667pt;}
.y1ab{bottom:830.800000pt;}
.ha{height:25.953776pt;}
.hd{height:26.945443pt;}
.h14{height:28.437500pt;}
.h12{height:34.730667pt;}
.hb{height:34.895833pt;}
.h13{height:36.229167pt;}
.h4{height:37.333333pt;}
.h15{height:39.257812pt;}
.h2{height:41.438802pt;}
.h5{height:42.656250pt;}
.hf{height:42.687500pt;}
.he{height:43.413333pt;}
.h1{height:43.619792pt;}
.h6{height:45.286458pt;}
.h7{height:52.343750pt;}
.h8{height:54.343750pt;}
.h10{height:57.263025pt;}
.h9{height:57.760625pt;}
.h11{height:59.096625pt;}
.hc{height:59.160625pt;}
.h3{height:87.239583pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x7{left:73.228000pt;}
.x3{left:86.456667pt;}
.x9{left:88.348400pt;}
.x5{left:100.000000pt;}
.xb{left:101.574800pt;}
.xc{left:103.459600pt;}
.x6{left:113.228400pt;}
.xd{left:116.691600pt;}
.x2{left:120.000000pt;}
.x8{left:128.352000pt;}
.xa{left:141.580400pt;}
.xe{left:143.464533pt;}
.x4{left:556.250000pt;}
}




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