
    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_3f6ea4aa3e3c4ae3145813ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_42b29140efd27fc7ad5eea4d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ec3bd04f8dc879fd87adb0ec.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_f938fbb78c79e48b5a85ab6f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_795551cd7d707a0031ccde93.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ffae5a28f735de5778ede95e.woff')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_5ce169096de0cca4754c56a4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2ce6ed802147826eceee6047.woff')format("woff");}.ff8{font-family:ff8;line-height:0.734863;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_a0ac6b62727c75ac8b0e2718.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ae4e1a945083d1c290368a53.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_866dc91d3e7ee49fd8c4781c.woff')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_e4edb07fab42974bf3898e23.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b5ff1f870fd82cfbda9259e0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.734863;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_a0ac6b62727c75ac8b0e2718.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ae4e1a945083d1c290368a53.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_866dc91d3e7ee49fd8c4781c.woff')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_e4edb07fab42974bf3898e23.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b5ff1f870fd82cfbda9259e0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.734863;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_a0ac6b62727c75ac8b0e2718.woff')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_795551cd7d707a0031ccde93.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_491bed3b7fbd21071459d378.woff')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_adf9619eb41a7f0a8be76973.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2ce6ed802147826eceee6047.woff')format("woff");}.ff17{font-family:ff17;line-height:0.734863;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_a0ac6b62727c75ac8b0e2718.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ae4e1a945083d1c290368a53.woff')format("woff");}.ff19{font-family:ff19;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d0e707d9f4ad5633ff7d2aa2.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_05c4b4d328abb7ff47330d6f.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b5ff1f870fd82cfbda9259e0.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_0008f78ecbf05d80ae69e8ee.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_008387c7a11090145ccdaebe.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_8b27ec8e6676f9512982cb9c.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9f0ae4a203bf0bf81ff03168.woff')format("woff");}.ff20{font-family:ff20;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_a0ac6b62727c75ac8b0e2718.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_b5ff1f870fd82cfbda9259e0.woff')format("woff");}.ff22{font-family:ff22;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_997f3e16e87cfea6a8451ce1.woff')format("woff");}.ff23{font-family:ff23;line-height:0.916000;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;}
.m1{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);}
.m1a{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);}
.m1d{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);}
.m1b{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);}
.me{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);}
.m1c{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);}
.m2{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);}
.m22{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);}
.m7{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);}
.m9{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);}
.m5{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);}
.m2a{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);}
.m14{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);}
.m15{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);}
.m13{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);}
.m21{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);}
.ma{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);}
.md{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);}
.m3{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);}
.m1f{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);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m2c{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);}
.m26{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);}
.m23{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);}
.m18{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);}
.m12{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);}
.m20{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);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m8{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);}
.m24{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);}
.m16{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);}
.mc{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);}
.m25{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);}
.mf{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);}
.m2b{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);}
.m1e{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);}
.m11{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:35.868000px;}
.v4{vertical-align:40.992000px;}
.v5{vertical-align:69.984000px;}
.ls57{letter-spacing:-1.707408px;}
.ls2e{letter-spacing:-0.547092px;}
.ls4f{letter-spacing:-0.468936px;}
.ls2f{letter-spacing:-0.402804px;}
.ls51{letter-spacing:-0.390780px;}
.ls61{letter-spacing:-0.348696px;}
.ls5f{letter-spacing:-0.342684px;}
.ls4d{letter-spacing:-0.300600px;}
.ls2c{letter-spacing:-0.276552px;}
.ls5d{letter-spacing:-0.270540px;}
.ls2b{letter-spacing:-0.216432px;}
.ls48{letter-spacing:-0.180360px;}
.ls4a{letter-spacing:-0.174348px;}
.ls58{letter-spacing:-0.168336px;}
.ls33{letter-spacing:-0.162324px;}
.ls3c{letter-spacing:-0.144288px;}
.ls39{letter-spacing:-0.132264px;}
.ls4b{letter-spacing:-0.126252px;}
.ls4e{letter-spacing:-0.120240px;}
.ls50{letter-spacing:-0.114228px;}
.ls5b{letter-spacing:-0.108216px;}
.ls59{letter-spacing:-0.102600px;}
.ls5a{letter-spacing:-0.102204px;}
.ls3b{letter-spacing:-0.096192px;}
.ls38{letter-spacing:-0.090180px;}
.ls35{letter-spacing:-0.084168px;}
.ls36{letter-spacing:-0.078156px;}
.ls5e{letter-spacing:-0.072144px;}
.ls32{letter-spacing:-0.066132px;}
.ls4c{letter-spacing:-0.060120px;}
.ls2d{letter-spacing:-0.054108px;}
.ls5c{letter-spacing:-0.048096px;}
.ls56{letter-spacing:-0.042084px;}
.ls37{letter-spacing:-0.036072px;}
.ls31{letter-spacing:-0.030060px;}
.ls2a{letter-spacing:-0.024048px;}
.ls28{letter-spacing:-0.023940px;}
.ls34{letter-spacing:-0.018036px;}
.ls29{letter-spacing:-0.014364px;}
.ls30{letter-spacing:-0.012024px;}
.ls49{letter-spacing:-0.006012px;}
.ls3a{letter-spacing:-0.004788px;}
.ls6{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000435px;}
.lsd{letter-spacing:0.004200px;}
.ls11{letter-spacing:0.006012px;}
.ls25{letter-spacing:0.010800px;}
.ls17{letter-spacing:0.012024px;}
.ls60{letter-spacing:0.014400px;}
.ls54{letter-spacing:0.018036px;}
.ls1c{letter-spacing:0.021600px;}
.ls40{letter-spacing:0.024048px;}
.ls41{letter-spacing:0.030060px;}
.ls24{letter-spacing:0.032400px;}
.ls16{letter-spacing:0.036072px;}
.ls43{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.048096px;}
.ls13{letter-spacing:0.054108px;}
.ls27{letter-spacing:0.059400px;}
.ls15{letter-spacing:0.060120px;}
.ls21{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.066132px;}
.ls14{letter-spacing:0.072144px;}
.ls42{letter-spacing:0.078156px;}
.ls12{letter-spacing:0.084168px;}
.ls23{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.091800px;}
.ls3d{letter-spacing:0.096192px;}
.ls10{letter-spacing:0.102204px;}
.ls26{letter-spacing:0.108216px;}
.ls45{letter-spacing:0.114228px;}
.ls22{letter-spacing:0.120240px;}
.ls46{letter-spacing:0.132264px;}
.ls52{letter-spacing:0.138276px;}
.ls55{letter-spacing:0.156312px;}
.lsf{letter-spacing:0.167580px;}
.ls53{letter-spacing:0.172368px;}
.ls20{letter-spacing:0.177156px;}
.ls18{letter-spacing:0.180360px;}
.lse{letter-spacing:0.181944px;}
.ls1f{letter-spacing:0.191520px;}
.ls44{letter-spacing:0.192384px;}
.ls62{letter-spacing:4.058100px;}
.ls5{letter-spacing:11.954850px;}
.ls64{letter-spacing:14.525471px;}
.ls3e{letter-spacing:14.735729px;}
.ls7{letter-spacing:14.764573px;}
.lsb{letter-spacing:14.824349px;}
.ls9{letter-spacing:14.884124px;}
.ls3{letter-spacing:14.943900px;}
.ls3f{letter-spacing:14.985439px;}
.ls1e{letter-spacing:15.001089px;}
.lsc{letter-spacing:15.061047px;}
.ls4{letter-spacing:15.183002px;}
.ls63{letter-spacing:15.362329px;}
.lsa{letter-spacing:21.100787px;}
.ls66{letter-spacing:21.519216px;}
.ls65{letter-spacing:21.578992px;}
.ls8{letter-spacing:21.997421px;}
.ls0{letter-spacing:57.415200px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.ls1d{letter-spacing:848.973816px;}
.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;}
}
.ws6c{word-spacing:-60.120000px;}
.ws6f{word-spacing:-15.120180px;}
.wsc1{word-spacing:-15.042024px;}
.ws6b{word-spacing:-15.030000px;}
.ws2c{word-spacing:-14.943900px;}
.ws102{word-spacing:-14.681304px;}
.ws176{word-spacing:-13.449600px;}
.ws6e{word-spacing:-12.161520px;}
.ws68{word-spacing:-12.151944px;}
.ws69{word-spacing:-11.970000px;}
.ws22{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws14a{word-spacing:-3.877740px;}
.wsb8{word-spacing:-3.565116px;}
.ws149{word-spacing:-3.553092px;}
.ws142{word-spacing:-3.523032px;}
.ws116{word-spacing:-3.498984px;}
.ws115{word-spacing:-3.486960px;}
.ws107{word-spacing:-3.444876px;}
.ws141{word-spacing:-3.420828px;}
.wsda{word-spacing:-3.234456px;}
.ws12f{word-spacing:-3.228444px;}
.ws8b{word-spacing:-2.855700px;}
.wsc6{word-spacing:-2.809453px;}
.ws8a{word-spacing:-2.771532px;}
.ws5a{word-spacing:-2.749678px;}
.ws130{word-spacing:-2.711412px;}
.wsbc{word-spacing:-2.689902px;}
.ws169{word-spacing:-2.510575px;}
.wsfd{word-spacing:-2.500992px;}
.ws44{word-spacing:-2.450800px;}
.ws58{word-spacing:-2.391024px;}
.ws104{word-spacing:-2.386764px;}
.ws67{word-spacing:-2.211697px;}
.wse6{word-spacing:-2.176344px;}
.ws171{word-spacing:-2.151922px;}
.wsa6{word-spacing:-2.128248px;}
.ws131{word-spacing:-2.110212px;}
.ws10c{word-spacing:-2.098188px;}
.ws0{word-spacing:-2.092140px;}
.ws4{word-spacing:-2.091098px;}
.wsa5{word-spacing:-2.062116px;}
.wse7{word-spacing:-2.056104px;}
.wse4{word-spacing:-2.050092px;}
.wse5{word-spacing:-2.038068px;}
.ws3f{word-spacing:-1.972595px;}
.ws124{word-spacing:-1.749492px;}
.ws10b{word-spacing:-1.725444px;}
.ws123{word-spacing:-1.695384px;}
.ws82{word-spacing:-1.677348px;}
.ws122{word-spacing:-1.671336px;}
.ws17c{word-spacing:-1.613952px;}
.ws45{word-spacing:-1.613941px;}
.ws65{word-spacing:-1.434614px;}
.ws92{word-spacing:-1.406808px;}
.ws81{word-spacing:-1.340676px;}
.ws10a{word-spacing:-1.328652px;}
.ws83{word-spacing:-1.286568px;}
.wsbf{word-spacing:-1.255288px;}
.wsd{word-spacing:-1.195512px;}
.ws9b{word-spacing:-1.076148px;}
.ws114{word-spacing:-1.070136px;}
.ws98{word-spacing:-1.040076px;}
.ws10f{word-spacing:-1.034064px;}
.ws153{word-spacing:-1.016028px;}
.ws11e{word-spacing:-0.961920px;}
.ws113{word-spacing:-0.913824px;}
.ws16c{word-spacing:-0.896634px;}
.ws152{word-spacing:-0.889776px;}
.ws11f{word-spacing:-0.871740px;}
.ws93{word-spacing:-0.859716px;}
.ws196{word-spacing:-0.806976px;}
.ws15c{word-spacing:-0.777083px;}
.ws15d{word-spacing:-0.717307px;}
.wsf0{word-spacing:-0.715428px;}
.ws99{word-spacing:-0.697392px;}
.ws9a{word-spacing:-0.685368px;}
.ws100{word-spacing:-0.657532px;}
.wse0{word-spacing:-0.637272px;}
.ws25{word-spacing:-0.597756px;}
.ws77{word-spacing:-0.577152px;}
.wsb{word-spacing:-0.537980px;}
.ws168{word-spacing:-0.478205px;}
.ws18a{word-spacing:-0.430387px;}
.ws136{word-spacing:-0.420840px;}
.ws3d{word-spacing:-0.418429px;}
.ws172{word-spacing:-0.376589px;}
.wscc{word-spacing:-0.366732px;}
.ws20{word-spacing:-0.358654px;}
.wsab{word-spacing:-0.354708px;}
.ws94{word-spacing:-0.342684px;}
.ws173{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.298878px;}
.ws14f{word-spacing:-0.294588px;}
.wsa2{word-spacing:-0.277704px;}
.ws71{word-spacing:-0.272916px;}
.ws17f{word-spacing:-0.268992px;}
.ws13c{word-spacing:-0.252504px;}
.ws1a{word-spacing:-0.239102px;}
.wsf2{word-spacing:-0.234468px;}
.ws135{word-spacing:-0.216432px;}
.ws7{word-spacing:-0.215194px;}
.ws1f{word-spacing:-0.179327px;}
.wsd5{word-spacing:-0.168336px;}
.ws17d{word-spacing:-0.161395px;}
.wsf1{word-spacing:-0.156312px;}
.wsf3{word-spacing:-0.150300px;}
.ws12{word-spacing:-0.119551px;}
.ws85{word-spacing:-0.108216px;}
.ws17b{word-spacing:-0.107597px;}
.ws78{word-spacing:-0.084168px;}
.wsa3{word-spacing:-0.081396px;}
.ws72{word-spacing:-0.076608px;}
.wsa1{word-spacing:-0.071820px;}
.ws70{word-spacing:-0.067032px;}
.ws6a{word-spacing:-0.060120px;}
.ws19{word-spacing:-0.059776px;}
.wsa4{word-spacing:-0.057600px;}
.ws178{word-spacing:-0.053798px;}
.ws1a1{word-spacing:-0.013949px;}
.ws187{word-spacing:-0.009888px;}
.ws199{word-spacing:-0.008275px;}
.ws19f{word-spacing:-0.008198px;}
.ws137{word-spacing:-0.007200px;}
.ws190{word-spacing:-0.005616px;}
.ws185{word-spacing:-0.005194px;}
.ws18b{word-spacing:-0.004339px;}
.ws19d{word-spacing:-0.003302px;}
.ws1a2{word-spacing:-0.002371px;}
.ws19a{word-spacing:-0.002131px;}
.ws21{word-spacing:-0.000785px;}
.ws189{word-spacing:-0.000480px;}
.ws8{word-spacing:0.000000px;}
.wsb9{word-spacing:0.006012px;}
.ws150{word-spacing:0.012024px;}
.wsa0{word-spacing:0.024048px;}
.wsb5{word-spacing:0.030060px;}
.wse8{word-spacing:0.036072px;}
.ws193{word-spacing:0.053798px;}
.ws11{word-spacing:0.059776px;}
.ws84{word-spacing:0.078156px;}
.ws140{word-spacing:0.090180px;}
.ws13b{word-spacing:0.096192px;}
.ws17a{word-spacing:0.107597px;}
.ws86{word-spacing:0.108216px;}
.wsf6{word-spacing:0.114228px;}
.wsf7{word-spacing:0.118800px;}
.wse{word-spacing:0.119551px;}
.wsea{word-spacing:0.120240px;}
.wsba{word-spacing:0.124200px;}
.wsac{word-spacing:0.151200px;}
.ws192{word-spacing:0.161395px;}
.wsdf{word-spacing:0.162324px;}
.ws9e{word-spacing:0.168336px;}
.wsad{word-spacing:0.172800px;}
.ws106{word-spacing:0.174348px;}
.ws95{word-spacing:0.178200px;}
.wsc{word-spacing:0.179327px;}
.ws117{word-spacing:0.180360px;}
.ws177{word-spacing:0.215194px;}
.ws13{word-spacing:0.239102px;}
.wsb6{word-spacing:0.240480px;}
.ws18d{word-spacing:0.268992px;}
.ws118{word-spacing:0.280800px;}
.ws1c{word-spacing:0.298878px;}
.ws18e{word-spacing:0.322790px;}
.wsb0{word-spacing:0.348696px;}
.ws1b{word-spacing:0.358654px;}
.wsb1{word-spacing:0.366732px;}
.wse9{word-spacing:0.396792px;}
.ws3{word-spacing:0.418225px;}
.ws6{word-spacing:0.422252px;}
.ws112{word-spacing:0.468936px;}
.ws144{word-spacing:0.480960px;}
.ws8e{word-spacing:0.486972px;}
.wsb2{word-spacing:0.523044px;}
.ws8f{word-spacing:0.541080px;}
.ws16d{word-spacing:0.597756px;}
.ws59{word-spacing:0.657532px;}
.ws19c{word-spacing:0.699379px;}
.ws34{word-spacing:0.717307px;}
.ws14c{word-spacing:0.739476px;}
.wsf5{word-spacing:0.745488px;}
.ws105{word-spacing:0.751500px;}
.ws13e{word-spacing:0.763524px;}
.ws97{word-spacing:0.775548px;}
.wsbe{word-spacing:0.777083px;}
.wsf4{word-spacing:0.829656px;}
.ws13f{word-spacing:0.835668px;}
.ws4b{word-spacing:0.836858px;}
.ws96{word-spacing:0.841680px;}
.ws4c{word-spacing:0.843860px;}
.ws14d{word-spacing:0.853704px;}
.ws14e{word-spacing:0.871740px;}
.ws4d{word-spacing:0.896634px;}
.ws15e{word-spacing:0.956410px;}
.ws182{word-spacing:0.968371px;}
.ws1e{word-spacing:1.016185px;}
.ws139{word-spacing:1.034064px;}
.ws5d{word-spacing:1.075961px;}
.ws174{word-spacing:1.075968px;}
.ws188{word-spacing:1.129766px;}
.ws24{word-spacing:1.135736px;}
.wscb{word-spacing:1.190376px;}
.ws28{word-spacing:1.195512px;}
.wsca{word-spacing:1.214424px;}
.ws43{word-spacing:1.255288px;}
.ws191{word-spacing:1.291162px;}
.ws163{word-spacing:1.315063px;}
.ws1a3{word-spacing:1.344960px;}
.ws4a{word-spacing:1.374839px;}
.wsfc{word-spacing:1.400796px;}
.ws14{word-spacing:1.434614px;}
.ws111{word-spacing:1.466928px;}
.wsa8{word-spacing:1.478952px;}
.wsff{word-spacing:1.494390px;}
.ws183{word-spacing:1.506355px;}
.ws9c{word-spacing:1.527048px;}
.wsd4{word-spacing:1.533060px;}
.ws110{word-spacing:1.539072px;}
.ws9d{word-spacing:1.557108px;}
.ws184{word-spacing:1.560154px;}
.ws160{word-spacing:1.613941px;}
.ws5c{word-spacing:1.733492px;}
.ws186{word-spacing:1.775347px;}
.ws31{word-spacing:1.793268px;}
.ws7e{word-spacing:1.827648px;}
.ws195{word-spacing:1.829146px;}
.ws154{word-spacing:1.851696px;}
.ws49{word-spacing:1.912819px;}
.ws7f{word-spacing:1.941876px;}
.ws35{word-spacing:1.972595px;}
.wsfb{word-spacing:1.989972px;}
.wsd3{word-spacing:2.026044px;}
.wsc0{word-spacing:2.032370px;}
.ws2b{word-spacing:2.211697px;}
.wsf8{word-spacing:2.260512px;}
.ws119{word-spacing:2.272536px;}
.wsfa{word-spacing:2.278548px;}
.wsf{word-spacing:2.331248px;}
.ws11a{word-spacing:2.362716px;}
.ws16b{word-spacing:2.391024px;}
.ws32{word-spacing:2.450800px;}
.wsed{word-spacing:2.482956px;}
.ws26{word-spacing:2.510575px;}
.ws10d{word-spacing:2.555100px;}
.wsbb{word-spacing:2.567124px;}
.ws64{word-spacing:2.570351px;}
.wsb7{word-spacing:2.579148px;}
.ws11b{word-spacing:2.591172px;}
.ws11c{word-spacing:2.627244px;}
.ws40{word-spacing:2.630126px;}
.wsb3{word-spacing:2.633256px;}
.wsf9{word-spacing:2.645280px;}
.wsc9{word-spacing:2.689902px;}
.ws11d{word-spacing:2.711412px;}
.ws15b{word-spacing:2.749678px;}
.ws10e{word-spacing:2.777544px;}
.ws10{word-spacing:2.809453px;}
.wsc3{word-spacing:2.869229px;}
.wsec{word-spacing:2.903796px;}
.wseb{word-spacing:2.915820px;}
.ws12e{word-spacing:2.921832px;}
.wsc8{word-spacing:2.929004px;}
.ws12d{word-spacing:2.951892px;}
.ws12c{word-spacing:2.963916px;}
.wsb4{word-spacing:3.006000px;}
.ws3b{word-spacing:3.108331px;}
.ws18{word-spacing:3.168107px;}
.ws19b{word-spacing:3.222211px;}
.ws1a0{word-spacing:3.222307px;}
.ws17e{word-spacing:3.222576px;}
.ws179{word-spacing:3.224822px;}
.ws194{word-spacing:3.225456px;}
.ws19e{word-spacing:3.227386px;}
.ws4e{word-spacing:3.227882px;}
.ws180{word-spacing:3.227904px;}
.ws147{word-spacing:3.240468px;}
.ws79{word-spacing:3.246480px;}
.ws7b{word-spacing:3.258504px;}
.ws7a{word-spacing:3.276540px;}
.ws5b{word-spacing:3.287658px;}
.wsd6{word-spacing:3.306600px;}
.ws7d{word-spacing:3.324636px;}
.ws12b{word-spacing:3.354696px;}
.ws148{word-spacing:3.372732px;}
.ws12a{word-spacing:3.378744px;}
.ws197{word-spacing:3.389299px;}
.ws3e{word-spacing:3.407209px;}
.ws1a4{word-spacing:3.496896px;}
.wsa{word-spacing:3.533733px;}
.ws48{word-spacing:3.586536px;}
.ws13a{word-spacing:3.613212px;}
.ws3c{word-spacing:3.646312px;}
.ws7c{word-spacing:3.733452px;}
.ws126{word-spacing:3.787560px;}
.ws125{word-spacing:3.799584px;}
.ws46{word-spacing:3.885414px;}
.ws38{word-spacing:3.945190px;}
.wsd9{word-spacing:3.979944px;}
.ws18f{word-spacing:3.981082px;}
.ws37{word-spacing:4.004965px;}
.ws14b{word-spacing:4.046076px;}
.wsc5{word-spacing:4.064741px;}
.wsc4{word-spacing:4.124516px;}
.ws143{word-spacing:4.130244px;}
.ws158{word-spacing:4.184292px;}
.ws161{word-spacing:4.292132px;}
.wsc2{word-spacing:4.303843px;}
.ws17{word-spacing:4.303872px;}
.ws13d{word-spacing:4.358700px;}
.ws3a{word-spacing:4.363619px;}
.wsdb{word-spacing:4.376736px;}
.wsbd{word-spacing:4.423394px;}
.wsd7{word-spacing:4.424832px;}
.ws129{word-spacing:4.436856px;}
.wsd8{word-spacing:4.454892px;}
.ws138{word-spacing:4.484952px;}
.ws165{word-spacing:4.542946px;}
.wsdc{word-spacing:4.563108px;}
.ws33{word-spacing:4.602721px;}
.ws120{word-spacing:4.683348px;}
.wsc7{word-spacing:4.722272px;}
.ws18c{word-spacing:4.734259px;}
.wsd1{word-spacing:4.779540px;}
.ws159{word-spacing:4.782048px;}
.ws121{word-spacing:4.791564px;}
.ws2d{word-spacing:4.841824px;}
.ws47{word-spacing:4.901599px;}
.wsd2{word-spacing:4.959900px;}
.ws15a{word-spacing:5.021150px;}
.ws151{word-spacing:5.098176px;}
.wsee{word-spacing:5.116212px;}
.ws90{word-spacing:5.140260px;}
.ws16a{word-spacing:5.140702px;}
.ws91{word-spacing:5.146272px;}
.ws108{word-spacing:5.152284px;}
.ws109{word-spacing:5.206392px;}
.wsef{word-spacing:5.260500px;}
.wsde{word-spacing:5.266512px;}
.wsdd{word-spacing:5.314608px;}
.ws181{word-spacing:5.326042px;}
.ws6d{word-spacing:5.379804px;}
.ws57{word-spacing:5.439580px;}
.ws16e{word-spacing:5.559131px;}
.ws42{word-spacing:5.618906px;}
.ws170{word-spacing:5.678682px;}
.ws162{word-spacing:5.738458px;}
.ws198{word-spacing:5.756429px;}
.ws27{word-spacing:5.798233px;}
.ws164{word-spacing:5.858009px;}
.wsa9{word-spacing:5.867712px;}
.wsaa{word-spacing:5.885748px;}
.ws2f{word-spacing:5.917784px;}
.ws89{word-spacing:5.927832px;}
.ws88{word-spacing:5.933844px;}
.ws167{word-spacing:5.977560px;}
.ws30{word-spacing:6.097111px;}
.ws101{word-spacing:6.156887px;}
.wscd{word-spacing:6.180336px;}
.wsce{word-spacing:6.234444px;}
.ws157{word-spacing:6.276438px;}
.ws63{word-spacing:6.336214px;}
.ws2e{word-spacing:6.395989px;}
.ws156{word-spacing:6.455765px;}
.wscf{word-spacing:6.529032px;}
.wsd0{word-spacing:6.553080px;}
.ws16{word-spacing:6.575316px;}
.wsfe{word-spacing:6.635092px;}
.ws41{word-spacing:6.754643px;}
.ws74{word-spacing:6.955884px;}
.ws23{word-spacing:6.993745px;}
.ws29{word-spacing:7.113296px;}
.ws75{word-spacing:7.148268px;}
.ws76{word-spacing:7.208388px;}
.wsa7{word-spacing:7.232436px;}
.ws127{word-spacing:7.286544px;}
.ws166{word-spacing:7.471950px;}
.ws128{word-spacing:7.557084px;}
.ws2a{word-spacing:7.711052px;}
.ws15f{word-spacing:7.770828px;}
.ws9f{word-spacing:7.923816px;}
.wse1{word-spacing:7.971912px;}
.ws36{word-spacing:8.189257px;}
.ws16f{word-spacing:8.308808px;}
.wse2{word-spacing:8.380728px;}
.ws155{word-spacing:8.428360px;}
.wse3{word-spacing:8.440848px;}
.ws39{word-spacing:8.488135px;}
.ws145{word-spacing:8.771508px;}
.ws146{word-spacing:8.783532px;}
.ws66{word-spacing:9.205442px;}
.ws8c{word-spacing:9.865692px;}
.ws8d{word-spacing:9.895752px;}
.ws134{word-spacing:10.220400px;}
.ws132{word-spacing:10.653264px;}
.ws133{word-spacing:10.881720px;}
.ws5{word-spacing:11.297556px;}
.ws103{word-spacing:11.615688px;}
.ws73{word-spacing:11.620476px;}
.wsaf{word-spacing:12.432816px;}
.wsae{word-spacing:12.438828px;}
.ws87{word-spacing:13.364676px;}
.ws175{word-spacing:14.579366px;}
.ws15{word-spacing:16.986534px;}
.ws80{word-spacing:21.294504px;}
.ws2{word-spacing:22.179541px;}
.ws60{word-spacing:206.585923px;}
.ws62{word-spacing:238.445923px;}
.ws61{word-spacing:239.909923px;}
.ws5f{word-spacing:256.465723px;}
.ws54{word-spacing:327.268102px;}
.ws5e{word-spacing:334.771723px;}
.ws55{word-spacing:370.155025px;}
.ws51{word-spacing:442.937196px;}
.ws4f{word-spacing:467.557188px;}
.ws53{word-spacing:469.776440px;}
.ws50{word-spacing:477.248390px;}
.ws52{word-spacing:484.720340px;}
.ws56{word-spacing:492.192290px;}
._4{margin-left:-6.637775px;}
._7{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._d{margin-left:-2.725778px;}
._2{margin-left:-1.506341px;}
._3b{width:1.091664px;}
._5{width:2.995780px;}
._41{width:4.303843px;}
._3d{width:7.051774px;}
._0{width:10.879128px;}
._44{width:12.388128px;}
._8{width:13.963615px;}
._43{width:15.125513px;}
._42{width:16.351568px;}
._b{width:17.394700px;}
._9{width:18.590212px;}
._14{width:19.773782px;}
._13{width:21.100787px;}
._e{width:22.116972px;}
._39{width:23.252708px;}
._c{width:24.388445px;}
._a{width:25.583957px;}
._3a{width:26.719693px;}
._15{width:28.478253px;}
._38{width:32.039722px;}
._3{width:33.677798px;}
._12{width:36.893496px;}
._3f{width:39.105193px;}
._11{width:40.109428px;}
._25{width:42.440676px;}
._6{width:69.353300px;}
._1d{width:170.117014px;}
._26{width:194.330476px;}
._37{width:209.812356px;}
._2a{width:214.355302px;}
._33{width:220.392637px;}
._2f{width:225.413788px;}
._30{width:237.859063px;}
._36{width:283.754773px;}
._34{width:295.411015px;}
._17{width:302.882965px;}
._32{width:304.855560px;}
._35{width:307.784567px;}
._1f{width:333.129419px;}
._1e{width:345.084539px;}
._20{width:347.176685px;}
._16{width:351.841865px;}
._31{width:365.647345px;}
._21{width:387.883868px;}
._29{width:393.562550px;}
._18{width:399.241232px;}
._23{width:451.078628px;}
._2c{width:452.919721px;}
._2e{width:455.669399px;}
._24{width:466.022528px;}
._22{width:477.248390px;}
._1a{width:492.001022px;}
._19{width:498.827382px;}
._1c{width:507.136190px;}
._2d{width:512.276892px;}
._1b{width:522.080090px;}
._28{width:849.856510px;}
._2b{width:851.161789px;}
._27{width:867.164629px;}
._f{width:1845.659771px;}
._40{width:2109.243276px;}
._3c{width:2133.006120px;}
._3e{width:2542.835771px;}
._10{width:2566.745771px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y13c{bottom:-755.987550px;}
.y151{bottom:-698.477406px;}
.y150{bottom:-677.507550px;}
.y1d8{bottom:-660.748050px;}
.y14f{bottom:-638.987550px;}
.y14e{bottom:-613.066902px;}
.y1f9{bottom:-579.116052px;}
.y1f8{bottom:-558.146196px;}
.y1f7{bottom:-537.086160px;}
.y1f6{bottom:-516.116304px;}
.y1f5{bottom:-495.146448px;}
.y1f4{bottom:-474.086412px;}
.y1f3{bottom:-453.116556px;}
.y1f2{bottom:-432.146700px;}
.y111{bottom:-417.494550px;}
.y1f1{bottom:-411.086664px;}
.y1f0{bottom:-390.116808px;}
.y1ef{bottom:-369.146952px;}
.y1ee{bottom:-348.086916px;}
.y1b3{bottom:-341.984550px;}
.y1ed{bottom:-327.117060px;}
.y1ec{bottom:-306.147204px;}
.y1eb{bottom:-280.587186px;}
.y1d0{bottom:-274.303650px;}
.y1cf{bottom:-253.333794px;}
.y1ea{bottom:-241.617402px;}
.y1ce{bottom:-232.363938px;}
.y14d{bottom:-228.226758px;}
.y1e9{bottom:-220.647546px;}
.y12a{bottom:-212.744613px;}
.y1cd{bottom:-211.303902px;}
.y14c{bottom:-207.256902px;}
.y1e8{bottom:-199.587510px;}
.y1cc{bottom:-190.334046px;}
.y129{bottom:-189.164046px;}
.y14b{bottom:-186.287046px;}
.y1e7{bottom:-178.617654px;}
.y187{bottom:-171.229050px;}
.y1cb{bottom:-169.364190px;}
.y128{bottom:-168.194190px;}
.y14a{bottom:-165.227010px;}
.y1e6{bottom:-157.647798px;}
.y1ca{bottom:-148.304154px;}
.y127{bottom:-147.224334px;}
.y149{bottom:-144.257154px;}
.y156{bottom:-143.758050px;}
.y1e5{bottom:-136.587762px;}
.y1c9{bottom:-127.334298px;}
.y126{bottom:-126.164298px;}
.y148{bottom:-123.287298px;}
.y1e4{bottom:-115.617906px;}
.y1a3{bottom:-114.078942px;}
.y1c8{bottom:-106.364442px;}
.y125{bottom:-105.194442px;}
.y147{bottom:-102.227262px;}
.y1e3{bottom:-94.648050px;}
.y1a2{bottom:-93.109086px;}
.y16b{bottom:-86.247906px;}
.y1c7{bottom:-85.304406px;}
.y124{bottom:-84.224586px;}
.y146{bottom:-81.257406px;}
.y1a1{bottom:-72.049050px;}
.y1e2{bottom:-68.278050px;}
.y16a{bottom:-65.278050px;}
.y1c6{bottom:-64.334550px;}
.y123{bottom:-63.164550px;}
.y145{bottom:-60.287550px;}
.y1a0{bottom:-33.529050px;}
.y1e1{bottom:-27.328050px;}
.y169{bottom:-26.758050px;}
.y1c5{bottom:-25.814550px;}
.y122{bottom:-24.644550px;}
.y144{bottom:-21.677550px;}
.y19f{bottom:-7.606458px;}
.y1e0{bottom:-1.407501px;}
.y168{bottom:-0.837402px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:0.107268px;}
.y121{bottom:1.277322px;}
.y143{bottom:4.153125px;}
.y42{bottom:45.921000px;}
.y41{bottom:99.720000px;}
.y17{bottom:100.260000px;}
.y2d0{bottom:105.961500px;}
.y10d{bottom:105.976500px;}
.y183{bottom:108.651000px;}
.yaf{bottom:109.663500px;}
.y25b{bottom:113.358000px;}
.y26e{bottom:114.882000px;}
.y29e{bottom:117.664500px;}
.y214{bottom:117.796500px;}
.y16{bottom:118.147500px;}
.y234{bottom:120.322500px;}
.y40{bottom:120.610500px;}
.y152{bottom:124.357500px;}
.y2cf{bottom:125.112000px;}
.y10c{bottom:126.868500px;}
.y182{bottom:129.543000px;}
.yae{bottom:130.555500px;}
.y7e{bottom:132.816000px;}
.y25a{bottom:134.250000px;}
.y26d{bottom:135.774000px;}
.y15{bottom:136.035000px;}
.y29d{bottom:136.815000px;}
.y74{bottom:137.298000px;}
.y213{bottom:138.688500px;}
.ydb{bottom:140.115000px;}
.y233{bottom:141.213000px;}
.y3f{bottom:141.502500px;}
.y2ce{bottom:144.262500px;}
.y139{bottom:146.787000px;}
.y10b{bottom:147.759000px;}
.y1fa{bottom:150.120000px;}
.y181{bottom:150.435000px;}
.yad{bottom:151.447500px;}
.y7d{bottom:153.706500px;}
.y14{bottom:153.922500px;}
.y259{bottom:155.142000px;}
.y29c{bottom:155.965500px;}
.y26c{bottom:156.666000px;}
.y73{bottom:158.190000px;}
.y212{bottom:159.579000px;}
.y232{bottom:162.105000px;}
.y3e{bottom:162.394500px;}
.y2cd{bottom:163.413000px;}
.yda{bottom:165.250500px;}
.y10a{bottom:168.651000px;}
.y180{bottom:171.327000px;}
.y13{bottom:171.811500px;}
.y1d5{bottom:172.549500px;}
.y7c{bottom:174.598500px;}
.y29b{bottom:175.116000px;}
.y258{bottom:176.032500px;}
.y26b{bottom:177.556500px;}
.y72{bottom:179.082000px;}
.y211{bottom:180.471000px;}
.y2cc{bottom:182.563500px;}
.y231{bottom:182.997000px;}
.y3d{bottom:183.285000px;}
.y109{bottom:189.543000px;}
.y12{bottom:189.699000px;}
.yd9{bottom:190.384500px;}
.y17f{bottom:192.217500px;}
.yac{bottom:193.642500px;}
.y299{bottom:194.268000px;}
.y7b{bottom:195.490500px;}
.y257{bottom:196.924500px;}
.y26a{bottom:198.448500px;}
.y29a{bottom:199.149000px;}
.y71{bottom:199.972500px;}
.y210{bottom:201.363000px;}
.y2cb{bottom:201.714000px;}
.yd3{bottom:201.864000px;}
.y230{bottom:203.887500px;}
.y3c{bottom:204.177000px;}
.y11{bottom:207.586500px;}
.y142{bottom:209.172846px;}
.y108{bottom:210.433500px;}
.yab{bottom:212.934000px;}
.y17e{bottom:213.109500px;}
.y298{bottom:213.418500px;}
.yd8{bottom:215.520000px;}
.y7a{bottom:216.381000px;}
.y256{bottom:217.816500px;}
.y269{bottom:219.340500px;}
.yd2{bottom:219.798000px;}
.y70{bottom:220.864500px;}
.y20f{bottom:222.253500px;}
.yd6{bottom:224.487000px;}
.y22f{bottom:224.779500px;}
.y3b{bottom:225.069000px;}
.y10{bottom:225.475500px;}
.y141{bottom:230.142702px;}
.yaa{bottom:230.868000px;}
.y107{bottom:231.325500px;}
.y297{bottom:232.569000px;}
.yd7{bottom:233.452500px;}
.y17d{bottom:234.001500px;}
.y79{bottom:237.273000px;}
.y255{bottom:238.707000px;}
.y2ca{bottom:240.015000px;}
.y268{bottom:240.232500px;}
.y6f{bottom:241.756500px;}
.y20e{bottom:243.145500px;}
.y22e{bottom:245.671500px;}
.y3a{bottom:245.961000px;}
.ya9{bottom:248.800500px;}
.y140{bottom:251.112558px;}
.y296{bottom:251.719500px;}
.y106{bottom:252.217500px;}
.yf{bottom:252.330000px;}
.y17c{bottom:254.892000px;}
.y78{bottom:258.165000px;}
.yd5{bottom:258.588000px;}
.y2c9{bottom:259.165500px;}
.y254{bottom:259.599000px;}
.y267{bottom:261.123000px;}
.y6e{bottom:262.647000px;}
.y20d{bottom:264.037500px;}
.y22d{bottom:266.563500px;}
.ya8{bottom:266.733000px;}
.y39{bottom:266.851500px;}
.ya4{bottom:267.169500px;}
.yd4{bottom:267.555000px;}
.ye{bottom:270.217500px;}
.y295{bottom:270.870000px;}
.y13f{bottom:272.172594px;}
.y105{bottom:273.108000px;}
.y17b{bottom:275.784000px;}
.y2c8{bottom:278.316000px;}
.y77{bottom:279.055500px;}
.y253{bottom:280.491000px;}
.y266{bottom:282.015000px;}
.y6d{bottom:283.539000px;}
.ya7{bottom:284.665500px;}
.y22c{bottom:287.454000px;}
.y38{bottom:287.743500px;}
.yd{bottom:288.105000px;}
.y20c{bottom:289.411500px;}
.y294{bottom:290.020500px;}
.y1df{bottom:291.183012px;}
.y13e{bottom:293.142450px;}
.y104{bottom:294.000000px;}
.y17a{bottom:296.676000px;}
.y2c7{bottom:297.466500px;}
.y76{bottom:299.947500px;}
.y252{bottom:301.381500px;}
.yd1{bottom:301.656000px;}
.ya6{bottom:302.598000px;}
.y265{bottom:302.907000px;}
.y6c{bottom:304.431000px;}
.yc{bottom:305.994000px;}
.y22b{bottom:308.346000px;}
.y37{bottom:308.635500px;}
.y293{bottom:309.171000px;}
.y1de{bottom:312.152868px;}
.y103{bottom:314.892000px;}
.y2c6{bottom:316.617000px;}
.y179{bottom:317.566500px;}
.y13d{bottom:319.512450px;}
.ya5{bottom:320.530500px;}
.y75{bottom:320.839500px;}
.y251{bottom:322.273500px;}
.y264{bottom:323.797500px;}
.yb{bottom:323.881500px;}
.y20b{bottom:324.754500px;}
.y6b{bottom:325.323000px;}
.yd0{bottom:326.791500px;}
.y292{bottom:328.321500px;}
.y22a{bottom:329.238000px;}
.y36{bottom:329.526000px;}
.y1dd{bottom:333.122724px;}
.ycf{bottom:335.757000px;}
.y2c5{bottom:335.767500px;}
.y102{bottom:335.782500px;}
.y178{bottom:338.458500px;}
.ya{bottom:341.769000px;}
.y250{bottom:343.165500px;}
.ycc{bottom:344.472000px;}
.y263{bottom:344.689500px;}
.y20a{bottom:345.645000px;}
.ya3{bottom:345.666000px;}
.y6a{bottom:346.213500px;}
.y291{bottom:347.472000px;}
.y229{bottom:350.128500px;}
.y35{bottom:350.418000px;}
.y1dc{bottom:354.182760px;}
.y138{bottom:354.390000px;}
.y2c4{bottom:354.918000px;}
.y101{bottom:356.674500px;}
.y177{bottom:359.350500px;}
.y9{bottom:359.658000px;}
.ycb{bottom:362.404500px;}
.ya2{bottom:363.598500px;}
.ya1{bottom:364.036500px;}
.y24f{bottom:364.056000px;}
.y262{bottom:365.581500px;}
.y120{bottom:366.407124px;}
.y209{bottom:366.537000px;}
.y290{bottom:366.622500px;}
.y69{bottom:367.105500px;}
.yce{bottom:369.859500px;}
.y228{bottom:371.020500px;}
.y34{bottom:371.310000px;}
.y2c3{bottom:374.070000px;}
.y1db{bottom:375.152616px;}
.y137{bottom:375.282000px;}
.y8{bottom:377.545500px;}
.y100{bottom:377.566500px;}
.y13b{bottom:378.102585px;}
.y176{bottom:380.241000px;}
.y167{bottom:384.002742px;}
.y24e{bottom:384.948000px;}
.y28f{bottom:385.773000px;}
.y261{bottom:386.472000px;}
.y11f{bottom:387.376980px;}
.y208{bottom:387.429000px;}
.y13a{bottom:387.732450px;}
.y68{bottom:387.997500px;}
.y227{bottom:391.912500px;}
.y33{bottom:392.200500px;}
.y2c2{bottom:393.220500px;}
.ycd{bottom:394.993500px;}
.y7{bottom:395.433000px;}
.y1da{bottom:396.122472px;}
.y136{bottom:396.174000px;}
.yff{bottom:398.457000px;}
.y175{bottom:401.133000px;}
.y28e{bottom:404.923500px;}
.y166{bottom:404.972598px;}
.y24d{bottom:405.840000px;}
.ya0{bottom:406.666500px;}
.y260{bottom:407.364000px;}
.y207{bottom:408.321000px;}
.y11e{bottom:408.437016px;}
.y67{bottom:408.888000px;}
.y2c1{bottom:412.371000px;}
.y226{bottom:412.803000px;}
.y1af{bottom:413.092500px;}
.y135{bottom:417.066000px;}
.y1d9{bottom:417.182508px;}
.y32{bottom:417.576000px;}
.y6{bottom:419.299500px;}
.yfe{bottom:419.349000px;}
.yca{bottom:420.129000px;}
.y1c3{bottom:420.947268px;}
.y174{bottom:422.025000px;}
.y28d{bottom:424.074000px;}
.y9f{bottom:424.600500px;}
.y9e{bottom:425.037000px;}
.y165{bottom:425.942454px;}
.y24c{bottom:426.730500px;}
.y25f{bottom:428.256000px;}
.yc9{bottom:429.096000px;}
.y206{bottom:429.211500px;}
.y11d{bottom:429.406872px;}
.y66{bottom:429.780000px;}
.y2c0{bottom:431.521500px;}
.y225{bottom:433.695000px;}
.y1ae{bottom:433.984500px;}
.y5{bottom:437.187000px;}
.y134{bottom:437.956500px;}
.yfd{bottom:440.241000px;}
.y1c2{bottom:441.917124px;}
.y173{bottom:442.917000px;}
.y28c{bottom:443.224500px;}
.y19e{bottom:444.643236px;}
.y164{bottom:447.002490px;}
.y24b{bottom:447.622500px;}
.y25e{bottom:449.146500px;}
.y205{bottom:450.103500px;}
.y11c{bottom:450.376728px;}
.y65{bottom:450.672000px;}
.y224{bottom:454.587000px;}
.y1ad{bottom:454.875000px;}
.y4{bottom:455.074500px;}
.yfc{bottom:461.133000px;}
.y28b{bottom:462.375000px;}
.y1c1{bottom:462.886980px;}
.y133{bottom:463.332000px;}
.y172{bottom:463.807500px;}
.y19d{bottom:465.703272px;}
.y1d4{bottom:466.516500px;}
.y9d{bottom:467.667000px;}
.y163{bottom:467.972346px;}
.y2bf{bottom:469.822500px;}
.y25d{bottom:470.038500px;}
.y204{bottom:470.995500px;}
.y11b{bottom:471.436764px;}
.y64{bottom:471.562500px;}
.y3{bottom:472.963500px;}
.y24a{bottom:472.998000px;}
.y1d7{bottom:473.342085px;}
.yc8{bottom:473.716500px;}
.y223{bottom:475.477500px;}
.y1ac{bottom:475.767000px;}
.y28a{bottom:481.525500px;}
.yfb{bottom:482.023500px;}
.y1d6{bottom:482.971950px;}
.y1c0{bottom:483.947016px;}
.y171{bottom:484.699500px;}
.y9c{bottom:485.601000px;}
.y19c{bottom:486.673128px;}
.y1d3{bottom:487.408500px;}
.y162{bottom:488.942202px;}
.y2be{bottom:488.973000px;}
.y203{bottom:491.886000px;}
.y11a{bottom:492.406620px;}
.y63{bottom:492.454500px;}
.y25c{bottom:495.414000px;}
.y222{bottom:496.369500px;}
.y1ab{bottom:496.659000px;}
.y31{bottom:496.788000px;}
.y2{bottom:496.828500px;}
.y289{bottom:500.676000px;}
.y132{bottom:502.156500px;}
.yfa{bottom:502.915500px;}
.y9b{bottom:503.533500px;}
.y1bf{bottom:504.916872px;}
.y170{bottom:505.591500px;}
.y19b{bottom:507.642984px;}
.y2bd{bottom:508.123500px;}
.y1d2{bottom:508.300500px;}
.y161{bottom:510.002238px;}
.yc7{bottom:510.820500px;}
.y249{bottom:511.822500px;}
.y97{bottom:513.165000px;}
.y62{bottom:513.346500px;}
.y119{bottom:513.376476px;}
.y1{bottom:514.716000px;}
.y202{bottom:517.261500px;}
.y1aa{bottom:517.551000px;}
.y30{bottom:517.678500px;}
.y288{bottom:519.826500px;}
.y9a{bottom:521.466000px;}
.y131{bottom:523.047000px;}
.yf9{bottom:523.807500px;}
.y1be{bottom:525.886728px;}
.y16f{bottom:526.482000px;}
.y2bc{bottom:527.274000px;}
.y19a{bottom:528.703020px;}
.y160{bottom:530.972094px;}
.yc6{bottom:531.712500px;}
.y248{bottom:532.713000px;}
.y61{bottom:534.237000px;}
.y118{bottom:534.436512px;}
.y221{bottom:538.152000px;}
.y1a9{bottom:538.441500px;}
.y287{bottom:538.977000px;}
.y99{bottom:539.398500px;}
.y1d1{bottom:543.928500px;}
.y130{bottom:543.939000px;}
.yf8{bottom:544.698000px;}
.y2bb{bottom:546.424500px;}
.y1bd{bottom:546.946764px;}
.y16e{bottom:547.374000px;}
.y199{bottom:549.672876px;}
.y15f{bottom:551.941950px;}
.yc5{bottom:552.603000px;}
.y247{bottom:553.605000px;}
.y60{bottom:555.129000px;}
.y117{bottom:555.406368px;}
.y2f{bottom:556.503000px;}
.y98{bottom:557.331000px;}
.y286{bottom:558.127500px;}
.y1a8{bottom:559.333500px;}
.y220{bottom:563.527500px;}
.y12f{bottom:564.831000px;}
.y2ba{bottom:565.575000px;}
.yf7{bottom:565.590000px;}
.y1b0{bottom:566.356500px;}
.y1bc{bottom:567.916620px;}
.y16d{bottom:568.266000px;}
.y198{bottom:570.642732px;}
.yc4{bottom:573.495000px;}
.y246{bottom:574.497000px;}
.y5f{bottom:576.021000px;}
.y116{bottom:576.376224px;}
.y285{bottom:577.279500px;}
.y2e{bottom:577.395000px;}
.y1a7{bottom:580.225500px;}
.y96{bottom:582.466500px;}
.y2b9{bottom:584.725500px;}
.y12e{bottom:585.721500px;}
.y1bb{bottom:588.886476px;}
.y95{bottom:590.151000px;}
.y15e{bottom:590.551950px;}
.yf6{bottom:590.964000px;}
.y197{bottom:591.702768px;}
.yc3{bottom:594.387000px;}
.y245{bottom:595.387500px;}
.y284{bottom:596.430000px;}
.y5e{bottom:596.913000px;}
.y115{bottom:597.436260px;}
.y2d{bottom:598.287000px;}
.y21f{bottom:598.870500px;}
.y1a6{bottom:601.116000px;}
.y2b8{bottom:603.876000px;}
.y16c{bottom:603.894000px;}
.y12d{bottom:606.613500px;}
.y1ba{bottom:609.946512px;}
.y196{bottom:612.672624px;}
.yc2{bottom:615.277500px;}
.y283{bottom:615.580500px;}
.y244{bottom:616.279500px;}
.y15d{bottom:616.382625px;}
.y5d{bottom:617.803500px;}
.y114{bottom:618.406116px;}
.y2c{bottom:619.177500px;}
.y21e{bottom:619.761000px;}
.y1a5{bottom:622.008000px;}
.y2b7{bottom:623.026500px;}
.y94{bottom:625.534500px;}
.yf5{bottom:626.307000px;}
.y153{bottom:626.322000px;}
.y12c{bottom:627.505500px;}
.y1b9{bottom:630.916368px;}
.y195{bottom:633.642480px;}
.y282{bottom:634.731000px;}
.yc1{bottom:636.169500px;}
.y243{bottom:637.171500px;}
.y5c{bottom:638.695500px;}
.y113{bottom:639.375972px;}
.y2b{bottom:640.069500px;}
.y21d{bottom:640.653000px;}
.y2b6{bottom:642.177000px;}
.yf4{bottom:647.199000px;}
.y1b8{bottom:651.886224px;}
.y281{bottom:653.881500px;}
.y194{bottom:654.702516px;}
.y1a4{bottom:656.385000px;}
.yc0{bottom:657.061500px;}
.y242{bottom:658.062000px;}
.y93{bottom:658.200000px;}
.y5b{bottom:659.587500px;}
.y112{bottom:660.436008px;}
.y2a{bottom:660.961500px;}
.y2b5{bottom:661.327500px;}
.y21c{bottom:661.545000px;}
.y12b{bottom:663.133500px;}
.yf3{bottom:668.089500px;}
.y1b7{bottom:672.946260px;}
.y280{bottom:673.032000px;}
.y193{bottom:675.672372px;}
.ybf{bottom:677.953500px;}
.y184{bottom:678.814500px;}
.y241{bottom:678.954000px;}
.y5a{bottom:680.478000px;}
.y29{bottom:681.852000px;}
.y21b{bottom:682.435500px;}
.y10e{bottom:685.561500px;}
.y1b6{bottom:693.916116px;}
.y92{bottom:695.304000px;}
.y192{bottom:696.642228px;}
.y27f{bottom:696.666000px;}
.ybe{bottom:698.844000px;}
.y2b4{bottom:699.628500px;}
.y240{bottom:699.846000px;}
.y59{bottom:701.370000px;}
.y28{bottom:702.744000px;}
.y21a{bottom:703.327500px;}
.yf2{bottom:710.286000px;}
.y1b5{bottom:714.885972px;}
.y91{bottom:716.196000px;}
.y110{bottom:716.595585px;}
.y191{bottom:717.702264px;}
.y2b3{bottom:718.779000px;}
.ybd{bottom:719.736000px;}
.y23f{bottom:720.736500px;}
.y58{bottom:722.262000px;}
.y27{bottom:723.636000px;}
.y219{bottom:724.219500px;}
.y10f{bottom:726.225450px;}
.yf1{bottom:732.567000px;}
.y27e{bottom:735.489000px;}
.y1b4{bottom:735.946008px;}
.y90{bottom:737.086500px;}
.y2b2{bottom:737.929500px;}
.y190{bottom:738.672120px;}
.ybc{bottom:740.628000px;}
.y23e{bottom:741.628500px;}
.y57{bottom:743.152500px;}
.y26{bottom:744.526500px;}
.y218{bottom:745.110000px;}
.y2b1{bottom:757.081500px;}
.yf0{bottom:757.701000px;}
.y8f{bottom:757.978500px;}
.y18f{bottom:759.641976px;}
.ybb{bottom:761.518500px;}
.y23d{bottom:762.520500px;}
.y27d{bottom:763.954500px;}
.y56{bottom:764.044500px;}
.y25{bottom:765.418500px;}
.y217{bottom:766.002000px;}
.y2b0{bottom:776.232000px;}
.y8e{bottom:778.870500px;}
.y18e{bottom:780.702012px;}
.yba{bottom:782.410500px;}
.yef{bottom:782.836500px;}
.y23c{bottom:783.411000px;}
.y55{bottom:784.936500px;}
.y24{bottom:786.310500px;}
.y216{bottom:786.894000px;}
.y1b2{bottom:792.105585px;}
.y27c{bottom:792.420000px;}
.y2af{bottom:795.382500px;}
.yea{bottom:796.807500px;}
.y8d{bottom:799.762500px;}
.y18d{bottom:801.671868px;}
.y1b1{bottom:801.735450px;}
.yb9{bottom:803.302500px;}
.y23b{bottom:804.303000px;}
.y54{bottom:805.827000px;}
.y23{bottom:807.202500px;}
.yee{bottom:807.972000px;}
.y27b{bottom:811.918500px;}
.y215{bottom:812.268000px;}
.y2ae{bottom:814.533000px;}
.ye9{bottom:814.740000px;}
.y8c{bottom:820.653000px;}
.y15c{bottom:821.402346px;}
.y18c{bottom:822.641724px;}
.yb8{bottom:824.193000px;}
.y23a{bottom:825.195000px;}
.y53{bottom:826.719000px;}
.y22{bottom:828.093000px;}
.yed{bottom:833.107500px;}
.y2ad{bottom:833.683500px;}
.y27a{bottom:840.384000px;}
.yec{bottom:842.073000px;}
.y15b{bottom:842.372202px;}
.y18b{bottom:843.701760px;}
.yb7{bottom:845.085000px;}
.y8b{bottom:846.028500px;}
.y239{bottom:846.087000px;}
.y52{bottom:847.611000px;}
.y21{bottom:848.985000px;}
.y2ac{bottom:852.834000px;}
.y15a{bottom:863.342058px;}
.y18a{bottom:864.671616px;}
.yb6{bottom:865.977000px;}
.y238{bottom:866.977500px;}
.y51{bottom:868.503000px;}
.y279{bottom:868.849500px;}
.y2ab{bottom:871.984500px;}
.yeb{bottom:876.175500px;}
.y8a{bottom:881.370000px;}
.y159{bottom:884.402094px;}
.y189{bottom:885.641472px;}
.yb5{bottom:886.867500px;}
.y237{bottom:887.869500px;}
.y278{bottom:888.348000px;}
.y20{bottom:888.406500px;}
.y50{bottom:889.393500px;}
.y2aa{bottom:891.135000px;}
.ye8{bottom:901.309500px;}
.y89{bottom:902.262000px;}
.y158{bottom:905.371950px;}
.y188{bottom:906.701508px;}
.y201{bottom:907.759500px;}
.y277{bottom:907.846500px;}
.y236{bottom:908.761500px;}
.y1f{bottom:908.886000px;}
.ye7{bottom:910.276500px;}
.y4f{bottom:910.285500px;}
.yb4{bottom:912.243000px;}
.y88{bottom:923.154000px;}
.y1e{bottom:925.024500px;}
.y276{bottom:927.345000px;}
.y2a9{bottom:929.436000px;}
.y4e{bottom:931.177500px;}
.y157{bottom:931.741950px;}
.y200{bottom:933.135000px;}
.y235{bottom:934.135500px;}
.y1d{bottom:936.825000px;}
.y87{bottom:944.044500px;}
.ye6{bottom:944.377500px;}
.yb3{bottom:947.584500px;}
.y2a8{bottom:948.586500px;}
.y4d{bottom:952.068000px;}
.y275{bottom:955.810500px;}
.y1c{bottom:957.304500px;}
.y186{bottom:962.861085px;}
.y86{bottom:964.936500px;}
.y2a7{bottom:967.737000px;}
.yb2{bottom:968.476500px;}
.ye5{bottom:969.513000px;}
.y185{bottom:972.490950px;}
.y4c{bottom:972.960000px;}
.ye0{bottom:974.517000px;}
.y2d3{bottom:982.158000px;}
.y274{bottom:984.276000px;}
.y85{bottom:985.828500px;}
.y2a6{bottom:986.887500px;}
.yb1{bottom:989.368500px;}
.y155{bottom:990.332085px;}
.ydf{bottom:992.449500px;}
.y4b{bottom:993.852000px;}
.ye4{bottom:994.648500px;}
.y154{bottom:999.961950px;}
.y2d2{bottom:1001.308500px;}
.y1b{bottom:1001.382000px;}
.y273{bottom:1003.774500px;}
.y2a5{bottom:1006.038000px;}
.y84{bottom:1006.719000px;}
.yb0{bottom:1010.260500px;}
.y4a{bottom:1014.742500px;}
.ye3{bottom:1019.782500px;}
.y2d1{bottom:1020.459000px;}
.y272{bottom:1023.273000px;}
.y2a4{bottom:1025.188500px;}
.y83{bottom:1027.611000px;}
.y1ff{bottom:1031.151000px;}
.y49{bottom:1035.634500px;}
.y1a{bottom:1040.206500px;}
.y271{bottom:1042.771500px;}
.y2a3{bottom:1044.339000px;}
.ye2{bottom:1044.918000px;}
.y82{bottom:1048.503000px;}
.y1fe{bottom:1052.043000px;}
.ye1{bottom:1053.885000px;}
.y48{bottom:1056.526500px;}
.y270{bottom:1062.270000px;}
.y2a2{bottom:1063.489500px;}
.y81{bottom:1069.393500px;}
.y19{bottom:1071.543000px;}
.y1fd{bottom:1072.935000px;}
.y47{bottom:1077.417000px;}
.y26f{bottom:1081.768500px;}
.y2a1{bottom:1082.640000px;}
.yde{bottom:1087.986000px;}
.y80{bottom:1090.285500px;}
.y1fc{bottom:1093.825500px;}
.ydd{bottom:1096.953000px;}
.y46{bottom:1098.309000px;}
.y2a0{bottom:1101.790500px;}
.y18{bottom:1102.881000px;}
.y1fb{bottom:1114.717500px;}
.y7f{bottom:1115.661000px;}
.y45{bottom:1119.201000px;}
.y29f{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.ydc{bottom:1141.573500px;}
.y43{bottom:1200.196500px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h12{height:39.488026px;}
.hf{height:41.482876px;}
.hb{height:43.038432px;}
.h7{height:43.421105px;}
.h1d{height:43.622227px;}
.h3{height:43.875290px;}
.h14{height:44.279648px;}
.ha{height:48.848947px;}
.h1e{height:49.117939px;}
.h16{height:49.939453px;}
.h9{height:51.646464px;}
.h18{height:53.015625px;}
.h8{height:54.276245px;}
.h5{height:54.405312px;}
.h15{height:55.599258px;}
.h4{height:77.469696px;}
.h10{height:78.900432px;}
.h11{height:90.138245px;}
.he{height:90.144245px;}
.hc{height:95.268245px;}
.hd{height:124.260245px;}
.h17{height:183.963000px;}
.h1c{height:270.327000px;}
.h19{height:343.888500px;}
.h13{height:347.323500px;}
.h1b{height:403.854000px;}
.h1a{height:421.890000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:297.163500px;}
.w2{width:379.701000px;}
.w6{width:432.000000px;}
.w5{width:432.190500px;}
.w3{width:575.436000px;}
.w4{width:575.928000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x26{left:-196.680000px;}
.x35{left:-195.381000px;}
.x2a{left:-193.737000px;}
.x38{left:-192.108000px;}
.x27{left:-1.109640px;}
.x0{left:0.000000px;}
.x2b{left:1.833000px;}
.x39{left:3.460910px;}
.x28{left:30.750954px;}
.x36{left:32.049954px;}
.x2c{left:33.693000px;}
.x3a{left:35.322307px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x20{left:63.990000px;}
.x24{left:69.819000px;}
.x1c{left:71.208000px;}
.x1d{left:74.802000px;}
.x19{left:81.318000px;}
.x25{left:84.621000px;}
.x16{left:86.719500px;}
.x18{left:88.797000px;}
.x21{left:229.425000px;}
.x1a{left:233.161500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x13{left:263.689500px;}
.x4{left:269.914500px;}
.xd{left:271.453500px;}
.x15{left:280.387500px;}
.x6{left:281.479500px;}
.x7{left:283.437000px;}
.x8{left:294.616500px;}
.x3b{left:298.571333px;}
.x10{left:299.614500px;}
.x34{left:300.918000px;}
.xb{left:309.418500px;}
.x9{left:312.093000px;}
.x1e{left:314.809500px;}
.x3c{left:350.548500px;}
.x29{left:379.140342px;}
.xe{left:414.016500px;}
.xf{left:417.520500px;}
.x11{left:427.002000px;}
.x12{left:431.433000px;}
.x37{left:436.690620px;}
.x14{left:443.388000px;}
.xa{left:445.197000px;}
.xc{left:451.906500px;}
.x22{left:463.902000px;}
.x1b{left:472.837500px;}
.x1f{left:482.088000px;}
.x23{left:487.639500px;}
.x30{left:502.446000px;}
.x31{left:518.472000px;}
.x2f{left:575.207023px;}
.x2d{left:578.640523px;}
.x2e{left:582.781138px;}
.x3d{left:680.785500px;}
.x3e{left:692.706000px;}
.x32{left:698.593500px;}
.x33{left:751.599000px;}
.x17{left:767.727000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:31.882667pt;}
.v4{vertical-align:36.437333pt;}
.v5{vertical-align:62.208000pt;}
.ls57{letter-spacing:-1.517696pt;}
.ls2e{letter-spacing:-0.486304pt;}
.ls4f{letter-spacing:-0.416832pt;}
.ls2f{letter-spacing:-0.358048pt;}
.ls51{letter-spacing:-0.347360pt;}
.ls61{letter-spacing:-0.309952pt;}
.ls5f{letter-spacing:-0.304608pt;}
.ls4d{letter-spacing:-0.267200pt;}
.ls2c{letter-spacing:-0.245824pt;}
.ls5d{letter-spacing:-0.240480pt;}
.ls2b{letter-spacing:-0.192384pt;}
.ls48{letter-spacing:-0.160320pt;}
.ls4a{letter-spacing:-0.154976pt;}
.ls58{letter-spacing:-0.149632pt;}
.ls33{letter-spacing:-0.144288pt;}
.ls3c{letter-spacing:-0.128256pt;}
.ls39{letter-spacing:-0.117568pt;}
.ls4b{letter-spacing:-0.112224pt;}
.ls4e{letter-spacing:-0.106880pt;}
.ls50{letter-spacing:-0.101536pt;}
.ls5b{letter-spacing:-0.096192pt;}
.ls59{letter-spacing:-0.091200pt;}
.ls5a{letter-spacing:-0.090848pt;}
.ls3b{letter-spacing:-0.085504pt;}
.ls38{letter-spacing:-0.080160pt;}
.ls35{letter-spacing:-0.074816pt;}
.ls36{letter-spacing:-0.069472pt;}
.ls5e{letter-spacing:-0.064128pt;}
.ls32{letter-spacing:-0.058784pt;}
.ls4c{letter-spacing:-0.053440pt;}
.ls2d{letter-spacing:-0.048096pt;}
.ls5c{letter-spacing:-0.042752pt;}
.ls56{letter-spacing:-0.037408pt;}
.ls37{letter-spacing:-0.032064pt;}
.ls31{letter-spacing:-0.026720pt;}
.ls2a{letter-spacing:-0.021376pt;}
.ls28{letter-spacing:-0.021280pt;}
.ls34{letter-spacing:-0.016032pt;}
.ls29{letter-spacing:-0.012768pt;}
.ls30{letter-spacing:-0.010688pt;}
.ls49{letter-spacing:-0.005344pt;}
.ls3a{letter-spacing:-0.004256pt;}
.ls6{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000387pt;}
.lsd{letter-spacing:0.003733pt;}
.ls11{letter-spacing:0.005344pt;}
.ls25{letter-spacing:0.009600pt;}
.ls17{letter-spacing:0.010688pt;}
.ls60{letter-spacing:0.012800pt;}
.ls54{letter-spacing:0.016032pt;}
.ls1c{letter-spacing:0.019200pt;}
.ls40{letter-spacing:0.021376pt;}
.ls41{letter-spacing:0.026720pt;}
.ls24{letter-spacing:0.028800pt;}
.ls16{letter-spacing:0.032064pt;}
.ls43{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.042752pt;}
.ls13{letter-spacing:0.048096pt;}
.ls27{letter-spacing:0.052800pt;}
.ls15{letter-spacing:0.053440pt;}
.ls21{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.058784pt;}
.ls14{letter-spacing:0.064128pt;}
.ls42{letter-spacing:0.069472pt;}
.ls12{letter-spacing:0.074816pt;}
.ls23{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.081600pt;}
.ls3d{letter-spacing:0.085504pt;}
.ls10{letter-spacing:0.090848pt;}
.ls26{letter-spacing:0.096192pt;}
.ls45{letter-spacing:0.101536pt;}
.ls22{letter-spacing:0.106880pt;}
.ls46{letter-spacing:0.117568pt;}
.ls52{letter-spacing:0.122912pt;}
.ls55{letter-spacing:0.138944pt;}
.lsf{letter-spacing:0.148960pt;}
.ls53{letter-spacing:0.153216pt;}
.ls20{letter-spacing:0.157472pt;}
.ls18{letter-spacing:0.160320pt;}
.lse{letter-spacing:0.161728pt;}
.ls1f{letter-spacing:0.170240pt;}
.ls44{letter-spacing:0.171008pt;}
.ls62{letter-spacing:3.607200pt;}
.ls5{letter-spacing:10.626533pt;}
.ls64{letter-spacing:12.911530pt;}
.ls3e{letter-spacing:13.098426pt;}
.ls7{letter-spacing:13.124065pt;}
.lsb{letter-spacing:13.177199pt;}
.ls9{letter-spacing:13.230333pt;}
.ls3{letter-spacing:13.283467pt;}
.ls3f{letter-spacing:13.320391pt;}
.ls1e{letter-spacing:13.334301pt;}
.lsc{letter-spacing:13.387597pt;}
.ls4{letter-spacing:13.496002pt;}
.ls63{letter-spacing:13.655404pt;}
.lsa{letter-spacing:18.756255pt;}
.ls66{letter-spacing:19.128192pt;}
.ls65{letter-spacing:19.181326pt;}
.ls8{letter-spacing:19.553263pt;}
.ls0{letter-spacing:51.035733pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ls1d{letter-spacing:754.643392pt;}
.ws6c{word-spacing:-53.440000pt;}
.ws6f{word-spacing:-13.440160pt;}
.wsc1{word-spacing:-13.370688pt;}
.ws6b{word-spacing:-13.360000pt;}
.ws2c{word-spacing:-13.283467pt;}
.ws102{word-spacing:-13.050048pt;}
.ws176{word-spacing:-11.955200pt;}
.ws6e{word-spacing:-10.810240pt;}
.ws68{word-spacing:-10.801728pt;}
.ws69{word-spacing:-10.640000pt;}
.ws22{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws14a{word-spacing:-3.446880pt;}
.wsb8{word-spacing:-3.168992pt;}
.ws149{word-spacing:-3.158304pt;}
.ws142{word-spacing:-3.131584pt;}
.ws116{word-spacing:-3.110208pt;}
.ws115{word-spacing:-3.099520pt;}
.ws107{word-spacing:-3.062112pt;}
.ws141{word-spacing:-3.040736pt;}
.wsda{word-spacing:-2.875072pt;}
.ws12f{word-spacing:-2.869728pt;}
.ws8b{word-spacing:-2.538400pt;}
.wsc6{word-spacing:-2.497292pt;}
.ws8a{word-spacing:-2.463584pt;}
.ws5a{word-spacing:-2.444158pt;}
.ws130{word-spacing:-2.410144pt;}
.wsbc{word-spacing:-2.391024pt;}
.ws169{word-spacing:-2.231622pt;}
.wsfd{word-spacing:-2.223104pt;}
.ws44{word-spacing:-2.178489pt;}
.ws58{word-spacing:-2.125355pt;}
.ws104{word-spacing:-2.121568pt;}
.ws67{word-spacing:-1.965953pt;}
.wse6{word-spacing:-1.934528pt;}
.ws171{word-spacing:-1.912819pt;}
.wsa6{word-spacing:-1.891776pt;}
.ws131{word-spacing:-1.875744pt;}
.ws10c{word-spacing:-1.865056pt;}
.ws0{word-spacing:-1.859680pt;}
.ws4{word-spacing:-1.858754pt;}
.wsa5{word-spacing:-1.832992pt;}
.wse7{word-spacing:-1.827648pt;}
.wse4{word-spacing:-1.822304pt;}
.wse5{word-spacing:-1.811616pt;}
.ws3f{word-spacing:-1.753418pt;}
.ws124{word-spacing:-1.555104pt;}
.ws10b{word-spacing:-1.533728pt;}
.ws123{word-spacing:-1.507008pt;}
.ws82{word-spacing:-1.490976pt;}
.ws122{word-spacing:-1.485632pt;}
.ws17c{word-spacing:-1.434624pt;}
.ws45{word-spacing:-1.434614pt;}
.ws65{word-spacing:-1.275213pt;}
.ws92{word-spacing:-1.250496pt;}
.ws81{word-spacing:-1.191712pt;}
.ws10a{word-spacing:-1.181024pt;}
.ws83{word-spacing:-1.143616pt;}
.wsbf{word-spacing:-1.115811pt;}
.wsd{word-spacing:-1.062677pt;}
.ws9b{word-spacing:-0.956576pt;}
.ws114{word-spacing:-0.951232pt;}
.ws98{word-spacing:-0.924512pt;}
.ws10f{word-spacing:-0.919168pt;}
.ws153{word-spacing:-0.903136pt;}
.ws11e{word-spacing:-0.855040pt;}
.ws113{word-spacing:-0.812288pt;}
.ws16c{word-spacing:-0.797008pt;}
.ws152{word-spacing:-0.790912pt;}
.ws11f{word-spacing:-0.774880pt;}
.ws93{word-spacing:-0.764192pt;}
.ws196{word-spacing:-0.717312pt;}
.ws15c{word-spacing:-0.690740pt;}
.ws15d{word-spacing:-0.637606pt;}
.wsf0{word-spacing:-0.635936pt;}
.ws99{word-spacing:-0.619904pt;}
.ws9a{word-spacing:-0.609216pt;}
.ws100{word-spacing:-0.584473pt;}
.wse0{word-spacing:-0.566464pt;}
.ws25{word-spacing:-0.531339pt;}
.ws77{word-spacing:-0.513024pt;}
.wsb{word-spacing:-0.478205pt;}
.ws168{word-spacing:-0.425071pt;}
.ws18a{word-spacing:-0.382566pt;}
.ws136{word-spacing:-0.374080pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws172{word-spacing:-0.334746pt;}
.wscc{word-spacing:-0.325984pt;}
.ws20{word-spacing:-0.318803pt;}
.wsab{word-spacing:-0.315296pt;}
.ws94{word-spacing:-0.304608pt;}
.ws173{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.265669pt;}
.ws14f{word-spacing:-0.261856pt;}
.wsa2{word-spacing:-0.246848pt;}
.ws71{word-spacing:-0.242592pt;}
.ws17f{word-spacing:-0.239104pt;}
.ws13c{word-spacing:-0.224448pt;}
.ws1a{word-spacing:-0.212535pt;}
.wsf2{word-spacing:-0.208416pt;}
.ws135{word-spacing:-0.192384pt;}
.ws7{word-spacing:-0.191283pt;}
.ws1f{word-spacing:-0.159402pt;}
.wsd5{word-spacing:-0.149632pt;}
.ws17d{word-spacing:-0.143462pt;}
.wsf1{word-spacing:-0.138944pt;}
.wsf3{word-spacing:-0.133600pt;}
.ws12{word-spacing:-0.106268pt;}
.ws85{word-spacing:-0.096192pt;}
.ws17b{word-spacing:-0.095642pt;}
.ws78{word-spacing:-0.074816pt;}
.wsa3{word-spacing:-0.072352pt;}
.ws72{word-spacing:-0.068096pt;}
.wsa1{word-spacing:-0.063840pt;}
.ws70{word-spacing:-0.059584pt;}
.ws6a{word-spacing:-0.053440pt;}
.ws19{word-spacing:-0.053134pt;}
.wsa4{word-spacing:-0.051200pt;}
.ws178{word-spacing:-0.047821pt;}
.ws1a1{word-spacing:-0.012399pt;}
.ws187{word-spacing:-0.008789pt;}
.ws199{word-spacing:-0.007356pt;}
.ws19f{word-spacing:-0.007287pt;}
.ws137{word-spacing:-0.006400pt;}
.ws190{word-spacing:-0.004992pt;}
.ws185{word-spacing:-0.004617pt;}
.ws18b{word-spacing:-0.003857pt;}
.ws19d{word-spacing:-0.002935pt;}
.ws1a2{word-spacing:-0.002108pt;}
.ws19a{word-spacing:-0.001894pt;}
.ws21{word-spacing:-0.000698pt;}
.ws189{word-spacing:-0.000427pt;}
.ws8{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.005344pt;}
.ws150{word-spacing:0.010688pt;}
.wsa0{word-spacing:0.021376pt;}
.wsb5{word-spacing:0.026720pt;}
.wse8{word-spacing:0.032064pt;}
.ws193{word-spacing:0.047821pt;}
.ws11{word-spacing:0.053134pt;}
.ws84{word-spacing:0.069472pt;}
.ws140{word-spacing:0.080160pt;}
.ws13b{word-spacing:0.085504pt;}
.ws17a{word-spacing:0.095642pt;}
.ws86{word-spacing:0.096192pt;}
.wsf6{word-spacing:0.101536pt;}
.wsf7{word-spacing:0.105600pt;}
.wse{word-spacing:0.106268pt;}
.wsea{word-spacing:0.106880pt;}
.wsba{word-spacing:0.110400pt;}
.wsac{word-spacing:0.134400pt;}
.ws192{word-spacing:0.143462pt;}
.wsdf{word-spacing:0.144288pt;}
.ws9e{word-spacing:0.149632pt;}
.wsad{word-spacing:0.153600pt;}
.ws106{word-spacing:0.154976pt;}
.ws95{word-spacing:0.158400pt;}
.wsc{word-spacing:0.159402pt;}
.ws117{word-spacing:0.160320pt;}
.ws177{word-spacing:0.191283pt;}
.ws13{word-spacing:0.212535pt;}
.wsb6{word-spacing:0.213760pt;}
.ws18d{word-spacing:0.239104pt;}
.ws118{word-spacing:0.249600pt;}
.ws1c{word-spacing:0.265669pt;}
.ws18e{word-spacing:0.286925pt;}
.wsb0{word-spacing:0.309952pt;}
.ws1b{word-spacing:0.318803pt;}
.wsb1{word-spacing:0.325984pt;}
.wse9{word-spacing:0.352704pt;}
.ws3{word-spacing:0.371756pt;}
.ws6{word-spacing:0.375335pt;}
.ws112{word-spacing:0.416832pt;}
.ws144{word-spacing:0.427520pt;}
.ws8e{word-spacing:0.432864pt;}
.wsb2{word-spacing:0.464928pt;}
.ws8f{word-spacing:0.480960pt;}
.ws16d{word-spacing:0.531339pt;}
.ws59{word-spacing:0.584473pt;}
.ws19c{word-spacing:0.621670pt;}
.ws34{word-spacing:0.637606pt;}
.ws14c{word-spacing:0.657312pt;}
.wsf5{word-spacing:0.662656pt;}
.ws105{word-spacing:0.668000pt;}
.ws13e{word-spacing:0.678688pt;}
.ws97{word-spacing:0.689376pt;}
.wsbe{word-spacing:0.690740pt;}
.wsf4{word-spacing:0.737472pt;}
.ws13f{word-spacing:0.742816pt;}
.ws4b{word-spacing:0.743874pt;}
.ws96{word-spacing:0.748160pt;}
.ws4c{word-spacing:0.750098pt;}
.ws14d{word-spacing:0.758848pt;}
.ws14e{word-spacing:0.774880pt;}
.ws4d{word-spacing:0.797008pt;}
.ws15e{word-spacing:0.850142pt;}
.ws182{word-spacing:0.860774pt;}
.ws1e{word-spacing:0.903276pt;}
.ws139{word-spacing:0.919168pt;}
.ws5d{word-spacing:0.956410pt;}
.ws174{word-spacing:0.956416pt;}
.ws188{word-spacing:1.004237pt;}
.ws24{word-spacing:1.009543pt;}
.wscb{word-spacing:1.058112pt;}
.ws28{word-spacing:1.062677pt;}
.wsca{word-spacing:1.079488pt;}
.ws43{word-spacing:1.115811pt;}
.ws191{word-spacing:1.147699pt;}
.ws163{word-spacing:1.168945pt;}
.ws1a3{word-spacing:1.195520pt;}
.ws4a{word-spacing:1.222079pt;}
.wsfc{word-spacing:1.245152pt;}
.ws14{word-spacing:1.275213pt;}
.ws111{word-spacing:1.303936pt;}
.wsa8{word-spacing:1.314624pt;}
.wsff{word-spacing:1.328347pt;}
.ws183{word-spacing:1.338982pt;}
.ws9c{word-spacing:1.357376pt;}
.wsd4{word-spacing:1.362720pt;}
.ws110{word-spacing:1.368064pt;}
.ws9d{word-spacing:1.384096pt;}
.ws184{word-spacing:1.386803pt;}
.ws160{word-spacing:1.434614pt;}
.ws5c{word-spacing:1.540882pt;}
.ws186{word-spacing:1.578086pt;}
.ws31{word-spacing:1.594016pt;}
.ws7e{word-spacing:1.624576pt;}
.ws195{word-spacing:1.625907pt;}
.ws154{word-spacing:1.645952pt;}
.ws49{word-spacing:1.700284pt;}
.ws7f{word-spacing:1.726112pt;}
.ws35{word-spacing:1.753418pt;}
.wsfb{word-spacing:1.768864pt;}
.wsd3{word-spacing:1.800928pt;}
.wsc0{word-spacing:1.806551pt;}
.ws2b{word-spacing:1.965953pt;}
.wsf8{word-spacing:2.009344pt;}
.ws119{word-spacing:2.020032pt;}
.wsfa{word-spacing:2.025376pt;}
.wsf{word-spacing:2.072221pt;}
.ws11a{word-spacing:2.100192pt;}
.ws16b{word-spacing:2.125355pt;}
.ws32{word-spacing:2.178489pt;}
.wsed{word-spacing:2.207072pt;}
.ws26{word-spacing:2.231622pt;}
.ws10d{word-spacing:2.271200pt;}
.wsbb{word-spacing:2.281888pt;}
.ws64{word-spacing:2.284756pt;}
.wsb7{word-spacing:2.292576pt;}
.ws11b{word-spacing:2.303264pt;}
.ws11c{word-spacing:2.335328pt;}
.ws40{word-spacing:2.337890pt;}
.wsb3{word-spacing:2.340672pt;}
.wsf9{word-spacing:2.351360pt;}
.wsc9{word-spacing:2.391024pt;}
.ws11d{word-spacing:2.410144pt;}
.ws15b{word-spacing:2.444158pt;}
.ws10e{word-spacing:2.468928pt;}
.ws10{word-spacing:2.497292pt;}
.wsc3{word-spacing:2.550426pt;}
.wsec{word-spacing:2.581152pt;}
.wseb{word-spacing:2.591840pt;}
.ws12e{word-spacing:2.597184pt;}
.wsc8{word-spacing:2.603559pt;}
.ws12d{word-spacing:2.623904pt;}
.ws12c{word-spacing:2.634592pt;}
.wsb4{word-spacing:2.672000pt;}
.ws3b{word-spacing:2.762961pt;}
.ws18{word-spacing:2.816095pt;}
.ws19b{word-spacing:2.864188pt;}
.ws1a0{word-spacing:2.864273pt;}
.ws17e{word-spacing:2.864512pt;}
.ws179{word-spacing:2.866509pt;}
.ws194{word-spacing:2.867072pt;}
.ws19e{word-spacing:2.868787pt;}
.ws4e{word-spacing:2.869229pt;}
.ws180{word-spacing:2.869248pt;}
.ws147{word-spacing:2.880416pt;}
.ws79{word-spacing:2.885760pt;}
.ws7b{word-spacing:2.896448pt;}
.ws7a{word-spacing:2.912480pt;}
.ws5b{word-spacing:2.922363pt;}
.wsd6{word-spacing:2.939200pt;}
.ws7d{word-spacing:2.955232pt;}
.ws12b{word-spacing:2.981952pt;}
.ws148{word-spacing:2.997984pt;}
.ws12a{word-spacing:3.003328pt;}
.ws197{word-spacing:3.012710pt;}
.ws3e{word-spacing:3.028630pt;}
.ws1a4{word-spacing:3.108352pt;}
.wsa{word-spacing:3.141096pt;}
.ws48{word-spacing:3.188032pt;}
.ws13a{word-spacing:3.211744pt;}
.ws3c{word-spacing:3.241166pt;}
.ws7c{word-spacing:3.318624pt;}
.ws126{word-spacing:3.366720pt;}
.ws125{word-spacing:3.377408pt;}
.ws46{word-spacing:3.453701pt;}
.ws38{word-spacing:3.506835pt;}
.wsd9{word-spacing:3.537728pt;}
.ws18f{word-spacing:3.538739pt;}
.ws37{word-spacing:3.559969pt;}
.ws14b{word-spacing:3.596512pt;}
.wsc5{word-spacing:3.613103pt;}
.wsc4{word-spacing:3.666237pt;}
.ws143{word-spacing:3.671328pt;}
.ws158{word-spacing:3.719371pt;}
.ws161{word-spacing:3.815228pt;}
.wsc2{word-spacing:3.825638pt;}
.ws17{word-spacing:3.825664pt;}
.ws13d{word-spacing:3.874400pt;}
.ws3a{word-spacing:3.878772pt;}
.wsdb{word-spacing:3.890432pt;}
.wsbd{word-spacing:3.931906pt;}
.wsd7{word-spacing:3.933184pt;}
.ws129{word-spacing:3.943872pt;}
.wsd8{word-spacing:3.959904pt;}
.ws138{word-spacing:3.986624pt;}
.ws165{word-spacing:4.038174pt;}
.wsdc{word-spacing:4.056096pt;}
.ws33{word-spacing:4.091308pt;}
.ws120{word-spacing:4.162976pt;}
.wsc7{word-spacing:4.197575pt;}
.ws18c{word-spacing:4.208230pt;}
.wsd1{word-spacing:4.248480pt;}
.ws159{word-spacing:4.250709pt;}
.ws121{word-spacing:4.259168pt;}
.ws2d{word-spacing:4.303843pt;}
.ws47{word-spacing:4.356977pt;}
.wsd2{word-spacing:4.408800pt;}
.ws15a{word-spacing:4.463245pt;}
.ws151{word-spacing:4.531712pt;}
.wsee{word-spacing:4.547744pt;}
.ws90{word-spacing:4.569120pt;}
.ws16a{word-spacing:4.569513pt;}
.ws91{word-spacing:4.574464pt;}
.ws108{word-spacing:4.579808pt;}
.ws109{word-spacing:4.627904pt;}
.wsef{word-spacing:4.676000pt;}
.wsde{word-spacing:4.681344pt;}
.wsdd{word-spacing:4.724096pt;}
.ws181{word-spacing:4.734259pt;}
.ws6d{word-spacing:4.782048pt;}
.ws57{word-spacing:4.835182pt;}
.ws16e{word-spacing:4.941450pt;}
.ws42{word-spacing:4.994583pt;}
.ws170{word-spacing:5.047717pt;}
.ws162{word-spacing:5.100851pt;}
.ws198{word-spacing:5.116826pt;}
.ws27{word-spacing:5.153985pt;}
.ws164{word-spacing:5.207119pt;}
.wsa9{word-spacing:5.215744pt;}
.wsaa{word-spacing:5.231776pt;}
.ws2f{word-spacing:5.260253pt;}
.ws89{word-spacing:5.269184pt;}
.ws88{word-spacing:5.274528pt;}
.ws167{word-spacing:5.313387pt;}
.ws30{word-spacing:5.419654pt;}
.ws101{word-spacing:5.472788pt;}
.wscd{word-spacing:5.493632pt;}
.wsce{word-spacing:5.541728pt;}
.ws157{word-spacing:5.579056pt;}
.ws63{word-spacing:5.632190pt;}
.ws2e{word-spacing:5.685324pt;}
.ws156{word-spacing:5.738458pt;}
.wscf{word-spacing:5.803584pt;}
.wsd0{word-spacing:5.824960pt;}
.ws16{word-spacing:5.844725pt;}
.wsfe{word-spacing:5.897859pt;}
.ws41{word-spacing:6.004127pt;}
.ws74{word-spacing:6.183008pt;}
.ws23{word-spacing:6.216662pt;}
.ws29{word-spacing:6.322930pt;}
.ws75{word-spacing:6.354016pt;}
.ws76{word-spacing:6.407456pt;}
.wsa7{word-spacing:6.428832pt;}
.ws127{word-spacing:6.476928pt;}
.ws166{word-spacing:6.641733pt;}
.ws128{word-spacing:6.717408pt;}
.ws2a{word-spacing:6.854269pt;}
.ws15f{word-spacing:6.907403pt;}
.ws9f{word-spacing:7.043392pt;}
.wse1{word-spacing:7.086144pt;}
.ws36{word-spacing:7.279340pt;}
.ws16f{word-spacing:7.385607pt;}
.wse2{word-spacing:7.449536pt;}
.ws155{word-spacing:7.491875pt;}
.wse3{word-spacing:7.502976pt;}
.ws39{word-spacing:7.545009pt;}
.ws145{word-spacing:7.796896pt;}
.ws146{word-spacing:7.807584pt;}
.ws66{word-spacing:8.182615pt;}
.ws8c{word-spacing:8.769504pt;}
.ws8d{word-spacing:8.796224pt;}
.ws134{word-spacing:9.084800pt;}
.ws132{word-spacing:9.469568pt;}
.ws133{word-spacing:9.672640pt;}
.ws5{word-spacing:10.042272pt;}
.ws103{word-spacing:10.325056pt;}
.ws73{word-spacing:10.329312pt;}
.wsaf{word-spacing:11.051392pt;}
.wsae{word-spacing:11.056736pt;}
.ws87{word-spacing:11.879712pt;}
.ws175{word-spacing:12.959437pt;}
.ws15{word-spacing:15.099141pt;}
.ws80{word-spacing:18.928448pt;}
.ws2{word-spacing:19.715148pt;}
.ws60{word-spacing:183.631932pt;}
.ws62{word-spacing:211.951932pt;}
.ws61{word-spacing:213.253265pt;}
.ws5f{word-spacing:227.969532pt;}
.ws54{word-spacing:290.904979pt;}
.ws5e{word-spacing:297.574865pt;}
.ws55{word-spacing:329.026689pt;}
.ws51{word-spacing:393.721952pt;}
.ws4f{word-spacing:415.606389pt;}
.ws53{word-spacing:417.579058pt;}
.ws50{word-spacing:424.220791pt;}
.ws52{word-spacing:430.862525pt;}
.ws56{word-spacing:437.504258pt;}
._4{margin-left:-5.900244pt;}
._7{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._d{margin-left:-2.422914pt;}
._2{margin-left:-1.338970pt;}
._3b{width:0.970368pt;}
._5{width:2.662915pt;}
._41{width:3.825638pt;}
._3d{width:6.268243pt;}
._0{width:9.670336pt;}
._44{width:11.011669pt;}
._8{width:12.412102pt;}
._43{width:13.444901pt;}
._42{width:14.534727pt;}
._b{width:15.461955pt;}
._9{width:16.524633pt;}
._14{width:17.576695pt;}
._13{width:18.756255pt;}
._e{width:19.659531pt;}
._39{width:20.669074pt;}
._c{width:21.678618pt;}
._a{width:22.741295pt;}
._3a{width:23.750838pt;}
._15{width:25.314003pt;}
._38{width:28.479753pt;}
._3{width:29.935821pt;}
._12{width:32.794219pt;}
._3f{width:34.760172pt;}
._11{width:35.652825pt;}
._25{width:37.725045pt;}
._6{width:61.647378pt;}
._1d{width:151.215123pt;}
._26{width:172.738201pt;}
._37{width:186.499872pt;}
._2a{width:190.538046pt;}
._33{width:195.904566pt;}
._2f{width:200.367811pt;}
._30{width:211.430278pt;}
._36{width:252.226465pt;}
._34{width:262.587569pt;}
._17{width:269.229302pt;}
._32{width:270.982720pt;}
._35{width:273.586282pt;}
._1f{width:296.115039pt;}
._1e{width:306.741812pt;}
._20{width:308.601498pt;}
._16{width:312.748324pt;}
._31{width:325.019862pt;}
._21{width:344.785661pt;}
._29{width:349.833378pt;}
._18{width:354.881095pt;}
._23{width:400.958781pt;}
._2c{width:402.595308pt;}
._2e{width:405.039466pt;}
._24{width:414.242247pt;}
._22{width:424.220791pt;}
._1a{width:437.334242pt;}
._19{width:443.402117pt;}
._1c{width:450.787725pt;}
._2d{width:455.357237pt;}
._1b{width:464.071191pt;}
._28{width:755.428009pt;}
._2b{width:756.588257pt;}
._27{width:770.813004pt;}
._f{width:1640.586463pt;}
._40{width:1874.882912pt;}
._3c{width:1896.005440pt;}
._3e{width:2260.298463pt;}
._10{width:2281.551796pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y13c{bottom:-671.988933pt;}
.y151{bottom:-620.868805pt;}
.y150{bottom:-602.228933pt;}
.y1d8{bottom:-587.331600pt;}
.y14f{bottom:-567.988933pt;}
.y14e{bottom:-544.948357pt;}
.y1f9{bottom:-514.769824pt;}
.y1f8{bottom:-496.129952pt;}
.y1f7{bottom:-477.409920pt;}
.y1f6{bottom:-458.770048pt;}
.y1f5{bottom:-440.130176pt;}
.y1f4{bottom:-421.410144pt;}
.y1f3{bottom:-402.770272pt;}
.y1f2{bottom:-384.130400pt;}
.y111{bottom:-371.106267pt;}
.y1f1{bottom:-365.410368pt;}
.y1f0{bottom:-346.770496pt;}
.y1ef{bottom:-328.130624pt;}
.y1ee{bottom:-309.410592pt;}
.y1b3{bottom:-303.986267pt;}
.y1ed{bottom:-290.770720pt;}
.y1ec{bottom:-272.130848pt;}
.y1eb{bottom:-249.410832pt;}
.y1d0{bottom:-243.825467pt;}
.y1cf{bottom:-225.185595pt;}
.y1ea{bottom:-214.771024pt;}
.y1ce{bottom:-206.545723pt;}
.y14d{bottom:-202.868229pt;}
.y1e9{bottom:-196.131152pt;}
.y12a{bottom:-189.106323pt;}
.y1cd{bottom:-187.825691pt;}
.y14c{bottom:-184.228357pt;}
.y1e8{bottom:-177.411120pt;}
.y1cc{bottom:-169.185819pt;}
.y129{bottom:-168.145819pt;}
.y14b{bottom:-165.588485pt;}
.y1e7{bottom:-158.771248pt;}
.y187{bottom:-152.203600pt;}
.y1cb{bottom:-150.545947pt;}
.y128{bottom:-149.505947pt;}
.y14a{bottom:-146.868453pt;}
.y1e6{bottom:-140.131376pt;}
.y1ca{bottom:-131.825915pt;}
.y127{bottom:-130.866075pt;}
.y149{bottom:-128.228581pt;}
.y156{bottom:-127.784933pt;}
.y1e5{bottom:-121.411344pt;}
.y1c9{bottom:-113.186043pt;}
.y126{bottom:-112.146043pt;}
.y148{bottom:-109.588709pt;}
.y1e4{bottom:-102.771472pt;}
.y1a3{bottom:-101.403504pt;}
.y1c8{bottom:-94.546171pt;}
.y125{bottom:-93.506171pt;}
.y147{bottom:-90.868677pt;}
.y1e3{bottom:-84.131600pt;}
.y1a2{bottom:-82.763632pt;}
.y16b{bottom:-76.664805pt;}
.y1c7{bottom:-75.826139pt;}
.y124{bottom:-74.866299pt;}
.y146{bottom:-72.228805pt;}
.y1a1{bottom:-64.043600pt;}
.y1e2{bottom:-60.691600pt;}
.y16a{bottom:-58.024933pt;}
.y1c6{bottom:-57.186267pt;}
.y123{bottom:-56.146267pt;}
.y145{bottom:-53.588933pt;}
.y1a0{bottom:-29.803600pt;}
.y1e1{bottom:-24.291600pt;}
.y169{bottom:-23.784933pt;}
.y1c5{bottom:-22.946267pt;}
.y122{bottom:-21.906267pt;}
.y144{bottom:-19.268933pt;}
.y19f{bottom:-6.761296pt;}
.y1e0{bottom:-1.251112pt;}
.y168{bottom:-0.744357pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:0.095349pt;}
.y121{bottom:1.135397pt;}
.y143{bottom:3.691667pt;}
.y42{bottom:40.818667pt;}
.y41{bottom:88.640000pt;}
.y17{bottom:89.120000pt;}
.y2d0{bottom:94.188000pt;}
.y10d{bottom:94.201333pt;}
.y183{bottom:96.578667pt;}
.yaf{bottom:97.478667pt;}
.y25b{bottom:100.762667pt;}
.y26e{bottom:102.117333pt;}
.y29e{bottom:104.590667pt;}
.y214{bottom:104.708000pt;}
.y16{bottom:105.020000pt;}
.y234{bottom:106.953333pt;}
.y40{bottom:107.209333pt;}
.y152{bottom:110.540000pt;}
.y2cf{bottom:111.210667pt;}
.y10c{bottom:112.772000pt;}
.y182{bottom:115.149333pt;}
.yae{bottom:116.049333pt;}
.y7e{bottom:118.058667pt;}
.y25a{bottom:119.333333pt;}
.y26d{bottom:120.688000pt;}
.y15{bottom:120.920000pt;}
.y29d{bottom:121.613333pt;}
.y74{bottom:122.042667pt;}
.y213{bottom:123.278667pt;}
.ydb{bottom:124.546667pt;}
.y233{bottom:125.522667pt;}
.y3f{bottom:125.780000pt;}
.y2ce{bottom:128.233333pt;}
.y139{bottom:130.477333pt;}
.y10b{bottom:131.341333pt;}
.y1fa{bottom:133.440000pt;}
.y181{bottom:133.720000pt;}
.yad{bottom:134.620000pt;}
.y7d{bottom:136.628000pt;}
.y14{bottom:136.820000pt;}
.y259{bottom:137.904000pt;}
.y29c{bottom:138.636000pt;}
.y26c{bottom:139.258667pt;}
.y73{bottom:140.613333pt;}
.y212{bottom:141.848000pt;}
.y232{bottom:144.093333pt;}
.y3e{bottom:144.350667pt;}
.y2cd{bottom:145.256000pt;}
.yda{bottom:146.889333pt;}
.y10a{bottom:149.912000pt;}
.y180{bottom:152.290667pt;}
.y13{bottom:152.721333pt;}
.y1d5{bottom:153.377333pt;}
.y7c{bottom:155.198667pt;}
.y29b{bottom:155.658667pt;}
.y258{bottom:156.473333pt;}
.y26b{bottom:157.828000pt;}
.y72{bottom:159.184000pt;}
.y211{bottom:160.418667pt;}
.y2cc{bottom:162.278667pt;}
.y231{bottom:162.664000pt;}
.y3d{bottom:162.920000pt;}
.y109{bottom:168.482667pt;}
.y12{bottom:168.621333pt;}
.yd9{bottom:169.230667pt;}
.y17f{bottom:170.860000pt;}
.yac{bottom:172.126667pt;}
.y299{bottom:172.682667pt;}
.y7b{bottom:173.769333pt;}
.y257{bottom:175.044000pt;}
.y26a{bottom:176.398667pt;}
.y29a{bottom:177.021333pt;}
.y71{bottom:177.753333pt;}
.y210{bottom:178.989333pt;}
.y2cb{bottom:179.301333pt;}
.yd3{bottom:179.434667pt;}
.y230{bottom:181.233333pt;}
.y3c{bottom:181.490667pt;}
.y11{bottom:184.521333pt;}
.y142{bottom:185.931419pt;}
.y108{bottom:187.052000pt;}
.yab{bottom:189.274667pt;}
.y17e{bottom:189.430667pt;}
.y298{bottom:189.705333pt;}
.yd8{bottom:191.573333pt;}
.y7a{bottom:192.338667pt;}
.y256{bottom:193.614667pt;}
.y269{bottom:194.969333pt;}
.yd2{bottom:195.376000pt;}
.y70{bottom:196.324000pt;}
.y20f{bottom:197.558667pt;}
.yd6{bottom:199.544000pt;}
.y22f{bottom:199.804000pt;}
.y3b{bottom:200.061333pt;}
.y10{bottom:200.422667pt;}
.y141{bottom:204.571291pt;}
.yaa{bottom:205.216000pt;}
.y107{bottom:205.622667pt;}
.y297{bottom:206.728000pt;}
.yd7{bottom:207.513333pt;}
.y17d{bottom:208.001333pt;}
.y79{bottom:210.909333pt;}
.y255{bottom:212.184000pt;}
.y2ca{bottom:213.346667pt;}
.y268{bottom:213.540000pt;}
.y6f{bottom:214.894667pt;}
.y20e{bottom:216.129333pt;}
.y22e{bottom:218.374667pt;}
.y3a{bottom:218.632000pt;}
.ya9{bottom:221.156000pt;}
.y140{bottom:223.211163pt;}
.y296{bottom:223.750667pt;}
.y106{bottom:224.193333pt;}
.yf{bottom:224.293333pt;}
.y17c{bottom:226.570667pt;}
.y78{bottom:229.480000pt;}
.yd5{bottom:229.856000pt;}
.y2c9{bottom:230.369333pt;}
.y254{bottom:230.754667pt;}
.y267{bottom:232.109333pt;}
.y6e{bottom:233.464000pt;}
.y20d{bottom:234.700000pt;}
.y22d{bottom:236.945333pt;}
.ya8{bottom:237.096000pt;}
.y39{bottom:237.201333pt;}
.ya4{bottom:237.484000pt;}
.yd4{bottom:237.826667pt;}
.ye{bottom:240.193333pt;}
.y295{bottom:240.773333pt;}
.y13f{bottom:241.931195pt;}
.y105{bottom:242.762667pt;}
.y17b{bottom:245.141333pt;}
.y2c8{bottom:247.392000pt;}
.y77{bottom:248.049333pt;}
.y253{bottom:249.325333pt;}
.y266{bottom:250.680000pt;}
.y6d{bottom:252.034667pt;}
.ya7{bottom:253.036000pt;}
.y22c{bottom:255.514667pt;}
.y38{bottom:255.772000pt;}
.yd{bottom:256.093333pt;}
.y20c{bottom:257.254667pt;}
.y294{bottom:257.796000pt;}
.y1df{bottom:258.829344pt;}
.y13e{bottom:260.571067pt;}
.y104{bottom:261.333333pt;}
.y17a{bottom:263.712000pt;}
.y2c7{bottom:264.414667pt;}
.y76{bottom:266.620000pt;}
.y252{bottom:267.894667pt;}
.yd1{bottom:268.138667pt;}
.ya6{bottom:268.976000pt;}
.y265{bottom:269.250667pt;}
.y6c{bottom:270.605333pt;}
.yc{bottom:271.994667pt;}
.y22b{bottom:274.085333pt;}
.y37{bottom:274.342667pt;}
.y293{bottom:274.818667pt;}
.y1de{bottom:277.469216pt;}
.y103{bottom:279.904000pt;}
.y2c6{bottom:281.437333pt;}
.y179{bottom:282.281333pt;}
.y13d{bottom:284.011067pt;}
.ya5{bottom:284.916000pt;}
.y75{bottom:285.190667pt;}
.y251{bottom:286.465333pt;}
.y264{bottom:287.820000pt;}
.yb{bottom:287.894667pt;}
.y20b{bottom:288.670667pt;}
.y6b{bottom:289.176000pt;}
.yd0{bottom:290.481333pt;}
.y292{bottom:291.841333pt;}
.y22a{bottom:292.656000pt;}
.y36{bottom:292.912000pt;}
.y1dd{bottom:296.109088pt;}
.ycf{bottom:298.450667pt;}
.y2c5{bottom:298.460000pt;}
.y102{bottom:298.473333pt;}
.y178{bottom:300.852000pt;}
.ya{bottom:303.794667pt;}
.y250{bottom:305.036000pt;}
.ycc{bottom:306.197333pt;}
.y263{bottom:306.390667pt;}
.y20a{bottom:307.240000pt;}
.ya3{bottom:307.258667pt;}
.y6a{bottom:307.745333pt;}
.y291{bottom:308.864000pt;}
.y229{bottom:311.225333pt;}
.y35{bottom:311.482667pt;}
.y1dc{bottom:314.829120pt;}
.y138{bottom:315.013333pt;}
.y2c4{bottom:315.482667pt;}
.y101{bottom:317.044000pt;}
.y177{bottom:319.422667pt;}
.y9{bottom:319.696000pt;}
.ycb{bottom:322.137333pt;}
.ya2{bottom:323.198667pt;}
.ya1{bottom:323.588000pt;}
.y24f{bottom:323.605333pt;}
.y262{bottom:324.961333pt;}
.y120{bottom:325.695221pt;}
.y209{bottom:325.810667pt;}
.y290{bottom:325.886667pt;}
.y69{bottom:326.316000pt;}
.yce{bottom:328.764000pt;}
.y228{bottom:329.796000pt;}
.y34{bottom:330.053333pt;}
.y2c3{bottom:332.506667pt;}
.y1db{bottom:333.468992pt;}
.y137{bottom:333.584000pt;}
.y8{bottom:335.596000pt;}
.y100{bottom:335.614667pt;}
.y13b{bottom:336.091187pt;}
.y176{bottom:337.992000pt;}
.y167{bottom:341.335771pt;}
.y24e{bottom:342.176000pt;}
.y28f{bottom:342.909333pt;}
.y261{bottom:343.530667pt;}
.y11f{bottom:344.335093pt;}
.y208{bottom:344.381333pt;}
.y13a{bottom:344.651067pt;}
.y68{bottom:344.886667pt;}
.y227{bottom:348.366667pt;}
.y33{bottom:348.622667pt;}
.y2c2{bottom:349.529333pt;}
.ycd{bottom:351.105333pt;}
.y7{bottom:351.496000pt;}
.y1da{bottom:352.108864pt;}
.y136{bottom:352.154667pt;}
.yff{bottom:354.184000pt;}
.y175{bottom:356.562667pt;}
.y28e{bottom:359.932000pt;}
.y166{bottom:359.975643pt;}
.y24d{bottom:360.746667pt;}
.ya0{bottom:361.481333pt;}
.y260{bottom:362.101333pt;}
.y207{bottom:362.952000pt;}
.y11e{bottom:363.055125pt;}
.y67{bottom:363.456000pt;}
.y2c1{bottom:366.552000pt;}
.y226{bottom:366.936000pt;}
.y1af{bottom:367.193333pt;}
.y135{bottom:370.725333pt;}
.y1d9{bottom:370.828896pt;}
.y32{bottom:371.178667pt;}
.y6{bottom:372.710667pt;}
.yfe{bottom:372.754667pt;}
.yca{bottom:373.448000pt;}
.y1c3{bottom:374.175349pt;}
.y174{bottom:375.133333pt;}
.y28d{bottom:376.954667pt;}
.y9f{bottom:377.422667pt;}
.y9e{bottom:377.810667pt;}
.y165{bottom:378.615515pt;}
.y24c{bottom:379.316000pt;}
.y25f{bottom:380.672000pt;}
.yc9{bottom:381.418667pt;}
.y206{bottom:381.521333pt;}
.y11d{bottom:381.694997pt;}
.y66{bottom:382.026667pt;}
.y2c0{bottom:383.574667pt;}
.y225{bottom:385.506667pt;}
.y1ae{bottom:385.764000pt;}
.y5{bottom:388.610667pt;}
.y134{bottom:389.294667pt;}
.yfd{bottom:391.325333pt;}
.y1c2{bottom:392.815221pt;}
.y173{bottom:393.704000pt;}
.y28c{bottom:393.977333pt;}
.y19e{bottom:395.238432pt;}
.y164{bottom:397.335547pt;}
.y24b{bottom:397.886667pt;}
.y25e{bottom:399.241333pt;}
.y205{bottom:400.092000pt;}
.y11c{bottom:400.334869pt;}
.y65{bottom:400.597333pt;}
.y224{bottom:404.077333pt;}
.y1ad{bottom:404.333333pt;}
.y4{bottom:404.510667pt;}
.yfc{bottom:409.896000pt;}
.y28b{bottom:411.000000pt;}
.y1c1{bottom:411.455093pt;}
.y133{bottom:411.850667pt;}
.y172{bottom:412.273333pt;}
.y19d{bottom:413.958464pt;}
.y1d4{bottom:414.681333pt;}
.y9d{bottom:415.704000pt;}
.y163{bottom:415.975419pt;}
.y2bf{bottom:417.620000pt;}
.y25d{bottom:417.812000pt;}
.y204{bottom:418.662667pt;}
.y11b{bottom:419.054901pt;}
.y64{bottom:419.166667pt;}
.y3{bottom:420.412000pt;}
.y24a{bottom:420.442667pt;}
.y1d7{bottom:420.748520pt;}
.yc8{bottom:421.081333pt;}
.y223{bottom:422.646667pt;}
.y1ac{bottom:422.904000pt;}
.y28a{bottom:428.022667pt;}
.yfb{bottom:428.465333pt;}
.y1d6{bottom:429.308400pt;}
.y1c0{bottom:430.175125pt;}
.y171{bottom:430.844000pt;}
.y9c{bottom:431.645333pt;}
.y19c{bottom:432.598336pt;}
.y1d3{bottom:433.252000pt;}
.y162{bottom:434.615291pt;}
.y2be{bottom:434.642667pt;}
.y203{bottom:437.232000pt;}
.y11a{bottom:437.694773pt;}
.y63{bottom:437.737333pt;}
.y25c{bottom:440.368000pt;}
.y222{bottom:441.217333pt;}
.y1ab{bottom:441.474667pt;}
.y31{bottom:441.589333pt;}
.y2{bottom:441.625333pt;}
.y289{bottom:445.045333pt;}
.y132{bottom:446.361333pt;}
.yfa{bottom:447.036000pt;}
.y9b{bottom:447.585333pt;}
.y1bf{bottom:448.814997pt;}
.y170{bottom:449.414667pt;}
.y19b{bottom:451.238208pt;}
.y2bd{bottom:451.665333pt;}
.y1d2{bottom:451.822667pt;}
.y161{bottom:453.335323pt;}
.yc7{bottom:454.062667pt;}
.y249{bottom:454.953333pt;}
.y97{bottom:456.146667pt;}
.y62{bottom:456.308000pt;}
.y119{bottom:456.334645pt;}
.y1{bottom:457.525333pt;}
.y202{bottom:459.788000pt;}
.y1aa{bottom:460.045333pt;}
.y30{bottom:460.158667pt;}
.y288{bottom:462.068000pt;}
.y9a{bottom:463.525333pt;}
.y131{bottom:464.930667pt;}
.yf9{bottom:465.606667pt;}
.y1be{bottom:467.454869pt;}
.y16f{bottom:467.984000pt;}
.y2bc{bottom:468.688000pt;}
.y19a{bottom:469.958240pt;}
.y160{bottom:471.975195pt;}
.yc6{bottom:472.633333pt;}
.y248{bottom:473.522667pt;}
.y61{bottom:474.877333pt;}
.y118{bottom:475.054677pt;}
.y221{bottom:478.357333pt;}
.y1a9{bottom:478.614667pt;}
.y287{bottom:479.090667pt;}
.y99{bottom:479.465333pt;}
.y1d1{bottom:483.492000pt;}
.y130{bottom:483.501333pt;}
.yf8{bottom:484.176000pt;}
.y2bb{bottom:485.710667pt;}
.y1bd{bottom:486.174901pt;}
.y16e{bottom:486.554667pt;}
.y199{bottom:488.598112pt;}
.y15f{bottom:490.615067pt;}
.yc5{bottom:491.202667pt;}
.y247{bottom:492.093333pt;}
.y60{bottom:493.448000pt;}
.y117{bottom:493.694549pt;}
.y2f{bottom:494.669333pt;}
.y98{bottom:495.405333pt;}
.y286{bottom:496.113333pt;}
.y1a8{bottom:497.185333pt;}
.y220{bottom:500.913333pt;}
.y12f{bottom:502.072000pt;}
.y2ba{bottom:502.733333pt;}
.yf7{bottom:502.746667pt;}
.y1b0{bottom:503.428000pt;}
.y1bc{bottom:504.814773pt;}
.y16d{bottom:505.125333pt;}
.y198{bottom:507.237984pt;}
.yc4{bottom:509.773333pt;}
.y246{bottom:510.664000pt;}
.y5f{bottom:512.018667pt;}
.y116{bottom:512.334421pt;}
.y285{bottom:513.137333pt;}
.y2e{bottom:513.240000pt;}
.y1a7{bottom:515.756000pt;}
.y96{bottom:517.748000pt;}
.y2b9{bottom:519.756000pt;}
.y12e{bottom:520.641333pt;}
.y1bb{bottom:523.454645pt;}
.y95{bottom:524.578667pt;}
.y15e{bottom:524.935067pt;}
.yf6{bottom:525.301333pt;}
.y197{bottom:525.958016pt;}
.yc3{bottom:528.344000pt;}
.y245{bottom:529.233333pt;}
.y284{bottom:530.160000pt;}
.y5e{bottom:530.589333pt;}
.y115{bottom:531.054453pt;}
.y2d{bottom:531.810667pt;}
.y21f{bottom:532.329333pt;}
.y1a6{bottom:534.325333pt;}
.y2b8{bottom:536.778667pt;}
.y16c{bottom:536.794667pt;}
.y12d{bottom:539.212000pt;}
.y1ba{bottom:542.174677pt;}
.y196{bottom:544.597888pt;}
.yc2{bottom:546.913333pt;}
.y283{bottom:547.182667pt;}
.y244{bottom:547.804000pt;}
.y15d{bottom:547.895667pt;}
.y5d{bottom:549.158667pt;}
.y114{bottom:549.694325pt;}
.y2c{bottom:550.380000pt;}
.y21e{bottom:550.898667pt;}
.y1a5{bottom:552.896000pt;}
.y2b7{bottom:553.801333pt;}
.y94{bottom:556.030667pt;}
.yf5{bottom:556.717333pt;}
.y153{bottom:556.730667pt;}
.y12c{bottom:557.782667pt;}
.y1b9{bottom:560.814549pt;}
.y195{bottom:563.237760pt;}
.y282{bottom:564.205333pt;}
.yc1{bottom:565.484000pt;}
.y243{bottom:566.374667pt;}
.y5c{bottom:567.729333pt;}
.y113{bottom:568.334197pt;}
.y2b{bottom:568.950667pt;}
.y21d{bottom:569.469333pt;}
.y2b6{bottom:570.824000pt;}
.yf4{bottom:575.288000pt;}
.y1b8{bottom:579.454421pt;}
.y281{bottom:581.228000pt;}
.y194{bottom:581.957792pt;}
.y1a4{bottom:583.453333pt;}
.yc0{bottom:584.054667pt;}
.y242{bottom:584.944000pt;}
.y93{bottom:585.066667pt;}
.y5b{bottom:586.300000pt;}
.y112{bottom:587.054229pt;}
.y2a{bottom:587.521333pt;}
.y2b5{bottom:587.846667pt;}
.y21c{bottom:588.040000pt;}
.y12b{bottom:589.452000pt;}
.yf3{bottom:593.857333pt;}
.y1b7{bottom:598.174453pt;}
.y280{bottom:598.250667pt;}
.y193{bottom:600.597664pt;}
.ybf{bottom:602.625333pt;}
.y184{bottom:603.390667pt;}
.y241{bottom:603.514667pt;}
.y5a{bottom:604.869333pt;}
.y29{bottom:606.090667pt;}
.y21b{bottom:606.609333pt;}
.y10e{bottom:609.388000pt;}
.y1b6{bottom:616.814325pt;}
.y92{bottom:618.048000pt;}
.y192{bottom:619.237536pt;}
.y27f{bottom:619.258667pt;}
.ybe{bottom:621.194667pt;}
.y2b4{bottom:621.892000pt;}
.y240{bottom:622.085333pt;}
.y59{bottom:623.440000pt;}
.y28{bottom:624.661333pt;}
.y21a{bottom:625.180000pt;}
.yf2{bottom:631.365333pt;}
.y1b5{bottom:635.454197pt;}
.y91{bottom:636.618667pt;}
.y110{bottom:636.973853pt;}
.y191{bottom:637.957568pt;}
.y2b3{bottom:638.914667pt;}
.ybd{bottom:639.765333pt;}
.y23f{bottom:640.654667pt;}
.y58{bottom:642.010667pt;}
.y27{bottom:643.232000pt;}
.y219{bottom:643.750667pt;}
.y10f{bottom:645.533733pt;}
.yf1{bottom:651.170667pt;}
.y27e{bottom:653.768000pt;}
.y1b4{bottom:654.174229pt;}
.y90{bottom:655.188000pt;}
.y2b2{bottom:655.937333pt;}
.y190{bottom:656.597440pt;}
.ybc{bottom:658.336000pt;}
.y23e{bottom:659.225333pt;}
.y57{bottom:660.580000pt;}
.y26{bottom:661.801333pt;}
.y218{bottom:662.320000pt;}
.y2b1{bottom:672.961333pt;}
.yf0{bottom:673.512000pt;}
.y8f{bottom:673.758667pt;}
.y18f{bottom:675.237312pt;}
.ybb{bottom:676.905333pt;}
.y23d{bottom:677.796000pt;}
.y27d{bottom:679.070667pt;}
.y56{bottom:679.150667pt;}
.y25{bottom:680.372000pt;}
.y217{bottom:680.890667pt;}
.y2b0{bottom:689.984000pt;}
.y8e{bottom:692.329333pt;}
.y18e{bottom:693.957344pt;}
.yba{bottom:695.476000pt;}
.yef{bottom:695.854667pt;}
.y23c{bottom:696.365333pt;}
.y55{bottom:697.721333pt;}
.y24{bottom:698.942667pt;}
.y216{bottom:699.461333pt;}
.y1b2{bottom:704.093853pt;}
.y27c{bottom:704.373333pt;}
.y2af{bottom:707.006667pt;}
.yea{bottom:708.273333pt;}
.y8d{bottom:710.900000pt;}
.y18d{bottom:712.597216pt;}
.y1b1{bottom:712.653733pt;}
.yb9{bottom:714.046667pt;}
.y23b{bottom:714.936000pt;}
.y54{bottom:716.290667pt;}
.y23{bottom:717.513333pt;}
.yee{bottom:718.197333pt;}
.y27b{bottom:721.705333pt;}
.y215{bottom:722.016000pt;}
.y2ae{bottom:724.029333pt;}
.ye9{bottom:724.213333pt;}
.y8c{bottom:729.469333pt;}
.y15c{bottom:730.135419pt;}
.y18c{bottom:731.237088pt;}
.yb8{bottom:732.616000pt;}
.y23a{bottom:733.506667pt;}
.y53{bottom:734.861333pt;}
.y22{bottom:736.082667pt;}
.yed{bottom:740.540000pt;}
.y2ad{bottom:741.052000pt;}
.y27a{bottom:747.008000pt;}
.yec{bottom:748.509333pt;}
.y15b{bottom:748.775291pt;}
.y18b{bottom:749.957120pt;}
.yb7{bottom:751.186667pt;}
.y8b{bottom:752.025333pt;}
.y239{bottom:752.077333pt;}
.y52{bottom:753.432000pt;}
.y21{bottom:754.653333pt;}
.y2ac{bottom:758.074667pt;}
.y15a{bottom:767.415163pt;}
.y18a{bottom:768.596992pt;}
.yb6{bottom:769.757333pt;}
.y238{bottom:770.646667pt;}
.y51{bottom:772.002667pt;}
.y279{bottom:772.310667pt;}
.y2ab{bottom:775.097333pt;}
.yeb{bottom:778.822667pt;}
.y8a{bottom:783.440000pt;}
.y159{bottom:786.135195pt;}
.y189{bottom:787.236864pt;}
.yb5{bottom:788.326667pt;}
.y237{bottom:789.217333pt;}
.y278{bottom:789.642667pt;}
.y20{bottom:789.694667pt;}
.y50{bottom:790.572000pt;}
.y2aa{bottom:792.120000pt;}
.ye8{bottom:801.164000pt;}
.y89{bottom:802.010667pt;}
.y158{bottom:804.775067pt;}
.y188{bottom:805.956896pt;}
.y201{bottom:806.897333pt;}
.y277{bottom:806.974667pt;}
.y236{bottom:807.788000pt;}
.y1f{bottom:807.898667pt;}
.ye7{bottom:809.134667pt;}
.y4f{bottom:809.142667pt;}
.yb4{bottom:810.882667pt;}
.y88{bottom:820.581333pt;}
.y1e{bottom:822.244000pt;}
.y276{bottom:824.306667pt;}
.y2a9{bottom:826.165333pt;}
.y4e{bottom:827.713333pt;}
.y157{bottom:828.215067pt;}
.y200{bottom:829.453333pt;}
.y235{bottom:830.342667pt;}
.y1d{bottom:832.733333pt;}
.y87{bottom:839.150667pt;}
.ye6{bottom:839.446667pt;}
.yb3{bottom:842.297333pt;}
.y2a8{bottom:843.188000pt;}
.y4d{bottom:846.282667pt;}
.y275{bottom:849.609333pt;}
.y1c{bottom:850.937333pt;}
.y186{bottom:855.876520pt;}
.y86{bottom:857.721333pt;}
.y2a7{bottom:860.210667pt;}
.yb2{bottom:860.868000pt;}
.ye5{bottom:861.789333pt;}
.y185{bottom:864.436400pt;}
.y4c{bottom:864.853333pt;}
.ye0{bottom:866.237333pt;}
.y2d3{bottom:873.029333pt;}
.y274{bottom:874.912000pt;}
.y85{bottom:876.292000pt;}
.y2a6{bottom:877.233333pt;}
.yb1{bottom:879.438667pt;}
.y155{bottom:880.295187pt;}
.ydf{bottom:882.177333pt;}
.y4b{bottom:883.424000pt;}
.ye4{bottom:884.132000pt;}
.y154{bottom:888.855067pt;}
.y2d2{bottom:890.052000pt;}
.y1b{bottom:890.117333pt;}
.y273{bottom:892.244000pt;}
.y2a5{bottom:894.256000pt;}
.y84{bottom:894.861333pt;}
.yb0{bottom:898.009333pt;}
.y4a{bottom:901.993333pt;}
.ye3{bottom:906.473333pt;}
.y2d1{bottom:907.074667pt;}
.y272{bottom:909.576000pt;}
.y2a4{bottom:911.278667pt;}
.y83{bottom:913.432000pt;}
.y1ff{bottom:916.578667pt;}
.y49{bottom:920.564000pt;}
.y1a{bottom:924.628000pt;}
.y271{bottom:926.908000pt;}
.y2a3{bottom:928.301333pt;}
.ye2{bottom:928.816000pt;}
.y82{bottom:932.002667pt;}
.y1fe{bottom:935.149333pt;}
.ye1{bottom:936.786667pt;}
.y48{bottom:939.134667pt;}
.y270{bottom:944.240000pt;}
.y2a2{bottom:945.324000pt;}
.y81{bottom:950.572000pt;}
.y19{bottom:952.482667pt;}
.y1fd{bottom:953.720000pt;}
.y47{bottom:957.704000pt;}
.y26f{bottom:961.572000pt;}
.y2a1{bottom:962.346667pt;}
.yde{bottom:967.098667pt;}
.y80{bottom:969.142667pt;}
.y1fc{bottom:972.289333pt;}
.ydd{bottom:975.069333pt;}
.y46{bottom:976.274667pt;}
.y2a0{bottom:979.369333pt;}
.y18{bottom:980.338667pt;}
.y1fb{bottom:990.860000pt;}
.y7f{bottom:991.698667pt;}
.y45{bottom:994.845333pt;}
.y29f{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.ydc{bottom:1014.732000pt;}
.y43{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h12{height:35.100467pt;}
.hf{height:36.873667pt;}
.hb{height:38.256384pt;}
.h7{height:38.596538pt;}
.h1d{height:38.775312pt;}
.h3{height:39.000258pt;}
.h14{height:39.359687pt;}
.ha{height:43.421286pt;}
.h1e{height:43.660390pt;}
.h16{height:44.390625pt;}
.h9{height:45.907968pt;}
.h18{height:47.125000pt;}
.h8{height:48.245551pt;}
.h5{height:48.360277pt;}
.h15{height:49.421563pt;}
.h4{height:68.861952pt;}
.h10{height:70.133717pt;}
.h11{height:80.122884pt;}
.he{height:80.128218pt;}
.hc{height:84.682884pt;}
.hd{height:110.453551pt;}
.h17{height:163.522667pt;}
.h1c{height:240.290667pt;}
.h19{height:305.678667pt;}
.h13{height:308.732000pt;}
.h1b{height:358.981333pt;}
.h1a{height:375.013333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:264.145333pt;}
.w2{width:337.512000pt;}
.w6{width:384.000000pt;}
.w5{width:384.169333pt;}
.w3{width:511.498667pt;}
.w4{width:511.936000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x26{left:-174.826667pt;}
.x35{left:-173.672000pt;}
.x2a{left:-172.210667pt;}
.x38{left:-170.762667pt;}
.x27{left:-0.986347pt;}
.x0{left:0.000000pt;}
.x2b{left:1.629333pt;}
.x39{left:3.076365pt;}
.x28{left:27.334181pt;}
.x36{left:28.488848pt;}
.x2c{left:29.949333pt;}
.x3a{left:31.397606pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x20{left:56.880000pt;}
.x24{left:62.061333pt;}
.x1c{left:63.296000pt;}
.x1d{left:66.490667pt;}
.x19{left:72.282667pt;}
.x25{left:75.218667pt;}
.x16{left:77.084000pt;}
.x18{left:78.930667pt;}
.x21{left:203.933333pt;}
.x1a{left:207.254667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x13{left:234.390667pt;}
.x4{left:239.924000pt;}
.xd{left:241.292000pt;}
.x15{left:249.233333pt;}
.x6{left:250.204000pt;}
.x7{left:251.944000pt;}
.x8{left:261.881333pt;}
.x3b{left:265.396740pt;}
.x10{left:266.324000pt;}
.x34{left:267.482667pt;}
.xb{left:275.038667pt;}
.x9{left:277.416000pt;}
.x1e{left:279.830667pt;}
.x3c{left:311.598667pt;}
.x29{left:337.013637pt;}
.xe{left:368.014667pt;}
.xf{left:371.129333pt;}
.x11{left:379.557333pt;}
.x12{left:383.496000pt;}
.x37{left:388.169440pt;}
.x14{left:394.122667pt;}
.xa{left:395.730667pt;}
.xc{left:401.694667pt;}
.x22{left:412.357333pt;}
.x1b{left:420.300000pt;}
.x1f{left:428.522667pt;}
.x23{left:433.457333pt;}
.x30{left:446.618667pt;}
.x31{left:460.864000pt;}
.x2f{left:511.295132pt;}
.x2d{left:514.347132pt;}
.x2e{left:518.027678pt;}
.x3d{left:605.142667pt;}
.x3e{left:615.738667pt;}
.x32{left:620.972000pt;}
.x33{left:668.088000pt;}
.x17{left:682.424000pt;}
}




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