
    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_ff61a07eed09cc70fe2c3b6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;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_3912b3fe124df5e815e0ff9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_263c3acb4eb6c0e6a99e361f.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_4bc72756ba5b28687e1fd10d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee2c3d66ff27e08f96958a28.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a01b2d354cbaef0fd32c5b4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_b6d85b8c5279690f7c8ca9f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c049145420bc84098d2d576e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200195;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_8bddf6be9d301edc8e44536d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a7c8da2339fcc85998fc6b34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_b6d85b8c5279690f7c8ca9f5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c049145420bc84098d2d576e.woff2')format("woff");}.fff{font-family:fff;line-height:1.200195;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_8bddf6be9d301edc8e44536d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a7c8da2339fcc85998fc6b34.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_6cda87624adfce107c0f3b19.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3b11dd6ba9267675863502ad.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.488000;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_9733e40a1944bab4056813b6.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e5cf9b17be1e744789539341.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.988000;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_87d17466fcd84fe3f6530ae6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b4f4d14b6f258c2a4cb41f59.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.200195;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_030a16959a84c10ae5826cbd.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_16f2e1c55976b4635c417173.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2d2be31935c1beba4ae3cd86.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.200195;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_8f7f6557e69338a630a1f80b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2c{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);}
.m18{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);}
.m11{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);}
.m17{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);}
.mb{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);}
.m14{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);}
.m24{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);}
.m9{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);}
.m1b{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);}
.m2b{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);}
.m25{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);}
.m1{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);}
.m1c{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);}
.m26{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);}
.m2a{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);}
.me{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);}
.m16{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);}
.m1f{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);}
.m15{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);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m5{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);}
.m7{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);}
.m19{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);}
.m2{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);}
.m6{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);}
.m28{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);}
.m1d{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);}
.m27{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m29{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);}
.m1a{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);}
.m23{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);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.md{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);}
.m12{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);}
.m3{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);}
.ma{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:33.438000px;}
.v5{vertical-align:36.358200px;}
.v3{vertical-align:40.470000px;}
.ls2f{letter-spacing:-0.270000px;}
.ls6d{letter-spacing:-0.240480px;}
.ls31{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.199800px;}
.ls30{letter-spacing:-0.194400px;}
.ls32{letter-spacing:-0.129600px;}
.ls4b{letter-spacing:-0.126252px;}
.ls4a{letter-spacing:-0.120240px;}
.ls6c{letter-spacing:-0.108216px;}
.ls35{letter-spacing:-0.102204px;}
.ls50{letter-spacing:-0.096192px;}
.ls51{letter-spacing:-0.090180px;}
.ls2a{letter-spacing:-0.086184px;}
.ls4f{letter-spacing:-0.084168px;}
.ls47{letter-spacing:-0.072144px;}
.ls2c{letter-spacing:-0.066132px;}
.ls46{letter-spacing:-0.054108px;}
.ls6a{letter-spacing:-0.054000px;}
.ls4c{letter-spacing:-0.048096px;}
.ls6b{letter-spacing:-0.043200px;}
.ls45{letter-spacing:-0.042084px;}
.ls4e{letter-spacing:-0.036072px;}
.ls6e{letter-spacing:-0.030060px;}
.ls49{letter-spacing:-0.024048px;}
.ls68{letter-spacing:-0.021600px;}
.ls34{letter-spacing:-0.018036px;}
.ls69{letter-spacing:-0.016200px;}
.ls33{letter-spacing:-0.012024px;}
.ls4d{letter-spacing:-0.006012px;}
.ls2d{letter-spacing:-0.005400px;}
.ls2b{letter-spacing:-0.004788px;}
.ls10{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000266px;}
.ls6f{letter-spacing:0.000412px;}
.ls26{letter-spacing:0.000422px;}
.ls3{letter-spacing:0.000583px;}
.ls70{letter-spacing:0.000701px;}
.ls7a{letter-spacing:0.000800px;}
.lsd{letter-spacing:0.000839px;}
.ls77{letter-spacing:0.001036px;}
.ls25{letter-spacing:0.001133px;}
.ls78{letter-spacing:0.001155px;}
.ls79{letter-spacing:0.001211px;}
.lsa{letter-spacing:0.001933px;}
.lsb{letter-spacing:0.001952px;}
.ls71{letter-spacing:0.002544px;}
.ls0{letter-spacing:0.002725px;}
.ls27{letter-spacing:0.003178px;}
.ls7{letter-spacing:0.003299px;}
.ls9{letter-spacing:0.003488px;}
.ls1{letter-spacing:0.004200px;}
.ls72{letter-spacing:0.004414px;}
.ls76{letter-spacing:0.004800px;}
.lsc{letter-spacing:0.005327px;}
.ls44{letter-spacing:0.005400px;}
.ls23{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.010800px;}
.ls67{letter-spacing:0.012024px;}
.ls60{letter-spacing:0.016200px;}
.ls3d{letter-spacing:0.018036px;}
.ls1b{letter-spacing:0.021600px;}
.ls42{letter-spacing:0.024048px;}
.ls20{letter-spacing:0.027000px;}
.ls41{letter-spacing:0.030060px;}
.ls43{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.036072px;}
.ls18{letter-spacing:0.037800px;}
.ls40{letter-spacing:0.042084px;}
.ls16{letter-spacing:0.048096px;}
.ls3f{letter-spacing:0.054108px;}
.ls24{letter-spacing:0.059400px;}
.ls21{letter-spacing:0.060120px;}
.ls1f{letter-spacing:0.064800px;}
.ls64{letter-spacing:0.066132px;}
.ls1e{letter-spacing:0.070200px;}
.ls15{letter-spacing:0.072144px;}
.ls5f{letter-spacing:0.075600px;}
.ls63{letter-spacing:0.078156px;}
.ls66{letter-spacing:0.081000px;}
.ls3e{letter-spacing:0.084168px;}
.ls61{letter-spacing:0.091800px;}
.ls22{letter-spacing:0.096639px;}
.ls48{letter-spacing:0.108216px;}
.ls1d{letter-spacing:0.118800px;}
.ls62{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.140400px;}
.ls29{letter-spacing:0.143640px;}
.ls1c{letter-spacing:0.151200px;}
.ls65{letter-spacing:0.168336px;}
.ls14{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.191520px;}
.ls39{letter-spacing:0.542815px;}
.ls3c{letter-spacing:0.648088px;}
.ls11{letter-spacing:1.275394px;}
.ls55{letter-spacing:1.342766px;}
.ls57{letter-spacing:1.494390px;}
.ls5{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.998354px;}
.ls6{letter-spacing:10.461300px;}
.lsf{letter-spacing:11.954850px;}
.ls59{letter-spacing:12.370200px;}
.ls75{letter-spacing:13.448400px;}
.ls74{letter-spacing:13.454400px;}
.ls5d{letter-spacing:13.863483px;}
.ls5b{letter-spacing:14.283483px;}
.ls53{letter-spacing:14.583483px;}
.ls28{letter-spacing:14.764573px;}
.ls12{letter-spacing:14.943900px;}
.ls56{letter-spacing:15.694200px;}
.ls58{letter-spacing:17.319483px;}
.ls36{letter-spacing:17.343767px;}
.ls3a{letter-spacing:18.097625px;}
.ls3b{letter-spacing:18.098570px;}
.ls5e{letter-spacing:19.486846px;}
.ls5a{letter-spacing:21.459483px;}
.ls37{letter-spacing:22.333625px;}
.ls38{letter-spacing:22.334570px;}
.ls4{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lse{letter-spacing:64.321654px;}
.ls52{letter-spacing:100.617483px;}
.ls54{letter-spacing:106.983483px;}
.ls5c{letter-spacing:181.575483px;}
.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;}
}
.ws5a{word-spacing:-15.102144px;}
.ws7{word-spacing:-14.943900px;}
.ws5b{word-spacing:-13.500000px;}
.ws5e{word-spacing:-13.449600px;}
.ws59{word-spacing:-12.161520px;}
.ws1e{word-spacing:-11.955150px;}
.wsa{word-spacing:-11.357400px;}
.ws10{word-spacing:-10.460700px;}
.ws141{word-spacing:-3.604493px;}
.ws116{word-spacing:-3.571128px;}
.ws52{word-spacing:-3.108331px;}
.ws118{word-spacing:-2.843676px;}
.ws109{word-spacing:-2.801592px;}
.ws10a{word-spacing:-2.765520px;}
.ws35{word-spacing:-2.689902px;}
.ws99{word-spacing:-2.630126px;}
.wsab{word-spacing:-2.507004px;}
.wsb9{word-spacing:-2.464920px;}
.ws8c{word-spacing:-2.450800px;}
.wsac{word-spacing:-2.416824px;}
.ws8b{word-spacing:-2.331248px;}
.wsf2{word-spacing:-2.092146px;}
.wsae{word-spacing:-2.001996px;}
.wsad{word-spacing:-1.995984px;}
.wsc{word-spacing:-1.908367px;}
.wsc7{word-spacing:-1.733492px;}
.ws85{word-spacing:-1.613941px;}
.ws3c{word-spacing:-1.494390px;}
.ws123{word-spacing:-1.452557px;}
.ws7a{word-spacing:-1.374839px;}
.ws142{word-spacing:-1.344960px;}
.wsb{word-spacing:-1.322630px;}
.ws124{word-spacing:-1.291162px;}
.ws11f{word-spacing:-1.195512px;}
.ws44{word-spacing:-1.016185px;}
.wsc2{word-spacing:-0.979956px;}
.wsd5{word-spacing:-0.956410px;}
.ws93{word-spacing:-0.836858px;}
.ws8e{word-spacing:-0.717307px;}
.wsea{word-spacing:-0.699379px;}
.ws83{word-spacing:-0.657532px;}
.wsf1{word-spacing:-0.597756px;}
.wsaa{word-spacing:-0.577152px;}
.ws140{word-spacing:-0.484186px;}
.wseb{word-spacing:-0.430387px;}
.ws120{word-spacing:-0.418429px;}
.ws87{word-spacing:-0.358654px;}
.ws106{word-spacing:-0.342684px;}
.ws6f{word-spacing:-0.324648px;}
.ws3f{word-spacing:-0.298878px;}
.ws73{word-spacing:-0.270540px;}
.ws26{word-spacing:-0.268992px;}
.ws60{word-spacing:-0.268128px;}
.wsb0{word-spacing:-0.252504px;}
.wsa2{word-spacing:-0.240480px;}
.ws31{word-spacing:-0.239102px;}
.ws6b{word-spacing:-0.237600px;}
.ws129{word-spacing:-0.215194px;}
.wsb6{word-spacing:-0.192384px;}
.ws2f{word-spacing:-0.179327px;}
.ws122{word-spacing:-0.161395px;}
.wsa3{word-spacing:-0.144288px;}
.wsa9{word-spacing:-0.138276px;}
.ws30{word-spacing:-0.119551px;}
.ws20{word-spacing:-0.107597px;}
.ws5f{word-spacing:-0.081396px;}
.ws1{word-spacing:-0.059776px;}
.ws2c{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws11{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.002392px;}
.ws5{word-spacing:-0.000883px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.001483px;}
.wsaf{word-spacing:0.042084px;}
.ws62{word-spacing:0.048096px;}
.ws125{word-spacing:0.049673px;}
.wsf3{word-spacing:0.053798px;}
.wsc3{word-spacing:0.054108px;}
.ws40{word-spacing:0.059776px;}
.ws63{word-spacing:0.060120px;}
.ws69{word-spacing:0.064800px;}
.ws113{word-spacing:0.066132px;}
.ws1d{word-spacing:0.095641px;}
.ws10d{word-spacing:0.102600px;}
.ws146{word-spacing:0.107597px;}
.wsfd{word-spacing:0.108000px;}
.ws70{word-spacing:0.108216px;}
.ws6a{word-spacing:0.113400px;}
.ws71{word-spacing:0.114228px;}
.ws34{word-spacing:0.119551px;}
.ws74{word-spacing:0.124200px;}
.ws64{word-spacing:0.145800px;}
.wsc4{word-spacing:0.151200px;}
.ws100{word-spacing:0.156600px;}
.wsf4{word-spacing:0.161395px;}
.ws67{word-spacing:0.162000px;}
.ws61{word-spacing:0.162324px;}
.wsfe{word-spacing:0.167400px;}
.wsc5{word-spacing:0.172800px;}
.wsc6{word-spacing:0.178200px;}
.ws45{word-spacing:0.179327px;}
.wsff{word-spacing:0.183600px;}
.ws65{word-spacing:0.189000px;}
.ws11d{word-spacing:0.192384px;}
.ws72{word-spacing:0.198396px;}
.ws101{word-spacing:0.205200px;}
.ws12{word-spacing:0.209214px;}
.wse2{word-spacing:0.215194px;}
.ws10e{word-spacing:0.226800px;}
.ws37{word-spacing:0.239102px;}
.ws14{word-spacing:0.292900px;}
.ws3b{word-spacing:0.298878px;}
.ws6e{word-spacing:0.313200px;}
.ws134{word-spacing:0.322790px;}
.ws32{word-spacing:0.358654px;}
.ws6c{word-spacing:0.378000px;}
.ws66{word-spacing:0.383400px;}
.ws6d{word-spacing:0.399600px;}
.ws4c{word-spacing:0.418429px;}
.wsba{word-spacing:0.426852px;}
.ws28{word-spacing:0.430387px;}
.ws9c{word-spacing:0.450900px;}
.ws68{word-spacing:0.453600px;}
.wsa5{word-spacing:0.468936px;}
.ws112{word-spacing:0.474948px;}
.ws11e{word-spacing:0.478205px;}
.wsa4{word-spacing:0.480960px;}
.ws8d{word-spacing:0.537980px;}
.wsbb{word-spacing:0.553104px;}
.ws3e{word-spacing:0.597756px;}
.ws27{word-spacing:0.645581px;}
.ws53{word-spacing:0.657532px;}
.ws115{word-spacing:0.775548px;}
.ws39{word-spacing:0.777083px;}
.ws2d{word-spacing:0.806976px;}
.ws91{word-spacing:0.836858px;}
.ws9b{word-spacing:0.859716px;}
.ws7d{word-spacing:0.896634px;}
.ws121{word-spacing:1.022170px;}
.ws58{word-spacing:1.075961px;}
.ws81{word-spacing:1.135736px;}
.wsb1{word-spacing:1.184364px;}
.ws8a{word-spacing:1.195512px;}
.wsb2{word-spacing:1.226448px;}
.wse1{word-spacing:1.255288px;}
.ws11a{word-spacing:1.298592px;}
.ws119{word-spacing:1.418832px;}
.ws92{word-spacing:1.434614px;}
.ws29{word-spacing:1.452557px;}
.ws41{word-spacing:1.494390px;}
.wsbe{word-spacing:1.545084px;}
.ws78{word-spacing:1.554166px;}
.wsbf{word-spacing:1.635264px;}
.ws8f{word-spacing:1.733492px;}
.ws7b{word-spacing:1.793268px;}
.ws48{word-spacing:1.853044px;}
.ws7c{word-spacing:1.912819px;}
.ws4a{word-spacing:1.972595px;}
.ws14b{word-spacing:1.990541px;}
.ws13{word-spacing:2.008454px;}
.ws80{word-spacing:2.032370px;}
.ws43{word-spacing:2.092146px;}
.ws57{word-spacing:2.151922px;}
.ws25{word-spacing:2.151936px;}
.ws56{word-spacing:2.211697px;}
.ws117{word-spacing:2.224440px;}
.ws114{word-spacing:2.242476px;}
.wsb4{word-spacing:2.278548px;}
.wsb3{word-spacing:2.296584px;}
.ws79{word-spacing:2.331248px;}
.ws49{word-spacing:2.391024px;}
.ws98{word-spacing:2.450800px;}
.wse{word-spacing:2.509279px;}
.ws84{word-spacing:2.510575px;}
.ws3d{word-spacing:2.570351px;}
.ws14c{word-spacing:2.582323px;}
.ws90{word-spacing:2.689902px;}
.ws12f{word-spacing:2.797517px;}
.ws46{word-spacing:2.809453px;}
.wsf8{word-spacing:2.869229px;}
.ws1f{word-spacing:2.869236px;}
.ws3a{word-spacing:2.929004px;}
.wsb5{word-spacing:3.012012px;}
.ws9e{word-spacing:3.030048px;}
.ws9f{word-spacing:3.048084px;}
.ws13f{word-spacing:3.066509px;}
.ws9d{word-spacing:3.078144px;}
.ws130{word-spacing:3.222499px;}
.ws126{word-spacing:3.222576px;}
.ws12a{word-spacing:3.223882px;}
.ws136{word-spacing:3.227904px;}
.ws144{word-spacing:3.335501px;}
.wsfa{word-spacing:3.347434px;}
.ws36{word-spacing:3.407209px;}
.ws10f{word-spacing:3.444876px;}
.ws2e{word-spacing:3.586536px;}
.ws97{word-spacing:3.646312px;}
.ws5d{word-spacing:3.658291px;}
.ws110{word-spacing:3.703392px;}
.wsb8{word-spacing:3.739464px;}
.ws7e{word-spacing:3.765863px;}
.wsb7{word-spacing:3.781548px;}
.ws4d{word-spacing:3.825638px;}
.ws5c{word-spacing:3.981082px;}
.ws9a{word-spacing:4.004965px;}
.ws24{word-spacing:4.142477px;}
.ws86{word-spacing:4.244068px;}
.ws2b{word-spacing:4.303872px;}
.ws47{word-spacing:4.363619px;}
.ws111{word-spacing:4.382748px;}
.wsfc{word-spacing:4.423394px;}
.ws12c{word-spacing:4.519066px;}
.wsf0{word-spacing:4.542946px;}
.ws55{word-spacing:4.602721px;}
.ws4b{word-spacing:4.722272px;}
.wsa6{word-spacing:4.743468px;}
.ws88{word-spacing:4.841824px;}
.wsfb{word-spacing:4.961375px;}
.ws139{word-spacing:5.003251px;}
.ws2a{word-spacing:5.057050px;}
.ws12d{word-spacing:5.110848px;}
.wsf9{word-spacing:5.140702px;}
.wse0{word-spacing:5.260253px;}
.ws77{word-spacing:5.320028px;}
.ws23{word-spacing:5.326042px;}
.ws143{word-spacing:5.379840px;}
.wsa1{word-spacing:5.386752px;}
.wsbc{word-spacing:5.500980px;}
.wsbd{word-spacing:5.585148px;}
.wsa0{word-spacing:5.603184px;}
.ws76{word-spacing:5.738458px;}
.ws51{word-spacing:5.798233px;}
.ws75{word-spacing:5.977560px;}
.ws1a{word-spacing:6.067206px;}
.ws1b{word-spacing:6.150892px;}
.ws21{word-spacing:6.186816px;}
.wsc0{word-spacing:6.192360px;}
.ws4e{word-spacing:6.216662px;}
.ws138{word-spacing:6.294413px;}
.wsf5{word-spacing:6.395989px;}
.ws50{word-spacing:6.455765px;}
.ws131{word-spacing:6.455808px;}
.wsc1{word-spacing:6.583140px;}
.ws89{word-spacing:6.874194px;}
.ws108{word-spacing:6.937848px;}
.ws22{word-spacing:7.047590px;}
.ws82{word-spacing:7.053521px;}
.ws42{word-spacing:7.113296px;}
.ws11b{word-spacing:7.298568px;}
.ws11c{word-spacing:7.328628px;}
.ws7f{word-spacing:7.352399px;}
.ws137{word-spacing:7.370381px;}
.ws107{word-spacing:7.394760px;}
.wsf7{word-spacing:7.412174px;}
.ws13e{word-spacing:7.424179px;}
.ws33{word-spacing:7.471950px;}
.ws148{word-spacing:7.531776px;}
.ws12e{word-spacing:7.585574px;}
.ws10b{word-spacing:7.947864px;}
.ws4f{word-spacing:8.069706px;}
.wsf6{word-spacing:8.129482px;}
.ws10c{word-spacing:8.314596px;}
.wsd4{word-spacing:8.488135px;}
.ws18{word-spacing:8.661460px;}
.wsa7{word-spacing:9.420804px;}
.wsa8{word-spacing:9.799560px;}
.wsf{word-spacing:10.421275px;}
.ws38{word-spacing:11.904890px;}
.wsd1{word-spacing:13.054441px;}
.wsce{word-spacing:13.056790px;}
.wsc9{word-spacing:13.057925px;}
.ws132{word-spacing:13.234406px;}
.ws14a{word-spacing:13.387882px;}
.ws145{word-spacing:13.388534px;}
.ws128{word-spacing:13.395802px;}
.ws133{word-spacing:13.610995px;}
.ws54{word-spacing:14.884124px;}
.wsd2{word-spacing:14.910766px;}
.wscd{word-spacing:15.046928px;}
.wsd0{word-spacing:15.049981px;}
.wsd{word-spacing:15.483541px;}
.ws15{word-spacing:16.142252px;}
.ws16{word-spacing:16.151321px;}
.ws13b{word-spacing:16.462310px;}
.ws13c{word-spacing:16.569907px;}
.ws135{word-spacing:16.615373px;}
.ws127{word-spacing:16.620518px;}
.ws13a{word-spacing:16.621373px;}
.ws12b{word-spacing:16.623706px;}
.ws13d{word-spacing:16.626374px;}
.ws149{word-spacing:16.677504px;}
.ws17{word-spacing:17.699504px;}
.wsc8{word-spacing:18.036790px;}
.wscb{word-spacing:19.827070px;}
.ws19{word-spacing:27.448877px;}
.ws147{word-spacing:33.247411px;}
.ws6{word-spacing:40.042186px;}
.ws2{word-spacing:46.608830px;}
.ws4{word-spacing:46.627738px;}
.ws9{word-spacing:54.988186px;}
.wsdc{word-spacing:58.102029px;}
.wsdf{word-spacing:67.427046px;}
.wsde{word-spacing:73.404621px;}
.wsdd{word-spacing:79.382196px;}
.ws103{word-spacing:209.055600px;}
.ws105{word-spacing:237.508200px;}
.ws102{word-spacing:244.350000px;}
.ws104{word-spacing:282.560400px;}
.wsd7{word-spacing:319.871993px;}
.wsed{word-spacing:327.309466px;}
.wsd9{word-spacing:333.118300px;}
.wsd6{word-spacing:351.051025px;}
.wsef{word-spacing:355.661222px;}
.wsec{word-spacing:362.386022px;}
.wse4{word-spacing:371.531750px;}
.wse7{word-spacing:372.177331px;}
.wsd8{word-spacing:384.812368px;}
.wsda{word-spacing:385.681829px;}
.wse9{word-spacing:394.288474px;}
.wse3{word-spacing:395.525837px;}
.wsdb{word-spacing:397.676110px;}
.wsee{word-spacing:400.367693px;}
.wse8{word-spacing:403.488000px;}
.wse6{word-spacing:414.462874px;}
.wse5{word-spacing:426.944102px;}
.wsd3{word-spacing:666.921282px;}
.wscf{word-spacing:674.685070px;}
.wsca{word-spacing:832.252441px;}
.wscc{word-spacing:865.695282px;}
.ws94{word-spacing:975.795379px;}
.ws96{word-spacing:1020.229027px;}
.ws95{word-spacing:1024.558570px;}
._1{margin-left:-11.943245px;}
._2{margin-left:-7.962163px;}
._1c{margin-left:-6.918835px;}
._0{margin-left:-5.917824px;}
._3c{margin-left:-4.901560px;}
._7{margin-left:-3.849538px;}
._27{margin-left:-2.630133px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._3{width:2.994697px;}
._4{width:4.099000px;}
._22{width:5.943301px;}
._57{width:8.301019px;}
._b{width:11.094379px;}
._8{width:12.971268px;}
._9{width:14.275463px;}
._12{width:15.870528px;}
._1d{width:16.894032px;}
._14{width:18.231558px;}
._10{width:19.237498px;}
._55{width:20.248910px;}
._f{width:21.250368px;}
._11{width:23.057184px;}
._17{width:24.507996px;}
._1a{width:25.524181px;}
._18{width:27.018571px;}
._54{width:28.244352px;}
._13{width:29.427725px;}
._19{width:30.851777px;}
._a{width:32.637384px;}
._58{width:34.100936px;}
._d{width:35.614541px;}
._e{width:37.851744px;}
._c{width:56.810873px;}
._56{width:61.868160px;}
._2f{width:72.304747px;}
._2e{width:78.903990px;}
._39{width:85.359771px;}
._2d{width:88.707213px;}
._4f{width:90.066600px;}
._31{width:91.385167px;}
._24{width:120.555733px;}
._3e{width:125.049850px;}
._25{width:129.804652px;}
._49{width:131.976000px;}
._4a{width:141.539400px;}
._34{width:146.426677px;}
._52{width:148.014000px;}
._50{width:149.461200px;}
._26{width:161.047809px;}
._4d{width:163.150200px;}
._3b{width:170.432618px;}
._32{width:173.827881px;}
._51{width:181.872000px;}
._30{width:184.826619px;}
._38{width:190.565091px;}
._3a{width:192.764839px;}
._53{width:194.481000px;}
._36{width:195.681895px;}
._4b{width:200.961000px;}
._46{width:208.361203px;}
._4c{width:220.050000px;}
._3d{width:226.416307px;}
._23{width:236.664149px;}
._4e{width:255.706200px;}
._37{width:264.113174px;}
._35{width:270.090749px;}
._33{width:276.068324px;}
._42{width:394.665062px;}
._45{width:404.294976px;}
._2b{width:442.137337px;}
._2c{width:456.112883px;}
._28{width:562.178974px;}
._43{width:590.437440px;}
._3f{width:602.918669px;}
._2a{width:606.747773px;}
._44{width:617.336640px;}
._29{width:618.702923px;}
._40{width:630.786240px;}
._41{width:644.235840px;}
._1e{width:877.310909px;}
._21{width:902.037773px;}
._20{width:962.934835px;}
._1f{width:972.192763px;}
._15{width:1016.419168px;}
._48{width:2136.774276px;}
._1b{width:2160.905796px;}
._47{width:2545.200229px;}
._16{width:2569.110229px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(56,126,127);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsf{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fsd{font-size:65.880000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.ybc{bottom:-669.650550px;}
.yc5{bottom:-613.670550px;}
.yc4{bottom:-591.260451px;}
.y1af{bottom:-403.382550px;}
.y1ce{bottom:-311.575854px;}
.y1cd{bottom:-292.316412px;}
.y1cc{bottom:-273.147150px;}
.y1cb{bottom:-253.887708px;}
.y1ca{bottom:-234.718446px;}
.y1c9{bottom:-215.459004px;}
.y1c8{bottom:-196.199562px;}
.y1c7{bottom:-177.030300px;}
.y1c6{bottom:-157.770858px;}
.y1c5{bottom:-138.511416px;}
.y1c4{bottom:-119.342154px;}
.y1c3{bottom:-95.492550px;}
.yc3{bottom:-89.779992px;}
.y141{bottom:-78.205500px;}
.ycd{bottom:-71.921850px;}
.yc2{bottom:-70.520550px;}
.y1c2{bottom:-58.863000px;}
.y1c1{bottom:-41.583000px;}
.yc1{bottom:-33.711000px;}
.y1c0{bottom:-24.212550px;}
.y15c{bottom:-17.815500px;}
.yc0{bottom:-16.340550px;}
.yd6{bottom:-15.941850px;}
.y1bf{bottom:-0.810591px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y15b{bottom:4.602285px;}
.ybf{bottom:6.071196px;}
.yd5{bottom:6.468249px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.118560px;}
.y4e{bottom:31.890000px;}
.y13d{bottom:92.008500px;}
.y10c{bottom:94.291500px;}
.y164{bottom:94.804500px;}
.y24{bottom:102.823500px;}
.y194{bottom:103.570500px;}
.y85{bottom:109.366500px;}
.y13c{bottom:110.836500px;}
.y10b{bottom:113.121000px;}
.y163{bottom:113.634000px;}
.yd7{bottom:115.477500px;}
.y247{bottom:116.334000px;}
.y4d{bottom:118.831500px;}
.yb8{bottom:120.145500px;}
.y1ed{bottom:120.547500px;}
.y23{bottom:120.711000px;}
.y193{bottom:122.400000px;}
.y84{bottom:128.196000px;}
.y13b{bottom:129.666000px;}
.y10a{bottom:131.950500px;}
.y162{bottom:132.463500px;}
.y246{bottom:133.594500px;}
.y4c{bottom:137.661000px;}
.yca{bottom:137.907300px;}
.y22{bottom:138.600000px;}
.yb7{bottom:138.975000px;}
.y1ec{bottom:139.377000px;}
.y20d{bottom:144.534000px;}
.y83{bottom:147.025500px;}
.y13a{bottom:148.495500px;}
.y109{bottom:150.780000px;}
.y245{bottom:150.855000px;}
.y161{bottom:151.293000px;}
.y21{bottom:156.487500px;}
.y4b{bottom:156.490500px;}
.yb6{bottom:157.804500px;}
.y1eb{bottom:158.206500px;}
.y192{bottom:164.200500px;}
.y82{bottom:165.855000px;}
.y139{bottom:167.325000px;}
.y244{bottom:168.115500px;}
.y108{bottom:169.609500px;}
.y160{bottom:170.122500px;}
.y20c{bottom:171.075000px;}
.y20{bottom:174.375000px;}
.y4a{bottom:175.320000px;}
.yb5{bottom:176.634000px;}
.y1ea{bottom:177.036000px;}
.y191{bottom:178.398000px;}
.y81{bottom:184.684500px;}
.y243{bottom:185.376000px;}
.y138{bottom:186.154500px;}
.y107{bottom:188.439000px;}
.y15f{bottom:188.952000px;}
.y1f{bottom:192.264000px;}
.y190{bottom:192.594000px;}
.y49{bottom:194.149500px;}
.yb4{bottom:195.463500px;}
.y1e9{bottom:195.865500px;}
.y20b{bottom:197.614500px;}
.y241{bottom:202.635000px;}
.y242{bottom:202.636500px;}
.y80{bottom:203.514000px;}
.y137{bottom:204.984000px;}
.y18f{bottom:206.791500px;}
.y105{bottom:207.268500px;}
.y1e{bottom:210.151500px;}
.y15e{bottom:212.265000px;}
.y106{bottom:212.692500px;}
.y48{bottom:212.979000px;}
.yb3{bottom:214.291500px;}
.y1e8{bottom:214.695000px;}
.y240{bottom:219.895500px;}
.y18e{bottom:220.987500px;}
.y7f{bottom:222.343500px;}
.y20a{bottom:224.155500px;}
.y104{bottom:226.098000px;}
.y189{bottom:227.061000px;}
.y1d{bottom:228.039000px;}
.y136{bottom:228.297000px;}
.y47{bottom:231.808500px;}
.yb2{bottom:233.121000px;}
.y1e7{bottom:233.524500px;}
.y18d{bottom:235.185000px;}
.y23f{bottom:237.156000px;}
.y7e{bottom:241.173000px;}
.y209{bottom:241.729500px;}
.y15d{bottom:242.692500px;}
.y103{bottom:244.927500px;}
.y18c{bottom:249.381000px;}
.y46{bottom:250.638000px;}
.yb1{bottom:251.950500px;}
.y1e6{bottom:252.354000px;}
.y23e{bottom:254.416500px;}
.y208{bottom:259.303500px;}
.y7d{bottom:260.002500px;}
.y18b{bottom:263.578500px;}
.y102{bottom:263.757000px;}
.y13e{bottom:265.120950px;}
.y45{bottom:269.467500px;}
.y1ab{bottom:269.769000px;}
.y135{bottom:270.621000px;}
.yb0{bottom:270.780000px;}
.y1e5{bottom:271.183500px;}
.y23d{bottom:271.677000px;}
.y18a{bottom:277.774500px;}
.y7c{bottom:278.832000px;}
.y101{bottom:282.586500px;}
.y207{bottom:285.844500px;}
.y134{bottom:287.059500px;}
.y44{bottom:288.297000px;}
.y1aa{bottom:288.598500px;}
.y23c{bottom:288.937500px;}
.yaf{bottom:289.609500px;}
.y1e4{bottom:290.013000px;}
.y188{bottom:291.972000px;}
.y7b{bottom:297.661500px;}
.y100{bottom:301.416000px;}
.y206{bottom:303.418500px;}
.y133{bottom:303.498000px;}
.y23b{bottom:306.198000px;}
.y1c{bottom:307.299000px;}
.y1a9{bottom:307.428000px;}
.yae{bottom:308.439000px;}
.y1e3{bottom:308.842500px;}
.y43{bottom:311.610000px;}
.y187{bottom:313.371000px;}
.y7a{bottom:316.491000px;}
.y132{bottom:319.936500px;}
.yff{bottom:320.245500px;}
.y205{bottom:320.992500px;}
.y23a{bottom:323.458500px;}
.y1b{bottom:325.186500px;}
.y186{bottom:326.410500px;}
.yad{bottom:327.268500px;}
.y1e2{bottom:327.672000px;}
.y1a8{bottom:330.741000px;}
.y79{bottom:335.320500px;}
.y131{bottom:336.373500px;}
.y204{bottom:338.566500px;}
.yfe{bottom:339.075000px;}
.y239{bottom:340.719000px;}
.y1a{bottom:343.074000px;}
.yac{bottom:346.098000px;}
.y1e1{bottom:346.501500px;}
.y130{bottom:352.812000px;}
.y78{bottom:354.150000px;}
.y203{bottom:356.140500px;}
.yfd{bottom:357.904500px;}
.y238{bottom:357.978000px;}
.y19{bottom:360.963000px;}
.y185{bottom:364.821000px;}
.yab{bottom:364.927500px;}
.y1e0{bottom:365.331000px;}
.y77{bottom:372.979500px;}
.y202{bottom:373.714500px;}
.y237{bottom:375.238500px;}
.y1a7{bottom:376.053000px;}
.y12f{bottom:376.453500px;}
.yfc{bottom:376.734000px;}
.y42{bottom:383.256000px;}
.yaa{bottom:383.757000px;}
.y1df{bottom:384.160500px;}
.ybe{bottom:390.550620px;}
.y201{bottom:391.288500px;}
.y76{bottom:391.809000px;}
.y1a6{bottom:392.491500px;}
.y236{bottom:392.499000px;}
.y1be{bottom:393.749454px;}
.yfb{bottom:395.563500px;}
.y18{bottom:399.024000px;}
.ya9{bottom:402.586500px;}
.y41{bottom:402.712500px;}
.y1de{bottom:402.990000px;}
.y184{bottom:404.244000px;}
.y12e{bottom:408.073500px;}
.y1a5{bottom:408.930000px;}
.y235{bottom:409.759500px;}
.ybd{bottom:409.810062px;}
.y75{bottom:410.638500px;}
.y1bd{bottom:412.918716px;}
.yfa{bottom:414.393000px;}
.y17{bottom:416.913000px;}
.y183{bottom:418.440000px;}
.ya8{bottom:421.416000px;}
.y1dd{bottom:421.819500px;}
.y1a4{bottom:425.368500px;}
.y200{bottom:426.796500px;}
.y234{bottom:427.020000px;}
.y74{bottom:429.468000px;}
.y1bc{bottom:432.178158px;}
.y182{bottom:432.637500px;}
.y16{bottom:434.800500px;}
.yf9{bottom:437.704500px;}
.y40{bottom:440.103000px;}
.ya7{bottom:440.245500px;}
.y1dc{bottom:440.649000px;}
.y233{bottom:444.280500px;}
.y12d{bottom:445.177500px;}
.y1ff{bottom:445.626000px;}
.y181{bottom:446.833500px;}
.y73{bottom:448.297500px;}
.y1a3{bottom:449.008500px;}
.y1bb{bottom:451.437600px;}
.ya6{bottom:459.075000px;}
.y1db{bottom:459.478500px;}
.y3f{bottom:459.559500px;}
.y232{bottom:461.541000px;}
.y12c{bottom:464.007000px;}
.ybb{bottom:464.350035px;}
.y1fe{bottom:464.454000px;}
.y72{bottom:467.127000px;}
.y180{bottom:468.232500px;}
.y15{bottom:470.622000px;}
.yf8{bottom:471.328500px;}
.yba{bottom:474.159450px;}
.y1ba{bottom:475.107450px;}
.ya5{bottom:477.904500px;}
.y1da{bottom:478.308000px;}
.y231{bottom:478.801500px;}
.y3e{bottom:479.017500px;}
.y1a2{bottom:480.628500px;}
.y12b{bottom:482.836500px;}
.y1fd{bottom:483.283500px;}
.y71{bottom:485.956500px;}
.y14{bottom:488.509500px;}
.yf7{bottom:490.158000px;}
.y230{bottom:496.062000px;}
.ya4{bottom:496.734000px;}
.y1d9{bottom:497.137500px;}
.y17f{bottom:498.283500px;}
.y3d{bottom:498.474000px;}
.y1a1{bottom:499.861500px;}
.y12a{bottom:501.666000px;}
.y1fc{bottom:502.113000px;}
.y70{bottom:504.786000px;}
.y13{bottom:506.397000px;}
.yd4{bottom:507.948708px;}
.yf6{bottom:508.987500px;}
.y22f{bottom:513.321000px;}
.y1b9{bottom:513.537450px;}
.ya3{bottom:515.563500px;}
.y1d8{bottom:515.965500px;}
.y3c{bottom:517.930500px;}
.y129{bottom:520.495500px;}
.y1fb{bottom:520.942500px;}
.y6f{bottom:523.615500px;}
.yd3{bottom:527.208150px;}
.yf5{bottom:527.817000px;}
.y17e{bottom:529.999500px;}
.y22e{bottom:530.581500px;}
.y1b8{bottom:531.807000px;}
.ya2{bottom:534.393000px;}
.y1d7{bottom:534.795000px;}
.y15a{bottom:535.332627px;}
.y3b{bottom:537.388500px;}
.y128{bottom:539.323500px;}
.y1fa{bottom:539.772000px;}
.y12{bottom:542.218500px;}
.y6e{bottom:542.445000px;}
.y1a0{bottom:542.946000px;}
.yf4{bottom:546.646500px;}
.y22d{bottom:547.842000px;}
.y17d{bottom:548.829000px;}
.y1b7{bottom:549.987450px;}
.ya1{bottom:553.222500px;}
.y1d6{bottom:553.624500px;}
.y159{bottom:554.592069px;}
.y3a{bottom:556.845000px;}
.y127{bottom:558.153000px;}
.y1f9{bottom:558.601500px;}
.y19f{bottom:559.384500px;}
.y11{bottom:560.106000px;}
.y6d{bottom:561.274500px;}
.yd2{bottom:564.017700px;}
.y22c{bottom:565.102500px;}
.yf3{bottom:565.476000px;}
.y17c{bottom:567.658500px;}
.y1b6{bottom:568.167450px;}
.ya0{bottom:572.052000px;}
.y1d5{bottom:572.454000px;}
.y158{bottom:573.761331px;}
.y19e{bottom:575.823000px;}
.y39{bottom:576.303000px;}
.y126{bottom:576.982500px;}
.y1f8{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y6c{bottom:580.104000px;}
.yd1{bottom:581.388150px;}
.y22b{bottom:582.363000px;}
.yf2{bottom:584.305500px;}
.y1b4{bottom:587.245200px;}
.y9f{bottom:590.881500px;}
.y17b{bottom:590.971500px;}
.y1d4{bottom:591.283500px;}
.y19d{bottom:592.260000px;}
.y157{bottom:593.020773px;}
.y38{bottom:595.759500px;}
.y125{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y1f7{bottom:596.260500px;}
.y1b3{bottom:596.336100px;}
.y6b{bottom:598.932000px;}
.y22a{bottom:599.623500px;}
.yf1{bottom:603.135000px;}
.yd0{bottom:603.799896px;}
.y1b5{bottom:605.425650px;}
.y19c{bottom:608.698500px;}
.y1d3{bottom:610.113000px;}
.y17a{bottom:611.146500px;}
.y156{bottom:612.280215px;}
.ye{bottom:613.770000px;}
.y9e{bottom:614.194500px;}
.y124{bottom:614.641500px;}
.y1f6{bottom:615.090000px;}
.y37{bottom:615.216000px;}
.y229{bottom:616.884000px;}
.y6a{bottom:617.761500px;}
.yf0{bottom:621.964500px;}
.y19b{bottom:625.137000px;}
.y155{bottom:631.450980px;}
.yd{bottom:631.657500px;}
.y9d{bottom:633.022500px;}
.y1d2{bottom:633.426000px;}
.y123{bottom:633.471000px;}
.y1f5{bottom:633.919500px;}
.y228{bottom:634.144500px;}
.y36{bottom:634.674000px;}
.y69{bottom:636.591000px;}
.yef{bottom:640.794000px;}
.y19a{bottom:641.575500px;}
.y1b2{bottom:642.866550px;}
.y179{bottom:644.770500px;}
.yc{bottom:649.546500px;}
.yc9{bottom:650.098500px;}
.y154{bottom:650.710422px;}
.y227{bottom:651.403500px;}
.y9c{bottom:651.852000px;}
.y122{bottom:652.300500px;}
.y1f4{bottom:652.749000px;}
.y35{bottom:654.130500px;}
.y68{bottom:655.420500px;}
.y199{bottom:658.014000px;}
.yee{bottom:659.623500px;}
.y1b1{bottom:660.237000px;}
.y178{bottom:663.600000px;}
.yb{bottom:667.434000px;}
.y1d1{bottom:668.337000px;}
.y226{bottom:668.664000px;}
.yc8{bottom:668.928000px;}
.y153{bottom:669.879684px;}
.y9b{bottom:670.681500px;}
.y121{bottom:671.130000px;}
.y1f3{bottom:671.578500px;}
.y34{bottom:673.587000px;}
.y67{bottom:674.250000px;}
.y198{bottom:674.452500px;}
.y1b0{bottom:677.607450px;}
.yed{bottom:678.453000px;}
.y177{bottom:682.429500px;}
.y225{bottom:685.924500px;}
.y1d0{bottom:687.570000px;}
.y152{bottom:689.139126px;}
.y9a{bottom:689.511000px;}
.y8{bottom:689.805055px;}
.y120{bottom:689.959500px;}
.y1f2{bottom:690.408000px;}
.y33{bottom:693.045000px;}
.y66{bottom:693.079500px;}
.yec{bottom:697.282500px;}
.y197{bottom:698.092500px;}
.y176{bottom:701.257500px;}
.yc7{bottom:702.493500px;}
.y224{bottom:703.185000px;}
.y1cf{bottom:706.803000px;}
.y99{bottom:708.340500px;}
.y151{bottom:708.398568px;}
.y11f{bottom:708.789000px;}
.y1f1{bottom:709.237500px;}
.y65{bottom:711.909000px;}
.y32{bottom:712.501500px;}
.yeb{bottom:716.112000px;}
.y175{bottom:720.087000px;}
.y223{bottom:720.445500px;}
.yc6{bottom:721.726500px;}
.y98{bottom:727.170000px;}
.y150{bottom:727.567830px;}
.y11e{bottom:727.618500px;}
.y1f0{bottom:728.067000px;}
.y1ac{bottom:729.232500px;}
.y196{bottom:729.712500px;}
.y1ae{bottom:730.618035px;}
.y64{bottom:730.738500px;}
.y31{bottom:731.959500px;}
.yea{bottom:734.941500px;}
.y222{bottom:737.706000px;}
.y174{bottom:738.916500px;}
.y1ad{bottom:740.427450px;}
.yb9{bottom:744.154500px;}
.y97{bottom:745.999500px;}
.y14f{bottom:746.827272px;}
.y1ef{bottom:746.896500px;}
.y195{bottom:748.945500px;}
.y63{bottom:749.568000px;}
.y11d{bottom:750.931500px;}
.ye9{bottom:753.771000px;}
.y221{bottom:754.966500px;}
.y173{bottom:757.746000px;}
.y96{bottom:764.829000px;}
.y1ee{bottom:765.726000px;}
.y14e{bottom:765.998037px;}
.y62{bottom:768.397500px;}
.y30{bottom:770.544000px;}
.y220{bottom:772.227000px;}
.ye8{bottom:772.600500px;}
.y172{bottom:776.575500px;}
.y95{bottom:783.658500px;}
.y11c{bottom:784.555500px;}
.y14d{bottom:785.257479px;}
.y2f{bottom:786.684000px;}
.y61{bottom:787.227000px;}
.y21f{bottom:789.487500px;}
.ye7{bottom:791.430000px;}
.y171{bottom:795.405000px;}
.y94{bottom:802.488000px;}
.y2e{bottom:802.824000px;}
.y11b{bottom:803.385000px;}
.y14c{bottom:804.516921px;}
.y60{bottom:806.056500px;}
.y21e{bottom:806.746500px;}
.ye6{bottom:810.259500px;}
.y170{bottom:814.234500px;}
.y93{bottom:821.317500px;}
.y119{bottom:822.214500px;}
.y2d{bottom:823.302000px;}
.y14b{bottom:823.686183px;}
.y21d{bottom:824.007000px;}
.y5f{bottom:824.886000px;}
.y11a{bottom:827.638500px;}
.ye5{bottom:829.089000px;}
.y16f{bottom:833.064000px;}
.y2c{bottom:835.102500px;}
.y92{bottom:840.147000px;}
.y118{bottom:841.044000px;}
.y21c{bottom:841.267500px;}
.y14a{bottom:842.945625px;}
.y5e{bottom:843.715500px;}
.ye4{bottom:847.918500px;}
.y2b{bottom:851.242500px;}
.y16e{bottom:851.893500px;}
.y21b{bottom:858.528000px;}
.y91{bottom:858.976500px;}
.y117{bottom:859.873500px;}
.y149{bottom:862.205067px;}
.y5d{bottom:862.545000px;}
.ye3{bottom:866.748000px;}
.y2a{bottom:867.381000px;}
.y16d{bottom:870.723000px;}
.y29{bottom:871.722000px;}
.y21a{bottom:875.788500px;}
.y116{bottom:878.703000px;}
.y254{bottom:880.272000px;}
.y5c{bottom:881.374500px;}
.y148{bottom:881.375832px;}
.y90{bottom:882.289500px;}
.ye2{bottom:885.577500px;}
.y28{bottom:887.860500px;}
.y219{bottom:893.049000px;}
.y115{bottom:897.532500px;}
.y16c{bottom:898.212000px;}
.y27{bottom:899.661000px;}
.y5b{bottom:900.204000px;}
.y147{bottom:900.635274px;}
.ye1{bottom:904.405500px;}
.y16b{bottom:908.464500px;}
.y218{bottom:910.309500px;}
.y252{bottom:914.791500px;}
.y253{bottom:914.793000px;}
.y26{bottom:915.801000px;}
.y8f{bottom:915.913500px;}
.y114{bottom:916.362000px;}
.y5a{bottom:919.033500px;}
.y146{bottom:919.806039px;}
.ye0{bottom:923.235000px;}
.y217{bottom:927.570000px;}
.y251{bottom:932.052000px;}
.y8e{bottom:934.743000px;}
.y113{bottom:935.191500px;}
.y25{bottom:936.279000px;}
.y59{bottom:937.863000px;}
.y145{bottom:939.065481px;}
.y16a{bottom:941.109000px;}
.y216{bottom:944.829000px;}
.y250{bottom:949.312500px;}
.ydf{bottom:949.537500px;}
.y169{bottom:951.360000px;}
.y8d{bottom:953.572500px;}
.y112{bottom:954.021000px;}
.y58{bottom:956.692500px;}
.y144{bottom:958.324923px;}
.y215{bottom:962.089500px;}
.y24f{bottom:966.573000px;}
.yde{bottom:968.367000px;}
.y8c{bottom:972.402000px;}
.y111{bottom:972.849000px;}
.y57{bottom:975.522000px;}
.y7{bottom:976.473000px;}
.y143{bottom:977.495688px;}
.y214{bottom:979.350000px;}
.y24e{bottom:983.833500px;}
.y168{bottom:984.550500px;}
.ydd{bottom:987.196500px;}
.ycf{bottom:988.279320px;}
.y8b{bottom:991.231500px;}
.y110{bottom:991.678500px;}
.y56{bottom:994.351500px;}
.y167{bottom:994.803000px;}
.y6{bottom:995.302500px;}
.y213{bottom:996.610500px;}
.y24d{bottom:1001.094000px;}
.y142{bottom:1001.255112px;}
.ydc{bottom:1006.026000px;}
.yce{bottom:1007.538762px;}
.y8a{bottom:1010.061000px;}
.y10f{bottom:1010.508000px;}
.y55{bottom:1013.181000px;}
.y212{bottom:1013.871000px;}
.y24c{bottom:1018.354500px;}
.ydb{bottom:1024.855500px;}
.y10e{bottom:1029.337500px;}
.y211{bottom:1031.131500px;}
.y54{bottom:1032.010500px;}
.y89{bottom:1033.372500px;}
.y166{bottom:1033.725000px;}
.y24b{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.yda{bottom:1043.685000px;}
.y165{bottom:1043.976000px;}
.y10d{bottom:1048.167000px;}
.y210{bottom:1048.392000px;}
.y53{bottom:1050.840000px;}
.y24a{bottom:1052.875500px;}
.y140{bottom:1055.795085px;}
.ycc{bottom:1062.078735px;}
.yd9{bottom:1062.513000px;}
.y13f{bottom:1065.604500px;}
.y20f{bottom:1065.652500px;}
.y88{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.y249{bottom:1070.134500px;}
.ycb{bottom:1071.888150px;}
.yd8{bottom:1081.342500px;}
.y20e{bottom:1082.913000px;}
.y87{bottom:1085.826000px;}
.y248{bottom:1087.395000px;}
.y51{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y86{bottom:1104.655500px;}
.y50{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:32.565965px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h24{height:34.574294px;}
.h1b{height:36.313088px;}
.ha{height:37.993262px;}
.hb{height:38.202476px;}
.hf{height:38.896243px;}
.h1d{height:41.250077px;}
.h1a{height:41.482876px;}
.h1c{height:42.500452px;}
.h11{height:43.217759px;}
.h1f{height:43.269961px;}
.he{height:43.421105px;}
.hd{height:43.660208px;}
.h4{height:43.815515px;}
.h15{height:44.279648px;}
.h14{height:44.536816px;}
.h10{height:48.848947px;}
.h2a{height:49.117939px;}
.h27{height:49.939453px;}
.h17{height:50.229492px;}
.h2{height:50.931027px;}
.h12{height:54.276245px;}
.h6{height:55.352206px;}
.h16{height:55.599258px;}
.h29{height:55.922168px;}
.h18{height:60.926133px;}
.h25{height:68.012294px;}
.h5{height:77.792486px;}
.h23{height:84.279515px;}
.h20{height:84.285515px;}
.h28{height:86.587692px;}
.h3{height:94.491000px;}
.h21{height:95.280245px;}
.h22{height:95.286245px;}
.h13{height:375.445500px;}
.h26{height:390.369000px;}
.h19{height:488.551200px;}
.h1e{height:517.612050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:230.008102px;}
.w6{width:398.223000px;}
.w4{width:496.405500px;}
.w5{width:514.471500px;}
.w7{width:781.524150px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x66{left:-195.774000px;}
.x44{left:-190.275000px;}
.x38{left:-187.918500px;}
.x0{left:0.000000px;}
.x87{left:2.160150px;}
.x45{left:5.293910px;}
.x39{left:7.650410px;}
.x3{left:29.274117px;}
.x67{left:31.654805px;}
.x47{left:37.155000px;}
.x3b{left:39.511500px;}
.x1{left:54.000000px;}
.x86{left:55.694850px;}
.x2{left:59.418965px;}
.x85{left:70.785000px;}
.x74{left:75.241500px;}
.x76{left:78.553500px;}
.x84{left:79.561500px;}
.x7e{left:80.680500px;}
.x73{left:83.043000px;}
.x83{left:84.268500px;}
.x7d{left:85.821000px;}
.x81{left:87.609000px;}
.x79{left:89.001000px;}
.x80{left:90.220500px;}
.x75{left:91.477500px;}
.x7f{left:92.994000px;}
.x72{left:96.618000px;}
.x77{left:125.875500px;}
.x82{left:136.675500px;}
.x96{left:143.148000px;}
.x78{left:176.391000px;}
.x88{left:197.730150px;}
.x90{left:209.250150px;}
.x92{left:213.031295px;}
.x8f{left:218.070150px;}
.x91{left:227.610699px;}
.x93{left:229.590150px;}
.x89{left:231.749658px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x71{left:256.779000px;}
.x5{left:271.221000px;}
.x94{left:273.420150px;}
.x4d{left:281.517000px;}
.x9{left:282.786000px;}
.x37{left:285.490500px;}
.x48{left:300.081000px;}
.x7{left:309.435000px;}
.x3d{left:312.117000px;}
.x8{left:321.745500px;}
.x2f{left:325.498500px;}
.x20{left:337.059000px;}
.x30{left:340.441500px;}
.x8a{left:342.448680px;}
.x4e{left:343.806000px;}
.x7a{left:344.875500px;}
.x21{left:352.003500px;}
.x2d{left:354.576000px;}
.x63{left:356.245500px;}
.x69{left:357.592500px;}
.x60{left:362.448000px;}
.x5f{left:364.539000px;}
.x2e{left:369.520500px;}
.x5e{left:370.632000px;}
.x49{left:374.677500px;}
.x62{left:380.134500px;}
.x61{left:381.217500px;}
.x64{left:389.944500px;}
.x4a{left:391.074000px;}
.x9f{left:392.773500px;}
.x68{left:395.792995px;}
.x4f{left:401.421000px;}
.x5a{left:408.241500px;}
.x9c{left:410.767500px;}
.x8b{left:417.418447px;}
.x9d{left:425.710500px;}
.x50{left:431.470500px;}
.x6f{left:433.557000px;}
.x6e{left:435.141000px;}
.x5b{left:437.308500px;}
.x9e{left:445.675500px;}
.x51{left:446.856000px;}
.x1a{left:449.305500px;}
.x8c{left:457.559038px;}
.x52{left:462.622500px;}
.x1b{left:464.250000px;}
.x7b{left:468.394500px;}
.x6a{left:474.904500px;}
.x6c{left:482.803500px;}
.x46{left:489.042672px;}
.x3a{left:491.399172px;}
.x5c{left:492.789000px;}
.x22{left:495.700500px;}
.x10{left:504.459000px;}
.x23{left:510.643500px;}
.x11{left:511.930500px;}
.x3c{left:514.438932px;}
.x70{left:516.802500px;}
.x3e{left:520.678500px;}
.x1c{left:526.678500px;}
.x55{left:529.279500px;}
.xa{left:536.235000px;}
.x2b{left:539.310000px;}
.x1d{left:541.623000px;}
.xb{left:543.708000px;}
.x6d{left:545.739000px;}
.x5d{left:551.617500px;}
.x2c{left:554.254500px;}
.x6b{left:556.819500px;}
.x35{left:569.850000px;}
.x36{left:584.794500px;}
.x3f{left:596.835000px;}
.x26{left:604.581000px;}
.x27{left:619.525500px;}
.x53{left:621.582000px;}
.x28{left:623.322000px;}
.x54{left:636.526500px;}
.x29{left:638.265000px;}
.x16{left:655.294500px;}
.x17{left:662.766000px;}
.x8d{left:667.258742px;}
.x18{left:673.198500px;}
.x97{left:677.851500px;}
.x19{left:680.671500px;}
.x98{left:685.323000px;}
.x99{left:689.133000px;}
.x40{left:692.368500px;}
.x14{left:696.462000px;}
.x41{left:698.340000px;}
.x9a{left:700.416000px;}
.x33{left:701.688000px;}
.x15{left:703.933500px;}
.x8e{left:709.288556px;}
.x65{left:712.711500px;}
.x9b{left:715.360500px;}
.xc{left:717.105000px;}
.x58{left:723.513000px;}
.xd{left:724.576500px;}
.x4b{left:725.718000px;}
.x1e{left:728.355000px;}
.x2a{left:731.454000px;}
.x59{left:738.456000px;}
.x4c{left:742.113000px;}
.x1f{left:743.299500px;}
.x42{left:762.829500px;}
.x43{left:771.046500px;}
.x34{left:775.561500px;}
.x56{left:778.480500px;}
.x95{left:782.908028px;}
.x31{left:788.458500px;}
.x57{left:793.423500px;}
.x32{left:803.401500px;}
.x7c{left:805.363500px;}
.xa0{left:810.265500px;}
.x24{left:819.093000px;}
.xe{left:824.422500px;}
.x12{left:825.519000px;}
.xf{left:831.894000px;}
.x13{left:832.990500px;}
.x25{left:834.036000px;}
.xa1{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.722667pt;}
.v5{vertical-align:32.318400pt;}
.v3{vertical-align:35.973333pt;}
.ls2f{letter-spacing:-0.240000pt;}
.ls6d{letter-spacing:-0.213760pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.177600pt;}
.ls30{letter-spacing:-0.172800pt;}
.ls32{letter-spacing:-0.115200pt;}
.ls4b{letter-spacing:-0.112224pt;}
.ls4a{letter-spacing:-0.106880pt;}
.ls6c{letter-spacing:-0.096192pt;}
.ls35{letter-spacing:-0.090848pt;}
.ls50{letter-spacing:-0.085504pt;}
.ls51{letter-spacing:-0.080160pt;}
.ls2a{letter-spacing:-0.076608pt;}
.ls4f{letter-spacing:-0.074816pt;}
.ls47{letter-spacing:-0.064128pt;}
.ls2c{letter-spacing:-0.058784pt;}
.ls46{letter-spacing:-0.048096pt;}
.ls6a{letter-spacing:-0.048000pt;}
.ls4c{letter-spacing:-0.042752pt;}
.ls6b{letter-spacing:-0.038400pt;}
.ls45{letter-spacing:-0.037408pt;}
.ls4e{letter-spacing:-0.032064pt;}
.ls6e{letter-spacing:-0.026720pt;}
.ls49{letter-spacing:-0.021376pt;}
.ls68{letter-spacing:-0.019200pt;}
.ls34{letter-spacing:-0.016032pt;}
.ls69{letter-spacing:-0.014400pt;}
.ls33{letter-spacing:-0.010688pt;}
.ls4d{letter-spacing:-0.005344pt;}
.ls2d{letter-spacing:-0.004800pt;}
.ls2b{letter-spacing:-0.004256pt;}
.ls10{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000237pt;}
.ls6f{letter-spacing:0.000366pt;}
.ls26{letter-spacing:0.000375pt;}
.ls3{letter-spacing:0.000518pt;}
.ls70{letter-spacing:0.000623pt;}
.ls7a{letter-spacing:0.000711pt;}
.lsd{letter-spacing:0.000746pt;}
.ls77{letter-spacing:0.000921pt;}
.ls25{letter-spacing:0.001007pt;}
.ls78{letter-spacing:0.001026pt;}
.ls79{letter-spacing:0.001077pt;}
.lsa{letter-spacing:0.001718pt;}
.lsb{letter-spacing:0.001735pt;}
.ls71{letter-spacing:0.002262pt;}
.ls0{letter-spacing:0.002422pt;}
.ls27{letter-spacing:0.002825pt;}
.ls7{letter-spacing:0.002932pt;}
.ls9{letter-spacing:0.003100pt;}
.ls1{letter-spacing:0.003733pt;}
.ls72{letter-spacing:0.003924pt;}
.ls76{letter-spacing:0.004267pt;}
.lsc{letter-spacing:0.004735pt;}
.ls44{letter-spacing:0.004800pt;}
.ls23{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.009600pt;}
.ls67{letter-spacing:0.010688pt;}
.ls60{letter-spacing:0.014400pt;}
.ls3d{letter-spacing:0.016032pt;}
.ls1b{letter-spacing:0.019200pt;}
.ls42{letter-spacing:0.021376pt;}
.ls20{letter-spacing:0.024000pt;}
.ls41{letter-spacing:0.026720pt;}
.ls43{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.032064pt;}
.ls18{letter-spacing:0.033600pt;}
.ls40{letter-spacing:0.037408pt;}
.ls16{letter-spacing:0.042752pt;}
.ls3f{letter-spacing:0.048096pt;}
.ls24{letter-spacing:0.052800pt;}
.ls21{letter-spacing:0.053440pt;}
.ls1f{letter-spacing:0.057600pt;}
.ls64{letter-spacing:0.058784pt;}
.ls1e{letter-spacing:0.062400pt;}
.ls15{letter-spacing:0.064128pt;}
.ls5f{letter-spacing:0.067200pt;}
.ls63{letter-spacing:0.069472pt;}
.ls66{letter-spacing:0.072000pt;}
.ls3e{letter-spacing:0.074816pt;}
.ls61{letter-spacing:0.081600pt;}
.ls22{letter-spacing:0.085901pt;}
.ls48{letter-spacing:0.096192pt;}
.ls1d{letter-spacing:0.105600pt;}
.ls62{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.124800pt;}
.ls29{letter-spacing:0.127680pt;}
.ls1c{letter-spacing:0.134400pt;}
.ls65{letter-spacing:0.149632pt;}
.ls14{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.170240pt;}
.ls39{letter-spacing:0.482502pt;}
.ls3c{letter-spacing:0.576078pt;}
.ls11{letter-spacing:1.133683pt;}
.ls55{letter-spacing:1.193570pt;}
.ls57{letter-spacing:1.328347pt;}
.ls5{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.665203pt;}
.ls6{letter-spacing:9.298933pt;}
.lsf{letter-spacing:10.626533pt;}
.ls59{letter-spacing:10.995733pt;}
.ls75{letter-spacing:11.954133pt;}
.ls74{letter-spacing:11.959467pt;}
.ls5d{letter-spacing:12.323096pt;}
.ls5b{letter-spacing:12.696429pt;}
.ls53{letter-spacing:12.963096pt;}
.ls28{letter-spacing:13.124065pt;}
.ls12{letter-spacing:13.283467pt;}
.ls56{letter-spacing:13.950400pt;}
.ls58{letter-spacing:15.395096pt;}
.ls36{letter-spacing:15.416682pt;}
.ls3a{letter-spacing:16.086778pt;}
.ls3b{letter-spacing:16.087618pt;}
.ls5e{letter-spacing:17.321641pt;}
.ls5a{letter-spacing:19.075096pt;}
.ls37{letter-spacing:19.852111pt;}
.ls38{letter-spacing:19.852951pt;}
.ls4{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lse{letter-spacing:57.174803pt;}
.ls52{letter-spacing:89.437762pt;}
.ls54{letter-spacing:95.096429pt;}
.ls5c{letter-spacing:161.400429pt;}
.ws5a{word-spacing:-13.424128pt;}
.ws7{word-spacing:-13.283467pt;}
.ws5b{word-spacing:-12.000000pt;}
.ws5e{word-spacing:-11.955200pt;}
.ws59{word-spacing:-10.810240pt;}
.ws1e{word-spacing:-10.626800pt;}
.wsa{word-spacing:-10.095467pt;}
.ws10{word-spacing:-9.298400pt;}
.ws141{word-spacing:-3.203994pt;}
.ws116{word-spacing:-3.174336pt;}
.ws52{word-spacing:-2.762961pt;}
.ws118{word-spacing:-2.527712pt;}
.ws109{word-spacing:-2.490304pt;}
.ws10a{word-spacing:-2.458240pt;}
.ws35{word-spacing:-2.391024pt;}
.ws99{word-spacing:-2.337890pt;}
.wsab{word-spacing:-2.228448pt;}
.wsb9{word-spacing:-2.191040pt;}
.ws8c{word-spacing:-2.178489pt;}
.wsac{word-spacing:-2.148288pt;}
.ws8b{word-spacing:-2.072221pt;}
.wsf2{word-spacing:-1.859685pt;}
.wsae{word-spacing:-1.779552pt;}
.wsad{word-spacing:-1.774208pt;}
.wsc{word-spacing:-1.696326pt;}
.wsc7{word-spacing:-1.540882pt;}
.ws85{word-spacing:-1.434614pt;}
.ws3c{word-spacing:-1.328347pt;}
.ws123{word-spacing:-1.291162pt;}
.ws7a{word-spacing:-1.222079pt;}
.ws142{word-spacing:-1.195520pt;}
.wsb{word-spacing:-1.175671pt;}
.ws124{word-spacing:-1.147699pt;}
.ws11f{word-spacing:-1.062677pt;}
.ws44{word-spacing:-0.903276pt;}
.wsc2{word-spacing:-0.871072pt;}
.wsd5{word-spacing:-0.850142pt;}
.ws93{word-spacing:-0.743874pt;}
.ws8e{word-spacing:-0.637606pt;}
.wsea{word-spacing:-0.621670pt;}
.ws83{word-spacing:-0.584473pt;}
.wsf1{word-spacing:-0.531339pt;}
.wsaa{word-spacing:-0.513024pt;}
.ws140{word-spacing:-0.430387pt;}
.wseb{word-spacing:-0.382566pt;}
.ws120{word-spacing:-0.371937pt;}
.ws87{word-spacing:-0.318803pt;}
.ws106{word-spacing:-0.304608pt;}
.ws6f{word-spacing:-0.288576pt;}
.ws3f{word-spacing:-0.265669pt;}
.ws73{word-spacing:-0.240480pt;}
.ws26{word-spacing:-0.239104pt;}
.ws60{word-spacing:-0.238336pt;}
.wsb0{word-spacing:-0.224448pt;}
.wsa2{word-spacing:-0.213760pt;}
.ws31{word-spacing:-0.212535pt;}
.ws6b{word-spacing:-0.211200pt;}
.ws129{word-spacing:-0.191283pt;}
.wsb6{word-spacing:-0.171008pt;}
.ws2f{word-spacing:-0.159402pt;}
.ws122{word-spacing:-0.143462pt;}
.wsa3{word-spacing:-0.128256pt;}
.wsa9{word-spacing:-0.122912pt;}
.ws30{word-spacing:-0.106268pt;}
.ws20{word-spacing:-0.095642pt;}
.ws5f{word-spacing:-0.072352pt;}
.ws1{word-spacing:-0.053134pt;}
.ws2c{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws11{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.002126pt;}
.ws5{word-spacing:-0.000785pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.001318pt;}
.wsaf{word-spacing:0.037408pt;}
.ws62{word-spacing:0.042752pt;}
.ws125{word-spacing:0.044154pt;}
.wsf3{word-spacing:0.047821pt;}
.wsc3{word-spacing:0.048096pt;}
.ws40{word-spacing:0.053134pt;}
.ws63{word-spacing:0.053440pt;}
.ws69{word-spacing:0.057600pt;}
.ws113{word-spacing:0.058784pt;}
.ws1d{word-spacing:0.085014pt;}
.ws10d{word-spacing:0.091200pt;}
.ws146{word-spacing:0.095642pt;}
.wsfd{word-spacing:0.096000pt;}
.ws70{word-spacing:0.096192pt;}
.ws6a{word-spacing:0.100800pt;}
.ws71{word-spacing:0.101536pt;}
.ws34{word-spacing:0.106268pt;}
.ws74{word-spacing:0.110400pt;}
.ws64{word-spacing:0.129600pt;}
.wsc4{word-spacing:0.134400pt;}
.ws100{word-spacing:0.139200pt;}
.wsf4{word-spacing:0.143462pt;}
.ws67{word-spacing:0.144000pt;}
.ws61{word-spacing:0.144288pt;}
.wsfe{word-spacing:0.148800pt;}
.wsc5{word-spacing:0.153600pt;}
.wsc6{word-spacing:0.158400pt;}
.ws45{word-spacing:0.159402pt;}
.wsff{word-spacing:0.163200pt;}
.ws65{word-spacing:0.168000pt;}
.ws11d{word-spacing:0.171008pt;}
.ws72{word-spacing:0.176352pt;}
.ws101{word-spacing:0.182400pt;}
.ws12{word-spacing:0.185968pt;}
.wse2{word-spacing:0.191283pt;}
.ws10e{word-spacing:0.201600pt;}
.ws37{word-spacing:0.212535pt;}
.ws14{word-spacing:0.260355pt;}
.ws3b{word-spacing:0.265669pt;}
.ws6e{word-spacing:0.278400pt;}
.ws134{word-spacing:0.286925pt;}
.ws32{word-spacing:0.318803pt;}
.ws6c{word-spacing:0.336000pt;}
.ws66{word-spacing:0.340800pt;}
.ws6d{word-spacing:0.355200pt;}
.ws4c{word-spacing:0.371937pt;}
.wsba{word-spacing:0.379424pt;}
.ws28{word-spacing:0.382566pt;}
.ws9c{word-spacing:0.400800pt;}
.ws68{word-spacing:0.403200pt;}
.wsa5{word-spacing:0.416832pt;}
.ws112{word-spacing:0.422176pt;}
.ws11e{word-spacing:0.425071pt;}
.wsa4{word-spacing:0.427520pt;}
.ws8d{word-spacing:0.478205pt;}
.wsbb{word-spacing:0.491648pt;}
.ws3e{word-spacing:0.531339pt;}
.ws27{word-spacing:0.573850pt;}
.ws53{word-spacing:0.584473pt;}
.ws115{word-spacing:0.689376pt;}
.ws39{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.717312pt;}
.ws91{word-spacing:0.743874pt;}
.ws9b{word-spacing:0.764192pt;}
.ws7d{word-spacing:0.797008pt;}
.ws121{word-spacing:0.908595pt;}
.ws58{word-spacing:0.956410pt;}
.ws81{word-spacing:1.009543pt;}
.wsb1{word-spacing:1.052768pt;}
.ws8a{word-spacing:1.062677pt;}
.wsb2{word-spacing:1.090176pt;}
.wse1{word-spacing:1.115811pt;}
.ws11a{word-spacing:1.154304pt;}
.ws119{word-spacing:1.261184pt;}
.ws92{word-spacing:1.275213pt;}
.ws29{word-spacing:1.291162pt;}
.ws41{word-spacing:1.328347pt;}
.wsbe{word-spacing:1.373408pt;}
.ws78{word-spacing:1.381481pt;}
.wsbf{word-spacing:1.453568pt;}
.ws8f{word-spacing:1.540882pt;}
.ws7b{word-spacing:1.594016pt;}
.ws48{word-spacing:1.647150pt;}
.ws7c{word-spacing:1.700284pt;}
.ws4a{word-spacing:1.753418pt;}
.ws14b{word-spacing:1.769370pt;}
.ws13{word-spacing:1.785293pt;}
.ws80{word-spacing:1.806551pt;}
.ws43{word-spacing:1.859685pt;}
.ws57{word-spacing:1.912819pt;}
.ws25{word-spacing:1.912832pt;}
.ws56{word-spacing:1.965953pt;}
.ws117{word-spacing:1.977280pt;}
.ws114{word-spacing:1.993312pt;}
.wsb4{word-spacing:2.025376pt;}
.wsb3{word-spacing:2.041408pt;}
.ws79{word-spacing:2.072221pt;}
.ws49{word-spacing:2.125355pt;}
.ws98{word-spacing:2.178489pt;}
.wse{word-spacing:2.230470pt;}
.ws84{word-spacing:2.231622pt;}
.ws3d{word-spacing:2.284756pt;}
.ws14c{word-spacing:2.295398pt;}
.ws90{word-spacing:2.391024pt;}
.ws12f{word-spacing:2.486682pt;}
.ws46{word-spacing:2.497292pt;}
.wsf8{word-spacing:2.550426pt;}
.ws1f{word-spacing:2.550432pt;}
.ws3a{word-spacing:2.603559pt;}
.wsb5{word-spacing:2.677344pt;}
.ws9e{word-spacing:2.693376pt;}
.ws9f{word-spacing:2.709408pt;}
.ws13f{word-spacing:2.725786pt;}
.ws9d{word-spacing:2.736128pt;}
.ws130{word-spacing:2.864444pt;}
.ws126{word-spacing:2.864512pt;}
.ws12a{word-spacing:2.865673pt;}
.ws136{word-spacing:2.869248pt;}
.ws144{word-spacing:2.964890pt;}
.wsfa{word-spacing:2.975497pt;}
.ws36{word-spacing:3.028630pt;}
.ws10f{word-spacing:3.062112pt;}
.ws2e{word-spacing:3.188032pt;}
.ws97{word-spacing:3.241166pt;}
.ws5d{word-spacing:3.251814pt;}
.ws110{word-spacing:3.291904pt;}
.wsb8{word-spacing:3.323968pt;}
.ws7e{word-spacing:3.347434pt;}
.wsb7{word-spacing:3.361376pt;}
.ws4d{word-spacing:3.400567pt;}
.ws5c{word-spacing:3.538739pt;}
.ws9a{word-spacing:3.559969pt;}
.ws24{word-spacing:3.682202pt;}
.ws86{word-spacing:3.772505pt;}
.ws2b{word-spacing:3.825664pt;}
.ws47{word-spacing:3.878772pt;}
.ws111{word-spacing:3.895776pt;}
.wsfc{word-spacing:3.931906pt;}
.ws12c{word-spacing:4.016947pt;}
.wsf0{word-spacing:4.038174pt;}
.ws55{word-spacing:4.091308pt;}
.ws4b{word-spacing:4.197575pt;}
.wsa6{word-spacing:4.216416pt;}
.ws88{word-spacing:4.303843pt;}
.wsfb{word-spacing:4.410111pt;}
.ws139{word-spacing:4.447334pt;}
.ws2a{word-spacing:4.495155pt;}
.ws12d{word-spacing:4.542976pt;}
.wsf9{word-spacing:4.569513pt;}
.wse0{word-spacing:4.675780pt;}
.ws77{word-spacing:4.728914pt;}
.ws23{word-spacing:4.734259pt;}
.ws143{word-spacing:4.782080pt;}
.wsa1{word-spacing:4.788224pt;}
.wsbc{word-spacing:4.889760pt;}
.wsbd{word-spacing:4.964576pt;}
.wsa0{word-spacing:4.980608pt;}
.ws76{word-spacing:5.100851pt;}
.ws51{word-spacing:5.153985pt;}
.ws75{word-spacing:5.313387pt;}
.ws1a{word-spacing:5.393072pt;}
.ws1b{word-spacing:5.467459pt;}
.ws21{word-spacing:5.499392pt;}
.wsc0{word-spacing:5.504320pt;}
.ws4e{word-spacing:5.525922pt;}
.ws138{word-spacing:5.595034pt;}
.wsf5{word-spacing:5.685324pt;}
.ws50{word-spacing:5.738458pt;}
.ws131{word-spacing:5.738496pt;}
.wsc1{word-spacing:5.851680pt;}
.ws89{word-spacing:6.110395pt;}
.ws108{word-spacing:6.166976pt;}
.ws22{word-spacing:6.264525pt;}
.ws82{word-spacing:6.269796pt;}
.ws42{word-spacing:6.322930pt;}
.ws11b{word-spacing:6.487616pt;}
.ws11c{word-spacing:6.514336pt;}
.ws7f{word-spacing:6.535466pt;}
.ws137{word-spacing:6.551450pt;}
.ws107{word-spacing:6.573120pt;}
.wsf7{word-spacing:6.588599pt;}
.ws13e{word-spacing:6.599270pt;}
.ws33{word-spacing:6.641733pt;}
.ws148{word-spacing:6.694912pt;}
.ws12e{word-spacing:6.742733pt;}
.ws10b{word-spacing:7.064768pt;}
.ws4f{word-spacing:7.173072pt;}
.wsf6{word-spacing:7.226206pt;}
.ws10c{word-spacing:7.390752pt;}
.wsd4{word-spacing:7.545009pt;}
.ws18{word-spacing:7.699075pt;}
.wsa7{word-spacing:8.374048pt;}
.wsa8{word-spacing:8.710720pt;}
.wsf{word-spacing:9.263356pt;}
.ws38{word-spacing:10.582125pt;}
.wsd1{word-spacing:11.603948pt;}
.wsce{word-spacing:11.606035pt;}
.wsc9{word-spacing:11.607044pt;}
.ws132{word-spacing:11.763917pt;}
.ws14a{word-spacing:11.900339pt;}
.ws145{word-spacing:11.900919pt;}
.ws128{word-spacing:11.907379pt;}
.ws133{word-spacing:12.098662pt;}
.ws54{word-spacing:13.230333pt;}
.wsd2{word-spacing:13.254014pt;}
.wscd{word-spacing:13.375047pt;}
.wsd0{word-spacing:13.377761pt;}
.wsd{word-spacing:13.763148pt;}
.ws15{word-spacing:14.348669pt;}
.ws16{word-spacing:14.356730pt;}
.ws13b{word-spacing:14.633165pt;}
.ws13c{word-spacing:14.728806pt;}
.ws135{word-spacing:14.769220pt;}
.ws127{word-spacing:14.773794pt;}
.ws13a{word-spacing:14.774554pt;}
.ws12b{word-spacing:14.776627pt;}
.ws13d{word-spacing:14.778999pt;}
.ws149{word-spacing:14.824448pt;}
.ws17{word-spacing:15.732893pt;}
.wsc8{word-spacing:16.032702pt;}
.wscb{word-spacing:17.624062pt;}
.ws19{word-spacing:24.399002pt;}
.ws147{word-spacing:29.553254pt;}
.ws6{word-spacing:35.593054pt;}
.ws2{word-spacing:41.430071pt;}
.ws4{word-spacing:41.446878pt;}
.ws9{word-spacing:48.878387pt;}
.wsdc{word-spacing:51.646248pt;}
.wsdf{word-spacing:59.935152pt;}
.wsde{word-spacing:65.248552pt;}
.wsdd{word-spacing:70.561952pt;}
.ws103{word-spacing:185.827200pt;}
.ws105{word-spacing:211.118400pt;}
.ws102{word-spacing:217.200000pt;}
.ws104{word-spacing:251.164800pt;}
.wsd7{word-spacing:284.330661pt;}
.wsed{word-spacing:290.941747pt;}
.wsd9{word-spacing:296.105155pt;}
.wsd6{word-spacing:312.045355pt;}
.wsef{word-spacing:316.143309pt;}
.wsec{word-spacing:322.120909pt;}
.wse4{word-spacing:330.250445pt;}
.wse7{word-spacing:330.824294pt;}
.wsd8{word-spacing:342.055438pt;}
.wsda{word-spacing:342.828293pt;}
.wse9{word-spacing:350.478643pt;}
.wse3{word-spacing:351.578522pt;}
.wsdb{word-spacing:353.489875pt;}
.wsee{word-spacing:355.882394pt;}
.wse8{word-spacing:358.656000pt;}
.wse6{word-spacing:368.411443pt;}
.wse5{word-spacing:379.505869pt;}
.wsd3{word-spacing:592.818917pt;}
.wscf{word-spacing:599.720062pt;}
.wsca{word-spacing:739.779948pt;}
.wscc{word-spacing:769.506917pt;}
.ws94{word-spacing:867.373670pt;}
.ws96{word-spacing:906.870246pt;}
.ws95{word-spacing:910.718729pt;}
._1{margin-left:-10.616218pt;}
._2{margin-left:-7.077478pt;}
._1c{margin-left:-6.150076pt;}
._0{margin-left:-5.260288pt;}
._3c{margin-left:-4.356942pt;}
._7{margin-left:-3.421811pt;}
._27{margin-left:-2.337896pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._3{width:2.661953pt;}
._4{width:3.643555pt;}
._22{width:5.282934pt;}
._57{width:7.378684pt;}
._b{width:9.861670pt;}
._8{width:11.530016pt;}
._9{width:12.689300pt;}
._12{width:14.107136pt;}
._1d{width:15.016917pt;}
._14{width:16.205829pt;}
._10{width:17.099998pt;}
._55{width:17.999031pt;}
._f{width:18.889216pt;}
._11{width:20.495275pt;}
._17{width:21.784885pt;}
._1a{width:22.688161pt;}
._18{width:24.016508pt;}
._54{width:25.106091pt;}
._13{width:26.157978pt;}
._19{width:27.423802pt;}
._a{width:29.011008pt;}
._58{width:30.311943pt;}
._d{width:31.657370pt;}
._e{width:33.645995pt;}
._c{width:50.498554pt;}
._56{width:54.993920pt;}
._2f{width:64.270886pt;}
._2e{width:70.136880pt;}
._39{width:75.875352pt;}
._2d{width:78.850856pt;}
._4f{width:80.059200pt;}
._31{width:81.231259pt;}
._24{width:107.160651pt;}
._3e{width:111.155422pt;}
._25{width:115.381913pt;}
._49{width:117.312000pt;}
._4a{width:125.812800pt;}
._34{width:130.157046pt;}
._52{width:131.568000pt;}
._50{width:132.854400pt;}
._26{width:143.153608pt;}
._4d{width:145.022400pt;}
._3b{width:151.495661pt;}
._32{width:154.513672pt;}
._51{width:161.664000pt;}
._30{width:164.290328pt;}
._38{width:169.391192pt;}
._3a{width:171.346523pt;}
._53{width:172.872000pt;}
._36{width:173.939462pt;}
._4b{width:178.632000pt;}
._46{width:185.209958pt;}
._4c{width:195.600000pt;}
._3d{width:201.258940pt;}
._23{width:210.368133pt;}
._4e{width:227.294400pt;}
._37{width:234.767266pt;}
._35{width:240.080666pt;}
._33{width:245.394066pt;}
._42{width:350.813389pt;}
._45{width:359.373312pt;}
._2b{width:393.010966pt;}
._2c{width:405.433674pt;}
._28{width:499.714643pt;}
._43{width:524.833280pt;}
._3f{width:535.927706pt;}
._2a{width:539.331354pt;}
._44{width:548.743680pt;}
._29{width:549.958154pt;}
._40{width:560.698880pt;}
._41{width:572.654080pt;}
._1e{width:779.831919pt;}
._21{width:801.811354pt;}
._20{width:855.942076pt;}
._1f{width:864.171345pt;}
._15{width:903.483705pt;}
._48{width:1899.354912pt;}
._1b{width:1920.805152pt;}
._47{width:2262.400204pt;}
._16{width:2283.653537pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsf{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fsd{font-size:58.560000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.ybc{bottom:-595.244933pt;}
.yc5{bottom:-545.484933pt;}
.yc4{bottom:-525.564845pt;}
.y1af{bottom:-358.562267pt;}
.y1ce{bottom:-276.956315pt;}
.y1cd{bottom:-259.836811pt;}
.y1cc{bottom:-242.797467pt;}
.y1cb{bottom:-225.677963pt;}
.y1ca{bottom:-208.638619pt;}
.y1c9{bottom:-191.519115pt;}
.y1c8{bottom:-174.399611pt;}
.y1c7{bottom:-157.360267pt;}
.y1c6{bottom:-140.240763pt;}
.y1c5{bottom:-123.121259pt;}
.y1c4{bottom:-106.081915pt;}
.y1c3{bottom:-84.882267pt;}
.yc3{bottom:-79.804437pt;}
.y141{bottom:-69.516000pt;}
.ycd{bottom:-63.930533pt;}
.yc2{bottom:-62.684933pt;}
.y1c2{bottom:-52.322667pt;}
.y1c1{bottom:-36.962667pt;}
.yc1{bottom:-29.965333pt;}
.y1c0{bottom:-21.522267pt;}
.y15c{bottom:-15.836000pt;}
.yc0{bottom:-14.524933pt;}
.yd6{bottom:-14.170533pt;}
.y1bf{bottom:-0.720525pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y15b{bottom:4.090920pt;}
.ybf{bottom:5.396619pt;}
.yd5{bottom:5.749555pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:13.438720pt;}
.y4e{bottom:28.346667pt;}
.y13d{bottom:81.785333pt;}
.y10c{bottom:83.814667pt;}
.y164{bottom:84.270667pt;}
.y24{bottom:91.398667pt;}
.y194{bottom:92.062667pt;}
.y85{bottom:97.214667pt;}
.y13c{bottom:98.521333pt;}
.y10b{bottom:100.552000pt;}
.y163{bottom:101.008000pt;}
.yd7{bottom:102.646667pt;}
.y247{bottom:103.408000pt;}
.y4d{bottom:105.628000pt;}
.yb8{bottom:106.796000pt;}
.y1ed{bottom:107.153333pt;}
.y23{bottom:107.298667pt;}
.y193{bottom:108.800000pt;}
.y84{bottom:113.952000pt;}
.y13b{bottom:115.258667pt;}
.y10a{bottom:117.289333pt;}
.y162{bottom:117.745333pt;}
.y246{bottom:118.750667pt;}
.y4c{bottom:122.365333pt;}
.yca{bottom:122.584267pt;}
.y22{bottom:123.200000pt;}
.yb7{bottom:123.533333pt;}
.y1ec{bottom:123.890667pt;}
.y20d{bottom:128.474667pt;}
.y83{bottom:130.689333pt;}
.y13a{bottom:131.996000pt;}
.y109{bottom:134.026667pt;}
.y245{bottom:134.093333pt;}
.y161{bottom:134.482667pt;}
.y21{bottom:139.100000pt;}
.y4b{bottom:139.102667pt;}
.yb6{bottom:140.270667pt;}
.y1eb{bottom:140.628000pt;}
.y192{bottom:145.956000pt;}
.y82{bottom:147.426667pt;}
.y139{bottom:148.733333pt;}
.y244{bottom:149.436000pt;}
.y108{bottom:150.764000pt;}
.y160{bottom:151.220000pt;}
.y20c{bottom:152.066667pt;}
.y20{bottom:155.000000pt;}
.y4a{bottom:155.840000pt;}
.yb5{bottom:157.008000pt;}
.y1ea{bottom:157.365333pt;}
.y191{bottom:158.576000pt;}
.y81{bottom:164.164000pt;}
.y243{bottom:164.778667pt;}
.y138{bottom:165.470667pt;}
.y107{bottom:167.501333pt;}
.y15f{bottom:167.957333pt;}
.y1f{bottom:170.901333pt;}
.y190{bottom:171.194667pt;}
.y49{bottom:172.577333pt;}
.yb4{bottom:173.745333pt;}
.y1e9{bottom:174.102667pt;}
.y20b{bottom:175.657333pt;}
.y241{bottom:180.120000pt;}
.y242{bottom:180.121333pt;}
.y80{bottom:180.901333pt;}
.y137{bottom:182.208000pt;}
.y18f{bottom:183.814667pt;}
.y105{bottom:184.238667pt;}
.y1e{bottom:186.801333pt;}
.y15e{bottom:188.680000pt;}
.y106{bottom:189.060000pt;}
.y48{bottom:189.314667pt;}
.yb3{bottom:190.481333pt;}
.y1e8{bottom:190.840000pt;}
.y240{bottom:195.462667pt;}
.y18e{bottom:196.433333pt;}
.y7f{bottom:197.638667pt;}
.y20a{bottom:199.249333pt;}
.y104{bottom:200.976000pt;}
.y189{bottom:201.832000pt;}
.y1d{bottom:202.701333pt;}
.y136{bottom:202.930667pt;}
.y47{bottom:206.052000pt;}
.yb2{bottom:207.218667pt;}
.y1e7{bottom:207.577333pt;}
.y18d{bottom:209.053333pt;}
.y23f{bottom:210.805333pt;}
.y7e{bottom:214.376000pt;}
.y209{bottom:214.870667pt;}
.y15d{bottom:215.726667pt;}
.y103{bottom:217.713333pt;}
.y18c{bottom:221.672000pt;}
.y46{bottom:222.789333pt;}
.yb1{bottom:223.956000pt;}
.y1e6{bottom:224.314667pt;}
.y23e{bottom:226.148000pt;}
.y208{bottom:230.492000pt;}
.y7d{bottom:231.113333pt;}
.y18b{bottom:234.292000pt;}
.y102{bottom:234.450667pt;}
.y13e{bottom:235.663067pt;}
.y45{bottom:239.526667pt;}
.y1ab{bottom:239.794667pt;}
.y135{bottom:240.552000pt;}
.yb0{bottom:240.693333pt;}
.y1e5{bottom:241.052000pt;}
.y23d{bottom:241.490667pt;}
.y18a{bottom:246.910667pt;}
.y7c{bottom:247.850667pt;}
.y101{bottom:251.188000pt;}
.y207{bottom:254.084000pt;}
.y134{bottom:255.164000pt;}
.y44{bottom:256.264000pt;}
.y1aa{bottom:256.532000pt;}
.y23c{bottom:256.833333pt;}
.yaf{bottom:257.430667pt;}
.y1e4{bottom:257.789333pt;}
.y188{bottom:259.530667pt;}
.y7b{bottom:264.588000pt;}
.y100{bottom:267.925333pt;}
.y206{bottom:269.705333pt;}
.y133{bottom:269.776000pt;}
.y23b{bottom:272.176000pt;}
.y1c{bottom:273.154667pt;}
.y1a9{bottom:273.269333pt;}
.yae{bottom:274.168000pt;}
.y1e3{bottom:274.526667pt;}
.y43{bottom:276.986667pt;}
.y187{bottom:278.552000pt;}
.y7a{bottom:281.325333pt;}
.y132{bottom:284.388000pt;}
.yff{bottom:284.662667pt;}
.y205{bottom:285.326667pt;}
.y23a{bottom:287.518667pt;}
.y1b{bottom:289.054667pt;}
.y186{bottom:290.142667pt;}
.yad{bottom:290.905333pt;}
.y1e2{bottom:291.264000pt;}
.y1a8{bottom:293.992000pt;}
.y79{bottom:298.062667pt;}
.y131{bottom:298.998667pt;}
.y204{bottom:300.948000pt;}
.yfe{bottom:301.400000pt;}
.y239{bottom:302.861333pt;}
.y1a{bottom:304.954667pt;}
.yac{bottom:307.642667pt;}
.y1e1{bottom:308.001333pt;}
.y130{bottom:313.610667pt;}
.y78{bottom:314.800000pt;}
.y203{bottom:316.569333pt;}
.yfd{bottom:318.137333pt;}
.y238{bottom:318.202667pt;}
.y19{bottom:320.856000pt;}
.y185{bottom:324.285333pt;}
.yab{bottom:324.380000pt;}
.y1e0{bottom:324.738667pt;}
.y77{bottom:331.537333pt;}
.y202{bottom:332.190667pt;}
.y237{bottom:333.545333pt;}
.y1a7{bottom:334.269333pt;}
.y12f{bottom:334.625333pt;}
.yfc{bottom:334.874667pt;}
.y42{bottom:340.672000pt;}
.yaa{bottom:341.117333pt;}
.y1df{bottom:341.476000pt;}
.ybe{bottom:347.156107pt;}
.y201{bottom:347.812000pt;}
.y76{bottom:348.274667pt;}
.y1a6{bottom:348.881333pt;}
.y236{bottom:348.888000pt;}
.y1be{bottom:349.999515pt;}
.yfb{bottom:351.612000pt;}
.y18{bottom:354.688000pt;}
.ya9{bottom:357.854667pt;}
.y41{bottom:357.966667pt;}
.y1de{bottom:358.213333pt;}
.y184{bottom:359.328000pt;}
.y12e{bottom:362.732000pt;}
.y1a5{bottom:363.493333pt;}
.y235{bottom:364.230667pt;}
.ybd{bottom:364.275611pt;}
.y75{bottom:365.012000pt;}
.y1bd{bottom:367.038859pt;}
.yfa{bottom:368.349333pt;}
.y17{bottom:370.589333pt;}
.y183{bottom:371.946667pt;}
.ya8{bottom:374.592000pt;}
.y1dd{bottom:374.950667pt;}
.y1a4{bottom:378.105333pt;}
.y200{bottom:379.374667pt;}
.y234{bottom:379.573333pt;}
.y74{bottom:381.749333pt;}
.y1bc{bottom:384.158363pt;}
.y182{bottom:384.566667pt;}
.y16{bottom:386.489333pt;}
.yf9{bottom:389.070667pt;}
.y40{bottom:391.202667pt;}
.ya7{bottom:391.329333pt;}
.y1dc{bottom:391.688000pt;}
.y233{bottom:394.916000pt;}
.y12d{bottom:395.713333pt;}
.y1ff{bottom:396.112000pt;}
.y181{bottom:397.185333pt;}
.y73{bottom:398.486667pt;}
.y1a3{bottom:399.118667pt;}
.y1bb{bottom:401.277867pt;}
.ya6{bottom:408.066667pt;}
.y1db{bottom:408.425333pt;}
.y3f{bottom:408.497333pt;}
.y232{bottom:410.258667pt;}
.y12c{bottom:412.450667pt;}
.ybb{bottom:412.755587pt;}
.y1fe{bottom:412.848000pt;}
.y72{bottom:415.224000pt;}
.y180{bottom:416.206667pt;}
.y15{bottom:418.330667pt;}
.yf8{bottom:418.958667pt;}
.yba{bottom:421.475067pt;}
.y1ba{bottom:422.317733pt;}
.ya5{bottom:424.804000pt;}
.y1da{bottom:425.162667pt;}
.y231{bottom:425.601333pt;}
.y3e{bottom:425.793333pt;}
.y1a2{bottom:427.225333pt;}
.y12b{bottom:429.188000pt;}
.y1fd{bottom:429.585333pt;}
.y71{bottom:431.961333pt;}
.y14{bottom:434.230667pt;}
.yf7{bottom:435.696000pt;}
.y230{bottom:440.944000pt;}
.ya4{bottom:441.541333pt;}
.y1d9{bottom:441.900000pt;}
.y17f{bottom:442.918667pt;}
.y3d{bottom:443.088000pt;}
.y1a1{bottom:444.321333pt;}
.y12a{bottom:445.925333pt;}
.y1fc{bottom:446.322667pt;}
.y70{bottom:448.698667pt;}
.y13{bottom:450.130667pt;}
.yd4{bottom:451.509963pt;}
.yf6{bottom:452.433333pt;}
.y22f{bottom:456.285333pt;}
.y1b9{bottom:456.477733pt;}
.ya3{bottom:458.278667pt;}
.y1d8{bottom:458.636000pt;}
.y3c{bottom:460.382667pt;}
.y129{bottom:462.662667pt;}
.y1fb{bottom:463.060000pt;}
.y6f{bottom:465.436000pt;}
.yd3{bottom:468.629467pt;}
.yf5{bottom:469.170667pt;}
.y17e{bottom:471.110667pt;}
.y22e{bottom:471.628000pt;}
.y1b8{bottom:472.717333pt;}
.ya2{bottom:475.016000pt;}
.y1d7{bottom:475.373333pt;}
.y15a{bottom:475.851224pt;}
.y3b{bottom:477.678667pt;}
.y128{bottom:479.398667pt;}
.y1fa{bottom:479.797333pt;}
.y12{bottom:481.972000pt;}
.y6e{bottom:482.173333pt;}
.y1a0{bottom:482.618667pt;}
.yf4{bottom:485.908000pt;}
.y22d{bottom:486.970667pt;}
.y17d{bottom:487.848000pt;}
.y1b7{bottom:488.877733pt;}
.ya1{bottom:491.753333pt;}
.y1d6{bottom:492.110667pt;}
.y159{bottom:492.970728pt;}
.y3a{bottom:494.973333pt;}
.y127{bottom:496.136000pt;}
.y1f9{bottom:496.534667pt;}
.y19f{bottom:497.230667pt;}
.y11{bottom:497.872000pt;}
.y6d{bottom:498.910667pt;}
.yd2{bottom:501.349067pt;}
.y22c{bottom:502.313333pt;}
.yf3{bottom:502.645333pt;}
.y17c{bottom:504.585333pt;}
.y1b6{bottom:505.037733pt;}
.ya0{bottom:508.490667pt;}
.y1d5{bottom:508.848000pt;}
.y158{bottom:510.010072pt;}
.y19e{bottom:511.842667pt;}
.y39{bottom:512.269333pt;}
.y126{bottom:512.873333pt;}
.y1f8{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y6c{bottom:515.648000pt;}
.yd1{bottom:516.789467pt;}
.y22b{bottom:517.656000pt;}
.yf2{bottom:519.382667pt;}
.y1b4{bottom:521.995733pt;}
.y9f{bottom:525.228000pt;}
.y17b{bottom:525.308000pt;}
.y1d4{bottom:525.585333pt;}
.y19d{bottom:526.453333pt;}
.y157{bottom:527.129576pt;}
.y38{bottom:529.564000pt;}
.y125{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y1f7{bottom:530.009333pt;}
.y1b3{bottom:530.076533pt;}
.y6b{bottom:532.384000pt;}
.y22a{bottom:532.998667pt;}
.yf1{bottom:536.120000pt;}
.yd0{bottom:536.711019pt;}
.y1b5{bottom:538.156133pt;}
.y19c{bottom:541.065333pt;}
.y1d3{bottom:542.322667pt;}
.y17a{bottom:543.241333pt;}
.y156{bottom:544.249080pt;}
.ye{bottom:545.573333pt;}
.y9e{bottom:545.950667pt;}
.y124{bottom:546.348000pt;}
.y1f6{bottom:546.746667pt;}
.y37{bottom:546.858667pt;}
.y229{bottom:548.341333pt;}
.y6a{bottom:549.121333pt;}
.yf0{bottom:552.857333pt;}
.y19b{bottom:555.677333pt;}
.y155{bottom:561.289760pt;}
.yd{bottom:561.473333pt;}
.y9d{bottom:562.686667pt;}
.y1d2{bottom:563.045333pt;}
.y123{bottom:563.085333pt;}
.y1f5{bottom:563.484000pt;}
.y228{bottom:563.684000pt;}
.y36{bottom:564.154667pt;}
.y69{bottom:565.858667pt;}
.yef{bottom:569.594667pt;}
.y19a{bottom:570.289333pt;}
.y1b2{bottom:571.436933pt;}
.y179{bottom:573.129333pt;}
.yc{bottom:577.374667pt;}
.yc9{bottom:577.865333pt;}
.y154{bottom:578.409264pt;}
.y227{bottom:579.025333pt;}
.y9c{bottom:579.424000pt;}
.y122{bottom:579.822667pt;}
.y1f4{bottom:580.221333pt;}
.y35{bottom:581.449333pt;}
.y68{bottom:582.596000pt;}
.y199{bottom:584.901333pt;}
.yee{bottom:586.332000pt;}
.y1b1{bottom:586.877333pt;}
.y178{bottom:589.866667pt;}
.yb{bottom:593.274667pt;}
.y1d1{bottom:594.077333pt;}
.y226{bottom:594.368000pt;}
.yc8{bottom:594.602667pt;}
.y153{bottom:595.448608pt;}
.y9b{bottom:596.161333pt;}
.y121{bottom:596.560000pt;}
.y1f3{bottom:596.958667pt;}
.y34{bottom:598.744000pt;}
.y67{bottom:599.333333pt;}
.y198{bottom:599.513333pt;}
.y1b0{bottom:602.317733pt;}
.yed{bottom:603.069333pt;}
.y177{bottom:606.604000pt;}
.y225{bottom:609.710667pt;}
.y1d0{bottom:611.173333pt;}
.y152{bottom:612.568112pt;}
.y9a{bottom:612.898667pt;}
.y8{bottom:613.160048pt;}
.y120{bottom:613.297333pt;}
.y1f2{bottom:613.696000pt;}
.y33{bottom:616.040000pt;}
.y66{bottom:616.070667pt;}
.yec{bottom:619.806667pt;}
.y197{bottom:620.526667pt;}
.y176{bottom:623.340000pt;}
.yc7{bottom:624.438667pt;}
.y224{bottom:625.053333pt;}
.y1cf{bottom:628.269333pt;}
.y99{bottom:629.636000pt;}
.y151{bottom:629.687616pt;}
.y11f{bottom:630.034667pt;}
.y1f1{bottom:630.433333pt;}
.y65{bottom:632.808000pt;}
.y32{bottom:633.334667pt;}
.yeb{bottom:636.544000pt;}
.y175{bottom:640.077333pt;}
.y223{bottom:640.396000pt;}
.yc6{bottom:641.534667pt;}
.y98{bottom:646.373333pt;}
.y150{bottom:646.726960pt;}
.y11e{bottom:646.772000pt;}
.y1f0{bottom:647.170667pt;}
.y1ac{bottom:648.206667pt;}
.y196{bottom:648.633333pt;}
.y1ae{bottom:649.438253pt;}
.y64{bottom:649.545333pt;}
.y31{bottom:650.630667pt;}
.yea{bottom:653.281333pt;}
.y222{bottom:655.738667pt;}
.y174{bottom:656.814667pt;}
.y1ad{bottom:658.157733pt;}
.yb9{bottom:661.470667pt;}
.y97{bottom:663.110667pt;}
.y14f{bottom:663.846464pt;}
.y1ef{bottom:663.908000pt;}
.y195{bottom:665.729333pt;}
.y63{bottom:666.282667pt;}
.y11d{bottom:667.494667pt;}
.ye9{bottom:670.018667pt;}
.y221{bottom:671.081333pt;}
.y173{bottom:673.552000pt;}
.y96{bottom:679.848000pt;}
.y1ee{bottom:680.645333pt;}
.y14e{bottom:680.887144pt;}
.y62{bottom:683.020000pt;}
.y30{bottom:684.928000pt;}
.y220{bottom:686.424000pt;}
.ye8{bottom:686.756000pt;}
.y172{bottom:690.289333pt;}
.y95{bottom:696.585333pt;}
.y11c{bottom:697.382667pt;}
.y14d{bottom:698.006648pt;}
.y2f{bottom:699.274667pt;}
.y61{bottom:699.757333pt;}
.y21f{bottom:701.766667pt;}
.ye7{bottom:703.493333pt;}
.y171{bottom:707.026667pt;}
.y94{bottom:713.322667pt;}
.y2e{bottom:713.621333pt;}
.y11b{bottom:714.120000pt;}
.y14c{bottom:715.126152pt;}
.y60{bottom:716.494667pt;}
.y21e{bottom:717.108000pt;}
.ye6{bottom:720.230667pt;}
.y170{bottom:723.764000pt;}
.y93{bottom:730.060000pt;}
.y119{bottom:730.857333pt;}
.y2d{bottom:731.824000pt;}
.y14b{bottom:732.165496pt;}
.y21d{bottom:732.450667pt;}
.y5f{bottom:733.232000pt;}
.y11a{bottom:735.678667pt;}
.ye5{bottom:736.968000pt;}
.y16f{bottom:740.501333pt;}
.y2c{bottom:742.313333pt;}
.y92{bottom:746.797333pt;}
.y118{bottom:747.594667pt;}
.y21c{bottom:747.793333pt;}
.y14a{bottom:749.285000pt;}
.y5e{bottom:749.969333pt;}
.ye4{bottom:753.705333pt;}
.y2b{bottom:756.660000pt;}
.y16e{bottom:757.238667pt;}
.y21b{bottom:763.136000pt;}
.y91{bottom:763.534667pt;}
.y117{bottom:764.332000pt;}
.y149{bottom:766.404504pt;}
.y5d{bottom:766.706667pt;}
.ye3{bottom:770.442667pt;}
.y2a{bottom:771.005333pt;}
.y16d{bottom:773.976000pt;}
.y29{bottom:774.864000pt;}
.y21a{bottom:778.478667pt;}
.y116{bottom:781.069333pt;}
.y254{bottom:782.464000pt;}
.y5c{bottom:783.444000pt;}
.y148{bottom:783.445184pt;}
.y90{bottom:784.257333pt;}
.ye2{bottom:787.180000pt;}
.y28{bottom:789.209333pt;}
.y219{bottom:793.821333pt;}
.y115{bottom:797.806667pt;}
.y16c{bottom:798.410667pt;}
.y27{bottom:799.698667pt;}
.y5b{bottom:800.181333pt;}
.y147{bottom:800.564688pt;}
.ye1{bottom:803.916000pt;}
.y16b{bottom:807.524000pt;}
.y218{bottom:809.164000pt;}
.y252{bottom:813.148000pt;}
.y253{bottom:813.149333pt;}
.y26{bottom:814.045333pt;}
.y8f{bottom:814.145333pt;}
.y114{bottom:814.544000pt;}
.y5a{bottom:816.918667pt;}
.y146{bottom:817.605368pt;}
.ye0{bottom:820.653333pt;}
.y217{bottom:824.506667pt;}
.y251{bottom:828.490667pt;}
.y8e{bottom:830.882667pt;}
.y113{bottom:831.281333pt;}
.y25{bottom:832.248000pt;}
.y59{bottom:833.656000pt;}
.y145{bottom:834.724872pt;}
.y16a{bottom:836.541333pt;}
.y216{bottom:839.848000pt;}
.y250{bottom:843.833333pt;}
.ydf{bottom:844.033333pt;}
.y169{bottom:845.653333pt;}
.y8d{bottom:847.620000pt;}
.y112{bottom:848.018667pt;}
.y58{bottom:850.393333pt;}
.y144{bottom:851.844376pt;}
.y215{bottom:855.190667pt;}
.y24f{bottom:859.176000pt;}
.yde{bottom:860.770667pt;}
.y8c{bottom:864.357333pt;}
.y111{bottom:864.754667pt;}
.y57{bottom:867.130667pt;}
.y7{bottom:867.976000pt;}
.y143{bottom:868.885056pt;}
.y214{bottom:870.533333pt;}
.y24e{bottom:874.518667pt;}
.y168{bottom:875.156000pt;}
.ydd{bottom:877.508000pt;}
.ycf{bottom:878.470507pt;}
.y8b{bottom:881.094667pt;}
.y110{bottom:881.492000pt;}
.y56{bottom:883.868000pt;}
.y167{bottom:884.269333pt;}
.y6{bottom:884.713333pt;}
.y213{bottom:885.876000pt;}
.y24d{bottom:889.861333pt;}
.y142{bottom:890.004544pt;}
.ydc{bottom:894.245333pt;}
.yce{bottom:895.590011pt;}
.y8a{bottom:897.832000pt;}
.y10f{bottom:898.229333pt;}
.y55{bottom:900.605333pt;}
.y212{bottom:901.218667pt;}
.y24c{bottom:905.204000pt;}
.ydb{bottom:910.982667pt;}
.y10e{bottom:914.966667pt;}
.y211{bottom:916.561333pt;}
.y54{bottom:917.342667pt;}
.y89{bottom:918.553333pt;}
.y166{bottom:918.866667pt;}
.y24b{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.yda{bottom:927.720000pt;}
.y165{bottom:927.978667pt;}
.y10d{bottom:931.704000pt;}
.y210{bottom:931.904000pt;}
.y53{bottom:934.080000pt;}
.y24a{bottom:935.889333pt;}
.y140{bottom:938.484520pt;}
.ycc{bottom:944.069987pt;}
.yd9{bottom:944.456000pt;}
.y13f{bottom:947.204000pt;}
.y20f{bottom:947.246667pt;}
.y88{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.y249{bottom:951.230667pt;}
.ycb{bottom:952.789467pt;}
.yd8{bottom:961.193333pt;}
.y20e{bottom:962.589333pt;}
.y87{bottom:965.178667pt;}
.y248{bottom:966.573333pt;}
.y51{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y86{bottom:981.916000pt;}
.y50{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:28.947524pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h24{height:30.732706pt;}
.h1b{height:32.278300pt;}
.ha{height:33.771789pt;}
.hb{height:33.957757pt;}
.hf{height:34.574438pt;}
.h1d{height:36.666735pt;}
.h1a{height:36.873667pt;}
.h1c{height:37.778179pt;}
.h11{height:38.415786pt;}
.h1f{height:38.462187pt;}
.he{height:38.596538pt;}
.hd{height:38.809074pt;}
.h4{height:38.947124pt;}
.h15{height:39.359687pt;}
.h14{height:39.588281pt;}
.h10{height:43.421286pt;}
.h2a{height:43.660390pt;}
.h27{height:44.390625pt;}
.h17{height:44.648438pt;}
.h2{height:45.272024pt;}
.h12{height:48.245551pt;}
.h6{height:49.201961pt;}
.h16{height:49.421563pt;}
.h29{height:49.708594pt;}
.h18{height:54.156562pt;}
.h25{height:60.455372pt;}
.h5{height:69.148877pt;}
.h23{height:74.915124pt;}
.h20{height:74.920458pt;}
.h28{height:76.966837pt;}
.h3{height:83.992000pt;}
.h21{height:84.693551pt;}
.h22{height:84.698884pt;}
.h13{height:333.729333pt;}
.h26{height:346.994667pt;}
.h19{height:434.267733pt;}
.h1e{height:460.099600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:204.451647pt;}
.w6{width:353.976000pt;}
.w4{width:441.249333pt;}
.w5{width:457.308000pt;}
.w7{width:694.688133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x66{left:-174.021333pt;}
.x44{left:-169.133333pt;}
.x38{left:-167.038667pt;}
.x0{left:0.000000pt;}
.x87{left:1.920133pt;}
.x45{left:4.705698pt;}
.x39{left:6.800365pt;}
.x3{left:26.021437pt;}
.x67{left:28.137604pt;}
.x47{left:33.026667pt;}
.x3b{left:35.121333pt;}
.x1{left:48.000000pt;}
.x86{left:49.506533pt;}
.x2{left:52.816857pt;}
.x85{left:62.920000pt;}
.x74{left:66.881333pt;}
.x76{left:69.825333pt;}
.x84{left:70.721333pt;}
.x7e{left:71.716000pt;}
.x73{left:73.816000pt;}
.x83{left:74.905333pt;}
.x7d{left:76.285333pt;}
.x81{left:77.874667pt;}
.x79{left:79.112000pt;}
.x80{left:80.196000pt;}
.x75{left:81.313333pt;}
.x7f{left:82.661333pt;}
.x72{left:85.882667pt;}
.x77{left:111.889333pt;}
.x82{left:121.489333pt;}
.x96{left:127.242667pt;}
.x78{left:156.792000pt;}
.x88{left:175.760133pt;}
.x90{left:186.000133pt;}
.x92{left:189.361151pt;}
.x8f{left:193.840133pt;}
.x91{left:202.320621pt;}
.x93{left:204.080133pt;}
.x89{left:205.999696pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x71{left:228.248000pt;}
.x5{left:241.085333pt;}
.x94{left:243.040133pt;}
.x4d{left:250.237333pt;}
.x9{left:251.365333pt;}
.x37{left:253.769333pt;}
.x48{left:266.738667pt;}
.x7{left:275.053333pt;}
.x3d{left:277.437333pt;}
.x8{left:285.996000pt;}
.x2f{left:289.332000pt;}
.x20{left:299.608000pt;}
.x30{left:302.614667pt;}
.x8a{left:304.398827pt;}
.x4e{left:305.605333pt;}
.x7a{left:306.556000pt;}
.x21{left:312.892000pt;}
.x2d{left:315.178667pt;}
.x63{left:316.662667pt;}
.x69{left:317.860000pt;}
.x60{left:322.176000pt;}
.x5f{left:324.034667pt;}
.x2e{left:328.462667pt;}
.x5e{left:329.450667pt;}
.x49{left:333.046667pt;}
.x62{left:337.897333pt;}
.x61{left:338.860000pt;}
.x64{left:346.617333pt;}
.x4a{left:347.621333pt;}
.x9f{left:349.132000pt;}
.x68{left:351.815996pt;}
.x4f{left:356.818667pt;}
.x5a{left:362.881333pt;}
.x9c{left:365.126667pt;}
.x8b{left:371.038619pt;}
.x9d{left:378.409333pt;}
.x50{left:383.529333pt;}
.x6f{left:385.384000pt;}
.x6e{left:386.792000pt;}
.x5b{left:388.718667pt;}
.x9e{left:396.156000pt;}
.x51{left:397.205333pt;}
.x1a{left:399.382667pt;}
.x8c{left:406.719144pt;}
.x52{left:411.220000pt;}
.x1b{left:412.666667pt;}
.x7b{left:416.350667pt;}
.x6a{left:422.137333pt;}
.x6c{left:429.158667pt;}
.x46{left:434.704597pt;}
.x3a{left:436.799264pt;}
.x5c{left:438.034667pt;}
.x22{left:440.622667pt;}
.x10{left:448.408000pt;}
.x23{left:453.905333pt;}
.x11{left:455.049333pt;}
.x3c{left:457.279051pt;}
.x70{left:459.380000pt;}
.x3e{left:462.825333pt;}
.x1c{left:468.158667pt;}
.x55{left:470.470667pt;}
.xa{left:476.653333pt;}
.x2b{left:479.386667pt;}
.x1d{left:481.442667pt;}
.xb{left:483.296000pt;}
.x6d{left:485.101333pt;}
.x5d{left:490.326667pt;}
.x2c{left:492.670667pt;}
.x6b{left:494.950667pt;}
.x35{left:506.533333pt;}
.x36{left:519.817333pt;}
.x3f{left:530.520000pt;}
.x26{left:537.405333pt;}
.x27{left:550.689333pt;}
.x53{left:552.517333pt;}
.x28{left:554.064000pt;}
.x54{left:565.801333pt;}
.x29{left:567.346667pt;}
.x16{left:582.484000pt;}
.x17{left:589.125333pt;}
.x8d{left:593.118882pt;}
.x18{left:598.398667pt;}
.x97{left:602.534667pt;}
.x19{left:605.041333pt;}
.x98{left:609.176000pt;}
.x99{left:612.562667pt;}
.x40{left:615.438667pt;}
.x14{left:619.077333pt;}
.x41{left:620.746667pt;}
.x9a{left:622.592000pt;}
.x33{left:623.722667pt;}
.x15{left:625.718667pt;}
.x8e{left:630.478717pt;}
.x65{left:633.521333pt;}
.x9b{left:635.876000pt;}
.xc{left:637.426667pt;}
.x58{left:643.122667pt;}
.xd{left:644.068000pt;}
.x4b{left:645.082667pt;}
.x1e{left:647.426667pt;}
.x2a{left:650.181333pt;}
.x59{left:656.405333pt;}
.x4c{left:659.656000pt;}
.x1f{left:660.710667pt;}
.x42{left:678.070667pt;}
.x43{left:685.374667pt;}
.x34{left:689.388000pt;}
.x56{left:691.982667pt;}
.x95{left:695.918247pt;}
.x31{left:700.852000pt;}
.x57{left:705.265333pt;}
.x32{left:714.134667pt;}
.x7c{left:715.878667pt;}
.xa0{left:720.236000pt;}
.x24{left:728.082667pt;}
.xe{left:732.820000pt;}
.x12{left:733.794667pt;}
.xf{left:739.461333pt;}
.x13{left:740.436000pt;}
.x25{left:741.365333pt;}
.xa1{left:744.146667pt;}
}




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