
    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_4d98b624dc86badf415efaa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_276aec640f9894a9cd39c682.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b4af1b5550e76efb8f31c916.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d011e25610ef25f5f94ab12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_4cd4d207eb2c5b38fa6fb083.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_e32e27f0bbbff9c67bea299c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.151000;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_67081e1261f45cfac405d581.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_454cde23ccaa93f41b683dc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_957589ad2a716e89e05b113d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003418;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_9b0e49fc332be68b799762ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.174316;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_3dedfabb2adf0ed3d55637ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.174316;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_f4b687c094554c4ca8887cc2.woff2')format("woff");}.fff{font-family:fff;line-height:1.057617;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_d10b98a9a4a382d370c2a37a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1e45a89e6a32ef6a56b8a545.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_446dd45c46567557bae78649.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.014160;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_c4b83b93992a9be6b5a0ad9a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003418;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_47523a3c967b856883e83a25.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.174316;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_3dedfabb2adf0ed3d55637ac.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.174316;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_f4b687c094554c4ca8887cc2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.057617;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_26e7b822635aec5e4bc121af.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.014160;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_a0dcf91089b1ce8a0cd6f033.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003418;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_5c56094f880f054ba3fb80d5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.174316;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_0dc2d8f05350d1a395493a18.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.174316;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_bc594c0c9722ad392e3cb9c2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.057617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.m27{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);}
.m23{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);}
.m5{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);}
.m8{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);}
.m15{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);}
.m3{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);}
.mc{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);}
.me{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);}
.m21{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);}
.m14{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);}
.md{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);}
.m6{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);}
.m16{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);}
.m1e{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);}
.m1a{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);}
.m22{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);}
.m28{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);}
.m11{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);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1f{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);}
.m17{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);}
.m1d{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);}
.ma{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);}
.m19{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);}
.m1b{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);}
.m18{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);}
.m13{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);}
.m20{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);}
.mb{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);}
.m25{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);}
.m12{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m24{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);}
.m26{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);}
.m7{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);}
.m2{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;}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls19{letter-spacing:-1.608000px;}
.ls17{letter-spacing:-1.440000px;}
.ls2b{letter-spacing:-1.422000px;}
.ls23{letter-spacing:-0.507000px;}
.ls24{letter-spacing:-0.486600px;}
.ls15{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.025920px;}
.ls9{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000676px;}
.ls3c{letter-spacing:0.000800px;}
.ls39{letter-spacing:0.000959px;}
.ls33{letter-spacing:0.001036px;}
.ls3a{letter-spacing:0.001102px;}
.ls3d{letter-spacing:0.001155px;}
.ls2e{letter-spacing:0.001298px;}
.ls43{letter-spacing:0.001584px;}
.ls1{letter-spacing:0.002725px;}
.ls40{letter-spacing:0.002841px;}
.ls44{letter-spacing:0.003646px;}
.ls34{letter-spacing:0.004754px;}
.ls4d{letter-spacing:0.004800px;}
.ls18{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.313800px;}
.ls1a{letter-spacing:0.486600px;}
.ls26{letter-spacing:0.498240px;}
.lse{letter-spacing:0.607680px;}
.lsd{letter-spacing:0.627840px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls25{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.989200px;}
.ls2f{letter-spacing:3.553200px;}
.ls31{letter-spacing:3.559200px;}
.lsf{letter-spacing:3.600000px;}
.ls4{letter-spacing:10.461300px;}
.ls14{letter-spacing:11.949746px;}
.ls8{letter-spacing:11.954850px;}
.ls29{letter-spacing:11.955746px;}
.ls21{letter-spacing:11.963574px;}
.ls22{letter-spacing:11.964299px;}
.ls3f{letter-spacing:12.270808px;}
.ls2c{letter-spacing:12.373549px;}
.ls35{letter-spacing:13.261991px;}
.ls41{letter-spacing:13.410101px;}
.ls36{letter-spacing:13.448400px;}
.ls38{letter-spacing:13.454400px;}
.ls45{letter-spacing:13.490280px;}
.ls49{letter-spacing:13.497459px;}
.ls3b{letter-spacing:13.601760px;}
.ls3e{letter-spacing:13.608034px;}
.ls37{letter-spacing:13.638905px;}
.ls1f{letter-spacing:14.094088px;}
.ls20{letter-spacing:14.100088px;}
.ls1d{letter-spacing:14.336094px;}
.ls48{letter-spacing:14.903341px;}
.ls2{letter-spacing:14.945108px;}
.ls1b{letter-spacing:15.063451px;}
.ls2a{letter-spacing:15.183002px;}
.ls2d{letter-spacing:15.362329px;}
.ls46{letter-spacing:16.676400px;}
.ls4c{letter-spacing:16.919352px;}
.ls47{letter-spacing:17.868047px;}
.ls30{letter-spacing:17.872427px;}
.ls32{letter-spacing:17.958141px;}
.ls4b{letter-spacing:17.973929px;}
.lsb{letter-spacing:21.691394px;}
.ls4a{letter-spacing:27.838635px;}
.ls6{letter-spacing:62.695200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls11{letter-spacing:162.852600px;}
.ls1e{letter-spacing:169.900090px;}
.ls10{letter-spacing:213.214090px;}
.ls13{letter-spacing:234.820090px;}
.ls12{letter-spacing:290.580600px;}
.ls27{letter-spacing:387.172090px;}
.ls28{letter-spacing:444.810600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5f{word-spacing:-60.480000px;}
.ws62{word-spacing:-54.720000px;}
.ws64{word-spacing:-15.606600px;}
.ws60{word-spacing:-15.140160px;}
.ws5e{word-spacing:-15.120000px;}
.ws46{word-spacing:-14.943900px;}
.ws76{word-spacing:-14.633400px;}
.ws74{word-spacing:-14.613000px;}
.ws77{word-spacing:-13.993800px;}
.ws83{word-spacing:-13.698000px;}
.ws61{word-spacing:-13.680000px;}
.wsdb{word-spacing:-13.449600px;}
.ws63{word-spacing:-12.072000px;}
.ws3e{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws11{word-spacing:-10.460700px;}
.ws75{word-spacing:-9.000000px;}
.ws65{word-spacing:-8.280000px;}
.ws5c{word-spacing:-3.108331px;}
.ws5d{word-spacing:-3.048556px;}
.wse{word-spacing:-2.887153px;}
.ws8d{word-spacing:-2.869229px;}
.wsf6{word-spacing:-2.689920px;}
.wsbd{word-spacing:-2.630126px;}
.wsa3{word-spacing:-2.570351px;}
.wsd6{word-spacing:-2.528525px;}
.wsa0{word-spacing:-2.450800px;}
.wsa1{word-spacing:-2.391024px;}
.wsa4{word-spacing:-2.331248px;}
.ws9f{word-spacing:-2.271473px;}
.ws55{word-spacing:-2.211697px;}
.ws5b{word-spacing:-2.092146px;}
.wsbc{word-spacing:-2.057161px;}
.wsf5{word-spacing:-2.044339px;}
.wsb9{word-spacing:-2.032370px;}
.wsd4{word-spacing:-1.990541px;}
.ws9{word-spacing:-1.908367px;}
.ws56{word-spacing:-1.793268px;}
.ws9c{word-spacing:-1.733492px;}
.wsc{word-spacing:-1.726244px;}
.wsce{word-spacing:-1.613952px;}
.wsbe{word-spacing:-1.613941px;}
.wsf0{word-spacing:-1.560154px;}
.wsd5{word-spacing:-1.506355px;}
.wsab{word-spacing:-1.434614px;}
.wsb4{word-spacing:-1.390576px;}
.wsb5{word-spacing:-1.374839px;}
.wscf{word-spacing:-1.344960px;}
.ws8{word-spacing:-1.322630px;}
.wsf2{word-spacing:-1.183565px;}
.wsae{word-spacing:-1.107472px;}
.wsac{word-spacing:-1.075961px;}
.wsad{word-spacing:-1.065376px;}
.ws22{word-spacing:-1.022170px;}
.ws89{word-spacing:-0.660697px;}
.ws8a{word-spacing:-0.659514px;}
.ws8b{word-spacing:-0.657532px;}
.wsa2{word-spacing:-0.597756px;}
.ws69{word-spacing:-0.376589px;}
.wsd{word-spacing:-0.376585px;}
.ws45{word-spacing:-0.358654px;}
.wsc6{word-spacing:-0.329483px;}
.wsc5{word-spacing:-0.324411px;}
.ws21{word-spacing:-0.322790px;}
.ws3f{word-spacing:-0.298878px;}
.ws7d{word-spacing:-0.268992px;}
.ws42{word-spacing:-0.239102px;}
.ws86{word-spacing:-0.215194px;}
.ws71{word-spacing:-0.191282px;}
.wsb6{word-spacing:-0.180871px;}
.ws3c{word-spacing:-0.179327px;}
.wsd7{word-spacing:-0.161395px;}
.wscc{word-spacing:-0.121166px;}
.ws34{word-spacing:-0.119551px;}
.wsd1{word-spacing:-0.107597px;}
.wscd{word-spacing:-0.105977px;}
.ws93{word-spacing:-0.095641px;}
.ws10f{word-spacing:-0.070109px;}
.ws2b{word-spacing:-0.064581px;}
.ws7{word-spacing:-0.059776px;}
.ws2a{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws85{word-spacing:-0.041282px;}
.ws31{word-spacing:-0.010176px;}
.ws100{word-spacing:-0.009398px;}
.ws2{word-spacing:-0.006000px;}
.wsfd{word-spacing:-0.005933px;}
.ws5{word-spacing:-0.005916px;}
.wsef{word-spacing:-0.004800px;}
.ws3d{word-spacing:-0.004690px;}
.wsec{word-spacing:-0.004666px;}
.ws6e{word-spacing:-0.004224px;}
.ws6d{word-spacing:-0.003763px;}
.wsf8{word-spacing:-0.003688px;}
.wsc9{word-spacing:-0.003563px;}
.ws10{word-spacing:-0.003448px;}
.wsda{word-spacing:-0.003158px;}
.ws6a{word-spacing:-0.002909px;}
.ws102{word-spacing:-0.002794px;}
.ws73{word-spacing:-0.002586px;}
.ws9d{word-spacing:-0.002434px;}
.ws52{word-spacing:-0.002184px;}
.ws10a{word-spacing:-0.001210px;}
.wsf4{word-spacing:-0.001075px;}
.wsb{word-spacing:-0.000194px;}
.ws9e{word-spacing:-0.000014px;}
.ws0{word-spacing:0.000000px;}
.wse7{word-spacing:0.000067px;}
.ws10e{word-spacing:0.000182px;}
.wse0{word-spacing:0.001670px;}
.ws101{word-spacing:0.001709px;}
.ws6c{word-spacing:0.001776px;}
.ws8f{word-spacing:0.002237px;}
.ws109{word-spacing:0.036792px;}
.ws1e{word-spacing:0.053798px;}
.ws38{word-spacing:0.059776px;}
.wsc4{word-spacing:0.070510px;}
.ws25{word-spacing:0.102900px;}
.ws24{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws92{word-spacing:0.143462px;}
.wscb{word-spacing:0.146826px;}
.ws23{word-spacing:0.161395px;}
.wsbb{word-spacing:0.166006px;}
.ws37{word-spacing:0.179327px;}
.ws9b{word-spacing:0.185306px;}
.ws12{word-spacing:0.209214px;}
.ws20{word-spacing:0.215194px;}
.ws72{word-spacing:0.224279px;}
.ws41{word-spacing:0.239102px;}
.wsb2{word-spacing:0.265414px;}
.ws29{word-spacing:0.268992px;}
.wsb3{word-spacing:0.274377px;}
.ws14{word-spacing:0.292900px;}
.ws40{word-spacing:0.298878px;}
.wsa7{word-spacing:0.358654px;}
.ws68{word-spacing:0.366912px;}
.wsb8{word-spacing:0.372953px;}
.ws84{word-spacing:0.375241px;}
.ws67{word-spacing:0.376589px;}
.wsfb{word-spacing:0.384921px;}
.ws39{word-spacing:0.418429px;}
.wsfc{word-spacing:0.430387px;}
.wsa5{word-spacing:0.478205px;}
.ws8c{word-spacing:0.537980px;}
.wsfa{word-spacing:0.591782px;}
.ws82{word-spacing:0.597756px;}
.ws66{word-spacing:0.645581px;}
.ws7e{word-spacing:0.655747px;}
.ws81{word-spacing:0.657532px;}
.wsd3{word-spacing:0.699379px;}
.wsd0{word-spacing:0.806976px;}
.ws33{word-spacing:0.836858px;}
.ws7a{word-spacing:0.860774px;}
.ws7b{word-spacing:0.882212px;}
.wsa9{word-spacing:0.896634px;}
.ws7c{word-spacing:0.914573px;}
.wsbf{word-spacing:0.956410px;}
.wse9{word-spacing:1.022170px;}
.ws79{word-spacing:1.075968px;}
.ws104{word-spacing:1.082616px;}
.ws103{word-spacing:1.129766px;}
.ws5a{word-spacing:1.135736px;}
.ws8e{word-spacing:1.255288px;}
.ws91{word-spacing:1.291156px;}
.ws27{word-spacing:1.291162px;}
.ws78{word-spacing:1.344960px;}
.ws4e{word-spacing:1.374839px;}
.ws53{word-spacing:1.434614px;}
.ws106{word-spacing:1.452557px;}
.ws44{word-spacing:1.494390px;}
.ws26{word-spacing:1.506355px;}
.ws2f{word-spacing:1.522298px;}
.ws59{word-spacing:1.613941px;}
.wse8{word-spacing:1.613952px;}
.ws28{word-spacing:1.667750px;}
.wsaf{word-spacing:1.673717px;}
.wsed{word-spacing:1.721549px;}
.ws2e{word-spacing:1.829146px;}
.ws43{word-spacing:1.972595px;}
.ws13{word-spacing:2.008454px;}
.wsfe{word-spacing:2.098138px;}
.ws87{word-spacing:2.151922px;}
.wsee{word-spacing:2.259533px;}
.ws94{word-spacing:2.391024px;}
.wsf{word-spacing:2.528179px;}
.wse5{word-spacing:2.528525px;}
.ws96{word-spacing:2.689902px;}
.ws30{word-spacing:2.743718px;}
.ws95{word-spacing:2.749678px;}
.ws3a{word-spacing:2.809453px;}
.wsc7{word-spacing:2.869229px;}
.ws1d{word-spacing:2.869236px;}
.wsc8{word-spacing:2.929004px;}
.ws58{word-spacing:2.988780px;}
.wsf1{word-spacing:3.012710px;}
.wsf3{word-spacing:3.066509px;}
.ws50{word-spacing:3.075367px;}
.ws51{word-spacing:3.108331px;}
.wsaa{word-spacing:3.168107px;}
.wse6{word-spacing:3.174106px;}
.wseb{word-spacing:3.222259px;}
.wse4{word-spacing:3.222960px;}
.wsff{word-spacing:3.223584px;}
.ws10b{word-spacing:3.224362px;}
.wsdf{word-spacing:3.225206px;}
.wsf7{word-spacing:3.225437px;}
.ws98{word-spacing:3.227882px;}
.wsd9{word-spacing:3.227904px;}
.ws10c{word-spacing:3.229584px;}
.wse1{word-spacing:3.230333px;}
.wsf9{word-spacing:3.281702px;}
.wsdd{word-spacing:3.335501px;}
.wsea{word-spacing:3.389299px;}
.ws97{word-spacing:3.407209px;}
.ws1f{word-spacing:3.443098px;}
.wsdc{word-spacing:3.496896px;}
.ws107{word-spacing:3.550694px;}
.ws32{word-spacing:3.586536px;}
.wsd2{word-spacing:3.604493px;}
.wsb7{word-spacing:3.646312px;}
.ws36{word-spacing:3.825638px;}
.ws4c{word-spacing:3.871559px;}
.wsba{word-spacing:3.885414px;}
.wsde{word-spacing:4.250074px;}
.wsc3{word-spacing:4.363619px;}
.ws108{word-spacing:4.519066px;}
.ws4d{word-spacing:4.542946px;}
.ws3b{word-spacing:4.602721px;}
.ws4f{word-spacing:4.782048px;}
.ws4b{word-spacing:5.021150px;}
.ws4a{word-spacing:5.080926px;}
.wsd8{word-spacing:5.110848px;}
.ws80{word-spacing:5.116804px;}
.ws47{word-spacing:5.320028px;}
.ws48{word-spacing:5.344244px;}
.ws49{word-spacing:5.379804px;}
.ws88{word-spacing:5.559131px;}
.ws57{word-spacing:5.618906px;}
.wsc1{word-spacing:5.917784px;}
.ws1a{word-spacing:6.067206px;}
.wsa6{word-spacing:6.097111px;}
.ws1b{word-spacing:6.150892px;}
.ws4{word-spacing:6.455808px;}
.wsc0{word-spacing:6.515540px;}
.wsca{word-spacing:6.575316px;}
.ws54{word-spacing:6.694867px;}
.wsb0{word-spacing:6.754643px;}
.wse3{word-spacing:6.778598px;}
.ws2d{word-spacing:6.939994px;}
.ws105{word-spacing:7.017311px;}
.wsa8{word-spacing:7.053521px;}
.wsc2{word-spacing:7.651277px;}
.ws9a{word-spacing:7.770828px;}
.ws10d{word-spacing:7.962163px;}
.ws18{word-spacing:8.661460px;}
.ws2c{word-spacing:10.544486px;}
.wsb1{word-spacing:10.699832px;}
.ws6b{word-spacing:13.395802px;}
.ws99{word-spacing:13.808164px;}
.wsa{word-spacing:15.483541px;}
.ws15{word-spacing:16.142252px;}
.ws16{word-spacing:16.151321px;}
.ws17{word-spacing:17.699504px;}
.ws3{word-spacing:26.776762px;}
.ws1{word-spacing:26.781782px;}
.ws19{word-spacing:27.448877px;}
.wse2{word-spacing:48.418560px;}
.ws7f{word-spacing:184.943443px;}
.ws70{word-spacing:234.238234px;}
.ws6f{word-spacing:273.457267px;}
.ws90{word-spacing:382.237632px;}
._3a{margin-left:-8.032202px;}
._8{margin-left:-7.029628px;}
._1{margin-left:-5.917824px;}
._9{margin-left:-4.399495px;}
._6{margin-left:-3.030577px;}
._0{margin-left:-1.936742px;}
._4{width:1.091170px;}
._2{width:3.004270px;}
._19{width:4.174502px;}
._18{width:5.806315px;}
._17{width:7.045740px;}
._16{width:8.046252px;}
._31{width:9.486252px;}
._a{width:10.903097px;}
._5{width:12.971268px;}
._c{width:14.621191px;}
._b{width:16.462310px;}
._3b{width:17.490352px;}
._f{width:18.530436px;}
._10{width:19.570544px;}
._d{width:21.088973px;}
._14{width:23.133157px;}
._e{width:24.478272px;}
._3e{width:25.942610px;}
._38{width:27.018595px;}
._39{width:28.955314px;}
._30{width:30.557363px;}
._7{width:32.637384px;}
._13{width:35.088277px;}
._3{width:54.404810px;}
._45{width:61.868160px;}
._40{width:71.713267px;}
._44{width:88.767360px;}
._42{width:91.511078px;}
._3d{width:93.548814px;}
._3c{width:96.537594px;}
._3f{width:146.439245px;}
._1d{width:149.499900px;}
._27{width:152.357069px;}
._41{width:155.907763px;}
._2a{width:157.306522px;}
._24{width:185.745686px;}
._1b{width:192.167885px;}
._25{width:221.649408px;}
._2d{width:227.244442px;}
._2e{width:231.871104px;}
._29{width:235.801901px;}
._2b{width:243.061171px;}
._26{width:253.340256px;}
._2f{width:262.461485px;}
._1e{width:267.162854px;}
._28{width:269.960371px;}
._1c{width:273.876912px;}
._2c{width:277.025828px;}
._22{width:286.584077px;}
._32{width:303.639686px;}
._21{width:324.594356px;}
._1f{width:343.933171px;}
._20{width:365.506330px;}
._33{width:482.464051px;}
._34{width:513.344333px;}
._36{width:517.110221px;}
._35{width:532.604160px;}
._37{width:555.952666px;}
._1a{width:680.495962px;}
._23{width:827.096602px;}
._11{width:980.565585px;}
._15{width:2186.275568px;}
._43{width:2581.482737px;}
._12{width:2605.392737px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(135,50,39);}
.fse{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs11{font-size:47.337600px;}
.fsa{font-size:47.520000px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.720000px;}
.fs10{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.480000px;}
.fsf{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.yc8{bottom:-475.821150px;}
.yf7{bottom:-400.408500px;}
.y8f{bottom:-370.018350px;}
.ye3{bottom:-359.865150px;}
.y117{bottom:-325.168500px;}
.ye2{bottom:-322.062150px;}
.y116{bottom:-307.888500px;}
.yaf{bottom:-304.858350px;}
.y115{bottom:-290.572500px;}
.ye1{bottom:-286.062150px;}
.y114{bottom:-273.289500px;}
.ye0{bottom:-268.782150px;}
.yae{bottom:-268.462350px;}
.y113{bottom:-256.009500px;}
.ydf{bottom:-251.502150px;}
.yad{bottom:-251.182350px;}
.y112{bottom:-236.209500px;}
.yac{bottom:-233.899350px;}
.yde{bottom:-232.032150px;}
.yab{bottom:-216.619350px;}
.y111{bottom:-216.049500px;}
.ydd{bottom:-211.512150px;}
.yaa{bottom:-197.179350px;}
.y110{bottom:-195.889500px;}
.ydc{bottom:-190.272150px;}
.yda{bottom:-180.552150px;}
.yd9{bottom:-180.192150px;}
.ya9{bottom:-176.659350px;}
.y10f{bottom:-175.009500px;}
.y10e{bottom:-174.649500px;}
.ydb{bottom:-170.112150px;}
.ya8{bottom:-155.779350px;}
.ya7{bottom:-155.419350px;}
.y10d{bottom:-153.739500px;}
.y10c{bottom:-153.379500px;}
.yd8{bottom:-149.592150px;}
.yd7{bottom:-149.232150px;}
.ya6{bottom:-134.869350px;}
.ya5{bottom:-134.509350px;}
.y10b{bottom:-123.859500px;}
.yd6{bottom:-119.352150px;}
.ya4{bottom:-104.989350px;}
.y10a{bottom:-88.579500px;}
.yd5{bottom:-84.027150px;}
.y109{bottom:-71.299500px;}
.ya3{bottom:-69.349350px;}
.yd4{bottom:-66.747150px;}
.y108{bottom:-54.019500px;}
.ya2{bottom:-52.069350px;}
.yd3{bottom:-49.467150px;}
.y107{bottom:-36.739500px;}
.ya1{bottom:-34.789350px;}
.yd2{bottom:-32.187150px;}
.y106{bottom:-19.414500px;}
.ya0{bottom:-17.509350px;}
.yd1{bottom:-9.507150px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.425340px;}
.y105{bottom:3.625500px;}
.y9f{bottom:5.215650px;}
.ya{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y4a{bottom:31.890000px;}
.y137{bottom:88.993500px;}
.yc3{bottom:99.634500px;}
.y24{bottom:102.823500px;}
.y169{bottom:106.246500px;}
.y136{bottom:107.823000px;}
.y49{bottom:108.244500px;}
.y218{bottom:116.334000px;}
.yc2{bottom:118.464000px;}
.y23{bottom:120.711000px;}
.y1b3{bottom:121.744500px;}
.y188{bottom:122.386500px;}
.y168{bottom:125.076000px;}
.y135{bottom:126.652500px;}
.y48{bottom:127.074000px;}
.y80{bottom:128.196000px;}
.y217{bottom:133.594500px;}
.y1df{bottom:136.656000px;}
.yc1{bottom:137.293500px;}
.y22{bottom:138.600000px;}
.y1b2{bottom:140.574000px;}
.y167{bottom:143.905500px;}
.y134{bottom:145.482000px;}
.y187{bottom:145.699500px;}
.y47{bottom:145.903500px;}
.y7f{bottom:147.025500px;}
.y216{bottom:150.855000px;}
.y1de{bottom:154.230000px;}
.yc0{bottom:156.123000px;}
.y21{bottom:156.487500px;}
.y1b1{bottom:159.403500px;}
.y166{bottom:162.735000px;}
.y133{bottom:164.311500px;}
.y46{bottom:164.733000px;}
.y7e{bottom:165.855000px;}
.y215{bottom:168.115500px;}
.y1dd{bottom:171.804000px;}
.y20{bottom:174.375000px;}
.ybf{bottom:174.952500px;}
.y1b0{bottom:178.233000px;}
.y186{bottom:179.323500px;}
.y165{bottom:181.564500px;}
.y45{bottom:183.562500px;}
.y7d{bottom:184.684500px;}
.y214{bottom:185.376000px;}
.y1dc{bottom:189.378000px;}
.y1f{bottom:192.264000px;}
.y132{bottom:195.196500px;}
.y1af{bottom:197.062500px;}
.y185{bottom:198.153000px;}
.ybe{bottom:198.265500px;}
.y164{bottom:200.394000px;}
.y44{bottom:202.392000px;}
.y213{bottom:202.636500px;}
.y7c{bottom:203.514000px;}
.y131{bottom:209.394000px;}
.y1e{bottom:210.151500px;}
.y1ae{bottom:215.892000px;}
.y163{bottom:219.223500px;}
.y212{bottom:219.895500px;}
.y43{bottom:221.221500px;}
.y184{bottom:221.466000px;}
.y7b{bottom:222.343500px;}
.y12f{bottom:223.591500px;}
.y1db{bottom:225.231000px;}
.y130{bottom:227.931000px;}
.y1d{bottom:228.039000px;}
.ybd{bottom:232.786500px;}
.y1ad{bottom:234.721500px;}
.y211{bottom:237.156000px;}
.y12d{bottom:237.787500px;}
.y162{bottom:238.053000px;}
.y42{bottom:240.051000px;}
.y7a{bottom:241.173000px;}
.y12e{bottom:242.127000px;}
.ybb{bottom:246.982500px;}
.ybc{bottom:251.322000px;}
.y1ac{bottom:253.549500px;}
.y210{bottom:254.416500px;}
.y183{bottom:255.090000px;}
.y161{bottom:256.882500px;}
.y12c{bottom:258.535500px;}
.yf3{bottom:258.571500px;}
.y41{bottom:258.880500px;}
.y79{bottom:260.002500px;}
.yb9{bottom:261.180000px;}
.y1da{bottom:261.994500px;}
.yba{bottom:265.519500px;}
.y20f{bottom:271.677000px;}
.y1ab{bottom:272.379000px;}
.y182{bottom:273.919500px;}
.y12b{bottom:274.974000px;}
.y160{bottom:275.712000px;}
.yf2{bottom:277.401000px;}
.y40{bottom:277.710000px;}
.y78{bottom:278.832000px;}
.yb8{bottom:283.926000px;}
.y1d9{bottom:288.534000px;}
.y20e{bottom:288.937500px;}
.y1aa{bottom:291.208500px;}
.y12a{bottom:291.412500px;}
.y181{bottom:292.747500px;}
.y15f{bottom:294.541500px;}
.yf1{bottom:296.230500px;}
.y3f{bottom:296.539500px;}
.y77{bottom:297.661500px;}
.yb7{bottom:300.364500px;}
.y1d8{bottom:306.108000px;}
.y20d{bottom:306.198000px;}
.y1c{bottom:307.299000px;}
.y1a9{bottom:310.038000px;}
.y180{bottom:311.577000px;}
.y15e{bottom:313.371000px;}
.y129{bottom:315.247500px;}
.y76{bottom:316.491000px;}
.yf0{bottom:319.543500px;}
.y3e{bottom:319.852500px;}
.y20c{bottom:323.458500px;}
.y1d7{bottom:323.682000px;}
.yb6{bottom:324.201000px;}
.y1b{bottom:325.186500px;}
.y1a8{bottom:328.867500px;}
.y17f{bottom:330.406500px;}
.y15d{bottom:332.200500px;}
.y75{bottom:335.320500px;}
.y128{bottom:339.082500px;}
.yef{bottom:339.718500px;}
.y20b{bottom:340.719000px;}
.y1d6{bottom:341.257500px;}
.y1a{bottom:343.074000px;}
.y1a7{bottom:347.697000px;}
.yb5{bottom:348.036000px;}
.y17e{bottom:349.236000px;}
.y15c{bottom:351.030000px;}
.y74{bottom:354.150000px;}
.y20a{bottom:357.978000px;}
.y1d5{bottom:358.831500px;}
.y19{bottom:360.963000px;}
.y1a6{bottom:366.526500px;}
.y17d{bottom:368.065500px;}
.y15b{bottom:369.859500px;}
.y127{bottom:370.702500px;}
.yee{bottom:372.744000px;}
.y73{bottom:372.979500px;}
.y209{bottom:375.238500px;}
.y1d4{bottom:376.405500px;}
.yb4{bottom:379.656000px;}
.y1a5{bottom:385.356000px;}
.y17c{bottom:386.895000px;}
.yed{bottom:386.941500px;}
.y15a{bottom:388.689000px;}
.y72{bottom:391.809000px;}
.y208{bottom:392.499000px;}
.y1d3{bottom:393.979500px;}
.y3d{bottom:395.002500px;}
.y240{bottom:396.982500px;}
.y18{bottom:399.024000px;}
.y1a4{bottom:404.185500px;}
.y17b{bottom:405.724500px;}
.y126{bottom:406.441500px;}
.y159{bottom:407.518500px;}
.yb3{bottom:407.854500px;}
.y9e{bottom:408.880650px;}
.yec{bottom:409.687500px;}
.y207{bottom:409.759500px;}
.y71{bottom:410.638500px;}
.y1d2{bottom:411.553500px;}
.y23f{bottom:414.243000px;}
.y3c{bottom:414.459000px;}
.y17{bottom:416.913000px;}
.y1a3{bottom:423.015000px;}
.y17a{bottom:424.554000px;}
.y125{bottom:425.271000px;}
.y104{bottom:426.010500px;}
.yeb{bottom:426.126000px;}
.y158{bottom:426.348000px;}
.y206{bottom:427.020000px;}
.yb2{bottom:427.087500px;}
.y9d{bottom:428.320650px;}
.y1d1{bottom:429.127500px;}
.y70{bottom:429.468000px;}
.y23e{bottom:431.503500px;}
.y3b{bottom:433.917000px;}
.y16{bottom:434.800500px;}
.y1a2{bottom:441.844500px;}
.y124{bottom:444.100500px;}
.y205{bottom:444.280500px;}
.y157{bottom:445.177500px;}
.y103{bottom:445.450500px;}
.yb1{bottom:446.320500px;}
.y9c{bottom:447.400650px;}
.y179{bottom:447.867000px;}
.y6f{bottom:448.297500px;}
.y23d{bottom:448.764000px;}
.yea{bottom:449.767500px;}
.y1d0{bottom:455.668500px;}
.y1a1{bottom:460.674000px;}
.y204{bottom:461.541000px;}
.y123{bottom:462.930000px;}
.y156{bottom:464.007000px;}
.y102{bottom:464.530500px;}
.yb0{bottom:465.553500px;}
.y23c{bottom:466.024500px;}
.y9b{bottom:466.840650px;}
.y6e{bottom:467.127000px;}
.y178{bottom:468.042000px;}
.yd0{bottom:469.787850px;}
.y15{bottom:470.622000px;}
.y3a{bottom:471.306000px;}
.y1cf{bottom:473.242500px;}
.ye9{bottom:473.407500px;}
.y203{bottom:478.801500px;}
.y1a0{bottom:479.503500px;}
.y122{bottom:481.759500px;}
.y155{bottom:482.836500px;}
.y23b{bottom:483.283500px;}
.y101{bottom:483.610500px;}
.y9a{bottom:485.920650px;}
.y6d{bottom:485.956500px;}
.y8c{bottom:487.982850px;}
.ycf{bottom:488.507850px;}
.y14{bottom:488.509500px;}
.y39{bottom:490.764000px;}
.y202{bottom:496.062000px;}
.y1ce{bottom:499.782000px;}
.y23a{bottom:500.544000px;}
.y121{bottom:500.589000px;}
.y154{bottom:501.666000px;}
.y19f{bottom:502.816500px;}
.y100{bottom:503.080500px;}
.y6c{bottom:504.786000px;}
.y99{bottom:505.000650px;}
.ye8{bottom:505.027500px;}
.y13{bottom:506.397000px;}
.yce{bottom:507.587850px;}
.y201{bottom:513.321000px;}
.y239{bottom:517.804500px;}
.y120{bottom:519.418500px;}
.y153{bottom:520.495500px;}
.yff{bottom:522.160500px;}
.y6b{bottom:523.615500px;}
.y12{bottom:524.286000px;}
.y1cd{bottom:526.323000px;}
.ycd{bottom:527.027850px;}
.y38{bottom:528.153000px;}
.y98{bottom:529.120650px;}
.y200{bottom:530.581500px;}
.y238{bottom:535.065000px;}
.y19e{bottom:536.440500px;}
.ye7{bottom:537.709500px;}
.y11f{bottom:538.248000px;}
.y152{bottom:539.323500px;}
.yfe{bottom:541.960500px;}
.y11{bottom:542.173500px;}
.y6a{bottom:542.445000px;}
.ycc{bottom:546.107850px;}
.y37{bottom:547.609500px;}
.y1ff{bottom:547.842000px;}
.y237{bottom:552.325500px;}
.y1cc{bottom:552.864000px;}
.y97{bottom:553.270650px;}
.y19d{bottom:555.270000px;}
.ye6{bottom:556.942500px;}
.y11e{bottom:557.077500px;}
.y151{bottom:558.153000px;}
.y10{bottom:560.061000px;}
.yfd{bottom:561.040500px;}
.y69{bottom:561.274500px;}
.y1fe{bottom:565.102500px;}
.ycb{bottom:565.592850px;}
.y36{bottom:567.067500px;}
.y236{bottom:569.586000px;}
.y1cb{bottom:570.438000px;}
.y19c{bottom:574.099500px;}
.ye5{bottom:576.175500px;}
.y150{bottom:576.982500px;}
.y96{bottom:577.030650px;}
.yf{bottom:577.950000px;}
.y68{bottom:580.104000px;}
.yfc{bottom:580.120500px;}
.y11d{bottom:580.389000px;}
.y1fd{bottom:582.363000px;}
.yca{bottom:585.032850px;}
.y35{bottom:586.524000px;}
.y235{bottom:586.846500px;}
.y1ca{bottom:588.012000px;}
.y19b{bottom:592.929000px;}
.ye4{bottom:595.408500px;}
.y14f{bottom:595.812000px;}
.ye{bottom:595.837500px;}
.y67{bottom:598.932000px;}
.y1fc{bottom:599.623500px;}
.yc9{bottom:603.752850px;}
.yfb{bottom:603.880500px;}
.y234{bottom:604.107000px;}
.y34{bottom:605.982000px;}
.y11c{bottom:610.536000px;}
.y95{bottom:613.390650px;}
.yd{bottom:613.725000px;}
.y1c9{bottom:614.553000px;}
.y14e{bottom:614.641500px;}
.y19a{bottom:616.240500px;}
.y1fb{bottom:616.884000px;}
.y66{bottom:617.761500px;}
.yc5{bottom:617.838150px;}
.y233{bottom:621.366000px;}
.y33{bottom:625.438500px;}
.y11b{bottom:629.769000px;}
.yc{bottom:631.614000px;}
.y1c8{bottom:632.127000px;}
.y94{bottom:633.190650px;}
.y14d{bottom:633.471000px;}
.y1fa{bottom:634.144500px;}
.y199{bottom:635.070000px;}
.y65{bottom:636.591000px;}
.y232{bottom:638.626500px;}
.yfa{bottom:641.005500px;}
.y32{bottom:644.895000px;}
.y11a{bottom:649.002000px;}
.y1c7{bottom:649.701000px;}
.y1f9{bottom:651.403500px;}
.y93{bottom:652.270650px;}
.y14c{bottom:652.300500px;}
.y198{bottom:653.899500px;}
.y9{bottom:653.984964px;}
.y64{bottom:655.420500px;}
.y231{bottom:655.887000px;}
.yc7{bottom:658.832850px;}
.yf9{bottom:660.085500px;}
.y31{bottom:664.353000px;}
.y1c6{bottom:667.275000px;}
.y119{bottom:668.235000px;}
.yc6{bottom:668.552850px;}
.y1f8{bottom:668.664000px;}
.y14b{bottom:671.130000px;}
.y92{bottom:671.395650px;}
.y197{bottom:672.729000px;}
.y230{bottom:673.147500px;}
.y63{bottom:674.250000px;}
.yf8{bottom:679.165500px;}
.y30{bottom:683.809500px;}
.y1c5{bottom:684.849000px;}
.y1f7{bottom:685.924500px;}
.y118{bottom:687.466500px;}
.y14a{bottom:689.959500px;}
.y22f{bottom:690.408000px;}
.y91{bottom:690.475650px;}
.y196{bottom:691.558500px;}
.y62{bottom:693.079500px;}
.y1c4{bottom:702.423000px;}
.y1f6{bottom:703.185000px;}
.y2f{bottom:703.266000px;}
.y22e{bottom:707.668500px;}
.y149{bottom:708.789000px;}
.y90{bottom:709.555650px;}
.yf4{bottom:709.896000px;}
.y195{bottom:710.388000px;}
.y61{bottom:711.909000px;}
.y1f5{bottom:720.445500px;}
.y2e{bottom:722.724000px;}
.y22d{bottom:724.929000px;}
.y148{bottom:727.618500px;}
.y194{bottom:729.217500px;}
.y60{bottom:730.738500px;}
.yf6{bottom:734.245500px;}
.y1f4{bottom:737.706000px;}
.y1c3{bottom:737.929500px;}
.y2d{bottom:742.180500px;}
.y22c{bottom:742.189500px;}
.yf5{bottom:743.965500px;}
.y147{bottom:746.448000px;}
.y193{bottom:748.047000px;}
.y5f{bottom:749.568000px;}
.y1f3{bottom:754.966500px;}
.y1c2{bottom:756.759000px;}
.y22b{bottom:759.450000px;}
.y2c{bottom:761.638500px;}
.y8e{bottom:764.635650px;}
.y146{bottom:765.277500px;}
.y5e{bottom:768.397500px;}
.y192{bottom:771.360000px;}
.y1f2{bottom:772.227000px;}
.y8d{bottom:774.355650px;}
.y1c1{bottom:775.588500px;}
.y22a{bottom:776.709000px;}
.y2b{bottom:781.095000px;}
.y145{bottom:784.107000px;}
.y5d{bottom:787.227000px;}
.y177{bottom:788.590500px;}
.y1f1{bottom:789.487500px;}
.y191{bottom:791.533500px;}
.y229{bottom:793.969500px;}
.y1c0{bottom:794.418000px;}
.y2a{bottom:800.551500px;}
.y144{bottom:802.936500px;}
.y5c{bottom:806.056500px;}
.y1f0{bottom:806.746500px;}
.y228{bottom:811.230000px;}
.y1bf{bottom:813.247500px;}
.y143{bottom:821.766000px;}
.y176{bottom:822.214500px;}
.y1ef{bottom:824.007000px;}
.y5b{bottom:824.886000px;}
.y190{bottom:827.593500px;}
.y227{bottom:828.490500px;}
.y1be{bottom:832.077000px;}
.y29{bottom:839.137500px;}
.y142{bottom:840.595500px;}
.y175{bottom:841.044000px;}
.y1ee{bottom:841.267500px;}
.y5a{bottom:843.715500px;}
.y226{bottom:845.751000px;}
.y18f{bottom:846.423000px;}
.y1bd{bottom:850.906500px;}
.y1ed{bottom:858.528000px;}
.y141{bottom:859.425000px;}
.y28{bottom:859.617000px;}
.y174{bottom:859.873500px;}
.y59{bottom:862.545000px;}
.y225{bottom:863.011500px;}
.y18e{bottom:869.736000px;}
.y27{bottom:871.416000px;}
.y1ec{bottom:875.788500px;}
.y140{bottom:878.254500px;}
.y173{bottom:878.703000px;}
.y224{bottom:880.272000px;}
.y58{bottom:881.374500px;}
.y26{bottom:887.556000px;}
.y18d{bottom:888.565500px;}
.y1eb{bottom:893.049000px;}
.y8b{bottom:894.394500px;}
.y13f{bottom:897.084000px;}
.y172{bottom:897.532500px;}
.y57{bottom:900.204000px;}
.y1bc{bottom:907.395000px;}
.y25{bottom:908.035500px;}
.y1ea{bottom:910.309500px;}
.y18c{bottom:911.878500px;}
.y8a{bottom:913.222500px;}
.y222{bottom:914.791500px;}
.y223{bottom:914.793000px;}
.y13e{bottom:915.913500px;}
.y171{bottom:916.362000px;}
.y56{bottom:919.033500px;}
.y1bb{bottom:926.224500px;}
.y1e9{bottom:927.570000px;}
.y18b{bottom:930.708000px;}
.y89{bottom:932.052000px;}
.y13d{bottom:934.743000px;}
.y170{bottom:935.191500px;}
.y55{bottom:937.863000px;}
.y1e8{bottom:944.829000px;}
.y1ba{bottom:945.054000px;}
.y8{bottom:948.228000px;}
.y221{bottom:949.312500px;}
.y18a{bottom:949.537500px;}
.y88{bottom:950.881500px;}
.y13c{bottom:953.572500px;}
.y16f{bottom:954.021000px;}
.y54{bottom:956.692500px;}
.y1e7{bottom:962.089500px;}
.y1b9{bottom:963.883500px;}
.y220{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.y189{bottom:968.367000px;}
.y87{bottom:969.711000px;}
.y13b{bottom:972.402000px;}
.y16e{bottom:972.849000px;}
.y53{bottom:975.522000px;}
.y1e6{bottom:979.350000px;}
.y1b8{bottom:982.713000px;}
.y21f{bottom:983.833500px;}
.y86{bottom:988.540500px;}
.y13a{bottom:991.231500px;}
.y16d{bottom:991.678500px;}
.y52{bottom:994.351500px;}
.y1e5{bottom:996.610500px;}
.y21e{bottom:1001.094000px;}
.y1b7{bottom:1006.026000px;}
.y139{bottom:1010.061000px;}
.y16c{bottom:1010.508000px;}
.y85{bottom:1011.853500px;}
.y6{bottom:1012.954500px;}
.y51{bottom:1013.181000px;}
.y1e4{bottom:1013.871000px;}
.y21d{bottom:1018.354500px;}
.y1b6{bottom:1024.855500px;}
.y138{bottom:1028.890500px;}
.y16b{bottom:1029.337500px;}
.y1e3{bottom:1031.131500px;}
.y50{bottom:1032.010500px;}
.y84{bottom:1032.028500px;}
.y21c{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y1b5{bottom:1043.685000px;}
.y16a{bottom:1048.167000px;}
.y1e2{bottom:1048.392000px;}
.y4f{bottom:1050.840000px;}
.y83{bottom:1052.202000px;}
.y21b{bottom:1052.875500px;}
.y1b4{bottom:1062.513000px;}
.y1e1{bottom:1065.652500px;}
.yc4{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y21a{bottom:1070.134500px;}
.y1e0{bottom:1082.913000px;}
.y82{bottom:1085.826000px;}
.y219{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y81{bottom:1104.655500px;}
.y4c{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h2c{height:-220.369500px;}
.h25{height:-216.207150px;}
.h2b{height:-200.209500px;}
.h24{height:-195.687150px;}
.h1d{height:-181.339350px;}
.h2a{height:-180.049500px;}
.h1c{height:-160.819350px;}
.h29{height:-159.154500px;}
.h23{height:-154.647150px;}
.h1b{height:-139.939350px;}
.h28{height:-137.914500px;}
.h22{height:-133.767150px;}
.h19{height:-119.044350px;}
.h8{height:25.508090px;}
.h2e{height:27.855430px;}
.hc{height:31.131341px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.hb{height:36.319550px;}
.he{height:38.896243px;}
.h1e{height:39.057638px;}
.h10{height:39.488026px;}
.h20{height:41.482876px;}
.hd{height:41.508281px;}
.h14{height:42.438516px;}
.h11{height:43.217759px;}
.h4{height:43.875290px;}
.h17{height:44.326406px;}
.h16{height:44.355938px;}
.hf{height:46.697011px;}
.h1a{height:46.925156px;}
.h18{height:48.868594px;}
.h1f{height:49.002344px;}
.h2{height:50.931027px;}
.h12{height:51.885221px;}
.h2d{height:53.222842px;}
.h2f{height:53.228842px;}
.h15{height:54.012656px;}
.h7{height:54.547601px;}
.h26{height:55.849550px;}
.h6{height:77.792486px;}
.h5{height:78.115277px;}
.h3{height:102.503837px;}
.h13{height:392.820900px;}
.h27{height:409.704300px;}
.h21{height:438.968850px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w17{width:-22.688550px;}
.we{width:-20.744100px;}
.w15{width:31.701000px;}
.wc{width:32.025000px;}
.w9{width:42.480000px;}
.w1a{width:43.920000px;}
.w6{width:63.750000px;}
.wd{width:64.230900px;}
.wb{width:74.541000px;}
.w3{width:75.364879px;}
.w16{width:83.886450px;}
.wa{width:84.996000px;}
.w14{width:95.796000px;}
.w8{width:96.270900px;}
.w13{width:106.230000px;}
.w12{width:115.611450px;}
.w10{width:122.030250px;}
.w5{width:123.510000px;}
.w1b{width:159.195000px;}
.w1c{width:184.859850px;}
.w19{width:195.555000px;}
.w7{width:202.035000px;}
.w2{width:216.078239px;}
.w11{width:234.075000px;}
.wf{width:471.731700px;}
.w4{width:494.248800px;}
.w18{width:585.442650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x78{left:-197.028750px;}
.x89{left:-193.651200px;}
.x4d{left:-186.896100px;}
.x7a{left:-1.479750px;}
.x0{left:0.000000px;}
.x5f{left:1.080000px;}
.x5a{left:3.600000px;}
.x91{left:4.680000px;}
.x64{left:5.745000px;}
.x4f{left:8.652900px;}
.x56{left:10.800000px;}
.x5d{left:11.865000px;}
.x5c{left:12.945000px;}
.x62{left:15.840000px;}
.x58{left:16.920000px;}
.x60{left:18.720000px;}
.x57{left:20.880000px;}
.x80{left:23.430000px;}
.x55{left:25.905000px;}
.x82{left:27.750000px;}
.x3{left:29.274117px;}
.x79{left:30.560250px;}
.x53{left:31.680000px;}
.x83{left:33.800250px;}
.x63{left:35.280000px;}
.x61{left:38.520000px;}
.x4e{left:40.692900px;}
.x54{left:42.480000px;}
.x8e{left:46.800000px;}
.x1{left:54.000000px;}
.x2{left:57.828114px;}
.x7c{left:60.080250px;}
.x52{left:61.560000px;}
.x6e{left:65.016000px;}
.x87{left:66.624000px;}
.x90{left:68.430000px;}
.x92{left:69.495000px;}
.x8f{left:71.295000px;}
.x6d{left:73.503000px;}
.x86{left:75.109500px;}
.x70{left:85.890000px;}
.x6f{left:95.922000px;}
.x88{left:97.530000px;}
.x6b{left:148.176000px;}
.x73{left:158.968500px;}
.xd2{left:166.081500px;}
.x74{left:167.251500px;}
.x84{left:223.002000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x8a{left:252.795000px;}
.x96{left:254.901000px;}
.x51{left:259.549500px;}
.x9f{left:262.087500px;}
.x97{left:264.610500px;}
.x98{left:269.229000px;}
.x5{left:271.221000px;}
.x99{left:278.200500px;}
.xa{left:282.786000px;}
.xc7{left:285.490500px;}
.x9a{left:293.904000px;}
.x85{left:298.032000px;}
.x9d{left:300.243000px;}
.x9b{left:305.107500px;}
.x71{left:306.192000px;}
.x7{left:309.463500px;}
.xa2{left:311.073000px;}
.xb3{left:312.363000px;}
.x72{left:314.394000px;}
.x75{left:317.089500px;}
.xbd{left:320.460000px;}
.x9e{left:322.879500px;}
.x8{left:324.874500px;}
.xbe{left:327.783000px;}
.x76{left:333.108000px;}
.xbf{left:342.726000px;}
.x32{left:345.370500px;}
.xc0{left:346.387500px;}
.x6c{left:350.307000px;}
.xad{left:358.560000px;}
.x33{left:360.315000px;}
.xc1{left:361.332000px;}
.x34{left:363.990000px;}
.xc2{left:364.993500px;}
.x9{left:368.508000px;}
.x7d{left:372.942000px;}
.x35{left:378.934500px;}
.xae{left:380.826000px;}
.x36{left:382.611000px;}
.xb0{left:386.425500px;}
.xcd{left:391.410000px;}
.xaf{left:395.770500px;}
.x37{left:397.555500px;}
.xb1{left:401.370000px;}
.x7f{left:404.982000px;}
.xb7{left:407.968500px;}
.xa3{left:417.466500px;}
.xb2{left:420.102000px;}
.xb8{left:422.913000px;}
.xb9{left:426.573000px;}
.xce{left:429.342000px;}
.xc8{left:430.692000px;}
.xa4{left:433.489500px;}
.xba{left:441.517500px;}
.x29{left:446.524500px;}
.x8b{left:448.350000px;}
.x69{left:455.715000px;}
.x2a{left:461.467500px;}
.x24{left:467.344500px;}
.xa0{left:476.463000px;}
.x25{left:482.289000px;}
.xa1{left:485.077500px;}
.x50{left:486.192900px;}
.x59{left:489.304500px;}
.x8c{left:492.270000px;}
.x7b{left:493.700250px;}
.x3c{left:500.412000px;}
.x81{left:511.212000px;}
.xa5{left:513.249000px;}
.x3d{left:515.355000px;}
.xb{left:518.698500px;}
.x2d{left:522.931500px;}
.xc{left:526.170000px;}
.xb4{left:527.313000px;}
.xd{left:529.947000px;}
.xb5{left:534.934500px;}
.xe{left:537.420000px;}
.x9c{left:541.287000px;}
.xcb{left:542.632500px;}
.x77{left:543.918000px;}
.x2e{left:545.295000px;}
.xb6{left:549.877500px;}
.xcc{left:557.577000px;}
.x2f{left:560.239500px;}
.x44{left:565.180500px;}
.x5b{left:574.309500px;}
.x11{left:577.999500px;}
.x45{left:580.123500px;}
.x46{left:583.912500px;}
.x12{left:585.471000px;}
.x13{left:589.203000px;}
.xbb{left:594.142500px;}
.x14{left:596.676000px;}
.x47{left:598.855500px;}
.x48{left:602.644500px;}
.x7e{left:607.017000px;}
.xbc{left:609.087000px;}
.x49{left:617.587500px;}
.x38{left:621.091500px;}
.x4c{left:623.646000px;}
.x39{left:636.034500px;}
.x17{left:638.136000px;}
.x3a{left:639.789000px;}
.xc3{left:641.563500px;}
.x18{left:645.607500px;}
.x19{left:649.417500px;}
.x8d{left:651.480000px;}
.x3e{left:653.608500px;}
.x3b{left:654.733500px;}
.x1a{left:656.890500px;}
.x65{left:660.546000px;}
.x21{left:663.613500px;}
.xd3{left:665.221500px;}
.x6a{left:666.283500px;}
.x3f{left:668.551500px;}
.x40{left:672.310500px;}
.xc4{left:675.150000px;}
.x93{left:677.059500px;}
.x22{left:678.556500px;}
.x30{left:680.793000px;}
.x41{left:687.255000px;}
.x42{left:691.012500px;}
.xd4{left:692.121000px;}
.x31{left:695.736000px;}
.x4a{left:696.846000px;}
.x2b{left:699.406500px;}
.xc9{left:700.768500px;}
.x43{left:705.957000px;}
.xd9{left:707.737500px;}
.xa6{left:709.174500px;}
.x4b{left:711.789000px;}
.x2c{left:714.351000px;}
.xca{left:720.864000px;}
.x1d{left:722.136000px;}
.xa7{left:724.119000px;}
.xd7{left:727.887000px;}
.x1e{left:729.607500px;}
.xd8{left:733.336500px;}
.xcf{left:738.253500px;}
.x26{left:745.684500px;}
.x1f{left:747.192000px;}
.x94{left:749.739000px;}
.x20{left:754.665000px;}
.xa8{left:756.231000px;}
.x66{left:757.500000px;}
.x95{left:758.709000px;}
.x27{left:760.629000px;}
.xc6{left:764.269500px;}
.x5e{left:765.889500px;}
.x28{left:768.033000px;}
.xa9{left:771.174000px;}
.x67{left:773.329500px;}
.xaa{left:774.985500px;}
.xf{left:783.379500px;}
.x68{left:784.533000px;}
.x10{left:790.852500px;}
.xab{left:793.740000px;}
.xd5{left:796.809000px;}
.xc5{left:798.943500px;}
.xac{left:808.683000px;}
.xd0{left:810.336000px;}
.x1b{left:814.161000px;}
.x23{left:817.828500px;}
.x1c{left:821.632500px;}
.xd6{left:823.708500px;}
.x15{left:825.169500px;}
.x16{left:832.642500px;}
.xd1{left:837.235500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls19{letter-spacing:-1.429333pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls2b{letter-spacing:-1.264000pt;}
.ls23{letter-spacing:-0.450667pt;}
.ls24{letter-spacing:-0.432533pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.023040pt;}
.ls9{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000600pt;}
.ls3c{letter-spacing:0.000711pt;}
.ls39{letter-spacing:0.000853pt;}
.ls33{letter-spacing:0.000921pt;}
.ls3a{letter-spacing:0.000980pt;}
.ls3d{letter-spacing:0.001026pt;}
.ls2e{letter-spacing:0.001154pt;}
.ls43{letter-spacing:0.001408pt;}
.ls1{letter-spacing:0.002422pt;}
.ls40{letter-spacing:0.002525pt;}
.ls44{letter-spacing:0.003241pt;}
.ls34{letter-spacing:0.004226pt;}
.ls4d{letter-spacing:0.004267pt;}
.ls18{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.278933pt;}
.ls1a{letter-spacing:0.432533pt;}
.ls26{letter-spacing:0.442880pt;}
.lse{letter-spacing:0.540160pt;}
.lsd{letter-spacing:0.558080pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls25{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.657067pt;}
.ls2f{letter-spacing:3.158400pt;}
.ls31{letter-spacing:3.163733pt;}
.lsf{letter-spacing:3.200000pt;}
.ls4{letter-spacing:9.298933pt;}
.ls14{letter-spacing:10.621997pt;}
.ls8{letter-spacing:10.626533pt;}
.ls29{letter-spacing:10.627330pt;}
.ls21{letter-spacing:10.634288pt;}
.ls22{letter-spacing:10.634932pt;}
.ls3f{letter-spacing:10.907385pt;}
.ls2c{letter-spacing:10.998710pt;}
.ls35{letter-spacing:11.788437pt;}
.ls41{letter-spacing:11.920090pt;}
.ls36{letter-spacing:11.954133pt;}
.ls38{letter-spacing:11.959467pt;}
.ls45{letter-spacing:11.991360pt;}
.ls49{letter-spacing:11.997741pt;}
.ls3b{letter-spacing:12.090453pt;}
.ls3e{letter-spacing:12.096030pt;}
.ls37{letter-spacing:12.123471pt;}
.ls1f{letter-spacing:12.528078pt;}
.ls20{letter-spacing:12.533411pt;}
.ls1d{letter-spacing:12.743195pt;}
.ls48{letter-spacing:13.247414pt;}
.ls2{letter-spacing:13.284541pt;}
.ls1b{letter-spacing:13.389734pt;}
.ls2a{letter-spacing:13.496002pt;}
.ls2d{letter-spacing:13.655404pt;}
.ls46{letter-spacing:14.823467pt;}
.ls4c{letter-spacing:15.039424pt;}
.ls47{letter-spacing:15.882708pt;}
.ls30{letter-spacing:15.886601pt;}
.ls32{letter-spacing:15.962792pt;}
.ls4b{letter-spacing:15.976826pt;}
.lsb{letter-spacing:19.281239pt;}
.ls4a{letter-spacing:24.745454pt;}
.ls6{letter-spacing:55.729067pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls11{letter-spacing:144.757867pt;}
.ls1e{letter-spacing:151.022302pt;}
.ls10{letter-spacing:189.523635pt;}
.ls13{letter-spacing:208.728969pt;}
.ls12{letter-spacing:258.293867pt;}
.ls27{letter-spacing:344.152969pt;}
.ls28{letter-spacing:395.387200pt;}
.ws5f{word-spacing:-53.760000pt;}
.ws62{word-spacing:-48.640000pt;}
.ws64{word-spacing:-13.872533pt;}
.ws60{word-spacing:-13.457920pt;}
.ws5e{word-spacing:-13.440000pt;}
.ws46{word-spacing:-13.283467pt;}
.ws76{word-spacing:-13.007467pt;}
.ws74{word-spacing:-12.989333pt;}
.ws77{word-spacing:-12.438933pt;}
.ws83{word-spacing:-12.176000pt;}
.ws61{word-spacing:-12.160000pt;}
.wsdb{word-spacing:-11.955200pt;}
.ws63{word-spacing:-10.730667pt;}
.ws3e{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws11{word-spacing:-9.298400pt;}
.ws75{word-spacing:-8.000000pt;}
.ws65{word-spacing:-7.360000pt;}
.ws5c{word-spacing:-2.762961pt;}
.ws5d{word-spacing:-2.709827pt;}
.wse{word-spacing:-2.566358pt;}
.ws8d{word-spacing:-2.550426pt;}
.wsf6{word-spacing:-2.391040pt;}
.wsbd{word-spacing:-2.337890pt;}
.wsa3{word-spacing:-2.284756pt;}
.wsd6{word-spacing:-2.247578pt;}
.wsa0{word-spacing:-2.178489pt;}
.wsa1{word-spacing:-2.125355pt;}
.wsa4{word-spacing:-2.072221pt;}
.ws9f{word-spacing:-2.019087pt;}
.ws55{word-spacing:-1.965953pt;}
.ws5b{word-spacing:-1.859685pt;}
.wsbc{word-spacing:-1.828587pt;}
.wsf5{word-spacing:-1.817190pt;}
.wsb9{word-spacing:-1.806551pt;}
.wsd4{word-spacing:-1.769370pt;}
.ws9{word-spacing:-1.696326pt;}
.ws56{word-spacing:-1.594016pt;}
.ws9c{word-spacing:-1.540882pt;}
.wsc{word-spacing:-1.534439pt;}
.wsce{word-spacing:-1.434624pt;}
.wsbe{word-spacing:-1.434614pt;}
.wsf0{word-spacing:-1.386803pt;}
.wsd5{word-spacing:-1.338982pt;}
.wsab{word-spacing:-1.275213pt;}
.wsb4{word-spacing:-1.236067pt;}
.wsb5{word-spacing:-1.222079pt;}
.wscf{word-spacing:-1.195520pt;}
.ws8{word-spacing:-1.175671pt;}
.wsf2{word-spacing:-1.052058pt;}
.wsae{word-spacing:-0.984420pt;}
.wsac{word-spacing:-0.956410pt;}
.wsad{word-spacing:-0.947001pt;}
.ws22{word-spacing:-0.908595pt;}
.ws89{word-spacing:-0.587286pt;}
.ws8a{word-spacing:-0.586235pt;}
.ws8b{word-spacing:-0.584473pt;}
.wsa2{word-spacing:-0.531339pt;}
.ws69{word-spacing:-0.334746pt;}
.wsd{word-spacing:-0.334742pt;}
.ws45{word-spacing:-0.318803pt;}
.wsc6{word-spacing:-0.292874pt;}
.wsc5{word-spacing:-0.288365pt;}
.ws21{word-spacing:-0.286925pt;}
.ws3f{word-spacing:-0.265669pt;}
.ws7d{word-spacing:-0.239104pt;}
.ws42{word-spacing:-0.212535pt;}
.ws86{word-spacing:-0.191283pt;}
.ws71{word-spacing:-0.170029pt;}
.wsb6{word-spacing:-0.160774pt;}
.ws3c{word-spacing:-0.159402pt;}
.wsd7{word-spacing:-0.143462pt;}
.wscc{word-spacing:-0.107703pt;}
.ws34{word-spacing:-0.106268pt;}
.wsd1{word-spacing:-0.095642pt;}
.wscd{word-spacing:-0.094202pt;}
.ws93{word-spacing:-0.085014pt;}
.ws10f{word-spacing:-0.062319pt;}
.ws2b{word-spacing:-0.057406pt;}
.ws7{word-spacing:-0.053134pt;}
.ws2a{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws85{word-spacing:-0.036695pt;}
.ws31{word-spacing:-0.009045pt;}
.ws100{word-spacing:-0.008354pt;}
.ws2{word-spacing:-0.005333pt;}
.wsfd{word-spacing:-0.005274pt;}
.ws5{word-spacing:-0.005259pt;}
.wsef{word-spacing:-0.004267pt;}
.ws3d{word-spacing:-0.004169pt;}
.wsec{word-spacing:-0.004147pt;}
.ws6e{word-spacing:-0.003755pt;}
.ws6d{word-spacing:-0.003345pt;}
.wsf8{word-spacing:-0.003278pt;}
.wsc9{word-spacing:-0.003167pt;}
.ws10{word-spacing:-0.003065pt;}
.wsda{word-spacing:-0.002807pt;}
.ws6a{word-spacing:-0.002586pt;}
.ws102{word-spacing:-0.002483pt;}
.ws73{word-spacing:-0.002299pt;}
.ws9d{word-spacing:-0.002163pt;}
.ws52{word-spacing:-0.001941pt;}
.ws10a{word-spacing:-0.001075pt;}
.wsf4{word-spacing:-0.000956pt;}
.wsb{word-spacing:-0.000173pt;}
.ws9e{word-spacing:-0.000013pt;}
.ws0{word-spacing:0.000000pt;}
.wse7{word-spacing:0.000060pt;}
.ws10e{word-spacing:0.000162pt;}
.wse0{word-spacing:0.001485pt;}
.ws101{word-spacing:0.001519pt;}
.ws6c{word-spacing:0.001579pt;}
.ws8f{word-spacing:0.001988pt;}
.ws109{word-spacing:0.032704pt;}
.ws1e{word-spacing:0.047821pt;}
.ws38{word-spacing:0.053134pt;}
.wsc4{word-spacing:0.062675pt;}
.ws25{word-spacing:0.091466pt;}
.ws24{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws92{word-spacing:0.127522pt;}
.wscb{word-spacing:0.130512pt;}
.ws23{word-spacing:0.143462pt;}
.wsbb{word-spacing:0.147561pt;}
.ws37{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.164716pt;}
.ws12{word-spacing:0.185968pt;}
.ws20{word-spacing:0.191283pt;}
.ws72{word-spacing:0.199359pt;}
.ws41{word-spacing:0.212535pt;}
.wsb2{word-spacing:0.235923pt;}
.ws29{word-spacing:0.239104pt;}
.wsb3{word-spacing:0.243890pt;}
.ws14{word-spacing:0.260355pt;}
.ws40{word-spacing:0.265669pt;}
.wsa7{word-spacing:0.318803pt;}
.ws68{word-spacing:0.326144pt;}
.wsb8{word-spacing:0.331514pt;}
.ws84{word-spacing:0.333547pt;}
.ws67{word-spacing:0.334746pt;}
.wsfb{word-spacing:0.342152pt;}
.ws39{word-spacing:0.371937pt;}
.wsfc{word-spacing:0.382566pt;}
.wsa5{word-spacing:0.425071pt;}
.ws8c{word-spacing:0.478205pt;}
.wsfa{word-spacing:0.526029pt;}
.ws82{word-spacing:0.531339pt;}
.ws66{word-spacing:0.573850pt;}
.ws7e{word-spacing:0.582886pt;}
.ws81{word-spacing:0.584473pt;}
.wsd3{word-spacing:0.621670pt;}
.wsd0{word-spacing:0.717312pt;}
.ws33{word-spacing:0.743874pt;}
.ws7a{word-spacing:0.765133pt;}
.ws7b{word-spacing:0.784188pt;}
.wsa9{word-spacing:0.797008pt;}
.ws7c{word-spacing:0.812954pt;}
.wsbf{word-spacing:0.850142pt;}
.wse9{word-spacing:0.908595pt;}
.ws79{word-spacing:0.956416pt;}
.ws104{word-spacing:0.962326pt;}
.ws103{word-spacing:1.004237pt;}
.ws5a{word-spacing:1.009543pt;}
.ws8e{word-spacing:1.115811pt;}
.ws91{word-spacing:1.147694pt;}
.ws27{word-spacing:1.147699pt;}
.ws78{word-spacing:1.195520pt;}
.ws4e{word-spacing:1.222079pt;}
.ws53{word-spacing:1.275213pt;}
.ws106{word-spacing:1.291162pt;}
.ws44{word-spacing:1.328347pt;}
.ws26{word-spacing:1.338982pt;}
.ws2f{word-spacing:1.353153pt;}
.ws59{word-spacing:1.434614pt;}
.wse8{word-spacing:1.434624pt;}
.ws28{word-spacing:1.482445pt;}
.wsaf{word-spacing:1.487748pt;}
.wsed{word-spacing:1.530266pt;}
.ws2e{word-spacing:1.625907pt;}
.ws43{word-spacing:1.753418pt;}
.ws13{word-spacing:1.785293pt;}
.wsfe{word-spacing:1.865011pt;}
.ws87{word-spacing:1.912819pt;}
.wsee{word-spacing:2.008474pt;}
.ws94{word-spacing:2.125355pt;}
.wsf{word-spacing:2.247270pt;}
.wse5{word-spacing:2.247578pt;}
.ws96{word-spacing:2.391024pt;}
.ws30{word-spacing:2.438861pt;}
.ws95{word-spacing:2.444158pt;}
.ws3a{word-spacing:2.497292pt;}
.wsc7{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.550432pt;}
.wsc8{word-spacing:2.603559pt;}
.ws58{word-spacing:2.656693pt;}
.wsf1{word-spacing:2.677965pt;}
.wsf3{word-spacing:2.725786pt;}
.ws50{word-spacing:2.733660pt;}
.ws51{word-spacing:2.762961pt;}
.wsaa{word-spacing:2.816095pt;}
.wse6{word-spacing:2.821427pt;}
.wseb{word-spacing:2.864230pt;}
.wse4{word-spacing:2.864853pt;}
.wsff{word-spacing:2.865408pt;}
.ws10b{word-spacing:2.866099pt;}
.wsdf{word-spacing:2.866850pt;}
.wsf7{word-spacing:2.867055pt;}
.ws98{word-spacing:2.869229pt;}
.wsd9{word-spacing:2.869248pt;}
.ws10c{word-spacing:2.870741pt;}
.wse1{word-spacing:2.871407pt;}
.wsf9{word-spacing:2.917069pt;}
.wsdd{word-spacing:2.964890pt;}
.wsea{word-spacing:3.012710pt;}
.ws97{word-spacing:3.028630pt;}
.ws1f{word-spacing:3.060531pt;}
.wsdc{word-spacing:3.108352pt;}
.ws107{word-spacing:3.156173pt;}
.ws32{word-spacing:3.188032pt;}
.wsd2{word-spacing:3.203994pt;}
.wsb7{word-spacing:3.241166pt;}
.ws36{word-spacing:3.400567pt;}
.ws4c{word-spacing:3.441386pt;}
.wsba{word-spacing:3.453701pt;}
.wsde{word-spacing:3.777843pt;}
.wsc3{word-spacing:3.878772pt;}
.ws108{word-spacing:4.016947pt;}
.ws4d{word-spacing:4.038174pt;}
.ws3b{word-spacing:4.091308pt;}
.ws4f{word-spacing:4.250709pt;}
.ws4b{word-spacing:4.463245pt;}
.ws4a{word-spacing:4.516379pt;}
.wsd8{word-spacing:4.542976pt;}
.ws80{word-spacing:4.548270pt;}
.ws47{word-spacing:4.728914pt;}
.ws48{word-spacing:4.750440pt;}
.ws49{word-spacing:4.782048pt;}
.ws88{word-spacing:4.941450pt;}
.ws57{word-spacing:4.994583pt;}
.wsc1{word-spacing:5.260253pt;}
.ws1a{word-spacing:5.393072pt;}
.wsa6{word-spacing:5.419654pt;}
.ws1b{word-spacing:5.467459pt;}
.ws4{word-spacing:5.738496pt;}
.wsc0{word-spacing:5.791591pt;}
.wsca{word-spacing:5.844725pt;}
.ws54{word-spacing:5.950993pt;}
.wsb0{word-spacing:6.004127pt;}
.wse3{word-spacing:6.025421pt;}
.ws2d{word-spacing:6.168883pt;}
.ws105{word-spacing:6.237610pt;}
.wsa8{word-spacing:6.269796pt;}
.wsc2{word-spacing:6.801135pt;}
.ws9a{word-spacing:6.907403pt;}
.ws10d{word-spacing:7.077478pt;}
.ws18{word-spacing:7.699075pt;}
.ws2c{word-spacing:9.372877pt;}
.wsb1{word-spacing:9.510962pt;}
.ws6b{word-spacing:11.907379pt;}
.ws99{word-spacing:12.273923pt;}
.wsa{word-spacing:13.763148pt;}
.ws15{word-spacing:14.348669pt;}
.ws16{word-spacing:14.356730pt;}
.ws17{word-spacing:15.732893pt;}
.ws3{word-spacing:23.801566pt;}
.ws1{word-spacing:23.806029pt;}
.ws19{word-spacing:24.399002pt;}
.wse2{word-spacing:43.038720pt;}
.ws7f{word-spacing:164.394172pt;}
.ws70{word-spacing:208.211763pt;}
.ws6f{word-spacing:243.073126pt;}
.ws90{word-spacing:339.766784pt;}
._3a{margin-left:-7.139735pt;}
._8{margin-left:-6.248558pt;}
._1{margin-left:-5.260288pt;}
._9{margin-left:-3.910662pt;}
._6{margin-left:-2.693846pt;}
._0{margin-left:-1.721549pt;}
._4{width:0.969929pt;}
._2{width:2.670462pt;}
._19{width:3.710669pt;}
._18{width:5.161169pt;}
._17{width:6.262880pt;}
._16{width:7.152224pt;}
._31{width:8.432224pt;}
._a{width:9.691642pt;}
._5{width:11.530016pt;}
._c{width:12.996614pt;}
._b{width:14.633165pt;}
._3b{width:15.546979pt;}
._f{width:16.471499pt;}
._10{width:17.396039pt;}
._d{width:18.745754pt;}
._14{width:20.562806pt;}
._e{width:21.758464pt;}
._3e{width:23.060098pt;}
._38{width:24.016529pt;}
._39{width:25.738057pt;}
._30{width:27.162101pt;}
._7{width:29.011008pt;}
._13{width:31.189580pt;}
._3{width:48.359831pt;}
._45{width:54.993920pt;}
._40{width:63.745126pt;}
._44{width:78.904320pt;}
._42{width:81.343181pt;}
._3d{width:83.154501pt;}
._3c{width:85.811195pt;}
._3f{width:130.168218pt;}
._1d{width:132.888800pt;}
._27{width:135.428506pt;}
._41{width:138.584678pt;}
._2a{width:139.828019pt;}
._24{width:165.107277pt;}
._1b{width:170.815898pt;}
._25{width:197.021696pt;}
._2d{width:201.995059pt;}
._2e{width:206.107648pt;}
._29{width:209.601690pt;}
._2b{width:216.054374pt;}
._26{width:225.191339pt;}
._2f{width:233.299098pt;}
._1e{width:237.478093pt;}
._28{width:239.964774pt;}
._1c{width:243.446144pt;}
._2c{width:246.245181pt;}
._22{width:254.741402pt;}
._32{width:269.901943pt;}
._21{width:288.528317pt;}
._1f{width:305.718374pt;}
._20{width:324.894515pt;}
._33{width:428.856934pt;}
._34{width:456.306074pt;}
._36{width:459.653530pt;}
._35{width:473.425920pt;}
._37{width:494.180147pt;}
._1a{width:604.885299pt;}
._23{width:735.196979pt;}
._11{width:871.613853pt;}
._15{width:1943.356060pt;}
._43{width:2294.651322pt;}
._12{width:2315.904655pt;}
.fse{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs11{font-size:42.077867pt;}
.fsa{font-size:42.240000pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.640000pt;}
.fs10{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.760000pt;}
.fsf{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.yc8{bottom:-422.952133pt;}
.yf7{bottom:-355.918667pt;}
.y8f{bottom:-328.905200pt;}
.ye3{bottom:-319.880133pt;}
.y117{bottom:-289.038667pt;}
.ye2{bottom:-286.277467pt;}
.y116{bottom:-273.678667pt;}
.yaf{bottom:-270.985200pt;}
.y115{bottom:-258.286667pt;}
.ye1{bottom:-254.277467pt;}
.y114{bottom:-242.924000pt;}
.ye0{bottom:-238.917467pt;}
.yae{bottom:-238.633200pt;}
.y113{bottom:-227.564000pt;}
.ydf{bottom:-223.557467pt;}
.yad{bottom:-223.273200pt;}
.y112{bottom:-209.964000pt;}
.yac{bottom:-207.910533pt;}
.yde{bottom:-206.250800pt;}
.yab{bottom:-192.550533pt;}
.y111{bottom:-192.044000pt;}
.ydd{bottom:-188.010800pt;}
.yaa{bottom:-175.270533pt;}
.y110{bottom:-174.124000pt;}
.ydc{bottom:-169.130800pt;}
.yda{bottom:-160.490800pt;}
.yd9{bottom:-160.170800pt;}
.ya9{bottom:-157.030533pt;}
.y10f{bottom:-155.564000pt;}
.y10e{bottom:-155.244000pt;}
.ydb{bottom:-151.210800pt;}
.ya8{bottom:-138.470533pt;}
.ya7{bottom:-138.150533pt;}
.y10d{bottom:-136.657333pt;}
.y10c{bottom:-136.337333pt;}
.yd8{bottom:-132.970800pt;}
.yd7{bottom:-132.650800pt;}
.ya6{bottom:-119.883867pt;}
.ya5{bottom:-119.563867pt;}
.y10b{bottom:-110.097333pt;}
.yd6{bottom:-106.090800pt;}
.ya4{bottom:-93.323867pt;}
.y10a{bottom:-78.737333pt;}
.yd5{bottom:-74.690800pt;}
.y109{bottom:-63.377333pt;}
.ya3{bottom:-61.643867pt;}
.yd4{bottom:-59.330800pt;}
.y108{bottom:-48.017333pt;}
.ya2{bottom:-46.283867pt;}
.yd3{bottom:-43.970800pt;}
.y107{bottom:-32.657333pt;}
.ya1{bottom:-30.923867pt;}
.yd2{bottom:-28.610800pt;}
.y106{bottom:-17.257333pt;}
.ya0{bottom:-15.563867pt;}
.yd1{bottom:-8.450800pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.044747pt;}
.y105{bottom:3.222667pt;}
.y9f{bottom:4.636133pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y4a{bottom:28.346667pt;}
.y137{bottom:79.105333pt;}
.yc3{bottom:88.564000pt;}
.y24{bottom:91.398667pt;}
.y169{bottom:94.441333pt;}
.y136{bottom:95.842667pt;}
.y49{bottom:96.217333pt;}
.y218{bottom:103.408000pt;}
.yc2{bottom:105.301333pt;}
.y23{bottom:107.298667pt;}
.y1b3{bottom:108.217333pt;}
.y188{bottom:108.788000pt;}
.y168{bottom:111.178667pt;}
.y135{bottom:112.580000pt;}
.y48{bottom:112.954667pt;}
.y80{bottom:113.952000pt;}
.y217{bottom:118.750667pt;}
.y1df{bottom:121.472000pt;}
.yc1{bottom:122.038667pt;}
.y22{bottom:123.200000pt;}
.y1b2{bottom:124.954667pt;}
.y167{bottom:127.916000pt;}
.y134{bottom:129.317333pt;}
.y187{bottom:129.510667pt;}
.y47{bottom:129.692000pt;}
.y7f{bottom:130.689333pt;}
.y216{bottom:134.093333pt;}
.y1de{bottom:137.093333pt;}
.yc0{bottom:138.776000pt;}
.y21{bottom:139.100000pt;}
.y1b1{bottom:141.692000pt;}
.y166{bottom:144.653333pt;}
.y133{bottom:146.054667pt;}
.y46{bottom:146.429333pt;}
.y7e{bottom:147.426667pt;}
.y215{bottom:149.436000pt;}
.y1dd{bottom:152.714667pt;}
.y20{bottom:155.000000pt;}
.ybf{bottom:155.513333pt;}
.y1b0{bottom:158.429333pt;}
.y186{bottom:159.398667pt;}
.y165{bottom:161.390667pt;}
.y45{bottom:163.166667pt;}
.y7d{bottom:164.164000pt;}
.y214{bottom:164.778667pt;}
.y1dc{bottom:168.336000pt;}
.y1f{bottom:170.901333pt;}
.y132{bottom:173.508000pt;}
.y1af{bottom:175.166667pt;}
.y185{bottom:176.136000pt;}
.ybe{bottom:176.236000pt;}
.y164{bottom:178.128000pt;}
.y44{bottom:179.904000pt;}
.y213{bottom:180.121333pt;}
.y7c{bottom:180.901333pt;}
.y131{bottom:186.128000pt;}
.y1e{bottom:186.801333pt;}
.y1ae{bottom:191.904000pt;}
.y163{bottom:194.865333pt;}
.y212{bottom:195.462667pt;}
.y43{bottom:196.641333pt;}
.y184{bottom:196.858667pt;}
.y7b{bottom:197.638667pt;}
.y12f{bottom:198.748000pt;}
.y1db{bottom:200.205333pt;}
.y130{bottom:202.605333pt;}
.y1d{bottom:202.701333pt;}
.ybd{bottom:206.921333pt;}
.y1ad{bottom:208.641333pt;}
.y211{bottom:210.805333pt;}
.y12d{bottom:211.366667pt;}
.y162{bottom:211.602667pt;}
.y42{bottom:213.378667pt;}
.y7a{bottom:214.376000pt;}
.y12e{bottom:215.224000pt;}
.ybb{bottom:219.540000pt;}
.ybc{bottom:223.397333pt;}
.y1ac{bottom:225.377333pt;}
.y210{bottom:226.148000pt;}
.y183{bottom:226.746667pt;}
.y161{bottom:228.340000pt;}
.y12c{bottom:229.809333pt;}
.yf3{bottom:229.841333pt;}
.y41{bottom:230.116000pt;}
.y79{bottom:231.113333pt;}
.yb9{bottom:232.160000pt;}
.y1da{bottom:232.884000pt;}
.yba{bottom:236.017333pt;}
.y20f{bottom:241.490667pt;}
.y1ab{bottom:242.114667pt;}
.y182{bottom:243.484000pt;}
.y12b{bottom:244.421333pt;}
.y160{bottom:245.077333pt;}
.yf2{bottom:246.578667pt;}
.y40{bottom:246.853333pt;}
.y78{bottom:247.850667pt;}
.yb8{bottom:252.378667pt;}
.y1d9{bottom:256.474667pt;}
.y20e{bottom:256.833333pt;}
.y1aa{bottom:258.852000pt;}
.y12a{bottom:259.033333pt;}
.y181{bottom:260.220000pt;}
.y15f{bottom:261.814667pt;}
.yf1{bottom:263.316000pt;}
.y3f{bottom:263.590667pt;}
.y77{bottom:264.588000pt;}
.yb7{bottom:266.990667pt;}
.y1d8{bottom:272.096000pt;}
.y20d{bottom:272.176000pt;}
.y1c{bottom:273.154667pt;}
.y1a9{bottom:275.589333pt;}
.y180{bottom:276.957333pt;}
.y15e{bottom:278.552000pt;}
.y129{bottom:280.220000pt;}
.y76{bottom:281.325333pt;}
.yf0{bottom:284.038667pt;}
.y3e{bottom:284.313333pt;}
.y20c{bottom:287.518667pt;}
.y1d7{bottom:287.717333pt;}
.yb6{bottom:288.178667pt;}
.y1b{bottom:289.054667pt;}
.y1a8{bottom:292.326667pt;}
.y17f{bottom:293.694667pt;}
.y15d{bottom:295.289333pt;}
.y75{bottom:298.062667pt;}
.y128{bottom:301.406667pt;}
.yef{bottom:301.972000pt;}
.y20b{bottom:302.861333pt;}
.y1d6{bottom:303.340000pt;}
.y1a{bottom:304.954667pt;}
.y1a7{bottom:309.064000pt;}
.yb5{bottom:309.365333pt;}
.y17e{bottom:310.432000pt;}
.y15c{bottom:312.026667pt;}
.y74{bottom:314.800000pt;}
.y20a{bottom:318.202667pt;}
.y1d5{bottom:318.961333pt;}
.y19{bottom:320.856000pt;}
.y1a6{bottom:325.801333pt;}
.y17d{bottom:327.169333pt;}
.y15b{bottom:328.764000pt;}
.y127{bottom:329.513333pt;}
.yee{bottom:331.328000pt;}
.y73{bottom:331.537333pt;}
.y209{bottom:333.545333pt;}
.y1d4{bottom:334.582667pt;}
.yb4{bottom:337.472000pt;}
.y1a5{bottom:342.538667pt;}
.y17c{bottom:343.906667pt;}
.yed{bottom:343.948000pt;}
.y15a{bottom:345.501333pt;}
.y72{bottom:348.274667pt;}
.y208{bottom:348.888000pt;}
.y1d3{bottom:350.204000pt;}
.y3d{bottom:351.113333pt;}
.y240{bottom:352.873333pt;}
.y18{bottom:354.688000pt;}
.y1a4{bottom:359.276000pt;}
.y17b{bottom:360.644000pt;}
.y126{bottom:361.281333pt;}
.y159{bottom:362.238667pt;}
.yb3{bottom:362.537333pt;}
.y9e{bottom:363.449467pt;}
.yec{bottom:364.166667pt;}
.y207{bottom:364.230667pt;}
.y71{bottom:365.012000pt;}
.y1d2{bottom:365.825333pt;}
.y23f{bottom:368.216000pt;}
.y3c{bottom:368.408000pt;}
.y17{bottom:370.589333pt;}
.y1a3{bottom:376.013333pt;}
.y17a{bottom:377.381333pt;}
.y125{bottom:378.018667pt;}
.y104{bottom:378.676000pt;}
.yeb{bottom:378.778667pt;}
.y158{bottom:378.976000pt;}
.y206{bottom:379.573333pt;}
.yb2{bottom:379.633333pt;}
.y9d{bottom:380.729467pt;}
.y1d1{bottom:381.446667pt;}
.y70{bottom:381.749333pt;}
.y23e{bottom:383.558667pt;}
.y3b{bottom:385.704000pt;}
.y16{bottom:386.489333pt;}
.y1a2{bottom:392.750667pt;}
.y124{bottom:394.756000pt;}
.y205{bottom:394.916000pt;}
.y157{bottom:395.713333pt;}
.y103{bottom:395.956000pt;}
.yb1{bottom:396.729333pt;}
.y9c{bottom:397.689467pt;}
.y179{bottom:398.104000pt;}
.y6f{bottom:398.486667pt;}
.y23d{bottom:398.901333pt;}
.yea{bottom:399.793333pt;}
.y1d0{bottom:405.038667pt;}
.y1a1{bottom:409.488000pt;}
.y204{bottom:410.258667pt;}
.y123{bottom:411.493333pt;}
.y156{bottom:412.450667pt;}
.y102{bottom:412.916000pt;}
.yb0{bottom:413.825333pt;}
.y23c{bottom:414.244000pt;}
.y9b{bottom:414.969467pt;}
.y6e{bottom:415.224000pt;}
.y178{bottom:416.037333pt;}
.yd0{bottom:417.589200pt;}
.y15{bottom:418.330667pt;}
.y3a{bottom:418.938667pt;}
.y1cf{bottom:420.660000pt;}
.ye9{bottom:420.806667pt;}
.y203{bottom:425.601333pt;}
.y1a0{bottom:426.225333pt;}
.y122{bottom:428.230667pt;}
.y155{bottom:429.188000pt;}
.y23b{bottom:429.585333pt;}
.y101{bottom:429.876000pt;}
.y9a{bottom:431.929467pt;}
.y6d{bottom:431.961333pt;}
.y8c{bottom:433.762533pt;}
.ycf{bottom:434.229200pt;}
.y14{bottom:434.230667pt;}
.y39{bottom:436.234667pt;}
.y202{bottom:440.944000pt;}
.y1ce{bottom:444.250667pt;}
.y23a{bottom:444.928000pt;}
.y121{bottom:444.968000pt;}
.y154{bottom:445.925333pt;}
.y19f{bottom:446.948000pt;}
.y100{bottom:447.182667pt;}
.y6c{bottom:448.698667pt;}
.y99{bottom:448.889467pt;}
.ye8{bottom:448.913333pt;}
.y13{bottom:450.130667pt;}
.yce{bottom:451.189200pt;}
.y201{bottom:456.285333pt;}
.y239{bottom:460.270667pt;}
.y120{bottom:461.705333pt;}
.y153{bottom:462.662667pt;}
.yff{bottom:464.142667pt;}
.y6b{bottom:465.436000pt;}
.y12{bottom:466.032000pt;}
.y1cd{bottom:467.842667pt;}
.ycd{bottom:468.469200pt;}
.y38{bottom:469.469333pt;}
.y98{bottom:470.329467pt;}
.y200{bottom:471.628000pt;}
.y238{bottom:475.613333pt;}
.y19e{bottom:476.836000pt;}
.ye7{bottom:477.964000pt;}
.y11f{bottom:478.442667pt;}
.y152{bottom:479.398667pt;}
.yfe{bottom:481.742667pt;}
.y11{bottom:481.932000pt;}
.y6a{bottom:482.173333pt;}
.ycc{bottom:485.429200pt;}
.y37{bottom:486.764000pt;}
.y1ff{bottom:486.970667pt;}
.y237{bottom:490.956000pt;}
.y1cc{bottom:491.434667pt;}
.y97{bottom:491.796133pt;}
.y19d{bottom:493.573333pt;}
.ye6{bottom:495.060000pt;}
.y11e{bottom:495.180000pt;}
.y151{bottom:496.136000pt;}
.y10{bottom:497.832000pt;}
.yfd{bottom:498.702667pt;}
.y69{bottom:498.910667pt;}
.y1fe{bottom:502.313333pt;}
.ycb{bottom:502.749200pt;}
.y36{bottom:504.060000pt;}
.y236{bottom:506.298667pt;}
.y1cb{bottom:507.056000pt;}
.y19c{bottom:510.310667pt;}
.ye5{bottom:512.156000pt;}
.y150{bottom:512.873333pt;}
.y96{bottom:512.916133pt;}
.yf{bottom:513.733333pt;}
.y68{bottom:515.648000pt;}
.yfc{bottom:515.662667pt;}
.y11d{bottom:515.901333pt;}
.y1fd{bottom:517.656000pt;}
.yca{bottom:520.029200pt;}
.y35{bottom:521.354667pt;}
.y235{bottom:521.641333pt;}
.y1ca{bottom:522.677333pt;}
.y19b{bottom:527.048000pt;}
.ye4{bottom:529.252000pt;}
.y14f{bottom:529.610667pt;}
.ye{bottom:529.633333pt;}
.y67{bottom:532.384000pt;}
.y1fc{bottom:532.998667pt;}
.yc9{bottom:536.669200pt;}
.yfb{bottom:536.782667pt;}
.y234{bottom:536.984000pt;}
.y34{bottom:538.650667pt;}
.y11c{bottom:542.698667pt;}
.y95{bottom:545.236133pt;}
.yd{bottom:545.533333pt;}
.y1c9{bottom:546.269333pt;}
.y14e{bottom:546.348000pt;}
.y19a{bottom:547.769333pt;}
.y1fb{bottom:548.341333pt;}
.y66{bottom:549.121333pt;}
.yc5{bottom:549.189467pt;}
.y233{bottom:552.325333pt;}
.y33{bottom:555.945333pt;}
.y11b{bottom:559.794667pt;}
.yc{bottom:561.434667pt;}
.y1c8{bottom:561.890667pt;}
.y94{bottom:562.836133pt;}
.y14d{bottom:563.085333pt;}
.y1fa{bottom:563.684000pt;}
.y199{bottom:564.506667pt;}
.y65{bottom:565.858667pt;}
.y232{bottom:567.668000pt;}
.yfa{bottom:569.782667pt;}
.y32{bottom:573.240000pt;}
.y11a{bottom:576.890667pt;}
.y1c7{bottom:577.512000pt;}
.y1f9{bottom:579.025333pt;}
.y93{bottom:579.796133pt;}
.y14c{bottom:579.822667pt;}
.y198{bottom:581.244000pt;}
.y9{bottom:581.319968pt;}
.y64{bottom:582.596000pt;}
.y231{bottom:583.010667pt;}
.yc7{bottom:585.629200pt;}
.yf9{bottom:586.742667pt;}
.y31{bottom:590.536000pt;}
.y1c6{bottom:593.133333pt;}
.y119{bottom:593.986667pt;}
.yc6{bottom:594.269200pt;}
.y1f8{bottom:594.368000pt;}
.y14b{bottom:596.560000pt;}
.y92{bottom:596.796133pt;}
.y197{bottom:597.981333pt;}
.y230{bottom:598.353333pt;}
.y63{bottom:599.333333pt;}
.yf8{bottom:603.702667pt;}
.y30{bottom:607.830667pt;}
.y1c5{bottom:608.754667pt;}
.y1f7{bottom:609.710667pt;}
.y118{bottom:611.081333pt;}
.y14a{bottom:613.297333pt;}
.y22f{bottom:613.696000pt;}
.y91{bottom:613.756133pt;}
.y196{bottom:614.718667pt;}
.y62{bottom:616.070667pt;}
.y1c4{bottom:624.376000pt;}
.y1f6{bottom:625.053333pt;}
.y2f{bottom:625.125333pt;}
.y22e{bottom:629.038667pt;}
.y149{bottom:630.034667pt;}
.y90{bottom:630.716133pt;}
.yf4{bottom:631.018667pt;}
.y195{bottom:631.456000pt;}
.y61{bottom:632.808000pt;}
.y1f5{bottom:640.396000pt;}
.y2e{bottom:642.421333pt;}
.y22d{bottom:644.381333pt;}
.y148{bottom:646.772000pt;}
.y194{bottom:648.193333pt;}
.y60{bottom:649.545333pt;}
.yf6{bottom:652.662667pt;}
.y1f4{bottom:655.738667pt;}
.y1c3{bottom:655.937333pt;}
.y2d{bottom:659.716000pt;}
.y22c{bottom:659.724000pt;}
.yf5{bottom:661.302667pt;}
.y147{bottom:663.509333pt;}
.y193{bottom:664.930667pt;}
.y5f{bottom:666.282667pt;}
.y1f3{bottom:671.081333pt;}
.y1c2{bottom:672.674667pt;}
.y22b{bottom:675.066667pt;}
.y2c{bottom:677.012000pt;}
.y8e{bottom:679.676133pt;}
.y146{bottom:680.246667pt;}
.y5e{bottom:683.020000pt;}
.y192{bottom:685.653333pt;}
.y1f2{bottom:686.424000pt;}
.y8d{bottom:688.316133pt;}
.y1c1{bottom:689.412000pt;}
.y22a{bottom:690.408000pt;}
.y2b{bottom:694.306667pt;}
.y145{bottom:696.984000pt;}
.y5d{bottom:699.757333pt;}
.y177{bottom:700.969333pt;}
.y1f1{bottom:701.766667pt;}
.y191{bottom:703.585333pt;}
.y229{bottom:705.750667pt;}
.y1c0{bottom:706.149333pt;}
.y2a{bottom:711.601333pt;}
.y144{bottom:713.721333pt;}
.y5c{bottom:716.494667pt;}
.y1f0{bottom:717.108000pt;}
.y228{bottom:721.093333pt;}
.y1bf{bottom:722.886667pt;}
.y143{bottom:730.458667pt;}
.y176{bottom:730.857333pt;}
.y1ef{bottom:732.450667pt;}
.y5b{bottom:733.232000pt;}
.y190{bottom:735.638667pt;}
.y227{bottom:736.436000pt;}
.y1be{bottom:739.624000pt;}
.y29{bottom:745.900000pt;}
.y142{bottom:747.196000pt;}
.y175{bottom:747.594667pt;}
.y1ee{bottom:747.793333pt;}
.y5a{bottom:749.969333pt;}
.y226{bottom:751.778667pt;}
.y18f{bottom:752.376000pt;}
.y1bd{bottom:756.361333pt;}
.y1ed{bottom:763.136000pt;}
.y141{bottom:763.933333pt;}
.y28{bottom:764.104000pt;}
.y174{bottom:764.332000pt;}
.y59{bottom:766.706667pt;}
.y225{bottom:767.121333pt;}
.y18e{bottom:773.098667pt;}
.y27{bottom:774.592000pt;}
.y1ec{bottom:778.478667pt;}
.y140{bottom:780.670667pt;}
.y173{bottom:781.069333pt;}
.y224{bottom:782.464000pt;}
.y58{bottom:783.444000pt;}
.y26{bottom:788.938667pt;}
.y18d{bottom:789.836000pt;}
.y1eb{bottom:793.821333pt;}
.y8b{bottom:795.017333pt;}
.y13f{bottom:797.408000pt;}
.y172{bottom:797.806667pt;}
.y57{bottom:800.181333pt;}
.y1bc{bottom:806.573333pt;}
.y25{bottom:807.142667pt;}
.y1ea{bottom:809.164000pt;}
.y18c{bottom:810.558667pt;}
.y8a{bottom:811.753333pt;}
.y222{bottom:813.148000pt;}
.y223{bottom:813.149333pt;}
.y13e{bottom:814.145333pt;}
.y171{bottom:814.544000pt;}
.y56{bottom:816.918667pt;}
.y1bb{bottom:823.310667pt;}
.y1e9{bottom:824.506667pt;}
.y18b{bottom:827.296000pt;}
.y89{bottom:828.490667pt;}
.y13d{bottom:830.882667pt;}
.y170{bottom:831.281333pt;}
.y55{bottom:833.656000pt;}
.y1e8{bottom:839.848000pt;}
.y1ba{bottom:840.048000pt;}
.y8{bottom:842.869333pt;}
.y221{bottom:843.833333pt;}
.y18a{bottom:844.033333pt;}
.y88{bottom:845.228000pt;}
.y13c{bottom:847.620000pt;}
.y16f{bottom:848.018667pt;}
.y54{bottom:850.393333pt;}
.y1e7{bottom:855.190667pt;}
.y1b9{bottom:856.785333pt;}
.y220{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.y189{bottom:860.770667pt;}
.y87{bottom:861.965333pt;}
.y13b{bottom:864.357333pt;}
.y16e{bottom:864.754667pt;}
.y53{bottom:867.130667pt;}
.y1e6{bottom:870.533333pt;}
.y1b8{bottom:873.522667pt;}
.y21f{bottom:874.518667pt;}
.y86{bottom:878.702667pt;}
.y13a{bottom:881.094667pt;}
.y16d{bottom:881.492000pt;}
.y52{bottom:883.868000pt;}
.y1e5{bottom:885.876000pt;}
.y21e{bottom:889.861333pt;}
.y1b7{bottom:894.245333pt;}
.y139{bottom:897.832000pt;}
.y16c{bottom:898.229333pt;}
.y85{bottom:899.425333pt;}
.y6{bottom:900.404000pt;}
.y51{bottom:900.605333pt;}
.y1e4{bottom:901.218667pt;}
.y21d{bottom:905.204000pt;}
.y1b6{bottom:910.982667pt;}
.y138{bottom:914.569333pt;}
.y16b{bottom:914.966667pt;}
.y1e3{bottom:916.561333pt;}
.y50{bottom:917.342667pt;}
.y84{bottom:917.358667pt;}
.y21c{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y1b5{bottom:927.720000pt;}
.y16a{bottom:931.704000pt;}
.y1e2{bottom:931.904000pt;}
.y4f{bottom:934.080000pt;}
.y83{bottom:935.290667pt;}
.y21b{bottom:935.889333pt;}
.y1b4{bottom:944.456000pt;}
.y1e1{bottom:947.246667pt;}
.yc4{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y21a{bottom:951.230667pt;}
.y1e0{bottom:962.589333pt;}
.y82{bottom:965.178667pt;}
.y219{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y81{bottom:981.916000pt;}
.y4c{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h2c{height:-195.884000pt;}
.h25{height:-192.184133pt;}
.h2b{height:-177.964000pt;}
.h24{height:-173.944133pt;}
.h1d{height:-161.190533pt;}
.h2a{height:-160.044000pt;}
.h1c{height:-142.950533pt;}
.h29{height:-141.470667pt;}
.h23{height:-137.464133pt;}
.h1b{height:-124.390533pt;}
.h28{height:-122.590667pt;}
.h22{height:-118.904133pt;}
.h19{height:-105.817200pt;}
.h8{height:22.673858pt;}
.h2e{height:24.760382pt;}
.hc{height:27.672303pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.hb{height:32.284045pt;}
.he{height:34.574438pt;}
.h1e{height:34.717901pt;}
.h10{height:35.100467pt;}
.h20{height:36.873667pt;}
.hd{height:36.896250pt;}
.h14{height:37.723125pt;}
.h11{height:38.415786pt;}
.h4{height:39.000258pt;}
.h17{height:39.401250pt;}
.h16{height:39.427500pt;}
.hf{height:41.508454pt;}
.h1a{height:41.711250pt;}
.h18{height:43.438750pt;}
.h1f{height:43.557639pt;}
.h2{height:45.272024pt;}
.h12{height:46.120196pt;}
.h2d{height:47.309193pt;}
.h2f{height:47.314526pt;}
.h15{height:48.011250pt;}
.h7{height:48.486756pt;}
.h26{height:49.644045pt;}
.h6{height:69.148877pt;}
.h5{height:69.435802pt;}
.h3{height:91.114522pt;}
.h13{height:349.174133pt;}
.h27{height:364.181600pt;}
.h21{height:390.194533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w17{width:-20.167600pt;}
.we{width:-18.439200pt;}
.w15{width:28.178667pt;}
.wc{width:28.466667pt;}
.w9{width:37.760000pt;}
.w1a{width:39.040000pt;}
.w6{width:56.666667pt;}
.wd{width:57.094133pt;}
.wb{width:66.258667pt;}
.w3{width:66.991004pt;}
.w16{width:74.565733pt;}
.wa{width:75.552000pt;}
.w14{width:85.152000pt;}
.w8{width:85.574133pt;}
.w13{width:94.426667pt;}
.w12{width:102.765733pt;}
.w10{width:108.471333pt;}
.w5{width:109.786667pt;}
.w1b{width:141.506667pt;}
.w1c{width:164.319867pt;}
.w19{width:173.826667pt;}
.w7{width:179.586667pt;}
.w2{width:192.069546pt;}
.w11{width:208.066667pt;}
.wf{width:419.317067pt;}
.w4{width:439.332267pt;}
.w18{width:520.393467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x78{left:-175.136667pt;}
.x89{left:-172.134400pt;}
.x4d{left:-166.129867pt;}
.x7a{left:-1.315333pt;}
.x0{left:0.000000pt;}
.x5f{left:0.960000pt;}
.x5a{left:3.200000pt;}
.x91{left:4.160000pt;}
.x64{left:5.106667pt;}
.x4f{left:7.691467pt;}
.x56{left:9.600000pt;}
.x5d{left:10.546667pt;}
.x5c{left:11.506667pt;}
.x62{left:14.080000pt;}
.x58{left:15.040000pt;}
.x60{left:16.640000pt;}
.x57{left:18.560000pt;}
.x80{left:20.826667pt;}
.x55{left:23.026667pt;}
.x82{left:24.666667pt;}
.x3{left:26.021437pt;}
.x79{left:27.164667pt;}
.x53{left:28.160000pt;}
.x83{left:30.044667pt;}
.x63{left:31.360000pt;}
.x61{left:34.240000pt;}
.x4e{left:36.171467pt;}
.x54{left:37.760000pt;}
.x8e{left:41.600000pt;}
.x1{left:48.000000pt;}
.x2{left:51.402768pt;}
.x7c{left:53.404667pt;}
.x52{left:54.720000pt;}
.x6e{left:57.792000pt;}
.x87{left:59.221333pt;}
.x90{left:60.826667pt;}
.x92{left:61.773333pt;}
.x8f{left:63.373333pt;}
.x6d{left:65.336000pt;}
.x86{left:66.764000pt;}
.x70{left:76.346667pt;}
.x6f{left:85.264000pt;}
.x88{left:86.693333pt;}
.x6b{left:131.712000pt;}
.x73{left:141.305333pt;}
.xd2{left:147.628000pt;}
.x74{left:148.668000pt;}
.x84{left:198.224000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x8a{left:224.706667pt;}
.x96{left:226.578667pt;}
.x51{left:230.710667pt;}
.x9f{left:232.966667pt;}
.x97{left:235.209333pt;}
.x98{left:239.314667pt;}
.x5{left:241.085333pt;}
.x99{left:247.289333pt;}
.xa{left:251.365333pt;}
.xc7{left:253.769333pt;}
.x9a{left:261.248000pt;}
.x85{left:264.917333pt;}
.x9d{left:266.882667pt;}
.x9b{left:271.206667pt;}
.x71{left:272.170667pt;}
.x7{left:275.078667pt;}
.xa2{left:276.509333pt;}
.xb3{left:277.656000pt;}
.x72{left:279.461333pt;}
.x75{left:281.857333pt;}
.xbd{left:284.853333pt;}
.x9e{left:287.004000pt;}
.x8{left:288.777333pt;}
.xbe{left:291.362667pt;}
.x76{left:296.096000pt;}
.xbf{left:304.645333pt;}
.x32{left:306.996000pt;}
.xc0{left:307.900000pt;}
.x6c{left:311.384000pt;}
.xad{left:318.720000pt;}
.x33{left:320.280000pt;}
.xc1{left:321.184000pt;}
.x34{left:323.546667pt;}
.xc2{left:324.438667pt;}
.x9{left:327.562667pt;}
.x7d{left:331.504000pt;}
.x35{left:336.830667pt;}
.xae{left:338.512000pt;}
.x36{left:340.098667pt;}
.xb0{left:343.489333pt;}
.xcd{left:347.920000pt;}
.xaf{left:351.796000pt;}
.x37{left:353.382667pt;}
.xb1{left:356.773333pt;}
.x7f{left:359.984000pt;}
.xb7{left:362.638667pt;}
.xa3{left:371.081333pt;}
.xb2{left:373.424000pt;}
.xb8{left:375.922667pt;}
.xb9{left:379.176000pt;}
.xce{left:381.637333pt;}
.xc8{left:382.837333pt;}
.xa4{left:385.324000pt;}
.xba{left:392.460000pt;}
.x29{left:396.910667pt;}
.x8b{left:398.533333pt;}
.x69{left:405.080000pt;}
.x2a{left:410.193333pt;}
.x24{left:415.417333pt;}
.xa0{left:423.522667pt;}
.x25{left:428.701333pt;}
.xa1{left:431.180000pt;}
.x50{left:432.171467pt;}
.x59{left:434.937333pt;}
.x8c{left:437.573333pt;}
.x7b{left:438.844667pt;}
.x3c{left:444.810667pt;}
.x81{left:454.410667pt;}
.xa5{left:456.221333pt;}
.x3d{left:458.093333pt;}
.xb{left:461.065333pt;}
.x2d{left:464.828000pt;}
.xc{left:467.706667pt;}
.xb4{left:468.722667pt;}
.xd{left:471.064000pt;}
.xb5{left:475.497333pt;}
.xe{left:477.706667pt;}
.x9c{left:481.144000pt;}
.xcb{left:482.340000pt;}
.x77{left:483.482667pt;}
.x2e{left:484.706667pt;}
.xb6{left:488.780000pt;}
.xcc{left:495.624000pt;}
.x2f{left:497.990667pt;}
.x44{left:502.382667pt;}
.x5b{left:510.497333pt;}
.x11{left:513.777333pt;}
.x45{left:515.665333pt;}
.x46{left:519.033333pt;}
.x12{left:520.418667pt;}
.x13{left:523.736000pt;}
.xbb{left:528.126667pt;}
.x14{left:530.378667pt;}
.x47{left:532.316000pt;}
.x48{left:535.684000pt;}
.x7e{left:539.570667pt;}
.xbc{left:541.410667pt;}
.x49{left:548.966667pt;}
.x38{left:552.081333pt;}
.x4c{left:554.352000pt;}
.x39{left:565.364000pt;}
.x17{left:567.232000pt;}
.x3a{left:568.701333pt;}
.xc3{left:570.278667pt;}
.x18{left:573.873333pt;}
.x19{left:577.260000pt;}
.x8d{left:579.093333pt;}
.x3e{left:580.985333pt;}
.x3b{left:581.985333pt;}
.x1a{left:583.902667pt;}
.x65{left:587.152000pt;}
.x21{left:589.878667pt;}
.xd3{left:591.308000pt;}
.x6a{left:592.252000pt;}
.x3f{left:594.268000pt;}
.x40{left:597.609333pt;}
.xc4{left:600.133333pt;}
.x93{left:601.830667pt;}
.x22{left:603.161333pt;}
.x30{left:605.149333pt;}
.x41{left:610.893333pt;}
.x42{left:614.233333pt;}
.xd4{left:615.218667pt;}
.x31{left:618.432000pt;}
.x4a{left:619.418667pt;}
.x2b{left:621.694667pt;}
.xc9{left:622.905333pt;}
.x43{left:627.517333pt;}
.xd9{left:629.100000pt;}
.xa6{left:630.377333pt;}
.x4b{left:632.701333pt;}
.x2c{left:634.978667pt;}
.xca{left:640.768000pt;}
.x1d{left:641.898667pt;}
.xa7{left:643.661333pt;}
.xd7{left:647.010667pt;}
.x1e{left:648.540000pt;}
.xd8{left:651.854667pt;}
.xcf{left:656.225333pt;}
.x26{left:662.830667pt;}
.x1f{left:664.170667pt;}
.x94{left:666.434667pt;}
.x20{left:670.813333pt;}
.xa8{left:672.205333pt;}
.x66{left:673.333333pt;}
.x95{left:674.408000pt;}
.x27{left:676.114667pt;}
.xc6{left:679.350667pt;}
.x5e{left:680.790667pt;}
.x28{left:682.696000pt;}
.xa9{left:685.488000pt;}
.x67{left:687.404000pt;}
.xaa{left:688.876000pt;}
.xf{left:696.337333pt;}
.x68{left:697.362667pt;}
.x10{left:702.980000pt;}
.xab{left:705.546667pt;}
.xd5{left:708.274667pt;}
.xc5{left:710.172000pt;}
.xac{left:718.829333pt;}
.xd0{left:720.298667pt;}
.x1b{left:723.698667pt;}
.x23{left:726.958667pt;}
.x1c{left:730.340000pt;}
.xd6{left:732.185333pt;}
.x15{left:733.484000pt;}
.x16{left:740.126667pt;}
.xd1{left:744.209333pt;}
}




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