
    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_22249091a917a1f66943a29c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dae163b36216c6d29f1d1aa2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_0c6183903b75409475adc2ec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_594ca2a34419cba59c90be50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_260745e9b37eb8d678917f24.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_f3459199ffb148f2f4583c3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_1ec5cd90ecdf4dcb5a7915e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_a25f89de1f0c93ff634e60c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_d7b85d79a538d5ebf8b9b1ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_8b9e4369d15fb249f3010b9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_27e841fbe196365fee819d16.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7b36390042f29a58ae85d075.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_555b8b170f1a3ea2be70237a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.m3{transform:matrix(0.000000,-0.249374,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249374,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249374,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.216505,-0.125001,0.125001,0.216505,0,0);-ms-transform:matrix(0.216505,-0.125001,0.125001,0.216505,0,0);-webkit-transform:matrix(0.216505,-0.125001,0.125001,0.216505,0,0);}
.m7{transform:matrix(0.240427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240427,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250623,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,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:-16.471800px;}
.v5{vertical-align:-6.965303px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.056000px;}
.v3{vertical-align:20.580600px;}
.v1{vertical-align:22.655400px;}
.v4{vertical-align:32.496000px;}
.ls51{letter-spacing:-3.552000px;}
.ls17{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls84{letter-spacing:-0.288000px;}
.ls50{letter-spacing:-0.240000px;}
.ls86{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.120000px;}
.ls85{letter-spacing:-0.096000px;}
.ls30{letter-spacing:-0.060000px;}
.ls75{letter-spacing:-0.048000px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls5{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls65{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.120000px;}
.ls6f{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.336000px;}
.ls44{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.384000px;}
.ls2e{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.528000px;}
.ls36{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.ls76{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.672000px;}
.ls2c{letter-spacing:0.700800px;}
.ls55{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.768000px;}
.ls45{letter-spacing:0.780000px;}
.ls80{letter-spacing:0.816000px;}
.ls22{letter-spacing:0.840000px;}
.ls7f{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.900000px;}
.ls29{letter-spacing:0.960000px;}
.ls69{letter-spacing:1.008000px;}
.ls39{letter-spacing:1.020000px;}
.ls70{letter-spacing:1.056000px;}
.ls37{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.140000px;}
.ls2f{letter-spacing:1.200000px;}
.ls78{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.260000px;}
.ls63{letter-spacing:1.296000px;}
.ls1c{letter-spacing:1.320000px;}
.ls1f{letter-spacing:1.380000px;}
.ls6e{letter-spacing:1.392000px;}
.ls2a{letter-spacing:1.440000px;}
.ls64{letter-spacing:1.488000px;}
.ls10{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.536000px;}
.ls9{letter-spacing:1.560000px;}
.ls12{letter-spacing:1.620000px;}
.ls77{letter-spacing:1.632000px;}
.lsb{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.728000px;}
.ls4e{letter-spacing:1.740000px;}
.ls6b{letter-spacing:1.776000px;}
.ls41{letter-spacing:1.800000px;}
.ls24{letter-spacing:1.860000px;}
.ls3c{letter-spacing:1.920000px;}
.ls6c{letter-spacing:1.968000px;}
.ls14{letter-spacing:1.980000px;}
.ls25{letter-spacing:2.040000px;}
.ls73{letter-spacing:2.064000px;}
.ls58{letter-spacing:2.100000px;}
.ls7c{letter-spacing:2.112000px;}
.ls71{letter-spacing:2.160000px;}
.ls7e{letter-spacing:2.208000px;}
.ls11{letter-spacing:2.220000px;}
.ls27{letter-spacing:2.280000px;}
.ls7a{letter-spacing:2.304000px;}
.ls15{letter-spacing:2.340000px;}
.ls4b{letter-spacing:2.400000px;}
.ls56{letter-spacing:2.460000px;}
.ls7d{letter-spacing:2.496000px;}
.lsf{letter-spacing:2.520000px;}
.ls87{letter-spacing:2.544000px;}
.ls2d{letter-spacing:2.580000px;}
.ls3f{letter-spacing:2.640000px;}
.ls74{letter-spacing:2.688000px;}
.ls20{letter-spacing:2.700000px;}
.ls81{letter-spacing:2.736000px;}
.ls40{letter-spacing:2.760000px;}
.lse{letter-spacing:2.820000px;}
.ls49{letter-spacing:2.880000px;}
.ls4c{letter-spacing:3.000000px;}
.ls79{letter-spacing:3.024000px;}
.ls3e{letter-spacing:3.060000px;}
.ls83{letter-spacing:3.072000px;}
.ls21{letter-spacing:3.120000px;}
.ls6d{letter-spacing:3.168000px;}
.ls28{letter-spacing:3.180000px;}
.ls46{letter-spacing:3.240000px;}
.ls57{letter-spacing:3.300000px;}
.ls32{letter-spacing:3.360000px;}
.ls8{letter-spacing:3.420000px;}
.ls54{letter-spacing:3.540000px;}
.ls43{letter-spacing:3.600000px;}
.ls82{letter-spacing:3.648000px;}
.ls13{letter-spacing:3.660000px;}
.ls1b{letter-spacing:3.720000px;}
.ls53{letter-spacing:3.780000px;}
.ls4d{letter-spacing:3.840000px;}
.ls34{letter-spacing:3.960000px;}
.ls33{letter-spacing:4.020000px;}
.ls59{letter-spacing:4.080000px;}
.ls3a{letter-spacing:4.200000px;}
.ls5f{letter-spacing:4.320000px;}
.ls72{letter-spacing:4.416000px;}
.ls26{letter-spacing:4.440000px;}
.lsa{letter-spacing:4.500000px;}
.ls48{letter-spacing:4.620000px;}
.ls61{letter-spacing:4.680000px;}
.ls5e{letter-spacing:4.800000px;}
.ls31{letter-spacing:4.860000px;}
.ls4a{letter-spacing:4.980000px;}
.ls35{letter-spacing:5.100000px;}
.ls3b{letter-spacing:5.400000px;}
.ls5c{letter-spacing:5.580000px;}
.ls5d{letter-spacing:5.940000px;}
.ls60{letter-spacing:6.000000px;}
.ls47{letter-spacing:6.660000px;}
.ls62{letter-spacing:11.820000px;}
.ls4f{letter-spacing:158.064000px;}
.ls5b{letter-spacing:480.432000px;}
.ls5a{letter-spacing:1429.584000px;}
.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;}
}
.ws21{word-spacing:-20.400000px;}
.ws4c{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.340000px;}
.ws22{word-spacing:-17.160000px;}
.ws23{word-spacing:-16.680000px;}
.ws1{word-spacing:-16.560000px;}
.ws9d{word-spacing:-15.984000px;}
.ws80{word-spacing:-14.448000px;}
.ws25{word-spacing:-14.178000px;}
.ws9e{word-spacing:-14.064000px;}
.ws9f{word-spacing:-13.680000px;}
.ws51{word-spacing:-13.344000px;}
.ws9c{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.008800px;}
.ws76{word-spacing:-9.662390px;}
.ws60{word-spacing:-6.660000px;}
.ws85{word-spacing:-6.000000px;}
.ws82{word-spacing:-5.940000px;}
.ws81{word-spacing:-5.580000px;}
.ws46{word-spacing:-5.400000px;}
.ws3f{word-spacing:-5.100000px;}
.ws63{word-spacing:-4.980000px;}
.ws3a{word-spacing:-4.860000px;}
.ws86{word-spacing:-4.680000px;}
.ws61{word-spacing:-4.620000px;}
.ws10{word-spacing:-4.500000px;}
.ws34{word-spacing:-4.440000px;}
.ws99{word-spacing:-4.416000px;}
.ws84{word-spacing:-4.320000px;}
.ws45{word-spacing:-4.200000px;}
.ws3d{word-spacing:-4.020000px;}
.ws3e{word-spacing:-3.960000px;}
.ws68{word-spacing:-3.840000px;}
.ws6c{word-spacing:-3.780000px;}
.ws26{word-spacing:-3.720000px;}
.wsae{word-spacing:-3.648000px;}
.ws43{word-spacing:-3.600000px;}
.ws6d{word-spacing:-3.540000px;}
.wse{word-spacing:-3.420000px;}
.ws3c{word-spacing:-3.360000px;}
.ws72{word-spacing:-3.300000px;}
.ws5f{word-spacing:-3.240000px;}
.ws36{word-spacing:-3.180000px;}
.ws93{word-spacing:-3.168000px;}
.ws2c{word-spacing:-3.120000px;}
.wsaf{word-spacing:-3.072000px;}
.ws48{word-spacing:-3.060000px;}
.wsa3{word-spacing:-3.024000px;}
.ws67{word-spacing:-3.000000px;}
.ws62{word-spacing:-2.880000px;}
.ws14{word-spacing:-2.820000px;}
.ws6e{word-spacing:-2.760000px;}
.wsac{word-spacing:-2.736000px;}
.ws2b{word-spacing:-2.700000px;}
.ws9b{word-spacing:-2.688000px;}
.ws3{word-spacing:-2.664000px;}
.ws49{word-spacing:-2.640000px;}
.ws39{word-spacing:-2.580000px;}
.wsb1{word-spacing:-2.544000px;}
.ws15{word-spacing:-2.520000px;}
.wsa6{word-spacing:-2.496000px;}
.ws70{word-spacing:-2.460000px;}
.ws83{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.340000px;}
.wsa4{word-spacing:-2.304000px;}
.ws35{word-spacing:-2.280000px;}
.ws17{word-spacing:-2.220000px;}
.wsaa{word-spacing:-2.208000px;}
.ws71{word-spacing:-2.160000px;}
.wsa5{word-spacing:-2.112000px;}
.ws73{word-spacing:-2.100000px;}
.ws9a{word-spacing:-2.064000px;}
.ws33{word-spacing:-2.040000px;}
.ws1c{word-spacing:-1.980000px;}
.ws92{word-spacing:-1.968000px;}
.ws47{word-spacing:-1.920000px;}
.ws31{word-spacing:-1.860000px;}
.ws4a{word-spacing:-1.800000px;}
.ws91{word-spacing:-1.776000px;}
.ws6a{word-spacing:-1.740000px;}
.ws8a{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.680000px;}
.wsa1{word-spacing:-1.632000px;}
.ws19{word-spacing:-1.620000px;}
.wsf{word-spacing:-1.560000px;}
.ws90{word-spacing:-1.536000px;}
.ws16{word-spacing:-1.500000px;}
.ws88{word-spacing:-1.488000px;}
.ws66{word-spacing:-1.440000px;}
.ws94{word-spacing:-1.392000px;}
.ws2a{word-spacing:-1.380000px;}
.ws27{word-spacing:-1.320000px;}
.ws87{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.wsa2{word-spacing:-1.248000px;}
.ws2e{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.140000px;}
.ws8d{word-spacing:-1.104000px;}
.ws41{word-spacing:-1.080000px;}
.ws98{word-spacing:-1.056000px;}
.ws44{word-spacing:-1.020000px;}
.ws8f{word-spacing:-1.008000px;}
.ws37{word-spacing:-0.960000px;}
.ws65{word-spacing:-0.900000px;}
.ws7f{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.840000px;}
.wsab{word-spacing:-0.816000px;}
.ws5e{word-spacing:-0.780000px;}
.wsb0{word-spacing:-0.768000px;}
.ws6f{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.672000px;}
.ws29{word-spacing:-0.660000px;}
.wsa0{word-spacing:-0.624000px;}
.ws12{word-spacing:-0.600000px;}
.ws40{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.432000px;}
.ws2d{word-spacing:-0.420000px;}
.ws7{word-spacing:-0.384000px;}
.ws5d{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.336000px;}
.wsd{word-spacing:-0.300000px;}
.ws8c{word-spacing:-0.288000px;}
.ws42{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.180000px;}
.ws95{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.120000px;}
.ws89{word-spacing:-0.096000px;}
.ws13{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws96{word-spacing:0.048000px;}
.ws32{word-spacing:0.060000px;}
.wsa9{word-spacing:0.096000px;}
.ws1a{word-spacing:0.120000px;}
.wsad{word-spacing:0.144000px;}
.ws6b{word-spacing:0.240000px;}
.wsa8{word-spacing:0.288000px;}
.ws20{word-spacing:0.300000px;}
.ws6{word-spacing:0.480000px;}
.ws5{word-spacing:0.528000px;}
.ws74{word-spacing:1.140000px;}
.ws97{word-spacing:1.344000px;}
.ws1b{word-spacing:1.380000px;}
.ws75{word-spacing:2.580000px;}
.ws1e{word-spacing:2.880000px;}
.wsa7{word-spacing:4.128000px;}
.ws8b{word-spacing:4.368000px;}
.ws8e{word-spacing:4.416000px;}
.ws69{word-spacing:4.500000px;}
.ws1f{word-spacing:5.460000px;}
.ws11{word-spacing:5.520000px;}
.ws55{word-spacing:116.880000px;}
.ws5b{word-spacing:136.032000px;}
.ws5a{word-spacing:167.088000px;}
.ws5c{word-spacing:168.384000px;}
.ws57{word-spacing:176.784000px;}
.ws59{word-spacing:210.528000px;}
.ws58{word-spacing:228.576000px;}
.ws56{word-spacing:236.784000px;}
.ws7e{word-spacing:237.984000px;}
.ws79{word-spacing:264.672000px;}
.ws54{word-spacing:280.656000px;}
.ws3b{word-spacing:296.112000px;}
.ws7a{word-spacing:340.560000px;}
.ws7b{word-spacing:381.888000px;}
.ws7c{word-spacing:397.728000px;}
.ws4e{word-spacing:420.048000px;}
.ws50{word-spacing:421.872000px;}
.ws53{word-spacing:428.928000px;}
.ws4d{word-spacing:433.392000px;}
.ws78{word-spacing:446.256000px;}
.ws4f{word-spacing:485.520000px;}
.ws52{word-spacing:492.624000px;}
.ws7d{word-spacing:967.440000px;}
.ws77{word-spacing:1420.896000px;}
._e{margin-left:-2898.126000px;}
._17{margin-left:-2874.309000px;}
._47{margin-left:-11.796000px;}
._a{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.408000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.104000px;}
._2{width:1.223400px;}
._c{width:2.754000px;}
._6{width:4.032000px;}
._4{width:5.088000px;}
._7{width:6.792000px;}
._b{width:7.812000px;}
._8{width:8.820000px;}
._9{width:10.020000px;}
._d{width:11.160000px;}
._18{width:12.270000px;}
._11{width:15.300000px;}
._f{width:21.240000px;}
._10{width:22.776000px;}
._13{width:23.868000px;}
._12{width:37.686000px;}
._39{width:45.955585px;}
._37{width:49.893543px;}
._23{width:62.052000px;}
._14{width:64.494000px;}
._31{width:68.818464px;}
._22{width:71.376000px;}
._29{width:80.256000px;}
._32{width:97.214770px;}
._2b{width:110.304000px;}
._30{width:117.026146px;}
._34{width:126.688536px;}
._2e{width:130.992000px;}
._2c{width:147.792000px;}
._25{width:160.416000px;}
._2f{width:168.528000px;}
._26{width:181.728000px;}
._2d{width:191.190000px;}
._24{width:221.952000px;}
._28{width:223.392000px;}
._1b{width:226.806000px;}
._27{width:229.200000px;}
._16{width:258.336000px;}
._2a{width:270.576000px;}
._35{width:275.942774px;}
._40{width:278.016000px;}
._33{width:286.328166px;}
._1c{width:292.128000px;}
._1a{width:294.288000px;}
._38{width:300.814097px;}
._3b{width:314.688000px;}
._15{width:332.544000px;}
._19{width:340.128000px;}
._43{width:384.384000px;}
._44{width:395.232000px;}
._1d{width:410.784000px;}
._46{width:414.480000px;}
._20{width:422.784000px;}
._36{width:479.513269px;}
._21{width:498.864000px;}
._1f{width:504.144000px;}
._1e{width:512.208000px;}
._45{width:698.640000px;}
._3a{width:770.784000px;}
._3f{width:853.968000px;}
._41{width:874.416000px;}
._42{width:914.448000px;}
._3c{width:1031.424000px;}
._3d{width:1071.456000px;}
._3e{width:1092.486000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsd{font-size:31.281600px;}
.fsb{font-size:34.706400px;}
.fsc{font-size:34.756800px;}
.fs10{font-size:34.791600px;}
.fs9{font-size:36.000000px;}
.fs11{font-size:38.232600px;}
.fsf{font-size:38.232748px;}
.fs4{font-size:39.600000px;}
.fsa{font-size:41.708400px;}
.fse{font-size:41.799600px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs12{font-size:48.660000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y92{bottom:74.472600px;}
.y1{bottom:82.406700px;}
.y95{bottom:83.084100px;}
.y17a{bottom:83.228850px;}
.yd9{bottom:83.338950px;}
.y10f{bottom:83.363850px;}
.y2a{bottom:83.493900px;}
.y6d{bottom:83.517600px;}
.y48{bottom:83.521050px;}
.yd6{bottom:93.259950px;}
.y1a9{bottom:94.796700px;}
.y94{bottom:98.828100px;}
.yd8{bottom:99.082950px;}
.y179{bottom:101.228850px;}
.y10e{bottom:101.363850px;}
.y6c{bottom:101.517600px;}
.y1a8{bottom:109.796700px;}
.yd7{bottom:114.826950px;}
.yd4{bottom:115.891950px;}
.y15e{bottom:116.330700px;}
.y10d{bottom:119.363850px;}
.y6b{bottom:119.517600px;}
.y18{bottom:121.513200px;}
.y91{bottom:122.337000px;}
.y1a7{bottom:124.796700px;}
.y93{bottom:126.233400px;}
.y15d{bottom:134.282700px;}
.y178{bottom:137.228850px;}
.y10c{bottom:137.363850px;}
.y6a{bottom:137.517600px;}
.yd5{bottom:138.523950px;}
.y1a6{bottom:139.796700px;}
.y15c{bottom:152.234700px;}
.y1a5{bottom:154.796700px;}
.y177{bottom:155.228850px;}
.y10b{bottom:155.363850px;}
.y69{bottom:155.517600px;}
.y8e{bottom:159.795900px;}
.yd3{bottom:167.539950px;}
.yd2{bottom:167.551950px;}
.y1a4{bottom:169.796700px;}
.y15b{bottom:170.186700px;}
.y176{bottom:173.228850px;}
.y10a{bottom:173.363850px;}
.y68{bottom:173.517600px;}
.yd1{bottom:175.807950px;}
.y1a3{bottom:184.796700px;}
.y26{bottom:185.839950px;}
.y15a{bottom:188.138700px;}
.y175{bottom:191.228850px;}
.y109{bottom:191.363850px;}
.y67{bottom:191.517600px;}
.y1a2{bottom:199.796700px;}
.y25{bottom:203.839950px;}
.y159{bottom:206.090700px;}
.y174{bottom:209.228850px;}
.y108{bottom:209.363850px;}
.y66{bottom:209.517600px;}
.y49{bottom:211.442400px;}
.y1a1{bottom:214.796700px;}
.y112{bottom:215.056500px;}
.yd0{bottom:216.371550px;}
.y24{bottom:221.839950px;}
.y158{bottom:224.042700px;}
.y107{bottom:227.363850px;}
.y65{bottom:227.517600px;}
.y1a0{bottom:229.796700px;}
.ycf{bottom:235.871550px;}
.y23{bottom:239.839950px;}
.y157{bottom:241.994700px;}
.y19f{bottom:244.796700px;}
.y173{bottom:245.228850px;}
.y106{bottom:245.363850px;}
.y64{bottom:245.517600px;}
.y22{bottom:257.839950px;}
.y19e{bottom:259.796700px;}
.y172{bottom:263.228850px;}
.y105{bottom:263.363850px;}
.y63{bottom:263.517600px;}
.y19d{bottom:274.796700px;}
.y1dd{bottom:274.938300px;}
.y21{bottom:275.839950px;}
.y156{bottom:277.766700px;}
.y171{bottom:281.228850px;}
.y104{bottom:281.363850px;}
.y62{bottom:281.517600px;}
.y19c{bottom:289.796700px;}
.y1dc{bottom:289.938300px;}
.y90{bottom:290.797650px;}
.yce{bottom:292.463100px;}
.y20{bottom:293.839950px;}
.ycc{bottom:297.395100px;}
.y170{bottom:299.228850px;}
.y103{bottom:299.363850px;}
.y61{bottom:299.517600px;}
.y19b{bottom:304.796700px;}
.y1db{bottom:304.938300px;}
.y8f{bottom:306.325650px;}
.ycd{bottom:308.711100px;}
.y1f{bottom:311.839950px;}
.yc9{bottom:313.643100px;}
.y155{bottom:316.836150px;}
.y16f{bottom:317.228850px;}
.y102{bottom:317.363850px;}
.y60{bottom:317.517600px;}
.y19a{bottom:319.796700px;}
.y1da{bottom:319.938300px;}
.ycb{bottom:324.959100px;}
.y1e{bottom:329.839950px;}
.yca{bottom:333.083100px;}
.y199{bottom:334.796700px;}
.y1d9{bottom:334.938300px;}
.y16e{bottom:335.228850px;}
.y101{bottom:335.363850px;}
.y5f{bottom:335.517600px;}
.y154{bottom:336.336150px;}
.y1d{bottom:347.839950px;}
.y198{bottom:349.796700px;}
.y1d8{bottom:349.938300px;}
.y16d{bottom:353.228850px;}
.y100{bottom:353.363850px;}
.y5e{bottom:353.517600px;}
.y153{bottom:355.836150px;}
.yc8{bottom:357.467100px;}
.y197{bottom:364.796700px;}
.y1d7{bottom:364.938300px;}
.yc7{bottom:365.591100px;}
.y1c{bottom:365.839950px;}
.y16c{bottom:371.228850px;}
.yff{bottom:371.363850px;}
.y5d{bottom:371.517600px;}
.y152{bottom:375.336150px;}
.y196{bottom:379.796700px;}
.y1d6{bottom:379.938300px;}
.yc4{bottom:381.851100px;}
.y1b{bottom:383.839950px;}
.y16b{bottom:389.228850px;}
.yfe{bottom:389.363850px;}
.y5c{bottom:389.517600px;}
.yc6{bottom:389.975100px;}
.y195{bottom:394.796700px;}
.y1d5{bottom:394.938300px;}
.yc5{bottom:398.099100px;}
.y1a{bottom:401.839950px;}
.y16a{bottom:407.228850px;}
.yfd{bottom:407.363850px;}
.y5b{bottom:407.517600px;}
.y194{bottom:409.796700px;}
.y1e2{bottom:409.938000px;}
.y1d4{bottom:409.938300px;}
.y27{bottom:419.839950px;}
.y193{bottom:424.796700px;}
.y1e1{bottom:424.938000px;}
.y1d3{bottom:424.938300px;}
.y169{bottom:425.228850px;}
.yfc{bottom:425.363850px;}
.y5a{bottom:425.517600px;}
.y115{bottom:429.874350px;}
.ydc{bottom:430.426950px;}
.yc3{bottom:437.735100px;}
.y19{bottom:437.839950px;}
.y192{bottom:439.796700px;}
.y1e0{bottom:439.938000px;}
.y1d2{bottom:439.938300px;}
.y168{bottom:443.228850px;}
.y8d{bottom:443.247600px;}
.yfb{bottom:443.363850px;}
.y59{bottom:443.517600px;}
.y114{bottom:445.618350px;}
.y191{bottom:454.796700px;}
.y1df{bottom:454.938000px;}
.y1d1{bottom:454.938300px;}
.y8c{bottom:461.247600px;}
.y113{bottom:461.362350px;}
.yfa{bottom:461.363850px;}
.y58{bottom:461.517600px;}
.y190{bottom:469.796700px;}
.y1de{bottom:469.938000px;}
.y1d0{bottom:469.938300px;}
.yc2{bottom:472.554000px;}
.y167{bottom:479.228850px;}
.y8b{bottom:479.247600px;}
.yf9{bottom:479.363850px;}
.y57{bottom:479.517600px;}
.y18f{bottom:484.796700px;}
.y1cf{bottom:484.938300px;}
.y139{bottom:488.632950px;}
.y146{bottom:489.474000px;}
.y13a{bottom:490.237329px;}
.y13b{bottom:491.234380px;}
.yc1{bottom:492.054000px;}
.y13d{bottom:493.469039px;}
.y13c{bottom:494.951927px;}
.y13e{bottom:495.854201px;}
.y166{bottom:497.228850px;}
.y8a{bottom:497.247600px;}
.yf8{bottom:497.363850px;}
.y56{bottom:497.517600px;}
.y18e{bottom:499.796700px;}
.y1ce{bottom:499.938300px;}
.y14e{bottom:510.339300px;}
.y17{bottom:514.088550px;}
.y18d{bottom:514.796700px;}
.y1cd{bottom:514.938300px;}
.y165{bottom:515.228850px;}
.y89{bottom:515.247600px;}
.yf7{bottom:515.363850px;}
.y55{bottom:515.517600px;}
.y130{bottom:520.480350px;}
.y140{bottom:521.356350px;}
.y111{bottom:523.324200px;}
.y18c{bottom:529.796700px;}
.y1cc{bottom:529.938300px;}
.y164{bottom:533.228850px;}
.y88{bottom:533.247600px;}
.yf6{bottom:533.363850px;}
.y54{bottom:533.517600px;}
.y18b{bottom:544.796700px;}
.y1cb{bottom:544.938300px;}
.y16{bottom:546.944550px;}
.y131{bottom:548.207587px;}
.y163{bottom:551.228850px;}
.yc0{bottom:551.229000px;}
.yf5{bottom:551.363850px;}
.yb1{bottom:551.364000px;}
.y53{bottom:551.517600px;}
.y18a{bottom:559.796700px;}
.y1ca{bottom:559.938300px;}
.y15{bottom:561.944550px;}
.y141{bottom:565.724338px;}
.y162{bottom:569.228850px;}
.ybf{bottom:569.229000px;}
.y87{bottom:569.247600px;}
.yf4{bottom:569.363850px;}
.yb0{bottom:569.364000px;}
.y52{bottom:569.517600px;}
.y189{bottom:574.796700px;}
.y1c9{bottom:574.938300px;}
.y132{bottom:575.926135px;}
.y12f{bottom:576.872400px;}
.y14{bottom:576.944550px;}
.y161{bottom:587.228850px;}
.ybe{bottom:587.229000px;}
.yf3{bottom:587.363850px;}
.yaf{bottom:587.364000px;}
.y51{bottom:587.517600px;}
.y188{bottom:589.796700px;}
.y1c8{bottom:589.938300px;}
.y13{bottom:591.944550px;}
.y13f{bottom:597.825600px;}
.y133{bottom:603.644683px;}
.y187{bottom:604.796700px;}
.y1c7{bottom:604.938300px;}
.y160{bottom:605.228850px;}
.ybd{bottom:605.229000px;}
.y86{bottom:605.339100px;}
.yf2{bottom:605.363850px;}
.yae{bottom:605.364000px;}
.y50{bottom:605.517600px;}
.y12{bottom:606.944550px;}
.y142{bottom:610.092326px;}
.y186{bottom:619.796700px;}
.y1c6{bottom:619.938300px;}
.y11{bottom:621.944550px;}
.ybc{bottom:623.229000px;}
.y47{bottom:623.363850px;}
.yad{bottom:623.364000px;}
.y43{bottom:623.367600px;}
.y85{bottom:623.382600px;}
.y4f{bottom:623.517600px;}
.y134{bottom:631.302407px;}
.y185{bottom:634.796700px;}
.y1c5{bottom:634.938300px;}
.y10{bottom:636.944550px;}
.y15f{bottom:641.228850px;}
.ybb{bottom:641.229000px;}
.y46{bottom:641.363850px;}
.yac{bottom:641.364000px;}
.y42{bottom:641.367600px;}
.y84{bottom:641.382600px;}
.y4e{bottom:641.517600px;}
.y14a{bottom:648.072600px;}
.y184{bottom:649.796700px;}
.y1c4{bottom:649.938300px;}
.yf{bottom:651.944550px;}
.y143{bottom:654.329845px;}
.y135{bottom:659.020955px;}
.yba{bottom:659.229000px;}
.y45{bottom:659.363850px;}
.yab{bottom:659.364000px;}
.y41{bottom:659.367600px;}
.y83{bottom:659.382600px;}
.y4d{bottom:659.517600px;}
.y183{bottom:664.796700px;}
.y1c3{bottom:664.938300px;}
.y14c{bottom:665.007750px;}
.ye{bottom:666.944550px;}
.yb9{bottom:677.229000px;}
.yf1{bottom:677.363850px;}
.yaa{bottom:677.364000px;}
.y40{bottom:677.367600px;}
.y82{bottom:677.382600px;}
.y4c{bottom:677.517600px;}
.y182{bottom:679.796700px;}
.y1c2{bottom:679.938300px;}
.yd{bottom:681.944550px;}
.y136{bottom:686.739503px;}
.y181{bottom:694.796700px;}
.y1c1{bottom:694.938300px;}
.yb8{bottom:695.229000px;}
.yf0{bottom:695.363850px;}
.ya9{bottom:695.364000px;}
.y3f{bottom:695.367600px;}
.y81{bottom:695.382600px;}
.yc{bottom:696.944550px;}
.y144{bottom:698.697833px;}
.y180{bottom:709.796700px;}
.y1c0{bottom:709.938300px;}
.y14b{bottom:712.757250px;}
.yb7{bottom:713.229000px;}
.yef{bottom:713.363850px;}
.ya8{bottom:713.364000px;}
.y3e{bottom:713.367600px;}
.y80{bottom:713.382600px;}
.y4b{bottom:713.517600px;}
.y137{bottom:714.458051px;}
.y17f{bottom:724.796700px;}
.y1bf{bottom:724.938300px;}
.y147{bottom:727.412250px;}
.yb6{bottom:731.229000px;}
.yee{bottom:731.363850px;}
.ya7{bottom:731.364000px;}
.y3d{bottom:731.367600px;}
.y7f{bottom:731.382600px;}
.ydb{bottom:734.374950px;}
.y149{bottom:736.462800px;}
.y17e{bottom:739.796700px;}
.y1be{bottom:739.938300px;}
.y14d{bottom:741.408750px;}
.y138{bottom:742.176599px;}
.y148{bottom:742.183050px;}
.y145{bottom:743.065821px;}
.yb{bottom:745.689000px;}
.y150{bottom:746.197500px;}
.yb5{bottom:749.229000px;}
.yed{bottom:749.363850px;}
.ya6{bottom:749.364000px;}
.y3c{bottom:749.367600px;}
.y7e{bottom:749.382600px;}
.y17d{bottom:754.796700px;}
.y1bd{bottom:754.938300px;}
.ya{bottom:760.089000px;}
.yb4{bottom:767.229000px;}
.yec{bottom:767.363850px;}
.ya5{bottom:767.364000px;}
.y3b{bottom:767.367600px;}
.y7d{bottom:767.382600px;}
.y17c{bottom:769.796700px;}
.y1bc{bottom:769.938300px;}
.y123{bottom:776.959050px;}
.y12c{bottom:777.053400px;}
.y1bb{bottom:784.938300px;}
.yb3{bottom:785.229000px;}
.yeb{bottom:785.363850px;}
.ya4{bottom:785.364000px;}
.y3a{bottom:785.367600px;}
.y7c{bottom:785.382000px;}
.y9{bottom:787.244550px;}
.y1ba{bottom:799.938300px;}
.y122{bottom:801.548700px;}
.y12b{bottom:801.643950px;}
.y17b{bottom:803.228850px;}
.yea{bottom:803.363850px;}
.ya3{bottom:803.364000px;}
.y39{bottom:803.367600px;}
.y7b{bottom:803.382600px;}
.y117{bottom:810.200100px;}
.y125{bottom:814.196100px;}
.y1b9{bottom:814.938300px;}
.yb2{bottom:821.229000px;}
.ye9{bottom:821.363850px;}
.ya2{bottom:821.364000px;}
.y38{bottom:821.367600px;}
.y7a{bottom:821.382600px;}
.y8{bottom:821.744550px;}
.y110{bottom:827.871450px;}
.y1b8{bottom:829.938300px;}
.y118{bottom:834.789584px;}
.ye8{bottom:839.363850px;}
.ya1{bottom:839.364000px;}
.y37{bottom:839.367600px;}
.y79{bottom:839.382600px;}
.y7{bottom:842.362500px;}
.y1b7{bottom:844.938300px;}
.y126{bottom:855.417428px;}
.ye7{bottom:857.363850px;}
.ya0{bottom:857.364000px;}
.y36{bottom:857.367600px;}
.y78{bottom:857.382600px;}
.y6{bottom:857.631300px;}
.y119{bottom:859.387745px;}
.y1b6{bottom:859.938300px;}
.y116{bottom:865.506000px;}
.y1b5{bottom:874.938300px;}
.ye6{bottom:875.363850px;}
.y9f{bottom:875.364000px;}
.y35{bottom:875.367600px;}
.y77{bottom:875.382600px;}
.y5{bottom:880.879800px;}
.y11a{bottom:883.916494px;}
.y1b4{bottom:889.938300px;}
.y44{bottom:893.232600px;}
.ye5{bottom:893.363850px;}
.y9e{bottom:893.364000px;}
.y34{bottom:893.367600px;}
.y76{bottom:893.382600px;}
.y127{bottom:899.673072px;}
.y124{bottom:901.927050px;}
.y1b3{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.y11b{bottom:908.505978px;}
.ye4{bottom:911.363850px;}
.y9d{bottom:911.364000px;}
.y33{bottom:911.367600px;}
.y75{bottom:911.382600px;}
.y1b2{bottom:919.938300px;}
.ye3{bottom:929.363850px;}
.y9c{bottom:929.364000px;}
.y32{bottom:929.367600px;}
.y74{bottom:929.382600px;}
.y11c{bottom:933.034726px;}
.y1b1{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y128{bottom:943.803589px;}
.ye2{bottom:947.363850px;}
.y9b{bottom:947.364000px;}
.y31{bottom:947.367600px;}
.y73{bottom:947.382600px;}
.y1b0{bottom:949.938300px;}
.y11d{bottom:957.624211px;}
.y1af{bottom:964.938300px;}
.ye1{bottom:965.363850px;}
.y9a{bottom:965.364000px;}
.y30{bottom:965.367600px;}
.y72{bottom:965.382600px;}
.y1ae{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y11e{bottom:982.152959px;}
.ye0{bottom:983.363850px;}
.y99{bottom:983.364000px;}
.y2f{bottom:983.367600px;}
.y71{bottom:983.382600px;}
.y129{bottom:988.059233px;}
.y1ad{bottom:994.938300px;}
.ydf{bottom:1001.363850px;}
.y98{bottom:1001.364000px;}
.y2e{bottom:1001.367600px;}
.y70{bottom:1001.382600px;}
.y11f{bottom:1006.751120px;}
.y1ac{bottom:1009.938300px;}
.yde{bottom:1019.363850px;}
.y97{bottom:1019.364000px;}
.y2d{bottom:1019.367600px;}
.y6f{bottom:1019.382600px;}
.y121{bottom:1023.059400px;}
.y12e{bottom:1024.891950px;}
.y1ab{bottom:1024.938300px;}
.y120{bottom:1031.340604px;}
.y12a{bottom:1032.314876px;}
.y151{bottom:1034.059650px;}
.y14f{bottom:1035.469500px;}
.y12d{bottom:1035.941250px;}
.ydd{bottom:1037.363850px;}
.y96{bottom:1037.364000px;}
.y2c{bottom:1037.367600px;}
.y6e{bottom:1037.382600px;}
.y1aa{bottom:1039.938300px;}
.yda{bottom:1039.954950px;}
.y29{bottom:1070.769450px;}
.y4a{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h7{height:20.967187px;}
.h1b{height:22.789134px;}
.h19{height:25.284155px;}
.h1a{height:25.320872px;}
.h1e{height:25.346224px;}
.h1f{height:27.853046px;}
.h1d{height:27.853154px;}
.h18{height:30.385221px;}
.h1c{height:30.451662px;}
.h2{height:30.597656px;}
.h8{height:34.945312px;}
.ha{height:34.947787px;}
.h12{height:34.968750px;}
.h9{height:34.992188px;}
.h22{height:34.993387px;}
.h20{height:35.449570px;}
.hf{height:37.154297px;}
.he{height:37.179199px;}
.h21{height:42.240000px;}
.hb{height:43.681641px;}
.hd{height:43.710938px;}
.hc{height:43.740234px;}
.h11{height:43.742634px;}
.h10{height:46.807162px;}
.h6{height:51.498619px;}
.h5{height:51.504619px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h15{height:67.464750px;}
.h14{height:67.488187px;}
.h16{height:67.944750px;}
.h17{height:100.944187px;}
.h13{height:287.127000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:338.080500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:10.297050px;}
.x9{left:76.535400px;}
.x1b{left:78.661350px;}
.x25{left:86.893050px;}
.x7{left:96.094500px;}
.x1{left:97.795200px;}
.x26{left:101.673450px;}
.x3f{left:106.295400px;}
.xa{left:110.555400px;}
.x28{left:116.206050px;}
.x5{left:131.816400px;}
.x30{left:137.032303px;}
.x29{left:150.702450px;}
.x36{left:153.650400px;}
.x3{left:161.571600px;}
.x20{left:210.625500px;}
.x4{left:212.876400px;}
.x31{left:215.988454px;}
.x22{left:218.533500px;}
.x23{left:221.101500px;}
.x37{left:236.269800px;}
.x32{left:258.442154px;}
.x1c{left:263.425350px;}
.x1e{left:266.413350px;}
.x24{left:312.529650px;}
.x33{left:336.390970px;}
.x38{left:367.822350px;}
.x34{left:375.695840px;}
.x27{left:385.094400px;}
.x1f{left:423.469350px;}
.x1d{left:424.813350px;}
.x21{left:443.953500px;}
.x8{left:455.041500px;}
.xb{left:457.085400px;}
.x2a{left:460.183650px;}
.x2c{left:470.582896px;}
.x2b{left:474.965400px;}
.x11{left:478.345350px;}
.x6{left:480.476400px;}
.x40{left:486.791400px;}
.x2d{left:489.417450px;}
.xc{left:491.105400px;}
.x3c{left:503.103600px;}
.x3e{left:508.106400px;}
.x12{left:512.365500px;}
.x2e{left:520.437000px;}
.x35{left:523.038600px;}
.xe{left:524.065200px;}
.xd{left:525.275400px;}
.x14{left:531.690150px;}
.x39{left:542.318850px;}
.x3b{left:565.574700px;}
.x1a{left:579.440400px;}
.x3d{left:591.516000px;}
.x13{left:612.910350px;}
.x18{left:621.554700px;}
.x15{left:637.396800px;}
.x3a{left:649.359450px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.xf{left:731.312100px;}
.x16{left:738.856800px;}
.x19{left:752.571900px;}
.x2f{left:765.082050px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v5{vertical-align:-6.191380pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.938667pt;}
.v3{vertical-align:18.293867pt;}
.v1{vertical-align:20.138133pt;}
.v4{vertical-align:28.885333pt;}
.ls51{letter-spacing:-3.157333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls84{letter-spacing:-0.256000pt;}
.ls50{letter-spacing:-0.213333pt;}
.ls86{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls85{letter-spacing:-0.085333pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls75{letter-spacing:-0.042667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls5{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls65{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.106667pt;}
.ls6f{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.298667pt;}
.ls44{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.341333pt;}
.ls2e{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.469333pt;}
.ls36{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls76{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:0.622933pt;}
.ls55{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.682667pt;}
.ls45{letter-spacing:0.693333pt;}
.ls80{letter-spacing:0.725333pt;}
.ls22{letter-spacing:0.746667pt;}
.ls7f{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.853333pt;}
.ls69{letter-spacing:0.896000pt;}
.ls39{letter-spacing:0.906667pt;}
.ls70{letter-spacing:0.938667pt;}
.ls37{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls2f{letter-spacing:1.066667pt;}
.ls78{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls63{letter-spacing:1.152000pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls6e{letter-spacing:1.237333pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls64{letter-spacing:1.322667pt;}
.ls10{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.365333pt;}
.ls9{letter-spacing:1.386667pt;}
.ls12{letter-spacing:1.440000pt;}
.ls77{letter-spacing:1.450667pt;}
.lsb{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.536000pt;}
.ls4e{letter-spacing:1.546667pt;}
.ls6b{letter-spacing:1.578667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls3c{letter-spacing:1.706667pt;}
.ls6c{letter-spacing:1.749333pt;}
.ls14{letter-spacing:1.760000pt;}
.ls25{letter-spacing:1.813333pt;}
.ls73{letter-spacing:1.834667pt;}
.ls58{letter-spacing:1.866667pt;}
.ls7c{letter-spacing:1.877333pt;}
.ls71{letter-spacing:1.920000pt;}
.ls7e{letter-spacing:1.962667pt;}
.ls11{letter-spacing:1.973333pt;}
.ls27{letter-spacing:2.026667pt;}
.ls7a{letter-spacing:2.048000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.133333pt;}
.ls56{letter-spacing:2.186667pt;}
.ls7d{letter-spacing:2.218667pt;}
.lsf{letter-spacing:2.240000pt;}
.ls87{letter-spacing:2.261333pt;}
.ls2d{letter-spacing:2.293333pt;}
.ls3f{letter-spacing:2.346667pt;}
.ls74{letter-spacing:2.389333pt;}
.ls20{letter-spacing:2.400000pt;}
.ls81{letter-spacing:2.432000pt;}
.ls40{letter-spacing:2.453333pt;}
.lse{letter-spacing:2.506667pt;}
.ls49{letter-spacing:2.560000pt;}
.ls4c{letter-spacing:2.666667pt;}
.ls79{letter-spacing:2.688000pt;}
.ls3e{letter-spacing:2.720000pt;}
.ls83{letter-spacing:2.730667pt;}
.ls21{letter-spacing:2.773333pt;}
.ls6d{letter-spacing:2.816000pt;}
.ls28{letter-spacing:2.826667pt;}
.ls46{letter-spacing:2.880000pt;}
.ls57{letter-spacing:2.933333pt;}
.ls32{letter-spacing:2.986667pt;}
.ls8{letter-spacing:3.040000pt;}
.ls54{letter-spacing:3.146667pt;}
.ls43{letter-spacing:3.200000pt;}
.ls82{letter-spacing:3.242667pt;}
.ls13{letter-spacing:3.253333pt;}
.ls1b{letter-spacing:3.306667pt;}
.ls53{letter-spacing:3.360000pt;}
.ls4d{letter-spacing:3.413333pt;}
.ls34{letter-spacing:3.520000pt;}
.ls33{letter-spacing:3.573333pt;}
.ls59{letter-spacing:3.626667pt;}
.ls3a{letter-spacing:3.733333pt;}
.ls5f{letter-spacing:3.840000pt;}
.ls72{letter-spacing:3.925333pt;}
.ls26{letter-spacing:3.946667pt;}
.lsa{letter-spacing:4.000000pt;}
.ls48{letter-spacing:4.106667pt;}
.ls61{letter-spacing:4.160000pt;}
.ls5e{letter-spacing:4.266667pt;}
.ls31{letter-spacing:4.320000pt;}
.ls4a{letter-spacing:4.426667pt;}
.ls35{letter-spacing:4.533333pt;}
.ls3b{letter-spacing:4.800000pt;}
.ls5c{letter-spacing:4.960000pt;}
.ls5d{letter-spacing:5.280000pt;}
.ls60{letter-spacing:5.333333pt;}
.ls47{letter-spacing:5.920000pt;}
.ls62{letter-spacing:10.506667pt;}
.ls4f{letter-spacing:140.501333pt;}
.ls5b{letter-spacing:427.050667pt;}
.ls5a{letter-spacing:1270.741333pt;}
.ws21{word-spacing:-18.133333pt;}
.ws4c{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.413333pt;}
.ws22{word-spacing:-15.253333pt;}
.ws23{word-spacing:-14.826667pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9d{word-spacing:-14.208000pt;}
.ws80{word-spacing:-12.842667pt;}
.ws25{word-spacing:-12.602667pt;}
.ws9e{word-spacing:-12.501333pt;}
.ws9f{word-spacing:-12.160000pt;}
.ws51{word-spacing:-11.861333pt;}
.ws9c{word-spacing:-11.818667pt;}
.ws0{word-spacing:-9.785600pt;}
.ws76{word-spacing:-8.588791pt;}
.ws60{word-spacing:-5.920000pt;}
.ws85{word-spacing:-5.333333pt;}
.ws82{word-spacing:-5.280000pt;}
.ws81{word-spacing:-4.960000pt;}
.ws46{word-spacing:-4.800000pt;}
.ws3f{word-spacing:-4.533333pt;}
.ws63{word-spacing:-4.426667pt;}
.ws3a{word-spacing:-4.320000pt;}
.ws86{word-spacing:-4.160000pt;}
.ws61{word-spacing:-4.106667pt;}
.ws10{word-spacing:-4.000000pt;}
.ws34{word-spacing:-3.946667pt;}
.ws99{word-spacing:-3.925333pt;}
.ws84{word-spacing:-3.840000pt;}
.ws45{word-spacing:-3.733333pt;}
.ws3d{word-spacing:-3.573333pt;}
.ws3e{word-spacing:-3.520000pt;}
.ws68{word-spacing:-3.413333pt;}
.ws6c{word-spacing:-3.360000pt;}
.ws26{word-spacing:-3.306667pt;}
.wsae{word-spacing:-3.242667pt;}
.ws43{word-spacing:-3.200000pt;}
.ws6d{word-spacing:-3.146667pt;}
.wse{word-spacing:-3.040000pt;}
.ws3c{word-spacing:-2.986667pt;}
.ws72{word-spacing:-2.933333pt;}
.ws5f{word-spacing:-2.880000pt;}
.ws36{word-spacing:-2.826667pt;}
.ws93{word-spacing:-2.816000pt;}
.ws2c{word-spacing:-2.773333pt;}
.wsaf{word-spacing:-2.730667pt;}
.ws48{word-spacing:-2.720000pt;}
.wsa3{word-spacing:-2.688000pt;}
.ws67{word-spacing:-2.666667pt;}
.ws62{word-spacing:-2.560000pt;}
.ws14{word-spacing:-2.506667pt;}
.ws6e{word-spacing:-2.453333pt;}
.wsac{word-spacing:-2.432000pt;}
.ws2b{word-spacing:-2.400000pt;}
.ws9b{word-spacing:-2.389333pt;}
.ws3{word-spacing:-2.368000pt;}
.ws49{word-spacing:-2.346667pt;}
.ws39{word-spacing:-2.293333pt;}
.wsb1{word-spacing:-2.261333pt;}
.ws15{word-spacing:-2.240000pt;}
.wsa6{word-spacing:-2.218667pt;}
.ws70{word-spacing:-2.186667pt;}
.ws83{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.080000pt;}
.wsa4{word-spacing:-2.048000pt;}
.ws35{word-spacing:-2.026667pt;}
.ws17{word-spacing:-1.973333pt;}
.wsaa{word-spacing:-1.962667pt;}
.ws71{word-spacing:-1.920000pt;}
.wsa5{word-spacing:-1.877333pt;}
.ws73{word-spacing:-1.866667pt;}
.ws9a{word-spacing:-1.834667pt;}
.ws33{word-spacing:-1.813333pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws92{word-spacing:-1.749333pt;}
.ws47{word-spacing:-1.706667pt;}
.ws31{word-spacing:-1.653333pt;}
.ws4a{word-spacing:-1.600000pt;}
.ws91{word-spacing:-1.578667pt;}
.ws6a{word-spacing:-1.546667pt;}
.ws8a{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.493333pt;}
.wsa1{word-spacing:-1.450667pt;}
.ws19{word-spacing:-1.440000pt;}
.wsf{word-spacing:-1.386667pt;}
.ws90{word-spacing:-1.365333pt;}
.ws16{word-spacing:-1.333333pt;}
.ws88{word-spacing:-1.322667pt;}
.ws66{word-spacing:-1.280000pt;}
.ws94{word-spacing:-1.237333pt;}
.ws2a{word-spacing:-1.226667pt;}
.ws27{word-spacing:-1.173333pt;}
.ws87{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.wsa2{word-spacing:-1.109333pt;}
.ws2e{word-spacing:-1.066667pt;}
.ws4{word-spacing:-1.056000pt;}
.ws38{word-spacing:-1.013333pt;}
.ws8d{word-spacing:-0.981333pt;}
.ws41{word-spacing:-0.960000pt;}
.ws98{word-spacing:-0.938667pt;}
.ws44{word-spacing:-0.906667pt;}
.ws8f{word-spacing:-0.896000pt;}
.ws37{word-spacing:-0.853333pt;}
.ws65{word-spacing:-0.800000pt;}
.ws7f{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.746667pt;}
.wsab{word-spacing:-0.725333pt;}
.ws5e{word-spacing:-0.693333pt;}
.wsb0{word-spacing:-0.682667pt;}
.ws6f{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.597333pt;}
.ws29{word-spacing:-0.586667pt;}
.wsa0{word-spacing:-0.554667pt;}
.ws12{word-spacing:-0.533333pt;}
.ws40{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.384000pt;}
.ws2d{word-spacing:-0.373333pt;}
.ws7{word-spacing:-0.341333pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.298667pt;}
.wsd{word-spacing:-0.266667pt;}
.ws8c{word-spacing:-0.256000pt;}
.ws42{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.160000pt;}
.ws95{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.106667pt;}
.ws89{word-spacing:-0.085333pt;}
.ws13{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws96{word-spacing:0.042667pt;}
.ws32{word-spacing:0.053333pt;}
.wsa9{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.106667pt;}
.wsad{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.213333pt;}
.wsa8{word-spacing:0.256000pt;}
.ws20{word-spacing:0.266667pt;}
.ws6{word-spacing:0.426667pt;}
.ws5{word-spacing:0.469333pt;}
.ws74{word-spacing:1.013333pt;}
.ws97{word-spacing:1.194667pt;}
.ws1b{word-spacing:1.226667pt;}
.ws75{word-spacing:2.293333pt;}
.ws1e{word-spacing:2.560000pt;}
.wsa7{word-spacing:3.669333pt;}
.ws8b{word-spacing:3.882667pt;}
.ws8e{word-spacing:3.925333pt;}
.ws69{word-spacing:4.000000pt;}
.ws1f{word-spacing:4.853333pt;}
.ws11{word-spacing:4.906667pt;}
.ws55{word-spacing:103.893333pt;}
.ws5b{word-spacing:120.917333pt;}
.ws5a{word-spacing:148.522667pt;}
.ws5c{word-spacing:149.674667pt;}
.ws57{word-spacing:157.141333pt;}
.ws59{word-spacing:187.136000pt;}
.ws58{word-spacing:203.178667pt;}
.ws56{word-spacing:210.474667pt;}
.ws7e{word-spacing:211.541333pt;}
.ws79{word-spacing:235.264000pt;}
.ws54{word-spacing:249.472000pt;}
.ws3b{word-spacing:263.210667pt;}
.ws7a{word-spacing:302.720000pt;}
.ws7b{word-spacing:339.456000pt;}
.ws7c{word-spacing:353.536000pt;}
.ws4e{word-spacing:373.376000pt;}
.ws50{word-spacing:374.997333pt;}
.ws53{word-spacing:381.269333pt;}
.ws4d{word-spacing:385.237333pt;}
.ws78{word-spacing:396.672000pt;}
.ws4f{word-spacing:431.573333pt;}
.ws52{word-spacing:437.888000pt;}
.ws7d{word-spacing:859.946667pt;}
.ws77{word-spacing:1263.018667pt;}
._e{margin-left:-2576.112000pt;}
._17{margin-left:-2554.941333pt;}
._47{margin-left:-10.485333pt;}
._a{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.029333pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.981333pt;}
._2{width:1.087467pt;}
._c{width:2.448000pt;}
._6{width:3.584000pt;}
._4{width:4.522667pt;}
._7{width:6.037333pt;}
._b{width:6.944000pt;}
._8{width:7.840000pt;}
._9{width:8.906667pt;}
._d{width:9.920000pt;}
._18{width:10.906667pt;}
._11{width:13.600000pt;}
._f{width:18.880000pt;}
._10{width:20.245333pt;}
._13{width:21.216000pt;}
._12{width:33.498667pt;}
._39{width:40.849409pt;}
._37{width:44.349816pt;}
._23{width:55.157333pt;}
._14{width:57.328000pt;}
._31{width:61.171968pt;}
._22{width:63.445333pt;}
._29{width:71.338667pt;}
._32{width:86.413129pt;}
._2b{width:98.048000pt;}
._30{width:104.023241pt;}
._34{width:112.612032pt;}
._2e{width:116.437333pt;}
._2c{width:131.370667pt;}
._25{width:142.592000pt;}
._2f{width:149.802667pt;}
._26{width:161.536000pt;}
._2d{width:169.946667pt;}
._24{width:197.290667pt;}
._28{width:198.570667pt;}
._1b{width:201.605333pt;}
._27{width:203.733333pt;}
._16{width:229.632000pt;}
._2a{width:240.512000pt;}
._35{width:245.282466pt;}
._40{width:247.125333pt;}
._33{width:254.513925pt;}
._1c{width:259.669333pt;}
._1a{width:261.589333pt;}
._38{width:267.390308pt;}
._3b{width:279.722667pt;}
._15{width:295.594667pt;}
._19{width:302.336000pt;}
._43{width:341.674667pt;}
._44{width:351.317333pt;}
._1d{width:365.141333pt;}
._46{width:368.426667pt;}
._20{width:375.808000pt;}
._36{width:426.234017pt;}
._21{width:443.434667pt;}
._1f{width:448.128000pt;}
._1e{width:455.296000pt;}
._45{width:621.013333pt;}
._3a{width:685.141333pt;}
._3f{width:759.082667pt;}
._41{width:777.258667pt;}
._42{width:812.842667pt;}
._3c{width:916.821333pt;}
._3d{width:952.405333pt;}
._3e{width:971.098667pt;}
.fs5{font-size:25.600000pt;}
.fsd{font-size:27.805867pt;}
.fsb{font-size:30.850133pt;}
.fsc{font-size:30.894933pt;}
.fs10{font-size:30.925867pt;}
.fs9{font-size:32.000000pt;}
.fs11{font-size:33.984533pt;}
.fsf{font-size:33.984664pt;}
.fs4{font-size:35.200000pt;}
.fsa{font-size:37.074133pt;}
.fse{font-size:37.155200pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs12{font-size:43.253333pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y92{bottom:66.197867pt;}
.y1{bottom:73.250400pt;}
.y95{bottom:73.852533pt;}
.y17a{bottom:73.981200pt;}
.yd9{bottom:74.079067pt;}
.y10f{bottom:74.101200pt;}
.y2a{bottom:74.216800pt;}
.y6d{bottom:74.237867pt;}
.y48{bottom:74.240933pt;}
.yd6{bottom:82.897733pt;}
.y1a9{bottom:84.263733pt;}
.y94{bottom:87.847200pt;}
.yd8{bottom:88.073733pt;}
.y179{bottom:89.981200pt;}
.y10e{bottom:90.101200pt;}
.y6c{bottom:90.237867pt;}
.y1a8{bottom:97.597067pt;}
.yd7{bottom:102.068400pt;}
.yd4{bottom:103.015067pt;}
.y15e{bottom:103.405067pt;}
.y10d{bottom:106.101200pt;}
.y6b{bottom:106.237867pt;}
.y18{bottom:108.011733pt;}
.y91{bottom:108.744000pt;}
.y1a7{bottom:110.930400pt;}
.y93{bottom:112.207467pt;}
.y15d{bottom:119.362400pt;}
.y178{bottom:121.981200pt;}
.y10c{bottom:122.101200pt;}
.y6a{bottom:122.237867pt;}
.yd5{bottom:123.132400pt;}
.y1a6{bottom:124.263733pt;}
.y15c{bottom:135.319733pt;}
.y1a5{bottom:137.597067pt;}
.y177{bottom:137.981200pt;}
.y10b{bottom:138.101200pt;}
.y69{bottom:138.237867pt;}
.y8e{bottom:142.040800pt;}
.yd3{bottom:148.924400pt;}
.yd2{bottom:148.935067pt;}
.y1a4{bottom:150.930400pt;}
.y15b{bottom:151.277067pt;}
.y176{bottom:153.981200pt;}
.y10a{bottom:154.101200pt;}
.y68{bottom:154.237867pt;}
.yd1{bottom:156.273733pt;}
.y1a3{bottom:164.263733pt;}
.y26{bottom:165.191067pt;}
.y15a{bottom:167.234400pt;}
.y175{bottom:169.981200pt;}
.y109{bottom:170.101200pt;}
.y67{bottom:170.237867pt;}
.y1a2{bottom:177.597067pt;}
.y25{bottom:181.191067pt;}
.y159{bottom:183.191733pt;}
.y174{bottom:185.981200pt;}
.y108{bottom:186.101200pt;}
.y66{bottom:186.237867pt;}
.y49{bottom:187.948800pt;}
.y1a1{bottom:190.930400pt;}
.y112{bottom:191.161333pt;}
.yd0{bottom:192.330267pt;}
.y24{bottom:197.191067pt;}
.y158{bottom:199.149067pt;}
.y107{bottom:202.101200pt;}
.y65{bottom:202.237867pt;}
.y1a0{bottom:204.263733pt;}
.ycf{bottom:209.663600pt;}
.y23{bottom:213.191067pt;}
.y157{bottom:215.106400pt;}
.y19f{bottom:217.597067pt;}
.y173{bottom:217.981200pt;}
.y106{bottom:218.101200pt;}
.y64{bottom:218.237867pt;}
.y22{bottom:229.191067pt;}
.y19e{bottom:230.930400pt;}
.y172{bottom:233.981200pt;}
.y105{bottom:234.101200pt;}
.y63{bottom:234.237867pt;}
.y19d{bottom:244.263733pt;}
.y1dd{bottom:244.389600pt;}
.y21{bottom:245.191067pt;}
.y156{bottom:246.903733pt;}
.y171{bottom:249.981200pt;}
.y104{bottom:250.101200pt;}
.y62{bottom:250.237867pt;}
.y19c{bottom:257.597067pt;}
.y1dc{bottom:257.722933pt;}
.y90{bottom:258.486800pt;}
.yce{bottom:259.967200pt;}
.y20{bottom:261.191067pt;}
.ycc{bottom:264.351200pt;}
.y170{bottom:265.981200pt;}
.y103{bottom:266.101200pt;}
.y61{bottom:266.237867pt;}
.y19b{bottom:270.930400pt;}
.y1db{bottom:271.056267pt;}
.y8f{bottom:272.289467pt;}
.ycd{bottom:274.409867pt;}
.y1f{bottom:277.191067pt;}
.yc9{bottom:278.793867pt;}
.y155{bottom:281.632133pt;}
.y16f{bottom:281.981200pt;}
.y102{bottom:282.101200pt;}
.y60{bottom:282.237867pt;}
.y19a{bottom:284.263733pt;}
.y1da{bottom:284.389600pt;}
.ycb{bottom:288.852533pt;}
.y1e{bottom:293.191067pt;}
.yca{bottom:296.073867pt;}
.y199{bottom:297.597067pt;}
.y1d9{bottom:297.722933pt;}
.y16e{bottom:297.981200pt;}
.y101{bottom:298.101200pt;}
.y5f{bottom:298.237867pt;}
.y154{bottom:298.965467pt;}
.y1d{bottom:309.191067pt;}
.y198{bottom:310.930400pt;}
.y1d8{bottom:311.056267pt;}
.y16d{bottom:313.981200pt;}
.y100{bottom:314.101200pt;}
.y5e{bottom:314.237867pt;}
.y153{bottom:316.298800pt;}
.yc8{bottom:317.748533pt;}
.y197{bottom:324.263733pt;}
.y1d7{bottom:324.389600pt;}
.yc7{bottom:324.969867pt;}
.y1c{bottom:325.191067pt;}
.y16c{bottom:329.981200pt;}
.yff{bottom:330.101200pt;}
.y5d{bottom:330.237867pt;}
.y152{bottom:333.632133pt;}
.y196{bottom:337.597067pt;}
.y1d6{bottom:337.722933pt;}
.yc4{bottom:339.423200pt;}
.y1b{bottom:341.191067pt;}
.y16b{bottom:345.981200pt;}
.yfe{bottom:346.101200pt;}
.y5c{bottom:346.237867pt;}
.yc6{bottom:346.644533pt;}
.y195{bottom:350.930400pt;}
.y1d5{bottom:351.056267pt;}
.yc5{bottom:353.865867pt;}
.y1a{bottom:357.191067pt;}
.y16a{bottom:361.981200pt;}
.yfd{bottom:362.101200pt;}
.y5b{bottom:362.237867pt;}
.y194{bottom:364.263733pt;}
.y1e2{bottom:364.389333pt;}
.y1d4{bottom:364.389600pt;}
.y27{bottom:373.191067pt;}
.y193{bottom:377.597067pt;}
.y1e1{bottom:377.722667pt;}
.y1d3{bottom:377.722933pt;}
.y169{bottom:377.981200pt;}
.yfc{bottom:378.101200pt;}
.y5a{bottom:378.237867pt;}
.y115{bottom:382.110533pt;}
.ydc{bottom:382.601733pt;}
.yc3{bottom:389.097867pt;}
.y19{bottom:389.191067pt;}
.y192{bottom:390.930400pt;}
.y1e0{bottom:391.056000pt;}
.y1d2{bottom:391.056267pt;}
.y168{bottom:393.981200pt;}
.y8d{bottom:393.997867pt;}
.yfb{bottom:394.101200pt;}
.y59{bottom:394.237867pt;}
.y114{bottom:396.105200pt;}
.y191{bottom:404.263733pt;}
.y1df{bottom:404.389333pt;}
.y1d1{bottom:404.389600pt;}
.y8c{bottom:409.997867pt;}
.y113{bottom:410.099867pt;}
.yfa{bottom:410.101200pt;}
.y58{bottom:410.237867pt;}
.y190{bottom:417.597067pt;}
.y1de{bottom:417.722667pt;}
.y1d0{bottom:417.722933pt;}
.yc2{bottom:420.048000pt;}
.y167{bottom:425.981200pt;}
.y8b{bottom:425.997867pt;}
.yf9{bottom:426.101200pt;}
.y57{bottom:426.237867pt;}
.y18f{bottom:430.930400pt;}
.y1cf{bottom:431.056267pt;}
.y139{bottom:434.340400pt;}
.y146{bottom:435.088000pt;}
.y13a{bottom:435.766515pt;}
.y13b{bottom:436.652782pt;}
.yc1{bottom:437.381333pt;}
.y13d{bottom:438.639145pt;}
.y13c{bottom:439.957268pt;}
.y13e{bottom:440.759290pt;}
.y166{bottom:441.981200pt;}
.y8a{bottom:441.997867pt;}
.yf8{bottom:442.101200pt;}
.y56{bottom:442.237867pt;}
.y18e{bottom:444.263733pt;}
.y1ce{bottom:444.389600pt;}
.y14e{bottom:453.634933pt;}
.y17{bottom:456.967600pt;}
.y18d{bottom:457.597067pt;}
.y1cd{bottom:457.722933pt;}
.y165{bottom:457.981200pt;}
.y89{bottom:457.997867pt;}
.yf7{bottom:458.101200pt;}
.y55{bottom:458.237867pt;}
.y130{bottom:462.649200pt;}
.y140{bottom:463.427867pt;}
.y111{bottom:465.177067pt;}
.y18c{bottom:470.930400pt;}
.y1cc{bottom:471.056267pt;}
.y164{bottom:473.981200pt;}
.y88{bottom:473.997867pt;}
.yf6{bottom:474.101200pt;}
.y54{bottom:474.237867pt;}
.y18b{bottom:484.263733pt;}
.y1cb{bottom:484.389600pt;}
.y16{bottom:486.172933pt;}
.y131{bottom:487.295633pt;}
.y163{bottom:489.981200pt;}
.yc0{bottom:489.981333pt;}
.yf5{bottom:490.101200pt;}
.yb1{bottom:490.101333pt;}
.y53{bottom:490.237867pt;}
.y18a{bottom:497.597067pt;}
.y1ca{bottom:497.722933pt;}
.y15{bottom:499.506267pt;}
.y141{bottom:502.866078pt;}
.y162{bottom:505.981200pt;}
.ybf{bottom:505.981333pt;}
.y87{bottom:505.997867pt;}
.yf4{bottom:506.101200pt;}
.yb0{bottom:506.101333pt;}
.y52{bottom:506.237867pt;}
.y189{bottom:510.930400pt;}
.y1c9{bottom:511.056267pt;}
.y132{bottom:511.934342pt;}
.y12f{bottom:512.775467pt;}
.y14{bottom:512.839600pt;}
.y161{bottom:521.981200pt;}
.ybe{bottom:521.981333pt;}
.yf3{bottom:522.101200pt;}
.yaf{bottom:522.101333pt;}
.y51{bottom:522.237867pt;}
.y188{bottom:524.263733pt;}
.y1c8{bottom:524.389600pt;}
.y13{bottom:526.172933pt;}
.y13f{bottom:531.400533pt;}
.y133{bottom:536.573052pt;}
.y187{bottom:537.597067pt;}
.y1c7{bottom:537.722933pt;}
.y160{bottom:537.981200pt;}
.ybd{bottom:537.981333pt;}
.y86{bottom:538.079200pt;}
.yf2{bottom:538.101200pt;}
.yae{bottom:538.101333pt;}
.y50{bottom:538.237867pt;}
.y12{bottom:539.506267pt;}
.y142{bottom:542.304290pt;}
.y186{bottom:550.930400pt;}
.y1c6{bottom:551.056267pt;}
.y11{bottom:552.839600pt;}
.ybc{bottom:553.981333pt;}
.y47{bottom:554.101200pt;}
.yad{bottom:554.101333pt;}
.y43{bottom:554.104533pt;}
.y85{bottom:554.117867pt;}
.y4f{bottom:554.237867pt;}
.y134{bottom:561.157695pt;}
.y185{bottom:564.263733pt;}
.y1c5{bottom:564.389600pt;}
.y10{bottom:566.172933pt;}
.y15f{bottom:569.981200pt;}
.ybb{bottom:569.981333pt;}
.y46{bottom:570.101200pt;}
.yac{bottom:570.101333pt;}
.y42{bottom:570.104533pt;}
.y84{bottom:570.117867pt;}
.y4e{bottom:570.237867pt;}
.y14a{bottom:576.064533pt;}
.y184{bottom:577.597067pt;}
.y1c4{bottom:577.722933pt;}
.yf{bottom:579.506267pt;}
.y143{bottom:581.626529pt;}
.y135{bottom:585.796404pt;}
.yba{bottom:585.981333pt;}
.y45{bottom:586.101200pt;}
.yab{bottom:586.101333pt;}
.y41{bottom:586.104533pt;}
.y83{bottom:586.117867pt;}
.y4d{bottom:586.237867pt;}
.y183{bottom:590.930400pt;}
.y1c3{bottom:591.056267pt;}
.y14c{bottom:591.118000pt;}
.ye{bottom:592.839600pt;}
.yb9{bottom:601.981333pt;}
.yf1{bottom:602.101200pt;}
.yaa{bottom:602.101333pt;}
.y40{bottom:602.104533pt;}
.y82{bottom:602.117867pt;}
.y4c{bottom:602.237867pt;}
.y182{bottom:604.263733pt;}
.y1c2{bottom:604.389600pt;}
.yd{bottom:606.172933pt;}
.y136{bottom:610.435114pt;}
.y181{bottom:617.597067pt;}
.y1c1{bottom:617.722933pt;}
.yb8{bottom:617.981333pt;}
.yf0{bottom:618.101200pt;}
.ya9{bottom:618.101333pt;}
.y3f{bottom:618.104533pt;}
.y81{bottom:618.117867pt;}
.yc{bottom:619.506267pt;}
.y144{bottom:621.064741pt;}
.y180{bottom:630.930400pt;}
.y1c0{bottom:631.056267pt;}
.y14b{bottom:633.562000pt;}
.yb7{bottom:633.981333pt;}
.yef{bottom:634.101200pt;}
.ya8{bottom:634.101333pt;}
.y3e{bottom:634.104533pt;}
.y80{bottom:634.117867pt;}
.y4b{bottom:634.237867pt;}
.y137{bottom:635.073823pt;}
.y17f{bottom:644.263733pt;}
.y1bf{bottom:644.389600pt;}
.y147{bottom:646.588667pt;}
.yb6{bottom:649.981333pt;}
.yee{bottom:650.101200pt;}
.ya7{bottom:650.101333pt;}
.y3d{bottom:650.104533pt;}
.y7f{bottom:650.117867pt;}
.ydb{bottom:652.777733pt;}
.y149{bottom:654.633600pt;}
.y17e{bottom:657.597067pt;}
.y1be{bottom:657.722933pt;}
.y14d{bottom:659.030000pt;}
.y138{bottom:659.712532pt;}
.y148{bottom:659.718267pt;}
.y145{bottom:660.502952pt;}
.yb{bottom:662.834667pt;}
.y150{bottom:663.286667pt;}
.yb5{bottom:665.981333pt;}
.yed{bottom:666.101200pt;}
.ya6{bottom:666.101333pt;}
.y3c{bottom:666.104533pt;}
.y7e{bottom:666.117867pt;}
.y17d{bottom:670.930400pt;}
.y1bd{bottom:671.056267pt;}
.ya{bottom:675.634667pt;}
.yb4{bottom:681.981333pt;}
.yec{bottom:682.101200pt;}
.ya5{bottom:682.101333pt;}
.y3b{bottom:682.104533pt;}
.y7d{bottom:682.117867pt;}
.y17c{bottom:684.263733pt;}
.y1bc{bottom:684.389600pt;}
.y123{bottom:690.630267pt;}
.y12c{bottom:690.714133pt;}
.y1bb{bottom:697.722933pt;}
.yb3{bottom:697.981333pt;}
.yeb{bottom:698.101200pt;}
.ya4{bottom:698.101333pt;}
.y3a{bottom:698.104533pt;}
.y7c{bottom:698.117333pt;}
.y9{bottom:699.772933pt;}
.y1ba{bottom:711.056267pt;}
.y122{bottom:712.487733pt;}
.y12b{bottom:712.572400pt;}
.y17b{bottom:713.981200pt;}
.yea{bottom:714.101200pt;}
.ya3{bottom:714.101333pt;}
.y39{bottom:714.104533pt;}
.y7b{bottom:714.117867pt;}
.y117{bottom:720.177867pt;}
.y125{bottom:723.729867pt;}
.y1b9{bottom:724.389600pt;}
.yb2{bottom:729.981333pt;}
.ye9{bottom:730.101200pt;}
.ya2{bottom:730.101333pt;}
.y38{bottom:730.104533pt;}
.y7a{bottom:730.117867pt;}
.y8{bottom:730.439600pt;}
.y110{bottom:735.885733pt;}
.y1b8{bottom:737.722933pt;}
.y118{bottom:742.035186pt;}
.ye8{bottom:746.101200pt;}
.ya1{bottom:746.101333pt;}
.y37{bottom:746.104533pt;}
.y79{bottom:746.117867pt;}
.y7{bottom:748.766667pt;}
.y1b7{bottom:751.056267pt;}
.y126{bottom:760.371047pt;}
.ye7{bottom:762.101200pt;}
.ya0{bottom:762.101333pt;}
.y36{bottom:762.104533pt;}
.y78{bottom:762.117867pt;}
.y6{bottom:762.338933pt;}
.y119{bottom:763.900218pt;}
.y1b6{bottom:764.389600pt;}
.y116{bottom:769.338667pt;}
.y1b5{bottom:777.722933pt;}
.ye6{bottom:778.101200pt;}
.y9f{bottom:778.101333pt;}
.y35{bottom:778.104533pt;}
.y77{bottom:778.117867pt;}
.y5{bottom:783.004267pt;}
.y11a{bottom:785.703550pt;}
.y1b4{bottom:791.056267pt;}
.y44{bottom:793.984533pt;}
.ye5{bottom:794.101200pt;}
.y9e{bottom:794.101333pt;}
.y34{bottom:794.104533pt;}
.y76{bottom:794.117867pt;}
.y127{bottom:799.709397pt;}
.y124{bottom:801.712933pt;}
.y1b3{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.y11b{bottom:807.560869pt;}
.ye4{bottom:810.101200pt;}
.y9d{bottom:810.101333pt;}
.y33{bottom:810.104533pt;}
.y75{bottom:810.117867pt;}
.y1b2{bottom:817.722933pt;}
.ye3{bottom:826.101200pt;}
.y9c{bottom:826.101333pt;}
.y32{bottom:826.104533pt;}
.y74{bottom:826.117867pt;}
.y11c{bottom:829.364201pt;}
.y1b1{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y128{bottom:838.936524pt;}
.ye2{bottom:842.101200pt;}
.y9b{bottom:842.101333pt;}
.y31{bottom:842.104533pt;}
.y73{bottom:842.117867pt;}
.y1b0{bottom:844.389600pt;}
.y11d{bottom:851.221521pt;}
.y1af{bottom:857.722933pt;}
.ye1{bottom:858.101200pt;}
.y9a{bottom:858.101333pt;}
.y30{bottom:858.104533pt;}
.y72{bottom:858.117867pt;}
.y1ae{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y11e{bottom:873.024852pt;}
.ye0{bottom:874.101200pt;}
.y99{bottom:874.101333pt;}
.y2f{bottom:874.104533pt;}
.y71{bottom:874.117867pt;}
.y129{bottom:878.274874pt;}
.y1ad{bottom:884.389600pt;}
.ydf{bottom:890.101200pt;}
.y98{bottom:890.101333pt;}
.y2e{bottom:890.104533pt;}
.y70{bottom:890.117867pt;}
.y11f{bottom:894.889884pt;}
.y1ac{bottom:897.722933pt;}
.yde{bottom:906.101200pt;}
.y97{bottom:906.101333pt;}
.y2d{bottom:906.104533pt;}
.y6f{bottom:906.117867pt;}
.y121{bottom:909.386133pt;}
.y12e{bottom:911.015067pt;}
.y1ab{bottom:911.056267pt;}
.y120{bottom:916.747204pt;}
.y12a{bottom:917.613223pt;}
.y151{bottom:919.164133pt;}
.y14f{bottom:920.417333pt;}
.y12d{bottom:920.836667pt;}
.ydd{bottom:922.101200pt;}
.y96{bottom:922.101333pt;}
.y2c{bottom:922.104533pt;}
.y6e{bottom:922.117867pt;}
.y1aa{bottom:924.389600pt;}
.yda{bottom:924.404400pt;}
.y29{bottom:951.795067pt;}
.y4a{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h7{height:18.637500pt;}
.h1b{height:20.257008pt;}
.h19{height:22.474804pt;}
.h1a{height:22.507442pt;}
.h1e{height:22.529977pt;}
.h1f{height:24.758264pt;}
.h1d{height:24.758359pt;}
.h18{height:27.009085pt;}
.h1c{height:27.068144pt;}
.h2{height:27.197917pt;}
.h8{height:31.062500pt;}
.ha{height:31.064700pt;}
.h12{height:31.083333pt;}
.h9{height:31.104167pt;}
.h22{height:31.105233pt;}
.h20{height:31.510729pt;}
.hf{height:33.026042pt;}
.he{height:33.048177pt;}
.h21{height:37.546667pt;}
.hb{height:38.828125pt;}
.hd{height:38.854167pt;}
.hc{height:38.880208pt;}
.h11{height:38.882342pt;}
.h10{height:41.606367pt;}
.h6{height:45.776550pt;}
.h5{height:45.781883pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h15{height:59.968667pt;}
.h14{height:59.989500pt;}
.h16{height:60.395333pt;}
.h17{height:89.728167pt;}
.h13{height:255.224000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:300.516000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:9.152933pt;}
.x9{left:68.031467pt;}
.x1b{left:69.921200pt;}
.x25{left:77.238267pt;}
.x7{left:85.417333pt;}
.x1{left:86.929067pt;}
.x26{left:90.376400pt;}
.x3f{left:94.484800pt;}
.xa{left:98.271467pt;}
.x28{left:103.294267pt;}
.x5{left:117.170133pt;}
.x30{left:121.806491pt;}
.x29{left:133.957733pt;}
.x36{left:136.578133pt;}
.x3{left:143.619200pt;}
.x20{left:187.222667pt;}
.x4{left:189.223467pt;}
.x31{left:191.989737pt;}
.x22{left:194.252000pt;}
.x23{left:196.534667pt;}
.x37{left:210.017600pt;}
.x32{left:229.726359pt;}
.x1c{left:234.155867pt;}
.x1e{left:236.811867pt;}
.x24{left:277.804133pt;}
.x33{left:299.014196pt;}
.x38{left:326.953200pt;}
.x34{left:333.951858pt;}
.x27{left:342.306133pt;}
.x1f{left:376.417200pt;}
.x1d{left:377.611867pt;}
.x21{left:394.625333pt;}
.x8{left:404.481333pt;}
.xb{left:406.298133pt;}
.x2a{left:409.052133pt;}
.x2c{left:418.295907pt;}
.x2b{left:422.191467pt;}
.x11{left:425.195867pt;}
.x6{left:427.090133pt;}
.x40{left:432.703467pt;}
.x2d{left:435.037733pt;}
.xc{left:436.538133pt;}
.x3c{left:447.203200pt;}
.x3e{left:451.650133pt;}
.x12{left:455.436000pt;}
.x2e{left:462.610667pt;}
.x35{left:464.923200pt;}
.xe{left:465.835733pt;}
.xd{left:466.911467pt;}
.x14{left:472.613467pt;}
.x39{left:482.061200pt;}
.x3b{left:502.733067pt;}
.x1a{left:515.058133pt;}
.x3d{left:525.792000pt;}
.x13{left:544.809200pt;}
.x18{left:552.493067pt;}
.x15{left:566.574933pt;}
.x3a{left:577.208400pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.xf{left:650.055200pt;}
.x16{left:656.761600pt;}
.x19{left:668.952800pt;}
.x2f{left:680.072933pt;}
}




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