
    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_661493d5a1cef5287b01d5a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_095903edf002458355e4b252.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_e730deb29d1a29fc37ae7df3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_e938a31b4f0cc1c6cb78d937.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_083805873fbdd0afa25cca72.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1557df8f9517b6e21b8ca24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_aaca201722caf99fe501942c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109000;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_56da1cc60edb07fd50fca382.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_648e0ec50ee91931ae215890.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_05c35c18b98a302af245dd4e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_be0fbcd6b942708e22888019.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894043;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_ee1d02d270d5452c3c7c3a25.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.905762;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_70e5d6f65031013abc1ab52f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.094727;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_fa90ab8a74979fe4a01fba00.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_dfb03e61c225692e4685b848.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_7548ef8cfc873ba794c20b18.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_2eede31dccc21e6bf8711668.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;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_1fe8cc1630bd4271a75943da.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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_8530b151b3ecee39dfb50286.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1fe8cc1630bd4271a75943da.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.093262;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_427d32e211f04534faf4c8cb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4ab19597698ea130807743b7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e1f15d04d850977708123e40.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_30fdb59797db2798721b056e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a3a3dfb860393940f9f947d7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_65910bc6a86af0eb69a747c4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.094727;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_7f5c5df8f59d5debc8657af7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.905762;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_ee119da21053946b00e9c93d.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_1e70452defd5e0982de48007.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.094727;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_a28f35845633f48e38f954e7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.905762;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_ee119da21053946b00e9c93d.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_1e70452defd5e0982de48007.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.094727;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_62dd5575d6f99c4998e2c528.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.905762;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:ff22;src:url('chunks/assets/font_ee119da21053946b00e9c93d.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_cb5f0c7c1f8754727db594ba.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.094727;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:ff24;src:url('chunks/assets/font_29df6daeaaf3853e823321a0.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.905762;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:ff25;src:url('chunks/assets/font_ee119da21053946b00e9c93d.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_ad7f4ec9ab5336aba0ecaf0e.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.094727;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:ff27;src:url('chunks/assets/font_f7caba426bd799c8ab951e0f.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_b7167cd3fb23751bf5621d52.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.905762;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:ff29;src:url('chunks/assets/font_070f18ea2d7db42d6234e1cd.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.094727;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:ff2a;src:url('chunks/assets/font_f836ecaa6dea95f2242fcf19.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.905762;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:ff2b;src:url('chunks/assets/font_f7caba426bd799c8ab951e0f.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_cd71bd03275a0f723c34686b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.094727;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:ff2d;src:url('chunks/assets/font_ac7f130c71506cd1de6a90e7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.905762;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:ff2e;src:url('chunks/assets/font_ee119da21053946b00e9c93d.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_65910bc6a86af0eb69a747c4.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.094727;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:ff30;src:url('chunks/assets/font_e31708b3a262e961b80c222b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.905762;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:ff31;src:url('chunks/assets/font_ee119da21053946b00e9c93d.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_1e70452defd5e0982de48007.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.094727;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:ff33;src:url('chunks/assets/font_005b3b161942b7aab495a38e.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.905762;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:ff34;src:url('chunks/assets/font_ee119da21053946b00e9c93d.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_ad7f4ec9ab5336aba0ecaf0e.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.094727;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:ff36;src:url('chunks/assets/font_f7caba426bd799c8ab951e0f.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_c6142473a15f3598c91f7f05.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.905762;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:ff38;src:url('chunks/assets/font_070f18ea2d7db42d6234e1cd.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.094727;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:ff39;src:url('chunks/assets/font_9986ad99dccdda317de22528.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.905762;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:ff3a;src:url('chunks/assets/font_f7caba426bd799c8ab951e0f.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_dd4dedbb975a5532d77e170c.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_f2fb364571d23795f58b703d.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.073242;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;}
.m4{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);}
.m7{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,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);}
.v3{vertical-align:-19.800000px;}
.v1{vertical-align:-13.622400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.993600px;}
.v2{vertical-align:19.100400px;}
.v5{vertical-align:31.741800px;}
.v7{vertical-align:37.681800px;}
.v6{vertical-align:44.736000px;}
.ls26{letter-spacing:-0.990000px;}
.ls60{letter-spacing:-0.924000px;}
.ls2e{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.726000px;}
.ls28{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.570000px;}
.ls61{letter-spacing:-0.396000px;}
.ls46{letter-spacing:-0.330000px;}
.ls47{letter-spacing:-0.264000px;}
.ls5f{letter-spacing:-0.132000px;}
.ls9{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.002400px;}
.ls70{letter-spacing:0.009000px;}
.ls4c{letter-spacing:0.009600px;}
.ls66{letter-spacing:0.010200px;}
.ls5c{letter-spacing:0.013800px;}
.ls4a{letter-spacing:0.016800px;}
.ls62{letter-spacing:0.027000px;}
.ls4e{letter-spacing:0.033000px;}
.ls63{letter-spacing:0.036000px;}
.ls5b{letter-spacing:0.037200px;}
.ls4d{letter-spacing:0.040800px;}
.ls8{letter-spacing:0.057000px;}
.ls2c{letter-spacing:0.060000px;}
.ls4b{letter-spacing:0.062400px;}
.lsc{letter-spacing:0.066000px;}
.ls5a{letter-spacing:0.076800px;}
.ls72{letter-spacing:0.090000px;}
.ls71{letter-spacing:0.099600px;}
.ls73{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.168000px;}
.ls79{letter-spacing:0.172800px;}
.ls5e{letter-spacing:0.173400px;}
.ls6e{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.181800px;}
.ls7a{letter-spacing:0.182400px;}
.ls19{letter-spacing:0.198000px;}
.ls56{letter-spacing:0.238560px;}
.ls55{letter-spacing:0.239160px;}
.ls2d{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.330000px;}
.ls7b{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.399000px;}
.ls65{letter-spacing:0.408000px;}
.ls57{letter-spacing:0.411600px;}
.ls32{letter-spacing:0.420000px;}
.ls64{letter-spacing:0.425400px;}
.ls2b{letter-spacing:0.462000px;}
.ls69{letter-spacing:0.471000px;}
.ls68{letter-spacing:0.480000px;}
.ls67{letter-spacing:0.481200px;}
.ls13{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.594000px;}
.ls1d{letter-spacing:0.600600px;}
.ls18{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.673200px;}
.ls6d{letter-spacing:0.675000px;}
.ls5{letter-spacing:0.684000px;}
.ls6c{letter-spacing:0.690600px;}
.ls6b{letter-spacing:0.700200px;}
.ls3{letter-spacing:0.714000px;}
.ls7d{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.726000px;}
.ls2f{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.924000px;}
.lse{letter-spacing:0.990000px;}
.ls7c{letter-spacing:1.006800px;}
.ls21{letter-spacing:1.056000px;}
.ls25{letter-spacing:1.122000px;}
.ls7e{letter-spacing:1.140000px;}
.ls29{letter-spacing:1.188000px;}
.ls1b{letter-spacing:1.221000px;}
.ls1a{letter-spacing:1.254000px;}
.ls15{letter-spacing:1.320000px;}
.ls6f{letter-spacing:1.380000px;}
.ls23{letter-spacing:1.386000px;}
.ls36{letter-spacing:1.452000px;}
.ls11{letter-spacing:1.518000px;}
.ls75{letter-spacing:1.560000px;}
.ls76{letter-spacing:1.575000px;}
.lsf{letter-spacing:1.650000px;}
.ls31{letter-spacing:1.716000px;}
.ls1f{letter-spacing:1.782000px;}
.ls2{letter-spacing:1.806000px;}
.ls40{letter-spacing:1.876020px;}
.ls3d{letter-spacing:1.892220px;}
.ls12{letter-spacing:1.914000px;}
.ls16{letter-spacing:2.046000px;}
.ls1e{letter-spacing:2.112000px;}
.ls6a{letter-spacing:2.160000px;}
.ls53{letter-spacing:2.200786px;}
.ls77{letter-spacing:2.625000px;}
.ls35{letter-spacing:2.706000px;}
.ls49{letter-spacing:4.443894px;}
.ls5d{letter-spacing:8.309477px;}
.ls52{letter-spacing:8.310077px;}
.ls74{letter-spacing:9.056400px;}
.ls50{letter-spacing:10.380692px;}
.ls4{letter-spacing:12.510000px;}
.ls7{letter-spacing:14.250000px;}
.ls37{letter-spacing:15.778200px;}
.ls3c{letter-spacing:16.706400px;}
.ls48{letter-spacing:18.148277px;}
.ls39{letter-spacing:19.304400px;}
.ls58{letter-spacing:19.305000px;}
.ls43{letter-spacing:20.233200px;}
.ls41{letter-spacing:39.723000px;}
.ls3e{letter-spacing:39.723600px;}
.ls3a{letter-spacing:55.316400px;}
.ls44{letter-spacing:56.244000px;}
.ls3b{letter-spacing:56.244600px;}
.ls45{letter-spacing:57.685877px;}
.ls38{letter-spacing:58.842600px;}
.ls3f{letter-spacing:58.843200px;}
.ls42{letter-spacing:59.770800px;}
.ls59{letter-spacing:59.771400px;}
.ls54{letter-spacing:126.079020px;}
.ls51{letter-spacing:145.013220px;}
.ls2a{letter-spacing:966.697800px;}
.lsb{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws85{word-spacing:-42.322800px;}
.ws82{word-spacing:-16.500000px;}
.ws18{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.250000px;}
.wsbb{word-spacing:-12.825000px;}
.wsb9{word-spacing:-11.925000px;}
.wsbc{word-spacing:-11.430000px;}
.wsba{word-spacing:-11.340000px;}
.wsa8{word-spacing:-11.286000px;}
.wsa9{word-spacing:-11.250000px;}
.ws6c{word-spacing:-11.122950px;}
.ws28{word-spacing:-10.725000px;}
.ws64{word-spacing:-9.550650px;}
.ws7{word-spacing:-9.324000px;}
.ws25{word-spacing:-0.990000px;}
.ws35{word-spacing:-0.924000px;}
.ws6{word-spacing:-0.714000px;}
.ws75{word-spacing:-0.660000px;}
.ws7a{word-spacing:-0.065340px;}
.ws86{word-spacing:-0.042323px;}
.ws1{word-spacing:0.000000px;}
.ws8d{word-spacing:0.132000px;}
.ws14{word-spacing:0.285000px;}
.wsbf{word-spacing:0.300000px;}
.ws5c{word-spacing:0.330000px;}
.ws1c{word-spacing:0.396000px;}
.wsc4{word-spacing:0.420000px;}
.ws74{word-spacing:0.462000px;}
.wsae{word-spacing:0.480000px;}
.ws2f{word-spacing:0.528000px;}
.wsaf{word-spacing:0.600000px;}
.ws3f{word-spacing:0.660000px;}
.ws24{word-spacing:0.726000px;}
.ws90{word-spacing:0.792000px;}
.ws53{word-spacing:0.858000px;}
.ws55{word-spacing:0.924000px;}
.ws3d{word-spacing:0.990000px;}
.wsc7{word-spacing:1.020000px;}
.ws97{word-spacing:1.056000px;}
.ws81{word-spacing:1.122000px;}
.ws8f{word-spacing:1.188000px;}
.wsb1{word-spacing:1.320000px;}
.ws39{word-spacing:1.386000px;}
.wsa7{word-spacing:1.452000px;}
.wsd{word-spacing:1.482000px;}
.wsa5{word-spacing:1.518000px;}
.ws59{word-spacing:1.584000px;}
.wsac{word-spacing:1.620000px;}
.ws31{word-spacing:1.650000px;}
.ws37{word-spacing:1.782000px;}
.wsb8{word-spacing:1.800000px;}
.ws1d{word-spacing:1.848000px;}
.wsc0{word-spacing:1.920000px;}
.ws5a{word-spacing:1.980000px;}
.ws71{word-spacing:2.046000px;}
.ws32{word-spacing:2.112000px;}
.wsb7{word-spacing:2.160000px;}
.ws11{word-spacing:2.166000px;}
.ws8b{word-spacing:2.178000px;}
.wsb{word-spacing:2.223000px;}
.ws60{word-spacing:2.244000px;}
.ws1a{word-spacing:2.310000px;}
.wsa2{word-spacing:2.340000px;}
.ws4e{word-spacing:2.376000px;}
.ws20{word-spacing:2.442000px;}
.ws92{word-spacing:2.508000px;}
.ws62{word-spacing:2.574000px;}
.ws6a{word-spacing:2.640000px;}
.ws17{word-spacing:2.679000px;}
.ws44{word-spacing:2.706000px;}
.wsa{word-spacing:2.793000px;}
.ws2c{word-spacing:2.838000px;}
.ws51{word-spacing:2.880000px;}
.ws15{word-spacing:2.907000px;}
.ws78{word-spacing:3.102000px;}
.wsb4{word-spacing:3.120000px;}
.ws7e{word-spacing:3.168000px;}
.wse{word-spacing:3.192000px;}
.ws1b{word-spacing:3.234000px;}
.ws46{word-spacing:3.300000px;}
.ws1f{word-spacing:3.366000px;}
.ws36{word-spacing:3.432000px;}
.ws98{word-spacing:3.564000px;}
.ws49{word-spacing:3.630000px;}
.ws13{word-spacing:3.648000px;}
.wsa3{word-spacing:3.762000px;}
.wsa4{word-spacing:3.828000px;}
.wsc5{word-spacing:3.840000px;}
.ws4b{word-spacing:3.894000px;}
.ws5e{word-spacing:3.900000px;}
.ws33{word-spacing:3.960000px;}
.wsbd{word-spacing:4.080000px;}
.ws45{word-spacing:4.158000px;}
.ws29{word-spacing:4.290000px;}
.wsb2{word-spacing:4.320000px;}
.wsa6{word-spacing:4.356000px;}
.ws16{word-spacing:4.389000px;}
.ws23{word-spacing:4.422000px;}
.wsc{word-spacing:4.446000px;}
.ws26{word-spacing:4.488000px;}
.ws12{word-spacing:4.503000px;}
.ws5b{word-spacing:4.554000px;}
.ws61{word-spacing:4.620000px;}
.ws4{word-spacing:4.662000px;}
.ws22{word-spacing:4.686000px;}
.wsf{word-spacing:4.788000px;}
.ws4c{word-spacing:4.818000px;}
.wsbe{word-spacing:4.860000px;}
.ws80{word-spacing:4.884000px;}
.wsa0{word-spacing:4.920000px;}
.ws27{word-spacing:4.950000px;}
.ws3e{word-spacing:5.016000px;}
.ws68{word-spacing:5.100000px;}
.ws72{word-spacing:5.148000px;}
.ws76{word-spacing:5.214000px;}
.ws4d{word-spacing:5.280000px;}
.ws69{word-spacing:5.346000px;}
.ws79{word-spacing:5.412000px;}
.ws38{word-spacing:5.478000px;}
.ws96{word-spacing:5.544000px;}
.ws8c{word-spacing:5.610000px;}
.ws43{word-spacing:5.676000px;}
.wsc1{word-spacing:5.700000px;}
.ws73{word-spacing:5.742000px;}
.ws52{word-spacing:5.808000px;}
.ws40{word-spacing:5.874000px;}
.ws47{word-spacing:5.940000px;}
.ws5{word-spacing:5.964000px;}
.ws3c{word-spacing:6.072000px;}
.ws2b{word-spacing:6.138000px;}
.ws7f{word-spacing:6.204000px;}
.ws56{word-spacing:6.336000px;}
.ws77{word-spacing:6.402000px;}
.wsb3{word-spacing:6.480000px;}
.ws3a{word-spacing:6.534000px;}
.wsad{word-spacing:6.600000px;}
.ws41{word-spacing:6.666000px;}
.wsc3{word-spacing:6.720000px;}
.ws1e{word-spacing:6.732000px;}
.wsb5{word-spacing:6.780000px;}
.ws5f{word-spacing:6.798000px;}
.ws21{word-spacing:6.864000px;}
.ws8{word-spacing:6.897000px;}
.wsb6{word-spacing:6.900000px;}
.ws67{word-spacing:6.930000px;}
.ws2a{word-spacing:6.996000px;}
.ws30{word-spacing:7.062000px;}
.ws10{word-spacing:7.068000px;}
.ws9{word-spacing:7.125000px;}
.wsc2{word-spacing:7.200000px;}
.ws2d{word-spacing:7.260000px;}
.ws3b{word-spacing:7.326000px;}
.ws91{word-spacing:7.392000px;}
.wsab{word-spacing:7.440000px;}
.ws50{word-spacing:7.500000px;}
.ws58{word-spacing:7.524000px;}
.ws8e{word-spacing:7.590000px;}
.ws70{word-spacing:7.656000px;}
.ws34{word-spacing:7.788000px;}
.ws2e{word-spacing:7.854000px;}
.ws4a{word-spacing:7.920000px;}
.wsb0{word-spacing:7.980000px;}
.ws42{word-spacing:7.986000px;}
.ws57{word-spacing:8.052000px;}
.ws48{word-spacing:8.184000px;}
.ws19{word-spacing:8.250000px;}
.ws6f{word-spacing:9.108000px;}
.ws87{word-spacing:9.226370px;}
.ws3{word-spacing:10.656000px;}
.ws83{word-spacing:10.846440px;}
.ws2{word-spacing:13.344000px;}
.wsa1{word-spacing:13.500000px;}
.wsaa{word-spacing:15.000000px;}
.ws84{word-spacing:26.624640px;}
.ws99{word-spacing:26.625240px;}
.wsc6{word-spacing:29.580000px;}
.ws88{word-spacing:59.084531px;}
.ws9a{word-spacing:59.090634px;}
.ws6b{word-spacing:67.660560px;}
.ws6d{word-spacing:74.123339px;}
.ws63{word-spacing:80.799864px;}
.ws65{word-spacing:87.254738px;}
.ws9d{word-spacing:92.616000px;}
.ws7b{word-spacing:121.043003px;}
.ws95{word-spacing:125.312319px;}
.ws7c{word-spacing:127.288854px;}
.ws7d{word-spacing:129.344450px;}
.ws94{word-spacing:129.581635px;}
.ws93{word-spacing:131.558170px;}
.ws9e{word-spacing:196.182000px;}
.ws9f{word-spacing:205.146000px;}
.ws6e{word-spacing:261.744792px;}
.ws66{word-spacing:414.684960px;}
.ws4f{word-spacing:439.506000px;}
.ws89{word-spacing:642.185042px;}
.ws9b{word-spacing:666.260219px;}
.ws8a{word-spacing:781.655886px;}
.ws54{word-spacing:799.295040px;}
.ws9c{word-spacing:808.696845px;}
.ws5d{word-spacing:851.761944px;}
._2b{margin-left:-26.112000px;}
._9{margin-left:-25.080000px;}
._16{margin-left:-22.836000px;}
._2a{margin-left:-21.780000px;}
._7{margin-left:-17.157316px;}
._4{margin-left:-14.616000px;}
._0{margin-left:-13.344000px;}
._17{margin-left:-4.773840px;}
._10{margin-left:-3.027802px;}
._3{margin-left:-1.806000px;}
._8{width:1.140316px;}
._19{width:2.695388px;}
._18{width:3.800653px;}
._2{width:5.586000px;}
._1{width:7.014000px;}
._2d{width:8.103600px;}
._6{width:9.324000px;}
._5{width:11.676000px;}
._2c{width:14.607000px;}
._2e{width:29.596800px;}
._d{width:37.260000px;}
._12{width:39.900000px;}
._f{width:41.100000px;}
._24{width:42.660000px;}
._b{width:45.000000px;}
._e{width:49.500000px;}
._1b{width:76.908000px;}
._1c{width:79.662000px;}
._13{width:88.204766px;}
._15{width:96.413731px;}
._1f{width:161.298000px;}
._28{width:185.274000px;}
._14{width:192.247870px;}
._11{width:201.836270px;}
._20{width:209.682000px;}
._1e{width:218.646000px;}
._23{width:229.932000px;}
._26{width:232.146000px;}
._1d{width:245.646000px;}
._21{width:246.726000px;}
._29{width:261.306000px;}
._25{width:309.798000px;}
._27{width:333.720000px;}
._1a{width:353.481000px;}
._22{width:365.526000px;}
._c{width:547.560000px;}
._a{width:1157.565600px;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:0.600000px;}
.fs3{font-size:27.000000px;}
.fs11{font-size:31.464000px;}
.fs1f{font-size:33.150000px;}
.fs12{font-size:35.943000px;}
.fs0{font-size:36.000000px;}
.fsb{font-size:37.050000px;}
.fs14{font-size:38.202600px;}
.fs16{font-size:41.006400px;}
.fs5{font-size:42.000000px;}
.fs13{font-size:42.052800px;}
.fs1b{font-size:42.322800px;}
.fse{font-size:42.900000px;}
.fs18{font-size:44.491800px;}
.fs15{font-size:44.697000px;}
.fs6{font-size:45.000000px;}
.fs17{font-size:47.977200px;}
.fs4{font-size:48.000000px;}
.fs10{font-size:49.248000px;}
.fsc{font-size:51.000000px;}
.fs19{font-size:52.055400px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs1a{font-size:65.340000px;}
.fsd{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1c{font-size:79.061400px;}
.fs7{font-size:90.000000px;}
.fs1d{font-size:90.169200px;}
.fs1e{font-size:101.277000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y146{bottom:2.031600px;}
.y173{bottom:2.327250px;}
.y166{bottom:3.660750px;}
.y1f1{bottom:3.851700px;}
.y238{bottom:3.851850px;}
.y1ae{bottom:4.872000px;}
.y1b9{bottom:4.872450px;}
.y224{bottom:4.872600px;}
.y1d4{bottom:4.872900px;}
.y21a{bottom:4.873050px;}
.y20e{bottom:4.873500px;}
.y1ac{bottom:27.657600px;}
.y1b7{bottom:27.658050px;}
.y222{bottom:27.658200px;}
.y1d2{bottom:27.658350px;}
.y1bf{bottom:27.658500px;}
.y218{bottom:27.658650px;}
.y20c{bottom:27.659100px;}
.y1b1{bottom:28.260900px;}
.y211{bottom:28.262400px;}
.y1cb{bottom:28.307250px;}
.y206{bottom:28.307700px;}
.y1ef{bottom:30.628200px;}
.y236{bottom:30.628350px;}
.y1f2{bottom:40.556148px;}
.y23a{bottom:40.556298px;}
.y143{bottom:41.095050px;}
.y138{bottom:83.180706px;}
.y137{bottom:84.967950px;}
.y1{bottom:85.039350px;}
.y36{bottom:85.039500px;}
.yf5{bottom:92.547150px;}
.y145{bottom:99.138300px;}
.y164{bottom:100.300950px;}
.y172{bottom:108.545850px;}
.y10{bottom:119.053650px;}
.y1c4{bottom:119.532450px;}
.y1cd{bottom:119.532900px;}
.y1c6{bottom:119.533500px;}
.y278{bottom:119.635050px;}
.yc2{bottom:119.922600px;}
.y25c{bottom:120.498000px;}
.y151{bottom:120.819750px;}
.y129{bottom:120.878850px;}
.y61{bottom:120.914400px;}
.yb3{bottom:121.005300px;}
.y17d{bottom:121.021800px;}
.y1a1{bottom:121.036500px;}
.y10d{bottom:121.117350px;}
.y232{bottom:121.183950px;}
.y8b{bottom:121.209600px;}
.y1ca{bottom:124.405500px;}
.y1c8{bottom:127.653900px;}
.y1c7{bottom:127.654350px;}
.yf3{bottom:130.922400px;}
.yf{bottom:131.055150px;}
.y10c{bottom:137.107350px;}
.y277{bottom:137.224050px;}
.yc1{bottom:137.511600px;}
.y1ce{bottom:137.532900px;}
.y1c9{bottom:138.048900px;}
.y25b{bottom:138.087000px;}
.y150{bottom:138.408750px;}
.y128{bottom:138.467850px;}
.y60{bottom:138.503400px;}
.yb2{bottom:138.594300px;}
.y17c{bottom:138.610800px;}
.y1a0{bottom:138.625500px;}
.y231{bottom:138.772950px;}
.y8a{bottom:138.798600px;}
.y1c5{bottom:138.837900px;}
.y2b2{bottom:139.958850px;}
.yd6{bottom:144.466650px;}
.y1cc{bottom:144.592350px;}
.yf2{bottom:148.511400px;}
.ye{bottom:149.432400px;}
.y10b{bottom:153.097350px;}
.yc0{bottom:155.100600px;}
.y25a{bottom:155.683500px;}
.y14f{bottom:155.997750px;}
.y127{bottom:156.056850px;}
.y5f{bottom:156.092400px;}
.y291{bottom:156.139200px;}
.yb1{bottom:156.183300px;}
.y17b{bottom:156.199800px;}
.y19f{bottom:156.214500px;}
.y230{bottom:156.361950px;}
.y2dd{bottom:156.793650px;}
.y2b1{bottom:157.778850px;}
.y276{bottom:163.624050px;}
.yf1{bottom:166.100400px;}
.y89{bottom:166.601100px;}
.yd{bottom:167.807400px;}
.ybf{bottom:172.689600px;}
.y259{bottom:173.272500px;}
.y10a{bottom:173.336400px;}
.y126{bottom:173.645850px;}
.y5e{bottom:173.681400px;}
.y290{bottom:173.728200px;}
.yb0{bottom:173.772300px;}
.y17a{bottom:173.788800px;}
.y22f{bottom:173.950950px;}
.y2db{bottom:174.600150px;}
.y2dc{bottom:174.613650px;}
.y2b0{bottom:175.585500px;}
.y1bd{bottom:178.347000px;}
.y1c2{bottom:178.347450px;}
.yf7{bottom:179.681250px;}
.y275{bottom:181.213050px;}
.y14e{bottom:182.397750px;}
.y19e{bottom:182.614500px;}
.yf0{bottom:183.689400px;}
.yc{bottom:184.061400px;}
.y88{bottom:184.190100px;}
.y1c0{bottom:186.468900px;}
.ybe{bottom:190.278600px;}
.yd4{bottom:190.501800px;}
.y109{bottom:190.932750px;}
.y125{bottom:191.234850px;}
.y5d{bottom:191.270400px;}
.y28f{bottom:191.317200px;}
.yaf{bottom:191.361300px;}
.y179{bottom:191.377800px;}
.y22e{bottom:191.539950px;}
.y2da{bottom:192.420150px;}
.y2af{bottom:193.405500px;}
.yb{bottom:195.243900px;}
.y1c1{bottom:196.863450px;}
.y1be{bottom:197.652450px;}
.y1c3{bottom:197.847450px;}
.y274{bottom:198.802050px;}
.y12f{bottom:199.969650px;}
.y19d{bottom:200.203500px;}
.yef{bottom:201.278400px;}
.y87{bottom:201.779100px;}
.y140{bottom:206.175000px;}
.ya{bottom:206.426400px;}
.yd3{bottom:208.090800px;}
.y5c{bottom:208.859400px;}
.y28e{bottom:208.906200px;}
.y178{bottom:208.966800px;}
.y2d9{bottom:210.240150px;}
.y2ae{bottom:211.225500px;}
.yff{bottom:213.735150px;}
.y273{bottom:216.391050px;}
.y124{bottom:217.634850px;}
.yae{bottom:217.761300px;}
.y19c{bottom:217.792500px;}
.y22d{bottom:217.939950px;}
.yee{bottom:218.867400px;}
.y86{bottom:219.368100px;}
.y9{bottom:223.982400px;}
.yd2{bottom:225.679800px;}
.y14d{bottom:226.386750px;}
.y5b{bottom:226.448400px;}
.y28d{bottom:226.495200px;}
.y2d8{bottom:228.046650px;}
.y2ad{bottom:229.032000px;}
.y15a{bottom:233.532300px;}
.y258{bottom:233.605350px;}
.y272{bottom:233.980050px;}
.y8{bottom:235.164900px;}
.yad{bottom:235.350300px;}
.y19b{bottom:235.381500px;}
.y22c{bottom:235.528950px;}
.y1b4{bottom:235.676400px;}
.y1b6{bottom:235.677000px;}
.y85{bottom:236.957100px;}
.ybd{bottom:240.058350px;}
.yd1{bottom:243.268800px;}
.y1ba{bottom:243.798000px;}
.y1b8{bottom:243.798450px;}
.y16e{bottom:243.943500px;}
.y14c{bottom:243.975750px;}
.y28c{bottom:244.084200px;}
.yed{bottom:245.267400px;}
.y2d7{bottom:245.866650px;}
.y2ac{bottom:246.852000px;}
.y271{bottom:251.569050px;}
.y5a{bottom:252.848400px;}
.yac{bottom:252.939300px;}
.y19a{bottom:252.970500px;}
.y22b{bottom:253.126800px;}
.y1bc{bottom:253.677000px;}
.y1bb{bottom:254.193000px;}
.y84{bottom:254.546100px;}
.y1b5{bottom:254.982000px;}
.y257{bottom:258.269850px;}
.y14b{bottom:261.564750px;}
.y123{bottom:261.623850px;}
.y28b{bottom:261.673200px;}
.y177{bottom:261.743550px;}
.yec{bottom:262.856400px;}
.y2d6{bottom:263.686650px;}
.y2ab{bottom:264.672000px;}
.y270{bottom:269.158050px;}
.yd0{bottom:269.668800px;}
.y59{bottom:270.437400px;}
.yab{bottom:270.528300px;}
.y199{bottom:270.559500px;}
.y35{bottom:271.500600px;}
.y256{bottom:274.253850px;}
.y176{bottom:277.733550px;}
.y1fb{bottom:278.581950px;}
.y122{bottom:279.212850px;}
.y28a{bottom:279.262200px;}
.y22a{bottom:279.526800px;}
.yeb{bottom:280.445400px;}
.yd8{bottom:280.850400px;}
.y2d5{bottom:281.497650px;}
.y83{bottom:282.348600px;}
.y2aa{bottom:282.483000px;}
.y58{bottom:288.026400px;}
.yaa{bottom:288.117300px;}
.y198{bottom:288.148500px;}
.y1a9{bottom:293.006400px;}
.y1ab{bottom:293.007000px;}
.y175{bottom:293.723550px;}
.y34{bottom:295.483350px;}
.y26f{bottom:295.558050px;}
.y1fa{bottom:296.170950px;}
.y121{bottom:296.801850px;}
.y289{bottom:296.851200px;}
.y229{bottom:297.115800px;}
.yea{bottom:298.034400px;}
.y255{bottom:298.918350px;}
.y2d4{bottom:299.317650px;}
.y82{bottom:299.937600px;}
.y2a9{bottom:300.303000px;}
.y1af{bottom:301.127550px;}
.y1ad{bottom:301.128000px;}
.y57{bottom:305.615400px;}
.ya9{bottom:305.706300px;}
.y197{bottom:305.737500px;}
.y1b3{bottom:309.506400px;}
.y174{bottom:309.713550px;}
.y33{bottom:311.471850px;}
.y1b0{bottom:311.522550px;}
.y1aa{bottom:312.311400px;}
.y26e{bottom:313.147050px;}
.ycf{bottom:313.657800px;}
.y1f9{bottom:313.759950px;}
.y120{bottom:314.390850px;}
.y288{bottom:314.440200px;}
.y228{bottom:314.704800px;}
.y254{bottom:314.902350px;}
.ye9{bottom:315.623400px;}
.y2d3{bottom:317.119650px;}
.y81{bottom:317.541600px;}
.y1b2{bottom:318.019500px;}
.y2a8{bottom:318.109500px;}
.y14a{bottom:319.414050px;}
.y56{bottom:323.204400px;}
.ya8{bottom:323.295300px;}
.y196{bottom:323.326500px;}
.y30{bottom:327.458700px;}
.y32{bottom:327.460350px;}
.y26d{bottom:330.743550px;}
.yce{bottom:331.254300px;}
.y1f8{bottom:331.348950px;}
.y31{bottom:331.735350px;}
.y11f{bottom:331.979850px;}
.ye8{bottom:333.212400px;}
.y16d{bottom:333.694500px;}
.y2d2{bottom:334.939650px;}
.y80{bottom:335.130600px;}
.y149{bottom:335.404050px;}
.y2a7{bottom:335.929500px;}
.y253{bottom:339.566850px;}
.y287{bottom:340.840200px;}
.ya7{bottom:340.884300px;}
.y195{bottom:340.915500px;}
.y21f{bottom:341.097450px;}
.y221{bottom:341.098500px;}
.y2d{bottom:343.434150px;}
.y2f{bottom:343.447200px;}
.y2e{bottom:347.722200px;}
.y26c{bottom:348.340050px;}
.ycd{bottom:348.843300px;}
.y1f7{bottom:348.937950px;}
.y225{bottom:349.219650px;}
.y223{bottom:349.220100px;}
.y11e{bottom:349.568850px;}
.y55{bottom:349.604400px;}
.ye7{bottom:350.801400px;}
.y148{bottom:351.394050px;}
.y2d1{bottom:352.759650px;}
.y7f{bottom:352.894500px;}
.y2a6{bottom:353.749500px;}
.y252{bottom:355.550850px;}
.y227{bottom:357.598500px;}
.y286{bottom:358.429200px;}
.ya6{bottom:358.473300px;}
.y194{bottom:358.504500px;}
.y2c{bottom:359.422650px;}
.y226{bottom:359.614650px;}
.y1a8{bottom:359.658600px;}
.y220{bottom:360.403650px;}
.y171{bottom:364.669050px;}
.y26b{bottom:365.936550px;}
.y11d{bottom:367.157850px;}
.y54{bottom:367.193400px;}
.y147{bottom:367.384050px;}
.ye6{bottom:368.390400px;}
.y7e{bottom:370.483500px;}
.y2d0{bottom:370.579650px;}
.y251{bottom:371.534850px;}
.y2a5{bottom:371.556000px;}
.y2b{bottom:375.411150px;}
.y285{bottom:376.018200px;}
.y1a7{bottom:377.247600px;}
.y170{bottom:380.329102px;}
.y26a{bottom:383.525550px;}
.y1ee{bottom:384.129000px;}
.y1ec{bottom:384.129150px;}
.y53{bottom:384.782400px;}
.y11c{bottom:384.871500px;}
.ya5{bottom:384.873300px;}
.y193{bottom:384.904500px;}
.y16f{bottom:385.901700px;}
.ye5{bottom:385.979400px;}
.y7d{bottom:388.072500px;}
.y2cf{bottom:388.381650px;}
.y2a4{bottom:389.376000px;}
.y13f{bottom:391.365000px;}
.y2a{bottom:391.399650px;}
.y167{bottom:393.085050px;}
.y284{bottom:393.607200px;}
.y1a6{bottom:394.836600px;}
.y1f0{bottom:395.220150px;}
.y24f{bottom:396.202350px;}
.y215{bottom:397.151400px;}
.y217{bottom:397.152000px;}
.y21d{bottom:397.152450px;}
.y250{bottom:400.027350px;}
.ycc{bottom:401.623050px;}
.y52{bottom:402.371400px;}
.y11b{bottom:402.460500px;}
.ya4{bottom:402.462300px;}
.y192{bottom:402.493500px;}
.y1f4{bottom:403.016400px;}
.ye4{bottom:403.568400px;}
.y1f3{bottom:403.666050px;}
.y21b{bottom:405.273450px;}
.y219{bottom:405.273900px;}
.y7c{bottom:405.661500px;}
.y2ce{bottom:406.201650px;}
.y1ed{bottom:406.404150px;}
.y1f6{bottom:406.629150px;}
.y2a3{bottom:407.196000px;}
.y29{bottom:407.388150px;}
.y283{bottom:411.196200px;}
.y1a5{bottom:412.425600px;}
.y21e{bottom:415.152450px;}
.y21c{bottom:415.668600px;}
.y216{bottom:416.457450px;}
.y1f5{bottom:416.891850px;}
.ycb{bottom:417.613050px;}
.y144{bottom:419.020950px;}
.y51{bottom:419.960400px;}
.y11a{bottom:420.049500px;}
.ya3{bottom:420.051300px;}
.y191{bottom:420.082500px;}
.ye3{bottom:421.157400px;}
.y28{bottom:423.376650px;}
.y168{bottom:423.851130px;}
.y2cd{bottom:424.021650px;}
.y2a2{bottom:425.002500px;}
.y24e{bottom:427.865550px;}
.y282{bottom:428.785200px;}
.y142{bottom:432.460123px;}
.y7b{bottom:433.464000px;}
.yca{bottom:433.603050px;}
.y141{bottom:437.264100px;}
.y50{bottom:437.549400px;}
.ya2{bottom:437.640300px;}
.y190{bottom:437.671500px;}
.y27{bottom:439.365150px;}
.y269{bottom:441.729450px;}
.y2cc{bottom:441.841650px;}
.y2a1{bottom:442.822500px;}
.y13a{bottom:443.420250px;}
.y24d{bottom:443.855550px;}
.y281{bottom:446.374200px;}
.y119{bottom:446.449500px;}
.ye2{bottom:447.557400px;}
.y7a{bottom:451.053000px;}
.y209{bottom:453.205350px;}
.y20b{bottom:453.205500px;}
.y213{bottom:453.206400px;}
.y169{bottom:454.594964px;}
.y4f{bottom:455.138400px;}
.ya1{bottom:455.229300px;}
.y18f{bottom:455.260500px;}
.y26{bottom:455.348700px;}
.y1eb{bottom:456.755250px;}
.yc9{bottom:457.583700px;}
.y2cb{bottom:459.652650px;}
.y2a0{bottom:460.642500px;}
.y20f{bottom:461.327400px;}
.y20d{bottom:461.327850px;}
.y280{bottom:463.963200px;}
.y118{bottom:464.038500px;}
.y1a4{bottom:465.211350px;}
.y268{bottom:466.393950px;}
.y79{bottom:468.642000px;}
.y214{bottom:471.206400px;}
.y210{bottom:471.722550px;}
.y20a{bottom:472.511400px;}
.ya0{bottom:472.818300px;}
.y4e{bottom:472.833000px;}
.y18e{bottom:472.849500px;}
.y13b{bottom:474.240198px;}
.y1ea{bottom:474.344250px;}
.yc8{bottom:475.180200px;}
.y2ca{bottom:477.472650px;}
.y212{bottom:478.219500px;}
.y29f{bottom:478.449000px;}
.y27f{bottom:481.552200px;}
.y117{bottom:481.627500px;}
.y108{bottom:483.953400px;}
.y16a{bottom:485.349920px;}
.y78{bottom:486.231000px;}
.y25{bottom:487.325700px;}
.y9f{bottom:490.407300px;}
.y4d{bottom:490.422000px;}
.y18d{bottom:490.438500px;}
.y267{bottom:491.058450px;}
.y2c9{bottom:495.279150px;}
.y29e{bottom:496.269000px;}
.y24c{bottom:498.160050px;}
.y27e{bottom:499.141200px;}
.y116{bottom:499.216500px;}
.y1e9{bottom:500.744250px;}
.y107{bottom:501.549900px;}
.y24{bottom:503.314200px;}
.y77{bottom:503.820000px;}
.y13c{bottom:505.069696px;}
.y266{bottom:507.042450px;}
.y9e{bottom:507.996300px;}
.y4c{bottom:508.011000px;}
.y18c{bottom:508.027500px;}
.y200{bottom:510.745350px;}
.y202{bottom:510.745500px;}
.y2c8{bottom:513.099150px;}
.y29d{bottom:514.089000px;}
.y24b{bottom:515.749050px;}
.y16b{bottom:516.116000px;}
.y27d{bottom:516.730200px;}
.y115{bottom:516.805500px;}
.ye1{bottom:517.921050px;}
.y1e8{bottom:518.333250px;}
.y204{bottom:518.866350px;}
.y203{bottom:518.866800px;}
.y9d{bottom:525.585300px;}
.y4b{bottom:525.600000px;}
.y18b{bottom:525.616500px;}
.y23{bottom:527.296950px;}
.y205{bottom:529.261350px;}
.y201{bottom:530.050350px;}
.y208{bottom:530.245350px;}
.y2c7{bottom:530.919150px;}
.y76{bottom:531.622500px;}
.y265{bottom:531.706950px;}
.y29c{bottom:531.895500px;}
.ye0{bottom:533.911050px;}
.y27c{bottom:534.319200px;}
.y114{bottom:534.394500px;}
.y207{bottom:535.804800px;}
.y13d{bottom:535.889643px;}
.y1e7{bottom:535.922250px;}
.y24a{bottom:542.149050px;}
.y22{bottom:543.282450px;}
.y16c{bottom:546.870957px;}
.y264{bottom:547.690950px;}
.y2c6{bottom:548.730150px;}
.y75{bottom:549.211500px;}
.y29b{bottom:549.715500px;}
.y27b{bottom:551.908200px;}
.y113{bottom:551.983500px;}
.y9c{bottom:551.985300px;}
.y4a{bottom:552.000000px;}
.y18a{bottom:552.016500px;}
.y1e6{bottom:553.511250px;}
.yd5{bottom:554.032500px;}
.y21{bottom:559.270950px;}
.y2c5{bottom:566.550150px;}
.y13e{bottom:566.719141px;}
.y74{bottom:566.800500px;}
.y29a{bottom:567.535500px;}
.y9b{bottom:569.574300px;}
.y49{bottom:569.589000px;}
.y189{bottom:569.605500px;}
.y1e5{bottom:571.100250px;}
.y263{bottom:572.355450px;}
.y1e{bottom:575.249100px;}
.y20{bottom:575.259450px;}
.y1ff{bottom:577.382550px;}
.y27a{bottom:578.315700px;}
.y112{bottom:578.383500px;}
.y1f{bottom:579.534450px;}
.y2c4{bottom:584.356650px;}
.y73{bottom:584.389500px;}
.y299{bottom:585.342000px;}
.y249{bottom:586.138050px;}
.y9a{bottom:587.163300px;}
.y48{bottom:587.178000px;}
.y188{bottom:587.194500px;}
.y1e4{bottom:588.689250px;}
.y1d{bottom:591.237600px;}
.y1fe{bottom:594.979050px;}
.y111{bottom:595.972500px;}
.y261{bottom:597.022950px;}
.y262{bottom:600.847800px;}
.y72{bottom:601.978500px;}
.y2c3{bottom:602.176650px;}
.y298{bottom:603.162000px;}
.y248{bottom:603.727050px;}
.y99{bottom:604.752300px;}
.y47{bottom:604.767000px;}
.y187{bottom:604.783500px;}
.y159{bottom:606.730500px;}
.y1c{bottom:607.226100px;}
.y1fd{bottom:612.568050px;}
.y110{bottom:613.561500px;}
.y1e3{bottom:615.089250px;}
.y71{bottom:619.567500px;}
.y2c2{bottom:619.996650px;}
.y297{bottom:620.982000px;}
.y247{bottom:621.316050px;}
.y98{bottom:622.341300px;}
.y186{bottom:622.372500px;}
.y1b{bottom:623.214600px;}
.y165{bottom:624.341400px;}
.y260{bottom:628.686000px;}
.ybc{bottom:631.150500px;}
.y46{bottom:631.167000px;}
.y1e2{bottom:632.678250px;}
.y70{bottom:637.156500px;}
.y2c1{bottom:637.803150px;}
.y296{bottom:638.802000px;}
.y246{bottom:638.905050px;}
.y12e{bottom:639.178500px;}
.y1a{bottom:639.203100px;}
.y97{bottom:639.930300px;}
.y185{bottom:639.961500px;}
.y162{bottom:643.454250px;}
.y139{bottom:643.767150px;}
.y25f{bottom:644.676000px;}
.ybb{bottom:648.739500px;}
.y45{bottom:648.756000px;}
.y1e1{bottom:650.267250px;}
.y106{bottom:654.255600px;}
.y19{bottom:655.191600px;}
.y2c0{bottom:655.623150px;}
.y245{bottom:656.494050px;}
.y295{bottom:656.604000px;}
.y96{bottom:657.519300px;}
.y1a3{bottom:657.550500px;}
.y161{bottom:657.881798px;}
.y160{bottom:663.017850px;}
.y6f{bottom:664.959000px;}
.y1fc{bottom:665.353800px;}
.yba{bottom:666.328500px;}
.y44{bottom:666.345000px;}
.y136{bottom:666.629400px;}
.y1e0{bottom:667.856250px;}
.y15b{bottom:669.635400px;}
.y152{bottom:669.645750px;}
.y18{bottom:671.180100px;}
.y2bf{bottom:673.443150px;}
.y244{bottom:674.083050px;}
.yf4{bottom:674.362500px;}
.y294{bottom:674.424000px;}
.y95{bottom:675.108300px;}
.y10f{bottom:675.139500px;}
.y184{bottom:675.156000px;}
.y135{bottom:679.293061px;}
.ydf{bottom:679.726050px;}
.y6e{bottom:682.548000px;}
.y134{bottom:683.776950px;}
.y279{bottom:683.917500px;}
.y43{bottom:683.934000px;}
.y17{bottom:687.168600px;}
.y12a{bottom:689.578950px;}
.y2be{bottom:691.263150px;}
.y293{bottom:692.244000px;}
.yb9{bottom:692.728500px;}
.y153{bottom:694.013803px;}
.y1df{bottom:694.256250px;}
.yd7{bottom:698.499150px;}
.y6d{bottom:700.137000px;}
.y243{bottom:700.483050px;}
.y25e{bottom:701.506500px;}
.y94{bottom:701.508300px;}
.y42{bottom:701.523000px;}
.yde{bottom:706.126050px;}
.y15c{bottom:707.556068px;}
.y2bd{bottom:709.065150px;}
.y163{bottom:709.070550px;}
.y292{bottom:710.064000px;}
.yb8{bottom:710.317500px;}
.y1de{bottom:711.846600px;}
.y105{bottom:713.485350px;}
.y6c{bottom:717.726000px;}
.y242{bottom:718.072050px;}
.y154{bottom:718.381856px;}
.y25d{bottom:719.095500px;}
.y93{bottom:719.097300px;}
.y41{bottom:719.112000px;}
.y130{bottom:722.817239px;}
.y2bc{bottom:726.885150px;}
.y12b{bottom:726.977641px;}
.yb7{bottom:727.906500px;}
.y183{bottom:727.939500px;}
.ydd{bottom:732.526050px;}
.y6b{bottom:735.315000px;}
.y241{bottom:735.661050px;}
.y92{bottom:736.686300px;}
.y1dd{bottom:738.246600px;}
.y104{bottom:739.885350px;}
.y155{bottom:742.760161px;}
.y2bb{bottom:744.705150px;}
.y15d{bottom:745.476737px;}
.yb6{bottom:745.495500px;}
.y40{bottom:745.512000px;}
.y182{bottom:745.528500px;}
.y16{bottom:749.927250px;}
.y6a{bottom:752.904000px;}
.y240{bottom:753.250050px;}
.y91{bottom:754.275300px;}
.y1dc{bottom:755.842950px;}
.y131{bottom:756.055529px;}
.ydc{bottom:758.926050px;}
.y2ba{bottom:762.507300px;}
.yb5{bottom:763.084500px;}
.y3f{bottom:763.101000px;}
.y181{bottom:763.117500px;}
.y12c{bottom:764.367347px;}
.y103{bottom:766.285350px;}
.yf6{bottom:766.909650px;}
.y156{bottom:767.138466px;}
.y69{bottom:770.493000px;}
.y90{bottom:771.871650px;}
.y1a2{bottom:771.895500px;}
.y1db{bottom:773.439600px;}
.y15{bottom:774.711600px;}
.y2b9{bottom:780.327300px;}
.yb4{bottom:780.673500px;}
.y3e{bottom:780.690000px;}
.y180{bottom:780.706500px;}
.y15e{bottom:783.397405px;}
.y68{bottom:788.082000px;}
.y132{bottom:789.284832px;}
.y8f{bottom:789.477000px;}
.yc7{bottom:789.484500px;}
.y1da{bottom:791.036100px;}
.y157{bottom:791.516771px;}
.y23f{bottom:792.404550px;}
.y102{bottom:792.685350px;}
.y2b8{bottom:798.147300px;}
.y3d{bottom:798.279000px;}
.y17f{bottom:798.295500px;}
.y12d{bottom:801.757053px;}
.y67{bottom:805.671000px;}
.y8e{bottom:807.066000px;}
.yc6{bottom:807.073500px;}
.y1d9{bottom:808.632450px;}
.y14{bottom:809.315850px;}
.yfb{bottom:810.678900px;}
.y3c{bottom:815.868000px;}
.y17e{bottom:815.884500px;}
.y158{bottom:815.884824px;}
.y2b7{bottom:815.967300px;}
.y101{bottom:819.085350px;}
.y15f{bottom:821.318074px;}
.y133{bottom:822.523121px;}
.y66{bottom:823.260000px;}
.y8d{bottom:824.655000px;}
.yc5{bottom:824.662500px;}
.y1d8{bottom:826.221450px;}
.y13{bottom:830.915850px;}
.y3b{bottom:833.457000px;}
.y10e{bottom:833.473500px;}
.y2b6{bottom:833.773650px;}
.yc4{bottom:842.251500px;}
.yfe{bottom:843.386400px;}
.y233{bottom:845.190300px;}
.y100{bottom:845.485350px;}
.y235{bottom:848.379000px;}
.y3a{bottom:851.046000px;}
.y8c{bottom:851.055000px;}
.y65{bottom:851.062500px;}
.y2b5{bottom:851.593650px;}
.y239{bottom:852.230850px;}
.y1d1{bottom:852.615000px;}
.y1cf{bottom:852.615300px;}
.y12{bottom:856.775400px;}
.y237{bottom:859.470300px;}
.yc3{bottom:859.840500px;}
.y1d5{bottom:860.736300px;}
.y1d3{bottom:860.736750px;}
.yfd{bottom:861.187650px;}
.y23c{bottom:867.266550px;}
.y23b{bottom:867.916200px;}
.yd9{bottom:868.092900px;}
.y64{bottom:868.651500px;}
.y23e{bottom:869.190300px;}
.y2b4{bottom:869.413650px;}
.y1d7{bottom:870.615300px;}
.y234{bottom:870.654300px;}
.y1d6{bottom:871.131300px;}
.y1d0{bottom:871.920300px;}
.yda{bottom:874.813350px;}
.yf8{bottom:875.261100px;}
.yfc{bottom:877.331250px;}
.yf9{bottom:879.554850px;}
.ydb{bottom:880.084650px;}
.y23d{bottom:881.142000px;}
.y11{bottom:882.267900px;}
.yfa{bottom:882.922650px;}
.y39{bottom:886.240500px;}
.y2b3{bottom:887.233650px;}
.y5{bottom:920.367150px;}
.y63{bottom:931.885500px;}
.y38{bottom:931.885650px;}
.y4{bottom:939.024750px;}
.y3{bottom:945.477750px;}
.y62{bottom:949.474500px;}
.y37{bottom:949.474650px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.891150px;}
.y6{bottom:971.391150px;}
.h4{height:19.764000px;}
.h1c{height:22.922016px;}
.h1d{height:24.974067px;}
.h20{height:26.544092px;}
.h1b{height:27.607816px;}
.h23{height:28.492240px;}
.h2c{height:29.076260px;}
.h3a{height:29.087183px;}
.h1f{height:29.219304px;}
.h26{height:30.913980px;}
.h22{height:31.056558px;}
.h38{height:32.300067px;}
.he{height:32.509204px;}
.h12{height:32.599658px;}
.h25{height:33.335721px;}
.h5{height:35.664000px;}
.h19{height:35.877937px;}
.h28{height:36.169353px;}
.h30{height:37.507755px;}
.h6{height:38.388000px;}
.h7{height:41.130000px;}
.h2{height:41.220703px;}
.h18{height:43.212234px;}
.h2f{height:44.550000px;}
.h3d{height:44.730469px;}
.h39{height:44.749512px;}
.h2b{height:44.889346px;}
.h13{height:45.197754px;}
.h2a{height:46.035000px;}
.hb{height:47.381836px;}
.h36{height:48.786000px;}
.h3c{height:49.280273px;}
.h2e{height:49.866416px;}
.hc{height:50.014160px;}
.hf{height:50.026160px;}
.hd{height:50.071160px;}
.h11{height:50.153320px;}
.h10{height:50.173120px;}
.h31{height:51.975000px;}
.h16{height:52.646484px;}
.h40{height:52.682484px;}
.h41{height:52.699884px;}
.h3e{height:52.700484px;}
.h42{height:52.701084px;}
.h43{height:52.717884px;}
.h44{height:52.718484px;}
.ha{height:52.792969px;}
.h3f{height:52.846969px;}
.h29{height:57.906299px;}
.h15{height:57.911133px;}
.h14{height:58.072266px;}
.h2d{height:60.338363px;}
.h8{height:60.996094px;}
.h9{height:63.175781px;}
.h34{height:68.815654px;}
.h35{height:77.292945px;}
.h3b{height:79.349836px;}
.h33{height:102.642299px;}
.h3{height:104.850000px;}
.h32{height:111.494060px;}
.h37{height:111.494660px;}
.h1e{height:208.569000px;}
.h21{height:214.299000px;}
.h1a{height:220.677000px;}
.h24{height:241.018500px;}
.h27{height:252.142500px;}
.h17{height:341.007000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.wb{width:176.715000px;}
.w7{width:222.750000px;}
.wd{width:237.600000px;}
.w2{width:238.110000px;}
.w8{width:294.030000px;}
.w9{width:295.515000px;}
.wf{width:297.000000px;}
.we{width:316.305000px;}
.wa{width:357.885000px;}
.wc{width:359.370000px;}
.w10{width:363.825000px;}
.w3{width:498.756000px;}
.w4{width:498.777000px;}
.w5{width:498.778500px;}
.w6{width:498.865500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x48{left:9.363648px;}
.x77{left:20.951400px;}
.x4a{left:25.090950px;}
.x8a{left:56.986800px;}
.x96{left:59.632050px;}
.x89{left:65.711250px;}
.x86{left:67.055100px;}
.x94{left:68.356350px;}
.x74{left:70.439550px;}
.xb4{left:74.203350px;}
.xb5{left:77.684400px;}
.x8b{left:80.561250px;}
.x25{left:83.188500px;}
.xb1{left:84.273450px;}
.xa3{left:85.990800px;}
.x11{left:110.551200px;}
.x1{left:113.476500px;}
.x1c{left:116.980050px;}
.x15{left:123.668100px;}
.x21{left:125.680650px;}
.x24{left:128.163000px;}
.x75{left:130.695450px;}
.x7{left:131.873250px;}
.x2b{left:132.969000px;}
.x76{left:134.399392px;}
.x12{left:136.060200px;}
.x4{left:138.991500px;}
.x23{left:140.583000px;}
.x5f{left:143.637000px;}
.xd1{left:146.694000px;}
.xd0{left:149.630400px;}
.x22{left:153.007050px;}
.xcf{left:155.376750px;}
.x1a{left:159.643650px;}
.x46{left:160.827300px;}
.x8d{left:162.236250px;}
.x71{left:163.551450px;}
.x2c{left:164.829450px;}
.x61{left:166.489650px;}
.x85{left:168.431100px;}
.x4b{left:169.615200px;}
.x78{left:171.566700px;}
.x5{left:173.632800px;}
.x2d{left:176.852383px;}
.x62{left:178.125216px;}
.x6{left:179.257800px;}
.xa8{left:180.659550px;}
.x4c{left:182.489476px;}
.x73{left:183.929550px;}
.x99{left:185.485800px;}
.xa2{left:186.557100px;}
.x2e{left:188.893288px;}
.xa6{left:190.079850px;}
.xb8{left:193.281900px;}
.x4d{left:195.363752px;}
.x49{left:196.401450px;}
.x9b{left:201.960000px;}
.xb9{left:204.702000px;}
.xa9{left:206.415000px;}
.x2f{left:212.966113px;}
.xc0{left:214.354500px;}
.x93{left:215.839500px;}
.xbf{left:216.999750px;}
.x92{left:218.484600px;}
.xf{left:219.598500px;}
.x4e{left:221.121855px;}
.x79{left:222.231737px;}
.x10{left:223.998150px;}
.x20{left:225.246750px;}
.x19{left:227.360850px;}
.x16{left:229.211550px;}
.x1d{left:231.393750px;}
.x17{left:233.101500px;}
.x7a{left:234.900777px;}
.xc6{left:236.024550px;}
.x30{left:237.029951px;}
.xb3{left:238.252050px;}
.xb6{left:244.054500px;}
.x4f{left:246.870408px;}
.x88{left:251.479500px;}
.x87{left:254.124750px;}
.x8{left:256.141800px;}
.xc7{left:257.468250px;}
.x63{left:259.563926px;}
.x31{left:261.102776px;}
.xa0{left:263.082150px;}
.x95{left:264.283500px;}
.x1f{left:268.506600px;}
.x64{left:271.199492px;}
.x32{left:273.143680px;}
.xb0{left:274.216950px;}
.xbe{left:275.281800px;}
.xc5{left:277.142250px;}
.xba{left:280.204950px;}
.x65{left:282.835058px;}
.x33{left:285.175600px;}
.xa4{left:289.532550px;}
.x97{left:291.342450px;}
.xb7{left:292.923600px;}
.x50{left:298.386614px;}
.x14{left:303.467400px;}
.xbb{left:304.753800px;}
.x18{left:306.981450px;}
.x34{left:309.239438px;}
.xa1{left:313.385400px;}
.x98{left:314.824050px;}
.x66{left:317.741756px;}
.x1e{left:319.379250px;}
.x35{left:321.280343px;}
.x51{left:324.135166px;}
.xc8{left:327.027150px;}
.x67{left:329.377322px;}
.x13{left:330.956400px;}
.x36{left:333.312262px;}
.x52{left:337.018993px;}
.xa5{left:340.811550px;}
.x9{left:344.425200px;}
.x8c{left:346.937250px;}
.xa{left:348.736950px;}
.x53{left:349.893269px;}
.x28{left:352.122900px;}
.xa7{left:353.197500px;}
.x37{left:357.376101px;}
.xbc{left:360.998250px;}
.xca{left:362.671200px;}
.x68{left:364.273769px;}
.x38{left:369.408020px;}
.x27{left:370.591500px;}
.x1b{left:373.509900px;}
.x54{left:375.651372px;}
.xd{left:378.381900px;}
.x39{left:381.448925px;}
.xe{left:382.790400px;}
.x7b{left:386.918135px;}
.x55{left:388.535199px;}
.xaa{left:396.728250px;}
.x69{left:399.180467px;}
.x56{left:401.409475px;}
.xbd{left:404.295150px;}
.x3a{left:405.521749px;}
.x9a{left:408.332550px;}
.xc1{left:409.492650px;}
.x6a{left:410.816033px;}
.x3b{left:417.553669px;}
.xcc{left:419.306850px;}
.x8e{left:420.955050px;}
.x6b{left:422.451599px;}
.x7c{left:424.914132px;}
.x57{left:427.158028px;}
.x3c{left:429.594574px;}
.x9d{left:432.046050px;}
.xc2{left:433.855950px;}
.x9c{left:436.547550px;}
.x7d{left:437.583172px;}
.x58{left:440.032304px;}
.x3{left:441.045750px;}
.x8f{left:442.533900px;}
.x6c{left:445.722731px;}
.xb2{left:448.286700px;}
.x7e{left:450.252212px;}
.x3d{left:453.667398px;}
.x6d{left:457.348045px;}
.xab{left:460.817850px;}
.x3e{left:465.690331px;}
.x26{left:467.362650px;}
.x6e{left:468.983611px;}
.x2a{left:471.238950px;}
.x90{left:474.229500px;}
.x7f{left:475.590292px;}
.x3f{left:477.722251px;}
.xac{left:481.840050px;}
.xad{left:485.413200px;}
.x80{left:488.259332px;}
.x59{left:491.548510px;}
.x9e{left:492.699150px;}
.xc3{left:494.973000px;}
.x47{left:496.755600px;}
.x40{left:501.795075px;}
.x5a{left:504.432337px;}
.x9f{left:509.869350px;}
.xc4{left:511.354500px;}
.x41{left:513.835980px;}
.x6f{left:515.515624px;}
.xce{left:517.485900px;}
.xcd{left:518.497200px;}
.x2{left:521.280900px;}
.xae{left:524.719500px;}
.x42{left:525.867899px;}
.x5b{left:530.190440px;}
.xc9{left:532.328250px;}
.x70{left:538.786756px;}
.xaf{left:541.796850px;}
.x5c{left:543.064716px;}
.x43{left:549.940724px;}
.x81{left:551.593410px;}
.x5d{left:555.948543px;}
.x44{left:561.981629px;}
.xb{left:567.921300px;}
.xcb{left:570.146700px;}
.xc{left:572.232900px;}
.x45{left:574.013548px;}
.x82{left:576.931490px;}
.x60{left:578.787600px;}
.x91{left:580.564500px;}
.x29{left:581.815950px;}
.x83{left:589.600530px;}
.x5e{left:594.580922px;}
.x84{left:602.269570px;}
.x72{left:607.902450px;}
@media print{
.v3{vertical-align:-17.600000pt;}
.v1{vertical-align:-12.108800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.549867pt;}
.v2{vertical-align:16.978133pt;}
.v5{vertical-align:28.214933pt;}
.v7{vertical-align:33.494933pt;}
.v6{vertical-align:39.765333pt;}
.ls26{letter-spacing:-0.880000pt;}
.ls60{letter-spacing:-0.821333pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.645333pt;}
.ls28{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls61{letter-spacing:-0.352000pt;}
.ls46{letter-spacing:-0.293333pt;}
.ls47{letter-spacing:-0.234667pt;}
.ls5f{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.002133pt;}
.ls70{letter-spacing:0.008000pt;}
.ls4c{letter-spacing:0.008533pt;}
.ls66{letter-spacing:0.009067pt;}
.ls5c{letter-spacing:0.012267pt;}
.ls4a{letter-spacing:0.014933pt;}
.ls62{letter-spacing:0.024000pt;}
.ls4e{letter-spacing:0.029333pt;}
.ls63{letter-spacing:0.032000pt;}
.ls5b{letter-spacing:0.033067pt;}
.ls4d{letter-spacing:0.036267pt;}
.ls8{letter-spacing:0.050667pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls4b{letter-spacing:0.055467pt;}
.lsc{letter-spacing:0.058667pt;}
.ls5a{letter-spacing:0.068267pt;}
.ls72{letter-spacing:0.080000pt;}
.ls71{letter-spacing:0.088533pt;}
.ls73{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.149333pt;}
.ls79{letter-spacing:0.153600pt;}
.ls5e{letter-spacing:0.154133pt;}
.ls6e{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.161600pt;}
.ls7a{letter-spacing:0.162133pt;}
.ls19{letter-spacing:0.176000pt;}
.ls56{letter-spacing:0.212053pt;}
.ls55{letter-spacing:0.212587pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.293333pt;}
.ls7b{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.354667pt;}
.ls65{letter-spacing:0.362667pt;}
.ls57{letter-spacing:0.365867pt;}
.ls32{letter-spacing:0.373333pt;}
.ls64{letter-spacing:0.378133pt;}
.ls2b{letter-spacing:0.410667pt;}
.ls69{letter-spacing:0.418667pt;}
.ls68{letter-spacing:0.426667pt;}
.ls67{letter-spacing:0.427733pt;}
.ls13{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.528000pt;}
.ls1d{letter-spacing:0.533867pt;}
.ls18{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.598400pt;}
.ls6d{letter-spacing:0.600000pt;}
.ls5{letter-spacing:0.608000pt;}
.ls6c{letter-spacing:0.613867pt;}
.ls6b{letter-spacing:0.622400pt;}
.ls3{letter-spacing:0.634667pt;}
.ls7d{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.645333pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.880000pt;}
.ls7c{letter-spacing:0.894933pt;}
.ls21{letter-spacing:0.938667pt;}
.ls25{letter-spacing:0.997333pt;}
.ls7e{letter-spacing:1.013333pt;}
.ls29{letter-spacing:1.056000pt;}
.ls1b{letter-spacing:1.085333pt;}
.ls1a{letter-spacing:1.114667pt;}
.ls15{letter-spacing:1.173333pt;}
.ls6f{letter-spacing:1.226667pt;}
.ls23{letter-spacing:1.232000pt;}
.ls36{letter-spacing:1.290667pt;}
.ls11{letter-spacing:1.349333pt;}
.ls75{letter-spacing:1.386667pt;}
.ls76{letter-spacing:1.400000pt;}
.lsf{letter-spacing:1.466667pt;}
.ls31{letter-spacing:1.525333pt;}
.ls1f{letter-spacing:1.584000pt;}
.ls2{letter-spacing:1.605333pt;}
.ls40{letter-spacing:1.667573pt;}
.ls3d{letter-spacing:1.681973pt;}
.ls12{letter-spacing:1.701333pt;}
.ls16{letter-spacing:1.818667pt;}
.ls1e{letter-spacing:1.877333pt;}
.ls6a{letter-spacing:1.920000pt;}
.ls53{letter-spacing:1.956254pt;}
.ls77{letter-spacing:2.333333pt;}
.ls35{letter-spacing:2.405333pt;}
.ls49{letter-spacing:3.950128pt;}
.ls5d{letter-spacing:7.386202pt;}
.ls52{letter-spacing:7.386735pt;}
.ls74{letter-spacing:8.050133pt;}
.ls50{letter-spacing:9.227282pt;}
.ls4{letter-spacing:11.120000pt;}
.ls7{letter-spacing:12.666667pt;}
.ls37{letter-spacing:14.025067pt;}
.ls3c{letter-spacing:14.850133pt;}
.ls48{letter-spacing:16.131802pt;}
.ls39{letter-spacing:17.159467pt;}
.ls58{letter-spacing:17.160000pt;}
.ls43{letter-spacing:17.985067pt;}
.ls41{letter-spacing:35.309333pt;}
.ls3e{letter-spacing:35.309867pt;}
.ls3a{letter-spacing:49.170133pt;}
.ls44{letter-spacing:49.994667pt;}
.ls3b{letter-spacing:49.995200pt;}
.ls45{letter-spacing:51.276335pt;}
.ls38{letter-spacing:52.304533pt;}
.ls3f{letter-spacing:52.305067pt;}
.ls42{letter-spacing:53.129600pt;}
.ls59{letter-spacing:53.130133pt;}
.ls54{letter-spacing:112.070240pt;}
.ls51{letter-spacing:128.900640pt;}
.ls2a{letter-spacing:859.286933pt;}
.lsb{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws85{word-spacing:-37.620267pt;}
.ws82{word-spacing:-14.666667pt;}
.ws18{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.666667pt;}
.wsbb{word-spacing:-11.400000pt;}
.wsb9{word-spacing:-10.600000pt;}
.wsbc{word-spacing:-10.160000pt;}
.wsba{word-spacing:-10.080000pt;}
.wsa8{word-spacing:-10.032000pt;}
.wsa9{word-spacing:-10.000000pt;}
.ws6c{word-spacing:-9.887067pt;}
.ws28{word-spacing:-9.533333pt;}
.ws64{word-spacing:-8.489467pt;}
.ws7{word-spacing:-8.288000pt;}
.ws25{word-spacing:-0.880000pt;}
.ws35{word-spacing:-0.821333pt;}
.ws6{word-spacing:-0.634667pt;}
.ws75{word-spacing:-0.586667pt;}
.ws7a{word-spacing:-0.058080pt;}
.ws86{word-spacing:-0.037620pt;}
.ws1{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.117333pt;}
.ws14{word-spacing:0.253333pt;}
.wsbf{word-spacing:0.266667pt;}
.ws5c{word-spacing:0.293333pt;}
.ws1c{word-spacing:0.352000pt;}
.wsc4{word-spacing:0.373333pt;}
.ws74{word-spacing:0.410667pt;}
.wsae{word-spacing:0.426667pt;}
.ws2f{word-spacing:0.469333pt;}
.wsaf{word-spacing:0.533333pt;}
.ws3f{word-spacing:0.586667pt;}
.ws24{word-spacing:0.645333pt;}
.ws90{word-spacing:0.704000pt;}
.ws53{word-spacing:0.762667pt;}
.ws55{word-spacing:0.821333pt;}
.ws3d{word-spacing:0.880000pt;}
.wsc7{word-spacing:0.906667pt;}
.ws97{word-spacing:0.938667pt;}
.ws81{word-spacing:0.997333pt;}
.ws8f{word-spacing:1.056000pt;}
.wsb1{word-spacing:1.173333pt;}
.ws39{word-spacing:1.232000pt;}
.wsa7{word-spacing:1.290667pt;}
.wsd{word-spacing:1.317333pt;}
.wsa5{word-spacing:1.349333pt;}
.ws59{word-spacing:1.408000pt;}
.wsac{word-spacing:1.440000pt;}
.ws31{word-spacing:1.466667pt;}
.ws37{word-spacing:1.584000pt;}
.wsb8{word-spacing:1.600000pt;}
.ws1d{word-spacing:1.642667pt;}
.wsc0{word-spacing:1.706667pt;}
.ws5a{word-spacing:1.760000pt;}
.ws71{word-spacing:1.818667pt;}
.ws32{word-spacing:1.877333pt;}
.wsb7{word-spacing:1.920000pt;}
.ws11{word-spacing:1.925333pt;}
.ws8b{word-spacing:1.936000pt;}
.wsb{word-spacing:1.976000pt;}
.ws60{word-spacing:1.994667pt;}
.ws1a{word-spacing:2.053333pt;}
.wsa2{word-spacing:2.080000pt;}
.ws4e{word-spacing:2.112000pt;}
.ws20{word-spacing:2.170667pt;}
.ws92{word-spacing:2.229333pt;}
.ws62{word-spacing:2.288000pt;}
.ws6a{word-spacing:2.346667pt;}
.ws17{word-spacing:2.381333pt;}
.ws44{word-spacing:2.405333pt;}
.wsa{word-spacing:2.482667pt;}
.ws2c{word-spacing:2.522667pt;}
.ws51{word-spacing:2.560000pt;}
.ws15{word-spacing:2.584000pt;}
.ws78{word-spacing:2.757333pt;}
.wsb4{word-spacing:2.773333pt;}
.ws7e{word-spacing:2.816000pt;}
.wse{word-spacing:2.837333pt;}
.ws1b{word-spacing:2.874667pt;}
.ws46{word-spacing:2.933333pt;}
.ws1f{word-spacing:2.992000pt;}
.ws36{word-spacing:3.050667pt;}
.ws98{word-spacing:3.168000pt;}
.ws49{word-spacing:3.226667pt;}
.ws13{word-spacing:3.242667pt;}
.wsa3{word-spacing:3.344000pt;}
.wsa4{word-spacing:3.402667pt;}
.wsc5{word-spacing:3.413333pt;}
.ws4b{word-spacing:3.461333pt;}
.ws5e{word-spacing:3.466667pt;}
.ws33{word-spacing:3.520000pt;}
.wsbd{word-spacing:3.626667pt;}
.ws45{word-spacing:3.696000pt;}
.ws29{word-spacing:3.813333pt;}
.wsb2{word-spacing:3.840000pt;}
.wsa6{word-spacing:3.872000pt;}
.ws16{word-spacing:3.901333pt;}
.ws23{word-spacing:3.930667pt;}
.wsc{word-spacing:3.952000pt;}
.ws26{word-spacing:3.989333pt;}
.ws12{word-spacing:4.002667pt;}
.ws5b{word-spacing:4.048000pt;}
.ws61{word-spacing:4.106667pt;}
.ws4{word-spacing:4.144000pt;}
.ws22{word-spacing:4.165333pt;}
.wsf{word-spacing:4.256000pt;}
.ws4c{word-spacing:4.282667pt;}
.wsbe{word-spacing:4.320000pt;}
.ws80{word-spacing:4.341333pt;}
.wsa0{word-spacing:4.373333pt;}
.ws27{word-spacing:4.400000pt;}
.ws3e{word-spacing:4.458667pt;}
.ws68{word-spacing:4.533333pt;}
.ws72{word-spacing:4.576000pt;}
.ws76{word-spacing:4.634667pt;}
.ws4d{word-spacing:4.693333pt;}
.ws69{word-spacing:4.752000pt;}
.ws79{word-spacing:4.810667pt;}
.ws38{word-spacing:4.869333pt;}
.ws96{word-spacing:4.928000pt;}
.ws8c{word-spacing:4.986667pt;}
.ws43{word-spacing:5.045333pt;}
.wsc1{word-spacing:5.066667pt;}
.ws73{word-spacing:5.104000pt;}
.ws52{word-spacing:5.162667pt;}
.ws40{word-spacing:5.221333pt;}
.ws47{word-spacing:5.280000pt;}
.ws5{word-spacing:5.301333pt;}
.ws3c{word-spacing:5.397333pt;}
.ws2b{word-spacing:5.456000pt;}
.ws7f{word-spacing:5.514667pt;}
.ws56{word-spacing:5.632000pt;}
.ws77{word-spacing:5.690667pt;}
.wsb3{word-spacing:5.760000pt;}
.ws3a{word-spacing:5.808000pt;}
.wsad{word-spacing:5.866667pt;}
.ws41{word-spacing:5.925333pt;}
.wsc3{word-spacing:5.973333pt;}
.ws1e{word-spacing:5.984000pt;}
.wsb5{word-spacing:6.026667pt;}
.ws5f{word-spacing:6.042667pt;}
.ws21{word-spacing:6.101333pt;}
.ws8{word-spacing:6.130667pt;}
.wsb6{word-spacing:6.133333pt;}
.ws67{word-spacing:6.160000pt;}
.ws2a{word-spacing:6.218667pt;}
.ws30{word-spacing:6.277333pt;}
.ws10{word-spacing:6.282667pt;}
.ws9{word-spacing:6.333333pt;}
.wsc2{word-spacing:6.400000pt;}
.ws2d{word-spacing:6.453333pt;}
.ws3b{word-spacing:6.512000pt;}
.ws91{word-spacing:6.570667pt;}
.wsab{word-spacing:6.613333pt;}
.ws50{word-spacing:6.666667pt;}
.ws58{word-spacing:6.688000pt;}
.ws8e{word-spacing:6.746667pt;}
.ws70{word-spacing:6.805333pt;}
.ws34{word-spacing:6.922667pt;}
.ws2e{word-spacing:6.981333pt;}
.ws4a{word-spacing:7.040000pt;}
.wsb0{word-spacing:7.093333pt;}
.ws42{word-spacing:7.098667pt;}
.ws57{word-spacing:7.157333pt;}
.ws48{word-spacing:7.274667pt;}
.ws19{word-spacing:7.333333pt;}
.ws6f{word-spacing:8.096000pt;}
.ws87{word-spacing:8.201218pt;}
.ws3{word-spacing:9.472000pt;}
.ws83{word-spacing:9.641280pt;}
.ws2{word-spacing:11.861333pt;}
.wsa1{word-spacing:12.000000pt;}
.wsaa{word-spacing:13.333333pt;}
.ws84{word-spacing:23.666347pt;}
.ws99{word-spacing:23.666880pt;}
.wsc6{word-spacing:26.293333pt;}
.ws88{word-spacing:52.519583pt;}
.ws9a{word-spacing:52.525008pt;}
.ws6b{word-spacing:60.142720pt;}
.ws6d{word-spacing:65.887412pt;}
.ws63{word-spacing:71.822101pt;}
.ws65{word-spacing:77.559767pt;}
.ws9d{word-spacing:82.325333pt;}
.ws7b{word-spacing:107.593781pt;}
.ws95{word-spacing:111.388728pt;}
.ws7c{word-spacing:113.145648pt;}
.ws7d{word-spacing:114.972845pt;}
.ws94{word-spacing:115.183675pt;}
.ws93{word-spacing:116.940595pt;}
.ws9e{word-spacing:174.384000pt;}
.ws9f{word-spacing:182.352000pt;}
.ws6e{word-spacing:232.662037pt;}
.ws66{word-spacing:368.608853pt;}
.ws4f{word-spacing:390.672000pt;}
.ws89{word-spacing:570.831149pt;}
.ws9b{word-spacing:592.231306pt;}
.ws8a{word-spacing:694.805232pt;}
.ws54{word-spacing:710.484480pt;}
.ws9c{word-spacing:718.841640pt;}
.ws5d{word-spacing:757.121728pt;}
._2b{margin-left:-23.210667pt;}
._9{margin-left:-22.293333pt;}
._16{margin-left:-20.298667pt;}
._2a{margin-left:-19.360000pt;}
._7{margin-left:-15.250947pt;}
._4{margin-left:-12.992000pt;}
._0{margin-left:-11.861333pt;}
._17{margin-left:-4.243413pt;}
._10{margin-left:-2.691379pt;}
._3{margin-left:-1.605333pt;}
._8{width:1.013614pt;}
._19{width:2.395901pt;}
._18{width:3.378358pt;}
._2{width:4.965333pt;}
._1{width:6.234667pt;}
._2d{width:7.203200pt;}
._6{width:8.288000pt;}
._5{width:10.378667pt;}
._2c{width:12.984000pt;}
._2e{width:26.308267pt;}
._d{width:33.120000pt;}
._12{width:35.466667pt;}
._f{width:36.533333pt;}
._24{width:37.920000pt;}
._b{width:40.000000pt;}
._e{width:44.000000pt;}
._1b{width:68.362667pt;}
._1c{width:70.810667pt;}
._13{width:78.404237pt;}
._15{width:85.701094pt;}
._1f{width:143.376000pt;}
._28{width:164.688000pt;}
._14{width:170.886995pt;}
._11{width:179.410018pt;}
._20{width:186.384000pt;}
._1e{width:194.352000pt;}
._23{width:204.384000pt;}
._26{width:206.352000pt;}
._1d{width:218.352000pt;}
._21{width:219.312000pt;}
._29{width:232.272000pt;}
._25{width:275.376000pt;}
._27{width:296.640000pt;}
._1a{width:314.205333pt;}
._22{width:324.912000pt;}
._c{width:486.720000pt;}
._a{width:1028.947200pt;}
.fsf{font-size:0.533333pt;}
.fs3{font-size:24.000000pt;}
.fs11{font-size:27.968000pt;}
.fs1f{font-size:29.466667pt;}
.fs12{font-size:31.949333pt;}
.fs0{font-size:32.000000pt;}
.fsb{font-size:32.933333pt;}
.fs14{font-size:33.957867pt;}
.fs16{font-size:36.450133pt;}
.fs5{font-size:37.333333pt;}
.fs13{font-size:37.380267pt;}
.fs1b{font-size:37.620267pt;}
.fse{font-size:38.133333pt;}
.fs18{font-size:39.548267pt;}
.fs15{font-size:39.730667pt;}
.fs6{font-size:40.000000pt;}
.fs17{font-size:42.646400pt;}
.fs4{font-size:42.666667pt;}
.fs10{font-size:43.776000pt;}
.fsc{font-size:45.333333pt;}
.fs19{font-size:46.271467pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs1a{font-size:58.080000pt;}
.fsd{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1c{font-size:70.276800pt;}
.fs7{font-size:80.000000pt;}
.fs1d{font-size:80.150400pt;}
.fs1e{font-size:90.024000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:1.805867pt;}
.y173{bottom:2.068667pt;}
.y166{bottom:3.254000pt;}
.y1f1{bottom:3.423733pt;}
.y238{bottom:3.423867pt;}
.y1ae{bottom:4.330667pt;}
.y1b9{bottom:4.331067pt;}
.y224{bottom:4.331200pt;}
.y1d4{bottom:4.331467pt;}
.y21a{bottom:4.331600pt;}
.y20e{bottom:4.332000pt;}
.y1ac{bottom:24.584533pt;}
.y1b7{bottom:24.584933pt;}
.y222{bottom:24.585067pt;}
.y1d2{bottom:24.585200pt;}
.y1bf{bottom:24.585333pt;}
.y218{bottom:24.585467pt;}
.y20c{bottom:24.585867pt;}
.y1b1{bottom:25.120800pt;}
.y211{bottom:25.122133pt;}
.y1cb{bottom:25.162000pt;}
.y206{bottom:25.162400pt;}
.y1ef{bottom:27.225067pt;}
.y236{bottom:27.225200pt;}
.y1f2{bottom:36.049910pt;}
.y23a{bottom:36.050043pt;}
.y143{bottom:36.528933pt;}
.y138{bottom:73.938405pt;}
.y137{bottom:75.527067pt;}
.y1{bottom:75.590533pt;}
.y36{bottom:75.590667pt;}
.yf5{bottom:82.264133pt;}
.y145{bottom:88.122933pt;}
.y164{bottom:89.156400pt;}
.y172{bottom:96.485200pt;}
.y10{bottom:105.825467pt;}
.y1c4{bottom:106.251067pt;}
.y1cd{bottom:106.251467pt;}
.y1c6{bottom:106.252000pt;}
.y278{bottom:106.342267pt;}
.yc2{bottom:106.597867pt;}
.y25c{bottom:107.109333pt;}
.y151{bottom:107.395333pt;}
.y129{bottom:107.447867pt;}
.y61{bottom:107.479467pt;}
.yb3{bottom:107.560267pt;}
.y17d{bottom:107.574933pt;}
.y1a1{bottom:107.588000pt;}
.y10d{bottom:107.659867pt;}
.y232{bottom:107.719067pt;}
.y8b{bottom:107.741867pt;}
.y1ca{bottom:110.582667pt;}
.y1c8{bottom:113.470133pt;}
.y1c7{bottom:113.470533pt;}
.yf3{bottom:116.375467pt;}
.yf{bottom:116.493467pt;}
.y10c{bottom:121.873200pt;}
.y277{bottom:121.976933pt;}
.yc1{bottom:122.232533pt;}
.y1ce{bottom:122.251467pt;}
.y1c9{bottom:122.710133pt;}
.y25b{bottom:122.744000pt;}
.y150{bottom:123.030000pt;}
.y128{bottom:123.082533pt;}
.y60{bottom:123.114133pt;}
.yb2{bottom:123.194933pt;}
.y17c{bottom:123.209600pt;}
.y1a0{bottom:123.222667pt;}
.y231{bottom:123.353733pt;}
.y8a{bottom:123.376533pt;}
.y1c5{bottom:123.411467pt;}
.y2b2{bottom:124.407867pt;}
.yd6{bottom:128.414800pt;}
.y1cc{bottom:128.526533pt;}
.yf2{bottom:132.010133pt;}
.ye{bottom:132.828800pt;}
.y10b{bottom:136.086533pt;}
.yc0{bottom:137.867200pt;}
.y25a{bottom:138.385333pt;}
.y14f{bottom:138.664667pt;}
.y127{bottom:138.717200pt;}
.y5f{bottom:138.748800pt;}
.y291{bottom:138.790400pt;}
.yb1{bottom:138.829600pt;}
.y17b{bottom:138.844267pt;}
.y19f{bottom:138.857333pt;}
.y230{bottom:138.988400pt;}
.y2dd{bottom:139.372133pt;}
.y2b1{bottom:140.247867pt;}
.y276{bottom:145.443600pt;}
.yf1{bottom:147.644800pt;}
.y89{bottom:148.089867pt;}
.yd{bottom:149.162133pt;}
.ybf{bottom:153.501867pt;}
.y259{bottom:154.020000pt;}
.y10a{bottom:154.076800pt;}
.y126{bottom:154.351867pt;}
.y5e{bottom:154.383467pt;}
.y290{bottom:154.425067pt;}
.yb0{bottom:154.464267pt;}
.y17a{bottom:154.478933pt;}
.y22f{bottom:154.623067pt;}
.y2db{bottom:155.200133pt;}
.y2dc{bottom:155.212133pt;}
.y2b0{bottom:156.076000pt;}
.y1bd{bottom:158.530667pt;}
.y1c2{bottom:158.531067pt;}
.yf7{bottom:159.716667pt;}
.y275{bottom:161.078267pt;}
.y14e{bottom:162.131333pt;}
.y19e{bottom:162.324000pt;}
.yf0{bottom:163.279467pt;}
.yc{bottom:163.610133pt;}
.y88{bottom:163.724533pt;}
.y1c0{bottom:165.750133pt;}
.ybe{bottom:169.136533pt;}
.yd4{bottom:169.334933pt;}
.y109{bottom:169.718000pt;}
.y125{bottom:169.986533pt;}
.y5d{bottom:170.018133pt;}
.y28f{bottom:170.059733pt;}
.yaf{bottom:170.098933pt;}
.y179{bottom:170.113600pt;}
.y22e{bottom:170.257733pt;}
.y2da{bottom:171.040133pt;}
.y2af{bottom:171.916000pt;}
.yb{bottom:173.550133pt;}
.y1c1{bottom:174.989733pt;}
.y1be{bottom:175.691067pt;}
.y1c3{bottom:175.864400pt;}
.y274{bottom:176.712933pt;}
.y12f{bottom:177.750800pt;}
.y19d{bottom:177.958667pt;}
.yef{bottom:178.914133pt;}
.y87{bottom:179.359200pt;}
.y140{bottom:183.266667pt;}
.ya{bottom:183.490133pt;}
.yd3{bottom:184.969600pt;}
.y5c{bottom:185.652800pt;}
.y28e{bottom:185.694400pt;}
.y178{bottom:185.748267pt;}
.y2d9{bottom:186.880133pt;}
.y2ae{bottom:187.756000pt;}
.yff{bottom:189.986800pt;}
.y273{bottom:192.347600pt;}
.y124{bottom:193.453200pt;}
.yae{bottom:193.565600pt;}
.y19c{bottom:193.593333pt;}
.y22d{bottom:193.724400pt;}
.yee{bottom:194.548800pt;}
.y86{bottom:194.993867pt;}
.y9{bottom:199.095467pt;}
.yd2{bottom:200.604267pt;}
.y14d{bottom:201.232667pt;}
.y5b{bottom:201.287467pt;}
.y28d{bottom:201.329067pt;}
.y2d8{bottom:202.708133pt;}
.y2ad{bottom:203.584000pt;}
.y15a{bottom:207.584267pt;}
.y258{bottom:207.649200pt;}
.y272{bottom:207.982267pt;}
.y8{bottom:209.035467pt;}
.yad{bottom:209.200267pt;}
.y19b{bottom:209.228000pt;}
.y22c{bottom:209.359067pt;}
.y1b4{bottom:209.490133pt;}
.y1b6{bottom:209.490667pt;}
.y85{bottom:210.628533pt;}
.ybd{bottom:213.385200pt;}
.yd1{bottom:216.238933pt;}
.y1ba{bottom:216.709333pt;}
.y1b8{bottom:216.709733pt;}
.y16e{bottom:216.838667pt;}
.y14c{bottom:216.867333pt;}
.y28c{bottom:216.963733pt;}
.yed{bottom:218.015467pt;}
.y2d7{bottom:218.548133pt;}
.y2ac{bottom:219.424000pt;}
.y271{bottom:223.616933pt;}
.y5a{bottom:224.754133pt;}
.yac{bottom:224.834933pt;}
.y19a{bottom:224.862667pt;}
.y22b{bottom:225.001600pt;}
.y1bc{bottom:225.490667pt;}
.y1bb{bottom:225.949333pt;}
.y84{bottom:226.263200pt;}
.y1b5{bottom:226.650667pt;}
.y257{bottom:229.573200pt;}
.y14b{bottom:232.502000pt;}
.y123{bottom:232.554533pt;}
.y28b{bottom:232.598400pt;}
.y177{bottom:232.660933pt;}
.yec{bottom:233.650133pt;}
.y2d6{bottom:234.388133pt;}
.y2ab{bottom:235.264000pt;}
.y270{bottom:239.251600pt;}
.yd0{bottom:239.705600pt;}
.y59{bottom:240.388800pt;}
.yab{bottom:240.469600pt;}
.y199{bottom:240.497333pt;}
.y35{bottom:241.333867pt;}
.y256{bottom:243.781200pt;}
.y176{bottom:246.874267pt;}
.y1fb{bottom:247.628400pt;}
.y122{bottom:248.189200pt;}
.y28a{bottom:248.233067pt;}
.y22a{bottom:248.468267pt;}
.yeb{bottom:249.284800pt;}
.yd8{bottom:249.644800pt;}
.y2d5{bottom:250.220133pt;}
.y83{bottom:250.976533pt;}
.y2aa{bottom:251.096000pt;}
.y58{bottom:256.023467pt;}
.yaa{bottom:256.104267pt;}
.y198{bottom:256.132000pt;}
.y1a9{bottom:260.450133pt;}
.y1ab{bottom:260.450667pt;}
.y175{bottom:261.087600pt;}
.y34{bottom:262.651867pt;}
.y26f{bottom:262.718267pt;}
.y1fa{bottom:263.263067pt;}
.y121{bottom:263.823867pt;}
.y289{bottom:263.867733pt;}
.y229{bottom:264.102933pt;}
.yea{bottom:264.919467pt;}
.y255{bottom:265.705200pt;}
.y2d4{bottom:266.060133pt;}
.y82{bottom:266.611200pt;}
.y2a9{bottom:266.936000pt;}
.y1af{bottom:267.668933pt;}
.y1ad{bottom:267.669333pt;}
.y57{bottom:271.658133pt;}
.ya9{bottom:271.738933pt;}
.y197{bottom:271.766667pt;}
.y1b3{bottom:275.116800pt;}
.y174{bottom:275.300933pt;}
.y33{bottom:276.863867pt;}
.y1b0{bottom:276.908933pt;}
.y1aa{bottom:277.610133pt;}
.y26e{bottom:278.352933pt;}
.ycf{bottom:278.806933pt;}
.y1f9{bottom:278.897733pt;}
.y120{bottom:279.458533pt;}
.y288{bottom:279.502400pt;}
.y228{bottom:279.737600pt;}
.y254{bottom:279.913200pt;}
.ye9{bottom:280.554133pt;}
.y2d3{bottom:281.884133pt;}
.y81{bottom:282.259200pt;}
.y1b2{bottom:282.684000pt;}
.y2a8{bottom:282.764000pt;}
.y14a{bottom:283.923600pt;}
.y56{bottom:287.292800pt;}
.ya8{bottom:287.373600pt;}
.y196{bottom:287.401333pt;}
.y30{bottom:291.074400pt;}
.y32{bottom:291.075867pt;}
.y26d{bottom:293.994267pt;}
.yce{bottom:294.448267pt;}
.y1f8{bottom:294.532400pt;}
.y31{bottom:294.875867pt;}
.y11f{bottom:295.093200pt;}
.ye8{bottom:296.188800pt;}
.y16d{bottom:296.617333pt;}
.y2d2{bottom:297.724133pt;}
.y80{bottom:297.893867pt;}
.y149{bottom:298.136933pt;}
.y2a7{bottom:298.604000pt;}
.y253{bottom:301.837200pt;}
.y287{bottom:302.969067pt;}
.ya7{bottom:303.008267pt;}
.y195{bottom:303.036000pt;}
.y21f{bottom:303.197733pt;}
.y221{bottom:303.198667pt;}
.y2d{bottom:305.274800pt;}
.y2f{bottom:305.286400pt;}
.y2e{bottom:309.086400pt;}
.y26c{bottom:309.635600pt;}
.ycd{bottom:310.082933pt;}
.y1f7{bottom:310.167067pt;}
.y225{bottom:310.417467pt;}
.y223{bottom:310.417867pt;}
.y11e{bottom:310.727867pt;}
.y55{bottom:310.759467pt;}
.ye7{bottom:311.823467pt;}
.y148{bottom:312.350267pt;}
.y2d1{bottom:313.564133pt;}
.y7f{bottom:313.684000pt;}
.y2a6{bottom:314.444000pt;}
.y252{bottom:316.045200pt;}
.y227{bottom:317.865333pt;}
.y286{bottom:318.603733pt;}
.ya6{bottom:318.642933pt;}
.y194{bottom:318.670667pt;}
.y2c{bottom:319.486800pt;}
.y226{bottom:319.657467pt;}
.y1a8{bottom:319.696533pt;}
.y220{bottom:320.358800pt;}
.y171{bottom:324.150267pt;}
.y26b{bottom:325.276933pt;}
.y11d{bottom:326.362533pt;}
.y54{bottom:326.394133pt;}
.y147{bottom:326.563600pt;}
.ye6{bottom:327.458133pt;}
.y7e{bottom:329.318667pt;}
.y2d0{bottom:329.404133pt;}
.y251{bottom:330.253200pt;}
.y2a5{bottom:330.272000pt;}
.y2b{bottom:333.698800pt;}
.y285{bottom:334.238400pt;}
.y1a7{bottom:335.331200pt;}
.y170{bottom:338.070313pt;}
.y26a{bottom:340.911600pt;}
.y1ee{bottom:341.448000pt;}
.y1ec{bottom:341.448133pt;}
.y53{bottom:342.028800pt;}
.y11c{bottom:342.108000pt;}
.ya5{bottom:342.109600pt;}
.y193{bottom:342.137333pt;}
.y16f{bottom:343.023733pt;}
.ye5{bottom:343.092800pt;}
.y7d{bottom:344.953333pt;}
.y2cf{bottom:345.228133pt;}
.y2a4{bottom:346.112000pt;}
.y13f{bottom:347.880000pt;}
.y2a{bottom:347.910800pt;}
.y167{bottom:349.408933pt;}
.y284{bottom:349.873067pt;}
.y1a6{bottom:350.965867pt;}
.y1f0{bottom:351.306800pt;}
.y24f{bottom:352.179867pt;}
.y215{bottom:353.023467pt;}
.y217{bottom:353.024000pt;}
.y21d{bottom:353.024400pt;}
.y250{bottom:355.579867pt;}
.ycc{bottom:356.998267pt;}
.y52{bottom:357.663467pt;}
.y11b{bottom:357.742667pt;}
.ya4{bottom:357.744267pt;}
.y192{bottom:357.772000pt;}
.y1f4{bottom:358.236800pt;}
.ye4{bottom:358.727467pt;}
.y1f3{bottom:358.814267pt;}
.y21b{bottom:360.243067pt;}
.y219{bottom:360.243467pt;}
.y7c{bottom:360.588000pt;}
.y2ce{bottom:361.068133pt;}
.y1ed{bottom:361.248133pt;}
.y1f6{bottom:361.448133pt;}
.y2a3{bottom:361.952000pt;}
.y29{bottom:362.122800pt;}
.y283{bottom:365.507733pt;}
.y1a5{bottom:366.600533pt;}
.y21e{bottom:369.024400pt;}
.y21c{bottom:369.483200pt;}
.y216{bottom:370.184400pt;}
.y1f5{bottom:370.570533pt;}
.ycb{bottom:371.211600pt;}
.y144{bottom:372.463067pt;}
.y51{bottom:373.298133pt;}
.y11a{bottom:373.377333pt;}
.ya3{bottom:373.378933pt;}
.y191{bottom:373.406667pt;}
.ye3{bottom:374.362133pt;}
.y28{bottom:376.334800pt;}
.y168{bottom:376.756560pt;}
.y2cd{bottom:376.908133pt;}
.y2a2{bottom:377.780000pt;}
.y24e{bottom:380.324933pt;}
.y282{bottom:381.142400pt;}
.y142{bottom:384.408998pt;}
.y7b{bottom:385.301333pt;}
.yca{bottom:385.424933pt;}
.y141{bottom:388.679200pt;}
.y50{bottom:388.932800pt;}
.ya2{bottom:389.013600pt;}
.y190{bottom:389.041333pt;}
.y27{bottom:390.546800pt;}
.y269{bottom:392.648400pt;}
.y2cc{bottom:392.748133pt;}
.y2a1{bottom:393.620000pt;}
.y13a{bottom:394.151333pt;}
.y24d{bottom:394.538267pt;}
.y281{bottom:396.777067pt;}
.y119{bottom:396.844000pt;}
.ye2{bottom:397.828800pt;}
.y7a{bottom:400.936000pt;}
.y209{bottom:402.849200pt;}
.y20b{bottom:402.849333pt;}
.y213{bottom:402.850133pt;}
.y169{bottom:404.084412pt;}
.y4f{bottom:404.567467pt;}
.ya1{bottom:404.648267pt;}
.y18f{bottom:404.676000pt;}
.y26{bottom:404.754400pt;}
.y1eb{bottom:406.004667pt;}
.yc9{bottom:406.741067pt;}
.y2cb{bottom:408.580133pt;}
.y2a0{bottom:409.460000pt;}
.y20f{bottom:410.068800pt;}
.y20d{bottom:410.069200pt;}
.y280{bottom:412.411733pt;}
.y118{bottom:412.478667pt;}
.y1a4{bottom:413.521200pt;}
.y268{bottom:414.572400pt;}
.y79{bottom:416.570667pt;}
.y214{bottom:418.850133pt;}
.y210{bottom:419.308933pt;}
.y20a{bottom:420.010133pt;}
.ya0{bottom:420.282933pt;}
.y4e{bottom:420.296000pt;}
.y18e{bottom:420.310667pt;}
.y13b{bottom:421.546842pt;}
.y1ea{bottom:421.639333pt;}
.yc8{bottom:422.382400pt;}
.y2ca{bottom:424.420133pt;}
.y212{bottom:425.084000pt;}
.y29f{bottom:425.288000pt;}
.y27f{bottom:428.046400pt;}
.y117{bottom:428.113333pt;}
.y108{bottom:430.180800pt;}
.y16a{bottom:431.422151pt;}
.y78{bottom:432.205333pt;}
.y25{bottom:433.178400pt;}
.y9f{bottom:435.917600pt;}
.y4d{bottom:435.930667pt;}
.y18d{bottom:435.945333pt;}
.y267{bottom:436.496400pt;}
.y2c9{bottom:440.248133pt;}
.y29e{bottom:441.128000pt;}
.y24c{bottom:442.808933pt;}
.y27e{bottom:443.681067pt;}
.y116{bottom:443.748000pt;}
.y1e9{bottom:445.106000pt;}
.y107{bottom:445.822133pt;}
.y24{bottom:447.390400pt;}
.y77{bottom:447.840000pt;}
.y13c{bottom:448.950841pt;}
.y266{bottom:450.704400pt;}
.y9e{bottom:451.552267pt;}
.y4c{bottom:451.565333pt;}
.y18c{bottom:451.580000pt;}
.y200{bottom:453.995867pt;}
.y202{bottom:453.996000pt;}
.y2c8{bottom:456.088133pt;}
.y29d{bottom:456.968000pt;}
.y24b{bottom:458.443600pt;}
.y16b{bottom:458.769778pt;}
.y27d{bottom:459.315733pt;}
.y115{bottom:459.382667pt;}
.ye1{bottom:460.374267pt;}
.y1e8{bottom:460.740667pt;}
.y204{bottom:461.214533pt;}
.y203{bottom:461.214933pt;}
.y9d{bottom:467.186933pt;}
.y4b{bottom:467.200000pt;}
.y18b{bottom:467.214667pt;}
.y23{bottom:468.708400pt;}
.y205{bottom:470.454533pt;}
.y201{bottom:471.155867pt;}
.y208{bottom:471.329200pt;}
.y2c7{bottom:471.928133pt;}
.y76{bottom:472.553333pt;}
.y265{bottom:472.628400pt;}
.y29c{bottom:472.796000pt;}
.ye0{bottom:474.587600pt;}
.y27c{bottom:474.950400pt;}
.y114{bottom:475.017333pt;}
.y207{bottom:476.270933pt;}
.y13d{bottom:476.346350pt;}
.y1e7{bottom:476.375333pt;}
.y24a{bottom:481.910267pt;}
.y22{bottom:482.917733pt;}
.y16c{bottom:486.107517pt;}
.y264{bottom:486.836400pt;}
.y2c6{bottom:487.760133pt;}
.y75{bottom:488.188000pt;}
.y29b{bottom:488.636000pt;}
.y27b{bottom:490.585067pt;}
.y113{bottom:490.652000pt;}
.y9c{bottom:490.653600pt;}
.y4a{bottom:490.666667pt;}
.y18a{bottom:490.681333pt;}
.y1e6{bottom:492.010000pt;}
.yd5{bottom:492.473333pt;}
.y21{bottom:497.129733pt;}
.y2c5{bottom:503.600133pt;}
.y13e{bottom:503.750348pt;}
.y74{bottom:503.822667pt;}
.y29a{bottom:504.476000pt;}
.y9b{bottom:506.288267pt;}
.y49{bottom:506.301333pt;}
.y189{bottom:506.316000pt;}
.y1e5{bottom:507.644667pt;}
.y263{bottom:508.760400pt;}
.y1e{bottom:511.332533pt;}
.y20{bottom:511.341733pt;}
.y1ff{bottom:513.228933pt;}
.y27a{bottom:514.058400pt;}
.y112{bottom:514.118667pt;}
.y1f{bottom:515.141733pt;}
.y2c4{bottom:519.428133pt;}
.y73{bottom:519.457333pt;}
.y299{bottom:520.304000pt;}
.y249{bottom:521.011600pt;}
.y9a{bottom:521.922933pt;}
.y48{bottom:521.936000pt;}
.y188{bottom:521.950667pt;}
.y1e4{bottom:523.279333pt;}
.y1d{bottom:525.544533pt;}
.y1fe{bottom:528.870267pt;}
.y111{bottom:529.753333pt;}
.y261{bottom:530.687067pt;}
.y262{bottom:534.086933pt;}
.y72{bottom:535.092000pt;}
.y2c3{bottom:535.268133pt;}
.y298{bottom:536.144000pt;}
.y248{bottom:536.646267pt;}
.y99{bottom:537.557600pt;}
.y47{bottom:537.570667pt;}
.y187{bottom:537.585333pt;}
.y159{bottom:539.316000pt;}
.y1c{bottom:539.756533pt;}
.y1fd{bottom:544.504933pt;}
.y110{bottom:545.388000pt;}
.y1e3{bottom:546.746000pt;}
.y71{bottom:550.726667pt;}
.y2c2{bottom:551.108133pt;}
.y297{bottom:551.984000pt;}
.y247{bottom:552.280933pt;}
.y98{bottom:553.192267pt;}
.y186{bottom:553.220000pt;}
.y1b{bottom:553.968533pt;}
.y165{bottom:554.970133pt;}
.y260{bottom:558.832000pt;}
.ybc{bottom:561.022667pt;}
.y46{bottom:561.037333pt;}
.y1e2{bottom:562.380667pt;}
.y70{bottom:566.361333pt;}
.y2c1{bottom:566.936133pt;}
.y296{bottom:567.824000pt;}
.y246{bottom:567.915600pt;}
.y12e{bottom:568.158667pt;}
.y1a{bottom:568.180533pt;}
.y97{bottom:568.826933pt;}
.y185{bottom:568.854667pt;}
.y162{bottom:571.959333pt;}
.y139{bottom:572.237467pt;}
.y25f{bottom:573.045333pt;}
.ybb{bottom:576.657333pt;}
.y45{bottom:576.672000pt;}
.y1e1{bottom:578.015333pt;}
.y106{bottom:581.560533pt;}
.y19{bottom:582.392533pt;}
.y2c0{bottom:582.776133pt;}
.y245{bottom:583.550267pt;}
.y295{bottom:583.648000pt;}
.y96{bottom:584.461600pt;}
.y1a3{bottom:584.489333pt;}
.y161{bottom:584.783821pt;}
.y160{bottom:589.349200pt;}
.y6f{bottom:591.074667pt;}
.y1fc{bottom:591.425600pt;}
.yba{bottom:592.292000pt;}
.y44{bottom:592.306667pt;}
.y136{bottom:592.559467pt;}
.y1e0{bottom:593.650000pt;}
.y15b{bottom:595.231467pt;}
.y152{bottom:595.240667pt;}
.y18{bottom:596.604533pt;}
.y2bf{bottom:598.616133pt;}
.y244{bottom:599.184933pt;}
.yf4{bottom:599.433333pt;}
.y294{bottom:599.488000pt;}
.y95{bottom:600.096267pt;}
.y10f{bottom:600.124000pt;}
.y184{bottom:600.138667pt;}
.y135{bottom:603.816054pt;}
.ydf{bottom:604.200933pt;}
.y6e{bottom:606.709333pt;}
.y134{bottom:607.801733pt;}
.y279{bottom:607.926667pt;}
.y43{bottom:607.941333pt;}
.y17{bottom:610.816533pt;}
.y12a{bottom:612.959067pt;}
.y2be{bottom:614.456133pt;}
.y293{bottom:615.328000pt;}
.yb9{bottom:615.758667pt;}
.y153{bottom:616.901158pt;}
.y1df{bottom:617.116667pt;}
.yd7{bottom:620.888133pt;}
.y6d{bottom:622.344000pt;}
.y243{bottom:622.651600pt;}
.y25e{bottom:623.561333pt;}
.y94{bottom:623.562933pt;}
.y42{bottom:623.576000pt;}
.yde{bottom:627.667600pt;}
.y15c{bottom:628.938727pt;}
.y2bd{bottom:630.280133pt;}
.y163{bottom:630.284933pt;}
.y292{bottom:631.168000pt;}
.yb8{bottom:631.393333pt;}
.y1de{bottom:632.752533pt;}
.y105{bottom:634.209200pt;}
.y6c{bottom:637.978667pt;}
.y242{bottom:638.286267pt;}
.y154{bottom:638.561650pt;}
.y25d{bottom:639.196000pt;}
.y93{bottom:639.197600pt;}
.y41{bottom:639.210667pt;}
.y130{bottom:642.504213pt;}
.y2bc{bottom:646.120133pt;}
.y12b{bottom:646.202348pt;}
.yb7{bottom:647.028000pt;}
.y183{bottom:647.057333pt;}
.ydd{bottom:651.134267pt;}
.y6b{bottom:653.613333pt;}
.y241{bottom:653.920933pt;}
.y92{bottom:654.832267pt;}
.y1dd{bottom:656.219200pt;}
.y104{bottom:657.675867pt;}
.y155{bottom:660.231254pt;}
.y2bb{bottom:661.960133pt;}
.y15d{bottom:662.645988pt;}
.yb6{bottom:662.662667pt;}
.y40{bottom:662.677333pt;}
.y182{bottom:662.692000pt;}
.y16{bottom:666.602000pt;}
.y6a{bottom:669.248000pt;}
.y240{bottom:669.555600pt;}
.y91{bottom:670.466933pt;}
.y1dc{bottom:671.860400pt;}
.y131{bottom:672.049359pt;}
.ydc{bottom:674.600933pt;}
.y2ba{bottom:677.784267pt;}
.yb5{bottom:678.297333pt;}
.y3f{bottom:678.312000pt;}
.y181{bottom:678.326667pt;}
.y12c{bottom:679.437642pt;}
.y103{bottom:681.142533pt;}
.yf6{bottom:681.697467pt;}
.y156{bottom:681.900859pt;}
.y69{bottom:684.882667pt;}
.y90{bottom:686.108133pt;}
.y1a2{bottom:686.129333pt;}
.y1db{bottom:687.501867pt;}
.y15{bottom:688.632533pt;}
.y2b9{bottom:693.624267pt;}
.yb4{bottom:693.932000pt;}
.y3e{bottom:693.946667pt;}
.y180{bottom:693.961333pt;}
.y15e{bottom:696.353249pt;}
.y68{bottom:700.517333pt;}
.y132{bottom:701.586517pt;}
.y8f{bottom:701.757333pt;}
.yc7{bottom:701.764000pt;}
.y1da{bottom:703.143200pt;}
.y157{bottom:703.570463pt;}
.y23f{bottom:704.359600pt;}
.y102{bottom:704.609200pt;}
.y2b8{bottom:709.464267pt;}
.y3d{bottom:709.581333pt;}
.y17f{bottom:709.596000pt;}
.y12d{bottom:712.672936pt;}
.y67{bottom:716.152000pt;}
.y8e{bottom:717.392000pt;}
.yc6{bottom:717.398667pt;}
.y1d9{bottom:718.784400pt;}
.y14{bottom:719.391867pt;}
.yfb{bottom:720.603467pt;}
.y3c{bottom:725.216000pt;}
.y17e{bottom:725.230667pt;}
.y158{bottom:725.230955pt;}
.y2b7{bottom:725.304267pt;}
.y101{bottom:728.075867pt;}
.y15f{bottom:730.060510pt;}
.y133{bottom:731.131663pt;}
.y66{bottom:731.786667pt;}
.y8d{bottom:733.026667pt;}
.yc5{bottom:733.033333pt;}
.y1d8{bottom:734.419067pt;}
.y13{bottom:738.591867pt;}
.y3b{bottom:740.850667pt;}
.y10e{bottom:740.865333pt;}
.y2b6{bottom:741.132133pt;}
.yc4{bottom:748.668000pt;}
.yfe{bottom:749.676800pt;}
.y233{bottom:751.280267pt;}
.y100{bottom:751.542533pt;}
.y235{bottom:754.114667pt;}
.y3a{bottom:756.485333pt;}
.y8c{bottom:756.493333pt;}
.y65{bottom:756.500000pt;}
.y2b5{bottom:756.972133pt;}
.y239{bottom:757.538533pt;}
.y1d1{bottom:757.880000pt;}
.y1cf{bottom:757.880267pt;}
.y12{bottom:761.578133pt;}
.y237{bottom:763.973600pt;}
.yc3{bottom:764.302667pt;}
.y1d5{bottom:765.098933pt;}
.y1d3{bottom:765.099333pt;}
.yfd{bottom:765.500133pt;}
.y23c{bottom:770.903600pt;}
.y23b{bottom:771.481067pt;}
.yd9{bottom:771.638133pt;}
.y64{bottom:772.134667pt;}
.y23e{bottom:772.613600pt;}
.y2b4{bottom:772.812133pt;}
.y1d7{bottom:773.880267pt;}
.y234{bottom:773.914933pt;}
.y1d6{bottom:774.338933pt;}
.y1d0{bottom:775.040267pt;}
.yda{bottom:777.611867pt;}
.yf8{bottom:778.009867pt;}
.yfc{bottom:779.850000pt;}
.yf9{bottom:781.826533pt;}
.ydb{bottom:782.297467pt;}
.y23d{bottom:783.237333pt;}
.y11{bottom:784.238133pt;}
.yfa{bottom:784.820133pt;}
.y39{bottom:787.769333pt;}
.y2b3{bottom:788.652133pt;}
.y5{bottom:818.104133pt;}
.y63{bottom:828.342667pt;}
.y38{bottom:828.342800pt;}
.y4{bottom:834.688667pt;}
.y3{bottom:840.424667pt;}
.y62{bottom:843.977333pt;}
.y37{bottom:843.977467pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458800pt;}
.y6{bottom:863.458800pt;}
.h4{height:17.568000pt;}
.h1c{height:20.375125pt;}
.h1d{height:22.199171pt;}
.h20{height:23.594748pt;}
.h1b{height:24.540281pt;}
.h23{height:25.326435pt;}
.h2c{height:25.845564pt;}
.h3a{height:25.855273pt;}
.h1f{height:25.972715pt;}
.h26{height:27.479093pt;}
.h22{height:27.605829pt;}
.h38{height:28.711170pt;}
.he{height:28.897070pt;}
.h12{height:28.977474pt;}
.h25{height:29.631752pt;}
.h5{height:31.701333pt;}
.h19{height:31.891500pt;}
.h28{height:32.150536pt;}
.h30{height:33.340227pt;}
.h6{height:34.122667pt;}
.h7{height:36.560000pt;}
.h2{height:36.640625pt;}
.h18{height:38.410875pt;}
.h2f{height:39.600000pt;}
.h3d{height:39.760417pt;}
.h39{height:39.777344pt;}
.h2b{height:39.901641pt;}
.h13{height:40.175781pt;}
.h2a{height:40.920000pt;}
.hb{height:42.117188pt;}
.h36{height:43.365333pt;}
.h3c{height:43.804688pt;}
.h2e{height:44.325703pt;}
.hc{height:44.457031pt;}
.hf{height:44.467698pt;}
.hd{height:44.507698pt;}
.h11{height:44.580729pt;}
.h10{height:44.598329pt;}
.h31{height:46.200000pt;}
.h16{height:46.796875pt;}
.h40{height:46.828875pt;}
.h41{height:46.844342pt;}
.h3e{height:46.844875pt;}
.h42{height:46.845408pt;}
.h43{height:46.860342pt;}
.h44{height:46.860875pt;}
.ha{height:46.927083pt;}
.h3f{height:46.975083pt;}
.h29{height:51.472266pt;}
.h15{height:51.476562pt;}
.h14{height:51.619792pt;}
.h2d{height:53.634101pt;}
.h8{height:54.218750pt;}
.h9{height:56.156250pt;}
.h34{height:61.169470pt;}
.h35{height:68.704840pt;}
.h3b{height:70.533187pt;}
.h33{height:91.237599pt;}
.h3{height:93.200000pt;}
.h32{height:99.105831pt;}
.h37{height:99.106364pt;}
.h1e{height:185.394667pt;}
.h21{height:190.488000pt;}
.h1a{height:196.157333pt;}
.h24{height:214.238667pt;}
.h27{height:224.126667pt;}
.h17{height:303.117333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.wb{width:157.080000pt;}
.w7{width:198.000000pt;}
.wd{width:211.200000pt;}
.w2{width:211.653333pt;}
.w8{width:261.360000pt;}
.w9{width:262.680000pt;}
.wf{width:264.000000pt;}
.we{width:281.160000pt;}
.wa{width:318.120000pt;}
.wc{width:319.440000pt;}
.w10{width:323.400000pt;}
.w3{width:443.338667pt;}
.w4{width:443.357333pt;}
.w5{width:443.358667pt;}
.w6{width:443.436000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x48{left:8.323243pt;}
.x77{left:18.623467pt;}
.x4a{left:22.303067pt;}
.x8a{left:50.654933pt;}
.x96{left:53.006267pt;}
.x89{left:58.410000pt;}
.x86{left:59.604533pt;}
.x94{left:60.761200pt;}
.x74{left:62.612933pt;}
.xb4{left:65.958533pt;}
.xb5{left:69.052800pt;}
.x8b{left:71.610000pt;}
.x25{left:73.945333pt;}
.xb1{left:74.909733pt;}
.xa3{left:76.436267pt;}
.x11{left:98.267733pt;}
.x1{left:100.868000pt;}
.x1c{left:103.982267pt;}
.x15{left:109.927200pt;}
.x21{left:111.716133pt;}
.x24{left:113.922667pt;}
.x75{left:116.173733pt;}
.x7{left:117.220667pt;}
.x2b{left:118.194667pt;}
.x76{left:119.466127pt;}
.x12{left:120.942400pt;}
.x4{left:123.548000pt;}
.x23{left:124.962667pt;}
.x5f{left:127.677333pt;}
.xd1{left:130.394667pt;}
.xd0{left:133.004800pt;}
.x22{left:136.006267pt;}
.xcf{left:138.112667pt;}
.x1a{left:141.905467pt;}
.x46{left:142.957600pt;}
.x8d{left:144.210000pt;}
.x71{left:145.379067pt;}
.x2c{left:146.515067pt;}
.x61{left:147.990800pt;}
.x85{left:149.716533pt;}
.x4b{left:150.769067pt;}
.x78{left:152.503733pt;}
.x5{left:154.340267pt;}
.x2d{left:157.202119pt;}
.x62{left:158.333525pt;}
.x6{left:159.340267pt;}
.xa8{left:160.586267pt;}
.x4c{left:162.212868pt;}
.x73{left:163.492933pt;}
.x99{left:164.876267pt;}
.xa2{left:165.828533pt;}
.x2e{left:167.905145pt;}
.xa6{left:168.959867pt;}
.xb8{left:171.806133pt;}
.x4d{left:173.656669pt;}
.x49{left:174.579067pt;}
.x9b{left:179.520000pt;}
.xb9{left:181.957333pt;}
.xa9{left:183.480000pt;}
.x2f{left:189.303211pt;}
.xc0{left:190.537333pt;}
.x93{left:191.857333pt;}
.xbf{left:192.888667pt;}
.x92{left:194.208533pt;}
.xf{left:195.198667pt;}
.x4e{left:196.552760pt;}
.x79{left:197.539322pt;}
.x10{left:199.109467pt;}
.x20{left:200.219333pt;}
.x19{left:202.098533pt;}
.x16{left:203.743600pt;}
.x1d{left:205.683333pt;}
.x17{left:207.201333pt;}
.x7a{left:208.800691pt;}
.xc6{left:209.799600pt;}
.x30{left:210.693290pt;}
.xb3{left:211.779600pt;}
.xb6{left:216.937333pt;}
.x4f{left:219.440363pt;}
.x88{left:223.537333pt;}
.x87{left:225.888667pt;}
.x8{left:227.681600pt;}
.xc7{left:228.860667pt;}
.x63{left:230.723490pt;}
.x31{left:232.091356pt;}
.xa0{left:233.850800pt;}
.x95{left:234.918667pt;}
.x1f{left:238.672533pt;}
.x64{left:241.066215pt;}
.x32{left:242.794383pt;}
.xb0{left:243.748400pt;}
.xbe{left:244.694933pt;}
.xc5{left:246.348667pt;}
.xba{left:249.071067pt;}
.x65{left:251.408941pt;}
.x33{left:253.489422pt;}
.xa4{left:257.362267pt;}
.x97{left:258.971067pt;}
.xb7{left:260.376533pt;}
.x50{left:265.232546pt;}
.x14{left:269.748800pt;}
.xbb{left:270.892267pt;}
.x18{left:272.872400pt;}
.x34{left:274.879501pt;}
.xa1{left:278.564800pt;}
.x98{left:279.843600pt;}
.x66{left:282.437117pt;}
.x1e{left:283.892667pt;}
.x35{left:285.582527pt;}
.x51{left:288.120148pt;}
.xc8{left:290.690800pt;}
.x67{left:292.779842pt;}
.x13{left:294.183467pt;}
.x36{left:296.277567pt;}
.x52{left:299.572438pt;}
.xa5{left:302.943600pt;}
.x9{left:306.155733pt;}
.x8c{left:308.388667pt;}
.xa{left:309.988400pt;}
.x53{left:311.016239pt;}
.x28{left:312.998133pt;}
.xa7{left:313.953333pt;}
.x37{left:317.667645pt;}
.xbc{left:320.887333pt;}
.xca{left:322.374400pt;}
.x68{left:323.798906pt;}
.x38{left:328.362685pt;}
.x27{left:329.414667pt;}
.x1b{left:332.008800pt;}
.x54{left:333.912331pt;}
.xd{left:336.339467pt;}
.x39{left:339.065711pt;}
.xe{left:340.258133pt;}
.x7b{left:343.927231pt;}
.x55{left:345.364622pt;}
.xaa{left:352.647333pt;}
.x69{left:354.827082pt;}
.x56{left:356.808423pt;}
.xbd{left:359.373467pt;}
.x3a{left:360.463777pt;}
.x9a{left:362.962267pt;}
.xc1{left:363.993467pt;}
.x6a{left:365.169807pt;}
.x3b{left:371.158817pt;}
.xcc{left:372.717200pt;}
.x8e{left:374.182267pt;}
.x6b{left:375.512532pt;}
.x7c{left:377.701451pt;}
.x57{left:379.696025pt;}
.x3c{left:381.861843pt;}
.x9d{left:384.040933pt;}
.xc2{left:385.649733pt;}
.x9c{left:388.042267pt;}
.x7d{left:388.962820pt;}
.x58{left:391.139826pt;}
.x3{left:392.040667pt;}
.x8f{left:393.363467pt;}
.x6c{left:396.197983pt;}
.xb2{left:398.477067pt;}
.x7e{left:400.224189pt;}
.x3d{left:403.259909pt;}
.x6d{left:406.531596pt;}
.xab{left:409.615867pt;}
.x3e{left:413.946961pt;}
.x26{left:415.433467pt;}
.x6e{left:416.874321pt;}
.x2a{left:418.879067pt;}
.x90{left:421.537333pt;}
.x7f{left:422.746927pt;}
.x3f{left:424.642001pt;}
.xac{left:428.302267pt;}
.xad{left:431.478400pt;}
.x80{left:434.008295pt;}
.x59{left:436.932009pt;}
.x9e{left:437.954800pt;}
.xc3{left:439.976000pt;}
.x47{left:441.560533pt;}
.x40{left:446.040067pt;}
.x5a{left:448.384300pt;}
.x9f{left:453.217200pt;}
.xc4{left:454.537333pt;}
.x41{left:456.743093pt;}
.x6f{left:458.236110pt;}
.xce{left:459.987467pt;}
.xcd{left:460.886400pt;}
.x2{left:463.360800pt;}
.xae{left:466.417333pt;}
.x42{left:467.438133pt;}
.x5b{left:471.280391pt;}
.xc9{left:473.180667pt;}
.x70{left:478.921561pt;}
.xaf{left:481.597200pt;}
.x5c{left:482.724192pt;}
.x43{left:488.836199pt;}
.x81{left:490.305253pt;}
.x5d{left:494.176483pt;}
.x44{left:499.539225pt;}
.xb{left:504.818933pt;}
.xcb{left:506.797067pt;}
.xc{left:508.651467pt;}
.x45{left:510.234265pt;}
.x82{left:512.827991pt;}
.x60{left:514.477867pt;}
.x91{left:516.057333pt;}
.x29{left:517.169733pt;}
.x83{left:524.089360pt;}
.x5e{left:528.516375pt;}
.x84{left:535.350729pt;}
.x72{left:540.357733pt;}
}




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