
    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_37a5d4da9635c640a4df7b62.woff2')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_a17ad0e0ef88026def5318e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_170a8d46c7802964650c633c.woff2')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_176f3225a0c6976a99b303bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_647e96b614ecf077260dc5f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_81dfd451cfe019d0c4045f24.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_715780e8cefe2b03eb5e27cd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bbb976a3d5fbcf89f31da099.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a5893f93bfbc9a137a1b54d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008789;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_9368d82f11c8595fefe83912.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81dfd451cfe019d0c4045f24.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_715780e8cefe2b03eb5e27cd.woff2')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_bbb976a3d5fbcf89f31da099.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1a5893f93bfbc9a137a1b54d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008789;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_9368d82f11c8595fefe83912.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9ad819b6f6050271e41dd42d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_196c692b2ac29a638e5ea185.woff2')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_c65fe974037c37e007d8719f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9368d82f11c8595fefe83912.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_309478c64e8693d995b73387.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008789;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_d63880daaac2b0d509904bf3.woff2')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_8b18b6f75b24406fd55d45e8.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_314e3051d243702893fc42ca.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_10b9cfd8b4bc06c2cfc39168.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008789;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_9368d82f11c8595fefe83912.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4243c6d54cbe8ff55b7b6234.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.694000;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;}
.m2{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);}
.m0{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);}
.mb{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);}
.m12{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);}
.m10{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);}
.m11{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);}
.m1e{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);}
.m28{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);}
.m19{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);}
.m1a{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);}
.ma{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);}
.m7{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);}
.m9{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);}
.m3{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);}
.m1f{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);}
.m18{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);}
.m8{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);}
.m24{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);}
.m5{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);}
.m1{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);}
.m29{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);}
.m13{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);}
.m20{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);}
.mf{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);}
.md{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);}
.m14{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);}
.mc{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);}
.m21{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);}
.m1b{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);}
.m27{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);}
.m23{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);}
.m15{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);}
.m1d{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);}
.m1c{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);}
.m6{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);}
.m26{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);}
.m25{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);}
.m16{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);}
.m17{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);}
.m4{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);}
.me{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120144px;}
.v2{vertical-align:21.696000px;}
.ls50{letter-spacing:-1.707408px;}
.ls56{letter-spacing:-0.318636px;}
.ls55{letter-spacing:-0.288576px;}
.ls3c{letter-spacing:-0.264528px;}
.ls51{letter-spacing:-0.204408px;}
.ls4b{letter-spacing:-0.192384px;}
.ls3a{letter-spacing:-0.180360px;}
.ls4f{letter-spacing:-0.178200px;}
.ls49{letter-spacing:-0.168336px;}
.ls38{letter-spacing:-0.156312px;}
.ls4c{letter-spacing:-0.144288px;}
.ls2c{letter-spacing:-0.138276px;}
.ls4a{letter-spacing:-0.132264px;}
.ls34{letter-spacing:-0.126252px;}
.ls30{letter-spacing:-0.120240px;}
.ls3b{letter-spacing:-0.114228px;}
.ls54{letter-spacing:-0.108216px;}
.ls32{letter-spacing:-0.102204px;}
.ls39{letter-spacing:-0.096192px;}
.ls52{letter-spacing:-0.090180px;}
.ls37{letter-spacing:-0.084168px;}
.ls2a{letter-spacing:-0.078156px;}
.ls4d{letter-spacing:-0.066132px;}
.ls3d{letter-spacing:-0.060120px;}
.ls31{letter-spacing:-0.054108px;}
.ls3e{letter-spacing:-0.048096px;}
.ls2b{letter-spacing:-0.042084px;}
.ls48{letter-spacing:-0.036072px;}
.ls35{letter-spacing:-0.030060px;}
.ls2f{letter-spacing:-0.024048px;}
.ls4e{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.018036px;}
.ls36{letter-spacing:-0.012024px;}
.ls29{letter-spacing:-0.009576px;}
.ls2e{letter-spacing:-0.006012px;}
.ls4{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000292px;}
.ls43{letter-spacing:0.000435px;}
.ls5{letter-spacing:0.000608px;}
.ls60{letter-spacing:0.000800px;}
.ls69{letter-spacing:0.002488px;}
.ls64{letter-spacing:0.002841px;}
.ls13{letter-spacing:0.003219px;}
.ls5b{letter-spacing:0.004800px;}
.ls3f{letter-spacing:0.006012px;}
.ls1d{letter-spacing:0.012024px;}
.ls1f{letter-spacing:0.018036px;}
.ls22{letter-spacing:0.024048px;}
.ls17{letter-spacing:0.028728px;}
.ls26{letter-spacing:0.030060px;}
.ls45{letter-spacing:0.036072px;}
.ls44{letter-spacing:0.037800px;}
.ls23{letter-spacing:0.042084px;}
.ls20{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.054108px;}
.ls42{letter-spacing:0.060120px;}
.ls40{letter-spacing:0.066132px;}
.ls1e{letter-spacing:0.072144px;}
.ls47{letter-spacing:0.078156px;}
.ls41{letter-spacing:0.084168px;}
.ls46{letter-spacing:0.090180px;}
.ls2d{letter-spacing:0.096192px;}
.ls1c{letter-spacing:0.102204px;}
.ls1b{letter-spacing:0.114228px;}
.ls53{letter-spacing:0.120240px;}
.ls25{letter-spacing:0.132264px;}
.ls19{letter-spacing:0.167580px;}
.ls21{letter-spacing:0.168336px;}
.ls1a{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.181944px;}
.ls15{letter-spacing:0.548815px;}
.ls16{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.ls3{letter-spacing:11.954850px;}
.ls57{letter-spacing:13.114251px;}
.ls5f{letter-spacing:13.294448px;}
.ls5c{letter-spacing:13.327407px;}
.ls68{letter-spacing:13.344839px;}
.ls59{letter-spacing:13.448400px;}
.ls5a{letter-spacing:13.454400px;}
.ls5d{letter-spacing:13.492998px;}
.ls6b{letter-spacing:13.541300px;}
.ls63{letter-spacing:13.599380px;}
.ls5e{letter-spacing:13.609224px;}
.ls6c{letter-spacing:13.656999px;}
.ls2{letter-spacing:14.605943px;}
.ls11{letter-spacing:14.741237px;}
.ls10{letter-spacing:14.747119px;}
.lsa{letter-spacing:14.842301px;}
.ls27{letter-spacing:14.914917px;}
.lsb{letter-spacing:14.938766px;}
.lsf{letter-spacing:14.944766px;}
.ls7{letter-spacing:14.987882px;}
.ls28{letter-spacing:15.011507px;}
.ls8{letter-spacing:15.073234px;}
.ls66{letter-spacing:15.315106px;}
.ls14{letter-spacing:15.663483px;}
.ls67{letter-spacing:15.685694px;}
.ls65{letter-spacing:15.815106px;}
.ls9{letter-spacing:16.041237px;}
.ls62{letter-spacing:16.676400px;}
.ls58{letter-spacing:16.838635px;}
.ls6e{letter-spacing:18.303341px;}
.ls6a{letter-spacing:18.509224px;}
.ls61{letter-spacing:18.615106px;}
.ls12{letter-spacing:18.635355px;}
.ls6f{letter-spacing:19.397459px;}
.lsd{letter-spacing:19.647119px;}
.lsc{letter-spacing:19.653002px;}
.ls6{letter-spacing:21.700061px;}
.lse{letter-spacing:22.794178px;}
.ls1{letter-spacing:28.453654px;}
.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;}
}
.ws7a{word-spacing:-60.120000px;}
.ws77{word-spacing:-36.000000px;}
.wsac{word-spacing:-15.048036px;}
.ws7b{word-spacing:-15.030000px;}
.ws45{word-spacing:-14.943900px;}
.wsa9{word-spacing:-14.861664px;}
.wsab{word-spacing:-13.500000px;}
.ws130{word-spacing:-13.449600px;}
.ws75{word-spacing:-12.151944px;}
.ws76{word-spacing:-11.970000px;}
.ws20{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.ws78{word-spacing:-9.000000px;}
.ws47{word-spacing:-3.287658px;}
.wsca{word-spacing:-3.126240px;}
.wsad{word-spacing:-3.048556px;}
.wsbd{word-spacing:-3.048084px;}
.wsc9{word-spacing:-3.006000px;}
.wsde{word-spacing:-2.945880px;}
.wsbf{word-spacing:-2.891772px;}
.wsdd{word-spacing:-2.849688px;}
.wsdf{word-spacing:-2.795580px;}
.wsbe{word-spacing:-2.771532px;}
.wsef{word-spacing:-2.759508px;}
.wsf0{word-spacing:-2.699388px;}
.ws11{word-spacing:-2.630126px;}
.ws10a{word-spacing:-2.507004px;}
.wsf9{word-spacing:-2.500992px;}
.ws109{word-spacing:-2.476944px;}
.ws5c{word-spacing:-2.331248px;}
.ws11f{word-spacing:-2.211697px;}
.ws8a{word-spacing:-2.140272px;}
.ws3{word-spacing:-2.092316px;}
.ws1{word-spacing:-2.092140px;}
.ws87{word-spacing:-2.080152px;}
.wsfb{word-spacing:-2.044080px;}
.ws44{word-spacing:-2.032370px;}
.ws46{word-spacing:-1.972595px;}
.ws0{word-spacing:-1.966612px;}
.ws89{word-spacing:-1.965924px;}
.ws2c{word-spacing:-1.853044px;}
.ws11d{word-spacing:-1.793268px;}
.wsfa{word-spacing:-1.779552px;}
.ws129{word-spacing:-1.775347px;}
.ws93{word-spacing:-1.689372px;}
.ws54{word-spacing:-1.673717px;}
.ws94{word-spacing:-1.665324px;}
.ws1d{word-spacing:-1.613941px;}
.ws88{word-spacing:-1.587168px;}
.wsc1{word-spacing:-1.551096px;}
.ws151{word-spacing:-1.506355px;}
.ws25{word-spacing:-1.434614px;}
.wsc0{word-spacing:-1.412820px;}
.ws13e{word-spacing:-1.398758px;}
.ws118{word-spacing:-1.374839px;}
.wscd{word-spacing:-1.364724px;}
.ws91{word-spacing:-1.334664px;}
.ws92{word-spacing:-1.268532px;}
.wsf2{word-spacing:-1.244484px;}
.wsc2{word-spacing:-1.220436px;}
.wsf1{word-spacing:-1.214424px;}
.ws1e{word-spacing:-1.135736px;}
.ws42{word-spacing:-1.075961px;}
.wsa5{word-spacing:-1.064124px;}
.wsa6{word-spacing:-0.979956px;}
.wsd9{word-spacing:-0.973944px;}
.wscc{word-spacing:-0.967932px;}
.ws7d{word-spacing:-0.860774px;}
.ws122{word-spacing:-0.806976px;}
.ws11b{word-spacing:-0.777083px;}
.ws15a{word-spacing:-0.753178px;}
.wsa7{word-spacing:-0.643284px;}
.wsaf{word-spacing:-0.637272px;}
.ws43{word-spacing:-0.597756px;}
.wscb{word-spacing:-0.583164px;}
.ws15b{word-spacing:-0.537984px;}
.ws38{word-spacing:-0.478205px;}
.ws12e{word-spacing:-0.376589px;}
.wsf{word-spacing:-0.358654px;}
.wsb3{word-spacing:-0.336672px;}
.ws9c{word-spacing:-0.324648px;}
.ws131{word-spacing:-0.322790px;}
.ws9e{word-spacing:-0.312624px;}
.ws35{word-spacing:-0.298878px;}
.wsdc{word-spacing:-0.276552px;}
.ws7e{word-spacing:-0.272916px;}
.ws100{word-spacing:-0.270540px;}
.ws120{word-spacing:-0.268992px;}
.ws1c{word-spacing:-0.239102px;}
.ws137{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.ws9b{word-spacing:-0.168336px;}
.ws140{word-spacing:-0.161395px;}
.ws9f{word-spacing:-0.144288px;}
.ws5e{word-spacing:-0.124006px;}
.ws21{word-spacing:-0.119551px;}
.ws12a{word-spacing:-0.107597px;}
.ws7f{word-spacing:-0.081396px;}
.ws79{word-spacing:-0.060120px;}
.ws1a{word-spacing:-0.059776px;}
.ws135{word-spacing:-0.053798px;}
.ws163{word-spacing:-0.008016px;}
.ws14f{word-spacing:-0.007488px;}
.ws16c{word-spacing:-0.006221px;}
.ws14e{word-spacing:-0.006058px;}
.ws9d{word-spacing:-0.006012px;}
.ws154{word-spacing:-0.004570px;}
.ws165{word-spacing:-0.003475px;}
.ws147{word-spacing:-0.001488px;}
.ws7{word-spacing:0.000000px;}
.ws1f{word-spacing:0.000112px;}
.ws13f{word-spacing:0.053798px;}
.wsf3{word-spacing:0.054108px;}
.ws12{word-spacing:0.059776px;}
.ws160{word-spacing:0.065653px;}
.wsb6{word-spacing:0.066132px;}
.ws104{word-spacing:0.072144px;}
.wsbb{word-spacing:0.090180px;}
.ws6{word-spacing:0.107597px;}
.wsbc{word-spacing:0.108216px;}
.wsb{word-spacing:0.119551px;}
.wsba{word-spacing:0.120240px;}
.wsa8{word-spacing:0.138276px;}
.wsd1{word-spacing:0.140400px;}
.wscf{word-spacing:0.156312px;}
.ws13b{word-spacing:0.161395px;}
.wsce{word-spacing:0.168336px;}
.wse9{word-spacing:0.174348px;}
.wsd0{word-spacing:0.178200px;}
.ws18{word-spacing:0.179327px;}
.ws13c{word-spacing:0.194447px;}
.wsd2{word-spacing:0.199800px;}
.ws124{word-spacing:0.215194px;}
.ws105{word-spacing:0.216432px;}
.ws27{word-spacing:0.239102px;}
.ws95{word-spacing:0.246492px;}
.ws139{word-spacing:0.268992px;}
.ws13{word-spacing:0.298878px;}
.ws15d{word-spacing:0.322790px;}
.ws4c{word-spacing:0.358654px;}
.ws29{word-spacing:0.418429px;}
.ws14d{word-spacing:0.422178px;}
.ws5{word-spacing:0.422252px;}
.ws14c{word-spacing:0.430387px;}
.wsd4{word-spacing:0.438876px;}
.ws2a{word-spacing:0.478205px;}
.ws98{word-spacing:0.480960px;}
.ws136{word-spacing:0.484186px;}
.ws145{word-spacing:0.537984px;}
.ws14b{word-spacing:0.591782px;}
.wsd3{word-spacing:0.595188px;}
.ws7c{word-spacing:0.597756px;}
.ws14{word-spacing:0.657532px;}
.ws82{word-spacing:0.697392px;}
.ws74{word-spacing:0.745525px;}
.ws9a{word-spacing:0.811620px;}
.ws2e{word-spacing:0.836858px;}
.ws83{word-spacing:0.853704px;}
.ws81{word-spacing:0.889776px;}
.ws10f{word-spacing:0.896634px;}
.ws99{word-spacing:0.925848px;}
.ws40{word-spacing:0.956410px;}
.ws19{word-spacing:1.016185px;}
.ws34{word-spacing:1.075961px;}
.ws61{word-spacing:1.135736px;}
.ws143{word-spacing:1.183565px;}
.ws48{word-spacing:1.195512px;}
.ws51{word-spacing:1.255288px;}
.ws2b{word-spacing:1.315063px;}
.ws4f{word-spacing:1.374839px;}
.ws156{word-spacing:1.398758px;}
.ws58{word-spacing:1.434614px;}
.ws155{word-spacing:1.452557px;}
.wsf4{word-spacing:1.496988px;}
.ws12d{word-spacing:1.506355px;}
.wse8{word-spacing:1.509012px;}
.wsa1{word-spacing:1.539072px;}
.ws26{word-spacing:1.554166px;}
.wsa0{word-spacing:1.557108px;}
.wsb0{word-spacing:1.563120px;}
.wsf6{word-spacing:1.593180px;}
.wsf5{word-spacing:1.611216px;}
.ws4e{word-spacing:1.613941px;}
.wse7{word-spacing:1.623240px;}
.ws157{word-spacing:1.721549px;}
.ws28{word-spacing:1.733492px;}
.wsc{word-spacing:1.793268px;}
.ws148{word-spacing:1.829146px;}
.wse{word-spacing:1.853044px;}
.ws8d{word-spacing:1.863720px;}
.ws8b{word-spacing:1.869732px;}
.wsb7{word-spacing:1.875744px;}
.ws12b{word-spacing:1.882944px;}
.wsb1{word-spacing:1.893780px;}
.ws2f{word-spacing:1.912819px;}
.ws8c{word-spacing:1.929852px;}
.ws63{word-spacing:1.972595px;}
.ws55{word-spacing:2.032370px;}
.wsb2{word-spacing:2.044080px;}
.ws12c{word-spacing:2.044339px;}
.ws32{word-spacing:2.151922px;}
.wsb9{word-spacing:2.164320px;}
.ws31{word-spacing:2.211697px;}
.wsb8{word-spacing:2.236464px;}
.ws159{word-spacing:2.259533px;}
.ws121{word-spacing:2.313331px;}
.ws117{word-spacing:2.391024px;}
.ws11a{word-spacing:2.510575px;}
.ws166{word-spacing:2.528525px;}
.ws36{word-spacing:2.570351px;}
.wsb4{word-spacing:2.627244px;}
.ws114{word-spacing:2.630126px;}
.ws132{word-spacing:2.636122px;}
.wsb5{word-spacing:2.639268px;}
.ws3b{word-spacing:2.689902px;}
.ws161{word-spacing:2.689920px;}
.ws123{word-spacing:2.743718px;}
.ws16a{word-spacing:2.797517px;}
.ws116{word-spacing:2.809453px;}
.ws8{word-spacing:2.869236px;}
.ws12f{word-spacing:2.872436px;}
.ws2d{word-spacing:2.929004px;}
.ws90{word-spacing:2.999988px;}
.wsd5{word-spacing:3.012012px;}
.ws15{word-spacing:3.048556px;}
.wsc3{word-spacing:3.054096px;}
.ws138{word-spacing:3.066509px;}
.ws8f{word-spacing:3.096180px;}
.wsd6{word-spacing:3.102192px;}
.ws4a{word-spacing:3.108331px;}
.ws111{word-spacing:3.168107px;}
.ws146{word-spacing:3.219600px;}
.ws13d{word-spacing:3.220646px;}
.ws141{word-spacing:3.220790px;}
.ws16b{word-spacing:3.221760px;}
.ws13a{word-spacing:3.223363px;}
.ws15c{word-spacing:3.224179px;}
.ws144{word-spacing:3.226608px;}
.ws152{word-spacing:3.226790px;}
.ws142{word-spacing:3.227654px;}
.ws134{word-spacing:3.227904px;}
.ws162{word-spacing:3.228912px;}
.ws164{word-spacing:3.281702px;}
.ws65{word-spacing:3.287658px;}
.wsc8{word-spacing:3.336660px;}
.ws37{word-spacing:3.347434px;}
.wsc4{word-spacing:3.354696px;}
.wsaa{word-spacing:3.443098px;}
.ws10e{word-spacing:3.466985px;}
.wsc7{word-spacing:3.474936px;}
.ws150{word-spacing:3.496896px;}
.wsc5{word-spacing:3.523032px;}
.ws3e{word-spacing:3.526760px;}
.ws16{word-spacing:3.583475px;}
.ws11e{word-spacing:3.586536px;}
.wsdb{word-spacing:3.661308px;}
.ws71{word-spacing:3.706087px;}
.ws8e{word-spacing:3.709404px;}
.wsda{word-spacing:3.715416px;}
.ws64{word-spacing:3.765863px;}
.ws96{word-spacing:3.787560px;}
.ws167{word-spacing:3.819686px;}
.ws110{word-spacing:3.825638px;}
.ws168{word-spacing:3.828224px;}
.ws97{word-spacing:3.871728px;}
.ws57{word-spacing:3.945190px;}
.ws15e{word-spacing:3.981082px;}
.wse0{word-spacing:4.016016px;}
.wsc6{word-spacing:4.034052px;}
.ws49{word-spacing:4.064741px;}
.ws106{word-spacing:4.076136px;}
.ws128{word-spacing:4.088678px;}
.wsd8{word-spacing:4.094172px;}
.wsd7{word-spacing:4.112208px;}
.ws107{word-spacing:4.118220px;}
.ws4d{word-spacing:4.124516px;}
.ws115{word-spacing:4.184292px;}
.ws84{word-spacing:4.190364px;}
.wsfd{word-spacing:4.196376px;}
.wsfc{word-spacing:4.220424px;}
.ws60{word-spacing:4.244068px;}
.ws72{word-spacing:4.303843px;}
.ws17{word-spacing:4.303872px;}
.ws85{word-spacing:4.316616px;}
.wse1{word-spacing:4.322628px;}
.ws10c{word-spacing:4.363619px;}
.wse2{word-spacing:4.364712px;}
.ws108{word-spacing:4.370724px;}
.wsfe{word-spacing:4.388760px;}
.ws86{word-spacing:4.418820px;}
.ws5a{word-spacing:4.423394px;}
.ws23{word-spacing:4.483170px;}
.wsf8{word-spacing:4.484952px;}
.wsf7{word-spacing:4.533048px;}
.ws30{word-spacing:4.602721px;}
.wsae{word-spacing:4.662497px;}
.ws62{word-spacing:4.722272px;}
.ws16d{word-spacing:4.734259px;}
.ws103{word-spacing:4.767516px;}
.ws24{word-spacing:4.782048px;}
.ws102{word-spacing:4.827636px;}
.ws39{word-spacing:4.841824px;}
.ws169{word-spacing:4.841856px;}
.ws101{word-spacing:4.875732px;}
.ws153{word-spacing:5.003251px;}
.ws59{word-spacing:5.021150px;}
.ws52{word-spacing:5.080926px;}
.ws14a{word-spacing:5.164646px;}
.ws53{word-spacing:5.200477px;}
.ws33{word-spacing:5.260253px;}
.ws16f{word-spacing:5.433638px;}
.ws4b{word-spacing:5.439580px;}
.wsa{word-spacing:5.499355px;}
.ws50{word-spacing:5.678682px;}
.ws10d{word-spacing:5.798233px;}
.ws5f{word-spacing:5.858009px;}
.ws70{word-spacing:6.037336px;}
.ws113{word-spacing:6.097111px;}
.ws112{word-spacing:6.156887px;}
.wsa4{word-spacing:6.180336px;}
.wsa2{word-spacing:6.216408px;}
.ws3f{word-spacing:6.216662px;}
.wsa3{word-spacing:6.270516px;}
.wsec{word-spacing:6.450876px;}
.ws11c{word-spacing:6.455765px;}
.wsea{word-spacing:6.517008px;}
.ws22{word-spacing:6.575316px;}
.wsff{word-spacing:6.649272px;}
.wseb{word-spacing:6.661296px;}
.wsd{word-spacing:6.694867px;}
.ws5d{word-spacing:6.754643px;}
.ws1b{word-spacing:6.993745px;}
.ws41{word-spacing:7.053521px;}
.ws3c{word-spacing:7.113296px;}
.ws10b{word-spacing:7.173072px;}
.wse4{word-spacing:7.593156px;}
.wsee{word-spacing:7.677324px;}
.wsed{word-spacing:7.683336px;}
.ws5b{word-spacing:7.830604px;}
.ws3d{word-spacing:8.009930px;}
.wse5{word-spacing:8.038044px;}
.ws56{word-spacing:8.069706px;}
.wse3{word-spacing:8.092152px;}
.wse6{word-spacing:8.326620px;}
.ws3a{word-spacing:8.488135px;}
.ws158{word-spacing:8.876736px;}
.ws73{word-spacing:9.384769px;}
.ws119{word-spacing:9.683647px;}
.ws80{word-spacing:11.620476px;}
.ws133{word-spacing:11.654089px;}
.ws9{word-spacing:14.822689px;}
.ws15f{word-spacing:15.655334px;}
.ws149{word-spacing:15.924326px;}
.ws127{word-spacing:15.978125px;}
.ws126{word-spacing:16.623706px;}
.ws16e{word-spacing:17.807270px;}
.ws2{word-spacing:22.179541px;}
.ws125{word-spacing:36.649411px;}
.ws68{word-spacing:147.138624px;}
.ws6c{word-spacing:150.527923px;}
.ws67{word-spacing:160.588224px;}
.ws6b{word-spacing:167.313024px;}
.ws66{word-spacing:167.474419px;}
.ws6a{word-spacing:174.037824px;}
.ws6e{word-spacing:179.310067px;}
.ws69{word-spacing:187.487424px;}
.ws6f{word-spacing:282.011213px;}
.ws6d{word-spacing:284.916326px;}
._18{margin-left:-7.352399px;}
._4{margin-left:-6.168857px;}
._6{margin-left:-4.363619px;}
._12{margin-left:-3.323512px;}
._1{margin-left:-1.506341px;}
._40{width:1.163484px;}
._42{width:2.747160px;}
._48{width:3.913517px;}
._0{width:11.088342px;}
._43{width:12.923480px;}
._9{width:13.999441px;}
._17{width:15.852505px;}
._16{width:16.916495px;}
._8{width:18.482611px;}
._b{width:19.558592px;}
._11{width:20.682358px;}
._d{width:21.877870px;}
._10{width:23.192933px;}
._5{width:24.221069px;}
._7{width:25.524181px;}
._3f{width:26.540366px;}
._a{width:28.094532px;}
._3e{width:30.059368px;}
._45{width:32.039722px;}
._2{width:33.677798px;}
._15{width:35.446931px;}
._19{width:36.522892px;}
._44{width:38.447662px;}
._c{width:40.252900px;}
._14{width:43.038432px;}
._13{width:44.592598px;}
._3{width:54.430559px;}
._47{width:61.868160px;}
._1e{width:160.588224px;}
._3c{width:165.860467px;}
._24{width:174.037824px;}
._36{width:183.075955px;}
._21{width:187.487424px;}
._2b{width:192.759667px;}
._22{width:200.937024px;}
._37{width:210.351744px;}
._33{width:219.712666px;}
._34{width:220.728887px;}
._3d{width:226.007078px;}
._26{width:228.374208px;}
._3b{width:235.475597px;}
._2c{width:238.757299px;}
._39{width:243.652939px;}
._31{width:246.540130px;}
._38{width:248.279616px;}
._2e{width:252.260698px;}
._35{width:286.046093px;}
._30{width:288.090432px;}
._2d{width:295.460813px;}
._1c{width:297.780092px;}
._2f{width:299.495693px;}
._3a{width:306.543283px;}
._1a{width:310.560205px;}
._23{width:316.860719px;}
._32{width:319.347302px;}
._20{width:325.157530px;}
._29{width:366.420902px;}
._1b{width:417.636979px;}
._2a{width:449.109043px;}
._25{width:520.553318px;}
._1f{width:635.508642px;}
._28{width:765.234390px;}
._1d{width:805.953830px;}
._27{width:832.584038px;}
._e{width:1899.987000px;}
._41{width:2129.089536px;}
._46{width:2540.541000px;}
._f{width:2564.451000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs6{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fsd{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y155{bottom:-774.088566px;}
.y154{bottom:-753.028530px;}
.y153{bottom:-732.058674px;}
.yde{bottom:-726.706506px;}
.y152{bottom:-711.088818px;}
.ydd{bottom:-705.736650px;}
.y151{bottom:-690.028782px;}
.ydc{bottom:-684.676614px;}
.y150{bottom:-669.058926px;}
.ydb{bottom:-659.296956px;}
.y14f{bottom:-648.089070px;}
.y14e{bottom:-627.029034px;}
.y14d{bottom:-606.059178px;}
.y14c{bottom:-585.089322px;}
.y14b{bottom:-564.029286px;}
.y14a{bottom:-543.059430px;}
.y149{bottom:-522.089574px;}
.y148{bottom:-501.029538px;}
.y147{bottom:-480.059682px;}
.y146{bottom:-459.089826px;}
.y145{bottom:-438.029790px;}
.y144{bottom:-417.059934px;}
.y143{bottom:-396.090078px;}
.y127{bottom:-381.045156px;}
.y142{bottom:-375.030042px;}
.y141{bottom:-354.060186px;}
.y126{bottom:-342.795309px;}
.yda{bottom:-341.866362px;}
.y140{bottom:-333.090330px;}
.y125{bottom:-321.735273px;}
.yd9{bottom:-320.896506px;}
.y13f{bottom:-312.030294px;}
.y124{bottom:-300.765417px;}
.yd8{bottom:-299.926650px;}
.y13e{bottom:-291.060438px;}
.y123{bottom:-279.795561px;}
.yd7{bottom:-278.866614px;}
.y13d{bottom:-270.090582px;}
.y122{bottom:-258.735525px;}
.yd6{bottom:-257.896758px;}
.y13c{bottom:-249.030546px;}
.y121{bottom:-237.765669px;}
.yd5{bottom:-236.926902px;}
.y13b{bottom:-228.060690px;}
.y120{bottom:-216.795813px;}
.yd4{bottom:-215.866866px;}
.y13a{bottom:-207.090834px;}
.y11f{bottom:-195.735777px;}
.yd3{bottom:-194.897010px;}
.y139{bottom:-186.030798px;}
.y11e{bottom:-174.765921px;}
.yd2{bottom:-173.927154px;}
.y138{bottom:-165.060942px;}
.y11d{bottom:-153.796065px;}
.yd1{bottom:-152.867118px;}
.y137{bottom:-144.091086px;}
.y11c{bottom:-132.736029px;}
.yd0{bottom:-131.897262px;}
.y136{bottom:-123.031050px;}
.y11b{bottom:-111.766173px;}
.ycf{bottom:-110.927406px;}
.y135{bottom:-96.751050px;}
.y11a{bottom:-90.796317px;}
.yce{bottom:-89.867370px;}
.y119{bottom:-69.736281px;}
.ycd{bottom:-68.897514px;}
.y101{bottom:-67.554606px;}
.y134{bottom:-55.710900px;}
.y118{bottom:-48.766425px;}
.ycc{bottom:-47.927658px;}
.y100{bottom:-46.584750px;}
.y133{bottom:-34.741350px;}
.y117{bottom:-27.796569px;}
.ycb{bottom:-26.867622px;}
.yff{bottom:-25.524714px;}
.y116{bottom:-2.236551px;}
.yca{bottom:-1.397784px;}
.yfe{bottom:-0.145056px;}
.y0{bottom:0.000000px;}
.y132{bottom:0.179100px;}
.y3f{bottom:45.921000px;}
.y3e{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.yc3{bottom:103.342500px;}
.y1a4{bottom:103.782000px;}
.y207{bottom:105.961500px;}
.y10c{bottom:108.790500px;}
.y97{bottom:111.342000px;}
.y18f{bottom:111.924000px;}
.y74{bottom:114.882000px;}
.y76{bottom:116.407500px;}
.y13{bottom:118.147500px;}
.y3d{bottom:120.610500px;}
.y1d5{bottom:120.628500px;}
.yc2{bottom:124.233000px;}
.y206{bottom:125.112000px;}
.y10b{bottom:129.681000px;}
.y96{bottom:132.234000px;}
.y1a3{bottom:132.247500px;}
.y18e{bottom:132.816000px;}
.y73{bottom:135.774000px;}
.y12{bottom:136.035000px;}
.y75{bottom:137.298000px;}
.y1d4{bottom:139.779000px;}
.y3c{bottom:141.502500px;}
.y205{bottom:144.262500px;}
.yc1{bottom:145.125000px;}
.y10a{bottom:150.573000px;}
.y95{bottom:153.126000px;}
.y18d{bottom:153.706500px;}
.y11{bottom:153.924000px;}
.y72{bottom:156.666000px;}
.y70{bottom:158.190000px;}
.y1d3{bottom:158.929500px;}
.y1a2{bottom:160.713000px;}
.y15e{bottom:161.259000px;}
.y3b{bottom:162.394500px;}
.y204{bottom:163.413000px;}
.yc0{bottom:166.017000px;}
.y109{bottom:171.465000px;}
.y10{bottom:171.811500px;}
.y94{bottom:174.016500px;}
.y18c{bottom:174.598500px;}
.y1d2{bottom:178.080000px;}
.y6f{bottom:179.082000px;}
.y71{bottom:182.040000px;}
.y15d{bottom:182.149500px;}
.y203{bottom:182.563500px;}
.y3a{bottom:183.285000px;}
.ybf{bottom:186.907500px;}
.y1a1{bottom:189.178500px;}
.yf{bottom:189.699000px;}
.y108{bottom:192.357000px;}
.y93{bottom:194.908500px;}
.y18b{bottom:195.490500px;}
.y1d1{bottom:197.230500px;}
.y6e{bottom:199.972500px;}
.y202{bottom:201.714000px;}
.y15c{bottom:203.041500px;}
.y39{bottom:204.177000px;}
.ye{bottom:207.588000px;}
.ybe{bottom:207.799500px;}
.y1a0{bottom:208.677000px;}
.y107{bottom:213.247500px;}
.y92{bottom:215.800500px;}
.y18a{bottom:216.381000px;}
.y6d{bottom:220.864500px;}
.y15b{bottom:223.933500px;}
.y38{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.y19f{bottom:228.175500px;}
.ybd{bottom:228.691500px;}
.y106{bottom:234.139500px;}
.y1d0{bottom:235.531500px;}
.y91{bottom:236.691000px;}
.y189{bottom:237.273000px;}
.y201{bottom:240.015000px;}
.y6c{bottom:241.756500px;}
.y15a{bottom:244.824000px;}
.y37{bottom:245.961000px;}
.y19e{bottom:247.674000px;}
.ybc{bottom:249.582000px;}
.yc{bottom:252.330000px;}
.y1cf{bottom:254.682000px;}
.y105{bottom:255.031500px;}
.y90{bottom:257.583000px;}
.y188{bottom:258.165000px;}
.y200{bottom:259.165500px;}
.y6b{bottom:262.647000px;}
.y159{bottom:265.716000px;}
.y36{bottom:266.851500px;}
.y19d{bottom:267.172500px;}
.yb{bottom:270.217500px;}
.y1ce{bottom:273.832500px;}
.ybb{bottom:274.957500px;}
.y104{bottom:275.922000px;}
.y1ff{bottom:278.316000px;}
.y8f{bottom:278.475000px;}
.y187{bottom:279.055500px;}
.yc9{bottom:279.852594px;}
.y6a{bottom:283.539000px;}
.y158{bottom:286.608000px;}
.y19c{bottom:286.671000px;}
.y35{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.y115{bottom:292.782810px;}
.y1cd{bottom:292.984500px;}
.y1fe{bottom:297.466500px;}
.y8e{bottom:299.365500px;}
.y186{bottom:299.947500px;}
.yc8{bottom:300.822414px;}
.y69{bottom:304.431000px;}
.y9{bottom:305.994000px;}
.y157{bottom:307.498500px;}
.y34{bottom:308.635500px;}
.yba{bottom:310.299000px;}
.y103{bottom:311.550000px;}
.y1cc{bottom:312.135000px;}
.y114{bottom:313.752666px;}
.y19b{bottom:315.136500px;}
.y1fd{bottom:316.617000px;}
.yfd{bottom:317.285538px;}
.y8d{bottom:320.257500px;}
.y185{bottom:320.839500px;}
.yc7{bottom:321.882450px;}
.y8{bottom:323.881500px;}
.y68{bottom:325.323000px;}
.y131{bottom:328.949085px;}
.y33{bottom:329.526000px;}
.y102{bottom:330.783000px;}
.yb9{bottom:331.191000px;}
.y1cb{bottom:331.285500px;}
.y19a{bottom:334.635000px;}
.y113{bottom:334.812702px;}
.y1fc{bottom:335.767500px;}
.yfc{bottom:338.255394px;}
.y130{bottom:338.578950px;}
.y8c{bottom:341.149500px;}
.y184{bottom:341.730000px;}
.y7{bottom:341.769000px;}
.y156{bottom:343.126500px;}
.y67{bottom:346.213500px;}
.y32{bottom:350.418000px;}
.y1ca{bottom:350.436000px;}
.yb8{bottom:352.083000px;}
.ye7{bottom:353.213100px;}
.y199{bottom:354.133500px;}
.y1fb{bottom:354.918000px;}
.y112{bottom:355.782558px;}
.yfb{bottom:359.225250px;}
.y6{bottom:359.658000px;}
.y8b{bottom:362.041500px;}
.y183{bottom:362.622000px;}
.y12f{bottom:365.556000px;}
.y66{bottom:367.105500px;}
.y1c9{bottom:369.586500px;}
.y31{bottom:371.310000px;}
.yb7{bottom:372.973500px;}
.y198{bottom:373.633500px;}
.y1fa{bottom:374.070000px;}
.y111{bottom:376.752414px;}
.yc6{bottom:378.042585px;}
.yfa{bottom:380.285286px;}
.y8a{bottom:382.932000px;}
.y182{bottom:383.514000px;}
.y5{bottom:383.523000px;}
.yc5{bottom:387.672450px;}
.y65{bottom:387.997500px;}
.y1c8{bottom:388.737000px;}
.y197{bottom:393.132000px;}
.y1f9{bottom:393.220500px;}
.yb6{bottom:393.865500px;}
.y30{bottom:396.684000px;}
.y110{bottom:397.812450px;}
.yf9{bottom:401.255142px;}
.y4{bottom:401.410500px;}
.y89{bottom:403.824000px;}
.y181{bottom:404.406000px;}
.y1c7{bottom:407.887500px;}
.y64{bottom:408.888000px;}
.y1f8{bottom:412.371000px;}
.yb5{bottom:414.757500px;}
.y3{bottom:419.299500px;}
.y196{bottom:421.597500px;}
.yf8{bottom:422.224998px;}
.y88{bottom:424.716000px;}
.y180{bottom:425.296500px;}
.y1c6{bottom:427.038000px;}
.y63{bottom:429.780000px;}
.y1f7{bottom:431.521500px;}
.yb4{bottom:435.649500px;}
.y2{bottom:437.187000px;}
.y195{bottom:441.096000px;}
.yf7{bottom:443.285034px;}
.y87{bottom:445.606500px;}
.y17f{bottom:446.188500px;}
.y62{bottom:450.672000px;}
.y10f{bottom:453.972585px;}
.yb3{bottom:456.540000px;}
.y194{bottom:460.594500px;}
.y1{bottom:461.052000px;}
.y10e{bottom:463.602450px;}
.yf6{bottom:464.254890px;}
.y1c5{bottom:465.339000px;}
.y86{bottom:466.498500px;}
.y17e{bottom:467.080500px;}
.y1f6{bottom:469.822500px;}
.y61{bottom:471.562500px;}
.y2f{bottom:475.896000px;}
.yb2{bottom:477.432000px;}
.y193{bottom:480.093000px;}
.y1c4{bottom:484.489500px;}
.yf5{bottom:485.224746px;}
.y85{bottom:487.390500px;}
.y17d{bottom:487.971000px;}
.y1f5{bottom:488.973000px;}
.y60{bottom:492.454500px;}
.yb1{bottom:498.324000px;}
.y192{bottom:499.591500px;}
.y1c3{bottom:503.640000px;}
.yf4{bottom:506.284782px;}
.y1f4{bottom:508.123500px;}
.y84{bottom:508.281000px;}
.y17c{bottom:508.863000px;}
.y5f{bottom:513.346500px;}
.y2e{bottom:514.720500px;}
.y191{bottom:519.090000px;}
.y1c2{bottom:522.790500px;}
.yf3{bottom:527.254638px;}
.y1f3{bottom:527.274000px;}
.y83{bottom:529.173000px;}
.y17b{bottom:529.755000px;}
.y5e{bottom:534.237000px;}
.y2d{bottom:535.612500px;}
.yb0{bottom:537.405000px;}
.y190{bottom:538.590000px;}
.y20a{bottom:541.695000px;}
.y1c1{bottom:541.941000px;}
.y1f2{bottom:546.424500px;}
.yf2{bottom:548.224494px;}
.y82{bottom:550.065000px;}
.y17a{bottom:550.645500px;}
.y5d{bottom:555.129000px;}
.y2c{bottom:556.503000px;}
.yaf{bottom:559.237500px;}
.y209{bottom:560.845500px;}
.y1c0{bottom:561.091500px;}
.y1f1{bottom:565.575000px;}
.yf1{bottom:569.284530px;}
.y81{bottom:570.955500px;}
.y179{bottom:571.537500px;}
.y5c{bottom:576.021000px;}
.y2b{bottom:577.395000px;}
.y208{bottom:579.996000px;}
.y1bf{bottom:580.242000px;}
.yae{bottom:582.877500px;}
.y1f0{bottom:584.725500px;}
.yf0{bottom:590.254386px;}
.y80{bottom:591.847500px;}
.y178{bottom:592.429500px;}
.y5b{bottom:596.913000px;}
.y2a{bottom:598.287000px;}
.y1be{bottom:599.392500px;}
.y1ef{bottom:603.876000px;}
.yad{bottom:606.519000px;}
.yef{bottom:611.224242px;}
.y7f{bottom:612.739500px;}
.y177{bottom:613.320000px;}
.y5a{bottom:617.803500px;}
.y1bd{bottom:618.543000px;}
.y29{bottom:619.177500px;}
.y1ee{bottom:623.026500px;}
.yac{bottom:630.159000px;}
.yee{bottom:632.284278px;}
.y7e{bottom:633.631500px;}
.y176{bottom:634.212000px;}
.y1bc{bottom:637.693500px;}
.y59{bottom:638.695500px;}
.y28{bottom:640.069500px;}
.y1ed{bottom:642.177000px;}
.yab{bottom:653.800500px;}
.y7d{bottom:654.522000px;}
.y175{bottom:655.104000px;}
.y1bb{bottom:656.844000px;}
.yed{bottom:657.754116px;}
.y58{bottom:659.587500px;}
.y27{bottom:660.961500px;}
.y1ec{bottom:661.327500px;}
.ye6{bottom:662.194500px;}
.y12e{bottom:669.919500px;}
.y7c{bottom:675.414000px;}
.y174{bottom:675.996000px;}
.yaa{bottom:677.440500px;}
.y57{bottom:680.478000px;}
.y26{bottom:681.852000px;}
.ye5{bottom:683.085000px;}
.y12d{bottom:690.811500px;}
.y1ba{bottom:695.146500px;}
.y7b{bottom:696.306000px;}
.y173{bottom:696.886500px;}
.y1eb{bottom:699.628500px;}
.ya9{bottom:701.082000px;}
.y56{bottom:701.370000px;}
.y25{bottom:702.744000px;}
.ye4{bottom:703.977000px;}
.y12c{bottom:711.703500px;}
.y1b9{bottom:714.297000px;}
.y7a{bottom:717.196500px;}
.y172{bottom:717.778500px;}
.y1ea{bottom:718.779000px;}
.y55{bottom:722.262000px;}
.y24{bottom:723.636000px;}
.ya8{bottom:724.722000px;}
.ye3{bottom:724.869000px;}
.y12b{bottom:732.594000px;}
.y1b8{bottom:733.447500px;}
.y1e9{bottom:737.929500px;}
.y79{bottom:738.088500px;}
.y171{bottom:738.670500px;}
.y54{bottom:743.152500px;}
.y23{bottom:744.526500px;}
.ye2{bottom:745.759500px;}
.ya7{bottom:748.363500px;}
.y1b7{bottom:752.598000px;}
.y12a{bottom:753.486000px;}
.y1e8{bottom:757.081500px;}
.y170{bottom:759.561000px;}
.y78{bottom:763.462500px;}
.y53{bottom:764.044500px;}
.y22{bottom:765.418500px;}
.ye1{bottom:766.651500px;}
.y1b6{bottom:771.748500px;}
.ya6{bottom:772.003500px;}
.y1e7{bottom:776.232000px;}
.y16f{bottom:780.453000px;}
.y52{bottom:784.936500px;}
.y21{bottom:786.310500px;}
.ye0{bottom:787.543500px;}
.y77{bottom:787.894500px;}
.y129{bottom:789.114000px;}
.y1b5{bottom:790.899000px;}
.y1e6{bottom:795.382500px;}
.ya5{bottom:795.645000px;}
.y16e{bottom:801.345000px;}
.y51{bottom:805.827000px;}
.y20{bottom:807.202500px;}
.y128{bottom:808.347000px;}
.y1b4{bottom:810.049500px;}
.y1e5{bottom:814.533000px;}
.y16d{bottom:822.235500px;}
.ydf{bottom:823.171500px;}
.y50{bottom:826.719000px;}
.y1f{bottom:828.093000px;}
.y1b3{bottom:829.200000px;}
.ya4{bottom:830.253000px;}
.y10d{bottom:830.776500px;}
.y1e4{bottom:833.683500px;}
.y16c{bottom:843.127500px;}
.yc4{bottom:845.599500px;}
.y4f{bottom:847.611000px;}
.y1b2{bottom:848.350500px;}
.y1e{bottom:848.985000px;}
.y1e3{bottom:852.834000px;}
.y16b{bottom:864.019500px;}
.y1b1{bottom:867.501000px;}
.y4e{bottom:868.503000px;}
.y1d{bottom:869.877000px;}
.y1e2{bottom:871.984500px;}
.ya3{bottom:872.365500px;}
.y16a{bottom:884.910000px;}
.y1b0{bottom:886.651500px;}
.y4d{bottom:889.393500px;}
.y1e1{bottom:891.135000px;}
.ya2{bottom:894.198000px;}
.y169{bottom:905.802000px;}
.y1c{bottom:907.137000px;}
.y4c{bottom:910.285500px;}
.ya1{bottom:917.839500px;}
.y1b{bottom:923.277000px;}
.y1af{bottom:924.952500px;}
.y168{bottom:926.694000px;}
.y1e0{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.yec{bottom:939.004494px;}
.y1a{bottom:939.417000px;}
.ya0{bottom:941.479500px;}
.y1ae{bottom:944.103000px;}
.y167{bottom:947.584500px;}
.y1df{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y19{bottom:955.557000px;}
.yeb{bottom:959.974314px;}
.y1ad{bottom:963.253500px;}
.y9f{bottom:965.121000px;}
.y1de{bottom:967.737000px;}
.y166{bottom:968.476500px;}
.y49{bottom:972.960000px;}
.yea{bottom:981.034350px;}
.y1ac{bottom:982.404000px;}
.y1dd{bottom:986.887500px;}
.y9e{bottom:988.761000px;}
.y165{bottom:989.368500px;}
.y48{bottom:993.852000px;}
.y1ab{bottom:1001.554500px;}
.y18{bottom:1001.814000px;}
.y1dc{bottom:1006.038000px;}
.y164{bottom:1010.260500px;}
.y9d{bottom:1012.402500px;}
.y47{bottom:1014.742500px;}
.y1aa{bottom:1020.705000px;}
.y1db{bottom:1025.188500px;}
.y163{bottom:1031.151000px;}
.y46{bottom:1035.634500px;}
.y9c{bottom:1036.042500px;}
.ye9{bottom:1037.194485px;}
.y1a9{bottom:1039.855500px;}
.y17{bottom:1040.638500px;}
.y1da{bottom:1044.339000px;}
.ye8{bottom:1046.824350px;}
.y162{bottom:1052.043000px;}
.y45{bottom:1056.526500px;}
.y1a8{bottom:1059.007500px;}
.y9b{bottom:1059.684000px;}
.y1d9{bottom:1063.489500px;}
.y16{bottom:1071.975000px;}
.y161{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y1a7{bottom:1078.158000px;}
.y1d8{bottom:1082.640000px;}
.y9a{bottom:1083.324000px;}
.y160{bottom:1093.825500px;}
.y1a6{bottom:1097.308500px;}
.y43{bottom:1098.309000px;}
.y1d7{bottom:1101.790500px;}
.y15{bottom:1103.313000px;}
.y99{bottom:1106.965500px;}
.y15f{bottom:1114.717500px;}
.y1a5{bottom:1116.459000px;}
.y42{bottom:1119.201000px;}
.y1d6{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.y98{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.h12{height:30.582721px;}
.h2{height:37.993262px;}
.hb{height:38.896243px;}
.h14{height:39.761719px;}
.h5{height:43.217759px;}
.h6{height:43.421105px;}
.h3{height:43.815515px;}
.hd{height:44.279648px;}
.ha{height:48.848947px;}
.h15{height:49.939453px;}
.h8{height:51.861658px;}
.h16{height:53.015625px;}
.h7{height:54.276245px;}
.he{height:55.599258px;}
.hf{height:55.599402px;}
.h9{height:62.946077px;}
.h4{height:77.792486px;}
.hc{height:255.937500px;}
.h11{height:269.028000px;}
.h13{height:286.701000px;}
.h10{height:295.211400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:494.854500px;}
.w2{width:501.400500px;}
.w4{width:519.073500px;}
.w5{width:538.711500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x56{left:-198.009000px;}
.x5b{left:-195.391500px;}
.x57{left:-2.439000px;}
.x0{left:0.000000px;}
.x59{left:29.419947px;}
.x5d{left:32.037447px;}
.x1{left:53.574000px;}
.x54{left:62.541000px;}
.x79{left:84.220500px;}
.x78{left:85.848000px;}
.x55{left:117.456000px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x4{left:281.479500px;}
.x52{left:291.159000px;}
.x53{left:293.274000px;}
.x11{left:296.940000px;}
.x12{left:311.884500px;}
.x2c{left:314.443500px;}
.x13{left:315.696000px;}
.x6d{left:319.272000px;}
.x2e{left:321.864000px;}
.x6f{left:323.727000px;}
.x51{left:326.107500px;}
.x2d{left:329.388000px;}
.x14{left:330.639000px;}
.x70{left:332.839500px;}
.x6e{left:334.215000px;}
.x2f{left:336.808500px;}
.x71{left:347.784000px;}
.x32{left:350.041500px;}
.x9{left:356.544000px;}
.xa{left:364.017000px;}
.xb{left:367.678500px;}
.x33{left:368.796000px;}
.xc{left:375.150000px;}
.x1f{left:377.028000px;}
.x3f{left:378.045000px;}
.x40{left:381.807000px;}
.x34{left:383.740500px;}
.x20{left:391.972500px;}
.x41{left:396.750000px;}
.x43{left:399.405000px;}
.x6c{left:411.844500px;}
.x4d{left:426.813000px;}
.x28{left:430.030500px;}
.x1e{left:434.379000px;}
.x29{left:444.973500px;}
.x19{left:449.259000px;}
.x26{left:458.341500px;}
.x15{left:460.855500px;}
.x1a{left:464.203500px;}
.x4b{left:468.283500px;}
.x1b{left:471.823500px;}
.x27{left:473.286000px;}
.x16{left:475.798500px;}
.x61{left:479.619000px;}
.x4c{left:483.228000px;}
.x1c{left:486.768000px;}
.x47{left:491.578500px;}
.x5e{left:495.179382px;}
.x58{left:497.780298px;}
.x5c{left:500.397798px;}
.x42{left:505.960500px;}
.x48{left:511.857000px;}
.xf{left:513.553500px;}
.x10{left:521.025000px;}
.x62{left:523.800000px;}
.x60{left:525.655797px;}
.x49{left:526.801500px;}
.x1d{left:544.072500px;}
.xd{left:551.107500px;}
.x72{left:556.087500px;}
.x63{left:557.155350px;}
.xe{left:558.579000px;}
.x73{left:571.032000px;}
.x68{left:578.743500px;}
.x5a{left:586.972827px;}
.x5f{left:589.590327px;}
.x69{left:593.688000px;}
.x44{left:596.736000px;}
.x6a{left:609.676500px;}
.x45{left:611.679000px;}
.x46{left:615.490500px;}
.x6b{left:624.619500px;}
.x3e{left:626.332500px;}
.x39{left:629.254500px;}
.x21{left:630.337500px;}
.x4a{left:640.431000px;}
.x3a{left:643.452000px;}
.x22{left:645.282000px;}
.x3b{left:646.861500px;}
.x23{left:648.943500px;}
.x17{left:654.166500px;}
.x3c{left:661.057500px;}
.x24{left:663.886500px;}
.x18{left:669.111000px;}
.x50{left:672.169500px;}
.x4e{left:690.276000px;}
.x4f{left:705.219000px;}
.x25{left:740.776500px;}
.x64{left:751.162500px;}
.x74{left:758.923500px;}
.x3d{left:763.299000px;}
.x65{left:766.107000px;}
.x66{left:769.903500px;}
.x75{left:773.868000px;}
.x30{left:776.635500px;}
.x76{left:777.645000px;}
.x67{left:784.846500px;}
.x31{left:791.580000px;}
.x77{left:792.588000px;}
.x35{left:798.196500px;}
.x37{left:799.441500px;}
.x36{left:813.139500px;}
.x5{left:814.360500px;}
.x2a{left:816.951000px;}
.x38{left:818.046000px;}
.x6{left:821.832000px;}
.x7{left:825.501000px;}
.x2b{left:831.894000px;}
.x8{left:832.972500px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440128pt;}
.v2{vertical-align:19.285333pt;}
.ls50{letter-spacing:-1.517696pt;}
.ls56{letter-spacing:-0.283232pt;}
.ls55{letter-spacing:-0.256512pt;}
.ls3c{letter-spacing:-0.235136pt;}
.ls51{letter-spacing:-0.181696pt;}
.ls4b{letter-spacing:-0.171008pt;}
.ls3a{letter-spacing:-0.160320pt;}
.ls4f{letter-spacing:-0.158400pt;}
.ls49{letter-spacing:-0.149632pt;}
.ls38{letter-spacing:-0.138944pt;}
.ls4c{letter-spacing:-0.128256pt;}
.ls2c{letter-spacing:-0.122912pt;}
.ls4a{letter-spacing:-0.117568pt;}
.ls34{letter-spacing:-0.112224pt;}
.ls30{letter-spacing:-0.106880pt;}
.ls3b{letter-spacing:-0.101536pt;}
.ls54{letter-spacing:-0.096192pt;}
.ls32{letter-spacing:-0.090848pt;}
.ls39{letter-spacing:-0.085504pt;}
.ls52{letter-spacing:-0.080160pt;}
.ls37{letter-spacing:-0.074816pt;}
.ls2a{letter-spacing:-0.069472pt;}
.ls4d{letter-spacing:-0.058784pt;}
.ls3d{letter-spacing:-0.053440pt;}
.ls31{letter-spacing:-0.048096pt;}
.ls3e{letter-spacing:-0.042752pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls48{letter-spacing:-0.032064pt;}
.ls35{letter-spacing:-0.026720pt;}
.ls2f{letter-spacing:-0.021376pt;}
.ls4e{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.016032pt;}
.ls36{letter-spacing:-0.010688pt;}
.ls29{letter-spacing:-0.008512pt;}
.ls2e{letter-spacing:-0.005344pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000260pt;}
.ls43{letter-spacing:0.000387pt;}
.ls5{letter-spacing:0.000540pt;}
.ls60{letter-spacing:0.000711pt;}
.ls69{letter-spacing:0.002212pt;}
.ls64{letter-spacing:0.002525pt;}
.ls13{letter-spacing:0.002861pt;}
.ls5b{letter-spacing:0.004267pt;}
.ls3f{letter-spacing:0.005344pt;}
.ls1d{letter-spacing:0.010688pt;}
.ls1f{letter-spacing:0.016032pt;}
.ls22{letter-spacing:0.021376pt;}
.ls17{letter-spacing:0.025536pt;}
.ls26{letter-spacing:0.026720pt;}
.ls45{letter-spacing:0.032064pt;}
.ls44{letter-spacing:0.033600pt;}
.ls23{letter-spacing:0.037408pt;}
.ls20{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.048096pt;}
.ls42{letter-spacing:0.053440pt;}
.ls40{letter-spacing:0.058784pt;}
.ls1e{letter-spacing:0.064128pt;}
.ls47{letter-spacing:0.069472pt;}
.ls41{letter-spacing:0.074816pt;}
.ls46{letter-spacing:0.080160pt;}
.ls2d{letter-spacing:0.085504pt;}
.ls1c{letter-spacing:0.090848pt;}
.ls1b{letter-spacing:0.101536pt;}
.ls53{letter-spacing:0.106880pt;}
.ls25{letter-spacing:0.117568pt;}
.ls19{letter-spacing:0.148960pt;}
.ls21{letter-spacing:0.149632pt;}
.ls1a{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.161728pt;}
.ls15{letter-spacing:0.487835pt;}
.ls16{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.ls3{letter-spacing:10.626533pt;}
.ls57{letter-spacing:11.657112pt;}
.ls5f{letter-spacing:11.817287pt;}
.ls5c{letter-spacing:11.846584pt;}
.ls68{letter-spacing:11.862079pt;}
.ls59{letter-spacing:11.954133pt;}
.ls5a{letter-spacing:11.959467pt;}
.ls5d{letter-spacing:11.993776pt;}
.ls6b{letter-spacing:12.036711pt;}
.ls63{letter-spacing:12.088337pt;}
.ls5e{letter-spacing:12.097088pt;}
.ls6c{letter-spacing:12.139555pt;}
.ls2{letter-spacing:12.983060pt;}
.ls11{letter-spacing:13.103322pt;}
.ls10{letter-spacing:13.108551pt;}
.lsa{letter-spacing:13.193157pt;}
.ls27{letter-spacing:13.257704pt;}
.lsb{letter-spacing:13.278903pt;}
.lsf{letter-spacing:13.284237pt;}
.ls7{letter-spacing:13.322562pt;}
.ls28{letter-spacing:13.343561pt;}
.ls8{letter-spacing:13.398430pt;}
.ls66{letter-spacing:13.613427pt;}
.ls14{letter-spacing:13.923096pt;}
.ls67{letter-spacing:13.942839pt;}
.ls65{letter-spacing:14.057872pt;}
.ls9{letter-spacing:14.258877pt;}
.ls62{letter-spacing:14.823467pt;}
.ls58{letter-spacing:14.967676pt;}
.ls6e{letter-spacing:16.269637pt;}
.ls6a{letter-spacing:16.452643pt;}
.ls61{letter-spacing:16.546761pt;}
.ls12{letter-spacing:16.564760pt;}
.ls6f{letter-spacing:17.242186pt;}
.lsd{letter-spacing:17.464106pt;}
.lsc{letter-spacing:17.469335pt;}
.ls6{letter-spacing:19.288943pt;}
.lse{letter-spacing:20.261492pt;}
.ls1{letter-spacing:25.292137pt;}
.ws7a{word-spacing:-53.440000pt;}
.ws77{word-spacing:-32.000000pt;}
.wsac{word-spacing:-13.376032pt;}
.ws7b{word-spacing:-13.360000pt;}
.ws45{word-spacing:-13.283467pt;}
.wsa9{word-spacing:-13.210368pt;}
.wsab{word-spacing:-12.000000pt;}
.ws130{word-spacing:-11.955200pt;}
.ws75{word-spacing:-10.801728pt;}
.ws76{word-spacing:-10.640000pt;}
.ws20{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.ws78{word-spacing:-8.000000pt;}
.ws47{word-spacing:-2.922363pt;}
.wsca{word-spacing:-2.778880pt;}
.wsad{word-spacing:-2.709827pt;}
.wsbd{word-spacing:-2.709408pt;}
.wsc9{word-spacing:-2.672000pt;}
.wsde{word-spacing:-2.618560pt;}
.wsbf{word-spacing:-2.570464pt;}
.wsdd{word-spacing:-2.533056pt;}
.wsdf{word-spacing:-2.484960pt;}
.wsbe{word-spacing:-2.463584pt;}
.wsef{word-spacing:-2.452896pt;}
.wsf0{word-spacing:-2.399456pt;}
.ws11{word-spacing:-2.337890pt;}
.ws10a{word-spacing:-2.228448pt;}
.wsf9{word-spacing:-2.223104pt;}
.ws109{word-spacing:-2.201728pt;}
.ws5c{word-spacing:-2.072221pt;}
.ws11f{word-spacing:-1.965953pt;}
.ws8a{word-spacing:-1.902464pt;}
.ws3{word-spacing:-1.859837pt;}
.ws1{word-spacing:-1.859680pt;}
.ws87{word-spacing:-1.849024pt;}
.wsfb{word-spacing:-1.816960pt;}
.ws44{word-spacing:-1.806551pt;}
.ws46{word-spacing:-1.753418pt;}
.ws0{word-spacing:-1.748099pt;}
.ws89{word-spacing:-1.747488pt;}
.ws2c{word-spacing:-1.647150pt;}
.ws11d{word-spacing:-1.594016pt;}
.wsfa{word-spacing:-1.581824pt;}
.ws129{word-spacing:-1.578086pt;}
.ws93{word-spacing:-1.501664pt;}
.ws54{word-spacing:-1.487748pt;}
.ws94{word-spacing:-1.480288pt;}
.ws1d{word-spacing:-1.434614pt;}
.ws88{word-spacing:-1.410816pt;}
.wsc1{word-spacing:-1.378752pt;}
.ws151{word-spacing:-1.338982pt;}
.ws25{word-spacing:-1.275213pt;}
.wsc0{word-spacing:-1.255840pt;}
.ws13e{word-spacing:-1.243341pt;}
.ws118{word-spacing:-1.222079pt;}
.wscd{word-spacing:-1.213088pt;}
.ws91{word-spacing:-1.186368pt;}
.ws92{word-spacing:-1.127584pt;}
.wsf2{word-spacing:-1.106208pt;}
.wsc2{word-spacing:-1.084832pt;}
.wsf1{word-spacing:-1.079488pt;}
.ws1e{word-spacing:-1.009543pt;}
.ws42{word-spacing:-0.956410pt;}
.wsa5{word-spacing:-0.945888pt;}
.wsa6{word-spacing:-0.871072pt;}
.wsd9{word-spacing:-0.865728pt;}
.wscc{word-spacing:-0.860384pt;}
.ws7d{word-spacing:-0.765133pt;}
.ws122{word-spacing:-0.717312pt;}
.ws11b{word-spacing:-0.690740pt;}
.ws15a{word-spacing:-0.669491pt;}
.wsa7{word-spacing:-0.571808pt;}
.wsaf{word-spacing:-0.566464pt;}
.ws43{word-spacing:-0.531339pt;}
.wscb{word-spacing:-0.518368pt;}
.ws15b{word-spacing:-0.478208pt;}
.ws38{word-spacing:-0.425071pt;}
.ws12e{word-spacing:-0.334746pt;}
.wsf{word-spacing:-0.318803pt;}
.wsb3{word-spacing:-0.299264pt;}
.ws9c{word-spacing:-0.288576pt;}
.ws131{word-spacing:-0.286925pt;}
.ws9e{word-spacing:-0.277888pt;}
.ws35{word-spacing:-0.265669pt;}
.wsdc{word-spacing:-0.245824pt;}
.ws7e{word-spacing:-0.242592pt;}
.ws100{word-spacing:-0.240480pt;}
.ws120{word-spacing:-0.239104pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws137{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.ws9b{word-spacing:-0.149632pt;}
.ws140{word-spacing:-0.143462pt;}
.ws9f{word-spacing:-0.128256pt;}
.ws5e{word-spacing:-0.110228pt;}
.ws21{word-spacing:-0.106268pt;}
.ws12a{word-spacing:-0.095642pt;}
.ws7f{word-spacing:-0.072352pt;}
.ws79{word-spacing:-0.053440pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws135{word-spacing:-0.047821pt;}
.ws163{word-spacing:-0.007125pt;}
.ws14f{word-spacing:-0.006656pt;}
.ws16c{word-spacing:-0.005530pt;}
.ws14e{word-spacing:-0.005385pt;}
.ws9d{word-spacing:-0.005344pt;}
.ws154{word-spacing:-0.004062pt;}
.ws165{word-spacing:-0.003089pt;}
.ws147{word-spacing:-0.001323pt;}
.ws7{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.000100pt;}
.ws13f{word-spacing:0.047821pt;}
.wsf3{word-spacing:0.048096pt;}
.ws12{word-spacing:0.053134pt;}
.ws160{word-spacing:0.058358pt;}
.wsb6{word-spacing:0.058784pt;}
.ws104{word-spacing:0.064128pt;}
.wsbb{word-spacing:0.080160pt;}
.ws6{word-spacing:0.095642pt;}
.wsbc{word-spacing:0.096192pt;}
.wsb{word-spacing:0.106268pt;}
.wsba{word-spacing:0.106880pt;}
.wsa8{word-spacing:0.122912pt;}
.wsd1{word-spacing:0.124800pt;}
.wscf{word-spacing:0.138944pt;}
.ws13b{word-spacing:0.143462pt;}
.wsce{word-spacing:0.149632pt;}
.wse9{word-spacing:0.154976pt;}
.wsd0{word-spacing:0.158400pt;}
.ws18{word-spacing:0.159402pt;}
.ws13c{word-spacing:0.172842pt;}
.wsd2{word-spacing:0.177600pt;}
.ws124{word-spacing:0.191283pt;}
.ws105{word-spacing:0.192384pt;}
.ws27{word-spacing:0.212535pt;}
.ws95{word-spacing:0.219104pt;}
.ws139{word-spacing:0.239104pt;}
.ws13{word-spacing:0.265669pt;}
.ws15d{word-spacing:0.286925pt;}
.ws4c{word-spacing:0.318803pt;}
.ws29{word-spacing:0.371937pt;}
.ws14d{word-spacing:0.375269pt;}
.ws5{word-spacing:0.375335pt;}
.ws14c{word-spacing:0.382566pt;}
.wsd4{word-spacing:0.390112pt;}
.ws2a{word-spacing:0.425071pt;}
.ws98{word-spacing:0.427520pt;}
.ws136{word-spacing:0.430387pt;}
.ws145{word-spacing:0.478208pt;}
.ws14b{word-spacing:0.526029pt;}
.wsd3{word-spacing:0.529056pt;}
.ws7c{word-spacing:0.531339pt;}
.ws14{word-spacing:0.584473pt;}
.ws82{word-spacing:0.619904pt;}
.ws74{word-spacing:0.662689pt;}
.ws9a{word-spacing:0.721440pt;}
.ws2e{word-spacing:0.743874pt;}
.ws83{word-spacing:0.758848pt;}
.ws81{word-spacing:0.790912pt;}
.ws10f{word-spacing:0.797008pt;}
.ws99{word-spacing:0.822976pt;}
.ws40{word-spacing:0.850142pt;}
.ws19{word-spacing:0.903276pt;}
.ws34{word-spacing:0.956410pt;}
.ws61{word-spacing:1.009543pt;}
.ws143{word-spacing:1.052058pt;}
.ws48{word-spacing:1.062677pt;}
.ws51{word-spacing:1.115811pt;}
.ws2b{word-spacing:1.168945pt;}
.ws4f{word-spacing:1.222079pt;}
.ws156{word-spacing:1.243341pt;}
.ws58{word-spacing:1.275213pt;}
.ws155{word-spacing:1.291162pt;}
.wsf4{word-spacing:1.330656pt;}
.ws12d{word-spacing:1.338982pt;}
.wse8{word-spacing:1.341344pt;}
.wsa1{word-spacing:1.368064pt;}
.ws26{word-spacing:1.381481pt;}
.wsa0{word-spacing:1.384096pt;}
.wsb0{word-spacing:1.389440pt;}
.wsf6{word-spacing:1.416160pt;}
.wsf5{word-spacing:1.432192pt;}
.ws4e{word-spacing:1.434614pt;}
.wse7{word-spacing:1.442880pt;}
.ws157{word-spacing:1.530266pt;}
.ws28{word-spacing:1.540882pt;}
.wsc{word-spacing:1.594016pt;}
.ws148{word-spacing:1.625907pt;}
.wse{word-spacing:1.647150pt;}
.ws8d{word-spacing:1.656640pt;}
.ws8b{word-spacing:1.661984pt;}
.wsb7{word-spacing:1.667328pt;}
.ws12b{word-spacing:1.673728pt;}
.wsb1{word-spacing:1.683360pt;}
.ws2f{word-spacing:1.700284pt;}
.ws8c{word-spacing:1.715424pt;}
.ws63{word-spacing:1.753418pt;}
.ws55{word-spacing:1.806551pt;}
.wsb2{word-spacing:1.816960pt;}
.ws12c{word-spacing:1.817190pt;}
.ws32{word-spacing:1.912819pt;}
.wsb9{word-spacing:1.923840pt;}
.ws31{word-spacing:1.965953pt;}
.wsb8{word-spacing:1.987968pt;}
.ws159{word-spacing:2.008474pt;}
.ws121{word-spacing:2.056294pt;}
.ws117{word-spacing:2.125355pt;}
.ws11a{word-spacing:2.231622pt;}
.ws166{word-spacing:2.247578pt;}
.ws36{word-spacing:2.284756pt;}
.wsb4{word-spacing:2.335328pt;}
.ws114{word-spacing:2.337890pt;}
.ws132{word-spacing:2.343219pt;}
.wsb5{word-spacing:2.346016pt;}
.ws3b{word-spacing:2.391024pt;}
.ws161{word-spacing:2.391040pt;}
.ws123{word-spacing:2.438861pt;}
.ws16a{word-spacing:2.486682pt;}
.ws116{word-spacing:2.497292pt;}
.ws8{word-spacing:2.550432pt;}
.ws12f{word-spacing:2.553276pt;}
.ws2d{word-spacing:2.603559pt;}
.ws90{word-spacing:2.666656pt;}
.wsd5{word-spacing:2.677344pt;}
.ws15{word-spacing:2.709827pt;}
.wsc3{word-spacing:2.714752pt;}
.ws138{word-spacing:2.725786pt;}
.ws8f{word-spacing:2.752160pt;}
.wsd6{word-spacing:2.757504pt;}
.ws4a{word-spacing:2.762961pt;}
.ws111{word-spacing:2.816095pt;}
.ws146{word-spacing:2.861867pt;}
.ws13d{word-spacing:2.862797pt;}
.ws141{word-spacing:2.862925pt;}
.ws16b{word-spacing:2.863787pt;}
.ws13a{word-spacing:2.865212pt;}
.ws15c{word-spacing:2.865937pt;}
.ws144{word-spacing:2.868096pt;}
.ws152{word-spacing:2.868258pt;}
.ws142{word-spacing:2.869026pt;}
.ws134{word-spacing:2.869248pt;}
.ws162{word-spacing:2.870144pt;}
.ws164{word-spacing:2.917069pt;}
.ws65{word-spacing:2.922363pt;}
.wsc8{word-spacing:2.965920pt;}
.ws37{word-spacing:2.975497pt;}
.wsc4{word-spacing:2.981952pt;}
.wsaa{word-spacing:3.060531pt;}
.ws10e{word-spacing:3.081764pt;}
.wsc7{word-spacing:3.088832pt;}
.ws150{word-spacing:3.108352pt;}
.wsc5{word-spacing:3.131584pt;}
.ws3e{word-spacing:3.134898pt;}
.ws16{word-spacing:3.185311pt;}
.ws11e{word-spacing:3.188032pt;}
.wsdb{word-spacing:3.254496pt;}
.ws71{word-spacing:3.294300pt;}
.ws8e{word-spacing:3.297248pt;}
.wsda{word-spacing:3.302592pt;}
.ws64{word-spacing:3.347434pt;}
.ws96{word-spacing:3.366720pt;}
.ws167{word-spacing:3.395277pt;}
.ws110{word-spacing:3.400567pt;}
.ws168{word-spacing:3.402866pt;}
.ws97{word-spacing:3.441536pt;}
.ws57{word-spacing:3.506835pt;}
.ws15e{word-spacing:3.538739pt;}
.wse0{word-spacing:3.569792pt;}
.wsc6{word-spacing:3.585824pt;}
.ws49{word-spacing:3.613103pt;}
.ws106{word-spacing:3.623232pt;}
.ws128{word-spacing:3.634381pt;}
.wsd8{word-spacing:3.639264pt;}
.wsd7{word-spacing:3.655296pt;}
.ws107{word-spacing:3.660640pt;}
.ws4d{word-spacing:3.666237pt;}
.ws115{word-spacing:3.719371pt;}
.ws84{word-spacing:3.724768pt;}
.wsfd{word-spacing:3.730112pt;}
.wsfc{word-spacing:3.751488pt;}
.ws60{word-spacing:3.772505pt;}
.ws72{word-spacing:3.825638pt;}
.ws17{word-spacing:3.825664pt;}
.ws85{word-spacing:3.836992pt;}
.wse1{word-spacing:3.842336pt;}
.ws10c{word-spacing:3.878772pt;}
.wse2{word-spacing:3.879744pt;}
.ws108{word-spacing:3.885088pt;}
.wsfe{word-spacing:3.901120pt;}
.ws86{word-spacing:3.927840pt;}
.ws5a{word-spacing:3.931906pt;}
.ws23{word-spacing:3.985040pt;}
.wsf8{word-spacing:3.986624pt;}
.wsf7{word-spacing:4.029376pt;}
.ws30{word-spacing:4.091308pt;}
.wsae{word-spacing:4.144442pt;}
.ws62{word-spacing:4.197575pt;}
.ws16d{word-spacing:4.208230pt;}
.ws103{word-spacing:4.237792pt;}
.ws24{word-spacing:4.250709pt;}
.ws102{word-spacing:4.291232pt;}
.ws39{word-spacing:4.303843pt;}
.ws169{word-spacing:4.303872pt;}
.ws101{word-spacing:4.333984pt;}
.ws153{word-spacing:4.447334pt;}
.ws59{word-spacing:4.463245pt;}
.ws52{word-spacing:4.516379pt;}
.ws14a{word-spacing:4.590797pt;}
.ws53{word-spacing:4.622646pt;}
.ws33{word-spacing:4.675780pt;}
.ws16f{word-spacing:4.829901pt;}
.ws4b{word-spacing:4.835182pt;}
.wsa{word-spacing:4.888316pt;}
.ws50{word-spacing:5.047717pt;}
.ws10d{word-spacing:5.153985pt;}
.ws5f{word-spacing:5.207119pt;}
.ws70{word-spacing:5.366521pt;}
.ws113{word-spacing:5.419654pt;}
.ws112{word-spacing:5.472788pt;}
.wsa4{word-spacing:5.493632pt;}
.wsa2{word-spacing:5.525696pt;}
.ws3f{word-spacing:5.525922pt;}
.wsa3{word-spacing:5.573792pt;}
.wsec{word-spacing:5.734112pt;}
.ws11c{word-spacing:5.738458pt;}
.wsea{word-spacing:5.792896pt;}
.ws22{word-spacing:5.844725pt;}
.wsff{word-spacing:5.910464pt;}
.wseb{word-spacing:5.921152pt;}
.wsd{word-spacing:5.950993pt;}
.ws5d{word-spacing:6.004127pt;}
.ws1b{word-spacing:6.216662pt;}
.ws41{word-spacing:6.269796pt;}
.ws3c{word-spacing:6.322930pt;}
.ws10b{word-spacing:6.376064pt;}
.wse4{word-spacing:6.749472pt;}
.wsee{word-spacing:6.824288pt;}
.wsed{word-spacing:6.829632pt;}
.ws5b{word-spacing:6.960537pt;}
.ws3d{word-spacing:7.119938pt;}
.wse5{word-spacing:7.144928pt;}
.ws56{word-spacing:7.173072pt;}
.wse3{word-spacing:7.193024pt;}
.wse6{word-spacing:7.401440pt;}
.ws3a{word-spacing:7.545009pt;}
.ws158{word-spacing:7.890432pt;}
.ws73{word-spacing:8.342017pt;}
.ws119{word-spacing:8.607686pt;}
.ws80{word-spacing:10.329312pt;}
.ws133{word-spacing:10.359190pt;}
.ws9{word-spacing:13.175724pt;}
.ws15f{word-spacing:13.915853pt;}
.ws149{word-spacing:14.154957pt;}
.ws127{word-spacing:14.202778pt;}
.ws126{word-spacing:14.776627pt;}
.ws16e{word-spacing:15.828685pt;}
.ws2{word-spacing:19.715148pt;}
.ws125{word-spacing:32.577254pt;}
.ws68{word-spacing:130.789888pt;}
.ws6c{word-spacing:133.802598pt;}
.ws67{word-spacing:142.745088pt;}
.ws6b{word-spacing:148.722688pt;}
.ws66{word-spacing:148.866150pt;}
.ws6a{word-spacing:154.700288pt;}
.ws6e{word-spacing:159.386726pt;}
.ws69{word-spacing:166.655488pt;}
.ws6f{word-spacing:250.676634pt;}
.ws6d{word-spacing:253.258957pt;}
._18{margin-left:-6.535466pt;}
._4{margin-left:-5.483429pt;}
._6{margin-left:-3.878772pt;}
._12{margin-left:-2.954233pt;}
._1{margin-left:-1.338970pt;}
._40{width:1.034208pt;}
._42{width:2.441920pt;}
._48{width:3.478682pt;}
._0{width:9.856304pt;}
._43{width:11.487538pt;}
._9{width:12.443948pt;}
._17{width:14.091115pt;}
._16{width:15.036884pt;}
._8{width:16.428988pt;}
._b{width:17.385415pt;}
._11{width:18.384318pt;}
._d{width:19.446995pt;}
._10{width:20.615940pt;}
._5{width:21.529839pt;}
._7{width:22.688161pt;}
._3f{width:23.591437pt;}
._a{width:24.972917pt;}
._3e{width:26.719438pt;}
._45{width:28.479753pt;}
._2{width:29.935821pt;}
._15{width:31.508383pt;}
._19{width:32.464793pt;}
._44{width:34.175699pt;}
._c{width:35.780356pt;}
._14{width:38.256384pt;}
._13{width:39.637865pt;}
._3{width:48.382719pt;}
._47{width:54.993920pt;}
._1e{width:142.745088pt;}
._3c{width:147.431526pt;}
._24{width:154.700288pt;}
._36{width:162.734182pt;}
._21{width:166.655488pt;}
._2b{width:171.341926pt;}
._22{width:178.610688pt;}
._37{width:186.979328pt;}
._33{width:195.300147pt;}
._34{width:196.203455pt;}
._3d{width:200.895181pt;}
._26{width:202.999296pt;}
._3b{width:209.311642pt;}
._2c{width:212.228710pt;}
._39{width:216.580390pt;}
._31{width:219.146782pt;}
._38{width:220.692992pt;}
._2e{width:224.231731pt;}
._35{width:254.263194pt;}
._30{width:256.080384pt;}
._2d{width:262.631834pt;}
._1c{width:264.693415pt;}
._2f{width:266.218394pt;}
._3a{width:272.482918pt;}
._1a{width:276.053515pt;}
._23{width:281.653972pt;}
._32{width:283.864269pt;}
._20{width:289.028915pt;}
._29{width:325.707469pt;}
._1b{width:371.232870pt;}
._2a{width:399.208038pt;}
._25{width:462.714061pt;}
._1f{width:564.896571pt;}
._28{width:680.208347pt;}
._1d{width:716.403405pt;}
._27{width:740.074701pt;}
._e{width:1688.877333pt;}
._41{width:1892.524032pt;}
._46{width:2258.258667pt;}
._f{width:2279.512000pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs6{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fsd{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y155{bottom:-688.078725pt;}
.y154{bottom:-669.358693pt;}
.y153{bottom:-650.718821pt;}
.yde{bottom:-645.961339pt;}
.y152{bottom:-632.078949pt;}
.ydd{bottom:-627.321467pt;}
.y151{bottom:-613.358917pt;}
.ydc{bottom:-608.601435pt;}
.y150{bottom:-594.719045pt;}
.ydb{bottom:-586.041739pt;}
.y14f{bottom:-576.079173pt;}
.y14e{bottom:-557.359141pt;}
.y14d{bottom:-538.719269pt;}
.y14c{bottom:-520.079397pt;}
.y14b{bottom:-501.359365pt;}
.y14a{bottom:-482.719493pt;}
.y149{bottom:-464.079621pt;}
.y148{bottom:-445.359589pt;}
.y147{bottom:-426.719717pt;}
.y146{bottom:-408.079845pt;}
.y145{bottom:-389.359813pt;}
.y144{bottom:-370.719941pt;}
.y143{bottom:-352.080069pt;}
.y127{bottom:-338.706805pt;}
.y142{bottom:-333.360037pt;}
.y141{bottom:-314.720165pt;}
.y126{bottom:-304.706941pt;}
.yda{bottom:-303.881211pt;}
.y140{bottom:-296.080293pt;}
.y125{bottom:-285.986909pt;}
.yd9{bottom:-285.241339pt;}
.y13f{bottom:-277.360261pt;}
.y124{bottom:-267.347037pt;}
.yd8{bottom:-266.601467pt;}
.y13e{bottom:-258.720389pt;}
.y123{bottom:-248.707165pt;}
.yd7{bottom:-247.881435pt;}
.y13d{bottom:-240.080517pt;}
.y122{bottom:-229.987133pt;}
.yd6{bottom:-229.241563pt;}
.y13c{bottom:-221.360485pt;}
.y121{bottom:-211.347261pt;}
.yd5{bottom:-210.601691pt;}
.y13b{bottom:-202.720613pt;}
.y120{bottom:-192.707389pt;}
.yd4{bottom:-191.881659pt;}
.y13a{bottom:-184.080741pt;}
.y11f{bottom:-173.987357pt;}
.yd3{bottom:-173.241787pt;}
.y139{bottom:-165.360709pt;}
.y11e{bottom:-155.347485pt;}
.yd2{bottom:-154.601915pt;}
.y138{bottom:-146.720837pt;}
.y11d{bottom:-136.707613pt;}
.yd1{bottom:-135.881883pt;}
.y137{bottom:-128.080965pt;}
.y11c{bottom:-117.987581pt;}
.yd0{bottom:-117.242011pt;}
.y136{bottom:-109.360933pt;}
.y11b{bottom:-99.347709pt;}
.ycf{bottom:-98.602139pt;}
.y135{bottom:-86.000933pt;}
.y11a{bottom:-80.707837pt;}
.yce{bottom:-79.882107pt;}
.y119{bottom:-61.987805pt;}
.ycd{bottom:-61.242235pt;}
.y101{bottom:-60.048539pt;}
.y134{bottom:-49.520800pt;}
.y118{bottom:-43.347933pt;}
.ycc{bottom:-42.602363pt;}
.y100{bottom:-41.408667pt;}
.y133{bottom:-30.881200pt;}
.y117{bottom:-24.708061pt;}
.ycb{bottom:-23.882331pt;}
.yff{bottom:-22.688635pt;}
.y116{bottom:-1.988045pt;}
.yca{bottom:-1.242475pt;}
.yfe{bottom:-0.128939pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:0.159200pt;}
.y3f{bottom:40.818667pt;}
.y3e{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.yc3{bottom:91.860000pt;}
.y1a4{bottom:92.250667pt;}
.y207{bottom:94.188000pt;}
.y10c{bottom:96.702667pt;}
.y97{bottom:98.970667pt;}
.y18f{bottom:99.488000pt;}
.y74{bottom:102.117333pt;}
.y76{bottom:103.473333pt;}
.y13{bottom:105.020000pt;}
.y3d{bottom:107.209333pt;}
.y1d5{bottom:107.225333pt;}
.yc2{bottom:110.429333pt;}
.y206{bottom:111.210667pt;}
.y10b{bottom:115.272000pt;}
.y96{bottom:117.541333pt;}
.y1a3{bottom:117.553333pt;}
.y18e{bottom:118.058667pt;}
.y73{bottom:120.688000pt;}
.y12{bottom:120.920000pt;}
.y75{bottom:122.042667pt;}
.y1d4{bottom:124.248000pt;}
.y3c{bottom:125.780000pt;}
.y205{bottom:128.233333pt;}
.yc1{bottom:129.000000pt;}
.y10a{bottom:133.842667pt;}
.y95{bottom:136.112000pt;}
.y18d{bottom:136.628000pt;}
.y11{bottom:136.821333pt;}
.y72{bottom:139.258667pt;}
.y70{bottom:140.613333pt;}
.y1d3{bottom:141.270667pt;}
.y1a2{bottom:142.856000pt;}
.y15e{bottom:143.341333pt;}
.y3b{bottom:144.350667pt;}
.y204{bottom:145.256000pt;}
.yc0{bottom:147.570667pt;}
.y109{bottom:152.413333pt;}
.y10{bottom:152.721333pt;}
.y94{bottom:154.681333pt;}
.y18c{bottom:155.198667pt;}
.y1d2{bottom:158.293333pt;}
.y6f{bottom:159.184000pt;}
.y71{bottom:161.813333pt;}
.y15d{bottom:161.910667pt;}
.y203{bottom:162.278667pt;}
.y3a{bottom:162.920000pt;}
.ybf{bottom:166.140000pt;}
.y1a1{bottom:168.158667pt;}
.yf{bottom:168.621333pt;}
.y108{bottom:170.984000pt;}
.y93{bottom:173.252000pt;}
.y18b{bottom:173.769333pt;}
.y1d1{bottom:175.316000pt;}
.y6e{bottom:177.753333pt;}
.y202{bottom:179.301333pt;}
.y15c{bottom:180.481333pt;}
.y39{bottom:181.490667pt;}
.ye{bottom:184.522667pt;}
.ybe{bottom:184.710667pt;}
.y1a0{bottom:185.490667pt;}
.y107{bottom:189.553333pt;}
.y92{bottom:191.822667pt;}
.y18a{bottom:192.338667pt;}
.y6d{bottom:196.324000pt;}
.y15b{bottom:199.052000pt;}
.y38{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.y19f{bottom:202.822667pt;}
.ybd{bottom:203.281333pt;}
.y106{bottom:208.124000pt;}
.y1d0{bottom:209.361333pt;}
.y91{bottom:210.392000pt;}
.y189{bottom:210.909333pt;}
.y201{bottom:213.346667pt;}
.y6c{bottom:214.894667pt;}
.y15a{bottom:217.621333pt;}
.y37{bottom:218.632000pt;}
.y19e{bottom:220.154667pt;}
.ybc{bottom:221.850667pt;}
.yc{bottom:224.293333pt;}
.y1cf{bottom:226.384000pt;}
.y105{bottom:226.694667pt;}
.y90{bottom:228.962667pt;}
.y188{bottom:229.480000pt;}
.y200{bottom:230.369333pt;}
.y6b{bottom:233.464000pt;}
.y159{bottom:236.192000pt;}
.y36{bottom:237.201333pt;}
.y19d{bottom:237.486667pt;}
.yb{bottom:240.193333pt;}
.y1ce{bottom:243.406667pt;}
.ybb{bottom:244.406667pt;}
.y104{bottom:245.264000pt;}
.y1ff{bottom:247.392000pt;}
.y8f{bottom:247.533333pt;}
.y187{bottom:248.049333pt;}
.yc9{bottom:248.757861pt;}
.y6a{bottom:252.034667pt;}
.y158{bottom:254.762667pt;}
.y19c{bottom:254.818667pt;}
.y35{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.y115{bottom:260.251387pt;}
.y1cd{bottom:260.430667pt;}
.y1fe{bottom:264.414667pt;}
.y8e{bottom:266.102667pt;}
.y186{bottom:266.620000pt;}
.yc8{bottom:267.397701pt;}
.y69{bottom:270.605333pt;}
.y9{bottom:271.994667pt;}
.y157{bottom:273.332000pt;}
.y34{bottom:274.342667pt;}
.yba{bottom:275.821333pt;}
.y103{bottom:276.933333pt;}
.y1cc{bottom:277.453333pt;}
.y114{bottom:278.891259pt;}
.y19b{bottom:280.121333pt;}
.y1fd{bottom:281.437333pt;}
.yfd{bottom:282.031589pt;}
.y8d{bottom:284.673333pt;}
.y185{bottom:285.190667pt;}
.yc7{bottom:286.117733pt;}
.y8{bottom:287.894667pt;}
.y68{bottom:289.176000pt;}
.y131{bottom:292.399187pt;}
.y33{bottom:292.912000pt;}
.y102{bottom:294.029333pt;}
.yb9{bottom:294.392000pt;}
.y1cb{bottom:294.476000pt;}
.y19a{bottom:297.453333pt;}
.y113{bottom:297.611291pt;}
.y1fc{bottom:298.460000pt;}
.yfc{bottom:300.671461pt;}
.y130{bottom:300.959067pt;}
.y8c{bottom:303.244000pt;}
.y184{bottom:303.760000pt;}
.y7{bottom:303.794667pt;}
.y156{bottom:305.001333pt;}
.y67{bottom:307.745333pt;}
.y32{bottom:311.482667pt;}
.y1ca{bottom:311.498667pt;}
.yb8{bottom:312.962667pt;}
.ye7{bottom:313.967200pt;}
.y199{bottom:314.785333pt;}
.y1fb{bottom:315.482667pt;}
.y112{bottom:316.251163pt;}
.yfb{bottom:319.311333pt;}
.y6{bottom:319.696000pt;}
.y8b{bottom:321.814667pt;}
.y183{bottom:322.330667pt;}
.y12f{bottom:324.938667pt;}
.y66{bottom:326.316000pt;}
.y1c9{bottom:328.521333pt;}
.y31{bottom:330.053333pt;}
.yb7{bottom:331.532000pt;}
.y198{bottom:332.118667pt;}
.y1fa{bottom:332.506667pt;}
.y111{bottom:334.891035pt;}
.yc6{bottom:336.037853pt;}
.yfa{bottom:338.031365pt;}
.y8a{bottom:340.384000pt;}
.y182{bottom:340.901333pt;}
.y5{bottom:340.909333pt;}
.yc5{bottom:344.597733pt;}
.y65{bottom:344.886667pt;}
.y1c8{bottom:345.544000pt;}
.y197{bottom:349.450667pt;}
.y1f9{bottom:349.529333pt;}
.yb6{bottom:350.102667pt;}
.y30{bottom:352.608000pt;}
.y110{bottom:353.611067pt;}
.yf9{bottom:356.671237pt;}
.y4{bottom:356.809333pt;}
.y89{bottom:358.954667pt;}
.y181{bottom:359.472000pt;}
.y1c7{bottom:362.566667pt;}
.y64{bottom:363.456000pt;}
.y1f8{bottom:366.552000pt;}
.yb5{bottom:368.673333pt;}
.y3{bottom:372.710667pt;}
.y196{bottom:374.753333pt;}
.yf8{bottom:375.311109pt;}
.y88{bottom:377.525333pt;}
.y180{bottom:378.041333pt;}
.y1c6{bottom:379.589333pt;}
.y63{bottom:382.026667pt;}
.y1f7{bottom:383.574667pt;}
.yb4{bottom:387.244000pt;}
.y2{bottom:388.610667pt;}
.y195{bottom:392.085333pt;}
.yf7{bottom:394.031141pt;}
.y87{bottom:396.094667pt;}
.y17f{bottom:396.612000pt;}
.y62{bottom:400.597333pt;}
.y10f{bottom:403.531187pt;}
.yb3{bottom:405.813333pt;}
.y194{bottom:409.417333pt;}
.y1{bottom:409.824000pt;}
.y10e{bottom:412.091067pt;}
.yf6{bottom:412.671013pt;}
.y1c5{bottom:413.634667pt;}
.y86{bottom:414.665333pt;}
.y17e{bottom:415.182667pt;}
.y1f6{bottom:417.620000pt;}
.y61{bottom:419.166667pt;}
.y2f{bottom:423.018667pt;}
.yb2{bottom:424.384000pt;}
.y193{bottom:426.749333pt;}
.y1c4{bottom:430.657333pt;}
.yf5{bottom:431.310885pt;}
.y85{bottom:433.236000pt;}
.y17d{bottom:433.752000pt;}
.y1f5{bottom:434.642667pt;}
.y60{bottom:437.737333pt;}
.yb1{bottom:442.954667pt;}
.y192{bottom:444.081333pt;}
.y1c3{bottom:447.680000pt;}
.yf4{bottom:450.030917pt;}
.y1f4{bottom:451.665333pt;}
.y84{bottom:451.805333pt;}
.y17c{bottom:452.322667pt;}
.y5f{bottom:456.308000pt;}
.y2e{bottom:457.529333pt;}
.y191{bottom:461.413333pt;}
.y1c2{bottom:464.702667pt;}
.yf3{bottom:468.670789pt;}
.y1f3{bottom:468.688000pt;}
.y83{bottom:470.376000pt;}
.y17b{bottom:470.893333pt;}
.y5e{bottom:474.877333pt;}
.y2d{bottom:476.100000pt;}
.yb0{bottom:477.693333pt;}
.y190{bottom:478.746667pt;}
.y20a{bottom:481.506667pt;}
.y1c1{bottom:481.725333pt;}
.y1f2{bottom:485.710667pt;}
.yf2{bottom:487.310661pt;}
.y82{bottom:488.946667pt;}
.y17a{bottom:489.462667pt;}
.y5d{bottom:493.448000pt;}
.y2c{bottom:494.669333pt;}
.yaf{bottom:497.100000pt;}
.y209{bottom:498.529333pt;}
.y1c0{bottom:498.748000pt;}
.y1f1{bottom:502.733333pt;}
.yf1{bottom:506.030693pt;}
.y81{bottom:507.516000pt;}
.y179{bottom:508.033333pt;}
.y5c{bottom:512.018667pt;}
.y2b{bottom:513.240000pt;}
.y208{bottom:515.552000pt;}
.y1bf{bottom:515.770667pt;}
.yae{bottom:518.113333pt;}
.y1f0{bottom:519.756000pt;}
.yf0{bottom:524.670565pt;}
.y80{bottom:526.086667pt;}
.y178{bottom:526.604000pt;}
.y5b{bottom:530.589333pt;}
.y2a{bottom:531.810667pt;}
.y1be{bottom:532.793333pt;}
.y1ef{bottom:536.778667pt;}
.yad{bottom:539.128000pt;}
.yef{bottom:543.310437pt;}
.y7f{bottom:544.657333pt;}
.y177{bottom:545.173333pt;}
.y5a{bottom:549.158667pt;}
.y1bd{bottom:549.816000pt;}
.y29{bottom:550.380000pt;}
.y1ee{bottom:553.801333pt;}
.yac{bottom:560.141333pt;}
.yee{bottom:562.030469pt;}
.y7e{bottom:563.228000pt;}
.y176{bottom:563.744000pt;}
.y1bc{bottom:566.838667pt;}
.y59{bottom:567.729333pt;}
.y28{bottom:568.950667pt;}
.y1ed{bottom:570.824000pt;}
.yab{bottom:581.156000pt;}
.y7d{bottom:581.797333pt;}
.y175{bottom:582.314667pt;}
.y1bb{bottom:583.861333pt;}
.yed{bottom:584.670325pt;}
.y58{bottom:586.300000pt;}
.y27{bottom:587.521333pt;}
.y1ec{bottom:587.846667pt;}
.ye6{bottom:588.617333pt;}
.y12e{bottom:595.484000pt;}
.y7c{bottom:600.368000pt;}
.y174{bottom:600.885333pt;}
.yaa{bottom:602.169333pt;}
.y57{bottom:604.869333pt;}
.y26{bottom:606.090667pt;}
.ye5{bottom:607.186667pt;}
.y12d{bottom:614.054667pt;}
.y1ba{bottom:617.908000pt;}
.y7b{bottom:618.938667pt;}
.y173{bottom:619.454667pt;}
.y1eb{bottom:621.892000pt;}
.ya9{bottom:623.184000pt;}
.y56{bottom:623.440000pt;}
.y25{bottom:624.661333pt;}
.ye4{bottom:625.757333pt;}
.y12c{bottom:632.625333pt;}
.y1b9{bottom:634.930667pt;}
.y7a{bottom:637.508000pt;}
.y172{bottom:638.025333pt;}
.y1ea{bottom:638.914667pt;}
.y55{bottom:642.010667pt;}
.y24{bottom:643.232000pt;}
.ya8{bottom:644.197333pt;}
.ye3{bottom:644.328000pt;}
.y12b{bottom:651.194667pt;}
.y1b8{bottom:651.953333pt;}
.y1e9{bottom:655.937333pt;}
.y79{bottom:656.078667pt;}
.y171{bottom:656.596000pt;}
.y54{bottom:660.580000pt;}
.y23{bottom:661.801333pt;}
.ye2{bottom:662.897333pt;}
.ya7{bottom:665.212000pt;}
.y1b7{bottom:668.976000pt;}
.y12a{bottom:669.765333pt;}
.y1e8{bottom:672.961333pt;}
.y170{bottom:675.165333pt;}
.y78{bottom:678.633333pt;}
.y53{bottom:679.150667pt;}
.y22{bottom:680.372000pt;}
.ye1{bottom:681.468000pt;}
.y1b6{bottom:685.998667pt;}
.ya6{bottom:686.225333pt;}
.y1e7{bottom:689.984000pt;}
.y16f{bottom:693.736000pt;}
.y52{bottom:697.721333pt;}
.y21{bottom:698.942667pt;}
.ye0{bottom:700.038667pt;}
.y77{bottom:700.350667pt;}
.y129{bottom:701.434667pt;}
.y1b5{bottom:703.021333pt;}
.y1e6{bottom:707.006667pt;}
.ya5{bottom:707.240000pt;}
.y16e{bottom:712.306667pt;}
.y51{bottom:716.290667pt;}
.y20{bottom:717.513333pt;}
.y128{bottom:718.530667pt;}
.y1b4{bottom:720.044000pt;}
.y1e5{bottom:724.029333pt;}
.y16d{bottom:730.876000pt;}
.ydf{bottom:731.708000pt;}
.y50{bottom:734.861333pt;}
.y1f{bottom:736.082667pt;}
.y1b3{bottom:737.066667pt;}
.ya4{bottom:738.002667pt;}
.y10d{bottom:738.468000pt;}
.y1e4{bottom:741.052000pt;}
.y16c{bottom:749.446667pt;}
.yc4{bottom:751.644000pt;}
.y4f{bottom:753.432000pt;}
.y1b2{bottom:754.089333pt;}
.y1e{bottom:754.653333pt;}
.y1e3{bottom:758.074667pt;}
.y16b{bottom:768.017333pt;}
.y1b1{bottom:771.112000pt;}
.y4e{bottom:772.002667pt;}
.y1d{bottom:773.224000pt;}
.y1e2{bottom:775.097333pt;}
.ya3{bottom:775.436000pt;}
.y16a{bottom:786.586667pt;}
.y1b0{bottom:788.134667pt;}
.y4d{bottom:790.572000pt;}
.y1e1{bottom:792.120000pt;}
.ya2{bottom:794.842667pt;}
.y169{bottom:805.157333pt;}
.y1c{bottom:806.344000pt;}
.y4c{bottom:809.142667pt;}
.ya1{bottom:815.857333pt;}
.y1b{bottom:820.690667pt;}
.y1af{bottom:822.180000pt;}
.y168{bottom:823.728000pt;}
.y1e0{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.yec{bottom:834.670661pt;}
.y1a{bottom:835.037333pt;}
.ya0{bottom:836.870667pt;}
.y1ae{bottom:839.202667pt;}
.y167{bottom:842.297333pt;}
.y1df{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y19{bottom:849.384000pt;}
.yeb{bottom:853.310501pt;}
.y1ad{bottom:856.225333pt;}
.y9f{bottom:857.885333pt;}
.y1de{bottom:860.210667pt;}
.y166{bottom:860.868000pt;}
.y49{bottom:864.853333pt;}
.yea{bottom:872.030533pt;}
.y1ac{bottom:873.248000pt;}
.y1dd{bottom:877.233333pt;}
.y9e{bottom:878.898667pt;}
.y165{bottom:879.438667pt;}
.y48{bottom:883.424000pt;}
.y1ab{bottom:890.270667pt;}
.y18{bottom:890.501333pt;}
.y1dc{bottom:894.256000pt;}
.y164{bottom:898.009333pt;}
.y9d{bottom:899.913333pt;}
.y47{bottom:901.993333pt;}
.y1aa{bottom:907.293333pt;}
.y1db{bottom:911.278667pt;}
.y163{bottom:916.578667pt;}
.y46{bottom:920.564000pt;}
.y9c{bottom:920.926667pt;}
.ye9{bottom:921.950653pt;}
.y1a9{bottom:924.316000pt;}
.y17{bottom:925.012000pt;}
.y1da{bottom:928.301333pt;}
.ye8{bottom:930.510533pt;}
.y162{bottom:935.149333pt;}
.y45{bottom:939.134667pt;}
.y1a8{bottom:941.340000pt;}
.y9b{bottom:941.941333pt;}
.y1d9{bottom:945.324000pt;}
.y16{bottom:952.866667pt;}
.y161{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y1a7{bottom:958.362667pt;}
.y1d8{bottom:962.346667pt;}
.y9a{bottom:962.954667pt;}
.y160{bottom:972.289333pt;}
.y1a6{bottom:975.385333pt;}
.y43{bottom:976.274667pt;}
.y1d7{bottom:979.369333pt;}
.y15{bottom:980.722667pt;}
.y99{bottom:983.969333pt;}
.y15f{bottom:990.860000pt;}
.y1a5{bottom:992.408000pt;}
.y42{bottom:994.845333pt;}
.y1d6{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.y98{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.h12{height:27.184641pt;}
.h2{height:33.771789pt;}
.hb{height:34.574438pt;}
.h14{height:35.343750pt;}
.h5{height:38.415786pt;}
.h6{height:38.596538pt;}
.h3{height:38.947124pt;}
.hd{height:39.359687pt;}
.ha{height:43.421286pt;}
.h15{height:44.390625pt;}
.h8{height:46.099251pt;}
.h16{height:47.125000pt;}
.h7{height:48.245551pt;}
.he{height:49.421563pt;}
.hf{height:49.421691pt;}
.h9{height:55.952068pt;}
.h4{height:69.148877pt;}
.hc{height:227.500000pt;}
.h11{height:239.136000pt;}
.h13{height:254.845333pt;}
.h10{height:262.410133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:439.870667pt;}
.w2{width:445.689333pt;}
.w4{width:461.398667pt;}
.w5{width:478.854667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x56{left:-176.008000pt;}
.x5b{left:-173.681333pt;}
.x57{left:-2.168000pt;}
.x0{left:0.000000pt;}
.x59{left:26.151064pt;}
.x5d{left:28.477731pt;}
.x1{left:47.621333pt;}
.x54{left:55.592000pt;}
.x79{left:74.862667pt;}
.x78{left:76.309333pt;}
.x55{left:104.405333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x4{left:250.204000pt;}
.x52{left:258.808000pt;}
.x53{left:260.688000pt;}
.x11{left:263.946667pt;}
.x12{left:277.230667pt;}
.x2c{left:279.505333pt;}
.x13{left:280.618667pt;}
.x6d{left:283.797333pt;}
.x2e{left:286.101333pt;}
.x6f{left:287.757333pt;}
.x51{left:289.873333pt;}
.x2d{left:292.789333pt;}
.x14{left:293.901333pt;}
.x70{left:295.857333pt;}
.x6e{left:297.080000pt;}
.x2f{left:299.385333pt;}
.x71{left:309.141333pt;}
.x32{left:311.148000pt;}
.x9{left:316.928000pt;}
.xa{left:323.570667pt;}
.xb{left:326.825333pt;}
.x33{left:327.818667pt;}
.xc{left:333.466667pt;}
.x1f{left:335.136000pt;}
.x3f{left:336.040000pt;}
.x40{left:339.384000pt;}
.x34{left:341.102667pt;}
.x20{left:348.420000pt;}
.x41{left:352.666667pt;}
.x43{left:355.026667pt;}
.x6c{left:366.084000pt;}
.x4d{left:379.389333pt;}
.x28{left:382.249333pt;}
.x1e{left:386.114667pt;}
.x29{left:395.532000pt;}
.x19{left:399.341333pt;}
.x26{left:407.414667pt;}
.x15{left:409.649333pt;}
.x1a{left:412.625333pt;}
.x4b{left:416.252000pt;}
.x1b{left:419.398667pt;}
.x27{left:420.698667pt;}
.x16{left:422.932000pt;}
.x61{left:426.328000pt;}
.x4c{left:429.536000pt;}
.x1c{left:432.682667pt;}
.x47{left:436.958667pt;}
.x5e{left:440.159451pt;}
.x58{left:442.471376pt;}
.x5c{left:444.798043pt;}
.x42{left:449.742667pt;}
.x48{left:454.984000pt;}
.xf{left:456.492000pt;}
.x10{left:463.133333pt;}
.x62{left:465.600000pt;}
.x60{left:467.249597pt;}
.x49{left:468.268000pt;}
.x1d{left:483.620000pt;}
.xd{left:489.873333pt;}
.x72{left:494.300000pt;}
.x63{left:495.249200pt;}
.xe{left:496.514667pt;}
.x73{left:507.584000pt;}
.x68{left:514.438667pt;}
.x5a{left:521.753624pt;}
.x5f{left:524.080291pt;}
.x69{left:527.722667pt;}
.x44{left:530.432000pt;}
.x6a{left:541.934667pt;}
.x45{left:543.714667pt;}
.x46{left:547.102667pt;}
.x6b{left:555.217333pt;}
.x3e{left:556.740000pt;}
.x39{left:559.337333pt;}
.x21{left:560.300000pt;}
.x4a{left:569.272000pt;}
.x3a{left:571.957333pt;}
.x22{left:573.584000pt;}
.x3b{left:574.988000pt;}
.x23{left:576.838667pt;}
.x17{left:581.481333pt;}
.x3c{left:587.606667pt;}
.x24{left:590.121333pt;}
.x18{left:594.765333pt;}
.x50{left:597.484000pt;}
.x4e{left:613.578667pt;}
.x4f{left:626.861333pt;}
.x25{left:658.468000pt;}
.x64{left:667.700000pt;}
.x74{left:674.598667pt;}
.x3d{left:678.488000pt;}
.x65{left:680.984000pt;}
.x66{left:684.358667pt;}
.x75{left:687.882667pt;}
.x30{left:690.342667pt;}
.x76{left:691.240000pt;}
.x67{left:697.641333pt;}
.x31{left:703.626667pt;}
.x77{left:704.522667pt;}
.x35{left:709.508000pt;}
.x37{left:710.614667pt;}
.x36{left:722.790667pt;}
.x5{left:723.876000pt;}
.x2a{left:726.178667pt;}
.x38{left:727.152000pt;}
.x6{left:730.517333pt;}
.x7{left:733.778667pt;}
.x2b{left:739.461333pt;}
.x8{left:740.420000pt;}
}




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