
    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_687f756d63e4af7e6d3a43c5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_3e134645282389fa7bcb4d05.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_41174b55313f6163fecc0d9b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_85277959c67490ce4de3d346.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_54160335fa238a7ecf9161be.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_709a43cda517747ea0f418ec.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_35731808d6ba6462fbd09688.woff')format("woff");}.ff7{font-family:ff7;line-height:1.206055;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_40d67f86152f684ebeb329e5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_aef2e3be90947a9fee74e2a1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_b62b9d2c8430b2fdc4996ae5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_289724682460718a9d02fb74.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_8dff1085f8f389b73917ae68.woff')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_6306753b59c528eeee688ab4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.008301;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_d51f21ca49a43588b2479199.woff')format("woff");}.ffe{font-family:ffe;line-height:0.667000;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_709a43cda517747ea0f418ec.woff')format("woff");}.fff{font-family:fff;line-height:1.000488;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_b7e48fc818e8942f8cdb2a85.woff')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_dc6b56409d4057d923f76220.woff')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_b7d281c24f20722a75ddcf95.woff')format("woff");}.ff12{font-family:ff12;line-height:1.008301;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_709a43cda517747ea0f418ec.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_b7e48fc818e8942f8cdb2a85.woff')format("woff");}.ff14{font-family:ff14;line-height:1.206055;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_dc6b56409d4057d923f76220.woff')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_b7d281c24f20722a75ddcf95.woff')format("woff");}.ff16{font-family:ff16;line-height:1.008301;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_709a43cda517747ea0f418ec.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000488;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_626fcbd5b40ebee47fb392b5.woff')format("woff");}.ff18{font-family:ff18;line-height:1.206055;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_9348658490381b86bdd022ac.woff')format("woff");}.ff19{font-family:ff19;line-height:1.006348;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_e35401162e8ab2977d7676d2.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.008301;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_709a43cda517747ea0f418ec.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_626fcbd5b40ebee47fb392b5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.206055;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_9348658490381b86bdd022ac.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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_e35401162e8ab2977d7676d2.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.008301;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_93dfa422a2936b03adf39b2b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.000488;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_eff8a39d678a6cfd6360d9a2.woff')format("woff");}.ff20{font-family:ff20;line-height:1.206055;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_54a6121e74538230f29d1e85.woff')format("woff");}.ff21{font-family:ff21;line-height:1.006348;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_04526a96c90b48a351a622d5.woff')format("woff");}.ff22{font-family:ff22;line-height:1.008301;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_cd27ff83634c2da1b4f7623a.woff')format("woff");}.ff23{font-family:ff23;line-height:1.000488;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_b947229452bb16e458f98d46.woff')format("woff");}.ff24{font-family:ff24;line-height:0.704000;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-14.658000px;}
.v1{vertical-align:-11.952000px;}
.va{vertical-align:-10.488000px;}
.v2{vertical-align:-9.066000px;}
.v5{vertical-align:-7.176000px;}
.v9{vertical-align:-1.254000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.176000px;}
.v3{vertical-align:9.066000px;}
.v8{vertical-align:15.120000px;}
.v4{vertical-align:17.358000px;}
.vb{vertical-align:19.524000px;}
.v7{vertical-align:21.702000px;}
.vc{vertical-align:50.742000px;}
.ls2c{letter-spacing:-0.420840px;}
.ls1e{letter-spacing:-0.360720px;}
.ls2d{letter-spacing:-0.300600px;}
.ls20{letter-spacing:-0.240480px;}
.ls1f{letter-spacing:-0.180360px;}
.ls2b{letter-spacing:-0.120240px;}
.ls34{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.095760px;}
.ls1d{letter-spacing:-0.060120px;}
.ls3{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000606px;}
.ls49{letter-spacing:0.000800px;}
.ls48{letter-spacing:0.003634px;}
.ls41{letter-spacing:0.005541px;}
.ls40{letter-spacing:0.024048px;}
.ls1c{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.060120px;}
.ls26{letter-spacing:0.090000px;}
.ls3d{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.120240px;}
.ls3c{letter-spacing:0.140040px;}
.ls2a{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.180360px;}
.ls14{letter-spacing:0.191520px;}
.ls18{letter-spacing:0.228456px;}
.lsa{letter-spacing:0.443740px;}
.ls8{letter-spacing:0.449740px;}
.ls22{letter-spacing:0.480960px;}
.ls27{letter-spacing:0.648088px;}
.ls17{letter-spacing:1.142280px;}
.ls19{letter-spacing:1.503000px;}
.ls33{letter-spacing:2.945880px;}
.ls30{letter-spacing:3.306600px;}
.ls9{letter-spacing:3.436200px;}
.lsb{letter-spacing:3.442200px;}
.ls29{letter-spacing:3.513900px;}
.ls2f{letter-spacing:4.388760px;}
.ls25{letter-spacing:5.831640px;}
.ls3e{letter-spacing:6.192360px;}
.ls3f{letter-spacing:6.210396px;}
.ls1a{letter-spacing:7.995960px;}
.ls0{letter-spacing:8.367300px;}
.ls36{letter-spacing:11.106088px;}
.ls39{letter-spacing:11.133000px;}
.ls37{letter-spacing:11.134800px;}
.ls32{letter-spacing:11.778480px;}
.ls2{letter-spacing:11.954850px;}
.ls11{letter-spacing:12.339483px;}
.ls3b{letter-spacing:12.732203px;}
.ls47{letter-spacing:13.134073px;}
.lsd{letter-spacing:13.360182px;}
.ls45{letter-spacing:13.448400px;}
.ls46{letter-spacing:13.454400px;}
.ls3a{letter-spacing:13.808164px;}
.ls10{letter-spacing:13.863483px;}
.lsc{letter-spacing:14.799639px;}
.ls23{letter-spacing:14.824349px;}
.ls4{letter-spacing:14.831026px;}
.ls43{letter-spacing:14.884124px;}
.ls7{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.063451px;}
.ls44{letter-spacing:15.450218px;}
.ls4a{letter-spacing:15.479812px;}
.ls13{letter-spacing:15.661207px;}
.ls12{letter-spacing:15.901258px;}
.ls35{letter-spacing:16.079636px;}
.ls28{letter-spacing:16.440600px;}
.ls4b{letter-spacing:17.315106px;}
.lsf{letter-spacing:17.319483px;}
.ls5{letter-spacing:17.753353px;}
.ls24{letter-spacing:17.935200px;}
.ls2e{letter-spacing:19.606397px;}
.lse{letter-spacing:20.912153px;}
.ls38{letter-spacing:26.079000px;}
.ls1{letter-spacing:28.453654px;}
.ls31{letter-spacing:2450.450520px;}
.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;}
}
.wsa1{word-spacing:-15.210360px;}
.ws9c{word-spacing:-15.150240px;}
.ws9f{word-spacing:-15.090120px;}
.ws6b{word-spacing:-15.030000px;}
.ws67{word-spacing:-14.969880px;}
.ws15{word-spacing:-14.943900px;}
.ws9e{word-spacing:-14.909760px;}
.ws69{word-spacing:-14.849640px;}
.ws6a{word-spacing:-14.789520px;}
.wsa0{word-spacing:-14.729400px;}
.ws68{word-spacing:-14.669280px;}
.ws9d{word-spacing:-13.554000px;}
.ws66{word-spacing:-13.500000px;}
.wsa4{word-spacing:-13.449600px;}
.ws65{word-spacing:-12.161520px;}
.ws64{word-spacing:-11.970000px;}
.ws24{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.ws9b{word-spacing:-9.000000px;}
.ws11a{word-spacing:-3.126240px;}
.ws119{word-spacing:-3.066120px;}
.ws6d{word-spacing:-3.048556px;}
.wsda{word-spacing:-2.988780px;}
.ws118{word-spacing:-2.885760px;}
.wsc4{word-spacing:-2.809453px;}
.ws97{word-spacing:-2.765520px;}
.ws108{word-spacing:-2.743718px;}
.ws8c{word-spacing:-2.705400px;}
.ws121{word-spacing:-2.630126px;}
.ws5c{word-spacing:-2.572800px;}
.wsc5{word-spacing:-2.570351px;}
.ws73{word-spacing:-2.450800px;}
.wsb5{word-spacing:-2.404800px;}
.ws111{word-spacing:-2.344680px;}
.wsf2{word-spacing:-2.323910px;}
.wsf1{word-spacing:-2.317910px;}
.wse8{word-spacing:-2.317085px;}
.wse9{word-spacing:-2.316576px;}
.wse7{word-spacing:-2.315981px;}
.ws5f{word-spacing:-2.271473px;}
.ws110{word-spacing:-2.224440px;}
.ws19{word-spacing:-2.211697px;}
.wsfc{word-spacing:-2.151922px;}
.ws0{word-spacing:-2.092140px;}
.ws5a{word-spacing:-2.032370px;}
.wsdc{word-spacing:-1.998000px;}
.ws117{word-spacing:-1.983960px;}
.ws128{word-spacing:-1.972595px;}
.wsdd{word-spacing:-1.890000px;}
.ws136{word-spacing:-1.829146px;}
.ws4c{word-spacing:-1.793268px;}
.ws1a{word-spacing:-1.673717px;}
.ws12e{word-spacing:-1.613952px;}
.wsf4{word-spacing:-1.494390px;}
.ws7f{word-spacing:-1.322640px;}
.ws6e{word-spacing:-1.315063px;}
.ws88{word-spacing:-1.262520px;}
.wsce{word-spacing:-1.255288px;}
.ws96{word-spacing:-1.142280px;}
.ws1b{word-spacing:-1.135736px;}
.ws14{word-spacing:-1.075961px;}
.wsb9{word-spacing:-0.961920px;}
.ws47{word-spacing:-0.956410px;}
.wsb8{word-spacing:-0.901800px;}
.ws46{word-spacing:-0.896634px;}
.wsb7{word-spacing:-0.781560px;}
.ws2b{word-spacing:-0.777083px;}
.ws3e{word-spacing:-0.717307px;}
.ws127{word-spacing:-0.657532px;}
.wsba{word-spacing:-0.601200px;}
.wsc8{word-spacing:-0.597756px;}
.ws8a{word-spacing:-0.541080px;}
.ws36{word-spacing:-0.537980px;}
.ws139{word-spacing:-0.484186px;}
.ws8f{word-spacing:-0.480960px;}
.ws63{word-spacing:-0.478205px;}
.wsbb{word-spacing:-0.420840px;}
.wse{word-spacing:-0.418429px;}
.ws86{word-spacing:-0.360720px;}
.ws26{word-spacing:-0.358654px;}
.ws13b{word-spacing:-0.322790px;}
.ws18{word-spacing:-0.298878px;}
.ws79{word-spacing:-0.287280px;}
.ws12c{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.ws10c{word-spacing:-0.216000px;}
.ws129{word-spacing:-0.215194px;}
.ws78{word-spacing:-0.191520px;}
.wsae{word-spacing:-0.180360px;}
.ws2e{word-spacing:-0.179327px;}
.wsad{word-spacing:-0.162000px;}
.ws13c{word-spacing:-0.161395px;}
.ws57{word-spacing:-0.143552px;}
.ws81{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.119551px;}
.ws13d{word-spacing:-0.107597px;}
.ws77{word-spacing:-0.095760px;}
.ws8d{word-spacing:-0.060120px;}
.wsd{word-spacing:-0.059776px;}
.wse1{word-spacing:-0.054000px;}
.wsa3{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws6{word-spacing:0.000000px;}
.ws13f{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.ws87{word-spacing:0.060120px;}
.ws7a{word-spacing:0.095760px;}
.wsd9{word-spacing:0.107597px;}
.wsd1{word-spacing:0.108000px;}
.ws9{word-spacing:0.119551px;}
.wsb0{word-spacing:0.120240px;}
.ws12a{word-spacing:0.161395px;}
.ws7d{word-spacing:0.162000px;}
.wsa{word-spacing:0.179327px;}
.ws85{word-spacing:0.180360px;}
.ws14d{word-spacing:0.215194px;}
.ws1e{word-spacing:0.239102px;}
.ws8e{word-spacing:0.240480px;}
.ws134{word-spacing:0.268992px;}
.wsf{word-spacing:0.298878px;}
.wsbc{word-spacing:0.300600px;}
.ws138{word-spacing:0.322790px;}
.wsb{word-spacing:0.358654px;}
.wsb6{word-spacing:0.360720px;}
.ws38{word-spacing:0.418429px;}
.wsaf{word-spacing:0.420840px;}
.ws5{word-spacing:0.422252px;}
.ws49{word-spacing:0.478205px;}
.wsdf{word-spacing:0.480960px;}
.ws3f{word-spacing:0.537980px;}
.ws80{word-spacing:0.541080px;}
.ws2d{word-spacing:0.597756px;}
.wsc0{word-spacing:0.657532px;}
.ws61{word-spacing:0.717307px;}
.ws20{word-spacing:0.777083px;}
.ws2c{word-spacing:0.836858px;}
.ws8b{word-spacing:0.841680px;}
.ws4a{word-spacing:0.896634px;}
.ws116{word-spacing:0.901800px;}
.ws74{word-spacing:0.956410px;}
.ws3b{word-spacing:1.016185px;}
.ws62{word-spacing:1.075961px;}
.ws6c{word-spacing:1.129766px;}
.ws42{word-spacing:1.135736px;}
.ws30{word-spacing:1.195512px;}
.ws91{word-spacing:1.202400px;}
.wsb3{word-spacing:1.262520px;}
.wsc6{word-spacing:1.315063px;}
.ws124{word-spacing:1.374839px;}
.ws3c{word-spacing:1.434614px;}
.ws12b{word-spacing:1.452557px;}
.wsc2{word-spacing:1.494390px;}
.ws92{word-spacing:1.503000px;}
.ws75{word-spacing:1.554166px;}
.ws146{word-spacing:1.560154px;}
.ws93{word-spacing:1.563120px;}
.ws120{word-spacing:1.613941px;}
.ws15a{word-spacing:1.667750px;}
.ws12{word-spacing:1.673717px;}
.ws94{word-spacing:1.683360px;}
.ws1c{word-spacing:1.733492px;}
.ws12f{word-spacing:1.775347px;}
.wscc{word-spacing:1.793268px;}
.ws152{word-spacing:1.829146px;}
.ws2a{word-spacing:1.853044px;}
.wse0{word-spacing:1.863720px;}
.wsd2{word-spacing:1.923840px;}
.ws123{word-spacing:1.972595px;}
.ws1d{word-spacing:2.032370px;}
.ws115{word-spacing:2.044080px;}
.ws148{word-spacing:2.044339px;}
.wsf6{word-spacing:2.092146px;}
.ws29{word-spacing:2.151922px;}
.ws103{word-spacing:2.211697px;}
.wsb1{word-spacing:2.224440px;}
.wsf5{word-spacing:2.271473px;}
.wse4{word-spacing:2.284560px;}
.ws41{word-spacing:2.331248px;}
.wsc1{word-spacing:2.391024px;}
.ws40{word-spacing:2.570351px;}
.ws4f{word-spacing:2.630126px;}
.ws55{word-spacing:2.630133px;}
.ws7e{word-spacing:2.645280px;}
.ws71{word-spacing:2.689902px;}
.ws150{word-spacing:2.689920px;}
.wsf9{word-spacing:2.749678px;}
.ws37{word-spacing:2.809453px;}
.wsd7{word-spacing:2.825640px;}
.ws144{word-spacing:2.851315px;}
.ws4b{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws10a{word-spacing:2.929004px;}
.ws14e{word-spacing:2.958912px;}
.ws12d{word-spacing:2.960757px;}
.ws2f{word-spacing:2.988780px;}
.ws82{word-spacing:3.006000px;}
.ws14a{word-spacing:3.012710px;}
.ws104{word-spacing:3.048556px;}
.ws109{word-spacing:3.108331px;}
.ws84{word-spacing:3.126240px;}
.ws4e{word-spacing:3.168107px;}
.ws137{word-spacing:3.220310px;}
.ws15e{word-spacing:3.220810px;}
.ws159{word-spacing:3.221098px;}
.ws151{word-spacing:3.221616px;}
.ws140{word-spacing:3.222970px;}
.ws83{word-spacing:3.246480px;}
.ws13{word-spacing:3.280291px;}
.ws3a{word-spacing:3.287658px;}
.wse3{word-spacing:3.306600px;}
.ws17{word-spacing:3.347434px;}
.ws10f{word-spacing:3.366720px;}
.wsd6{word-spacing:3.486960px;}
.ws15f{word-spacing:3.496896px;}
.wsdb{word-spacing:3.526760px;}
.ws5b{word-spacing:3.586536px;}
.wsbe{word-spacing:3.646312px;}
.ws106{word-spacing:3.706087px;}
.ws114{word-spacing:3.727440px;}
.ws8{word-spacing:3.771540px;}
.ws125{word-spacing:3.825638px;}
.ws14c{word-spacing:3.873485px;}
.wsbd{word-spacing:3.945190px;}
.wsd0{word-spacing:4.004965px;}
.wse2{word-spacing:4.028040px;}
.ws35{word-spacing:4.064741px;}
.ws15d{word-spacing:4.088678px;}
.ws107{word-spacing:4.124516px;}
.ws10b{word-spacing:4.244068px;}
.wsd3{word-spacing:4.268520px;}
.ws16{word-spacing:4.303872px;}
.wsd5{word-spacing:4.328640px;}
.wsc{word-spacing:4.363619px;}
.ws95{word-spacing:4.388760px;}
.wsfa{word-spacing:4.423394px;}
.ws11b{word-spacing:4.448880px;}
.ws132{word-spacing:4.465267px;}
.wsa9{word-spacing:4.483170px;}
.wscd{word-spacing:4.542946px;}
.ws60{word-spacing:4.552459px;}
.ws43{word-spacing:4.602721px;}
.ws3d{word-spacing:4.662497px;}
.wsd4{word-spacing:4.749480px;}
.wsf8{word-spacing:4.782048px;}
.ws112{word-spacing:4.809600px;}
.ws126{word-spacing:4.961375px;}
.wsaa{word-spacing:5.080926px;}
.ws90{word-spacing:5.110200px;}
.ws7c{word-spacing:5.184000px;}
.ws7b{word-spacing:5.238000px;}
.wsb2{word-spacing:5.290560px;}
.wsbf{word-spacing:5.320028px;}
.ws89{word-spacing:5.470920px;}
.ws34{word-spacing:5.499355px;}
.ws45{word-spacing:5.618906px;}
.ws76{word-spacing:5.678682px;}
.ws48{word-spacing:5.738458px;}
.ws10e{word-spacing:5.831640px;}
.wsac{word-spacing:5.891760px;}
.ws105{word-spacing:5.917784px;}
.wsf7{word-spacing:5.977560px;}
.wsab{word-spacing:6.012000px;}
.wsa8{word-spacing:6.037336px;}
.ws15b{word-spacing:6.079219px;}
.ws135{word-spacing:6.133018px;}
.ws4d{word-spacing:6.156887px;}
.wsb4{word-spacing:6.192360px;}
.ws10d{word-spacing:6.252480px;}
.wsfb{word-spacing:6.276438px;}
.wscf{word-spacing:6.336214px;}
.ws113{word-spacing:6.372720px;}
.ws6f{word-spacing:6.395989px;}
.ws44{word-spacing:6.515540px;}
.ws70{word-spacing:6.575316px;}
.wsde{word-spacing:6.613200px;}
.ws39{word-spacing:6.754643px;}
.ws122{word-spacing:6.933970px;}
.ws9a{word-spacing:6.973920px;}
.ws72{word-spacing:7.053521px;}
.wse5{word-spacing:7.412174px;}
.ws11f{word-spacing:7.531726px;}
.ws11e{word-spacing:7.591501px;}
.ws99{word-spacing:8.356680px;}
.ws98{word-spacing:8.416800px;}
.wsd8{word-spacing:8.717400px;}
.ws23{word-spacing:11.910929px;}
.ws50{word-spacing:12.804019px;}
.ws59{word-spacing:12.851754px;}
.ws13a{word-spacing:12.911616px;}
.ws2{word-spacing:12.929425px;}
.ws52{word-spacing:13.342003px;}
.ws153{word-spacing:13.389187px;}
.ws141{word-spacing:13.392374px;}
.ws158{word-spacing:13.392826px;}
.ws149{word-spacing:13.394285px;}
.ws130{word-spacing:13.395802px;}
.ws133{word-spacing:13.664794px;}
.wsc9{word-spacing:14.286368px;}
.ws27{word-spacing:14.585246px;}
.wsca{word-spacing:14.645022px;}
.ws58{word-spacing:14.704798px;}
.ws32{word-spacing:14.764573px;}
.ws22{word-spacing:14.824349px;}
.ws33{word-spacing:14.884124px;}
.ws147{word-spacing:15.009754px;}
.ws11c{word-spacing:15.242778px;}
.ws11d{word-spacing:15.302554px;}
.ws53{word-spacing:15.353885px;}
.ws56{word-spacing:15.359885px;}
.ws21{word-spacing:15.661207px;}
.ws5d{word-spacing:15.878191px;}
.ws31{word-spacing:16.079636px;}
.wsc7{word-spacing:16.199188px;}
.ws156{word-spacing:16.462310px;}
.ws145{word-spacing:16.614768px;}
.ws155{word-spacing:16.616160px;}
.ws13e{word-spacing:16.619107px;}
.ws154{word-spacing:16.620211px;}
.ws15c{word-spacing:16.620758px;}
.ws14f{word-spacing:16.620883px;}
.ws143{word-spacing:16.622160px;}
.ws142{word-spacing:16.623706px;}
.ws157{word-spacing:16.838899px;}
.ws28{word-spacing:17.036046px;}
.ws131{word-spacing:17.807270px;}
.wsc3{word-spacing:18.470660px;}
.wscb{word-spacing:19.486846px;}
.ws1{word-spacing:22.179541px;}
.ws14b{word-spacing:26.199821px;}
.ws51{word-spacing:167.467741px;}
.ws54{word-spacing:203.333191px;}
.wsa2{word-spacing:264.547344px;}
.wsa7{word-spacing:330.104544px;}
.wsa6{word-spacing:332.528400px;}
.wsa5{word-spacing:338.983718px;}
.wsf0{word-spacing:484.211290px;}
.wsf3{word-spacing:488.431277px;}
.wsea{word-spacing:499.518528px;}
.wsef{word-spacing:554.515862px;}
.wseb{word-spacing:628.134461px;}
.wse6{word-spacing:630.988205px;}
.wsee{word-spacing:636.696528px;}
.wsec{word-spacing:638.441424px;}
.wsed{word-spacing:664.849277px;}
.ws5e{word-spacing:746.119039px;}
.ws101{word-spacing:979.238477px;}
.wsff{word-spacing:982.627776px;}
.wsfd{word-spacing:993.441254px;}
.ws100{word-spacing:1019.318285px;}
.wsfe{word-spacing:1054.179648px;}
.ws102{word-spacing:1062.841190px;}
._4a{margin-left:-40.514014px;}
._4{margin-left:-13.879987px;}
._a{margin-left:-7.459999px;}
._15{margin-left:-6.443814px;}
._1{margin-left:-5.397721px;}
._9{margin-left:-3.993014px;}
._11{margin-left:-2.798881px;}
._3{margin-left:-1.506341px;}
._18{width:1.511790px;}
._29{width:3.012698px;}
._31{width:4.927169px;}
._30{width:5.993964px;}
._32{width:7.027358px;}
._4e{width:8.110188px;}
._0{width:10.879128px;}
._19{width:12.142073px;}
._50{width:13.624350px;}
._b{width:14.884124px;}
._10{width:16.557841px;}
._14{width:17.574026px;}
._8{width:18.649987px;}
._d{width:20.443255px;}
._2{width:21.761856px;}
._16{width:23.204884px;}
._c{width:24.209118px;}
._34{width:25.943989px;}
._33{width:27.197898px;}
._13{width:29.242219px;}
._49{width:30.377956px;}
._4f{width:31.693019px;}
._5{width:33.355008px;}
._12{width:36.116413px;}
._17{width:37.849906px;}
._6{width:54.425551px;}
._51{width:61.868160px;}
._7{width:69.368467px;}
._23{width:88.542280px;}
._26{width:92.963246px;}
._1a{width:94.158761px;}
._28{width:99.682438px;}
._27{width:103.818523px;}
._22{width:115.773673px;}
._21{width:116.921367px;}
._36{width:118.571674px;}
._1b{width:125.433434px;}
._2d{width:128.018647px;}
._2e{width:139.683973px;}
._20{width:149.295913px;}
._25{width:157.855801px;}
._2a{width:162.204574px;}
._37{width:179.310067px;}
._1f{width:181.766101px;}
._1c{width:191.378041px;}
._2c{width:193.673430px;}
._24{width:201.037802px;}
._1e{width:203.333191px;}
._1d{width:224.948102px;}
._2b{width:235.997562px;}
._38{width:254.251238px;}
._3e{width:259.491725px;}
._3f{width:262.267200px;}
._47{width:327.355459px;}
._44{width:329.749795px;}
._3b{width:336.327168px;}
._41{width:349.750224px;}
._48{width:393.750490px;}
._4d{width:411.450163px;}
._3d{width:425.383949px;}
._43{width:437.176714px;}
._46{width:456.389708px;}
._3a{width:459.007949px;}
._39{width:492.416755px;}
._35{width:565.851571px;}
._4c{width:593.019763px;}
._3c{width:645.092006px;}
._45{width:648.647309px;}
._40{width:658.707610px;}
._42{width:680.065574px;}
._e{width:1834.502962px;}
._2f{width:2473.289280px;}
._4b{width:2490.026962px;}
._f{width:2513.936962px;}
.fc3{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fse{font-size:36.000000px;}
.fs8{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fs5{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs6{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fsf{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y1fd{bottom:-816.316410px;}
.y1fc{bottom:-795.259380px;}
.y1fb{bottom:-774.292530px;}
.y1fa{bottom:-753.325680px;}
.y1f9{bottom:-732.268650px;}
.y172{bottom:-718.984080px;}
.y1f8{bottom:-711.301800px;}
.y171{bottom:-698.017230px;}
.y1f7{bottom:-690.334950px;}
.yc4{bottom:-679.566600px;}
.y170{bottom:-676.960200px;}
.y1f6{bottom:-669.277920px;}
.y144{bottom:-659.626530px;}
.yc3{bottom:-658.509570px;}
.y16f{bottom:-655.993350px;}
.y1f5{bottom:-648.311070px;}
.y143{bottom:-638.569500px;}
.yc2{bottom:-637.542720px;}
.y16e{bottom:-635.026500px;}
.y1f4{bottom:-627.344220px;}
.yc1{bottom:-616.575870px;}
.y102{bottom:-606.972000px;}
.y1f3{bottom:-606.287190px;}
.y142{bottom:-600.049500px;}
.y16d{bottom:-596.416500px;}
.yc0{bottom:-595.518840px;}
.y101{bottom:-586.722000px;}
.y1f2{bottom:-585.320340px;}
.ybf{bottom:-574.551990px;}
.y141{bottom:-574.104930px;}
.y16c{bottom:-570.474180px;}
.y100{bottom:-566.472000px;}
.y1f1{bottom:-564.353490px;}
.ybe{bottom:-553.585140px;}
.yff{bottom:-546.222000px;}
.y1f0{bottom:-543.296460px;}
.ybd{bottom:-532.528110px;}
.yfe{bottom:-525.972000px;}
.y1ef{bottom:-522.329610px;}
.ybc{bottom:-511.561260px;}
.yfd{bottom:-505.722000px;}
.y1ee{bottom:-501.362760px;}
.ybb{bottom:-490.594410px;}
.yfb{bottom:-485.472000px;}
.yfc{bottom:-481.692000px;}
.y1ed{bottom:-480.305730px;}
.yba{bottom:-469.537380px;}
.yfa{bottom:-464.502000px;}
.y1ec{bottom:-459.338880px;}
.yf8{bottom:-454.422000px;}
.yb9{bottom:-448.570530px;}
.yf9{bottom:-444.252000px;}
.y1eb{bottom:-438.372030px;}
.yb8{bottom:-427.603680px;}
.y1ea{bottom:-417.315000px;}
.yf7{bottom:-414.012000px;}
.yb7{bottom:-406.546650px;}
.y1e9{bottom:-396.348150px;}
.yb6{bottom:-385.579800px;}
.y1e8{bottom:-375.381300px;}
.yf6{bottom:-374.467620px;}
.yb5{bottom:-364.612950px;}
.y1e7{bottom:-354.324270px;}
.yf5{bottom:-353.500770px;}
.yb4{bottom:-343.555920px;}
.y1e6{bottom:-333.357420px;}
.yf4{bottom:-332.533920px;}
.yb3{bottom:-322.589070px;}
.y1e5{bottom:-312.390570px;}
.yf3{bottom:-311.476890px;}
.yb2{bottom:-301.622220px;}
.y1e4{bottom:-291.333540px;}
.yf2{bottom:-290.510040px;}
.yb1{bottom:-280.565190px;}
.y1e3{bottom:-270.366690px;}
.yf1{bottom:-269.543190px;}
.yb0{bottom:-259.598340px;}
.y1e2{bottom:-249.399840px;}
.yf0{bottom:-248.486160px;}
.yaf{bottom:-238.631490px;}
.y1e1{bottom:-228.342810px;}
.yef{bottom:-227.519310px;}
.yae{bottom:-217.574460px;}
.y1e0{bottom:-207.375960px;}
.yee{bottom:-206.552460px;}
.y16b{bottom:-196.617960px;}
.yad{bottom:-196.607610px;}
.y140{bottom:-193.860960px;}
.y1df{bottom:-186.409110px;}
.yed{bottom:-185.495430px;}
.yac{bottom:-175.640760px;}
.y16a{bottom:-175.560930px;}
.y13f{bottom:-172.803930px;}
.y1de{bottom:-165.352080px;}
.yec{bottom:-164.528580px;}
.y169{bottom:-154.594080px;}
.yab{bottom:-154.583730px;}
.y13e{bottom:-151.837080px;}
.y186{bottom:-151.391580px;}
.y1dd{bottom:-144.385230px;}
.yeb{bottom:-143.561730px;}
.y168{bottom:-133.627230px;}
.yaa{bottom:-133.616880px;}
.y13d{bottom:-130.870230px;}
.y185{bottom:-130.424730px;}
.y1dc{bottom:-123.418380px;}
.yea{bottom:-122.504700px;}
.ya9{bottom:-112.650030px;}
.y167{bottom:-112.570200px;}
.y13c{bottom:-109.813200px;}
.y184{bottom:-109.367700px;}
.y1db{bottom:-102.361350px;}
.ye9{bottom:-101.537850px;}
.y166{bottom:-91.603350px;}
.ya8{bottom:-91.593000px;}
.y13b{bottom:-88.846350px;}
.y183{bottom:-88.400850px;}
.y15e{bottom:-87.303030px;}
.y1da{bottom:-81.394500px;}
.ye8{bottom:-76.062000px;}
.y165{bottom:-70.636500px;}
.y13a{bottom:-67.879500px;}
.y182{bottom:-67.434000px;}
.y15d{bottom:-66.246000px;}
.ya7{bottom:-53.068500px;}
.y1d9{bottom:-42.874500px;}
.ye7{bottom:-37.452000px;}
.ya6{bottom:-32.103000px;}
.y164{bottom:-32.026500px;}
.y139{bottom:-29.269500px;}
.y181{bottom:-28.824000px;}
.y15c{bottom:-27.726000px;}
.y1d8{bottom:-21.814500px;}
.ye6{bottom:-11.521290px;}
.y163{bottom:-6.196500px;}
.ya5{bottom:-6.183000px;}
.y138{bottom:-3.339240px;}
.y180{bottom:-2.881680px;}
.y15b{bottom:-1.781430px;}
.y0{bottom:0.000000px;}
.y1d7{bottom:4.500000px;}
.y3f{bottom:45.921000px;}
.y3e{bottom:99.720000px;}
.y194{bottom:100.200000px;}
.y14{bottom:100.258500px;}
.y20f{bottom:102.043500px;}
.y286{bottom:105.961500px;}
.y11c{bottom:106.066500px;}
.ye0{bottom:112.609500px;}
.y21a{bottom:114.882000px;}
.y72{bottom:116.407500px;}
.y13{bottom:118.147500px;}
.y3d{bottom:120.610500px;}
.y193{bottom:121.092000px;}
.ya1{bottom:122.386500px;}
.y20e{bottom:122.935500px;}
.y285{bottom:125.112000px;}
.y11b{bottom:126.958500px;}
.y254{bottom:128.895000px;}
.ydf{bottom:133.501500px;}
.y219{bottom:135.774000px;}
.y12{bottom:136.035000px;}
.y71{bottom:137.298000px;}
.y132{bottom:139.255500px;}
.y3c{bottom:141.502500px;}
.y192{bottom:141.984000px;}
.ya0{bottom:143.278500px;}
.y20d{bottom:143.826000px;}
.y284{bottom:144.262500px;}
.y11a{bottom:147.850500px;}
.y253{bottom:148.045500px;}
.y11{bottom:153.922500px;}
.yde{bottom:154.393500px;}
.y218{bottom:156.666000px;}
.y70{bottom:158.190000px;}
.y131{bottom:160.147500px;}
.y3b{bottom:162.394500px;}
.y191{bottom:162.874500px;}
.y283{bottom:163.413000px;}
.y9f{bottom:164.170500px;}
.y20c{bottom:164.718000px;}
.y252{bottom:167.196000px;}
.y119{bottom:168.741000px;}
.y10{bottom:171.811500px;}
.ydd{bottom:175.285500px;}
.y217{bottom:177.556500px;}
.y6f{bottom:179.082000px;}
.y130{bottom:181.039500px;}
.y282{bottom:182.563500px;}
.y3a{bottom:183.285000px;}
.y190{bottom:183.766500px;}
.y15f{bottom:183.937500px;}
.y9e{bottom:185.061000px;}
.y20b{bottom:185.610000px;}
.y251{bottom:186.346500px;}
.y118{bottom:189.633000px;}
.yf{bottom:189.699000px;}
.ydc{bottom:196.176000px;}
.y216{bottom:198.448500px;}
.y6e{bottom:199.972500px;}
.y281{bottom:201.714000px;}
.y12f{bottom:201.930000px;}
.y39{bottom:204.177000px;}
.y18f{bottom:204.658500px;}
.y250{bottom:205.497000px;}
.y9d{bottom:205.953000px;}
.y14d{bottom:206.367000px;}
.y20a{bottom:206.502000px;}
.ye{bottom:207.586500px;}
.y117{bottom:210.525000px;}
.ydb{bottom:217.068000px;}
.y215{bottom:219.340500px;}
.y6d{bottom:220.864500px;}
.y12e{bottom:222.822000px;}
.y24f{bottom:224.649000px;}
.y38{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.y18e{bottom:225.549000px;}
.y9c{bottom:226.845000px;}
.y209{bottom:227.392500px;}
.y116{bottom:231.415500px;}
.yda{bottom:237.960000px;}
.y280{bottom:240.015000px;}
.y214{bottom:240.232500px;}
.y6c{bottom:241.756500px;}
.y12d{bottom:243.714000px;}
.y24e{bottom:243.799500px;}
.y37{bottom:245.961000px;}
.y18d{bottom:246.441000px;}
.y9b{bottom:247.735500px;}
.y208{bottom:248.284500px;}
.y115{bottom:252.307500px;}
.yc{bottom:252.330000px;}
.yd9{bottom:258.850500px;}
.y27f{bottom:259.165500px;}
.y213{bottom:261.123000px;}
.y6b{bottom:262.647000px;}
.y24d{bottom:262.950000px;}
.y12c{bottom:264.606000px;}
.y36{bottom:266.851500px;}
.y18c{bottom:267.333000px;}
.y9a{bottom:268.627500px;}
.y207{bottom:269.176500px;}
.yb{bottom:270.217500px;}
.y114{bottom:273.199500px;}
.y27e{bottom:278.316000px;}
.y1d4{bottom:278.509650px;}
.yd8{bottom:279.742500px;}
.y212{bottom:282.015000px;}
.y24c{bottom:282.100500px;}
.y6a{bottom:283.539000px;}
.y12b{bottom:285.496500px;}
.y35{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.y1d3{bottom:288.145500px;}
.y18b{bottom:288.225000px;}
.y99{bottom:289.519500px;}
.y206{bottom:290.067000px;}
.y27d{bottom:297.466500px;}
.yd7{bottom:300.634500px;}
.y24b{bottom:301.251000px;}
.y211{bottom:302.907000px;}
.y69{bottom:304.431000px;}
.y9{bottom:305.994000px;}
.y12a{bottom:306.388500px;}
.y34{bottom:308.635500px;}
.y18a{bottom:309.115500px;}
.y98{bottom:310.410000px;}
.y205{bottom:310.959000px;}
.y1cf{bottom:311.668500px;}
.y27c{bottom:316.617000px;}
.y24a{bottom:320.401500px;}
.yd6{bottom:321.525000px;}
.y113{bottom:323.712000px;}
.y8{bottom:323.881500px;}
.y68{bottom:325.323000px;}
.y129{bottom:327.280500px;}
.y1ce{bottom:328.107000px;}
.y210{bottom:328.281000px;}
.y33{bottom:329.526000px;}
.y189{bottom:330.007500px;}
.y97{bottom:331.302000px;}
.y204{bottom:331.851000px;}
.y27b{bottom:335.767500px;}
.y249{bottom:339.552000px;}
.y112{bottom:340.150500px;}
.y7{bottom:341.769000px;}
.yd5{bottom:342.417000px;}
.y1cd{bottom:344.545500px;}
.y67{bottom:346.213500px;}
.y137{bottom:346.303650px;}
.y128{bottom:348.171000px;}
.y32{bottom:350.418000px;}
.y188{bottom:350.899500px;}
.y96{bottom:352.194000px;}
.y203{bottom:352.741500px;}
.y27a{bottom:354.918000px;}
.y111{bottom:356.589000px;}
.y248{bottom:358.702500px;}
.y6{bottom:359.658000px;}
.y1cc{bottom:360.984000px;}
.yd4{bottom:363.309000px;}
.y66{bottom:367.105500px;}
.y136{bottom:367.270500px;}
.y127{bottom:369.063000px;}
.y17f{bottom:370.974540px;}
.y31{bottom:371.310000px;}
.y110{bottom:373.027500px;}
.y95{bottom:373.084500px;}
.y202{bottom:373.633500px;}
.y279{bottom:374.070000px;}
.ye5{bottom:375.471150px;}
.y1cb{bottom:377.422500px;}
.y247{bottom:377.853000px;}
.y15a{bottom:378.462540px;}
.y5{bottom:383.523000px;}
.yd3{bottom:384.199500px;}
.y187{bottom:386.527500px;}
.y65{bottom:387.997500px;}
.y162{bottom:388.087650px;}
.y10f{bottom:389.466000px;}
.y126{bottom:389.955000px;}
.y17e{bottom:392.031570px;}
.y30{bottom:392.200500px;}
.y278{bottom:393.220500px;}
.y94{bottom:393.976500px;}
.y201{bottom:394.525500px;}
.ye4{bottom:396.438000px;}
.y246{bottom:397.003500px;}
.y161{bottom:397.723500px;}
.y159{bottom:399.519570px;}
.y1ca{bottom:401.062500px;}
.y4{bottom:401.410500px;}
.yd2{bottom:405.091500px;}
.y10e{bottom:405.903000px;}
.y64{bottom:408.888000px;}
.y174{bottom:408.955500px;}
.y125{bottom:410.845500px;}
.y277{bottom:412.371000px;}
.y17d{bottom:412.998420px;}
.y1a8{bottom:413.092500px;}
.y200{bottom:415.416000px;}
.y245{bottom:416.154000px;}
.y2f{bottom:417.576000px;}
.y3{bottom:419.299500px;}
.y158{bottom:420.486420px;}
.y135{bottom:421.984650px;}
.y10d{bottom:422.655000px;}
.ya4{bottom:423.561150px;}
.yd1{bottom:425.983500px;}
.y63{bottom:429.780000px;}
.y276{bottom:431.521500px;}
.y134{bottom:431.620500px;}
.y124{bottom:431.737500px;}
.y93{bottom:432.277500px;}
.y1c9{bottom:432.682500px;}
.ya3{bottom:433.197000px;}
.y17c{bottom:433.965270px;}
.y1a7{bottom:433.984500px;}
.y244{bottom:435.304500px;}
.y1ff{bottom:436.308000px;}
.y2{bottom:437.187000px;}
.y157{bottom:441.453270px;}
.y10c{bottom:446.607000px;}
.yd0{bottom:446.875500px;}
.y62{bottom:450.672000px;}
.ye3{bottom:451.152150px;}
.y123{bottom:452.629500px;}
.y243{bottom:454.455000px;}
.y1a6{bottom:454.875000px;}
.y17b{bottom:455.022300px;}
.ye2{bottom:460.788000px;}
.y1{bottom:461.052000px;}
.y156{bottom:462.510300px;}
.y1c8{bottom:467.080500px;}
.ycf{bottom:467.766000px;}
.y275{bottom:469.822500px;}
.y92{bottom:470.578500px;}
.y61{bottom:471.562500px;}
.y1fe{bottom:471.936000px;}
.y122{bottom:473.520000px;}
.y242{bottom:473.605500px;}
.y1a5{bottom:475.767000px;}
.y17a{bottom:475.989150px;}
.y10b{bottom:481.215000px;}
.y155{bottom:483.477150px;}
.y1c7{bottom:487.971000px;}
.yce{bottom:488.658000px;}
.y274{bottom:488.973000px;}
.y91{bottom:491.470500px;}
.y60{bottom:492.454500px;}
.y241{bottom:492.756000px;}
.y2e{bottom:492.894000px;}
.y121{bottom:494.412000px;}
.y1a4{bottom:496.659000px;}
.y179{bottom:496.956000px;}
.y1d2{bottom:497.353500px;}
.y1d6{bottom:501.459000px;}
.y154{bottom:504.444000px;}
.y273{bottom:508.123500px;}
.y1c6{bottom:508.863000px;}
.ycd{bottom:509.550000px;}
.y240{bottom:511.906500px;}
.y90{bottom:512.362500px;}
.y5f{bottom:513.346500px;}
.y2d{bottom:513.786000px;}
.y120{bottom:515.304000px;}
.y1a3{bottom:517.551000px;}
.y10a{bottom:518.320500px;}
.y1d5{bottom:521.619000px;}
.y272{bottom:527.274000px;}
.y1c5{bottom:529.755000px;}
.ycc{bottom:530.440500px;}
.y23f{bottom:531.057000px;}
.y8f{bottom:533.253000px;}
.y5e{bottom:534.237000px;}
.y178{bottom:535.566000px;}
.y223{bottom:536.194500px;}
.y1a2{bottom:538.441500px;}
.y109{bottom:539.211000px;}
.y11f{bottom:540.678000px;}
.y153{bottom:543.054000px;}
.y271{bottom:546.424500px;}
.y23e{bottom:550.207500px;}
.y1c4{bottom:550.645500px;}
.ycb{bottom:551.332500px;}
.y2c{bottom:552.610500px;}
.y8e{bottom:554.145000px;}
.y5d{bottom:555.129000px;}
.y222{bottom:557.086500px;}
.y1a1{bottom:559.333500px;}
.y108{bottom:560.103000px;}
.y177{bottom:561.396000px;}
.y270{bottom:565.575000px;}
.y152{bottom:568.984260px;}
.y23d{bottom:569.358000px;}
.y1c3{bottom:571.537500px;}
.yca{bottom:572.224500px;}
.y2b{bottom:573.502500px;}
.y8d{bottom:575.037000px;}
.y5c{bottom:576.021000px;}
.y221{bottom:577.978500px;}
.y107{bottom:580.995000px;}
.y26f{bottom:584.725500px;}
.y14c{bottom:587.118000px;}
.y23c{bottom:588.508500px;}
.y1c2{bottom:592.429500px;}
.yc9{bottom:593.115000px;}
.y2a{bottom:594.393000px;}
.y8c{bottom:595.927500px;}
.y5b{bottom:596.913000px;}
.y220{bottom:598.870500px;}
.y106{bottom:601.885500px;}
.y1a0{bottom:602.823000px;}
.y26e{bottom:603.876000px;}
.y23b{bottom:607.660500px;}
.y14b{bottom:608.010000px;}
.y1c1{bottom:613.320000px;}
.yc8{bottom:614.007000px;}
.y29{bottom:615.285000px;}
.y19f{bottom:615.714000px;}
.y8b{bottom:616.819500px;}
.y5a{bottom:617.803500px;}
.y21f{bottom:619.761000px;}
.y105{bottom:622.777500px;}
.y26d{bottom:623.026500px;}
.y23a{bottom:626.811000px;}
.y14a{bottom:628.902000px;}
.y19e{bottom:632.041500px;}
.y1c0{bottom:634.212000px;}
.yc7{bottom:634.899000px;}
.y28{bottom:636.177000px;}
.y8a{bottom:637.711500px;}
.y59{bottom:638.695500px;}
.y21e{bottom:640.653000px;}
.y26c{bottom:642.177000px;}
.y19d{bottom:644.728500px;}
.y239{bottom:645.961500px;}
.y104{bottom:648.151500px;}
.y149{bottom:649.792500px;}
.y1bf{bottom:655.104000px;}
.y27{bottom:657.067500px;}
.y89{bottom:658.603500px;}
.y58{bottom:659.587500px;}
.y19c{bottom:660.850500px;}
.y26b{bottom:661.327500px;}
.y21d{bottom:661.545000px;}
.y238{bottom:665.112000px;}
.yc6{bottom:670.527000px;}
.y148{bottom:670.684500px;}
.y19b{bottom:673.537500px;}
.y1be{bottom:675.996000px;}
.y26{bottom:677.959500px;}
.y103{bottom:680.298000px;}
.y57{bottom:680.478000px;}
.y21c{bottom:682.435500px;}
.y237{bottom:684.262500px;}
.y19a{bottom:689.659500px;}
.yc5{bottom:689.760000px;}
.y147{bottom:691.576500px;}
.y1bd{bottom:696.886500px;}
.y25{bottom:698.851500px;}
.y26a{bottom:699.628500px;}
.y56{bottom:701.370000px;}
.y88{bottom:701.700000px;}
.y199{bottom:702.346500px;}
.ye1{bottom:702.727500px;}
.y236{bottom:703.413000px;}
.y21b{bottom:707.811000px;}
.ya2{bottom:712.188000px;}
.y146{bottom:712.468500px;}
.y86{bottom:715.896000px;}
.y1bc{bottom:717.778500px;}
.y198{bottom:718.468500px;}
.y269{bottom:718.779000px;}
.y24{bottom:719.742000px;}
.y87{bottom:720.235500px;}
.y55{bottom:722.262000px;}
.y235{bottom:722.563500px;}
.y197{bottom:731.154000px;}
.y85{bottom:737.070000px;}
.y268{bottom:737.929500px;}
.y1bb{bottom:738.670500px;}
.y23{bottom:740.634000px;}
.y234{bottom:741.714000px;}
.y54{bottom:743.152500px;}
.y145{bottom:748.095000px;}
.y84{bottom:751.279500px;}
.y267{bottom:757.081500px;}
.y196{bottom:758.254500px;}
.y1ba{bottom:759.561000px;}
.y233{bottom:760.864500px;}
.y22{bottom:761.526000px;}
.y53{bottom:764.044500px;}
.y83{bottom:765.477000px;}
.y133{bottom:770.524500px;}
.y266{bottom:776.232000px;}
.y82{bottom:779.673000px;}
.y232{bottom:780.015000px;}
.y173{bottom:780.226500px;}
.y1b9{bottom:780.453000px;}
.y21{bottom:782.418000px;}
.y52{bottom:784.936500px;}
.y195{bottom:789.874500px;}
.y265{bottom:795.382500px;}
.y231{bottom:799.165500px;}
.y81{bottom:801.072000px;}
.y1b8{bottom:801.345000px;}
.y160{bottom:802.656000px;}
.y20{bottom:803.308500px;}
.y51{bottom:805.827000px;}
.y264{bottom:814.533000px;}
.y80{bottom:815.269500px;}
.y230{bottom:818.316000px;}
.y1b7{bottom:822.235500px;}
.y1f{bottom:824.200500px;}
.y50{bottom:826.719000px;}
.y11e{bottom:832.144500px;}
.y263{bottom:833.683500px;}
.y22f{bottom:841.950000px;}
.y1b6{bottom:843.127500px;}
.y1e{bottom:845.092500px;}
.y4f{bottom:847.611000px;}
.y7f{bottom:848.308500px;}
.y262{bottom:852.834000px;}
.y1b5{bottom:864.019500px;}
.y1d{bottom:865.983000px;}
.y4e{bottom:868.503000px;}
.y261{bottom:871.984500px;}
.y22e{bottom:880.774500px;}
.y7e{bottom:884.329500px;}
.y1b4{bottom:884.910000px;}
.y4d{bottom:889.393500px;}
.y260{bottom:891.135000px;}
.y1c{bottom:905.014500px;}
.y7d{bottom:905.220000px;}
.y1b3{bottom:905.802000px;}
.y22d{bottom:909.240000px;}
.y4c{bottom:910.285500px;}
.y151{bottom:918.627150px;}
.y1b{bottom:921.154500px;}
.y7b{bottom:926.112000px;}
.y1b2{bottom:926.694000px;}
.y25f{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y7c{bottom:931.537500px;}
.y11d{bottom:936.601500px;}
.y1a{bottom:937.293000px;}
.y22c{bottom:937.704000px;}
.y150{bottom:939.594000px;}
.y7a{bottom:947.004000px;}
.y1b1{bottom:947.584500px;}
.y25e{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y19{bottom:953.433000px;}
.y176{bottom:955.680150px;}
.y175{bottom:965.316000px;}
.y22b{bottom:966.169500px;}
.y25d{bottom:967.737000px;}
.y79{bottom:967.896000px;}
.y1b0{bottom:968.476500px;}
.y49{bottom:972.960000px;}
.y289{bottom:982.158000px;}
.y22a{bottom:985.668000px;}
.y25c{bottom:986.887500px;}
.y78{bottom:988.786500px;}
.y1af{bottom:989.368500px;}
.y48{bottom:993.852000px;}
.y14f{bottom:994.308150px;}
.y288{bottom:1001.308500px;}
.y18{bottom:1001.460000px;}
.y14e{bottom:1003.944000px;}
.y25b{bottom:1006.038000px;}
.y77{bottom:1009.678500px;}
.y1ae{bottom:1010.260500px;}
.y229{bottom:1014.133500px;}
.y47{bottom:1014.742500px;}
.y287{bottom:1020.459000px;}
.y25a{bottom:1025.188500px;}
.y75{bottom:1030.570500px;}
.y1ad{bottom:1031.151000px;}
.y228{bottom:1033.632000px;}
.y46{bottom:1035.634500px;}
.y76{bottom:1035.994500px;}
.y17{bottom:1040.284500px;}
.y259{bottom:1044.339000px;}
.y1ac{bottom:1052.043000px;}
.y74{bottom:1055.944500px;}
.y45{bottom:1056.526500px;}
.y227{bottom:1062.097500px;}
.y258{bottom:1063.489500px;}
.y16{bottom:1071.621000px;}
.y1ab{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y73{bottom:1080.376500px;}
.y226{bottom:1081.596000px;}
.y257{bottom:1082.640000px;}
.y1aa{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y225{bottom:1101.094500px;}
.y256{bottom:1101.790500px;}
.y15{bottom:1102.959000px;}
.y1d1{bottom:1103.734500px;}
.y1a9{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y224{bottom:1120.593000px;}
.y255{bottom:1120.941000px;}
.y1d0{bottom:1124.625000px;}
.y41{bottom:1140.091500px;}
.y40{bottom:1200.196500px;}
.h1e{height:-591.222000px;}
.h1d{height:-570.972000px;}
.h1c{height:-550.722000px;}
.h1b{height:-530.472000px;}
.h1a{height:-510.222000px;}
.h19{height:-489.972000px;}
.h17{height:-469.812000px;}
.h16{height:-428.592000px;}
.h2e{height:20.161500px;}
.hd{height:24.889486px;}
.h30{height:27.974981px;}
.h9{height:31.526842px;}
.h18{height:33.292969px;}
.hb{height:34.430832px;}
.hc{height:35.052500px;}
.h2{height:37.993262px;}
.h1f{height:38.734848px;}
.h21{height:41.482876px;}
.h5{height:43.038432px;}
.h2f{height:43.269961px;}
.h6{height:43.421105px;}
.h12{height:43.710293px;}
.h3{height:43.815515px;}
.h15{height:44.268047px;}
.hf{height:44.279648px;}
.ha{height:48.848947px;}
.h11{height:49.939453px;}
.h8{height:51.646464px;}
.h7{height:54.276245px;}
.h10{height:55.599258px;}
.h20{height:56.269262px;}
.h13{height:62.952077px;}
.h2a{height:70.610947px;}
.h28{height:71.426947px;}
.h26{height:71.432947px;}
.h4{height:77.469696px;}
.h27{height:99.590947px;}
.h29{height:99.596947px;}
.h2b{height:100.412947px;}
.h2d{height:216.000000px;}
.h2c{height:247.533000px;}
.h22{height:329.518500px;}
.h25{height:346.074000px;}
.h24{height:352.381500px;}
.h14{height:355.533000px;}
.h23{height:357.111000px;}
.he{height:387.855000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:57.294000px;}
.w6{width:70.110000px;}
.w4{width:74.520000px;}
.w5{width:98.550000px;}
.w7{width:275.791500px;}
.we{width:375.699150px;}
.wf{width:381.091500px;}
.wc{width:535.272000px;}
.wa{width:539.214000px;}
.wb{width:547.096500px;}
.w9{width:551.826000px;}
.w3{width:576.265500px;}
.w2{width:588.877500px;}
.wd{width:756.790650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x68{left:-195.898500px;}
.xa4{left:-194.322000px;}
.xa9{left:-191.956500px;}
.xa6{left:-189.592500px;}
.xc5{left:-16.160850px;}
.xa1{left:-1.117500px;}
.x0{left:0.000000px;}
.x73{left:1.620000px;}
.x8a{left:3.901500px;}
.x84{left:6.210000px;}
.x72{left:8.460000px;}
.x75{left:15.030000px;}
.x7d{left:17.460000px;}
.x85{left:19.350000px;}
.x87{left:21.150000px;}
.x7c{left:23.940000px;}
.x76{left:27.630000px;}
.x88{left:28.710000px;}
.x69{left:31.531500px;}
.x7b{left:33.480000px;}
.xaa{left:35.473500px;}
.xa8{left:37.837500px;}
.x1{left:53.574000px;}
.x80{left:55.260000px;}
.x56{left:62.845500px;}
.x79{left:66.240000px;}
.xc4{left:67.849350px;}
.x81{left:75.091500px;}
.x86{left:77.791500px;}
.x89{left:83.911500px;}
.xd7{left:85.848000px;}
.x90{left:92.680500px;}
.x82{left:97.501500px;}
.x83{left:102.001500px;}
.x70{left:114.421500px;}
.x8c{left:139.723500px;}
.x8f{left:140.848500px;}
.x8d{left:143.122500px;}
.x8e{left:148.704000px;}
.x44{left:151.983000px;}
.xc7{left:171.039150px;}
.x8b{left:175.945500px;}
.xc9{left:179.409150px;}
.xc8{left:186.930000px;}
.x45{left:195.397500px;}
.x46{left:203.365500px;}
.xca{left:211.269150px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x47{left:254.475000px;}
.x48{left:269.143500px;}
.x4{left:281.479500px;}
.x57{left:283.762500px;}
.x5{left:286.107000px;}
.x11{left:290.421000px;}
.x6{left:293.578500px;}
.x12{left:297.892500px;}
.x13{left:305.514000px;}
.x14{left:320.458500px;}
.x49{left:325.654500px;}
.xb4{left:327.643500px;}
.xd3{left:328.687500px;}
.x58{left:329.793000px;}
.xae{left:331.894500px;}
.x2c{left:335.319000px;}
.xb5{left:338.544000px;}
.xb8{left:340.710000px;}
.xd4{left:343.632000px;}
.xaf{left:345.442500px;}
.x2d{left:350.263500px;}
.x6d{left:354.867000px;}
.x59{left:358.830000px;}
.xb0{left:362.995500px;}
.x7{left:368.281500px;}
.x6e{left:369.810000px;}
.x8{left:375.754500px;}
.xbd{left:378.946500px;}
.x62{left:383.218500px;}
.x4a{left:386.032500px;}
.xbc{left:387.654000px;}
.xbe{left:389.820000px;}
.x63{left:398.163000px;}
.x4b{left:400.699500px;}
.x5a{left:402.049500px;}
.x34{left:406.878000px;}
.x5b{left:411.753000px;}
.x66{left:415.369500px;}
.x40{left:418.444500px;}
.x35{left:421.822500px;}
.x67{left:422.841000px;}
.xc2{left:428.134500px;}
.x41{left:433.387500px;}
.x6a{left:436.914000px;}
.x64{left:438.813000px;}
.x17{left:440.244000px;}
.xc6{left:443.548500px;}
.xc3{left:446.029500px;}
.x18{left:447.715500px;}
.xbf{left:448.822500px;}
.x77{left:452.641500px;}
.x65{left:453.757500px;}
.x30{left:455.355000px;}
.x4c{left:457.210500px;}
.xc0{left:460.228500px;}
.x95{left:461.716500px;}
.x21{left:462.772500px;}
.xc1{left:467.035500px;}
.x96{left:469.189500px;}
.x31{left:470.298000px;}
.x4d{left:471.877500px;}
.xb6{left:483.892500px;}
.x5c{left:497.260500px;}
.xb9{left:500.421000px;}
.x5d{left:501.433500px;}
.x5e{left:506.964000px;}
.x97{left:510.112500px;}
.x26{left:513.225000px;}
.x98{left:517.584000px;}
.xb7{left:518.625000px;}
.xac{left:521.026500px;}
.x71{left:525.382500px;}
.x27{left:528.168000px;}
.xab{left:530.471520px;}
.xa3{left:533.120250px;}
.x7a{left:535.261500px;}
.x4e{left:537.657000px;}
.xa7{left:539.767500px;}
.xad{left:541.323000px;}
.x9{left:545.301000px;}
.xa2{left:547.883310px;}
.xa5{left:550.248810px;}
.xa{left:552.772500px;}
.x19{left:558.960000px;}
.x5f{left:564.984000px;}
.x1a{left:566.431500px;}
.x9e{left:567.859500px;}
.x7f{left:569.731500px;}
.x3e{left:571.557000px;}
.x60{left:579.927000px;}
.x9d{left:581.817000px;}
.x6f{left:585.121860px;}
.x3f{left:586.501500px;}
.x4f{left:588.766500px;}
.x15{left:596.998500px;}
.x50{left:598.035000px;}
.x74{left:599.902500px;}
.x9f{left:606.355500px;}
.x16{left:611.943000px;}
.xcb{left:614.451000px;}
.xa0{left:621.298500px;}
.x2e{left:624.372000px;}
.xcc{left:629.394000px;}
.xcf{left:632.200500px;}
.xcd{left:633.205500px;}
.x2f{left:639.316500px;}
.x99{left:640.554000px;}
.xf{left:641.689500px;}
.xd0{left:647.031000px;}
.xce{left:648.148500px;}
.x10{left:649.161000px;}
.x51{left:652.770000px;}
.x52{left:658.413000px;}
.xd1{left:662.080500px;}
.x36{left:664.482000px;}
.x1b{left:665.887500px;}
.x93{left:667.656000px;}
.x32{left:669.520500px;}
.x3a{left:671.973000px;}
.x3b{left:678.780000px;}
.x1c{left:680.832000px;}
.x33{left:684.465000px;}
.x94{left:691.089000px;}
.x78{left:698.452500px;}
.x6b{left:704.428500px;}
.x3c{left:708.513000px;}
.x53{left:709.522500px;}
.x54{left:710.691000px;}
.x3d{left:715.320000px;}
.x6c{left:719.373000px;}
.xb{left:722.418000px;}
.x9c{left:723.897000px;}
.x2a{left:725.272500px;}
.xc{left:729.891000px;}
.xd{left:737.212500px;}
.x2b{left:740.217000px;}
.xba{left:742.617000px;}
.xe{left:744.685500px;}
.xd2{left:746.302500px;}
.x92{left:752.337000px;}
.x55{left:754.767000px;}
.x37{left:755.919000px;}
.xbb{left:757.560000px;}
.xb2{left:760.248000px;}
.x1d{left:765.216000px;}
.x7e{left:768.562500px;}
.xb3{left:772.539000px;}
.xb1{left:774.172500px;}
.x1e{left:780.159000px;}
.xd5{left:782.062500px;}
.x1f{left:783.858000px;}
.x38{left:786.010500px;}
.x24{left:787.203000px;}
.x61{left:792.477000px;}
.x91{left:793.992000px;}
.x20{left:798.802500px;}
.x39{left:800.953500px;}
.x25{left:802.147500px;}
.x9a{left:807.462000px;}
.x22{left:817.116000px;}
.x28{left:818.893500px;}
.x42{left:820.104000px;}
.x9b{left:822.405000px;}
.x43{left:826.911000px;}
.x23{left:832.060500px;}
.x29{left:833.838000px;}
.xd6{left:837.972000px;}
@media print{
.vd{vertical-align:-13.029333pt;}
.v1{vertical-align:-10.624000pt;}
.va{vertical-align:-9.322667pt;}
.v2{vertical-align:-8.058667pt;}
.v5{vertical-align:-6.378667pt;}
.v9{vertical-align:-1.114667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.378667pt;}
.v3{vertical-align:8.058667pt;}
.v8{vertical-align:13.440000pt;}
.v4{vertical-align:15.429333pt;}
.vb{vertical-align:17.354667pt;}
.v7{vertical-align:19.290667pt;}
.vc{vertical-align:45.104000pt;}
.ls2c{letter-spacing:-0.374080pt;}
.ls1e{letter-spacing:-0.320640pt;}
.ls2d{letter-spacing:-0.267200pt;}
.ls20{letter-spacing:-0.213760pt;}
.ls1f{letter-spacing:-0.160320pt;}
.ls2b{letter-spacing:-0.106880pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.085120pt;}
.ls1d{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000539pt;}
.ls49{letter-spacing:0.000711pt;}
.ls48{letter-spacing:0.003230pt;}
.ls41{letter-spacing:0.004925pt;}
.ls40{letter-spacing:0.021376pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.053440pt;}
.ls26{letter-spacing:0.080000pt;}
.ls3d{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.106880pt;}
.ls3c{letter-spacing:0.124480pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.160320pt;}
.ls14{letter-spacing:0.170240pt;}
.ls18{letter-spacing:0.203072pt;}
.lsa{letter-spacing:0.394436pt;}
.ls8{letter-spacing:0.399769pt;}
.ls22{letter-spacing:0.427520pt;}
.ls27{letter-spacing:0.576078pt;}
.ls17{letter-spacing:1.015360pt;}
.ls19{letter-spacing:1.336000pt;}
.ls33{letter-spacing:2.618560pt;}
.ls30{letter-spacing:2.939200pt;}
.ls9{letter-spacing:3.054400pt;}
.lsb{letter-spacing:3.059733pt;}
.ls29{letter-spacing:3.123467pt;}
.ls2f{letter-spacing:3.901120pt;}
.ls25{letter-spacing:5.183680pt;}
.ls3e{letter-spacing:5.504320pt;}
.ls3f{letter-spacing:5.520352pt;}
.ls1a{letter-spacing:7.107520pt;}
.ls0{letter-spacing:7.437600pt;}
.ls36{letter-spacing:9.872078pt;}
.ls39{letter-spacing:9.896000pt;}
.ls37{letter-spacing:9.897600pt;}
.ls32{letter-spacing:10.469760pt;}
.ls2{letter-spacing:10.626533pt;}
.ls11{letter-spacing:10.968429pt;}
.ls3b{letter-spacing:11.317514pt;}
.ls47{letter-spacing:11.674732pt;}
.lsd{letter-spacing:11.875717pt;}
.ls45{letter-spacing:11.954133pt;}
.ls46{letter-spacing:11.959467pt;}
.ls3a{letter-spacing:12.273923pt;}
.ls10{letter-spacing:12.323096pt;}
.lsc{letter-spacing:13.155234pt;}
.ls23{letter-spacing:13.177199pt;}
.ls4{letter-spacing:13.183134pt;}
.ls43{letter-spacing:13.230333pt;}
.ls7{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.389734pt;}
.ls44{letter-spacing:13.733527pt;}
.ls4a{letter-spacing:13.759833pt;}
.ls13{letter-spacing:13.921073pt;}
.ls12{letter-spacing:14.134451pt;}
.ls35{letter-spacing:14.293010pt;}
.ls28{letter-spacing:14.613867pt;}
.ls4b{letter-spacing:15.391205pt;}
.lsf{letter-spacing:15.395096pt;}
.ls5{letter-spacing:15.780758pt;}
.ls24{letter-spacing:15.942400pt;}
.ls2e{letter-spacing:17.427908pt;}
.lse{letter-spacing:18.588580pt;}
.ls38{letter-spacing:23.181333pt;}
.ls1{letter-spacing:25.292137pt;}
.ls31{letter-spacing:2178.178240pt;}
.wsa1{word-spacing:-13.520320pt;}
.ws9c{word-spacing:-13.466880pt;}
.ws9f{word-spacing:-13.413440pt;}
.ws6b{word-spacing:-13.360000pt;}
.ws67{word-spacing:-13.306560pt;}
.ws15{word-spacing:-13.283467pt;}
.ws9e{word-spacing:-13.253120pt;}
.ws69{word-spacing:-13.199680pt;}
.ws6a{word-spacing:-13.146240pt;}
.wsa0{word-spacing:-13.092800pt;}
.ws68{word-spacing:-13.039360pt;}
.ws9d{word-spacing:-12.048000pt;}
.ws66{word-spacing:-12.000000pt;}
.wsa4{word-spacing:-11.955200pt;}
.ws65{word-spacing:-10.810240pt;}
.ws64{word-spacing:-10.640000pt;}
.ws24{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.ws9b{word-spacing:-8.000000pt;}
.ws11a{word-spacing:-2.778880pt;}
.ws119{word-spacing:-2.725440pt;}
.ws6d{word-spacing:-2.709827pt;}
.wsda{word-spacing:-2.656693pt;}
.ws118{word-spacing:-2.565120pt;}
.wsc4{word-spacing:-2.497292pt;}
.ws97{word-spacing:-2.458240pt;}
.ws108{word-spacing:-2.438861pt;}
.ws8c{word-spacing:-2.404800pt;}
.ws121{word-spacing:-2.337890pt;}
.ws5c{word-spacing:-2.286933pt;}
.wsc5{word-spacing:-2.284756pt;}
.ws73{word-spacing:-2.178489pt;}
.wsb5{word-spacing:-2.137600pt;}
.ws111{word-spacing:-2.084160pt;}
.wsf2{word-spacing:-2.065698pt;}
.wsf1{word-spacing:-2.060365pt;}
.wse8{word-spacing:-2.059631pt;}
.wse9{word-spacing:-2.059179pt;}
.wse7{word-spacing:-2.058650pt;}
.ws5f{word-spacing:-2.019087pt;}
.ws110{word-spacing:-1.977280pt;}
.ws19{word-spacing:-1.965953pt;}
.wsfc{word-spacing:-1.912819pt;}
.ws0{word-spacing:-1.859680pt;}
.ws5a{word-spacing:-1.806551pt;}
.wsdc{word-spacing:-1.776000pt;}
.ws117{word-spacing:-1.763520pt;}
.ws128{word-spacing:-1.753418pt;}
.wsdd{word-spacing:-1.680000pt;}
.ws136{word-spacing:-1.625907pt;}
.ws4c{word-spacing:-1.594016pt;}
.ws1a{word-spacing:-1.487748pt;}
.ws12e{word-spacing:-1.434624pt;}
.wsf4{word-spacing:-1.328347pt;}
.ws7f{word-spacing:-1.175680pt;}
.ws6e{word-spacing:-1.168945pt;}
.ws88{word-spacing:-1.122240pt;}
.wsce{word-spacing:-1.115811pt;}
.ws96{word-spacing:-1.015360pt;}
.ws1b{word-spacing:-1.009543pt;}
.ws14{word-spacing:-0.956410pt;}
.wsb9{word-spacing:-0.855040pt;}
.ws47{word-spacing:-0.850142pt;}
.wsb8{word-spacing:-0.801600pt;}
.ws46{word-spacing:-0.797008pt;}
.wsb7{word-spacing:-0.694720pt;}
.ws2b{word-spacing:-0.690740pt;}
.ws3e{word-spacing:-0.637606pt;}
.ws127{word-spacing:-0.584473pt;}
.wsba{word-spacing:-0.534400pt;}
.wsc8{word-spacing:-0.531339pt;}
.ws8a{word-spacing:-0.480960pt;}
.ws36{word-spacing:-0.478205pt;}
.ws139{word-spacing:-0.430387pt;}
.ws8f{word-spacing:-0.427520pt;}
.ws63{word-spacing:-0.425071pt;}
.wsbb{word-spacing:-0.374080pt;}
.wse{word-spacing:-0.371937pt;}
.ws86{word-spacing:-0.320640pt;}
.ws26{word-spacing:-0.318803pt;}
.ws13b{word-spacing:-0.286925pt;}
.ws18{word-spacing:-0.265669pt;}
.ws79{word-spacing:-0.255360pt;}
.ws12c{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.ws10c{word-spacing:-0.192000pt;}
.ws129{word-spacing:-0.191283pt;}
.ws78{word-spacing:-0.170240pt;}
.wsae{word-spacing:-0.160320pt;}
.ws2e{word-spacing:-0.159402pt;}
.wsad{word-spacing:-0.144000pt;}
.ws13c{word-spacing:-0.143462pt;}
.ws57{word-spacing:-0.127602pt;}
.ws81{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.106268pt;}
.ws13d{word-spacing:-0.095642pt;}
.ws77{word-spacing:-0.085120pt;}
.ws8d{word-spacing:-0.053440pt;}
.wsd{word-spacing:-0.053134pt;}
.wse1{word-spacing:-0.048000pt;}
.wsa3{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws6{word-spacing:0.000000pt;}
.ws13f{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.ws87{word-spacing:0.053440pt;}
.ws7a{word-spacing:0.085120pt;}
.wsd9{word-spacing:0.095642pt;}
.wsd1{word-spacing:0.096000pt;}
.ws9{word-spacing:0.106268pt;}
.wsb0{word-spacing:0.106880pt;}
.ws12a{word-spacing:0.143462pt;}
.ws7d{word-spacing:0.144000pt;}
.wsa{word-spacing:0.159402pt;}
.ws85{word-spacing:0.160320pt;}
.ws14d{word-spacing:0.191283pt;}
.ws1e{word-spacing:0.212535pt;}
.ws8e{word-spacing:0.213760pt;}
.ws134{word-spacing:0.239104pt;}
.wsf{word-spacing:0.265669pt;}
.wsbc{word-spacing:0.267200pt;}
.ws138{word-spacing:0.286925pt;}
.wsb{word-spacing:0.318803pt;}
.wsb6{word-spacing:0.320640pt;}
.ws38{word-spacing:0.371937pt;}
.wsaf{word-spacing:0.374080pt;}
.ws5{word-spacing:0.375335pt;}
.ws49{word-spacing:0.425071pt;}
.wsdf{word-spacing:0.427520pt;}
.ws3f{word-spacing:0.478205pt;}
.ws80{word-spacing:0.480960pt;}
.ws2d{word-spacing:0.531339pt;}
.wsc0{word-spacing:0.584473pt;}
.ws61{word-spacing:0.637606pt;}
.ws20{word-spacing:0.690740pt;}
.ws2c{word-spacing:0.743874pt;}
.ws8b{word-spacing:0.748160pt;}
.ws4a{word-spacing:0.797008pt;}
.ws116{word-spacing:0.801600pt;}
.ws74{word-spacing:0.850142pt;}
.ws3b{word-spacing:0.903276pt;}
.ws62{word-spacing:0.956410pt;}
.ws6c{word-spacing:1.004237pt;}
.ws42{word-spacing:1.009543pt;}
.ws30{word-spacing:1.062677pt;}
.ws91{word-spacing:1.068800pt;}
.wsb3{word-spacing:1.122240pt;}
.wsc6{word-spacing:1.168945pt;}
.ws124{word-spacing:1.222079pt;}
.ws3c{word-spacing:1.275213pt;}
.ws12b{word-spacing:1.291162pt;}
.wsc2{word-spacing:1.328347pt;}
.ws92{word-spacing:1.336000pt;}
.ws75{word-spacing:1.381481pt;}
.ws146{word-spacing:1.386803pt;}
.ws93{word-spacing:1.389440pt;}
.ws120{word-spacing:1.434614pt;}
.ws15a{word-spacing:1.482445pt;}
.ws12{word-spacing:1.487748pt;}
.ws94{word-spacing:1.496320pt;}
.ws1c{word-spacing:1.540882pt;}
.ws12f{word-spacing:1.578086pt;}
.wscc{word-spacing:1.594016pt;}
.ws152{word-spacing:1.625907pt;}
.ws2a{word-spacing:1.647150pt;}
.wse0{word-spacing:1.656640pt;}
.wsd2{word-spacing:1.710080pt;}
.ws123{word-spacing:1.753418pt;}
.ws1d{word-spacing:1.806551pt;}
.ws115{word-spacing:1.816960pt;}
.ws148{word-spacing:1.817190pt;}
.wsf6{word-spacing:1.859685pt;}
.ws29{word-spacing:1.912819pt;}
.ws103{word-spacing:1.965953pt;}
.wsb1{word-spacing:1.977280pt;}
.wsf5{word-spacing:2.019087pt;}
.wse4{word-spacing:2.030720pt;}
.ws41{word-spacing:2.072221pt;}
.wsc1{word-spacing:2.125355pt;}
.ws40{word-spacing:2.284756pt;}
.ws4f{word-spacing:2.337890pt;}
.ws55{word-spacing:2.337896pt;}
.ws7e{word-spacing:2.351360pt;}
.ws71{word-spacing:2.391024pt;}
.ws150{word-spacing:2.391040pt;}
.wsf9{word-spacing:2.444158pt;}
.ws37{word-spacing:2.497292pt;}
.wsd7{word-spacing:2.511680pt;}
.ws144{word-spacing:2.534502pt;}
.ws4b{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws10a{word-spacing:2.603559pt;}
.ws14e{word-spacing:2.630144pt;}
.ws12d{word-spacing:2.631784pt;}
.ws2f{word-spacing:2.656693pt;}
.ws82{word-spacing:2.672000pt;}
.ws14a{word-spacing:2.677965pt;}
.ws104{word-spacing:2.709827pt;}
.ws109{word-spacing:2.762961pt;}
.ws84{word-spacing:2.778880pt;}
.ws4e{word-spacing:2.816095pt;}
.ws137{word-spacing:2.862498pt;}
.ws15e{word-spacing:2.862942pt;}
.ws159{word-spacing:2.863198pt;}
.ws151{word-spacing:2.863659pt;}
.ws140{word-spacing:2.864862pt;}
.ws83{word-spacing:2.885760pt;}
.ws13{word-spacing:2.915814pt;}
.ws3a{word-spacing:2.922363pt;}
.wse3{word-spacing:2.939200pt;}
.ws17{word-spacing:2.975497pt;}
.ws10f{word-spacing:2.992640pt;}
.wsd6{word-spacing:3.099520pt;}
.ws15f{word-spacing:3.108352pt;}
.wsdb{word-spacing:3.134898pt;}
.ws5b{word-spacing:3.188032pt;}
.wsbe{word-spacing:3.241166pt;}
.ws106{word-spacing:3.294300pt;}
.ws114{word-spacing:3.313280pt;}
.ws8{word-spacing:3.352480pt;}
.ws125{word-spacing:3.400567pt;}
.ws14c{word-spacing:3.443098pt;}
.wsbd{word-spacing:3.506835pt;}
.wsd0{word-spacing:3.559969pt;}
.wse2{word-spacing:3.580480pt;}
.ws35{word-spacing:3.613103pt;}
.ws15d{word-spacing:3.634381pt;}
.ws107{word-spacing:3.666237pt;}
.ws10b{word-spacing:3.772505pt;}
.wsd3{word-spacing:3.794240pt;}
.ws16{word-spacing:3.825664pt;}
.wsd5{word-spacing:3.847680pt;}
.wsc{word-spacing:3.878772pt;}
.ws95{word-spacing:3.901120pt;}
.wsfa{word-spacing:3.931906pt;}
.ws11b{word-spacing:3.954560pt;}
.ws132{word-spacing:3.969126pt;}
.wsa9{word-spacing:3.985040pt;}
.wscd{word-spacing:4.038174pt;}
.ws60{word-spacing:4.046630pt;}
.ws43{word-spacing:4.091308pt;}
.ws3d{word-spacing:4.144442pt;}
.wsd4{word-spacing:4.221760pt;}
.wsf8{word-spacing:4.250709pt;}
.ws112{word-spacing:4.275200pt;}
.ws126{word-spacing:4.410111pt;}
.wsaa{word-spacing:4.516379pt;}
.ws90{word-spacing:4.542400pt;}
.ws7c{word-spacing:4.608000pt;}
.ws7b{word-spacing:4.656000pt;}
.wsb2{word-spacing:4.702720pt;}
.wsbf{word-spacing:4.728914pt;}
.ws89{word-spacing:4.863040pt;}
.ws34{word-spacing:4.888316pt;}
.ws45{word-spacing:4.994583pt;}
.ws76{word-spacing:5.047717pt;}
.ws48{word-spacing:5.100851pt;}
.ws10e{word-spacing:5.183680pt;}
.wsac{word-spacing:5.237120pt;}
.ws105{word-spacing:5.260253pt;}
.wsf7{word-spacing:5.313387pt;}
.wsab{word-spacing:5.344000pt;}
.wsa8{word-spacing:5.366521pt;}
.ws15b{word-spacing:5.403750pt;}
.ws135{word-spacing:5.451571pt;}
.ws4d{word-spacing:5.472788pt;}
.wsb4{word-spacing:5.504320pt;}
.ws10d{word-spacing:5.557760pt;}
.wsfb{word-spacing:5.579056pt;}
.wscf{word-spacing:5.632190pt;}
.ws113{word-spacing:5.664640pt;}
.ws6f{word-spacing:5.685324pt;}
.ws44{word-spacing:5.791591pt;}
.ws70{word-spacing:5.844725pt;}
.wsde{word-spacing:5.878400pt;}
.ws39{word-spacing:6.004127pt;}
.ws122{word-spacing:6.163529pt;}
.ws9a{word-spacing:6.199040pt;}
.ws72{word-spacing:6.269796pt;}
.wse5{word-spacing:6.588599pt;}
.ws11f{word-spacing:6.694867pt;}
.ws11e{word-spacing:6.748001pt;}
.ws99{word-spacing:7.428160pt;}
.ws98{word-spacing:7.481600pt;}
.wsd8{word-spacing:7.748800pt;}
.ws23{word-spacing:10.587492pt;}
.ws50{word-spacing:11.381350pt;}
.ws59{word-spacing:11.423781pt;}
.ws13a{word-spacing:11.476992pt;}
.ws2{word-spacing:11.492822pt;}
.ws52{word-spacing:11.859558pt;}
.ws153{word-spacing:11.901500pt;}
.ws141{word-spacing:11.904333pt;}
.ws158{word-spacing:11.904734pt;}
.ws149{word-spacing:11.906031pt;}
.ws130{word-spacing:11.907379pt;}
.ws133{word-spacing:12.146483pt;}
.wsc9{word-spacing:12.698994pt;}
.ws27{word-spacing:12.964663pt;}
.wsca{word-spacing:13.017797pt;}
.ws58{word-spacing:13.070931pt;}
.ws32{word-spacing:13.124065pt;}
.ws22{word-spacing:13.177199pt;}
.ws33{word-spacing:13.230333pt;}
.ws147{word-spacing:13.342003pt;}
.ws11c{word-spacing:13.549136pt;}
.ws11d{word-spacing:13.602270pt;}
.ws53{word-spacing:13.647898pt;}
.ws56{word-spacing:13.653231pt;}
.ws21{word-spacing:13.921073pt;}
.ws5d{word-spacing:14.113948pt;}
.ws31{word-spacing:14.293010pt;}
.wsc7{word-spacing:14.399278pt;}
.ws156{word-spacing:14.633165pt;}
.ws145{word-spacing:14.768683pt;}
.ws155{word-spacing:14.769920pt;}
.ws13e{word-spacing:14.772540pt;}
.ws154{word-spacing:14.773521pt;}
.ws15c{word-spacing:14.774007pt;}
.ws14f{word-spacing:14.774118pt;}
.ws143{word-spacing:14.775253pt;}
.ws142{word-spacing:14.776627pt;}
.ws157{word-spacing:14.967910pt;}
.ws28{word-spacing:15.143152pt;}
.ws131{word-spacing:15.828685pt;}
.wsc3{word-spacing:16.418365pt;}
.wscb{word-spacing:17.321641pt;}
.ws1{word-spacing:19.715148pt;}
.ws14b{word-spacing:23.288730pt;}
.ws51{word-spacing:148.860214pt;}
.ws54{word-spacing:180.740614pt;}
.wsa2{word-spacing:235.153195pt;}
.wsa7{word-spacing:293.426261pt;}
.wsa6{word-spacing:295.580800pt;}
.wsa5{word-spacing:301.318861pt;}
.wsf0{word-spacing:430.410035pt;}
.wsf3{word-spacing:434.161135pt;}
.wsea{word-spacing:444.016469pt;}
.wsef{word-spacing:492.902989pt;}
.wseb{word-spacing:558.341743pt;}
.wse6{word-spacing:560.878404pt;}
.wsee{word-spacing:565.952469pt;}
.wsec{word-spacing:567.503488pt;}
.wsed{word-spacing:590.977135pt;}
.ws5e{word-spacing:663.216924pt;}
.ws101{word-spacing:870.434202pt;}
.wsff{word-spacing:873.446912pt;}
.wsfd{word-spacing:883.058893pt;}
.ws100{word-spacing:906.060698pt;}
.wsfe{word-spacing:937.048576pt;}
.ws102{word-spacing:944.747725pt;}
._4a{margin-left:-36.012457pt;}
._4{margin-left:-12.337766pt;}
._a{margin-left:-6.631110pt;}
._15{margin-left:-5.727835pt;}
._1{margin-left:-4.797974pt;}
._9{margin-left:-3.549346pt;}
._11{margin-left:-2.487894pt;}
._3{margin-left:-1.338970pt;}
._18{width:1.343813pt;}
._29{width:2.677954pt;}
._31{width:4.379706pt;}
._30{width:5.327968pt;}
._32{width:6.246541pt;}
._4e{width:7.209056pt;}
._0{width:9.670336pt;}
._19{width:10.792953pt;}
._50{width:12.110533pt;}
._b{width:13.230333pt;}
._10{width:14.718081pt;}
._14{width:15.621357pt;}
._8{width:16.577766pt;}
._d{width:18.171782pt;}
._2{width:19.343872pt;}
._16{width:20.626563pt;}
._c{width:21.519216pt;}
._34{width:23.061323pt;}
._33{width:24.175909pt;}
._13{width:25.993084pt;}
._49{width:27.002627pt;}
._4f{width:28.171572pt;}
._5{width:29.648896pt;}
._12{width:32.103478pt;}
._17{width:33.644361pt;}
._6{width:48.378268pt;}
._51{width:54.993920pt;}
._7{width:61.660860pt;}
._23{width:78.704249pt;}
._26{width:82.633997pt;}
._1a{width:83.696677pt;}
._28{width:88.606611pt;}
._27{width:92.283131pt;}
._22{width:102.909931pt;}
._21{width:103.930104pt;}
._36{width:105.397043pt;}
._1b{width:111.496386pt;}
._2d{width:113.794353pt;}
._2e{width:124.163531pt;}
._20{width:132.707478pt;}
._25{width:140.316267pt;}
._2a{width:144.181843pt;}
._37{width:159.386726pt;}
._1f{width:161.569867pt;}
._1c{width:170.113814pt;}
._2c{width:172.154160pt;}
._24{width:178.700269pt;}
._1e{width:180.740614pt;}
._1d{width:199.953869pt;}
._2b{width:209.775611pt;}
._38{width:226.001101pt;}
._3e{width:230.659311pt;}
._3f{width:233.126400pt;}
._47{width:290.982630pt;}
._44{width:293.110929pt;}
._3b{width:298.957483pt;}
._41{width:310.889088pt;}
._48{width:350.000435pt;}
._4d{width:365.733478pt;}
._3d{width:378.119066pt;}
._43{width:388.601523pt;}
._46{width:405.679741pt;}
._3a{width:408.007066pt;}
._39{width:437.703782pt;}
._35{width:502.979174pt;}
._4c{width:527.128678pt;}
._3c{width:573.415117pt;}
._45{width:576.575386pt;}
._40{width:585.517875pt;}
._42{width:604.502733pt;}
._e{width:1630.669299pt;}
._2f{width:2198.479360pt;}
._4b{width:2213.357299pt;}
._f{width:2234.610633pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:32.000000pt;}
.fs8{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fs5{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs6{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fsf{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y1fd{bottom:-725.614587pt;}
.y1fc{bottom:-706.897227pt;}
.y1fb{bottom:-688.260027pt;}
.y1fa{bottom:-669.622827pt;}
.y1f9{bottom:-650.905467pt;}
.y172{bottom:-639.096960pt;}
.y1f8{bottom:-632.268267pt;}
.y171{bottom:-620.459760pt;}
.y1f7{bottom:-613.631067pt;}
.yc4{bottom:-604.059200pt;}
.y170{bottom:-601.742400pt;}
.y1f6{bottom:-594.913707pt;}
.y144{bottom:-586.334693pt;}
.yc3{bottom:-585.341840pt;}
.y16f{bottom:-583.105200pt;}
.y1f5{bottom:-576.276507pt;}
.y143{bottom:-567.617333pt;}
.yc2{bottom:-566.704640pt;}
.y16e{bottom:-564.468000pt;}
.y1f4{bottom:-557.639307pt;}
.yc1{bottom:-548.067440pt;}
.y102{bottom:-539.530667pt;}
.y1f3{bottom:-538.921947pt;}
.y142{bottom:-533.377333pt;}
.y16d{bottom:-530.148000pt;}
.yc0{bottom:-529.350080pt;}
.y101{bottom:-521.530667pt;}
.y1f2{bottom:-520.284747pt;}
.ybf{bottom:-510.712880pt;}
.y141{bottom:-510.315493pt;}
.y16c{bottom:-507.088160pt;}
.y100{bottom:-503.530667pt;}
.y1f1{bottom:-501.647547pt;}
.ybe{bottom:-492.075680pt;}
.yff{bottom:-485.530667pt;}
.y1f0{bottom:-482.930187pt;}
.ybd{bottom:-473.358320pt;}
.yfe{bottom:-467.530667pt;}
.y1ef{bottom:-464.292987pt;}
.ybc{bottom:-454.721120pt;}
.yfd{bottom:-449.530667pt;}
.y1ee{bottom:-445.655787pt;}
.ybb{bottom:-436.083920pt;}
.yfb{bottom:-431.530667pt;}
.yfc{bottom:-428.170667pt;}
.y1ed{bottom:-426.938427pt;}
.yba{bottom:-417.366560pt;}
.yfa{bottom:-412.890667pt;}
.y1ec{bottom:-408.301227pt;}
.yf8{bottom:-403.930667pt;}
.yb9{bottom:-398.729360pt;}
.yf9{bottom:-394.890667pt;}
.y1eb{bottom:-389.664027pt;}
.yb8{bottom:-380.092160pt;}
.y1ea{bottom:-370.946667pt;}
.yf7{bottom:-368.010667pt;}
.yb7{bottom:-361.374800pt;}
.y1e9{bottom:-352.309467pt;}
.yb6{bottom:-342.737600pt;}
.y1e8{bottom:-333.672267pt;}
.yf6{bottom:-332.860107pt;}
.yb5{bottom:-324.100400pt;}
.y1e7{bottom:-314.954907pt;}
.yf5{bottom:-314.222907pt;}
.yb4{bottom:-305.383040pt;}
.y1e6{bottom:-296.317707pt;}
.yf4{bottom:-295.585707pt;}
.yb3{bottom:-286.745840pt;}
.y1e5{bottom:-277.680507pt;}
.yf3{bottom:-276.868347pt;}
.yb2{bottom:-268.108640pt;}
.y1e4{bottom:-258.963147pt;}
.yf2{bottom:-258.231147pt;}
.yb1{bottom:-249.391280pt;}
.y1e3{bottom:-240.325947pt;}
.yf1{bottom:-239.593947pt;}
.yb0{bottom:-230.754080pt;}
.y1e2{bottom:-221.688747pt;}
.yf0{bottom:-220.876587pt;}
.yaf{bottom:-212.116880pt;}
.y1e1{bottom:-202.971387pt;}
.yef{bottom:-202.239387pt;}
.yae{bottom:-193.399520pt;}
.y1e0{bottom:-184.334187pt;}
.yee{bottom:-183.602187pt;}
.y16b{bottom:-174.771520pt;}
.yad{bottom:-174.762320pt;}
.y140{bottom:-172.320853pt;}
.y1df{bottom:-165.696987pt;}
.yed{bottom:-164.884827pt;}
.yac{bottom:-156.125120pt;}
.y16a{bottom:-156.054160pt;}
.y13f{bottom:-153.603493pt;}
.y1de{bottom:-146.979627pt;}
.yec{bottom:-146.247627pt;}
.y169{bottom:-137.416960pt;}
.yab{bottom:-137.407760pt;}
.y13e{bottom:-134.966293pt;}
.y186{bottom:-134.570293pt;}
.y1dd{bottom:-128.342427pt;}
.yeb{bottom:-127.610427pt;}
.y168{bottom:-118.779760pt;}
.yaa{bottom:-118.770560pt;}
.y13d{bottom:-116.329093pt;}
.y185{bottom:-115.933093pt;}
.y1dc{bottom:-109.705227pt;}
.yea{bottom:-108.893067pt;}
.ya9{bottom:-100.133360pt;}
.y167{bottom:-100.062400pt;}
.y13c{bottom:-97.611733pt;}
.y184{bottom:-97.215733pt;}
.y1db{bottom:-90.987867pt;}
.ye9{bottom:-90.255867pt;}
.y166{bottom:-81.425200pt;}
.ya8{bottom:-81.416000pt;}
.y13b{bottom:-78.974533pt;}
.y183{bottom:-78.578533pt;}
.y15e{bottom:-77.602693pt;}
.y1da{bottom:-72.350667pt;}
.ye8{bottom:-67.610667pt;}
.y165{bottom:-62.788000pt;}
.y13a{bottom:-60.337333pt;}
.y182{bottom:-59.941333pt;}
.y15d{bottom:-58.885333pt;}
.ya7{bottom:-47.172000pt;}
.y1d9{bottom:-38.110667pt;}
.ye7{bottom:-33.290667pt;}
.ya6{bottom:-28.536000pt;}
.y164{bottom:-28.468000pt;}
.y139{bottom:-26.017333pt;}
.y181{bottom:-25.621333pt;}
.y15c{bottom:-24.645333pt;}
.y1d8{bottom:-19.390667pt;}
.ye6{bottom:-10.241147pt;}
.y163{bottom:-5.508000pt;}
.ya5{bottom:-5.496000pt;}
.y138{bottom:-2.968213pt;}
.y180{bottom:-2.561493pt;}
.y15b{bottom:-1.583493pt;}
.y0{bottom:0.000000pt;}
.y1d7{bottom:4.000000pt;}
.y3f{bottom:40.818667pt;}
.y3e{bottom:88.640000pt;}
.y194{bottom:89.066667pt;}
.y14{bottom:89.118667pt;}
.y20f{bottom:90.705333pt;}
.y286{bottom:94.188000pt;}
.y11c{bottom:94.281333pt;}
.ye0{bottom:100.097333pt;}
.y21a{bottom:102.117333pt;}
.y72{bottom:103.473333pt;}
.y13{bottom:105.020000pt;}
.y3d{bottom:107.209333pt;}
.y193{bottom:107.637333pt;}
.ya1{bottom:108.788000pt;}
.y20e{bottom:109.276000pt;}
.y285{bottom:111.210667pt;}
.y11b{bottom:112.852000pt;}
.y254{bottom:114.573333pt;}
.ydf{bottom:118.668000pt;}
.y219{bottom:120.688000pt;}
.y12{bottom:120.920000pt;}
.y71{bottom:122.042667pt;}
.y132{bottom:123.782667pt;}
.y3c{bottom:125.780000pt;}
.y192{bottom:126.208000pt;}
.ya0{bottom:127.358667pt;}
.y20d{bottom:127.845333pt;}
.y284{bottom:128.233333pt;}
.y11a{bottom:131.422667pt;}
.y253{bottom:131.596000pt;}
.y11{bottom:136.820000pt;}
.yde{bottom:137.238667pt;}
.y218{bottom:139.258667pt;}
.y70{bottom:140.613333pt;}
.y131{bottom:142.353333pt;}
.y3b{bottom:144.350667pt;}
.y191{bottom:144.777333pt;}
.y283{bottom:145.256000pt;}
.y9f{bottom:145.929333pt;}
.y20c{bottom:146.416000pt;}
.y252{bottom:148.618667pt;}
.y119{bottom:149.992000pt;}
.y10{bottom:152.721333pt;}
.ydd{bottom:155.809333pt;}
.y217{bottom:157.828000pt;}
.y6f{bottom:159.184000pt;}
.y130{bottom:160.924000pt;}
.y282{bottom:162.278667pt;}
.y3a{bottom:162.920000pt;}
.y190{bottom:163.348000pt;}
.y15f{bottom:163.500000pt;}
.y9e{bottom:164.498667pt;}
.y20b{bottom:164.986667pt;}
.y251{bottom:165.641333pt;}
.y118{bottom:168.562667pt;}
.yf{bottom:168.621333pt;}
.ydc{bottom:174.378667pt;}
.y216{bottom:176.398667pt;}
.y6e{bottom:177.753333pt;}
.y281{bottom:179.301333pt;}
.y12f{bottom:179.493333pt;}
.y39{bottom:181.490667pt;}
.y18f{bottom:181.918667pt;}
.y250{bottom:182.664000pt;}
.y9d{bottom:183.069333pt;}
.y14d{bottom:183.437333pt;}
.y20a{bottom:183.557333pt;}
.ye{bottom:184.521333pt;}
.y117{bottom:187.133333pt;}
.ydb{bottom:192.949333pt;}
.y215{bottom:194.969333pt;}
.y6d{bottom:196.324000pt;}
.y12e{bottom:198.064000pt;}
.y24f{bottom:199.688000pt;}
.y38{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.y18e{bottom:200.488000pt;}
.y9c{bottom:201.640000pt;}
.y209{bottom:202.126667pt;}
.y116{bottom:205.702667pt;}
.yda{bottom:211.520000pt;}
.y280{bottom:213.346667pt;}
.y214{bottom:213.540000pt;}
.y6c{bottom:214.894667pt;}
.y12d{bottom:216.634667pt;}
.y24e{bottom:216.710667pt;}
.y37{bottom:218.632000pt;}
.y18d{bottom:219.058667pt;}
.y9b{bottom:220.209333pt;}
.y208{bottom:220.697333pt;}
.y115{bottom:224.273333pt;}
.yc{bottom:224.293333pt;}
.yd9{bottom:230.089333pt;}
.y27f{bottom:230.369333pt;}
.y213{bottom:232.109333pt;}
.y6b{bottom:233.464000pt;}
.y24d{bottom:233.733333pt;}
.y12c{bottom:235.205333pt;}
.y36{bottom:237.201333pt;}
.y18c{bottom:237.629333pt;}
.y9a{bottom:238.780000pt;}
.y207{bottom:239.268000pt;}
.yb{bottom:240.193333pt;}
.y114{bottom:242.844000pt;}
.y27e{bottom:247.392000pt;}
.y1d4{bottom:247.564133pt;}
.yd8{bottom:248.660000pt;}
.y212{bottom:250.680000pt;}
.y24c{bottom:250.756000pt;}
.y6a{bottom:252.034667pt;}
.y12b{bottom:253.774667pt;}
.y35{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.y1d3{bottom:256.129333pt;}
.y18b{bottom:256.200000pt;}
.y99{bottom:257.350667pt;}
.y206{bottom:257.837333pt;}
.y27d{bottom:264.414667pt;}
.yd7{bottom:267.230667pt;}
.y24b{bottom:267.778667pt;}
.y211{bottom:269.250667pt;}
.y69{bottom:270.605333pt;}
.y9{bottom:271.994667pt;}
.y12a{bottom:272.345333pt;}
.y34{bottom:274.342667pt;}
.y18a{bottom:274.769333pt;}
.y98{bottom:275.920000pt;}
.y205{bottom:276.408000pt;}
.y1cf{bottom:277.038667pt;}
.y27c{bottom:281.437333pt;}
.y24a{bottom:284.801333pt;}
.yd6{bottom:285.800000pt;}
.y113{bottom:287.744000pt;}
.y8{bottom:287.894667pt;}
.y68{bottom:289.176000pt;}
.y129{bottom:290.916000pt;}
.y1ce{bottom:291.650667pt;}
.y210{bottom:291.805333pt;}
.y33{bottom:292.912000pt;}
.y189{bottom:293.340000pt;}
.y97{bottom:294.490667pt;}
.y204{bottom:294.978667pt;}
.y27b{bottom:298.460000pt;}
.y249{bottom:301.824000pt;}
.y112{bottom:302.356000pt;}
.y7{bottom:303.794667pt;}
.yd5{bottom:304.370667pt;}
.y1cd{bottom:306.262667pt;}
.y67{bottom:307.745333pt;}
.y137{bottom:307.825467pt;}
.y128{bottom:309.485333pt;}
.y32{bottom:311.482667pt;}
.y188{bottom:311.910667pt;}
.y96{bottom:313.061333pt;}
.y203{bottom:313.548000pt;}
.y27a{bottom:315.482667pt;}
.y111{bottom:316.968000pt;}
.y248{bottom:318.846667pt;}
.y6{bottom:319.696000pt;}
.y1cc{bottom:320.874667pt;}
.yd4{bottom:322.941333pt;}
.y66{bottom:326.316000pt;}
.y136{bottom:326.462667pt;}
.y127{bottom:328.056000pt;}
.y17f{bottom:329.755147pt;}
.y31{bottom:330.053333pt;}
.y110{bottom:331.580000pt;}
.y95{bottom:331.630667pt;}
.y202{bottom:332.118667pt;}
.y279{bottom:332.506667pt;}
.ye5{bottom:333.752133pt;}
.y1cb{bottom:335.486667pt;}
.y247{bottom:335.869333pt;}
.y15a{bottom:336.411147pt;}
.y5{bottom:340.909333pt;}
.yd3{bottom:341.510667pt;}
.y187{bottom:343.580000pt;}
.y65{bottom:344.886667pt;}
.y162{bottom:344.966800pt;}
.y10f{bottom:346.192000pt;}
.y126{bottom:346.626667pt;}
.y17e{bottom:348.472507pt;}
.y30{bottom:348.622667pt;}
.y278{bottom:349.529333pt;}
.y94{bottom:350.201333pt;}
.y201{bottom:350.689333pt;}
.ye4{bottom:352.389333pt;}
.y246{bottom:352.892000pt;}
.y161{bottom:353.532000pt;}
.y159{bottom:355.128507pt;}
.y1ca{bottom:356.500000pt;}
.y4{bottom:356.809333pt;}
.yd2{bottom:360.081333pt;}
.y10e{bottom:360.802667pt;}
.y64{bottom:363.456000pt;}
.y174{bottom:363.516000pt;}
.y125{bottom:365.196000pt;}
.y277{bottom:366.552000pt;}
.y17d{bottom:367.109707pt;}
.y1a8{bottom:367.193333pt;}
.y200{bottom:369.258667pt;}
.y245{bottom:369.914667pt;}
.y2f{bottom:371.178667pt;}
.y3{bottom:372.710667pt;}
.y158{bottom:373.765707pt;}
.y135{bottom:375.097467pt;}
.y10d{bottom:375.693333pt;}
.ya4{bottom:376.498800pt;}
.yd1{bottom:378.652000pt;}
.y63{bottom:382.026667pt;}
.y276{bottom:383.574667pt;}
.y134{bottom:383.662667pt;}
.y124{bottom:383.766667pt;}
.y93{bottom:384.246667pt;}
.y1c9{bottom:384.606667pt;}
.ya3{bottom:385.064000pt;}
.y17c{bottom:385.746907pt;}
.y1a7{bottom:385.764000pt;}
.y244{bottom:386.937333pt;}
.y1ff{bottom:387.829333pt;}
.y2{bottom:388.610667pt;}
.y157{bottom:392.402907pt;}
.y10c{bottom:396.984000pt;}
.yd0{bottom:397.222667pt;}
.y62{bottom:400.597333pt;}
.ye3{bottom:401.024133pt;}
.y123{bottom:402.337333pt;}
.y243{bottom:403.960000pt;}
.y1a6{bottom:404.333333pt;}
.y17b{bottom:404.464267pt;}
.ye2{bottom:409.589333pt;}
.y1{bottom:409.824000pt;}
.y156{bottom:411.120267pt;}
.y1c8{bottom:415.182667pt;}
.ycf{bottom:415.792000pt;}
.y275{bottom:417.620000pt;}
.y92{bottom:418.292000pt;}
.y61{bottom:419.166667pt;}
.y1fe{bottom:419.498667pt;}
.y122{bottom:420.906667pt;}
.y242{bottom:420.982667pt;}
.y1a5{bottom:422.904000pt;}
.y17a{bottom:423.101467pt;}
.y10b{bottom:427.746667pt;}
.y155{bottom:429.757467pt;}
.y1c7{bottom:433.752000pt;}
.yce{bottom:434.362667pt;}
.y274{bottom:434.642667pt;}
.y91{bottom:436.862667pt;}
.y60{bottom:437.737333pt;}
.y241{bottom:438.005333pt;}
.y2e{bottom:438.128000pt;}
.y121{bottom:439.477333pt;}
.y1a4{bottom:441.474667pt;}
.y179{bottom:441.738667pt;}
.y1d2{bottom:442.092000pt;}
.y1d6{bottom:445.741333pt;}
.y154{bottom:448.394667pt;}
.y273{bottom:451.665333pt;}
.y1c6{bottom:452.322667pt;}
.ycd{bottom:452.933333pt;}
.y240{bottom:455.028000pt;}
.y90{bottom:455.433333pt;}
.y5f{bottom:456.308000pt;}
.y2d{bottom:456.698667pt;}
.y120{bottom:458.048000pt;}
.y1a3{bottom:460.045333pt;}
.y10a{bottom:460.729333pt;}
.y1d5{bottom:463.661333pt;}
.y272{bottom:468.688000pt;}
.y1c5{bottom:470.893333pt;}
.ycc{bottom:471.502667pt;}
.y23f{bottom:472.050667pt;}
.y8f{bottom:474.002667pt;}
.y5e{bottom:474.877333pt;}
.y178{bottom:476.058667pt;}
.y223{bottom:476.617333pt;}
.y1a2{bottom:478.614667pt;}
.y109{bottom:479.298667pt;}
.y11f{bottom:480.602667pt;}
.y153{bottom:482.714667pt;}
.y271{bottom:485.710667pt;}
.y23e{bottom:489.073333pt;}
.y1c4{bottom:489.462667pt;}
.ycb{bottom:490.073333pt;}
.y2c{bottom:491.209333pt;}
.y8e{bottom:492.573333pt;}
.y5d{bottom:493.448000pt;}
.y222{bottom:495.188000pt;}
.y1a1{bottom:497.185333pt;}
.y108{bottom:497.869333pt;}
.y177{bottom:499.018667pt;}
.y270{bottom:502.733333pt;}
.y152{bottom:505.763787pt;}
.y23d{bottom:506.096000pt;}
.y1c3{bottom:508.033333pt;}
.yca{bottom:508.644000pt;}
.y2b{bottom:509.780000pt;}
.y8d{bottom:511.144000pt;}
.y5c{bottom:512.018667pt;}
.y221{bottom:513.758667pt;}
.y107{bottom:516.440000pt;}
.y26f{bottom:519.756000pt;}
.y14c{bottom:521.882667pt;}
.y23c{bottom:523.118667pt;}
.y1c2{bottom:526.604000pt;}
.yc9{bottom:527.213333pt;}
.y2a{bottom:528.349333pt;}
.y8c{bottom:529.713333pt;}
.y5b{bottom:530.589333pt;}
.y220{bottom:532.329333pt;}
.y106{bottom:535.009333pt;}
.y1a0{bottom:535.842667pt;}
.y26e{bottom:536.778667pt;}
.y23b{bottom:540.142667pt;}
.y14b{bottom:540.453333pt;}
.y1c1{bottom:545.173333pt;}
.yc8{bottom:545.784000pt;}
.y29{bottom:546.920000pt;}
.y19f{bottom:547.301333pt;}
.y8b{bottom:548.284000pt;}
.y5a{bottom:549.158667pt;}
.y21f{bottom:550.898667pt;}
.y105{bottom:553.580000pt;}
.y26d{bottom:553.801333pt;}
.y23a{bottom:557.165333pt;}
.y14a{bottom:559.024000pt;}
.y19e{bottom:561.814667pt;}
.y1c0{bottom:563.744000pt;}
.yc7{bottom:564.354667pt;}
.y28{bottom:565.490667pt;}
.y8a{bottom:566.854667pt;}
.y59{bottom:567.729333pt;}
.y21e{bottom:569.469333pt;}
.y26c{bottom:570.824000pt;}
.y19d{bottom:573.092000pt;}
.y239{bottom:574.188000pt;}
.y104{bottom:576.134667pt;}
.y149{bottom:577.593333pt;}
.y1bf{bottom:582.314667pt;}
.y27{bottom:584.060000pt;}
.y89{bottom:585.425333pt;}
.y58{bottom:586.300000pt;}
.y19c{bottom:587.422667pt;}
.y26b{bottom:587.846667pt;}
.y21d{bottom:588.040000pt;}
.y238{bottom:591.210667pt;}
.yc6{bottom:596.024000pt;}
.y148{bottom:596.164000pt;}
.y19b{bottom:598.700000pt;}
.y1be{bottom:600.885333pt;}
.y26{bottom:602.630667pt;}
.y103{bottom:604.709333pt;}
.y57{bottom:604.869333pt;}
.y21c{bottom:606.609333pt;}
.y237{bottom:608.233333pt;}
.y19a{bottom:613.030667pt;}
.yc5{bottom:613.120000pt;}
.y147{bottom:614.734667pt;}
.y1bd{bottom:619.454667pt;}
.y25{bottom:621.201333pt;}
.y26a{bottom:621.892000pt;}
.y56{bottom:623.440000pt;}
.y88{bottom:623.733333pt;}
.y199{bottom:624.308000pt;}
.ye1{bottom:624.646667pt;}
.y236{bottom:625.256000pt;}
.y21b{bottom:629.165333pt;}
.ya2{bottom:633.056000pt;}
.y146{bottom:633.305333pt;}
.y86{bottom:636.352000pt;}
.y1bc{bottom:638.025333pt;}
.y198{bottom:638.638667pt;}
.y269{bottom:638.914667pt;}
.y24{bottom:639.770667pt;}
.y87{bottom:640.209333pt;}
.y55{bottom:642.010667pt;}
.y235{bottom:642.278667pt;}
.y197{bottom:649.914667pt;}
.y85{bottom:655.173333pt;}
.y268{bottom:655.937333pt;}
.y1bb{bottom:656.596000pt;}
.y23{bottom:658.341333pt;}
.y234{bottom:659.301333pt;}
.y54{bottom:660.580000pt;}
.y145{bottom:664.973333pt;}
.y84{bottom:667.804000pt;}
.y267{bottom:672.961333pt;}
.y196{bottom:674.004000pt;}
.y1ba{bottom:675.165333pt;}
.y233{bottom:676.324000pt;}
.y22{bottom:676.912000pt;}
.y53{bottom:679.150667pt;}
.y83{bottom:680.424000pt;}
.y133{bottom:684.910667pt;}
.y266{bottom:689.984000pt;}
.y82{bottom:693.042667pt;}
.y232{bottom:693.346667pt;}
.y173{bottom:693.534667pt;}
.y1b9{bottom:693.736000pt;}
.y21{bottom:695.482667pt;}
.y52{bottom:697.721333pt;}
.y195{bottom:702.110667pt;}
.y265{bottom:707.006667pt;}
.y231{bottom:710.369333pt;}
.y81{bottom:712.064000pt;}
.y1b8{bottom:712.306667pt;}
.y160{bottom:713.472000pt;}
.y20{bottom:714.052000pt;}
.y51{bottom:716.290667pt;}
.y264{bottom:724.029333pt;}
.y80{bottom:724.684000pt;}
.y230{bottom:727.392000pt;}
.y1b7{bottom:730.876000pt;}
.y1f{bottom:732.622667pt;}
.y50{bottom:734.861333pt;}
.y11e{bottom:739.684000pt;}
.y263{bottom:741.052000pt;}
.y22f{bottom:748.400000pt;}
.y1b6{bottom:749.446667pt;}
.y1e{bottom:751.193333pt;}
.y4f{bottom:753.432000pt;}
.y7f{bottom:754.052000pt;}
.y262{bottom:758.074667pt;}
.y1b5{bottom:768.017333pt;}
.y1d{bottom:769.762667pt;}
.y4e{bottom:772.002667pt;}
.y261{bottom:775.097333pt;}
.y22e{bottom:782.910667pt;}
.y7e{bottom:786.070667pt;}
.y1b4{bottom:786.586667pt;}
.y4d{bottom:790.572000pt;}
.y260{bottom:792.120000pt;}
.y1c{bottom:804.457333pt;}
.y7d{bottom:804.640000pt;}
.y1b3{bottom:805.157333pt;}
.y22d{bottom:808.213333pt;}
.y4c{bottom:809.142667pt;}
.y151{bottom:816.557467pt;}
.y1b{bottom:818.804000pt;}
.y7b{bottom:823.210667pt;}
.y1b2{bottom:823.728000pt;}
.y25f{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y7c{bottom:828.033333pt;}
.y11d{bottom:832.534667pt;}
.y1a{bottom:833.149333pt;}
.y22c{bottom:833.514667pt;}
.y150{bottom:835.194667pt;}
.y7a{bottom:841.781333pt;}
.y1b1{bottom:842.297333pt;}
.y25e{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y19{bottom:847.496000pt;}
.y176{bottom:849.493467pt;}
.y175{bottom:858.058667pt;}
.y22b{bottom:858.817333pt;}
.y25d{bottom:860.210667pt;}
.y79{bottom:860.352000pt;}
.y1b0{bottom:860.868000pt;}
.y49{bottom:864.853333pt;}
.y289{bottom:873.029333pt;}
.y22a{bottom:876.149333pt;}
.y25c{bottom:877.233333pt;}
.y78{bottom:878.921333pt;}
.y1af{bottom:879.438667pt;}
.y48{bottom:883.424000pt;}
.y14f{bottom:883.829467pt;}
.y288{bottom:890.052000pt;}
.y18{bottom:890.186667pt;}
.y14e{bottom:892.394667pt;}
.y25b{bottom:894.256000pt;}
.y77{bottom:897.492000pt;}
.y1ae{bottom:898.009333pt;}
.y229{bottom:901.452000pt;}
.y47{bottom:901.993333pt;}
.y287{bottom:907.074667pt;}
.y25a{bottom:911.278667pt;}
.y75{bottom:916.062667pt;}
.y1ad{bottom:916.578667pt;}
.y228{bottom:918.784000pt;}
.y46{bottom:920.564000pt;}
.y76{bottom:920.884000pt;}
.y17{bottom:924.697333pt;}
.y259{bottom:928.301333pt;}
.y1ac{bottom:935.149333pt;}
.y74{bottom:938.617333pt;}
.y45{bottom:939.134667pt;}
.y227{bottom:944.086667pt;}
.y258{bottom:945.324000pt;}
.y16{bottom:952.552000pt;}
.y1ab{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y73{bottom:960.334667pt;}
.y226{bottom:961.418667pt;}
.y257{bottom:962.346667pt;}
.y1aa{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y225{bottom:978.750667pt;}
.y256{bottom:979.369333pt;}
.y15{bottom:980.408000pt;}
.y1d1{bottom:981.097333pt;}
.y1a9{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y224{bottom:996.082667pt;}
.y255{bottom:996.392000pt;}
.y1d0{bottom:999.666667pt;}
.y41{bottom:1013.414667pt;}
.y40{bottom:1066.841333pt;}
.h1e{height:-525.530667pt;}
.h1d{height:-507.530667pt;}
.h1c{height:-489.530667pt;}
.h1b{height:-471.530667pt;}
.h1a{height:-453.530667pt;}
.h19{height:-435.530667pt;}
.h17{height:-417.610667pt;}
.h16{height:-380.970667pt;}
.h2e{height:17.921333pt;}
.hd{height:22.123987pt;}
.h30{height:24.866650pt;}
.h9{height:28.023859pt;}
.h18{height:29.593750pt;}
.hb{height:30.605184pt;}
.hc{height:31.157778pt;}
.h2{height:33.771789pt;}
.h1f{height:34.430976pt;}
.h21{height:36.873667pt;}
.h5{height:38.256384pt;}
.h2f{height:38.462187pt;}
.h6{height:38.596538pt;}
.h12{height:38.853594pt;}
.h3{height:38.947124pt;}
.h15{height:39.349375pt;}
.hf{height:39.359687pt;}
.ha{height:43.421286pt;}
.h11{height:44.390625pt;}
.h8{height:45.907968pt;}
.h7{height:48.245551pt;}
.h10{height:49.421563pt;}
.h20{height:50.017122pt;}
.h13{height:55.957402pt;}
.h2a{height:62.765286pt;}
.h28{height:63.490620pt;}
.h26{height:63.495953pt;}
.h4{height:68.861952pt;}
.h27{height:88.525286pt;}
.h29{height:88.530620pt;}
.h2b{height:89.255953pt;}
.h2d{height:192.000000pt;}
.h2c{height:220.029333pt;}
.h22{height:292.905333pt;}
.h25{height:307.621333pt;}
.h24{height:313.228000pt;}
.h14{height:316.029333pt;}
.h23{height:317.432000pt;}
.he{height:344.760000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:50.928000pt;}
.w6{width:62.320000pt;}
.w4{width:66.240000pt;}
.w5{width:87.600000pt;}
.w7{width:245.148000pt;}
.we{width:333.954800pt;}
.wf{width:338.748000pt;}
.wc{width:475.797333pt;}
.wa{width:479.301333pt;}
.wb{width:486.308000pt;}
.w9{width:490.512000pt;}
.w3{width:512.236000pt;}
.w2{width:523.446667pt;}
.wd{width:672.702800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x68{left:-174.132000pt;}
.xa4{left:-172.730667pt;}
.xa9{left:-170.628000pt;}
.xa6{left:-168.526667pt;}
.xc5{left:-14.365200pt;}
.xa1{left:-0.993333pt;}
.x0{left:0.000000pt;}
.x73{left:1.440000pt;}
.x8a{left:3.468000pt;}
.x84{left:5.520000pt;}
.x72{left:7.520000pt;}
.x75{left:13.360000pt;}
.x7d{left:15.520000pt;}
.x85{left:17.200000pt;}
.x87{left:18.800000pt;}
.x7c{left:21.280000pt;}
.x76{left:24.560000pt;}
.x88{left:25.520000pt;}
.x69{left:28.028000pt;}
.x7b{left:29.760000pt;}
.xaa{left:31.532000pt;}
.xa8{left:33.633333pt;}
.x1{left:47.621333pt;}
.x80{left:49.120000pt;}
.x56{left:55.862667pt;}
.x79{left:58.880000pt;}
.xc4{left:60.310533pt;}
.x81{left:66.748000pt;}
.x86{left:69.148000pt;}
.x89{left:74.588000pt;}
.xd7{left:76.309333pt;}
.x90{left:82.382667pt;}
.x82{left:86.668000pt;}
.x83{left:90.668000pt;}
.x70{left:101.708000pt;}
.x8c{left:124.198667pt;}
.x8f{left:125.198667pt;}
.x8d{left:127.220000pt;}
.x8e{left:132.181333pt;}
.x44{left:135.096000pt;}
.xc7{left:152.034800pt;}
.x8b{left:156.396000pt;}
.xc9{left:159.474800pt;}
.xc8{left:166.160000pt;}
.x45{left:173.686667pt;}
.x46{left:180.769333pt;}
.xca{left:187.794800pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x47{left:226.200000pt;}
.x48{left:239.238667pt;}
.x4{left:250.204000pt;}
.x57{left:252.233333pt;}
.x5{left:254.317333pt;}
.x11{left:258.152000pt;}
.x6{left:260.958667pt;}
.x12{left:264.793333pt;}
.x13{left:271.568000pt;}
.x14{left:284.852000pt;}
.x49{left:289.470667pt;}
.xb4{left:291.238667pt;}
.xd3{left:292.166667pt;}
.x58{left:293.149333pt;}
.xae{left:295.017333pt;}
.x2c{left:298.061333pt;}
.xb5{left:300.928000pt;}
.xb8{left:302.853333pt;}
.xd4{left:305.450667pt;}
.xaf{left:307.060000pt;}
.x2d{left:311.345333pt;}
.x6d{left:315.437333pt;}
.x59{left:318.960000pt;}
.xb0{left:322.662667pt;}
.x7{left:327.361333pt;}
.x6e{left:328.720000pt;}
.x8{left:334.004000pt;}
.xbd{left:336.841333pt;}
.x62{left:340.638667pt;}
.x4a{left:343.140000pt;}
.xbc{left:344.581333pt;}
.xbe{left:346.506667pt;}
.x63{left:353.922667pt;}
.x4b{left:356.177333pt;}
.x5a{left:357.377333pt;}
.x34{left:361.669333pt;}
.x5b{left:366.002667pt;}
.x66{left:369.217333pt;}
.x40{left:371.950667pt;}
.x35{left:374.953333pt;}
.x67{left:375.858667pt;}
.xc2{left:380.564000pt;}
.x41{left:385.233333pt;}
.x6a{left:388.368000pt;}
.x64{left:390.056000pt;}
.x17{left:391.328000pt;}
.xc6{left:394.265333pt;}
.xc3{left:396.470667pt;}
.x18{left:397.969333pt;}
.xbf{left:398.953333pt;}
.x77{left:402.348000pt;}
.x65{left:403.340000pt;}
.x30{left:404.760000pt;}
.x4c{left:406.409333pt;}
.xc0{left:409.092000pt;}
.x95{left:410.414667pt;}
.x21{left:411.353333pt;}
.xc1{left:415.142667pt;}
.x96{left:417.057333pt;}
.x31{left:418.042667pt;}
.x4d{left:419.446667pt;}
.xb6{left:430.126667pt;}
.x5c{left:442.009333pt;}
.xb9{left:444.818667pt;}
.x5d{left:445.718667pt;}
.x5e{left:450.634667pt;}
.x97{left:453.433333pt;}
.x26{left:456.200000pt;}
.x98{left:460.074667pt;}
.xb7{left:461.000000pt;}
.xac{left:463.134667pt;}
.x71{left:467.006667pt;}
.x27{left:469.482667pt;}
.xab{left:471.530240pt;}
.xa3{left:473.884667pt;}
.x7a{left:475.788000pt;}
.x4e{left:477.917333pt;}
.xa7{left:479.793333pt;}
.xad{left:481.176000pt;}
.x9{left:484.712000pt;}
.xa2{left:487.007387pt;}
.xa5{left:489.110053pt;}
.xa{left:491.353333pt;}
.x19{left:496.853333pt;}
.x5f{left:502.208000pt;}
.x1a{left:503.494667pt;}
.x9e{left:504.764000pt;}
.x7f{left:506.428000pt;}
.x3e{left:508.050667pt;}
.x60{left:515.490667pt;}
.x9d{left:517.170667pt;}
.x6f{left:520.108320pt;}
.x3f{left:521.334667pt;}
.x4f{left:523.348000pt;}
.x15{left:530.665333pt;}
.x50{left:531.586667pt;}
.x74{left:533.246667pt;}
.x9f{left:538.982667pt;}
.x16{left:543.949333pt;}
.xcb{left:546.178667pt;}
.xa0{left:552.265333pt;}
.x2e{left:554.997333pt;}
.xcc{left:559.461333pt;}
.xcf{left:561.956000pt;}
.xcd{left:562.849333pt;}
.x2f{left:568.281333pt;}
.x99{left:569.381333pt;}
.xf{left:570.390667pt;}
.xd0{left:575.138667pt;}
.xce{left:576.132000pt;}
.x10{left:577.032000pt;}
.x51{left:580.240000pt;}
.x52{left:585.256000pt;}
.xd1{left:588.516000pt;}
.x36{left:590.650667pt;}
.x1b{left:591.900000pt;}
.x93{left:593.472000pt;}
.x32{left:595.129333pt;}
.x3a{left:597.309333pt;}
.x3b{left:603.360000pt;}
.x1c{left:605.184000pt;}
.x33{left:608.413333pt;}
.x94{left:614.301333pt;}
.x78{left:620.846667pt;}
.x6b{left:626.158667pt;}
.x3c{left:629.789333pt;}
.x53{left:630.686667pt;}
.x54{left:631.725333pt;}
.x3d{left:635.840000pt;}
.x6c{left:639.442667pt;}
.xb{left:642.149333pt;}
.x9c{left:643.464000pt;}
.x2a{left:644.686667pt;}
.xc{left:648.792000pt;}
.xd{left:655.300000pt;}
.x2b{left:657.970667pt;}
.xba{left:660.104000pt;}
.xe{left:661.942667pt;}
.xd2{left:663.380000pt;}
.x92{left:668.744000pt;}
.x55{left:670.904000pt;}
.x37{left:671.928000pt;}
.xbb{left:673.386667pt;}
.xb2{left:675.776000pt;}
.x1d{left:680.192000pt;}
.x7e{left:683.166667pt;}
.xb3{left:686.701333pt;}
.xb1{left:688.153333pt;}
.x1e{left:693.474667pt;}
.xd5{left:695.166667pt;}
.x1f{left:696.762667pt;}
.x38{left:698.676000pt;}
.x24{left:699.736000pt;}
.x61{left:704.424000pt;}
.x91{left:705.770667pt;}
.x20{left:710.046667pt;}
.x39{left:711.958667pt;}
.x25{left:713.020000pt;}
.x9a{left:717.744000pt;}
.x22{left:726.325333pt;}
.x28{left:727.905333pt;}
.x42{left:728.981333pt;}
.x9b{left:731.026667pt;}
.x43{left:735.032000pt;}
.x23{left:739.609333pt;}
.x29{left:741.189333pt;}
.xd6{left:744.864000pt;}
}




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