
    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_f7554b1f67fff2637f610270.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_72a4a0ca6d2fdd26f0001cca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_40775e38e1f1807e6c548ba0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_7e0cdf4c826fdd94168c8e6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_d9fd298db09ac4901e86d12e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_e25c6d34c300b164cc281140.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_d5c7eeec2faafbcb966fcbc5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_025253eb58299ce692cb9ebf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_a517165f4bfcd679ca277f3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_4abaa44667d48d648059d32b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_fb7ae30293c48e69b2d68614.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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:ffe;src:url('chunks/assets/font_9c12fc1e5b3d5941e95f45cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:fff;src:url('chunks/assets/font_b7d81ee9cbd706fa16b20240.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;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:ff10;src:url('chunks/assets/font_b7d81ee9cbd706fa16b20240.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.710000;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:ff11;src:url('chunks/assets/font_16aabf257017b18a733e8308.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.025879;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:ff12;src:url('chunks/assets/font_1e991d10a5b7653929abe496.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b7d81ee9cbd706fa16b20240.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.710000;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:ff14;src:url('chunks/assets/font_cc6241ec718906248366c5a0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.840332;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:ff15;src:url('chunks/assets/font_b7d81ee9cbd706fa16b20240.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.710000;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:ff16;src:url('chunks/assets/font_1e991d10a5b7653929abe496.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_79b44f2c1ab0796ede3b3054.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.682129;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:ff18;src:url('chunks/assets/font_b7d81ee9cbd706fa16b20240.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.710000;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:ff19;src:url('chunks/assets/font_1e991d10a5b7653929abe496.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8963d2e959028ffd4a3d50bf.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.680176;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:ff1b;src:url('chunks/assets/font_2e937d389bace7b91edfa103.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.934000;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,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);}
.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);}
.v5{vertical-align:-47.400000px;}
.v2{vertical-align:-17.820000px;}
.v4{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:16.200000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v6{vertical-align:49.800000px;}
.v8{vertical-align:56.400000px;}
.ls11{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.408450px;}
.ls7{letter-spacing:0.409050px;}
.lsa{letter-spacing:0.409500px;}
.ls8{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls18{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lse{letter-spacing:9.157200px;}
.lsf{letter-spacing:9.157800px;}
.ls15{letter-spacing:15.060000px;}
.ls14{letter-spacing:61.560000px;}
.ls6{letter-spacing:71.944200px;}
.ls9{letter-spacing:77.583000px;}
.ls12{letter-spacing:87.060000px;}
.ls13{letter-spacing:124.560000px;}
.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;}
}
.wse1{word-spacing:-48.000000px;}
.ws1{word-spacing:-13.986000px;}
.wse4{word-spacing:-13.380000px;}
.ws100{word-spacing:-13.332000px;}
.wsf1{word-spacing:-12.726000px;}
.ws6{word-spacing:-12.720000px;}
.ws7{word-spacing:-12.120000px;}
.ws102{word-spacing:-11.556000px;}
.wsf2{word-spacing:-11.448000px;}
.ws11a{word-spacing:-10.368000px;}
.ws103{word-spacing:-9.936000px;}
.ws101{word-spacing:-9.828000px;}
.wsb{word-spacing:-9.810000px;}
.ws8{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.wsdf{word-spacing:-9.264000px;}
.ws2{word-spacing:-9.090900px;}
.wsc{word-spacing:-8.910000px;}
.ws9{word-spacing:-8.820000px;}
.ws11b{word-spacing:-8.748000px;}
.wsd2{word-spacing:-8.496000px;}
.wsa{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.ws5{word-spacing:-2.666400px;}
.ws61{word-spacing:-0.450000px;}
.ws10f{word-spacing:-0.108000px;}
.wsca{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws3d{word-spacing:0.600000px;}
.wsc8{word-spacing:1.296000px;}
.ws52{word-spacing:1.680000px;}
.ws53{word-spacing:1.800000px;}
.ws119{word-spacing:3.942000px;}
.ws94{word-spacing:4.080000px;}
.ws6e{word-spacing:4.200000px;}
.ws107{word-spacing:4.374000px;}
.ws118{word-spacing:4.590000px;}
.ws108{word-spacing:5.076000px;}
.ws45{word-spacing:5.280000px;}
.ws14d{word-spacing:5.346000px;}
.wsd0{word-spacing:5.472000px;}
.ws130{word-spacing:5.508000px;}
.wsc7{word-spacing:5.664000px;}
.wsdd{word-spacing:5.808000px;}
.ws11e{word-spacing:5.832000px;}
.ws9e{word-spacing:6.000000px;}
.ws139{word-spacing:6.048000px;}
.ws70{word-spacing:6.120000px;}
.wsac{word-spacing:6.180000px;}
.ws14c{word-spacing:6.210000px;}
.ws29{word-spacing:6.360000px;}
.ws133{word-spacing:6.372000px;}
.wsc2{word-spacing:6.480000px;}
.ws135{word-spacing:6.534000px;}
.wsc0{word-spacing:6.540000px;}
.wsfa{word-spacing:6.588000px;}
.ws35{word-spacing:6.594000px;}
.wse{word-spacing:6.615000px;}
.ws28{word-spacing:6.660000px;}
.ws122{word-spacing:6.696000px;}
.ws11d{word-spacing:6.750000px;}
.ws8f{word-spacing:6.780000px;}
.ws8b{word-spacing:6.840000px;}
.ws6b{word-spacing:6.900000px;}
.ws1b{word-spacing:6.912000px;}
.ws24{word-spacing:6.960000px;}
.wsdc{word-spacing:7.008000px;}
.ws6c{word-spacing:7.020000px;}
.wsf{word-spacing:7.065000px;}
.wsf5{word-spacing:7.074000px;}
.ws99{word-spacing:7.080000px;}
.ws51{word-spacing:7.200000px;}
.ws127{word-spacing:7.236000px;}
.ws33{word-spacing:7.260000px;}
.wsa0{word-spacing:7.380000px;}
.ws73{word-spacing:7.440000px;}
.ws2b{word-spacing:7.500000px;}
.ws128{word-spacing:7.506000px;}
.wsc5{word-spacing:7.536000px;}
.wsa7{word-spacing:7.560000px;}
.ws134{word-spacing:7.614000px;}
.wsf9{word-spacing:7.668000px;}
.ws2d{word-spacing:7.680000px;}
.ws126{word-spacing:7.722000px;}
.ws4c{word-spacing:7.740000px;}
.wsc6{word-spacing:7.776000px;}
.ws9b{word-spacing:7.800000px;}
.ws143{word-spacing:7.830000px;}
.wsf0{word-spacing:7.860000px;}
.ws81{word-spacing:7.884000px;}
.ws54{word-spacing:7.920000px;}
.ws98{word-spacing:7.980000px;}
.ws120{word-spacing:8.046000px;}
.ws9d{word-spacing:8.100000px;}
.ws3a{word-spacing:8.160000px;}
.ws32{word-spacing:8.220000px;}
.wsf6{word-spacing:8.262000px;}
.ws30{word-spacing:8.280000px;}
.ws13d{word-spacing:8.316000px;}
.wsf4{word-spacing:8.340000px;}
.ws4d{word-spacing:8.400000px;}
.ws117{word-spacing:8.424000px;}
.ws91{word-spacing:8.460000px;}
.ws12{word-spacing:8.478000px;}
.ws39{word-spacing:8.484000px;}
.wscf{word-spacing:8.520000px;}
.ws110{word-spacing:8.532000px;}
.ws5c{word-spacing:8.580000px;}
.ws44{word-spacing:8.640000px;}
.ws131{word-spacing:8.694000px;}
.ws3e{word-spacing:8.700000px;}
.ws80{word-spacing:8.748000px;}
.ws2c{word-spacing:8.760000px;}
.wsc3{word-spacing:8.778000px;}
.ws27{word-spacing:8.820000px;}
.wsfc{word-spacing:8.856000px;}
.ws9c{word-spacing:8.880000px;}
.ws18{word-spacing:8.910000px;}
.wsc4{word-spacing:8.949000px;}
.ws11f{word-spacing:8.964000px;}
.ws46{word-spacing:9.000000px;}
.ws14{word-spacing:9.018000px;}
.ws6f{word-spacing:9.060000px;}
.ws19{word-spacing:9.072000px;}
.ws77{word-spacing:9.120000px;}
.ws142{word-spacing:9.126000px;}
.ws21{word-spacing:9.180000px;}
.ws4f{word-spacing:9.261000px;}
.ws14e{word-spacing:9.288000px;}
.wsff{word-spacing:9.342000px;}
.ws43{word-spacing:9.360000px;}
.ws13e{word-spacing:9.396000px;}
.wse7{word-spacing:9.420000px;}
.ws14f{word-spacing:9.450000px;}
.ws79{word-spacing:9.480000px;}
.ws83{word-spacing:9.540000px;}
.ws141{word-spacing:9.558000px;}
.wsd{word-spacing:9.600000px;}
.ws1f{word-spacing:9.612000px;}
.wse5{word-spacing:9.660000px;}
.ws132{word-spacing:9.666000px;}
.ws15{word-spacing:9.720000px;}
.ws11c{word-spacing:9.774000px;}
.ws67{word-spacing:9.780000px;}
.ws121{word-spacing:9.828000px;}
.ws78{word-spacing:9.840000px;}
.wsb0{word-spacing:9.900000px;}
.wsab{word-spacing:9.960000px;}
.ws10a{word-spacing:9.990000px;}
.ws92{word-spacing:10.020000px;}
.ws9f{word-spacing:10.080000px;}
.ws147{word-spacing:10.098000px;}
.ws9a{word-spacing:10.140000px;}
.ws25{word-spacing:10.200000px;}
.ws60{word-spacing:10.260000px;}
.ws12e{word-spacing:10.314000px;}
.ws71{word-spacing:10.320000px;}
.ws138{word-spacing:10.368000px;}
.ws76{word-spacing:10.380000px;}
.ws13f{word-spacing:10.422000px;}
.wsaa{word-spacing:10.440000px;}
.wsed{word-spacing:10.500000px;}
.ws1c{word-spacing:10.530000px;}
.wsa5{word-spacing:10.560000px;}
.ws12a{word-spacing:10.584000px;}
.ws7d{word-spacing:10.620000px;}
.ws150{word-spacing:10.638000px;}
.ws4e{word-spacing:10.692000px;}
.ws11{word-spacing:10.710000px;}
.ws55{word-spacing:10.740000px;}
.wsfd{word-spacing:10.746000px;}
.ws26{word-spacing:10.800000px;}
.ws12d{word-spacing:10.854000px;}
.ws5f{word-spacing:10.860000px;}
.ws37{word-spacing:10.896000px;}
.ws14b{word-spacing:10.908000px;}
.wsae{word-spacing:10.920000px;}
.ws123{word-spacing:10.962000px;}
.ws49{word-spacing:10.980000px;}
.wsee{word-spacing:11.040000px;}
.ws17{word-spacing:11.070000px;}
.wsea{word-spacing:11.100000px;}
.wsf8{word-spacing:11.124000px;}
.wsda{word-spacing:11.160000px;}
.ws57{word-spacing:11.220000px;}
.ws31{word-spacing:11.280000px;}
.ws14a{word-spacing:11.286000px;}
.ws38{word-spacing:11.298000px;}
.ws23{word-spacing:11.340000px;}
.ws4a{word-spacing:11.400000px;}
.ws48{word-spacing:11.460000px;}
.ws140{word-spacing:11.502000px;}
.wsd5{word-spacing:11.520000px;}
.wsfe{word-spacing:11.610000px;}
.ws8a{word-spacing:11.640000px;}
.ws7a{word-spacing:11.700000px;}
.ws3f{word-spacing:11.760000px;}
.ws20{word-spacing:11.772000px;}
.ws89{word-spacing:11.820000px;}
.wsd9{word-spacing:11.880000px;}
.ws10b{word-spacing:11.934000px;}
.ws4b{word-spacing:11.940000px;}
.ws65{word-spacing:12.000000px;}
.wsfb{word-spacing:12.042000px;}
.ws10c{word-spacing:12.096000px;}
.ws7c{word-spacing:12.120000px;}
.ws106{word-spacing:12.150000px;}
.wsa1{word-spacing:12.240000px;}
.ws129{word-spacing:12.312000px;}
.ws7e{word-spacing:12.360000px;}
.ws96{word-spacing:12.420000px;}
.ws87{word-spacing:12.480000px;}
.ws115{word-spacing:12.528000px;}
.ws6a{word-spacing:12.600000px;}
.ws1a{word-spacing:12.636000px;}
.wsa9{word-spacing:12.660000px;}
.ws66{word-spacing:12.720000px;}
.ws8e{word-spacing:12.780000px;}
.ws104{word-spacing:12.798000px;}
.ws64{word-spacing:12.840000px;}
.ws84{word-spacing:12.960000px;}
.wsb2{word-spacing:13.020000px;}
.wsb1{word-spacing:13.080000px;}
.ws112{word-spacing:13.122000px;}
.wsa8{word-spacing:13.260000px;}
.ws62{word-spacing:13.320000px;}
.wse8{word-spacing:13.380000px;}
.wsd8{word-spacing:13.440000px;}
.ws34{word-spacing:13.500000px;}
.ws137{word-spacing:13.554000px;}
.wsa6{word-spacing:13.560000px;}
.ws6d{word-spacing:13.680000px;}
.ws114{word-spacing:13.716000px;}
.wsf3{word-spacing:13.800000px;}
.ws148{word-spacing:13.824000px;}
.wsef{word-spacing:13.860000px;}
.ws10{word-spacing:13.944000px;}
.ws63{word-spacing:13.980000px;}
.wsc1{word-spacing:14.040000px;}
.wsd7{word-spacing:14.100000px;}
.ws50{word-spacing:14.160000px;}
.ws13a{word-spacing:14.364000px;}
.ws116{word-spacing:14.472000px;}
.ws58{word-spacing:14.700000px;}
.ws111{word-spacing:14.742000px;}
.ws5d{word-spacing:14.760000px;}
.ws105{word-spacing:14.850000px;}
.ws95{word-spacing:14.880000px;}
.ws82{word-spacing:14.940000px;}
.ws8d{word-spacing:15.060000px;}
.ws1d{word-spacing:15.066000px;}
.ws56{word-spacing:15.180000px;}
.wsdb{word-spacing:15.240000px;}
.wsad{word-spacing:15.300000px;}
.wseb{word-spacing:15.480000px;}
.ws88{word-spacing:15.600000px;}
.ws90{word-spacing:15.660000px;}
.ws75{word-spacing:15.720000px;}
.wse3{word-spacing:15.780000px;}
.ws136{word-spacing:15.822000px;}
.wse6{word-spacing:15.840000px;}
.ws125{word-spacing:15.876000px;}
.ws3c{word-spacing:15.960000px;}
.ws113{word-spacing:15.984000px;}
.ws69{word-spacing:16.080000px;}
.ws7f{word-spacing:16.140000px;}
.ws40{word-spacing:16.200000px;}
.ws109{word-spacing:16.254000px;}
.ws2e{word-spacing:16.260000px;}
.ws5a{word-spacing:16.380000px;}
.wsbe{word-spacing:16.500000px;}
.ws86{word-spacing:16.680000px;}
.ws8c{word-spacing:16.740000px;}
.ws93{word-spacing:16.800000px;}
.ws16{word-spacing:16.902000px;}
.ws68{word-spacing:16.920000px;}
.ws47{word-spacing:17.160000px;}
.ws13{word-spacing:17.172000px;}
.ws59{word-spacing:17.220000px;}
.wsf7{word-spacing:17.280000px;}
.ws2f{word-spacing:17.460000px;}
.ws36{word-spacing:17.568000px;}
.ws7b{word-spacing:17.640000px;}
.wsa4{word-spacing:17.700000px;}
.ws72{word-spacing:17.940000px;}
.wsd6{word-spacing:18.060000px;}
.ws12c{word-spacing:18.090000px;}
.ws74{word-spacing:18.180000px;}
.ws2a{word-spacing:18.300000px;}
.wsaf{word-spacing:18.420000px;}
.ws124{word-spacing:18.468000px;}
.ws41{word-spacing:18.540000px;}
.wsbf{word-spacing:18.600000px;}
.wsec{word-spacing:18.960000px;}
.ws97{word-spacing:19.080000px;}
.wsa2{word-spacing:19.140000px;}
.wse9{word-spacing:19.260000px;}
.ws22{word-spacing:19.500000px;}
.wsce{word-spacing:19.560000px;}
.ws42{word-spacing:19.740000px;}
.ws85{word-spacing:20.160000px;}
.ws3b{word-spacing:20.220000px;}
.wsa3{word-spacing:20.640000px;}
.ws149{word-spacing:20.682000px;}
.ws12f{word-spacing:20.952000px;}
.ws12b{word-spacing:21.060000px;}
.ws145{word-spacing:21.330000px;}
.ws5b{word-spacing:21.900000px;}
.wsb3{word-spacing:22.080000px;}
.ws5e{word-spacing:22.320000px;}
.ws144{word-spacing:22.518000px;}
.wsbd{word-spacing:22.980000px;}
.wsb4{word-spacing:23.160000px;}
.ws146{word-spacing:24.840000px;}
.ws1e{word-spacing:26.676000px;}
.ws10e{word-spacing:26.946000px;}
.ws10d{word-spacing:31.374000px;}
.wsc9{word-spacing:38.592000px;}
.ws13b{word-spacing:47.250000px;}
.ws13c{word-spacing:55.026000px;}
.wse0{word-spacing:87.529800px;}
.wscc{word-spacing:219.776400px;}
.wscd{word-spacing:251.575800px;}
.wscb{word-spacing:253.975800px;}
.wse2{word-spacing:469.328400px;}
.wsb5{word-spacing:526.613400px;}
.wsb8{word-spacing:535.613400px;}
.wsb7{word-spacing:582.004800px;}
.wsbc{word-spacing:591.005400px;}
.wsb9{word-spacing:600.005400px;}
.wsb6{word-spacing:604.804800px;}
.wsba{word-spacing:613.804800px;}
.wsbb{word-spacing:625.205400px;}
.wsd4{word-spacing:781.198800px;}
.wsd3{word-spacing:819.669600px;}
.wsd1{word-spacing:958.345800px;}
.wsde{word-spacing:966.177000px;}
._2f{margin-left:-2220.103800px;}
._23{margin-left:-1408.510800px;}
._18{margin-left:-1390.510800px;}
._15{margin-left:-13.740000px;}
._2d{margin-left:-12.252000px;}
._48{margin-left:-8.124015px;}
._4{margin-left:-6.984015px;}
._12{margin-left:-5.399400px;}
._1{margin-left:-4.140000px;}
._6{margin-left:-2.940673px;}
._0{margin-left:-1.919985px;}
._5{width:1.560300px;}
._8{width:2.962376px;}
._46{width:4.368615px;}
._2{width:5.579985px;}
._13{width:6.675600px;}
._3{width:7.799985px;}
._7{width:9.713971px;}
._b{width:11.510400px;}
._11{width:13.950000px;}
._9{width:16.011000px;}
._e{width:17.117971px;}
._a{width:18.158985px;}
._45{width:19.325985px;}
._47{width:20.685871px;}
._14{width:22.899000px;}
._4b{width:24.602985px;}
._4a{width:25.690873px;}
._1d{width:29.328000px;}
._19{width:31.056000px;}
._f{width:52.080000px;}
._49{width:54.083400px;}
._c{width:60.312644px;}
._2e{width:78.360000px;}
._32{width:81.463273px;}
._31{width:92.635800px;}
._30{width:94.959373px;}
._10{width:131.698171px;}
._d{width:133.679400px;}
._3b{width:240.583800px;}
._36{width:249.583800px;}
._35{width:251.983800px;}
._37{width:258.583800px;}
._39{width:260.983800px;}
._3a{width:263.383800px;}
._38{width:269.983200px;}
._33{width:272.383800px;}
._34{width:281.383800px;}
._43{width:358.994985px;}
._3c{width:404.376000px;}
._41{width:413.697000px;}
._17{width:434.471385px;}
._42{width:462.685785px;}
._1a{width:479.302046px;}
._44{width:509.307600px;}
._3d{width:599.409000px;}
._22{width:600.414000px;}
._2c{width:609.413400px;}
._25{width:611.813400px;}
._1b{width:623.214000px;}
._27{width:632.214000px;}
._2a{width:643.613400px;}
._3f{width:645.323985px;}
._29{width:656.216400px;}
._24{width:696.561000px;}
._28{width:731.361000px;}
._1f{width:802.628985px;}
._1c{width:817.868700px;}
._1e{width:845.060985px;}
._26{width:851.169000px;}
._20{width:858.261000px;}
._3e{width:930.779985px;}
._2b{width:956.421000px;}
._40{width:969.025310px;}
._21{width:978.921000px;}
._16{width:1039.986000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:34.687200px;}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:61.434844px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y17f{bottom:5.099700px;}
.y16f{bottom:7.499700px;}
.y18a{bottom:14.249700px;}
.y180{bottom:18.149700px;}
.y172{bottom:20.999700px;}
.y17e{bottom:31.649700px;}
.y69{bottom:57.690600px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y68{bottom:69.690600px;}
.y1c8{bottom:81.636150px;}
.y67{bottom:81.690600px;}
.y34{bottom:84.097501px;}
.y1a4{bottom:85.275000px;}
.yad{bottom:85.377900px;}
.y1ef{bottom:85.426200px;}
.yda{bottom:85.781850px;}
.y214{bottom:86.041200px;}
.y16d{bottom:90.525000px;}
.y13e{bottom:93.301200px;}
.y27c{bottom:94.051200px;}
.y62{bottom:94.065600px;}
.y1bd{bottom:94.126050px;}
.y23e{bottom:94.967400px;}
.y4{bottom:97.125005px;}
.y10a{bottom:99.188100px;}
.y1c7{bottom:101.136150px;}
.y213{bottom:102.541200px;}
.y16c{bottom:104.025000px;}
.yac{bottom:104.877900px;}
.y1ee{bottom:104.926200px;}
.y65{bottom:104.940600px;}
.y27b{bottom:110.551200px;}
.y23d{bottom:111.467400px;}
.y13d{bottom:112.801200px;}
.y1bc{bottom:113.626050px;}
.y16b{bottom:117.525000px;}
.y64{bottom:118.440600px;}
.yd9{bottom:120.131850px;}
.y1c6{bottom:120.636150px;}
.y1ed{bottom:124.426200px;}
.y27a{bottom:127.051200px;}
.y23c{bottom:127.967400px;}
.y212{bottom:129.541200px;}
.y16a{bottom:131.025000px;}
.y63{bottom:131.940600px;}
.y13c{bottom:132.301200px;}
.y1bb{bottom:133.126050px;}
.y109{bottom:133.538100px;}
.y21{bottom:139.264499px;}
.yd8{bottom:139.631850px;}
.y1c5{bottom:140.136150px;}
.y279{bottom:143.551200px;}
.yab{bottom:143.775000px;}
.y1ec{bottom:143.926200px;}
.y23b{bottom:144.467400px;}
.y169{bottom:144.525000px;}
.y13b{bottom:151.801200px;}
.y1ba{bottom:152.626050px;}
.y108{bottom:153.038100px;}
.y168{bottom:158.025000px;}
.yd7{bottom:159.131850px;}
.y1c4{bottom:159.636150px;}
.y278{bottom:160.051200px;}
.y23a{bottom:160.967400px;}
.yaa{bottom:163.275000px;}
.y1eb{bottom:163.426200px;}
.y61{bottom:167.926200px;}
.y13a{bottom:171.301200px;}
.y1b9{bottom:172.126050px;}
.y107{bottom:172.538100px;}
.y167{bottom:176.025000px;}
.y277{bottom:176.551200px;}
.y239{bottom:177.467400px;}
.yd6{bottom:178.631850px;}
.y211{bottom:179.224650px;}
.ya9{bottom:182.775000px;}
.y1ea{bottom:182.926200px;}
.y60{bottom:187.426200px;}
.y139{bottom:190.801200px;}
.y1b8{bottom:191.626050px;}
.y106{bottom:192.038100px;}
.y276{bottom:193.051200px;}
.y238{bottom:193.967400px;}
.y166{bottom:194.775000px;}
.y18{bottom:196.933500px;}
.yd5{bottom:198.131850px;}
.ya8{bottom:202.275000px;}
.y1e9{bottom:202.426200px;}
.y1d1{bottom:205.498950px;}
.y210{bottom:206.224650px;}
.y5f{bottom:206.926200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y275{bottom:209.551200px;}
.y138{bottom:210.301200px;}
.y237{bottom:210.467400px;}
.y1b7{bottom:211.126050px;}
.y105{bottom:211.538100px;}
.y165{bottom:213.525000px;}
.yd4{bottom:217.631850px;}
.y1d0{bottom:218.998950px;}
.ya7{bottom:221.775000px;}
.y1e8{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y274{bottom:226.051200px;}
.y5e{bottom:226.426200px;}
.y236{bottom:226.967400px;}
.y137{bottom:229.801200px;}
.y1b6{bottom:230.626050px;}
.y104{bottom:231.038100px;}
.y1cf{bottom:232.498950px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yd3{bottom:237.131850px;}
.ya6{bottom:241.275000px;}
.y1e7{bottom:241.426200px;}
.y273{bottom:242.551200px;}
.y235{bottom:243.467400px;}
.y5d{bottom:245.926200px;}
.y1ce{bottom:245.998950px;}
.y136{bottom:249.301200px;}
.y1b5{bottom:250.126050px;}
.y103{bottom:250.538100px;}
.y20f{bottom:255.908100px;}
.yd2{bottom:256.631850px;}
.y272{bottom:259.051200px;}
.y1cd{bottom:259.498950px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y234{bottom:259.967400px;}
.y1e6{bottom:260.926200px;}
.y5c{bottom:265.426200px;}
.y164{bottom:265.566900px;}
.y135{bottom:268.801200px;}
.y1b4{bottom:269.626050px;}
.y102{bottom:270.038100px;}
.ya5{bottom:271.275000px;}
.y20e{bottom:272.408100px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y271{bottom:275.551200px;}
.yd1{bottom:276.131850px;}
.y233{bottom:276.467400px;}
.y1cc{bottom:277.873950px;}
.y163{bottom:279.066900px;}
.y1e5{bottom:280.426200px;}
.y5b{bottom:284.926200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y134{bottom:288.301200px;}
.y20d{bottom:288.908100px;}
.y1b3{bottom:289.126050px;}
.y101{bottom:289.538100px;}
.y270{bottom:292.051200px;}
.y162{bottom:292.566900px;}
.y232{bottom:292.967400px;}
.yd0{bottom:295.631850px;}
.y1cb{bottom:296.623950px;}
.y1e4{bottom:299.926200px;}
.y5a{bottom:304.426200px;}
.y20c{bottom:305.408100px;}
.y161{bottom:306.066900px;}
.y133{bottom:307.801200px;}
.y26f{bottom:308.551200px;}
.y1b2{bottom:308.626050px;}
.y100{bottom:309.038100px;}
.y231{bottom:309.467400px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ycf{bottom:315.131850px;}
.ya4{bottom:319.275000px;}
.y33{bottom:319.276501px;}
.y1e3{bottom:319.426200px;}
.y160{bottom:319.566900px;}
.y20b{bottom:321.908100px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y59{bottom:323.926200px;}
.y26e{bottom:325.051200px;}
.y230{bottom:325.967400px;}
.y132{bottom:327.301200px;}
.y1b1{bottom:328.126050px;}
.yff{bottom:328.538100px;}
.y15f{bottom:333.066900px;}
.yce{bottom:334.631850px;}
.y20a{bottom:338.408100px;}
.ya3{bottom:338.775000px;}
.y1e2{bottom:338.926200px;}
.y1ca{bottom:339.051450px;}
.y26d{bottom:341.551200px;}
.y22f{bottom:342.467400px;}
.y58{bottom:343.426200px;}
.y15e{bottom:346.566900px;}
.y131{bottom:346.801200px;}
.yfe{bottom:348.038100px;}
.yf{bottom:348.133500px;}
.ycd{bottom:354.131850px;}
.y209{bottom:354.908100px;}
.y26c{bottom:358.051200px;}
.ya2{bottom:358.275000px;}
.y1e1{bottom:358.426200px;}
.y22e{bottom:358.967400px;}
.y57{bottom:362.926200px;}
.y15d{bottom:364.566900px;}
.y1b0{bottom:365.626200px;}
.y130{bottom:366.301200px;}
.yfd{bottom:367.538100px;}
.y208{bottom:371.408100px;}
.ycc{bottom:373.631850px;}
.y26b{bottom:374.551200px;}
.y22d{bottom:375.467400px;}
.ya1{bottom:377.775000px;}
.y1e0{bottom:377.926200px;}
.y56{bottom:382.426200px;}
.y15c{bottom:383.316900px;}
.y32{bottom:383.626501px;}
.y1af{bottom:385.126200px;}
.y12f{bottom:385.801200px;}
.ye{bottom:386.785499px;}
.yfc{bottom:387.038100px;}
.y207{bottom:387.908100px;}
.y26a{bottom:391.051200px;}
.y22c{bottom:391.967400px;}
.ycb{bottom:393.131850px;}
.ya0{bottom:397.275000px;}
.y1df{bottom:397.426200px;}
.y55{bottom:401.926200px;}
.y15b{bottom:402.066900px;}
.y206{bottom:404.408100px;}
.y1ae{bottom:404.626200px;}
.y12e{bottom:405.301200px;}
.yfb{bottom:406.538100px;}
.y269{bottom:407.551200px;}
.yd{bottom:408.044999px;}
.y22b{bottom:408.467400px;}
.yca{bottom:412.631850px;}
.y9f{bottom:416.775000px;}
.y1de{bottom:416.926200px;}
.y54{bottom:421.426200px;}
.y268{bottom:424.051200px;}
.y1ad{bottom:424.126200px;}
.y12d{bottom:424.801200px;}
.y22a{bottom:424.967400px;}
.yfa{bottom:426.038100px;}
.y205{bottom:431.408100px;}
.yc9{bottom:432.131850px;}
.y9e{bottom:436.275000px;}
.y1dd{bottom:436.426200px;}
.y267{bottom:440.551200px;}
.y53{bottom:440.926200px;}
.y229{bottom:441.467400px;}
.y1ac{bottom:443.626200px;}
.y12c{bottom:444.301200px;}
.yf9{bottom:445.538100px;}
.y15a{bottom:447.816900px;}
.y31{bottom:450.907500px;}
.yc8{bottom:451.631850px;}
.y9d{bottom:455.775000px;}
.y1dc{bottom:455.926200px;}
.y266{bottom:457.051200px;}
.y228{bottom:457.967400px;}
.y52{bottom:460.426200px;}
.y159{bottom:461.316900px;}
.y1ab{bottom:463.126200px;}
.y12b{bottom:463.801200px;}
.yf8{bottom:465.038100px;}
.yc7{bottom:471.131850px;}
.y265{bottom:473.551200px;}
.y227{bottom:474.467400px;}
.y158{bottom:474.816900px;}
.y9c{bottom:475.275000px;}
.y1db{bottom:475.426200px;}
.y51{bottom:479.926200px;}
.y204{bottom:481.091550px;}
.y1aa{bottom:482.626200px;}
.y12a{bottom:483.301200px;}
.yf7{bottom:484.538100px;}
.y157{bottom:488.316900px;}
.y264{bottom:490.051200px;}
.yc6{bottom:490.631850px;}
.y226{bottom:490.967400px;}
.y9b{bottom:494.775000px;}
.y1da{bottom:494.926200px;}
.y1a3{bottom:497.357250px;}
.y203{bottom:497.591550px;}
.y50{bottom:499.426200px;}
.y156{bottom:501.816900px;}
.y1a9{bottom:502.126200px;}
.y129{bottom:502.801200px;}
.yc{bottom:502.864502px;}
.yf6{bottom:504.038100px;}
.y263{bottom:506.551200px;}
.y225{bottom:507.467400px;}
.yc5{bottom:510.131850px;}
.y1a2{bottom:510.857250px;}
.y30{bottom:512.326501px;}
.y9a{bottom:514.275000px;}
.y1d9{bottom:514.426200px;}
.y155{bottom:515.316900px;}
.y4f{bottom:518.926200px;}
.yb{bottom:520.864502px;}
.y1a8{bottom:521.626200px;}
.y128{bottom:522.301200px;}
.y262{bottom:523.051200px;}
.yf5{bottom:523.538100px;}
.y1a1{bottom:524.357250px;}
.y202{bottom:524.591550px;}
.y154{bottom:528.816900px;}
.yc4{bottom:529.631850px;}
.y99{bottom:533.775000px;}
.y1d8{bottom:533.926200px;}
.y224{bottom:534.467400px;}
.y1a0{bottom:537.857250px;}
.ya{bottom:538.864499px;}
.y261{bottom:539.551200px;}
.y1a7{bottom:541.126200px;}
.y127{bottom:541.801200px;}
.y153{bottom:542.316900px;}
.yf4{bottom:543.038100px;}
.y4e{bottom:548.926200px;}
.yc3{bottom:549.131850px;}
.y19f{bottom:551.357250px;}
.y1d7{bottom:553.426200px;}
.y152{bottom:555.816900px;}
.y260{bottom:556.051200px;}
.y9{bottom:556.864499px;}
.y1a6{bottom:560.626200px;}
.y126{bottom:561.301200px;}
.yf3{bottom:562.538100px;}
.y98{bottom:563.775000px;}
.y19e{bottom:564.857250px;}
.yc2{bottom:568.631850px;}
.y151{bottom:569.316900px;}
.y7e{bottom:571.083300px;}
.y25f{bottom:572.551200px;}
.y201{bottom:572.775000px;}
.y1d6{bottom:572.926200px;}
.y19d{bottom:578.357250px;}
.y2f{bottom:579.607500px;}
.y1a5{bottom:580.126200px;}
.y125{bottom:580.801200px;}
.y150{bottom:582.816900px;}
.y7d{bottom:584.583300px;}
.y223{bottom:585.467400px;}
.yc1{bottom:588.131850px;}
.y25e{bottom:589.051200px;}
.y19c{bottom:591.857250px;}
.y200{bottom:592.275000px;}
.y1d5{bottom:592.426200px;}
.yf2{bottom:592.538100px;}
.y97{bottom:593.775000px;}
.y14f{bottom:596.316900px;}
.y7c{bottom:598.083300px;}
.y124{bottom:600.301200px;}
.y222{bottom:601.967400px;}
.y19b{bottom:605.357250px;}
.y25d{bottom:605.551200px;}
.yc0{bottom:607.631850px;}
.y7b{bottom:609.333300px;}
.y1ff{bottom:611.775000px;}
.y1d4{bottom:611.926200px;}
.y2e{bottom:613.957501px;}
.y14e{bottom:614.316900px;}
.y19a{bottom:618.857250px;}
.y123{bottom:619.801200px;}
.y25c{bottom:622.051200px;}
.y2d{bottom:628.957501px;}
.y221{bottom:628.967400px;}
.y1fe{bottom:631.275000px;}
.y1d3{bottom:631.426200px;}
.y199{bottom:632.357250px;}
.y7a{bottom:632.363700px;}
.y14d{bottom:633.066900px;}
.y1c3{bottom:634.873950px;}
.ybf{bottom:637.631850px;}
.y25b{bottom:638.551200px;}
.y122{bottom:639.301200px;}
.y4d{bottom:641.926200px;}
.y2c{bottom:643.957500px;}
.yf1{bottom:644.513700px;}
.y8{bottom:645.510000px;}
.y198{bottom:645.857250px;}
.y79{bottom:645.863700px;}
.y1c2{bottom:648.373950px;}
.y1fd{bottom:650.775000px;}
.y96{bottom:650.926200px;}
.y25a{bottom:655.051200px;}
.y4c{bottom:656.926200px;}
.y121{bottom:658.801200px;}
.y197{bottom:659.357250px;}
.y78{bottom:659.363700px;}
.y1c1{bottom:661.873950px;}
.y7{bottom:666.771000px;}
.y1fc{bottom:670.275000px;}
.y95{bottom:670.426200px;}
.y259{bottom:671.551200px;}
.y4b{bottom:671.926200px;}
.y77{bottom:672.863700px;}
.y196{bottom:677.357250px;}
.y120{bottom:678.301200px;}
.y220{bottom:678.650850px;}
.yf0{bottom:678.863700px;}
.y1c0{bottom:679.873950px;}
.y14c{bottom:685.444350px;}
.ybe{bottom:685.631850px;}
.y76{bottom:686.363700px;}
.y4a{bottom:686.926200px;}
.y258{bottom:688.051200px;}
.y1fb{bottom:689.775000px;}
.y94{bottom:689.926200px;}
.y21f{bottom:695.150850px;}
.y195{bottom:696.107250px;}
.y11f{bottom:697.801200px;}
.yef{bottom:698.363700px;}
.y1bf{bottom:698.623950px;}
.y75{bottom:699.863700px;}
.y49{bottom:701.926200px;}
.y257{bottom:704.551200px;}
.y14b{bottom:704.944350px;}
.ybd{bottom:705.131850px;}
.y1fa{bottom:709.275000px;}
.y93{bottom:709.426200px;}
.y194{bottom:714.857250px;}
.y48{bottom:716.926200px;}
.y11e{bottom:717.301200px;}
.yee{bottom:717.863700px;}
.y256{bottom:721.051200px;}
.y21e{bottom:722.150850px;}
.y74{bottom:722.626200px;}
.y14a{bottom:724.444350px;}
.ybc{bottom:724.631850px;}
.y2b{bottom:725.317498px;}
.y6{bottom:726.298500px;}
.y1f9{bottom:728.775000px;}
.y92{bottom:728.926200px;}
.y47{bottom:731.926200px;}
.y73{bottom:736.126200px;}
.y11d{bottom:736.801200px;}
.yed{bottom:737.363700px;}
.y255{bottom:737.551200px;}
.y1be{bottom:738.796200px;}
.y1c9{bottom:740.776200px;}
.y149{bottom:743.944350px;}
.ybb{bottom:744.131850px;}
.y46{bottom:746.926200px;}
.y1f8{bottom:748.275000px;}
.y91{bottom:748.426200px;}
.y72{bottom:749.626200px;}
.y3{bottom:752.599495px;}
.y193{bottom:753.369750px;}
.y254{bottom:754.051200px;}
.y2a{bottom:755.317498px;}
.y11c{bottom:756.301200px;}
.yec{bottom:756.863700px;}
.y45{bottom:761.926200px;}
.y71{bottom:763.126200px;}
.y148{bottom:763.444350px;}
.yba{bottom:763.631850px;}
.y1f7{bottom:767.775000px;}
.y90{bottom:767.926200px;}
.y253{bottom:770.551200px;}
.y21d{bottom:771.834300px;}
.y192{bottom:772.869750px;}
.y29{bottom:773.317498px;}
.y11b{bottom:775.801200px;}
.yeb{bottom:776.363700px;}
.y70{bottom:776.626200px;}
.y44{bottom:776.926200px;}
.y147{bottom:782.944350px;}
.yb9{bottom:783.131850px;}
.y252{bottom:787.051200px;}
.y8f{bottom:787.426200px;}
.y21c{bottom:788.334300px;}
.y6f{bottom:790.126200px;}
.y28{bottom:791.317498px;}
.y43{bottom:791.926200px;}
.y191{bottom:792.369750px;}
.y11a{bottom:795.301200px;}
.yea{bottom:795.863700px;}
.y1f6{bottom:797.775000px;}
.y146{bottom:802.444350px;}
.yb8{bottom:802.631850px;}
.y251{bottom:803.551200px;}
.y42{bottom:806.926200px;}
.y190{bottom:811.869750px;}
.y6e{bottom:812.888700px;}
.y119{bottom:814.801200px;}
.ye9{bottom:815.363700px;}
.y250{bottom:820.051200px;}
.y41{bottom:821.926200px;}
.y145{bottom:821.944350px;}
.yb7{bottom:822.131850px;}
.y6d{bottom:826.388700px;}
.y8e{bottom:826.426200px;}
.y18f{bottom:831.369750px;}
.y118{bottom:834.301200px;}
.ye8{bottom:834.863700px;}
.y24f{bottom:836.551200px;}
.y40{bottom:836.926200px;}
.y6c{bottom:839.888700px;}
.y144{bottom:841.444350px;}
.yb6{bottom:841.631850px;}
.y27{bottom:843.789002px;}
.y1f5{bottom:845.850600px;}
.y8d{bottom:845.926200px;}
.y3f{bottom:851.926200px;}
.y24e{bottom:853.051200px;}
.y6b{bottom:853.388700px;}
.y117{bottom:853.801200px;}
.ye7{bottom:854.363700px;}
.y143{bottom:860.944350px;}
.yb5{bottom:861.131850px;}
.y1f4{bottom:865.350600px;}
.y8c{bottom:865.426200px;}
.y6a{bottom:866.888700px;}
.y3e{bottom:866.926200px;}
.y24d{bottom:869.551200px;}
.y18e{bottom:871.126200px;}
.y116{bottom:873.301200px;}
.ye6{bottom:873.863700px;}
.y1d2{bottom:875.926200px;}
.y2{bottom:879.369000px;}
.y142{bottom:880.444350px;}
.yb4{bottom:880.631850px;}
.y18b{bottom:883.126500px;}
.y1f3{bottom:884.850600px;}
.y8b{bottom:884.926200px;}
.y21b{bottom:884.934300px;}
.y24c{bottom:886.051200px;}
.y18c{bottom:886.726200px;}
.y18d{bottom:890.626200px;}
.y115{bottom:892.801200px;}
.ye5{bottom:893.363700px;}
.y141{bottom:899.944350px;}
.yb3{bottom:900.131850px;}
.y21a{bottom:901.434300px;}
.y24b{bottom:902.551200px;}
.y1f2{bottom:904.350600px;}
.y8a{bottom:904.426200px;}
.y187{bottom:904.726500px;}
.y26{bottom:907.440000px;}
.y189{bottom:908.326200px;}
.y188{bottom:912.226200px;}
.y114{bottom:912.301200px;}
.ye4{bottom:912.863700px;}
.y3d{bottom:913.801200px;}
.y219{bottom:917.934300px;}
.y24a{bottom:919.051200px;}
.y140{bottom:919.444350px;}
.y1f1{bottom:923.850600px;}
.y89{bottom:923.926200px;}
.yb2{bottom:930.131850px;}
.y186{bottom:930.226200px;}
.y113{bottom:931.801200px;}
.ye3{bottom:932.363700px;}
.y3c{bottom:933.256200px;}
.y249{bottom:935.551200px;}
.y25{bottom:938.940000px;}
.y184{bottom:940.726500px;}
.y88{bottom:943.426200px;}
.y218{bottom:944.934300px;}
.y185{bottom:948.226200px;}
.y13f{bottom:949.444350px;}
.y112{bottom:951.301200px;}
.ye2{bottom:951.863700px;}
.y248{bottom:952.051200px;}
.y1f0{bottom:953.850600px;}
.y3b{bottom:955.801200px;}
.y87{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y247{bottom:968.551200px;}
.y24{bottom:970.440000px;}
.y111{bottom:970.801200px;}
.ye1{bottom:971.363700px;}
.y171{bottom:975.976500px;}
.y17c{bottom:981.076200px;}
.y177{bottom:981.230521px;}
.y86{bottom:982.426200px;}
.yb1{bottom:982.528950px;}
.y179{bottom:983.476200px;}
.y246{bottom:985.051200px;}
.y174{bottom:985.126200px;}
.y110{bottom:990.301200px;}
.ye0{bottom:990.863700px;}
.y182{bottom:991.879905px;}
.y17a{bottom:992.926200px;}
.y175{bottom:993.076200px;}
.y17d{bottom:994.126200px;}
.y217{bottom:994.617750px;}
.y3a{bottom:994.801200px;}
.y170{bottom:996.976200px;}
.y245{bottom:1001.551200px;}
.y85{bottom:1001.926200px;}
.yb0{bottom:1002.028950px;}
.y176{bottom:1003.126816px;}
.y178{bottom:1005.376200px;}
.y173{bottom:1006.576200px;}
.y183{bottom:1007.026200px;}
.y17b{bottom:1007.626200px;}
.y10f{bottom:1009.801200px;}
.ydf{bottom:1010.363700px;}
.y181{bottom:1013.776200px;}
.y244{bottom:1018.051200px;}
.y39{bottom:1018.801200px;}
.y84{bottom:1021.426200px;}
.yaf{bottom:1021.528950px;}
.y216{bottom:1021.617750px;}
.y10e{bottom:1029.301200px;}
.yde{bottom:1029.863700px;}
.y16e{bottom:1033.426500px;}
.y243{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y83{bottom:1040.926200px;}
.y36{bottom:1047.511200px;}
.y10d{bottom:1048.801200px;}
.ydd{bottom:1049.363700px;}
.y242{bottom:1051.051200px;}
.y82{bottom:1060.426200px;}
.y241{bottom:1067.551200px;}
.y10c{bottom:1068.301200px;}
.ydc{bottom:1068.863700px;}
.y215{bottom:1071.301200px;}
.y81{bottom:1079.926200px;}
.y66{bottom:1083.782250px;}
.y240{bottom:1084.051200px;}
.y38{bottom:1097.407950px;}
.y10b{bottom:1098.301200px;}
.ydb{bottom:1098.863700px;}
.y80{bottom:1099.426200px;}
.y23f{bottom:1100.551200px;}
.y37{bottom:1110.907950px;}
.yae{bottom:1141.238100px;}
.y7f{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h22{height:22.500000px;}
.h2a{height:23.998500px;}
.h25{height:24.281040px;}
.h16{height:25.096500px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:33.750000px;}
.h1c{height:34.320000px;}
.h21{height:34.608000px;}
.h1d{height:36.000000px;}
.hb{height:36.726562px;}
.h17{height:38.610000px;}
.h19{height:40.500000px;}
.h20{height:40.755000px;}
.h2d{height:40.946563px;}
.hf{height:41.317383px;}
.h23{height:42.000000px;}
.h2e{height:43.260000px;}
.h2b{height:44.443359px;}
.h1f{height:44.730000px;}
.h12{height:45.000000px;}
.h2f{height:45.423000px;}
.h2c{height:45.506180px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1a{height:47.586000px;}
.h3{height:48.195000px;}
.h24{height:49.500000px;}
.h30{height:51.300000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h26{height:55.576172px;}
.h29{height:56.905224px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h27{height:105.376172px;}
.h28{height:111.976172px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:8.019000px;}
.w9{width:14.229000px;}
.w8{width:26.136000px;}
.w7{width:131.112000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x2d{left:10.254000px;}
.x2b{left:22.176000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x28{left:116.019000px;}
.x2c{left:117.054000px;}
.x29{left:118.926000px;}
.xf{left:123.000000px;}
.xb{left:126.112500px;}
.x2a{left:129.126000px;}
.xe{left:135.000000px;}
.x6{left:145.650000px;}
.x30{left:162.234450px;}
.x16{left:185.167500px;}
.x5{left:191.880000px;}
.x17{left:193.186950px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x33{left:206.640000px;}
.x9{left:228.743990px;}
.x2f{left:231.219000px;}
.x8{left:293.590494px;}
.x34{left:350.282700px;}
.x35{left:368.818800px;}
.x18{left:380.901000px;}
.x1b{left:384.843000px;}
.x10{left:387.137850px;}
.x1e{left:394.293000px;}
.x11{left:402.137850px;}
.x1f{left:405.243000px;}
.x13{left:406.441200px;}
.x31{left:407.863200px;}
.x1a{left:413.943000px;}
.x19{left:422.793000px;}
.x22{left:433.893000px;}
.x20{left:442.143000px;}
.x21{left:448.893000px;}
.x3{left:454.959000px;}
.x26{left:480.390000px;}
.x25{left:486.543000px;}
.x1d{left:490.448180px;}
.x24{left:491.644694px;}
.x1c{left:496.743907px;}
.x23{left:497.793000px;}
.x27{left:512.013000px;}
.x32{left:565.175550px;}
.xd{left:570.946500px;}
.xc{left:650.025750px;}
.x12{left:666.275550px;}
.x15{left:697.564950px;}
.x14{left:698.689950px;}
.x2e{left:741.718650px;}
@media print{
.v5{vertical-align:-42.133333pt;}
.v2{vertical-align:-15.840000pt;}
.v4{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.400000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v6{vertical-align:44.266667pt;}
.v8{vertical-align:50.133333pt;}
.ls11{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.363067pt;}
.ls7{letter-spacing:0.363600pt;}
.lsa{letter-spacing:0.364000pt;}
.ls8{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls18{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lse{letter-spacing:8.139733pt;}
.lsf{letter-spacing:8.140267pt;}
.ls15{letter-spacing:13.386667pt;}
.ls14{letter-spacing:54.720000pt;}
.ls6{letter-spacing:63.950400pt;}
.ls9{letter-spacing:68.962667pt;}
.ls12{letter-spacing:77.386667pt;}
.ls13{letter-spacing:110.720000pt;}
.wse1{word-spacing:-42.666667pt;}
.ws1{word-spacing:-12.432000pt;}
.wse4{word-spacing:-11.893333pt;}
.ws100{word-spacing:-11.850667pt;}
.wsf1{word-spacing:-11.312000pt;}
.ws6{word-spacing:-11.306667pt;}
.ws7{word-spacing:-10.773333pt;}
.ws102{word-spacing:-10.272000pt;}
.wsf2{word-spacing:-10.176000pt;}
.ws11a{word-spacing:-9.216000pt;}
.ws103{word-spacing:-8.832000pt;}
.ws101{word-spacing:-8.736000pt;}
.wsb{word-spacing:-8.720000pt;}
.ws8{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.wsdf{word-spacing:-8.234667pt;}
.ws2{word-spacing:-8.080800pt;}
.wsc{word-spacing:-7.920000pt;}
.ws9{word-spacing:-7.840000pt;}
.ws11b{word-spacing:-7.776000pt;}
.wsd2{word-spacing:-7.552000pt;}
.wsa{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.ws5{word-spacing:-2.370133pt;}
.ws61{word-spacing:-0.400000pt;}
.ws10f{word-spacing:-0.096000pt;}
.wsca{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.533333pt;}
.wsc8{word-spacing:1.152000pt;}
.ws52{word-spacing:1.493333pt;}
.ws53{word-spacing:1.600000pt;}
.ws119{word-spacing:3.504000pt;}
.ws94{word-spacing:3.626667pt;}
.ws6e{word-spacing:3.733333pt;}
.ws107{word-spacing:3.888000pt;}
.ws118{word-spacing:4.080000pt;}
.ws108{word-spacing:4.512000pt;}
.ws45{word-spacing:4.693333pt;}
.ws14d{word-spacing:4.752000pt;}
.wsd0{word-spacing:4.864000pt;}
.ws130{word-spacing:4.896000pt;}
.wsc7{word-spacing:5.034667pt;}
.wsdd{word-spacing:5.162667pt;}
.ws11e{word-spacing:5.184000pt;}
.ws9e{word-spacing:5.333333pt;}
.ws139{word-spacing:5.376000pt;}
.ws70{word-spacing:5.440000pt;}
.wsac{word-spacing:5.493333pt;}
.ws14c{word-spacing:5.520000pt;}
.ws29{word-spacing:5.653333pt;}
.ws133{word-spacing:5.664000pt;}
.wsc2{word-spacing:5.760000pt;}
.ws135{word-spacing:5.808000pt;}
.wsc0{word-spacing:5.813333pt;}
.wsfa{word-spacing:5.856000pt;}
.ws35{word-spacing:5.861333pt;}
.wse{word-spacing:5.880000pt;}
.ws28{word-spacing:5.920000pt;}
.ws122{word-spacing:5.952000pt;}
.ws11d{word-spacing:6.000000pt;}
.ws8f{word-spacing:6.026667pt;}
.ws8b{word-spacing:6.080000pt;}
.ws6b{word-spacing:6.133333pt;}
.ws1b{word-spacing:6.144000pt;}
.ws24{word-spacing:6.186667pt;}
.wsdc{word-spacing:6.229333pt;}
.ws6c{word-spacing:6.240000pt;}
.wsf{word-spacing:6.280000pt;}
.wsf5{word-spacing:6.288000pt;}
.ws99{word-spacing:6.293333pt;}
.ws51{word-spacing:6.400000pt;}
.ws127{word-spacing:6.432000pt;}
.ws33{word-spacing:6.453333pt;}
.wsa0{word-spacing:6.560000pt;}
.ws73{word-spacing:6.613333pt;}
.ws2b{word-spacing:6.666667pt;}
.ws128{word-spacing:6.672000pt;}
.wsc5{word-spacing:6.698667pt;}
.wsa7{word-spacing:6.720000pt;}
.ws134{word-spacing:6.768000pt;}
.wsf9{word-spacing:6.816000pt;}
.ws2d{word-spacing:6.826667pt;}
.ws126{word-spacing:6.864000pt;}
.ws4c{word-spacing:6.880000pt;}
.wsc6{word-spacing:6.912000pt;}
.ws9b{word-spacing:6.933333pt;}
.ws143{word-spacing:6.960000pt;}
.wsf0{word-spacing:6.986667pt;}
.ws81{word-spacing:7.008000pt;}
.ws54{word-spacing:7.040000pt;}
.ws98{word-spacing:7.093333pt;}
.ws120{word-spacing:7.152000pt;}
.ws9d{word-spacing:7.200000pt;}
.ws3a{word-spacing:7.253333pt;}
.ws32{word-spacing:7.306667pt;}
.wsf6{word-spacing:7.344000pt;}
.ws30{word-spacing:7.360000pt;}
.ws13d{word-spacing:7.392000pt;}
.wsf4{word-spacing:7.413333pt;}
.ws4d{word-spacing:7.466667pt;}
.ws117{word-spacing:7.488000pt;}
.ws91{word-spacing:7.520000pt;}
.ws12{word-spacing:7.536000pt;}
.ws39{word-spacing:7.541333pt;}
.wscf{word-spacing:7.573333pt;}
.ws110{word-spacing:7.584000pt;}
.ws5c{word-spacing:7.626667pt;}
.ws44{word-spacing:7.680000pt;}
.ws131{word-spacing:7.728000pt;}
.ws3e{word-spacing:7.733333pt;}
.ws80{word-spacing:7.776000pt;}
.ws2c{word-spacing:7.786667pt;}
.wsc3{word-spacing:7.802667pt;}
.ws27{word-spacing:7.840000pt;}
.wsfc{word-spacing:7.872000pt;}
.ws9c{word-spacing:7.893333pt;}
.ws18{word-spacing:7.920000pt;}
.wsc4{word-spacing:7.954667pt;}
.ws11f{word-spacing:7.968000pt;}
.ws46{word-spacing:8.000000pt;}
.ws14{word-spacing:8.016000pt;}
.ws6f{word-spacing:8.053333pt;}
.ws19{word-spacing:8.064000pt;}
.ws77{word-spacing:8.106667pt;}
.ws142{word-spacing:8.112000pt;}
.ws21{word-spacing:8.160000pt;}
.ws4f{word-spacing:8.232000pt;}
.ws14e{word-spacing:8.256000pt;}
.wsff{word-spacing:8.304000pt;}
.ws43{word-spacing:8.320000pt;}
.ws13e{word-spacing:8.352000pt;}
.wse7{word-spacing:8.373333pt;}
.ws14f{word-spacing:8.400000pt;}
.ws79{word-spacing:8.426667pt;}
.ws83{word-spacing:8.480000pt;}
.ws141{word-spacing:8.496000pt;}
.wsd{word-spacing:8.533333pt;}
.ws1f{word-spacing:8.544000pt;}
.wse5{word-spacing:8.586667pt;}
.ws132{word-spacing:8.592000pt;}
.ws15{word-spacing:8.640000pt;}
.ws11c{word-spacing:8.688000pt;}
.ws67{word-spacing:8.693333pt;}
.ws121{word-spacing:8.736000pt;}
.ws78{word-spacing:8.746667pt;}
.wsb0{word-spacing:8.800000pt;}
.wsab{word-spacing:8.853333pt;}
.ws10a{word-spacing:8.880000pt;}
.ws92{word-spacing:8.906667pt;}
.ws9f{word-spacing:8.960000pt;}
.ws147{word-spacing:8.976000pt;}
.ws9a{word-spacing:9.013333pt;}
.ws25{word-spacing:9.066667pt;}
.ws60{word-spacing:9.120000pt;}
.ws12e{word-spacing:9.168000pt;}
.ws71{word-spacing:9.173333pt;}
.ws138{word-spacing:9.216000pt;}
.ws76{word-spacing:9.226667pt;}
.ws13f{word-spacing:9.264000pt;}
.wsaa{word-spacing:9.280000pt;}
.wsed{word-spacing:9.333333pt;}
.ws1c{word-spacing:9.360000pt;}
.wsa5{word-spacing:9.386667pt;}
.ws12a{word-spacing:9.408000pt;}
.ws7d{word-spacing:9.440000pt;}
.ws150{word-spacing:9.456000pt;}
.ws4e{word-spacing:9.504000pt;}
.ws11{word-spacing:9.520000pt;}
.ws55{word-spacing:9.546667pt;}
.wsfd{word-spacing:9.552000pt;}
.ws26{word-spacing:9.600000pt;}
.ws12d{word-spacing:9.648000pt;}
.ws5f{word-spacing:9.653333pt;}
.ws37{word-spacing:9.685333pt;}
.ws14b{word-spacing:9.696000pt;}
.wsae{word-spacing:9.706667pt;}
.ws123{word-spacing:9.744000pt;}
.ws49{word-spacing:9.760000pt;}
.wsee{word-spacing:9.813333pt;}
.ws17{word-spacing:9.840000pt;}
.wsea{word-spacing:9.866667pt;}
.wsf8{word-spacing:9.888000pt;}
.wsda{word-spacing:9.920000pt;}
.ws57{word-spacing:9.973333pt;}
.ws31{word-spacing:10.026667pt;}
.ws14a{word-spacing:10.032000pt;}
.ws38{word-spacing:10.042667pt;}
.ws23{word-spacing:10.080000pt;}
.ws4a{word-spacing:10.133333pt;}
.ws48{word-spacing:10.186667pt;}
.ws140{word-spacing:10.224000pt;}
.wsd5{word-spacing:10.240000pt;}
.wsfe{word-spacing:10.320000pt;}
.ws8a{word-spacing:10.346667pt;}
.ws7a{word-spacing:10.400000pt;}
.ws3f{word-spacing:10.453333pt;}
.ws20{word-spacing:10.464000pt;}
.ws89{word-spacing:10.506667pt;}
.wsd9{word-spacing:10.560000pt;}
.ws10b{word-spacing:10.608000pt;}
.ws4b{word-spacing:10.613333pt;}
.ws65{word-spacing:10.666667pt;}
.wsfb{word-spacing:10.704000pt;}
.ws10c{word-spacing:10.752000pt;}
.ws7c{word-spacing:10.773333pt;}
.ws106{word-spacing:10.800000pt;}
.wsa1{word-spacing:10.880000pt;}
.ws129{word-spacing:10.944000pt;}
.ws7e{word-spacing:10.986667pt;}
.ws96{word-spacing:11.040000pt;}
.ws87{word-spacing:11.093333pt;}
.ws115{word-spacing:11.136000pt;}
.ws6a{word-spacing:11.200000pt;}
.ws1a{word-spacing:11.232000pt;}
.wsa9{word-spacing:11.253333pt;}
.ws66{word-spacing:11.306667pt;}
.ws8e{word-spacing:11.360000pt;}
.ws104{word-spacing:11.376000pt;}
.ws64{word-spacing:11.413333pt;}
.ws84{word-spacing:11.520000pt;}
.wsb2{word-spacing:11.573333pt;}
.wsb1{word-spacing:11.626667pt;}
.ws112{word-spacing:11.664000pt;}
.wsa8{word-spacing:11.786667pt;}
.ws62{word-spacing:11.840000pt;}
.wse8{word-spacing:11.893333pt;}
.wsd8{word-spacing:11.946667pt;}
.ws34{word-spacing:12.000000pt;}
.ws137{word-spacing:12.048000pt;}
.wsa6{word-spacing:12.053333pt;}
.ws6d{word-spacing:12.160000pt;}
.ws114{word-spacing:12.192000pt;}
.wsf3{word-spacing:12.266667pt;}
.ws148{word-spacing:12.288000pt;}
.wsef{word-spacing:12.320000pt;}
.ws10{word-spacing:12.394667pt;}
.ws63{word-spacing:12.426667pt;}
.wsc1{word-spacing:12.480000pt;}
.wsd7{word-spacing:12.533333pt;}
.ws50{word-spacing:12.586667pt;}
.ws13a{word-spacing:12.768000pt;}
.ws116{word-spacing:12.864000pt;}
.ws58{word-spacing:13.066667pt;}
.ws111{word-spacing:13.104000pt;}
.ws5d{word-spacing:13.120000pt;}
.ws105{word-spacing:13.200000pt;}
.ws95{word-spacing:13.226667pt;}
.ws82{word-spacing:13.280000pt;}
.ws8d{word-spacing:13.386667pt;}
.ws1d{word-spacing:13.392000pt;}
.ws56{word-spacing:13.493333pt;}
.wsdb{word-spacing:13.546667pt;}
.wsad{word-spacing:13.600000pt;}
.wseb{word-spacing:13.760000pt;}
.ws88{word-spacing:13.866667pt;}
.ws90{word-spacing:13.920000pt;}
.ws75{word-spacing:13.973333pt;}
.wse3{word-spacing:14.026667pt;}
.ws136{word-spacing:14.064000pt;}
.wse6{word-spacing:14.080000pt;}
.ws125{word-spacing:14.112000pt;}
.ws3c{word-spacing:14.186667pt;}
.ws113{word-spacing:14.208000pt;}
.ws69{word-spacing:14.293333pt;}
.ws7f{word-spacing:14.346667pt;}
.ws40{word-spacing:14.400000pt;}
.ws109{word-spacing:14.448000pt;}
.ws2e{word-spacing:14.453333pt;}
.ws5a{word-spacing:14.560000pt;}
.wsbe{word-spacing:14.666667pt;}
.ws86{word-spacing:14.826667pt;}
.ws8c{word-spacing:14.880000pt;}
.ws93{word-spacing:14.933333pt;}
.ws16{word-spacing:15.024000pt;}
.ws68{word-spacing:15.040000pt;}
.ws47{word-spacing:15.253333pt;}
.ws13{word-spacing:15.264000pt;}
.ws59{word-spacing:15.306667pt;}
.wsf7{word-spacing:15.360000pt;}
.ws2f{word-spacing:15.520000pt;}
.ws36{word-spacing:15.616000pt;}
.ws7b{word-spacing:15.680000pt;}
.wsa4{word-spacing:15.733333pt;}
.ws72{word-spacing:15.946667pt;}
.wsd6{word-spacing:16.053333pt;}
.ws12c{word-spacing:16.080000pt;}
.ws74{word-spacing:16.160000pt;}
.ws2a{word-spacing:16.266667pt;}
.wsaf{word-spacing:16.373333pt;}
.ws124{word-spacing:16.416000pt;}
.ws41{word-spacing:16.480000pt;}
.wsbf{word-spacing:16.533333pt;}
.wsec{word-spacing:16.853333pt;}
.ws97{word-spacing:16.960000pt;}
.wsa2{word-spacing:17.013333pt;}
.wse9{word-spacing:17.120000pt;}
.ws22{word-spacing:17.333333pt;}
.wsce{word-spacing:17.386667pt;}
.ws42{word-spacing:17.546667pt;}
.ws85{word-spacing:17.920000pt;}
.ws3b{word-spacing:17.973333pt;}
.wsa3{word-spacing:18.346667pt;}
.ws149{word-spacing:18.384000pt;}
.ws12f{word-spacing:18.624000pt;}
.ws12b{word-spacing:18.720000pt;}
.ws145{word-spacing:18.960000pt;}
.ws5b{word-spacing:19.466667pt;}
.wsb3{word-spacing:19.626667pt;}
.ws5e{word-spacing:19.840000pt;}
.ws144{word-spacing:20.016000pt;}
.wsbd{word-spacing:20.426667pt;}
.wsb4{word-spacing:20.586667pt;}
.ws146{word-spacing:22.080000pt;}
.ws1e{word-spacing:23.712000pt;}
.ws10e{word-spacing:23.952000pt;}
.ws10d{word-spacing:27.888000pt;}
.wsc9{word-spacing:34.304000pt;}
.ws13b{word-spacing:42.000000pt;}
.ws13c{word-spacing:48.912000pt;}
.wse0{word-spacing:77.804267pt;}
.wscc{word-spacing:195.356800pt;}
.wscd{word-spacing:223.622933pt;}
.wscb{word-spacing:225.756267pt;}
.wse2{word-spacing:417.180800pt;}
.wsb5{word-spacing:468.100800pt;}
.wsb8{word-spacing:476.100800pt;}
.wsb7{word-spacing:517.337600pt;}
.wsbc{word-spacing:525.338133pt;}
.wsb9{word-spacing:533.338133pt;}
.wsb6{word-spacing:537.604267pt;}
.wsba{word-spacing:545.604267pt;}
.wsbb{word-spacing:555.738133pt;}
.wsd4{word-spacing:694.398933pt;}
.wsd3{word-spacing:728.595200pt;}
.wsd1{word-spacing:851.862933pt;}
.wsde{word-spacing:858.824000pt;}
._2f{margin-left:-1973.425600pt;}
._23{margin-left:-1252.009600pt;}
._18{margin-left:-1236.009600pt;}
._15{margin-left:-12.213333pt;}
._2d{margin-left:-10.890667pt;}
._48{margin-left:-7.221346pt;}
._4{margin-left:-6.208013pt;}
._12{margin-left:-4.799467pt;}
._1{margin-left:-3.680000pt;}
._6{margin-left:-2.613932pt;}
._0{margin-left:-1.706654pt;}
._5{width:1.386933pt;}
._8{width:2.633223pt;}
._46{width:3.883213pt;}
._2{width:4.959987pt;}
._13{width:5.933867pt;}
._3{width:6.933320pt;}
._7{width:8.634641pt;}
._b{width:10.231467pt;}
._11{width:12.400000pt;}
._9{width:14.232000pt;}
._e{width:15.215974pt;}
._a{width:16.141320pt;}
._45{width:17.178654pt;}
._47{width:18.387441pt;}
._14{width:20.354667pt;}
._4b{width:21.869320pt;}
._4a{width:22.836332pt;}
._1d{width:26.069333pt;}
._19{width:27.605333pt;}
._f{width:46.293333pt;}
._49{width:48.074133pt;}
._c{width:53.611239pt;}
._2e{width:69.653333pt;}
._32{width:72.411798pt;}
._31{width:82.342933pt;}
._30{width:84.408332pt;}
._10{width:117.065041pt;}
._d{width:118.826133pt;}
._3b{width:213.852267pt;}
._36{width:221.852267pt;}
._35{width:223.985600pt;}
._37{width:229.852267pt;}
._39{width:231.985600pt;}
._3a{width:234.118933pt;}
._38{width:239.985067pt;}
._33{width:242.118933pt;}
._34{width:250.118933pt;}
._43{width:319.106654pt;}
._3c{width:359.445333pt;}
._41{width:367.730667pt;}
._17{width:386.196787pt;}
._42{width:411.276254pt;}
._1a{width:426.046263pt;}
._44{width:452.717867pt;}
._3d{width:532.808000pt;}
._22{width:533.701333pt;}
._2c{width:541.700800pt;}
._25{width:543.834133pt;}
._1b{width:553.968000pt;}
._27{width:561.968000pt;}
._2a{width:572.100800pt;}
._3f{width:573.621320pt;}
._29{width:583.303467pt;}
._24{width:619.165333pt;}
._28{width:650.098667pt;}
._1f{width:713.447987pt;}
._1c{width:726.994400pt;}
._1e{width:751.165320pt;}
._26{width:756.594667pt;}
._20{width:762.898667pt;}
._3e{width:827.359987pt;}
._2b{width:850.152000pt;}
._40{width:861.355831pt;}
._21{width:870.152000pt;}
._16{width:924.432000pt;}
.fsf{font-size:30.833067pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:54.608750pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y17f{bottom:4.533067pt;}
.y16f{bottom:6.666400pt;}
.y18a{bottom:12.666400pt;}
.y180{bottom:16.133067pt;}
.y172{bottom:18.666400pt;}
.y17e{bottom:28.133067pt;}
.y69{bottom:51.280533pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y68{bottom:61.947200pt;}
.y1c8{bottom:72.565467pt;}
.y67{bottom:72.613867pt;}
.y34{bottom:74.753335pt;}
.y1a4{bottom:75.800000pt;}
.yad{bottom:75.891467pt;}
.y1ef{bottom:75.934400pt;}
.yda{bottom:76.250533pt;}
.y214{bottom:76.481067pt;}
.y16d{bottom:80.466667pt;}
.y13e{bottom:82.934400pt;}
.y27c{bottom:83.601067pt;}
.y62{bottom:83.613867pt;}
.y1bd{bottom:83.667600pt;}
.y23e{bottom:84.415467pt;}
.y4{bottom:86.333337pt;}
.y10a{bottom:88.167200pt;}
.y1c7{bottom:89.898800pt;}
.y213{bottom:91.147733pt;}
.y16c{bottom:92.466667pt;}
.yac{bottom:93.224800pt;}
.y1ee{bottom:93.267733pt;}
.y65{bottom:93.280533pt;}
.y27b{bottom:98.267733pt;}
.y23d{bottom:99.082133pt;}
.y13d{bottom:100.267733pt;}
.y1bc{bottom:101.000933pt;}
.y16b{bottom:104.466667pt;}
.y64{bottom:105.280533pt;}
.yd9{bottom:106.783867pt;}
.y1c6{bottom:107.232133pt;}
.y1ed{bottom:110.601067pt;}
.y27a{bottom:112.934400pt;}
.y23c{bottom:113.748800pt;}
.y212{bottom:115.147733pt;}
.y16a{bottom:116.466667pt;}
.y63{bottom:117.280533pt;}
.y13c{bottom:117.601067pt;}
.y1bb{bottom:118.334267pt;}
.y109{bottom:118.700533pt;}
.y21{bottom:123.790666pt;}
.yd8{bottom:124.117200pt;}
.y1c5{bottom:124.565467pt;}
.y279{bottom:127.601067pt;}
.yab{bottom:127.800000pt;}
.y1ec{bottom:127.934400pt;}
.y23b{bottom:128.415467pt;}
.y169{bottom:128.466667pt;}
.y13b{bottom:134.934400pt;}
.y1ba{bottom:135.667600pt;}
.y108{bottom:136.033867pt;}
.y168{bottom:140.466667pt;}
.yd7{bottom:141.450533pt;}
.y1c4{bottom:141.898800pt;}
.y278{bottom:142.267733pt;}
.y23a{bottom:143.082133pt;}
.yaa{bottom:145.133333pt;}
.y1eb{bottom:145.267733pt;}
.y61{bottom:149.267733pt;}
.y13a{bottom:152.267733pt;}
.y1b9{bottom:153.000933pt;}
.y107{bottom:153.367200pt;}
.y167{bottom:156.466667pt;}
.y277{bottom:156.934400pt;}
.y239{bottom:157.748800pt;}
.yd6{bottom:158.783867pt;}
.y211{bottom:159.310800pt;}
.ya9{bottom:162.466667pt;}
.y1ea{bottom:162.601067pt;}
.y60{bottom:166.601067pt;}
.y139{bottom:169.601067pt;}
.y1b8{bottom:170.334267pt;}
.y106{bottom:170.700533pt;}
.y276{bottom:171.601067pt;}
.y238{bottom:172.415467pt;}
.y166{bottom:173.133333pt;}
.y18{bottom:175.052000pt;}
.yd5{bottom:176.117200pt;}
.ya8{bottom:179.800000pt;}
.y1e9{bottom:179.934400pt;}
.y1d1{bottom:182.665733pt;}
.y210{bottom:183.310800pt;}
.y5f{bottom:183.934400pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y275{bottom:186.267733pt;}
.y138{bottom:186.934400pt;}
.y237{bottom:187.082133pt;}
.y1b7{bottom:187.667600pt;}
.y105{bottom:188.033867pt;}
.y165{bottom:189.800000pt;}
.yd4{bottom:193.450533pt;}
.y1d0{bottom:194.665733pt;}
.ya7{bottom:197.133333pt;}
.y1e8{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y274{bottom:200.934400pt;}
.y5e{bottom:201.267733pt;}
.y236{bottom:201.748800pt;}
.y137{bottom:204.267733pt;}
.y1b6{bottom:205.000933pt;}
.y104{bottom:205.367200pt;}
.y1cf{bottom:206.665733pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yd3{bottom:210.783867pt;}
.ya6{bottom:214.466667pt;}
.y1e7{bottom:214.601067pt;}
.y273{bottom:215.601067pt;}
.y235{bottom:216.415467pt;}
.y5d{bottom:218.601067pt;}
.y1ce{bottom:218.665733pt;}
.y136{bottom:221.601067pt;}
.y1b5{bottom:222.334267pt;}
.y103{bottom:222.700533pt;}
.y20f{bottom:227.473867pt;}
.yd2{bottom:228.117200pt;}
.y272{bottom:230.267733pt;}
.y1cd{bottom:230.665733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y234{bottom:231.082133pt;}
.y1e6{bottom:231.934400pt;}
.y5c{bottom:235.934400pt;}
.y164{bottom:236.059467pt;}
.y135{bottom:238.934400pt;}
.y1b4{bottom:239.667600pt;}
.y102{bottom:240.033867pt;}
.ya5{bottom:241.133333pt;}
.y20e{bottom:242.140533pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y271{bottom:244.934400pt;}
.yd1{bottom:245.450533pt;}
.y233{bottom:245.748800pt;}
.y1cc{bottom:246.999067pt;}
.y163{bottom:248.059467pt;}
.y1e5{bottom:249.267733pt;}
.y5b{bottom:253.267733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y134{bottom:256.267733pt;}
.y20d{bottom:256.807200pt;}
.y1b3{bottom:257.000933pt;}
.y101{bottom:257.367200pt;}
.y270{bottom:259.601067pt;}
.y162{bottom:260.059467pt;}
.y232{bottom:260.415467pt;}
.yd0{bottom:262.783867pt;}
.y1cb{bottom:263.665733pt;}
.y1e4{bottom:266.601067pt;}
.y5a{bottom:270.601067pt;}
.y20c{bottom:271.473867pt;}
.y161{bottom:272.059467pt;}
.y133{bottom:273.601067pt;}
.y26f{bottom:274.267733pt;}
.y1b2{bottom:274.334267pt;}
.y100{bottom:274.700533pt;}
.y231{bottom:275.082133pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ycf{bottom:280.117200pt;}
.ya4{bottom:283.800000pt;}
.y33{bottom:283.801334pt;}
.y1e3{bottom:283.934400pt;}
.y160{bottom:284.059467pt;}
.y20b{bottom:286.140533pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y59{bottom:287.934400pt;}
.y26e{bottom:288.934400pt;}
.y230{bottom:289.748800pt;}
.y132{bottom:290.934400pt;}
.y1b1{bottom:291.667600pt;}
.yff{bottom:292.033867pt;}
.y15f{bottom:296.059467pt;}
.yce{bottom:297.450533pt;}
.y20a{bottom:300.807200pt;}
.ya3{bottom:301.133333pt;}
.y1e2{bottom:301.267733pt;}
.y1ca{bottom:301.379067pt;}
.y26d{bottom:303.601067pt;}
.y22f{bottom:304.415467pt;}
.y58{bottom:305.267733pt;}
.y15e{bottom:308.059467pt;}
.y131{bottom:308.267733pt;}
.yfe{bottom:309.367200pt;}
.yf{bottom:309.452000pt;}
.ycd{bottom:314.783867pt;}
.y209{bottom:315.473867pt;}
.y26c{bottom:318.267733pt;}
.ya2{bottom:318.466667pt;}
.y1e1{bottom:318.601067pt;}
.y22e{bottom:319.082133pt;}
.y57{bottom:322.601067pt;}
.y15d{bottom:324.059467pt;}
.y1b0{bottom:325.001067pt;}
.y130{bottom:325.601067pt;}
.yfd{bottom:326.700533pt;}
.y208{bottom:330.140533pt;}
.ycc{bottom:332.117200pt;}
.y26b{bottom:332.934400pt;}
.y22d{bottom:333.748800pt;}
.ya1{bottom:335.800000pt;}
.y1e0{bottom:335.934400pt;}
.y56{bottom:339.934400pt;}
.y15c{bottom:340.726133pt;}
.y32{bottom:341.001334pt;}
.y1af{bottom:342.334400pt;}
.y12f{bottom:342.934400pt;}
.ye{bottom:343.809333pt;}
.yfc{bottom:344.033867pt;}
.y207{bottom:344.807200pt;}
.y26a{bottom:347.601067pt;}
.y22c{bottom:348.415467pt;}
.ycb{bottom:349.450533pt;}
.ya0{bottom:353.133333pt;}
.y1df{bottom:353.267733pt;}
.y55{bottom:357.267733pt;}
.y15b{bottom:357.392800pt;}
.y206{bottom:359.473867pt;}
.y1ae{bottom:359.667733pt;}
.y12e{bottom:360.267733pt;}
.yfb{bottom:361.367200pt;}
.y269{bottom:362.267733pt;}
.yd{bottom:362.706666pt;}
.y22b{bottom:363.082133pt;}
.yca{bottom:366.783867pt;}
.y9f{bottom:370.466667pt;}
.y1de{bottom:370.601067pt;}
.y54{bottom:374.601067pt;}
.y268{bottom:376.934400pt;}
.y1ad{bottom:377.001067pt;}
.y12d{bottom:377.601067pt;}
.y22a{bottom:377.748800pt;}
.yfa{bottom:378.700533pt;}
.y205{bottom:383.473867pt;}
.yc9{bottom:384.117200pt;}
.y9e{bottom:387.800000pt;}
.y1dd{bottom:387.934400pt;}
.y267{bottom:391.601067pt;}
.y53{bottom:391.934400pt;}
.y229{bottom:392.415467pt;}
.y1ac{bottom:394.334400pt;}
.y12c{bottom:394.934400pt;}
.yf9{bottom:396.033867pt;}
.y15a{bottom:398.059467pt;}
.y31{bottom:400.806667pt;}
.yc8{bottom:401.450533pt;}
.y9d{bottom:405.133333pt;}
.y1dc{bottom:405.267733pt;}
.y266{bottom:406.267733pt;}
.y228{bottom:407.082133pt;}
.y52{bottom:409.267733pt;}
.y159{bottom:410.059467pt;}
.y1ab{bottom:411.667733pt;}
.y12b{bottom:412.267733pt;}
.yf8{bottom:413.367200pt;}
.yc7{bottom:418.783867pt;}
.y265{bottom:420.934400pt;}
.y227{bottom:421.748800pt;}
.y158{bottom:422.059467pt;}
.y9c{bottom:422.466667pt;}
.y1db{bottom:422.601067pt;}
.y51{bottom:426.601067pt;}
.y204{bottom:427.636933pt;}
.y1aa{bottom:429.001067pt;}
.y12a{bottom:429.601067pt;}
.yf7{bottom:430.700533pt;}
.y157{bottom:434.059467pt;}
.y264{bottom:435.601067pt;}
.yc6{bottom:436.117200pt;}
.y226{bottom:436.415467pt;}
.y9b{bottom:439.800000pt;}
.y1da{bottom:439.934400pt;}
.y1a3{bottom:442.095333pt;}
.y203{bottom:442.303600pt;}
.y50{bottom:443.934400pt;}
.y156{bottom:446.059467pt;}
.y1a9{bottom:446.334400pt;}
.y129{bottom:446.934400pt;}
.yc{bottom:446.990669pt;}
.yf6{bottom:448.033867pt;}
.y263{bottom:450.267733pt;}
.y225{bottom:451.082133pt;}
.yc5{bottom:453.450533pt;}
.y1a2{bottom:454.095333pt;}
.y30{bottom:455.401334pt;}
.y9a{bottom:457.133333pt;}
.y1d9{bottom:457.267733pt;}
.y155{bottom:458.059467pt;}
.y4f{bottom:461.267733pt;}
.yb{bottom:462.990669pt;}
.y1a8{bottom:463.667733pt;}
.y128{bottom:464.267733pt;}
.y262{bottom:464.934400pt;}
.yf5{bottom:465.367200pt;}
.y1a1{bottom:466.095333pt;}
.y202{bottom:466.303600pt;}
.y154{bottom:470.059467pt;}
.yc4{bottom:470.783867pt;}
.y99{bottom:474.466667pt;}
.y1d8{bottom:474.601067pt;}
.y224{bottom:475.082133pt;}
.y1a0{bottom:478.095333pt;}
.ya{bottom:478.990666pt;}
.y261{bottom:479.601067pt;}
.y1a7{bottom:481.001067pt;}
.y127{bottom:481.601067pt;}
.y153{bottom:482.059467pt;}
.yf4{bottom:482.700533pt;}
.y4e{bottom:487.934400pt;}
.yc3{bottom:488.117200pt;}
.y19f{bottom:490.095333pt;}
.y1d7{bottom:491.934400pt;}
.y152{bottom:494.059467pt;}
.y260{bottom:494.267733pt;}
.y9{bottom:494.990666pt;}
.y1a6{bottom:498.334400pt;}
.y126{bottom:498.934400pt;}
.yf3{bottom:500.033867pt;}
.y98{bottom:501.133333pt;}
.y19e{bottom:502.095333pt;}
.yc2{bottom:505.450533pt;}
.y151{bottom:506.059467pt;}
.y7e{bottom:507.629600pt;}
.y25f{bottom:508.934400pt;}
.y201{bottom:509.133333pt;}
.y1d6{bottom:509.267733pt;}
.y19d{bottom:514.095333pt;}
.y2f{bottom:515.206667pt;}
.y1a5{bottom:515.667733pt;}
.y125{bottom:516.267733pt;}
.y150{bottom:518.059467pt;}
.y7d{bottom:519.629600pt;}
.y223{bottom:520.415467pt;}
.yc1{bottom:522.783867pt;}
.y25e{bottom:523.601067pt;}
.y19c{bottom:526.095333pt;}
.y200{bottom:526.466667pt;}
.y1d5{bottom:526.601067pt;}
.yf2{bottom:526.700533pt;}
.y97{bottom:527.800000pt;}
.y14f{bottom:530.059467pt;}
.y7c{bottom:531.629600pt;}
.y124{bottom:533.601067pt;}
.y222{bottom:535.082133pt;}
.y19b{bottom:538.095333pt;}
.y25d{bottom:538.267733pt;}
.yc0{bottom:540.117200pt;}
.y7b{bottom:541.629600pt;}
.y1ff{bottom:543.800000pt;}
.y1d4{bottom:543.934400pt;}
.y2e{bottom:545.740001pt;}
.y14e{bottom:546.059467pt;}
.y19a{bottom:550.095333pt;}
.y123{bottom:550.934400pt;}
.y25c{bottom:552.934400pt;}
.y2d{bottom:559.073335pt;}
.y221{bottom:559.082133pt;}
.y1fe{bottom:561.133333pt;}
.y1d3{bottom:561.267733pt;}
.y199{bottom:562.095333pt;}
.y7a{bottom:562.101067pt;}
.y14d{bottom:562.726133pt;}
.y1c3{bottom:564.332400pt;}
.ybf{bottom:566.783867pt;}
.y25b{bottom:567.601067pt;}
.y122{bottom:568.267733pt;}
.y4d{bottom:570.601067pt;}
.y2c{bottom:572.406667pt;}
.yf1{bottom:572.901067pt;}
.y8{bottom:573.786667pt;}
.y198{bottom:574.095333pt;}
.y79{bottom:574.101067pt;}
.y1c2{bottom:576.332400pt;}
.y1fd{bottom:578.466667pt;}
.y96{bottom:578.601067pt;}
.y25a{bottom:582.267733pt;}
.y4c{bottom:583.934400pt;}
.y121{bottom:585.601067pt;}
.y197{bottom:586.095333pt;}
.y78{bottom:586.101067pt;}
.y1c1{bottom:588.332400pt;}
.y7{bottom:592.685334pt;}
.y1fc{bottom:595.800000pt;}
.y95{bottom:595.934400pt;}
.y259{bottom:596.934400pt;}
.y4b{bottom:597.267733pt;}
.y77{bottom:598.101067pt;}
.y196{bottom:602.095333pt;}
.y120{bottom:602.934400pt;}
.y220{bottom:603.245200pt;}
.yf0{bottom:603.434400pt;}
.y1c0{bottom:604.332400pt;}
.y14c{bottom:609.283867pt;}
.ybe{bottom:609.450533pt;}
.y76{bottom:610.101067pt;}
.y4a{bottom:610.601067pt;}
.y258{bottom:611.601067pt;}
.y1fb{bottom:613.133333pt;}
.y94{bottom:613.267733pt;}
.y21f{bottom:617.911867pt;}
.y195{bottom:618.762000pt;}
.y11f{bottom:620.267733pt;}
.yef{bottom:620.767733pt;}
.y1bf{bottom:620.999067pt;}
.y75{bottom:622.101067pt;}
.y49{bottom:623.934400pt;}
.y257{bottom:626.267733pt;}
.y14b{bottom:626.617200pt;}
.ybd{bottom:626.783867pt;}
.y1fa{bottom:630.466667pt;}
.y93{bottom:630.601067pt;}
.y194{bottom:635.428667pt;}
.y48{bottom:637.267733pt;}
.y11e{bottom:637.601067pt;}
.yee{bottom:638.101067pt;}
.y256{bottom:640.934400pt;}
.y21e{bottom:641.911867pt;}
.y74{bottom:642.334400pt;}
.y14a{bottom:643.950533pt;}
.ybc{bottom:644.117200pt;}
.y2b{bottom:644.726665pt;}
.y6{bottom:645.598667pt;}
.y1f9{bottom:647.800000pt;}
.y92{bottom:647.934400pt;}
.y47{bottom:650.601067pt;}
.y73{bottom:654.334400pt;}
.y11d{bottom:654.934400pt;}
.yed{bottom:655.434400pt;}
.y255{bottom:655.601067pt;}
.y1be{bottom:656.707733pt;}
.y1c9{bottom:658.467733pt;}
.y149{bottom:661.283867pt;}
.ybb{bottom:661.450533pt;}
.y46{bottom:663.934400pt;}
.y1f8{bottom:665.133333pt;}
.y91{bottom:665.267733pt;}
.y72{bottom:666.334400pt;}
.y3{bottom:668.977329pt;}
.y193{bottom:669.662000pt;}
.y254{bottom:670.267733pt;}
.y2a{bottom:671.393332pt;}
.y11c{bottom:672.267733pt;}
.yec{bottom:672.767733pt;}
.y45{bottom:677.267733pt;}
.y71{bottom:678.334400pt;}
.y148{bottom:678.617200pt;}
.yba{bottom:678.783867pt;}
.y1f7{bottom:682.466667pt;}
.y90{bottom:682.601067pt;}
.y253{bottom:684.934400pt;}
.y21d{bottom:686.074933pt;}
.y192{bottom:686.995333pt;}
.y29{bottom:687.393332pt;}
.y11b{bottom:689.601067pt;}
.yeb{bottom:690.101067pt;}
.y70{bottom:690.334400pt;}
.y44{bottom:690.601067pt;}
.y147{bottom:695.950533pt;}
.yb9{bottom:696.117200pt;}
.y252{bottom:699.601067pt;}
.y8f{bottom:699.934400pt;}
.y21c{bottom:700.741600pt;}
.y6f{bottom:702.334400pt;}
.y28{bottom:703.393332pt;}
.y43{bottom:703.934400pt;}
.y191{bottom:704.328667pt;}
.y11a{bottom:706.934400pt;}
.yea{bottom:707.434400pt;}
.y1f6{bottom:709.133333pt;}
.y146{bottom:713.283867pt;}
.yb8{bottom:713.450533pt;}
.y251{bottom:714.267733pt;}
.y42{bottom:717.267733pt;}
.y190{bottom:721.662000pt;}
.y6e{bottom:722.567733pt;}
.y119{bottom:724.267733pt;}
.ye9{bottom:724.767733pt;}
.y250{bottom:728.934400pt;}
.y41{bottom:730.601067pt;}
.y145{bottom:730.617200pt;}
.yb7{bottom:730.783867pt;}
.y6d{bottom:734.567733pt;}
.y8e{bottom:734.601067pt;}
.y18f{bottom:738.995333pt;}
.y118{bottom:741.601067pt;}
.ye8{bottom:742.101067pt;}
.y24f{bottom:743.601067pt;}
.y40{bottom:743.934400pt;}
.y6c{bottom:746.567733pt;}
.y144{bottom:747.950533pt;}
.yb6{bottom:748.117200pt;}
.y27{bottom:750.034669pt;}
.y1f5{bottom:751.867200pt;}
.y8d{bottom:751.934400pt;}
.y3f{bottom:757.267733pt;}
.y24e{bottom:758.267733pt;}
.y6b{bottom:758.567733pt;}
.y117{bottom:758.934400pt;}
.ye7{bottom:759.434400pt;}
.y143{bottom:765.283867pt;}
.yb5{bottom:765.450533pt;}
.y1f4{bottom:769.200533pt;}
.y8c{bottom:769.267733pt;}
.y6a{bottom:770.567733pt;}
.y3e{bottom:770.601067pt;}
.y24d{bottom:772.934400pt;}
.y18e{bottom:774.334400pt;}
.y116{bottom:776.267733pt;}
.ye6{bottom:776.767733pt;}
.y1d2{bottom:778.601067pt;}
.y2{bottom:781.661334pt;}
.y142{bottom:782.617200pt;}
.yb4{bottom:782.783867pt;}
.y18b{bottom:785.001333pt;}
.y1f3{bottom:786.533867pt;}
.y8b{bottom:786.601067pt;}
.y21b{bottom:786.608267pt;}
.y24c{bottom:787.601067pt;}
.y18c{bottom:788.201067pt;}
.y18d{bottom:791.667733pt;}
.y115{bottom:793.601067pt;}
.ye5{bottom:794.101067pt;}
.y141{bottom:799.950533pt;}
.yb3{bottom:800.117200pt;}
.y21a{bottom:801.274933pt;}
.y24b{bottom:802.267733pt;}
.y1f2{bottom:803.867200pt;}
.y8a{bottom:803.934400pt;}
.y187{bottom:804.201333pt;}
.y26{bottom:806.613333pt;}
.y189{bottom:807.401067pt;}
.y188{bottom:810.867733pt;}
.y114{bottom:810.934400pt;}
.ye4{bottom:811.434400pt;}
.y3d{bottom:812.267733pt;}
.y219{bottom:815.941600pt;}
.y24a{bottom:816.934400pt;}
.y140{bottom:817.283867pt;}
.y1f1{bottom:821.200533pt;}
.y89{bottom:821.267733pt;}
.yb2{bottom:826.783867pt;}
.y186{bottom:826.867733pt;}
.y113{bottom:828.267733pt;}
.ye3{bottom:828.767733pt;}
.y3c{bottom:829.561067pt;}
.y249{bottom:831.601067pt;}
.y25{bottom:834.613333pt;}
.y184{bottom:836.201333pt;}
.y88{bottom:838.601067pt;}
.y218{bottom:839.941600pt;}
.y185{bottom:842.867733pt;}
.y13f{bottom:843.950533pt;}
.y112{bottom:845.601067pt;}
.ye2{bottom:846.101067pt;}
.y248{bottom:846.267733pt;}
.y1f0{bottom:847.867200pt;}
.y3b{bottom:849.601067pt;}
.y87{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y247{bottom:860.934400pt;}
.y24{bottom:862.613333pt;}
.y111{bottom:862.934400pt;}
.ye1{bottom:863.434400pt;}
.y171{bottom:867.534667pt;}
.y17c{bottom:872.067733pt;}
.y177{bottom:872.204908pt;}
.y86{bottom:873.267733pt;}
.yb1{bottom:873.359067pt;}
.y179{bottom:874.201067pt;}
.y246{bottom:875.601067pt;}
.y174{bottom:875.667733pt;}
.y110{bottom:880.267733pt;}
.ye0{bottom:880.767733pt;}
.y182{bottom:881.671027pt;}
.y17a{bottom:882.601067pt;}
.y175{bottom:882.734400pt;}
.y17d{bottom:883.667733pt;}
.y217{bottom:884.104667pt;}
.y3a{bottom:884.267733pt;}
.y170{bottom:886.201067pt;}
.y245{bottom:890.267733pt;}
.y85{bottom:890.601067pt;}
.yb0{bottom:890.692400pt;}
.y176{bottom:891.668281pt;}
.y178{bottom:893.667733pt;}
.y173{bottom:894.734400pt;}
.y183{bottom:895.134400pt;}
.y17b{bottom:895.667733pt;}
.y10f{bottom:897.601067pt;}
.ydf{bottom:898.101067pt;}
.y181{bottom:901.134400pt;}
.y244{bottom:904.934400pt;}
.y39{bottom:905.601067pt;}
.y84{bottom:907.934400pt;}
.yaf{bottom:908.025733pt;}
.y216{bottom:908.104667pt;}
.y10e{bottom:914.934400pt;}
.yde{bottom:915.434400pt;}
.y16e{bottom:918.601333pt;}
.y243{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y83{bottom:925.267733pt;}
.y36{bottom:931.121067pt;}
.y10d{bottom:932.267733pt;}
.ydd{bottom:932.767733pt;}
.y242{bottom:934.267733pt;}
.y82{bottom:942.601067pt;}
.y241{bottom:948.934400pt;}
.y10c{bottom:949.601067pt;}
.ydc{bottom:950.101067pt;}
.y215{bottom:952.267733pt;}
.y81{bottom:959.934400pt;}
.y66{bottom:963.362000pt;}
.y240{bottom:963.601067pt;}
.y38{bottom:975.473733pt;}
.y10b{bottom:976.267733pt;}
.ydb{bottom:976.767733pt;}
.y80{bottom:977.267733pt;}
.y23f{bottom:978.267733pt;}
.y37{bottom:987.473733pt;}
.yae{bottom:1014.433867pt;}
.y7f{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h22{height:20.000000pt;}
.h2a{height:21.332000pt;}
.h25{height:21.583147pt;}
.h16{height:22.308000pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.000000pt;}
.h1c{height:30.506667pt;}
.h21{height:30.762667pt;}
.h1d{height:32.000000pt;}
.hb{height:32.645833pt;}
.h17{height:34.320000pt;}
.h19{height:36.000000pt;}
.h20{height:36.226667pt;}
.h2d{height:36.396945pt;}
.hf{height:36.726562pt;}
.h23{height:37.333333pt;}
.h2e{height:38.453333pt;}
.h2b{height:39.505208pt;}
.h1f{height:39.760000pt;}
.h12{height:40.000000pt;}
.h2f{height:40.376000pt;}
.h2c{height:40.449938pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1a{height:42.298667pt;}
.h3{height:42.840000pt;}
.h24{height:44.000000pt;}
.h30{height:45.600000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h26{height:49.401042pt;}
.h29{height:50.582421pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h27{height:93.667708pt;}
.h28{height:99.534375pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:7.128000pt;}
.w9{width:12.648000pt;}
.w8{width:23.232000pt;}
.w7{width:116.544000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:9.114667pt;}
.x2b{left:19.712000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x28{left:103.128000pt;}
.x2c{left:104.048000pt;}
.x29{left:105.712000pt;}
.xf{left:109.333333pt;}
.xb{left:112.100000pt;}
.x2a{left:114.778667pt;}
.xe{left:120.000000pt;}
.x6{left:129.466667pt;}
.x30{left:144.208400pt;}
.x16{left:164.593333pt;}
.x5{left:170.560000pt;}
.x17{left:171.721733pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x33{left:183.680000pt;}
.x9{left:203.327991pt;}
.x2f{left:205.528000pt;}
.x8{left:260.969328pt;}
.x34{left:311.362400pt;}
.x35{left:327.838933pt;}
.x18{left:338.578667pt;}
.x1b{left:342.082667pt;}
.x10{left:344.122533pt;}
.x1e{left:350.482667pt;}
.x11{left:357.455867pt;}
.x1f{left:360.216000pt;}
.x13{left:361.281067pt;}
.x31{left:362.545067pt;}
.x1a{left:367.949333pt;}
.x19{left:375.816000pt;}
.x22{left:385.682667pt;}
.x20{left:393.016000pt;}
.x21{left:399.016000pt;}
.x3{left:404.408000pt;}
.x26{left:427.013333pt;}
.x25{left:432.482667pt;}
.x1d{left:435.953938pt;}
.x24{left:437.017506pt;}
.x1c{left:441.550140pt;}
.x23{left:442.482667pt;}
.x27{left:455.122667pt;}
.x32{left:502.378267pt;}
.xd{left:507.508000pt;}
.xc{left:577.800667pt;}
.x12{left:592.244933pt;}
.x15{left:620.057733pt;}
.x14{left:621.057733pt;}
.x2e{left:659.305467pt;}
}




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