
    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_beeb3a74f746dc3079b77ddc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_413db4e7e3e5b0d8bf87a2da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953125;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_b5e50a0535b22565700b4e03.woff')format("woff");}.ff3{font-family:ff3;line-height:1.011230;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_51b5370233e696ebb2c678b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.026367;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_6d6ab6244ff44d4625147a3a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.183594;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_51df017de9c7348f4f4dda4f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964935;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_76ab1499d8ee7de59e59ab1c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.027435;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_520d21a30f58704121ded0c2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.127930;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_cbc8c9269bf54631ed814cb5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.759766;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_b5accbc2e87ae3d7862a6ded.woff')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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_6333a8f3fbb2d6bb51827f6b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_3dbf1c8a5d97941d829f77cf.woff')format("woff");}.ffc{font-family:ffc;line-height:0.862793;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_d8a1a1d50285e40f5ff0eea2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.862793;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_b0e1e09fd7fd2594aa633a10.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7f648903bfe09fb91f0d4fbb.woff')format("woff");}.fff{font-family:fff;line-height:0.953125;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_5a6fc19a2ad3f40ba2ab06fb.woff')format("woff");}.ff10{font-family:ff10;line-height:1.046387;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_9ee4ad994862a00e7fcbcf6f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.026367;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_312c1560626e3a5c38ff339a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.183594;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_9775aa3a2b484189b2dd92a4.woff')format("woff");}.ff13{font-family:ff13;line-height:1.133789;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_9d47f8e5821622cdef8259b4.woff')format("woff");}.ff14{font-family:ff14;line-height:1.027344;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_a1374bdb56aa35413b9bc568.woff')format("woff");}.ff15{font-family:ff15;line-height:1.183594;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_c42c026c9fa6bbfbcdab9a01.woff')format("woff");}.ff16{font-family:ff16;line-height:1.027435;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_9c4989e36c335de7bad46527.woff')format("woff");}.ff17{font-family:ff17;line-height:0.964935;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_64472079b6f788fdc666960f.woff')format("woff");}.ff18{font-family:ff18;line-height:1.127930;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_b32730275e1a043bf393de21.woff')format("woff");}.ff19{font-family:ff19;line-height:1.026367;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_e5812aab6362edd4cc7270ac.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.666000;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_4124f7b970f1590df16f8474.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.128418;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:ff1c;src:url('chunks/assets/font_c348d50e9ff60ad8bb6ddb77.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.027344;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:ff1d;src:url('chunks/assets/font_5985cccd73b01f7650208a59.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.759766;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:ff1e;src:url('chunks/assets/font_ce6b7eacaff69539f3b33dc6.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.127930;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:ff1f;src:url('chunks/assets/font_5dbbf7c2bf6c949e10ec938b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;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:ff20;src:url('chunks/assets/font_57c45b091beb2a3789b144e0.woff')format("woff");}.ff20{font-family:ff20;line-height:0.863770;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:ff21;src:url('chunks/assets/font_7c26f7f8bfd3ab88689a19b8.woff')format("woff");}.ff21{font-family:ff21;line-height:0.675781;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.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);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.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:-15.984000px;}
.v3{vertical-align:-1.379035px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.587800px;}
.v1{vertical-align:19.980000px;}
.ls18{letter-spacing:-3.700873px;}
.ls16{letter-spacing:-1.800425px;}
.lsf{letter-spacing:-1.682227px;}
.ls14{letter-spacing:-0.950224px;}
.ls13{letter-spacing:-0.850201px;}
.lsd{letter-spacing:-0.818381px;}
.ls5{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.431923px;}
.lsa{letter-spacing:-0.386458px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006480px;}
.ls2{letter-spacing:0.007080px;}
.ls7{letter-spacing:0.022733px;}
.lsc{letter-spacing:0.045466px;}
.ls10{letter-spacing:0.050012px;}
.ls8{letter-spacing:0.068198px;}
.ls15{letter-spacing:0.100024px;}
.ls11{letter-spacing:0.150035px;}
.ls9{letter-spacing:0.409190px;}
.ls6{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.900212px;}
.ls3{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.740000px;}
.ls19{letter-spacing:1.920000px;}
.ls4{letter-spacing:2.100000px;}
.lse{letter-spacing:4.546560px;}
.ls17{letter-spacing:10.002360px;}
.ls1c{letter-spacing:19.766400px;}
.ls1d{letter-spacing:36.563400px;}
.ls1f{letter-spacing:53.460000px;}
.ls1e{letter-spacing:90.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5f{word-spacing:-24.786000px;}
.ws58{word-spacing:-19.766400px;}
.wse{word-spacing:-16.680000px;}
.ws4c{word-spacing:-16.500000px;}
.ws4b{word-spacing:-16.320000px;}
.wsc{word-spacing:-16.020000px;}
.ws29{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.460000px;}
.ws4{word-spacing:-14.280000px;}
.ws4d{word-spacing:-14.044496px;}
.ws26{word-spacing:-13.980000px;}
.ws60{word-spacing:-12.393000px;}
.ws34{word-spacing:-12.302903px;}
.ws6{word-spacing:-12.000000px;}
.ws14{word-spacing:-11.952000px;}
.ws9{word-spacing:-11.664000px;}
.ws11{word-spacing:-11.568000px;}
.ws38{word-spacing:-11.552726px;}
.ws55{word-spacing:-11.457600px;}
.ws37{word-spacing:-11.402690px;}
.ws35{word-spacing:-10.552490px;}
.ws36{word-spacing:-10.452466px;}
.wsf{word-spacing:-10.206000px;}
.ws3c{word-spacing:-10.002360px;}
.ws8{word-spacing:-9.180000px;}
.ws3e{word-spacing:-8.710020px;}
.ws25{word-spacing:-8.500140px;}
.ws54{word-spacing:-8.456400px;}
.ws39{word-spacing:-7.701817px;}
.ws5b{word-spacing:-7.070591px;}
.ws53{word-spacing:-6.932160px;}
.wsb{word-spacing:-6.800112px;}
.ws5{word-spacing:-5.640000px;}
.ws2b{word-spacing:-5.592269px;}
.ws2f{word-spacing:-5.251277px;}
.ws7{word-spacing:-5.220000px;}
.ws2e{word-spacing:-5.183078px;}
.ws2c{word-spacing:-4.796621px;}
.ws2d{word-spacing:-4.751155px;}
.ws33{word-spacing:-4.546560px;}
.ws5c{word-spacing:-3.780000px;}
.ws30{word-spacing:-3.500851px;}
.wsa{word-spacing:-3.360000px;}
.ws3{word-spacing:-3.240000px;}
.ws4f{word-spacing:-3.004063px;}
.ws44{word-spacing:-2.760000px;}
.ws57{word-spacing:-1.670400px;}
.ws5e{word-spacing:-1.080000px;}
.ws1b{word-spacing:-0.600000px;}
.ws18{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.219000px;}
.ws52{word-spacing:-0.123624px;}
.ws3a{word-spacing:-0.100024px;}
.ws31{word-spacing:-0.045466px;}
.ws1{word-spacing:0.000000px;}
.ws50{word-spacing:0.480000px;}
.ws49{word-spacing:0.660000px;}
.ws3d{word-spacing:0.720000px;}
.ws32{word-spacing:0.818381px;}
.ws17{word-spacing:0.900000px;}
.ws4a{word-spacing:1.260000px;}
.ws3f{word-spacing:1.380000px;}
.ws41{word-spacing:1.740000px;}
.ws3b{word-spacing:1.800425px;}
.ws1d{word-spacing:1.860000px;}
.ws48{word-spacing:2.520000px;}
.ws2a{word-spacing:2.640000px;}
.ws1e{word-spacing:2.820000px;}
.ws5a{word-spacing:2.992800px;}
.ws45{word-spacing:4.080000px;}
.ws46{word-spacing:4.200000px;}
.ws23{word-spacing:4.860000px;}
.ws43{word-spacing:5.040000px;}
.ws42{word-spacing:5.580000px;}
.ws47{word-spacing:6.120000px;}
.ws19{word-spacing:7.140000px;}
.ws1f{word-spacing:7.260000px;}
.ws22{word-spacing:7.440000px;}
.ws20{word-spacing:7.860000px;}
.ws1c{word-spacing:8.280000px;}
.ws27{word-spacing:9.360000px;}
.ws24{word-spacing:9.600000px;}
.ws28{word-spacing:10.080000px;}
.ws40{word-spacing:10.800000px;}
.ws59{word-spacing:11.414400px;}
.ws5d{word-spacing:14.640000px;}
.ws56{word-spacing:19.766400px;}
.ws13{word-spacing:24.060000px;}
.ws1a{word-spacing:30.240000px;}
.ws15{word-spacing:34.080000px;}
.ws51{word-spacing:50.340000px;}
.ws12{word-spacing:50.763952px;}
.ws21{word-spacing:53.460000px;}
.ws4e{word-spacing:72.030760px;}
.ws10{word-spacing:1509.264000px;}
._29{margin-left:-68.040000px;}
._19{margin-left:-48.660000px;}
._28{margin-left:-28.222800px;}
._17{margin-left:-24.000000px;}
._1f{margin-left:-22.413000px;}
._2a{margin-left:-20.226000px;}
._7{margin-left:-15.297000px;}
._d{margin-left:-13.992000px;}
._15{margin-left:-11.610000px;}
._21{margin-left:-9.384000px;}
._20{margin-left:-7.938000px;}
._13{margin-left:-6.288000px;}
._b{margin-left:-5.208000px;}
._4{margin-left:-4.104000px;}
._16{margin-left:-3.081600px;}
._0{margin-left:-1.971000px;}
._5{width:1.072800px;}
._8{width:3.003000px;}
._3{width:4.020000px;}
._a{width:5.469000px;}
._6{width:6.810000px;}
._1{width:8.220000px;}
._2{width:10.131000px;}
._9{width:11.139000px;}
._1a{width:12.192000px;}
._c{width:13.329000px;}
._24{width:14.884385px;}
._1c{width:16.383000px;}
._1b{width:17.790000px;}
._f{width:19.191000px;}
._e{width:21.153000px;}
._23{width:22.290000px;}
._12{width:24.264000px;}
._11{width:25.353000px;}
._22{width:28.800000px;}
._1d{width:30.228000px;}
._10{width:34.074000px;}
._14{width:39.360000px;}
._27{width:42.489569px;}
._1e{width:48.654000px;}
._26{width:51.516000px;}
._25{width:53.454000px;}
._2e{width:107.553900px;}
._2b{width:117.478500px;}
._2d{width:128.010000px;}
._2c{width:136.935000px;}
._2f{width:269.586000px;}
._18{width:714.920880px;}
.fc9{color:rgb(74,77,81);}
.fc7{color:rgb(129,60,122);}
.fc6{color:rgb(27,24,26);}
.fc5{color:transparent;}
.fc8{color:rgb(123,65,126);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(58,158,166);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:10.817400px;}
.fs11{font-size:12.362400px;}
.fs9{font-size:18.000000px;}
.fs8{font-size:18.145200px;}
.fs15{font-size:20.288400px;}
.fsa{font-size:22.732800px;}
.fs16{font-size:23.490000px;}
.fsf{font-size:26.270400px;}
.fs17{font-size:27.840000px;}
.fs5{font-size:27.984000px;}
.fs18{font-size:29.580000px;}
.fsd{font-size:30.916800px;}
.fs1d{font-size:31.285800px;}
.fs13{font-size:34.800000px;}
.fs4{font-size:34.980000px;}
.fs1b{font-size:36.000000px;}
.fs1c{font-size:40.500000px;}
.fs7{font-size:42.000000px;}
.fs1a{font-size:46.200000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:50.011800px;}
.fs3{font-size:51.000000px;}
.fs19{font-size:54.000000px;}
.fs10{font-size:56.403600px;}
.fs12{font-size:59.160000px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:77.754600px;}
.fs0{font-size:102.000000px;}
.fs14{font-size:162.068400px;}
.fs1{font-size:219.000000px;}
.y164{bottom:-487.140609px;}
.y162{bottom:-470.961792px;}
.y161{bottom:-454.782974px;}
.y160{bottom:-438.604157px;}
.y15f{bottom:-422.425340px;}
.y163{bottom:-415.798776px;}
.y15e{bottom:-399.619959px;}
.y15d{bottom:-383.441142px;}
.y15c{bottom:-367.262324px;}
.y1e5{bottom:-362.090550px;}
.y15b{bottom:-344.456944px;}
.y1e4{bottom:-312.588750px;}
.y1e3{bottom:-301.278750px;}
.y1e2{bottom:-289.968750px;}
.y1e1{bottom:-278.658750px;}
.y1e0{bottom:-267.348750px;}
.y1df{bottom:-256.038750px;}
.y1de{bottom:-244.728750px;}
.y1dd{bottom:-233.418750px;}
.y15a{bottom:-226.541622px;}
.y1dc{bottom:-222.108750px;}
.y1db{bottom:-210.798750px;}
.y1da{bottom:-188.178750px;}
.y1d9{bottom:-176.868750px;}
.y1d8{bottom:-165.558750px;}
.y1d7{bottom:-154.248750px;}
.y1c3{bottom:-147.310650px;}
.y1d6{bottom:-142.938750px;}
.y1c2{bottom:-139.480650px;}
.y159{bottom:-135.345105px;}
.y1c1{bottom:-131.650650px;}
.y1d5{bottom:-131.628750px;}
.y1c0{bottom:-123.820650px;}
.y1d4{bottom:-120.318750px;}
.y1bf{bottom:-115.990650px;}
.y158{bottom:-112.539724px;}
.y1d3{bottom:-109.008750px;}
.y1be{bottom:-108.160650px;}
.y1bd{bottom:-100.330650px;}
.y1d2{bottom:-97.698750px;}
.y1bc{bottom:-92.500800px;}
.y157{bottom:-89.734343px;}
.y1d1{bottom:-86.388750px;}
.y1bb{bottom:-84.670800px;}
.y1ba{bottom:-76.840800px;}
.y1d0{bottom:-75.078750px;}
.y1b9{bottom:-69.010800px;}
.y1cf{bottom:-63.768750px;}
.y1b8{bottom:-61.180800px;}
.y1b7{bottom:-53.350800px;}
.y17a{bottom:-52.732290px;}
.y1ce{bottom:-52.458750px;}
.y156{bottom:-44.136085px;}
.y179{bottom:-43.457250px;}
.y1cd{bottom:-41.148750px;}
.y1b4{bottom:-31.967250px;}
.y1cc{bottom:-29.838750px;}
.y155{bottom:-27.957267px;}
.y1b3{bottom:-20.657250px;}
.y1cb{bottom:-18.528750px;}
.y154{bottom:-11.778450px;}
.y1b2{bottom:-9.347250px;}
.y1af{bottom:-9.347100px;}
.y1ca{bottom:-7.218750px;}
.y0{bottom:0.000000px;}
.y1b1{bottom:1.962750px;}
.y1a2{bottom:15.141900px;}
.y20c{bottom:19.098150px;}
.y20b{bottom:31.248150px;}
.y4{bottom:38.344500px;}
.y20a{bottom:43.398150px;}
.y1e7{bottom:43.906500px;}
.yc{bottom:44.756400px;}
.y209{bottom:55.548150px;}
.y3{bottom:57.844500px;}
.y149{bottom:95.874679px;}
.y106{bottom:96.383850px;}
.y2c{bottom:96.767700px;}
.y18b{bottom:97.500000px;}
.y97{bottom:99.056100px;}
.y23a{bottom:100.450800px;}
.y14f{bottom:102.223617px;}
.y10f{bottom:102.561000px;}
.y147{bottom:103.228740px;}
.yea{bottom:104.066850px;}
.y199{bottom:106.972350px;}
.y23e{bottom:108.233100px;}
.y103{bottom:108.472350px;}
.y2b{bottom:110.267700px;}
.y146{bottom:110.582801px;}
.y198{bottom:110.968350px;}
.y18a{bottom:111.000000px;}
.y102{bottom:112.468350px;}
.y96{bottom:112.556100px;}
.y105{bottom:115.883850px;}
.yb7{bottom:116.776500px;}
.yff{bottom:117.708600px;}
.y145{bottom:117.936862px;}
.y14e{bottom:118.402435px;}
.y23d{bottom:118.736100px;}
.y239{bottom:119.945550px;}
.y197{bottom:120.472350px;}
.yfe{bottom:121.704600px;}
.y101{bottom:121.972350px;}
.y10e{bottom:122.061000px;}
.y19c{bottom:122.917350px;}
.y196{bottom:124.468350px;}
.y189{bottom:124.500000px;}
.y144{bottom:125.290922px;}
.y227{bottom:125.681100px;}
.y100{bottom:125.968350px;}
.y182{bottom:126.000000px;}
.y95{bottom:126.056100px;}
.y2a{bottom:127.763700px;}
.y148{bottom:128.303018px;}
.y23c{bottom:129.239100px;}
.y181{bottom:129.996000px;}
.ye9{bottom:131.066850px;}
.y14d{bottom:134.581252px;}
.y104{bottom:135.383850px;}
.y143{bottom:135.657079px;}
.y19b{bottom:136.417350px;}
.y238{bottom:136.444050px;}
.y29{bottom:137.267700px;}
.y188{bottom:138.000000px;}
.y1a0{bottom:139.181100px;}
.y180{bottom:139.500000px;}
.y94{bottom:139.556100px;}
.y225{bottom:139.712550px;}
.y23b{bottom:139.742100px;}
.y19a{bottom:140.413350px;}
.y142{bottom:143.011140px;}
.y226{bottom:143.177100px;}
.ye8{bottom:144.566850px;}
.y231{bottom:147.008850px;}
.y141{bottom:150.365201px;}
.y28{bottom:150.767700px;}
.y187{bottom:151.500000px;}
.y19f{bottom:152.681100px;}
.y17f{bottom:153.000000px;}
.y69{bottom:153.008850px;}
.y93{bottom:153.056100px;}
.y224{bottom:153.212550px;}
.y125{bottom:154.883850px;}
.yf8{bottom:156.507900px;}
.y17e{bottom:156.996000px;}
.y14c{bottom:157.386633px;}
.ye7{bottom:158.066850px;}
.y79{bottom:160.334700px;}
.y140{bottom:160.731358px;}
.y195{bottom:163.883850px;}
.y27{bottom:164.267700px;}
.y186{bottom:165.000000px;}
.y19e{bottom:166.181100px;}
.y17d{bottom:166.500000px;}
.y230{bottom:166.508850px;}
.y223{bottom:166.712550px;}
.y237{bottom:169.441050px;}
.yf5{bottom:170.007900px;}
.y19d{bottom:170.177100px;}
.y92{bottom:170.552100px;}
.ye6{bottom:171.566850px;}
.y68{bottom:172.508850px;}
.y14b{bottom:173.565450px;}
.y78{bottom:173.834700px;}
.yf7{bottom:174.003900px;}
.yfd{bottom:174.383850px;}
.y26{bottom:177.767700px;}
.y185{bottom:178.500000px;}
.y17c{bottom:180.000000px;}
.y222{bottom:180.212550px;}
.yc4{bottom:181.786350px;}
.y194{bottom:183.383850px;}
.yf4{bottom:183.507900px;}
.y1e6{bottom:183.708000px;}
.y17b{bottom:183.996000px;}
.ye5{bottom:185.066850px;}
.y236{bottom:185.939550px;}
.y22f{bottom:186.008850px;}
.y77{bottom:187.334700px;}
.y4b{bottom:190.346400px;}
.y25{bottom:191.267700px;}
.y184{bottom:192.000000px;}
.y67{bottom:192.008850px;}
.y221{bottom:193.712550px;}
.yfc{bottom:193.883850px;}
.yc3{bottom:195.286350px;}
.y183{bottom:195.996000px;}
.yf3{bottom:197.007900px;}
.ye4{bottom:198.566850px;}
.y76{bottom:200.834700px;}
.yf2{bottom:201.003900px;}
.y235{bottom:202.438050px;}
.y193{bottom:202.883850px;}
.y4a{bottom:203.846400px;}
.y22e{bottom:205.508850px;}
.y220{bottom:207.212550px;}
.y24{bottom:208.763700px;}
.y9c{bottom:209.125950px;}
.ye3{bottom:212.066850px;}
.yfb{bottom:213.383850px;}
.y13f{bottom:214.329617px;}
.y75{bottom:214.334700px;}
.y202{bottom:216.824850px;}
.y49{bottom:217.346400px;}
.y23{bottom:218.267700px;}
.y234{bottom:218.936550px;}
.y21f{bottom:220.712550px;}
.y22{bottom:222.263700px;}
.yc2{bottom:222.286350px;}
.y192{bottom:222.383850px;}
.y9b{bottom:222.625950px;}
.y22d{bottom:225.008850px;}
.ye2{bottom:225.566850px;}
.y74{bottom:227.834700px;}
.y124{bottom:229.694850px;}
.y48{bottom:230.846400px;}
.y66{bottom:231.008850px;}
.y201{bottom:231.828300px;}
.yfa{bottom:232.883850px;}
.y21e{bottom:234.212550px;}
.y233{bottom:235.435050px;}
.yc1{bottom:235.786350px;}
.y9a{bottom:236.125950px;}
.y21d{bottom:238.208550px;}
.ye1{bottom:239.066850px;}
.y73{bottom:241.334700px;}
.y191{bottom:241.883850px;}
.y47{bottom:244.346400px;}
.y200{bottom:246.831750px;}
.y123{bottom:249.194850px;}
.yc0{bottom:249.286350px;}
.y99{bottom:249.625950px;}
.y65{bottom:250.508850px;}
.y232{bottom:251.933550px;}
.yf9{bottom:252.383850px;}
.ye0{bottom:252.566850px;}
.y72{bottom:254.834700px;}
.y13e{bottom:255.782878px;}
.y46{bottom:257.846400px;}
.y190{bottom:261.383850px;}
.ybf{bottom:262.786350px;}
.y98{bottom:263.125950px;}
.y22c{bottom:264.008850px;}
.y21{bottom:264.601200px;}
.ydf{bottom:266.066850px;}
.y13d{bottom:266.149034px;}
.y208{bottom:266.161800px;}
.y71{bottom:268.334700px;}
.y122{bottom:268.694850px;}
.y64{bottom:270.008850px;}
.y45{bottom:271.346400px;}
.yf1{bottom:271.883850px;}
.y178{bottom:276.147600px;}
.ybe{bottom:276.286350px;}
.y13c{bottom:276.515191px;}
.y207{bottom:276.961800px;}
.yde{bottom:279.566850px;}
.y18f{bottom:280.883850px;}
.y70{bottom:281.834700px;}
.y22b{bottom:283.508850px;}
.yb3{bottom:284.359800px;}
.y44{bottom:284.846400px;}
.y1aa{bottom:287.310750px;}
.y206{bottom:287.464800px;}
.y121{bottom:288.194850px;}
.y63{bottom:289.508850px;}
.ybd{bottom:289.786350px;}
.yb2{bottom:289.984800px;}
.yf0{bottom:291.383850px;}
.y83{bottom:292.990200px;}
.ydd{bottom:293.066850px;}
.y6f{bottom:295.334700px;}
.y13b{bottom:297.241822px;}
.y205{bottom:297.967800px;}
.y43{bottom:298.346400px;}
.y18e{bottom:300.383850px;}
.y22a{bottom:303.008850px;}
.ybc{bottom:303.286350px;}
.y20{bottom:303.601200px;}
.y13a{bottom:304.595882px;}
.ydc{bottom:306.566850px;}
.y120{bottom:307.694850px;}
.y204{bottom:308.470800px;}
.y6e{bottom:308.834700px;}
.y62{bottom:309.008850px;}
.y1ff{bottom:309.409650px;}
.yef{bottom:310.883850px;}
.y42{bottom:311.846400px;}
.y139{bottom:311.949943px;}
.y177{bottom:312.343500px;}
.y82{bottom:312.490200px;}
.y176{bottom:315.206700px;}
.ybb{bottom:316.786350px;}
.ya0{bottom:318.323850px;}
.ya6{bottom:318.435900px;}
.ya9{bottom:318.524850px;}
.y203{bottom:318.973800px;}
.y18d{bottom:319.883850px;}
.ydb{bottom:320.066850px;}
.y138{bottom:322.316100px;}
.y6d{bottom:322.334700px;}
.y229{bottom:322.508850px;}
.y1f{bottom:323.101200px;}
.y1fe{bottom:324.413100px;}
.y41{bottom:325.346400px;}
.y11f{bottom:327.194850px;}
.y61{bottom:328.508850px;}
.y137{bottom:329.670161px;}
.yba{bottom:330.286350px;}
.yee{bottom:330.383850px;}
.y81{bottom:331.990200px;}
.yab{bottom:332.866350px;}
.y175{bottom:334.706700px;}
.y6c{bottom:335.834700px;}
.y136{bottom:337.024222px;}
.y40{bottom:338.846400px;}
.y228{bottom:342.008850px;}
.y1e{bottom:342.601200px;}
.yb9{bottom:343.786350px;}
.y9f{bottom:345.873600px;}
.ya7{bottom:346.075050px;}
.y11e{bottom:346.694850px;}
.y1fd{bottom:346.912500px;}
.y60{bottom:348.008850px;}
.y6b{bottom:349.334700px;}
.yf6{bottom:349.883850px;}
.y135{bottom:350.396791px;}
.y80{bottom:351.490200px;}
.y3f{bottom:352.346400px;}
.y174{bottom:354.206700px;}
.yb8{bottom:357.286350px;}
.yda{bottom:361.508850px;}
.y1fc{bottom:361.915950px;}
.y1d{bottom:362.101200px;}
.y134{bottom:363.769361px;}
.y6a{bottom:366.830700px;}
.y5f{bottom:367.508850px;}
.yed{bottom:369.383850px;}
.y133{bottom:371.123422px;}
.ya8{bottom:373.395300px;}
.y9e{bottom:373.423350px;}
.ya5{bottom:373.535550px;}
.y173{bottom:373.706700px;}
.yb0{bottom:374.184600px;}
.y18c{bottom:378.383850px;}
.y132{bottom:378.477482px;}
.yd9{bottom:381.008850px;}
.y1c{bottom:381.601200px;}
.y1fb{bottom:384.415350px;}
.y11d{bottom:385.694850px;}
.y21c{bottom:387.008850px;}
.y131{bottom:388.843639px;}
.yec{bottom:388.883850px;}
.y7f{bottom:390.488850px;}
.y130{bottom:396.197700px;}
.yaf{bottom:399.043800px;}
.yd8{bottom:400.508850px;}
.y9d{bottom:400.973100px;}
.ya4{bottom:401.085300px;}
.y5e{bottom:405.008850px;}
.y12a{bottom:405.020700px;}
.y11c{bottom:405.194850px;}
.yeb{bottom:408.383850px;}
.y7e{bottom:409.988850px;}
.y1b{bottom:412.201200px;}
.y172{bottom:412.706700px;}
.y1c9{bottom:415.630500px;}
.y129{bottom:418.520700px;}
.y1c8{bottom:419.721750px;}
.yd7{bottom:420.008850px;}
.y5d{bottom:424.508850px;}
.y11b{bottom:424.694850px;}
.y21b{bottom:426.008850px;}
.y3e{bottom:427.883850px;}
.y1fa{bottom:428.270700px;}
.ya3{bottom:428.523300px;}
.y7d{bottom:429.488850px;}
.y1c7{bottom:431.031750px;}
.y128{bottom:432.020700px;}
.y171{bottom:432.206700px;}
.y12f{bottom:432.383850px;}
.yae{bottom:436.877850px;}
.yd6{bottom:439.508850px;}
.y1f9{bottom:443.274150px;}
.y5c{bottom:444.008850px;}
.y21a{bottom:445.508850px;}
.y127{bottom:445.520700px;}
.y23f{bottom:445.680150px;}
.y3d{bottom:447.383850px;}
.y170{bottom:451.706700px;}
.y12e{bottom:451.883850px;}
.y1c6{bottom:453.651750px;}
.ya2{bottom:456.073050px;}
.yd5{bottom:459.008850px;}
.y126{bottom:459.020700px;}
.yad{bottom:461.201850px;}
.y1a{bottom:462.301200px;}
.y5b{bottom:463.508850px;}
.y1c5{bottom:464.961750px;}
.y219{bottom:465.008850px;}
.y1f8{bottom:465.773550px;}
.y3c{bottom:466.883850px;}
.y7c{bottom:468.488850px;}
.y16f{bottom:471.206700px;}
.y12d{bottom:471.383850px;}
.yd4{bottom:478.508850px;}
.y1f7{bottom:480.777000px;}
.y19{bottom:481.801200px;}
.y5a{bottom:483.008850px;}
.ya1{bottom:483.522287px;}
.yac{bottom:486.061050px;}
.yb6{bottom:486.383850px;}
.y7b{bottom:487.988850px;}
.y16e{bottom:490.706700px;}
.y12c{bottom:490.883850px;}
.yb1{bottom:494.322450px;}
.y1f6{bottom:495.780450px;}
.y1c4{bottom:496.769850px;}
.yd3{bottom:498.008850px;}
.y18{bottom:501.301200px;}
.y218{bottom:504.008850px;}
.y1a9{bottom:504.163500px;}
.y3b{bottom:505.883850px;}
.y7a{bottom:507.488850px;}
.y16d{bottom:510.206700px;}
.yaa{bottom:517.258950px;}
.y1b0{bottom:517.436400px;}
.yd2{bottom:517.508850px;}
.y1f5{bottom:518.279850px;}
.y1a1{bottom:520.501500px;}
.y59{bottom:520.508850px;}
.y17{bottom:520.801200px;}
.y217{bottom:523.508850px;}
.y3a{bottom:525.383850px;}
.y16c{bottom:529.706700px;}
.y1f4{bottom:533.283300px;}
.yd1{bottom:537.008850px;}
.y1ae{bottom:537.446250px;}
.y58{bottom:540.008850px;}
.y216{bottom:543.008850px;}
.y39{bottom:544.883850px;}
.y1ad{bottom:548.756250px;}
.y16b{bottom:549.206700px;}
.y12b{bottom:549.383850px;}
.yb{bottom:553.345800px;}
.y1f3{bottom:555.782700px;}
.y1a8{bottom:555.889275px;}
.yd0{bottom:556.508850px;}
.y1a7{bottom:558.593550px;}
.y57{bottom:559.508850px;}
.y16{bottom:559.801200px;}
.y1ac{bottom:560.066250px;}
.y215{bottom:562.508850px;}
.y38{bottom:564.383850px;}
.y91{bottom:565.015800px;}
.y16a{bottom:568.706700px;}
.ycf{bottom:576.008850px;}
.y56{bottom:579.008850px;}
.y15{bottom:579.301200px;}
.y1b6{bottom:579.506850px;}
.y214{bottom:582.008850px;}
.y37{bottom:583.883850px;}
.y1b5{bottom:586.553850px;}
.y8b{bottom:588.091950px;}
.y90{bottom:588.649500px;}
.ya{bottom:589.345800px;}
.yce{bottom:595.508850px;}
.y55{bottom:598.508850px;}
.y1f2{bottom:599.638050px;}
.y88{bottom:601.594950px;}
.y36{bottom:603.383850px;}
.y8f{bottom:603.649500px;}
.y169{bottom:607.706700px;}
.y1f1{bottom:614.641500px;}
.ycd{bottom:615.008850px;}
.y87{bottom:615.097950px;}
.y54{bottom:618.008850px;}
.y14{bottom:618.301200px;}
.y2{bottom:619.279950px;}
.y11a{bottom:619.694850px;}
.y35{bottom:622.883850px;}
.y213{bottom:624.008850px;}
.y9{bottom:625.345800px;}
.y8d{bottom:625.789500px;}
.y168{bottom:627.206700px;}
.y86{bottom:628.600950px;}
.ycc{bottom:634.508850px;}
.y1f0{bottom:637.140900px;}
.y53{bottom:637.508850px;}
.y13{bottom:637.801200px;}
.y119{bottom:639.194850px;}
.y34{bottom:642.383850px;}
.y1ef{bottom:652.144350px;}
.ycb{bottom:654.008850px;}
.y52{bottom:657.008850px;}
.y10d{bottom:657.132900px;}
.y12{bottom:657.301200px;}
.y118{bottom:658.694850px;}
.y8{bottom:661.345800px;}
.y33{bottom:661.883850px;}
.y167{bottom:666.206700px;}
.y10c{bottom:670.632900px;}
.yca{bottom:673.508850px;}
.y1{bottom:673.945800px;}
.y1ee{bottom:674.643750px;}
.y51{bottom:676.508850px;}
.y117{bottom:678.194850px;}
.y32{bottom:681.383850px;}
.y1a5{bottom:682.749647px;}
.y10b{bottom:684.132900px;}
.y166{bottom:685.706700px;}
.y1ed{bottom:689.647200px;}
.y1a4{bottom:690.473144px;}
.yc9{bottom:693.008850px;}
.y11{bottom:696.301200px;}
.y8a{bottom:696.336450px;}
.y7{bottom:697.345800px;}
.y10a{bottom:697.632900px;}
.y116{bottom:697.694850px;}
.y1a6{bottom:699.709800px;}
.y31{bottom:700.883850px;}
.y212{bottom:703.714110px;}
.y165{bottom:705.206700px;}
.y8e{bottom:709.765500px;}
.y89{bottom:709.839450px;}
.y109{bottom:711.132900px;}
.y1ec{bottom:712.146600px;}
.yc8{bottom:712.508850px;}
.y211{bottom:713.099850px;}
.y1a3{bottom:713.499150px;}
.y50{bottom:714.008850px;}
.y10{bottom:715.801200px;}
.y115{bottom:717.194850px;}
.yb5{bottom:720.383850px;}
.y210{bottom:722.485590px;}
.y85{bottom:723.342450px;}
.y108{bottom:724.632900px;}
.y8c{bottom:731.905500px;}
.yc7{bottom:732.008850px;}
.y14a{bottom:733.227000px;}
.y6{bottom:733.345800px;}
.y4f{bottom:733.508850px;}
.yf{bottom:735.301200px;}
.y114{bottom:736.694850px;}
.y84{bottom:736.845450px;}
.y107{bottom:738.132900px;}
.y30{bottom:739.883850px;}
.y20f{bottom:741.257070px;}
.y153{bottom:744.253624px;}
.y20e{bottom:750.642810px;}
.yc6{bottom:751.508850px;}
.y4e{bottom:753.008850px;}
.ye{bottom:754.801200px;}
.y113{bottom:756.194850px;}
.y2f{bottom:759.383850px;}
.y20d{bottom:760.028550px;}
.y152{bottom:760.432441px;}
.y1eb{bottom:763.511100px;}
.yc5{bottom:771.008850px;}
.y4d{bottom:772.508850px;}
.y1ab{bottom:773.726400px;}
.yd{bottom:774.301200px;}
.y112{bottom:775.694850px;}
.y151{bottom:776.611259px;}
.yb4{bottom:778.883850px;}
.y1ea{bottom:781.506600px;}
.y111{bottom:795.194850px;}
.y1e9{bottom:797.706600px;}
.y2e{bottom:798.383850px;}
.y150{bottom:806.030700px;}
.y5{bottom:808.945800px;}
.y4c{bottom:810.008850px;}
.y1e8{bottom:813.906600px;}
.y110{bottom:814.694850px;}
.y2d{bottom:817.883850px;}
.h1e{height:7.572180px;}
.h23{height:9.851288px;}
.h22{height:11.644077px;}
.h11{height:13.122000px;}
.h10{height:13.227851px;}
.h17{height:16.549478px;}
.h1f{height:19.702800px;}
.h3a{height:20.852108px;}
.h1c{height:21.164723px;}
.h2a{height:21.276343px;}
.h39{height:21.447882px;}
.h20{height:21.883448px;}
.h2c{height:22.185000px;}
.h9{height:22.299750px;}
.h2f{height:26.100000px;}
.h2b{height:26.222344px;}
.h14{height:26.357977px;}
.h32{height:26.792432px;}
.h31{height:27.731250px;}
.h34{height:27.972000px;}
.h2e{height:28.275000px;}
.hb{height:29.226938px;}
.h37{height:29.302734px;}
.h26{height:31.469531px;}
.h28{height:31.520508px;}
.h29{height:32.777930px;}
.he{height:36.000000px;}
.h19{height:36.408590px;}
.h38{height:36.683350px;}
.hf{height:38.250000px;}
.hd{height:39.559570px;}
.h8{height:40.242188px;}
.h36{height:41.913867px;}
.h12{height:43.476562px;}
.h16{height:45.000000px;}
.ha{height:45.210938px;}
.h21{height:46.984639px;}
.h25{height:47.143125px;}
.h4{height:47.343750px;}
.h6{height:47.812500px;}
.h3c{height:48.036621px;}
.h15{height:48.750000px;}
.h35{height:48.990234px;}
.h1b{height:53.304423px;}
.hc{height:54.345703px;}
.h2d{height:55.722480px;}
.h7{height:56.513672px;}
.h3b{height:57.210938px;}
.h5{height:81.281250px;}
.h2{height:84.966797px;}
.h13{height:96.073242px;}
.h18{height:98.721000px;}
.h30{height:109.114500px;}
.h27{height:146.795353px;}
.h33{height:174.331500px;}
.h3{height:182.428711px;}
.h1d{height:229.969500px;}
.h1a{height:246.646500px;}
.h24{height:303.336000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w4{width:162.073500px;}
.w3{width:171.208500px;}
.w5{width:315.049500px;}
.w6{width:316.771500px;}
.w7{width:444.331500px;}
.w2{width:519.642000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x33{left:-38.576250px;}
.x34{left:-22.213534px;}
.x32{left:-1.962900px;}
.x0{left:0.000000px;}
.x3a{left:6.042000px;}
.x2f{left:14.354550px;}
.x44{left:16.303800px;}
.x3d{left:33.165600px;}
.x48{left:34.865400px;}
.x41{left:36.261780px;}
.x1{left:51.000000px;}
.x5{left:54.000000px;}
.x23{left:55.989600px;}
.x3b{left:60.042000px;}
.x22{left:62.518950px;}
.x8{left:63.779550px;}
.xa{left:67.661700px;}
.x9{left:69.357900px;}
.xb{left:71.010000px;}
.x27{left:73.234950px;}
.x38{left:75.193050px;}
.x10{left:79.050000px;}
.x11{left:81.013500px;}
.x25{left:85.906950px;}
.x3c{left:87.165600px;}
.x2{left:89.503950px;}
.x46{left:92.481000px;}
.x24{left:93.515550px;}
.x4e{left:108.611850px;}
.x21{left:113.006250px;}
.x28{left:127.046250px;}
.x4d{left:140.724382px;}
.x1e{left:146.409322px;}
.x1d{left:147.625050px;}
.x29{left:150.507900px;}
.x45{left:153.378450px;}
.x1f{left:167.775000px;}
.x2b{left:169.031400px;}
.x39{left:170.517185px;}
.x4f{left:175.181100px;}
.x20{left:188.037300px;}
.x35{left:193.210050px;}
.x14{left:202.093950px;}
.x2c{left:205.578900px;}
.x12{left:215.565450px;}
.x13{left:216.751950px;}
.x3f{left:227.882542px;}
.x3e{left:230.155200px;}
.xe{left:231.480000px;}
.x36{left:233.085000px;}
.x2d{left:241.047751px;}
.x31{left:242.220000px;}
.xf{left:246.003750px;}
.x49{left:248.527500px;}
.x43{left:258.144000px;}
.x42{left:264.590700px;}
.x30{left:278.066771px;}
.x3{left:286.744050px;}
.x40{left:295.674900px;}
.x4{left:297.439050px;}
.x26{left:307.330650px;}
.x6{left:310.988100px;}
.x37{left:318.795000px;}
.x2e{left:325.443271px;}
.x2a{left:331.770000px;}
.x16{left:338.610150px;}
.x17{left:345.403650px;}
.x15{left:352.081650px;}
.x18{left:355.168650px;}
.xc{left:411.378000px;}
.xd{left:416.956350px;}
.x4a{left:420.346050px;}
.x4b{left:436.384050px;}
.x4c{left:447.227925px;}
.x1a{left:477.285300px;}
.x1c{left:480.729300px;}
.x1b{left:491.949300px;}
.x19{left:530.241300px;}
.x7{left:575.291400px;}
.x47{left:601.704000px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-1.225809pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.300267pt;}
.v1{vertical-align:17.760000pt;}
.ls18{letter-spacing:-3.289665pt;}
.ls16{letter-spacing:-1.600378pt;}
.lsf{letter-spacing:-1.495313pt;}
.ls14{letter-spacing:-0.844644pt;}
.ls13{letter-spacing:-0.755734pt;}
.lsd{letter-spacing:-0.727450pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.383932pt;}
.lsa{letter-spacing:-0.343518pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005760pt;}
.ls2{letter-spacing:0.006293pt;}
.ls7{letter-spacing:0.020207pt;}
.lsc{letter-spacing:0.040414pt;}
.ls10{letter-spacing:0.044455pt;}
.ls8{letter-spacing:0.060621pt;}
.ls15{letter-spacing:0.088910pt;}
.ls11{letter-spacing:0.133365pt;}
.ls9{letter-spacing:0.363725pt;}
.ls6{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.800189pt;}
.ls3{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls19{letter-spacing:1.706667pt;}
.ls4{letter-spacing:1.866667pt;}
.lse{letter-spacing:4.041387pt;}
.ls17{letter-spacing:8.890987pt;}
.ls1c{letter-spacing:17.570133pt;}
.ls1d{letter-spacing:32.500800pt;}
.ls1f{letter-spacing:47.520000pt;}
.ls1e{letter-spacing:80.298667pt;}
.ws5f{word-spacing:-22.032000pt;}
.ws58{word-spacing:-17.570133pt;}
.wse{word-spacing:-14.826667pt;}
.ws4c{word-spacing:-14.666667pt;}
.ws4b{word-spacing:-14.506667pt;}
.wsc{word-spacing:-14.240000pt;}
.ws29{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.853333pt;}
.ws4{word-spacing:-12.693333pt;}
.ws4d{word-spacing:-12.483997pt;}
.ws26{word-spacing:-12.426667pt;}
.ws60{word-spacing:-11.016000pt;}
.ws34{word-spacing:-10.935914pt;}
.ws6{word-spacing:-10.666667pt;}
.ws14{word-spacing:-10.624000pt;}
.ws9{word-spacing:-10.368000pt;}
.ws11{word-spacing:-10.282667pt;}
.ws38{word-spacing:-10.269090pt;}
.ws55{word-spacing:-10.184533pt;}
.ws37{word-spacing:-10.135725pt;}
.ws35{word-spacing:-9.379991pt;}
.ws36{word-spacing:-9.291081pt;}
.wsf{word-spacing:-9.072000pt;}
.ws3c{word-spacing:-8.890987pt;}
.ws8{word-spacing:-8.160000pt;}
.ws3e{word-spacing:-7.742240pt;}
.ws25{word-spacing:-7.555680pt;}
.ws54{word-spacing:-7.516800pt;}
.ws39{word-spacing:-6.846060pt;}
.ws5b{word-spacing:-6.284970pt;}
.ws53{word-spacing:-6.161920pt;}
.wsb{word-spacing:-6.044544pt;}
.ws5{word-spacing:-5.013333pt;}
.ws2b{word-spacing:-4.970906pt;}
.ws2f{word-spacing:-4.667802pt;}
.ws7{word-spacing:-4.640000pt;}
.ws2e{word-spacing:-4.607181pt;}
.ws2c{word-spacing:-4.263663pt;}
.ws2d{word-spacing:-4.223249pt;}
.ws33{word-spacing:-4.041387pt;}
.ws5c{word-spacing:-3.360000pt;}
.ws30{word-spacing:-3.111868pt;}
.wsa{word-spacing:-2.986667pt;}
.ws3{word-spacing:-2.880000pt;}
.ws4f{word-spacing:-2.670278pt;}
.ws44{word-spacing:-2.453333pt;}
.ws57{word-spacing:-1.484800pt;}
.ws5e{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.533333pt;}
.ws18{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.194667pt;}
.ws52{word-spacing:-0.109888pt;}
.ws3a{word-spacing:-0.088910pt;}
.ws31{word-spacing:-0.040414pt;}
.ws1{word-spacing:0.000000pt;}
.ws50{word-spacing:0.426667pt;}
.ws49{word-spacing:0.586667pt;}
.ws3d{word-spacing:0.640000pt;}
.ws32{word-spacing:0.727450pt;}
.ws17{word-spacing:0.800000pt;}
.ws4a{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.226667pt;}
.ws41{word-spacing:1.546667pt;}
.ws3b{word-spacing:1.600378pt;}
.ws1d{word-spacing:1.653333pt;}
.ws48{word-spacing:2.240000pt;}
.ws2a{word-spacing:2.346667pt;}
.ws1e{word-spacing:2.506667pt;}
.ws5a{word-spacing:2.660267pt;}
.ws45{word-spacing:3.626667pt;}
.ws46{word-spacing:3.733333pt;}
.ws23{word-spacing:4.320000pt;}
.ws43{word-spacing:4.480000pt;}
.ws42{word-spacing:4.960000pt;}
.ws47{word-spacing:5.440000pt;}
.ws19{word-spacing:6.346667pt;}
.ws1f{word-spacing:6.453333pt;}
.ws22{word-spacing:6.613333pt;}
.ws20{word-spacing:6.986667pt;}
.ws1c{word-spacing:7.360000pt;}
.ws27{word-spacing:8.320000pt;}
.ws24{word-spacing:8.533333pt;}
.ws28{word-spacing:8.960000pt;}
.ws40{word-spacing:9.600000pt;}
.ws59{word-spacing:10.146133pt;}
.ws5d{word-spacing:13.013333pt;}
.ws56{word-spacing:17.570133pt;}
.ws13{word-spacing:21.386667pt;}
.ws1a{word-spacing:26.880000pt;}
.ws15{word-spacing:30.293333pt;}
.ws51{word-spacing:44.746667pt;}
.ws12{word-spacing:45.123513pt;}
.ws21{word-spacing:47.520000pt;}
.ws4e{word-spacing:64.027342pt;}
.ws10{word-spacing:1341.568000pt;}
._29{margin-left:-60.480000pt;}
._19{margin-left:-43.253333pt;}
._28{margin-left:-25.086933pt;}
._17{margin-left:-21.333333pt;}
._1f{margin-left:-19.922667pt;}
._2a{margin-left:-17.978667pt;}
._7{margin-left:-13.597333pt;}
._d{margin-left:-12.437333pt;}
._15{margin-left:-10.320000pt;}
._21{margin-left:-8.341333pt;}
._20{margin-left:-7.056000pt;}
._13{margin-left:-5.589333pt;}
._b{margin-left:-4.629333pt;}
._4{margin-left:-3.648000pt;}
._16{margin-left:-2.739200pt;}
._0{margin-left:-1.752000pt;}
._5{width:0.953600pt;}
._8{width:2.669333pt;}
._3{width:3.573333pt;}
._a{width:4.861333pt;}
._6{width:6.053333pt;}
._1{width:7.306667pt;}
._2{width:9.005333pt;}
._9{width:9.901333pt;}
._1a{width:10.837333pt;}
._c{width:11.848000pt;}
._24{width:13.230564pt;}
._1c{width:14.562667pt;}
._1b{width:15.813333pt;}
._f{width:17.058667pt;}
._e{width:18.802667pt;}
._23{width:19.813333pt;}
._12{width:21.568000pt;}
._11{width:22.536000pt;}
._22{width:25.600000pt;}
._1d{width:26.869333pt;}
._10{width:30.288000pt;}
._14{width:34.986667pt;}
._27{width:37.768506pt;}
._1e{width:43.248000pt;}
._26{width:45.792000pt;}
._25{width:47.514667pt;}
._2e{width:95.603467pt;}
._2b{width:104.425333pt;}
._2d{width:113.786667pt;}
._2c{width:121.720000pt;}
._2f{width:239.632000pt;}
._18{width:635.485227pt;}
.fse{font-size:9.615467pt;}
.fs11{font-size:10.988800pt;}
.fs9{font-size:16.000000pt;}
.fs8{font-size:16.129067pt;}
.fs15{font-size:18.034133pt;}
.fsa{font-size:20.206933pt;}
.fs16{font-size:20.880000pt;}
.fsf{font-size:23.351467pt;}
.fs17{font-size:24.746667pt;}
.fs5{font-size:24.874667pt;}
.fs18{font-size:26.293333pt;}
.fsd{font-size:27.481600pt;}
.fs1d{font-size:27.809600pt;}
.fs13{font-size:30.933333pt;}
.fs4{font-size:31.093333pt;}
.fs1b{font-size:32.000000pt;}
.fs1c{font-size:36.000000pt;}
.fs7{font-size:37.333333pt;}
.fs1a{font-size:41.066667pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:44.454933pt;}
.fs3{font-size:45.333333pt;}
.fs19{font-size:48.000000pt;}
.fs10{font-size:50.136533pt;}
.fs12{font-size:52.586667pt;}
.fs2{font-size:53.333333pt;}
.fsc{font-size:69.115200pt;}
.fs0{font-size:90.666667pt;}
.fs14{font-size:144.060800pt;}
.fs1{font-size:194.666667pt;}
.y164{bottom:-433.013875pt;}
.y162{bottom:-418.632704pt;}
.y161{bottom:-404.251533pt;}
.y160{bottom:-389.870362pt;}
.y15f{bottom:-375.489191pt;}
.y163{bottom:-369.598912pt;}
.y15e{bottom:-355.217741pt;}
.y15d{bottom:-340.836570pt;}
.y15c{bottom:-326.455399pt;}
.y1e5{bottom:-321.858267pt;}
.y15b{bottom:-306.183950pt;}
.y1e4{bottom:-277.856667pt;}
.y1e3{bottom:-267.803333pt;}
.y1e2{bottom:-257.750000pt;}
.y1e1{bottom:-247.696667pt;}
.y1e0{bottom:-237.643333pt;}
.y1df{bottom:-227.590000pt;}
.y1de{bottom:-217.536667pt;}
.y1dd{bottom:-207.483333pt;}
.y15a{bottom:-201.370331pt;}
.y1dc{bottom:-197.430000pt;}
.y1db{bottom:-187.376667pt;}
.y1da{bottom:-167.270000pt;}
.y1d9{bottom:-157.216667pt;}
.y1d8{bottom:-147.163333pt;}
.y1d7{bottom:-137.110000pt;}
.y1c3{bottom:-130.942800pt;}
.y1d6{bottom:-127.056667pt;}
.y1c2{bottom:-123.982800pt;}
.y159{bottom:-120.306760pt;}
.y1c1{bottom:-117.022800pt;}
.y1d5{bottom:-117.003333pt;}
.y1c0{bottom:-110.062800pt;}
.y1d4{bottom:-106.950000pt;}
.y1bf{bottom:-103.102800pt;}
.y158{bottom:-100.035310pt;}
.y1d3{bottom:-96.896667pt;}
.y1be{bottom:-96.142800pt;}
.y1bd{bottom:-89.182800pt;}
.y1d2{bottom:-86.843333pt;}
.y1bc{bottom:-82.222933pt;}
.y157{bottom:-79.763861pt;}
.y1d1{bottom:-76.790000pt;}
.y1bb{bottom:-75.262933pt;}
.y1ba{bottom:-68.302933pt;}
.y1d0{bottom:-66.736667pt;}
.y1b9{bottom:-61.342933pt;}
.y1cf{bottom:-56.683333pt;}
.y1b8{bottom:-54.382933pt;}
.y1b7{bottom:-47.422933pt;}
.y17a{bottom:-46.873147pt;}
.y1ce{bottom:-46.630000pt;}
.y156{bottom:-39.232075pt;}
.y179{bottom:-38.628667pt;}
.y1cd{bottom:-36.576667pt;}
.y1b4{bottom:-28.415333pt;}
.y1cc{bottom:-26.523333pt;}
.y155{bottom:-24.850904pt;}
.y1b3{bottom:-18.362000pt;}
.y1cb{bottom:-16.470000pt;}
.y154{bottom:-10.469733pt;}
.y1b2{bottom:-8.308667pt;}
.y1af{bottom:-8.308533pt;}
.y1ca{bottom:-6.416667pt;}
.y0{bottom:0.000000pt;}
.y1b1{bottom:1.744667pt;}
.y1a2{bottom:13.459467pt;}
.y20c{bottom:16.976133pt;}
.y20b{bottom:27.776133pt;}
.y4{bottom:34.084000pt;}
.y20a{bottom:38.576133pt;}
.y1e7{bottom:39.028000pt;}
.yc{bottom:39.783467pt;}
.y209{bottom:49.376133pt;}
.y3{bottom:51.417333pt;}
.y149{bottom:85.221937pt;}
.y106{bottom:85.674533pt;}
.y2c{bottom:86.015733pt;}
.y18b{bottom:86.666667pt;}
.y97{bottom:88.049867pt;}
.y23a{bottom:89.289600pt;}
.y14f{bottom:90.865438pt;}
.y10f{bottom:91.165333pt;}
.y147{bottom:91.758880pt;}
.yea{bottom:92.503867pt;}
.y199{bottom:95.086533pt;}
.y23e{bottom:96.207200pt;}
.y103{bottom:96.419867pt;}
.y2b{bottom:98.015733pt;}
.y146{bottom:98.295823pt;}
.y198{bottom:98.638533pt;}
.y18a{bottom:98.666667pt;}
.y102{bottom:99.971867pt;}
.y96{bottom:100.049867pt;}
.y105{bottom:103.007867pt;}
.yb7{bottom:103.801333pt;}
.yff{bottom:104.629867pt;}
.y145{bottom:104.832766pt;}
.y14e{bottom:105.246609pt;}
.y23d{bottom:105.543200pt;}
.y239{bottom:106.618267pt;}
.y197{bottom:107.086533pt;}
.yfe{bottom:108.181867pt;}
.y101{bottom:108.419867pt;}
.y10e{bottom:108.498667pt;}
.y19c{bottom:109.259867pt;}
.y196{bottom:110.638533pt;}
.y189{bottom:110.666667pt;}
.y144{bottom:111.369709pt;}
.y227{bottom:111.716533pt;}
.y100{bottom:111.971867pt;}
.y182{bottom:112.000000pt;}
.y95{bottom:112.049867pt;}
.y2a{bottom:113.567733pt;}
.y148{bottom:114.047127pt;}
.y23c{bottom:114.879200pt;}
.y181{bottom:115.552000pt;}
.ye9{bottom:116.503867pt;}
.y14d{bottom:119.627779pt;}
.y104{bottom:120.341200pt;}
.y143{bottom:120.584070pt;}
.y19b{bottom:121.259867pt;}
.y238{bottom:121.283600pt;}
.y29{bottom:122.015733pt;}
.y188{bottom:122.666667pt;}
.y1a0{bottom:123.716533pt;}
.y180{bottom:124.000000pt;}
.y94{bottom:124.049867pt;}
.y225{bottom:124.188933pt;}
.y23b{bottom:124.215200pt;}
.y19a{bottom:124.811867pt;}
.y142{bottom:127.121013pt;}
.y226{bottom:127.268533pt;}
.ye8{bottom:128.503867pt;}
.y231{bottom:130.674533pt;}
.y141{bottom:133.657956pt;}
.y28{bottom:134.015733pt;}
.y187{bottom:134.666667pt;}
.y19f{bottom:135.716533pt;}
.y17f{bottom:136.000000pt;}
.y69{bottom:136.007867pt;}
.y93{bottom:136.049867pt;}
.y224{bottom:136.188933pt;}
.y125{bottom:137.674533pt;}
.yf8{bottom:139.118133pt;}
.y17e{bottom:139.552000pt;}
.y14c{bottom:139.899229pt;}
.ye7{bottom:140.503867pt;}
.y79{bottom:142.519733pt;}
.y140{bottom:142.872318pt;}
.y195{bottom:145.674533pt;}
.y27{bottom:146.015733pt;}
.y186{bottom:146.666667pt;}
.y19e{bottom:147.716533pt;}
.y17d{bottom:148.000000pt;}
.y230{bottom:148.007867pt;}
.y223{bottom:148.188933pt;}
.y237{bottom:150.614267pt;}
.yf5{bottom:151.118133pt;}
.y19d{bottom:151.268533pt;}
.y92{bottom:151.601867pt;}
.ye6{bottom:152.503867pt;}
.y68{bottom:153.341200pt;}
.y14b{bottom:154.280400pt;}
.y78{bottom:154.519733pt;}
.yf7{bottom:154.670133pt;}
.yfd{bottom:155.007867pt;}
.y26{bottom:158.015733pt;}
.y185{bottom:158.666667pt;}
.y17c{bottom:160.000000pt;}
.y222{bottom:160.188933pt;}
.yc4{bottom:161.587867pt;}
.y194{bottom:163.007867pt;}
.yf4{bottom:163.118133pt;}
.y1e6{bottom:163.296000pt;}
.y17b{bottom:163.552000pt;}
.ye5{bottom:164.503867pt;}
.y236{bottom:165.279600pt;}
.y22f{bottom:165.341200pt;}
.y77{bottom:166.519733pt;}
.y4b{bottom:169.196800pt;}
.y25{bottom:170.015733pt;}
.y184{bottom:170.666667pt;}
.y67{bottom:170.674533pt;}
.y221{bottom:172.188933pt;}
.yfc{bottom:172.341200pt;}
.yc3{bottom:173.587867pt;}
.y183{bottom:174.218667pt;}
.yf3{bottom:175.118133pt;}
.ye4{bottom:176.503867pt;}
.y76{bottom:178.519733pt;}
.yf2{bottom:178.670133pt;}
.y235{bottom:179.944933pt;}
.y193{bottom:180.341200pt;}
.y4a{bottom:181.196800pt;}
.y22e{bottom:182.674533pt;}
.y220{bottom:184.188933pt;}
.y24{bottom:185.567733pt;}
.y9c{bottom:185.889733pt;}
.ye3{bottom:188.503867pt;}
.yfb{bottom:189.674533pt;}
.y13f{bottom:190.515215pt;}
.y75{bottom:190.519733pt;}
.y202{bottom:192.733200pt;}
.y49{bottom:193.196800pt;}
.y23{bottom:194.015733pt;}
.y234{bottom:194.610267pt;}
.y21f{bottom:196.188933pt;}
.y22{bottom:197.567733pt;}
.yc2{bottom:197.587867pt;}
.y192{bottom:197.674533pt;}
.y9b{bottom:197.889733pt;}
.y22d{bottom:200.007867pt;}
.ye2{bottom:200.503867pt;}
.y74{bottom:202.519733pt;}
.y124{bottom:204.173200pt;}
.y48{bottom:205.196800pt;}
.y66{bottom:205.341200pt;}
.y201{bottom:206.069600pt;}
.yfa{bottom:207.007867pt;}
.y21e{bottom:208.188933pt;}
.y233{bottom:209.275600pt;}
.yc1{bottom:209.587867pt;}
.y9a{bottom:209.889733pt;}
.y21d{bottom:211.740933pt;}
.ye1{bottom:212.503867pt;}
.y73{bottom:214.519733pt;}
.y191{bottom:215.007867pt;}
.y47{bottom:217.196800pt;}
.y200{bottom:219.406000pt;}
.y123{bottom:221.506533pt;}
.yc0{bottom:221.587867pt;}
.y99{bottom:221.889733pt;}
.y65{bottom:222.674533pt;}
.y232{bottom:223.940933pt;}
.yf9{bottom:224.341200pt;}
.ye0{bottom:224.503867pt;}
.y72{bottom:226.519733pt;}
.y13e{bottom:227.362558pt;}
.y46{bottom:229.196800pt;}
.y190{bottom:232.341200pt;}
.ybf{bottom:233.587867pt;}
.y98{bottom:233.889733pt;}
.y22c{bottom:234.674533pt;}
.y21{bottom:235.201067pt;}
.ydf{bottom:236.503867pt;}
.y13d{bottom:236.576919pt;}
.y208{bottom:236.588267pt;}
.y71{bottom:238.519733pt;}
.y122{bottom:238.839867pt;}
.y64{bottom:240.007867pt;}
.y45{bottom:241.196800pt;}
.yf1{bottom:241.674533pt;}
.y178{bottom:245.464533pt;}
.ybe{bottom:245.587867pt;}
.y13c{bottom:245.791281pt;}
.y207{bottom:246.188267pt;}
.yde{bottom:248.503867pt;}
.y18f{bottom:249.674533pt;}
.y70{bottom:250.519733pt;}
.y22b{bottom:252.007867pt;}
.yb3{bottom:252.764267pt;}
.y44{bottom:253.196800pt;}
.y1aa{bottom:255.387333pt;}
.y206{bottom:255.524267pt;}
.y121{bottom:256.173200pt;}
.y63{bottom:257.341200pt;}
.ybd{bottom:257.587867pt;}
.yb2{bottom:257.764267pt;}
.yf0{bottom:259.007867pt;}
.y83{bottom:260.435733pt;}
.ydd{bottom:260.503867pt;}
.y6f{bottom:262.519733pt;}
.y13b{bottom:264.214953pt;}
.y205{bottom:264.860267pt;}
.y43{bottom:265.196800pt;}
.y18e{bottom:267.007867pt;}
.y22a{bottom:269.341200pt;}
.ybc{bottom:269.587867pt;}
.y20{bottom:269.867733pt;}
.y13a{bottom:270.751895pt;}
.ydc{bottom:272.503867pt;}
.y120{bottom:273.506533pt;}
.y204{bottom:274.196267pt;}
.y6e{bottom:274.519733pt;}
.y62{bottom:274.674533pt;}
.y1ff{bottom:275.030800pt;}
.yef{bottom:276.341200pt;}
.y42{bottom:277.196800pt;}
.y139{bottom:277.288838pt;}
.y177{bottom:277.638667pt;}
.y82{bottom:277.769067pt;}
.y176{bottom:280.183733pt;}
.ybb{bottom:281.587867pt;}
.ya0{bottom:282.954533pt;}
.ya6{bottom:283.054133pt;}
.ya9{bottom:283.133200pt;}
.y203{bottom:283.532267pt;}
.y18d{bottom:284.341200pt;}
.ydb{bottom:284.503867pt;}
.y138{bottom:286.503200pt;}
.y6d{bottom:286.519733pt;}
.y229{bottom:286.674533pt;}
.y1f{bottom:287.201067pt;}
.y1fe{bottom:288.367200pt;}
.y41{bottom:289.196800pt;}
.y11f{bottom:290.839867pt;}
.y61{bottom:292.007867pt;}
.y137{bottom:293.040143pt;}
.yba{bottom:293.587867pt;}
.yee{bottom:293.674533pt;}
.y81{bottom:295.102400pt;}
.yab{bottom:295.881200pt;}
.y175{bottom:297.517067pt;}
.y6c{bottom:298.519733pt;}
.y136{bottom:299.577086pt;}
.y40{bottom:301.196800pt;}
.y228{bottom:304.007867pt;}
.y1e{bottom:304.534400pt;}
.yb9{bottom:305.587867pt;}
.y9f{bottom:307.443200pt;}
.ya7{bottom:307.622267pt;}
.y11e{bottom:308.173200pt;}
.y1fd{bottom:308.366667pt;}
.y60{bottom:309.341200pt;}
.y6b{bottom:310.519733pt;}
.yf6{bottom:311.007867pt;}
.y135{bottom:311.463814pt;}
.y80{bottom:312.435733pt;}
.y3f{bottom:313.196800pt;}
.y174{bottom:314.850400pt;}
.yb8{bottom:317.587867pt;}
.yda{bottom:321.341200pt;}
.y1fc{bottom:321.703067pt;}
.y1d{bottom:321.867733pt;}
.y134{bottom:323.350543pt;}
.y6a{bottom:326.071733pt;}
.y5f{bottom:326.674533pt;}
.yed{bottom:328.341200pt;}
.y133{bottom:329.887486pt;}
.ya8{bottom:331.906933pt;}
.y9e{bottom:331.931867pt;}
.ya5{bottom:332.031600pt;}
.y173{bottom:332.183733pt;}
.yb0{bottom:332.608533pt;}
.y18c{bottom:336.341200pt;}
.y132{bottom:336.424429pt;}
.yd9{bottom:338.674533pt;}
.y1c{bottom:339.201067pt;}
.y1fb{bottom:341.702533pt;}
.y11d{bottom:342.839867pt;}
.y21c{bottom:344.007867pt;}
.y131{bottom:345.638790pt;}
.yec{bottom:345.674533pt;}
.y7f{bottom:347.101200pt;}
.y130{bottom:352.175733pt;}
.yaf{bottom:354.705600pt;}
.yd8{bottom:356.007867pt;}
.y9d{bottom:356.420533pt;}
.ya4{bottom:356.520267pt;}
.y5e{bottom:360.007867pt;}
.y12a{bottom:360.018400pt;}
.y11c{bottom:360.173200pt;}
.yeb{bottom:363.007867pt;}
.y7e{bottom:364.434533pt;}
.y1b{bottom:366.401067pt;}
.y172{bottom:366.850400pt;}
.y1c9{bottom:369.449333pt;}
.y129{bottom:372.018400pt;}
.y1c8{bottom:373.086000pt;}
.yd7{bottom:373.341200pt;}
.y5d{bottom:377.341200pt;}
.y11b{bottom:377.506533pt;}
.y21b{bottom:378.674533pt;}
.y3e{bottom:380.341200pt;}
.y1fa{bottom:380.685067pt;}
.ya3{bottom:380.909600pt;}
.y7d{bottom:381.767867pt;}
.y1c7{bottom:383.139333pt;}
.y128{bottom:384.018400pt;}
.y171{bottom:384.183733pt;}
.y12f{bottom:384.341200pt;}
.yae{bottom:388.335867pt;}
.yd6{bottom:390.674533pt;}
.y1f9{bottom:394.021467pt;}
.y5c{bottom:394.674533pt;}
.y21a{bottom:396.007867pt;}
.y127{bottom:396.018400pt;}
.y23f{bottom:396.160133pt;}
.y3d{bottom:397.674533pt;}
.y170{bottom:401.517067pt;}
.y12e{bottom:401.674533pt;}
.y1c6{bottom:403.246000pt;}
.ya2{bottom:405.398267pt;}
.yd5{bottom:408.007867pt;}
.y126{bottom:408.018400pt;}
.yad{bottom:409.957200pt;}
.y1a{bottom:410.934400pt;}
.y5b{bottom:412.007867pt;}
.y1c5{bottom:413.299333pt;}
.y219{bottom:413.341200pt;}
.y1f8{bottom:414.020933pt;}
.y3c{bottom:415.007867pt;}
.y7c{bottom:416.434533pt;}
.y16f{bottom:418.850400pt;}
.y12d{bottom:419.007867pt;}
.yd4{bottom:425.341200pt;}
.y1f7{bottom:427.357333pt;}
.y19{bottom:428.267733pt;}
.y5a{bottom:429.341200pt;}
.ya1{bottom:429.797589pt;}
.yac{bottom:432.054267pt;}
.yb6{bottom:432.341200pt;}
.y7b{bottom:433.767867pt;}
.y16e{bottom:436.183733pt;}
.y12c{bottom:436.341200pt;}
.yb1{bottom:439.397733pt;}
.y1f6{bottom:440.693733pt;}
.y1c4{bottom:441.573200pt;}
.yd3{bottom:442.674533pt;}
.y18{bottom:445.601067pt;}
.y218{bottom:448.007867pt;}
.y1a9{bottom:448.145333pt;}
.y3b{bottom:449.674533pt;}
.y7a{bottom:451.101200pt;}
.y16d{bottom:453.517067pt;}
.yaa{bottom:459.785733pt;}
.y1b0{bottom:459.943467pt;}
.yd2{bottom:460.007867pt;}
.y1f5{bottom:460.693200pt;}
.y1a1{bottom:462.668000pt;}
.y59{bottom:462.674533pt;}
.y17{bottom:462.934400pt;}
.y217{bottom:465.341200pt;}
.y3a{bottom:467.007867pt;}
.y16c{bottom:470.850400pt;}
.y1f4{bottom:474.029600pt;}
.yd1{bottom:477.341200pt;}
.y1ae{bottom:477.730000pt;}
.y58{bottom:480.007867pt;}
.y216{bottom:482.674533pt;}
.y39{bottom:484.341200pt;}
.y1ad{bottom:487.783333pt;}
.y16b{bottom:488.183733pt;}
.y12b{bottom:488.341200pt;}
.yb{bottom:491.862933pt;}
.y1f3{bottom:494.029067pt;}
.y1a8{bottom:494.123800pt;}
.yd0{bottom:494.674533pt;}
.y1a7{bottom:496.527600pt;}
.y57{bottom:497.341200pt;}
.y16{bottom:497.601067pt;}
.y1ac{bottom:497.836667pt;}
.y215{bottom:500.007867pt;}
.y38{bottom:501.674533pt;}
.y91{bottom:502.236267pt;}
.y16a{bottom:505.517067pt;}
.ycf{bottom:512.007867pt;}
.y56{bottom:514.674533pt;}
.y15{bottom:514.934400pt;}
.y1b6{bottom:515.117200pt;}
.y214{bottom:517.341200pt;}
.y37{bottom:519.007867pt;}
.y1b5{bottom:521.381200pt;}
.y8b{bottom:522.748400pt;}
.y90{bottom:523.244000pt;}
.ya{bottom:523.862933pt;}
.yce{bottom:529.341200pt;}
.y55{bottom:532.007867pt;}
.y1f2{bottom:533.011600pt;}
.y88{bottom:534.751067pt;}
.y36{bottom:536.341200pt;}
.y8f{bottom:536.577333pt;}
.y169{bottom:540.183733pt;}
.y1f1{bottom:546.348000pt;}
.ycd{bottom:546.674533pt;}
.y87{bottom:546.753733pt;}
.y54{bottom:549.341200pt;}
.y14{bottom:549.601067pt;}
.y2{bottom:550.471067pt;}
.y11a{bottom:550.839867pt;}
.y35{bottom:553.674533pt;}
.y213{bottom:554.674533pt;}
.y9{bottom:555.862933pt;}
.y8d{bottom:556.257333pt;}
.y168{bottom:557.517067pt;}
.y86{bottom:558.756400pt;}
.ycc{bottom:564.007867pt;}
.y1f0{bottom:566.347467pt;}
.y53{bottom:566.674533pt;}
.y13{bottom:566.934400pt;}
.y119{bottom:568.173200pt;}
.y34{bottom:571.007867pt;}
.y1ef{bottom:579.683867pt;}
.ycb{bottom:581.341200pt;}
.y52{bottom:584.007867pt;}
.y10d{bottom:584.118133pt;}
.y12{bottom:584.267733pt;}
.y118{bottom:585.506533pt;}
.y8{bottom:587.862933pt;}
.y33{bottom:588.341200pt;}
.y167{bottom:592.183733pt;}
.y10c{bottom:596.118133pt;}
.yca{bottom:598.674533pt;}
.y1{bottom:599.062933pt;}
.y1ee{bottom:599.683333pt;}
.y51{bottom:601.341200pt;}
.y117{bottom:602.839867pt;}
.y32{bottom:605.674533pt;}
.y1a5{bottom:606.888575pt;}
.y10b{bottom:608.118133pt;}
.y166{bottom:609.517067pt;}
.y1ed{bottom:613.019733pt;}
.y1a4{bottom:613.753906pt;}
.yc9{bottom:616.007867pt;}
.y11{bottom:618.934400pt;}
.y8a{bottom:618.965733pt;}
.y7{bottom:619.862933pt;}
.y10a{bottom:620.118133pt;}
.y116{bottom:620.173200pt;}
.y1a6{bottom:621.964267pt;}
.y31{bottom:623.007867pt;}
.y212{bottom:625.523653pt;}
.y165{bottom:626.850400pt;}
.y8e{bottom:630.902667pt;}
.y89{bottom:630.968400pt;}
.y109{bottom:632.118133pt;}
.y1ec{bottom:633.019200pt;}
.yc8{bottom:633.341200pt;}
.y211{bottom:633.866533pt;}
.y1a3{bottom:634.221467pt;}
.y50{bottom:634.674533pt;}
.y10{bottom:636.267733pt;}
.y115{bottom:637.506533pt;}
.yb5{bottom:640.341200pt;}
.y210{bottom:642.209413pt;}
.y85{bottom:642.971067pt;}
.y108{bottom:644.118133pt;}
.y8c{bottom:650.582667pt;}
.yc7{bottom:650.674533pt;}
.y14a{bottom:651.757333pt;}
.y6{bottom:651.862933pt;}
.y4f{bottom:652.007867pt;}
.yf{bottom:653.601067pt;}
.y114{bottom:654.839867pt;}
.y84{bottom:654.973733pt;}
.y107{bottom:656.118133pt;}
.y30{bottom:657.674533pt;}
.y20f{bottom:658.895173pt;}
.y153{bottom:661.558777pt;}
.y20e{bottom:667.238053pt;}
.yc6{bottom:668.007867pt;}
.y4e{bottom:669.341200pt;}
.ye{bottom:670.934400pt;}
.y113{bottom:672.173200pt;}
.y2f{bottom:675.007867pt;}
.y20d{bottom:675.580933pt;}
.y152{bottom:675.939948pt;}
.y1eb{bottom:678.676533pt;}
.yc5{bottom:685.341200pt;}
.y4d{bottom:686.674533pt;}
.y1ab{bottom:687.756800pt;}
.yd{bottom:688.267733pt;}
.y112{bottom:689.506533pt;}
.y151{bottom:690.321119pt;}
.yb4{bottom:692.341200pt;}
.y1ea{bottom:694.672533pt;}
.y111{bottom:706.839867pt;}
.y1e9{bottom:709.072533pt;}
.y2e{bottom:709.674533pt;}
.y150{bottom:716.471733pt;}
.y5{bottom:719.062933pt;}
.y4c{bottom:720.007867pt;}
.y1e8{bottom:723.472533pt;}
.y110{bottom:724.173200pt;}
.y2d{bottom:727.007867pt;}
.h1e{height:6.730827pt;}
.h23{height:8.756700pt;}
.h22{height:10.350291pt;}
.h11{height:11.664000pt;}
.h10{height:11.758090pt;}
.h17{height:14.710647pt;}
.h1f{height:17.513600pt;}
.h3a{height:18.535207pt;}
.h1c{height:18.813087pt;}
.h2a{height:18.912305pt;}
.h39{height:19.064784pt;}
.h20{height:19.451954pt;}
.h2c{height:19.720000pt;}
.h9{height:19.822000pt;}
.h2f{height:23.200000pt;}
.h2b{height:23.308750pt;}
.h14{height:23.429312pt;}
.h32{height:23.815495pt;}
.h31{height:24.650000pt;}
.h34{height:24.864000pt;}
.h2e{height:25.133333pt;}
.hb{height:25.979500pt;}
.h37{height:26.046875pt;}
.h26{height:27.972917pt;}
.h28{height:28.018229pt;}
.h29{height:29.135937pt;}
.he{height:32.000000pt;}
.h19{height:32.363191pt;}
.h38{height:32.607422pt;}
.hf{height:34.000000pt;}
.hd{height:35.164062pt;}
.h8{height:35.770833pt;}
.h36{height:37.256771pt;}
.h12{height:38.645833pt;}
.h16{height:40.000000pt;}
.ha{height:40.187500pt;}
.h21{height:41.764124pt;}
.h25{height:41.905000pt;}
.h4{height:42.083333pt;}
.h6{height:42.500000pt;}
.h3c{height:42.699219pt;}
.h15{height:43.333333pt;}
.h35{height:43.546875pt;}
.h1b{height:47.381709pt;}
.hc{height:48.307292pt;}
.h2d{height:49.531094pt;}
.h7{height:50.234375pt;}
.h3b{height:50.854167pt;}
.h5{height:72.250000pt;}
.h2{height:75.526042pt;}
.h13{height:85.398438pt;}
.h18{height:87.752000pt;}
.h30{height:96.990667pt;}
.h27{height:130.484758pt;}
.h33{height:154.961333pt;}
.h3{height:162.158854pt;}
.h1d{height:204.417333pt;}
.h1a{height:219.241333pt;}
.h24{height:269.632000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w4{width:144.065333pt;}
.w3{width:152.185333pt;}
.w5{width:280.044000pt;}
.w6{width:281.574667pt;}
.w7{width:394.961333pt;}
.w2{width:461.904000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x33{left:-34.290000pt;}
.x34{left:-19.745363pt;}
.x32{left:-1.744800pt;}
.x0{left:0.000000pt;}
.x3a{left:5.370667pt;}
.x2f{left:12.759600pt;}
.x44{left:14.492267pt;}
.x3d{left:29.480533pt;}
.x48{left:30.991467pt;}
.x41{left:32.232693pt;}
.x1{left:45.333333pt;}
.x5{left:48.000000pt;}
.x23{left:49.768533pt;}
.x3b{left:53.370667pt;}
.x22{left:55.572400pt;}
.x8{left:56.692933pt;}
.xa{left:60.143733pt;}
.x9{left:61.651467pt;}
.xb{left:63.120000pt;}
.x27{left:65.097733pt;}
.x38{left:66.838267pt;}
.x10{left:70.266667pt;}
.x11{left:72.012000pt;}
.x25{left:76.361733pt;}
.x3c{left:77.480533pt;}
.x2{left:79.559067pt;}
.x46{left:82.205333pt;}
.x24{left:83.124933pt;}
.x4e{left:96.543867pt;}
.x21{left:100.450000pt;}
.x28{left:112.930000pt;}
.x4d{left:125.088340pt;}
.x1e{left:130.141619pt;}
.x1d{left:131.222267pt;}
.x29{left:133.784800pt;}
.x45{left:136.336400pt;}
.x1f{left:149.133333pt;}
.x2b{left:150.250133pt;}
.x39{left:151.570831pt;}
.x4f{left:155.716533pt;}
.x20{left:167.144267pt;}
.x35{left:171.742267pt;}
.x14{left:179.639067pt;}
.x2c{left:182.736800pt;}
.x12{left:191.613733pt;}
.x13{left:192.668400pt;}
.x3f{left:202.562260pt;}
.x3e{left:204.582400pt;}
.xe{left:205.760000pt;}
.x36{left:207.186667pt;}
.x2d{left:214.264668pt;}
.x31{left:215.306667pt;}
.xf{left:218.670000pt;}
.x49{left:220.913333pt;}
.x43{left:229.461333pt;}
.x42{left:235.191733pt;}
.x30{left:247.170463pt;}
.x3{left:254.883600pt;}
.x40{left:262.822133pt;}
.x4{left:264.390267pt;}
.x26{left:273.182800pt;}
.x6{left:276.433867pt;}
.x37{left:283.373333pt;}
.x2e{left:289.282908pt;}
.x2a{left:294.906667pt;}
.x16{left:300.986800pt;}
.x17{left:307.025467pt;}
.x15{left:312.961467pt;}
.x18{left:315.705467pt;}
.xc{left:365.669333pt;}
.xd{left:370.627867pt;}
.x4a{left:373.640933pt;}
.x4b{left:387.896933pt;}
.x4c{left:397.535933pt;}
.x1a{left:424.253600pt;}
.x1c{left:427.314933pt;}
.x1b{left:437.288267pt;}
.x19{left:471.325600pt;}
.x7{left:511.370133pt;}
.x47{left:534.848000pt;}
}




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