
    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_6bd03302ad542074cbfc7039.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_eefae3f3d5e935f415287b8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_2d513cbed8b3b821d09c9615.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_fb67952c4016cff7f50e3842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_135d173efeaafafb1cb53e72.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_df3957b6e633c1531585e912.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011000;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_06bccced3d8204281ce2316d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5fb6a9db95c8be33319bd4c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a1942bb11d7b542cff51d916.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_ee9b8fb28f2d9fd3f821d394.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0cd15c5708aecfff66628b45.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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_f7aa2e37a93f117355f0ee63.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_b352358a75881eb9156f14f4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900000;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_e713295b2d9f5ed2b748bac1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.799000;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_fc6fcf329427dc727e87168b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9b1e5ef60bd58e0d63c5078e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.870000;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;}
.m3{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);}
.mf{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);}
.m24{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);}
.m2b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m16{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);}
.m7{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);}
.m4{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);}
.m15{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);}
.m21{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);}
.m6{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);}
.m1e{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);}
.m18{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.md{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);}
.m29{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);}
.m22{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);}
.m14{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);}
.m26{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);}
.m28{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);}
.m27{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);}
.m13{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);}
.m17{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);}
.m9{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);}
.m20{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);}
.m12{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);}
.m11{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);}
.mb{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);}
.ma{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);}
.m2a{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);}
.me{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);}
.m1f{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);}
.m8{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);}
.m23{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m19{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);}
.m1b{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);}
.m5{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);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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.364000px;}
.ve{vertical-align:-13.572000px;}
.v12{vertical-align:-12.264000px;}
.v3{vertical-align:-10.494000px;}
.vd{vertical-align:-8.190000px;}
.v10{vertical-align:-4.602000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:4.002000px;}
.va{vertical-align:9.018000px;}
.vc{vertical-align:16.494000px;}
.vf{vertical-align:18.228000px;}
.v7{vertical-align:20.484000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:24.684000px;}
.v4{vertical-align:32.880000px;}
.vb{vertical-align:34.764000px;}
.v9{vertical-align:50.430000px;}
.v5{vertical-align:66.378000px;}
.v6{vertical-align:86.862000px;}
.ls30{letter-spacing:-0.156312px;}
.ls2f{letter-spacing:-0.132264px;}
.ls33{letter-spacing:-0.120240px;}
.ls29{letter-spacing:-0.086184px;}
.ls32{letter-spacing:-0.084168px;}
.ls31{letter-spacing:-0.042084px;}
.ls2b{letter-spacing:-0.037800px;}
.ls34{letter-spacing:-0.024048px;}
.ls2e{letter-spacing:-0.018036px;}
.ls2d{letter-spacing:-0.012024px;}
.ls2c{letter-spacing:-0.006012px;}
.ls2a{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000027px;}
.ls16{letter-spacing:0.000323px;}
.lsc{letter-spacing:0.000583px;}
.ls85{letter-spacing:0.000676px;}
.ls82{letter-spacing:0.000800px;}
.ls81{letter-spacing:0.001036px;}
.ls7f{letter-spacing:0.001155px;}
.ls58{letter-spacing:0.001342px;}
.ls4c{letter-spacing:0.001580px;}
.ls60{letter-spacing:0.002467px;}
.ls80{letter-spacing:0.002544px;}
.ls5{letter-spacing:0.002782px;}
.ls87{letter-spacing:0.003634px;}
.ls4d{letter-spacing:0.004116px;}
.ls51{letter-spacing:0.004547px;}
.ls46{letter-spacing:0.004665px;}
.ls25{letter-spacing:0.006012px;}
.ls1f{letter-spacing:0.010800px;}
.ls27{letter-spacing:0.012024px;}
.ls21{letter-spacing:0.016200px;}
.ls26{letter-spacing:0.018036px;}
.ls18{letter-spacing:0.019152px;}
.ls1d{letter-spacing:0.030060px;}
.ls1e{letter-spacing:0.032400px;}
.ls22{letter-spacing:0.036072px;}
.ls1c{letter-spacing:0.042084px;}
.ls24{letter-spacing:0.048096px;}
.ls20{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.054108px;}
.ls1b{letter-spacing:0.060120px;}
.ls1a{letter-spacing:0.181944px;}
.ls19{letter-spacing:0.191520px;}
.ls5d{letter-spacing:0.497764px;}
.ls5c{letter-spacing:0.503764px;}
.ls42{letter-spacing:0.508407px;}
.ls4a{letter-spacing:0.542815px;}
.ls43{letter-spacing:0.548815px;}
.ls41{letter-spacing:0.569488px;}
.ls66{letter-spacing:0.603044px;}
.ls5f{letter-spacing:0.609044px;}
.ls65{letter-spacing:0.642088px;}
.ls64{letter-spacing:0.648088px;}
.ls38{letter-spacing:0.670741px;}
.ls57{letter-spacing:0.676741px;}
.ls78{letter-spacing:0.717483px;}
.ls76{letter-spacing:0.723483px;}
.ls3e{letter-spacing:0.734012px;}
.ls54{letter-spacing:0.744476px;}
.ls3d{letter-spacing:0.746725px;}
.ls55{letter-spacing:0.748115px;}
.ls9{letter-spacing:1.275394px;}
.ls3a{letter-spacing:1.489694px;}
.ls2{letter-spacing:1.861130px;}
.ls5b{letter-spacing:2.985986px;}
.ls5a{letter-spacing:2.991986px;}
.ls44{letter-spacing:3.502407px;}
.ls70{letter-spacing:3.660600px;}
.ls67{letter-spacing:3.666600px;}
.ls59{letter-spacing:3.733200px;}
.ls56{letter-spacing:3.735986px;}
.ls49{letter-spacing:11.283483px;}
.ls73{letter-spacing:11.951700px;}
.ls8{letter-spacing:11.954850px;}
.ls52{letter-spacing:12.339483px;}
.ls50{letter-spacing:12.345483px;}
.ls39{letter-spacing:13.089483px;}
.ls5e{letter-spacing:13.449740px;}
.ls6c{letter-spacing:14.094088px;}
.ls6a{letter-spacing:14.100088px;}
.ls4b{letter-spacing:14.299200px;}
.ls48{letter-spacing:14.305200px;}
.ls83{letter-spacing:14.555485px;}
.ls17{letter-spacing:14.645022px;}
.lsb{letter-spacing:14.704798px;}
.ls7d{letter-spacing:14.764573px;}
.ls3f{letter-spacing:14.824349px;}
.lsd{letter-spacing:14.943900px;}
.ls15{letter-spacing:15.003676px;}
.ls10{letter-spacing:15.063451px;}
.ls28{letter-spacing:15.123227px;}
.ls11{letter-spacing:15.183002px;}
.ls12{letter-spacing:15.242778px;}
.ls7e{letter-spacing:15.302554px;}
.ls4f{letter-spacing:15.357986px;}
.ls7c{letter-spacing:15.422105px;}
.ls7b{letter-spacing:15.541656px;}
.ls75{letter-spacing:15.687986px;}
.ls77{letter-spacing:15.693986px;}
.ls86{letter-spacing:15.736449px;}
.ls37{letter-spacing:15.960085px;}
.ls84{letter-spacing:16.859978px;}
.ls53{letter-spacing:17.325483px;}
.ls1{letter-spacing:17.929200px;}
.lsf{letter-spacing:19.427070px;}
.ls13{letter-spacing:21.160562px;}
.lse{letter-spacing:22.654952px;}
.ls7{letter-spacing:23.611362px;}
.ls6{letter-spacing:24.209118px;}
.ls14{letter-spacing:25.225303px;}
.lsa{letter-spacing:26.121937px;}
.ls47{letter-spacing:26.229483px;}
.ls4e{letter-spacing:27.285483px;}
.ls7a{letter-spacing:31.497483px;}
.ls40{letter-spacing:32.265483px;}
.ls3b{letter-spacing:32.968741px;}
.ls79{letter-spacing:33.775200px;}
.ls74{letter-spacing:35.613483px;}
.ls45{letter-spacing:46.065483px;}
.ls3c{letter-spacing:47.211483px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls35{letter-spacing:259.635745px;}
.ls6b{letter-spacing:381.363044px;}
.ls6f{letter-spacing:402.573044px;}
.ls6d{letter-spacing:412.281044px;}
.ls69{letter-spacing:530.427044px;}
.ls68{letter-spacing:551.067044px;}
.ls71{letter-spacing:586.653044px;}
.ls72{letter-spacing:743.421044px;}
.ls61{letter-spacing:762.159044px;}
.ls6e{letter-spacing:775.665044px;}
.ls63{letter-spacing:845.385044px;}
.ls62{letter-spacing:869.571044px;}
.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;}
}
.ws1{word-spacing:-16.529216px;}
.ws29{word-spacing:-14.943900px;}
.wsb0{word-spacing:-13.449600px;}
.ws7d{word-spacing:-12.161520px;}
.ws38{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.wsc5{word-spacing:-8.966400px;}
.wsd2{word-spacing:-4.983600px;}
.wsd0{word-spacing:-4.233600px;}
.ws9a{word-spacing:-2.843676px;}
.ws6c{word-spacing:-2.630126px;}
.ws9b{word-spacing:-2.627244px;}
.wsfe{word-spacing:-2.582323px;}
.wsfa{word-spacing:-2.510575px;}
.ws95{word-spacing:-2.476944px;}
.wsf9{word-spacing:-2.450800px;}
.ws5a{word-spacing:-2.391024px;}
.wsf6{word-spacing:-2.271473px;}
.ws73{word-spacing:-2.151922px;}
.ws10c{word-spacing:-2.044339px;}
.ws7c{word-spacing:-2.032370px;}
.ws132{word-spacing:-1.990541px;}
.ws4{word-spacing:-1.908367px;}
.ws77{word-spacing:-1.673717px;}
.ws5f{word-spacing:-1.613941px;}
.wsb7{word-spacing:-1.494390px;}
.ws112{word-spacing:-1.398758px;}
.ws99{word-spacing:-1.382760px;}
.ws83{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws46{word-spacing:-1.315063px;}
.ws47{word-spacing:-1.255288px;}
.ws144{word-spacing:-1.237363px;}
.ws145{word-spacing:-1.183565px;}
.ws49{word-spacing:-1.135736px;}
.wsbd{word-spacing:-1.075961px;}
.ws1e{word-spacing:-0.968371px;}
.ws64{word-spacing:-0.956410px;}
.ws143{word-spacing:-0.914573px;}
.ws67{word-spacing:-0.896634px;}
.ws76{word-spacing:-0.836858px;}
.ws4c{word-spacing:-0.777083px;}
.ws68{word-spacing:-0.717307px;}
.ws115{word-spacing:-0.645581px;}
.wsa0{word-spacing:-0.631260px;}
.ws9f{word-spacing:-0.607212px;}
.wsd3{word-spacing:-0.597756px;}
.wsa2{word-spacing:-0.541080px;}
.ws56{word-spacing:-0.537980px;}
.wsf7{word-spacing:-0.478205px;}
.ws136{word-spacing:-0.430387px;}
.ws7b{word-spacing:-0.418429px;}
.ws11b{word-spacing:-0.376589px;}
.ws119{word-spacing:-0.322790px;}
.ws39{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.268992px;}
.ws88{word-spacing:-0.268128px;}
.ws2c{word-spacing:-0.239102px;}
.ws8e{word-spacing:-0.226800px;}
.ws1b{word-spacing:-0.215194px;}
.ws8f{word-spacing:-0.189000px;}
.ws23{word-spacing:-0.179327px;}
.ws10a{word-spacing:-0.161395px;}
.ws2f{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws87{word-spacing:-0.081396px;}
.ws3f{word-spacing:-0.059776px;}
.wsb3{word-spacing:-0.053798px;}
.ws106{word-spacing:-0.010896px;}
.ws13a{word-spacing:-0.010147px;}
.ws11a{word-spacing:-0.010080px;}
.ws10b{word-spacing:-0.009302px;}
.ws111{word-spacing:-0.008592px;}
.ws139{word-spacing:-0.007920px;}
.ws130{word-spacing:-0.007910px;}
.ws108{word-spacing:-0.007267px;}
.ws110{word-spacing:-0.007219px;}
.wse2{word-spacing:-0.007066px;}
.ws141{word-spacing:-0.006912px;}
.wsb2{word-spacing:-0.006816px;}
.ws120{word-spacing:-0.006480px;}
.ws11e{word-spacing:-0.005933px;}
.wse1{word-spacing:-0.005059px;}
.ws10e{word-spacing:-0.003302px;}
.ws12b{word-spacing:-0.001402px;}
.ws0{word-spacing:0.000000px;}
.ws113{word-spacing:0.001200px;}
.ws7{word-spacing:0.001648px;}
.ws133{word-spacing:0.002112px;}
.wsee{word-spacing:0.004423px;}
.ws91{word-spacing:0.036072px;}
.ws1c{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.ws8b{word-spacing:0.066132px;}
.ws16{word-spacing:0.107597px;}
.ws3e{word-spacing:0.119551px;}
.wsa1{word-spacing:0.138276px;}
.ws8c{word-spacing:0.151200px;}
.ws1f{word-spacing:0.161395px;}
.ws8d{word-spacing:0.172800px;}
.ws5c{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.wsb1{word-spacing:0.215194px;}
.ws90{word-spacing:0.221400px;}
.ws98{word-spacing:0.228456px;}
.ws48{word-spacing:0.239102px;}
.ws116{word-spacing:0.246459px;}
.ws86{word-spacing:0.253764px;}
.ws100{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws22{word-spacing:0.298878px;}
.wsfd{word-spacing:0.322790px;}
.ws44{word-spacing:0.358654px;}
.ws122{word-spacing:0.376589px;}
.ws42{word-spacing:0.418429px;}
.ws129{word-spacing:0.430387px;}
.ws92{word-spacing:0.462924px;}
.ws6b{word-spacing:0.478205px;}
.ws66{word-spacing:0.537980px;}
.ws1a{word-spacing:0.537984px;}
.wsb8{word-spacing:0.597756px;}
.wsd4{word-spacing:0.657532px;}
.wse3{word-spacing:0.663187px;}
.wsea{word-spacing:0.667843px;}
.wse4{word-spacing:0.670272px;}
.wsed{word-spacing:0.670310px;}
.wse9{word-spacing:0.674179px;}
.ws11d{word-spacing:0.699379px;}
.wsc0{word-spacing:0.717307px;}
.ws80{word-spacing:0.777083px;}
.ws51{word-spacing:0.836858px;}
.ws140{word-spacing:0.860774px;}
.wsb5{word-spacing:0.896634px;}
.wsf2{word-spacing:0.956410px;}
.ws6a{word-spacing:1.016185px;}
.ws10f{word-spacing:1.022170px;}
.ws4f{word-spacing:1.075961px;}
.ws89{word-spacing:1.118232px;}
.ws127{word-spacing:1.129766px;}
.ws19{word-spacing:1.183565px;}
.wsfc{word-spacing:1.195512px;}
.ws33{word-spacing:1.255288px;}
.ws34{word-spacing:1.315063px;}
.ws36{word-spacing:1.374839px;}
.ws4a{word-spacing:1.434614px;}
.ws126{word-spacing:1.452557px;}
.ws4e{word-spacing:1.494390px;}
.ws93{word-spacing:1.503000px;}
.ws94{word-spacing:1.539072px;}
.ws4d{word-spacing:1.554166px;}
.ws35{word-spacing:1.673717px;}
.ws17{word-spacing:1.721549px;}
.ws57{word-spacing:1.733492px;}
.wsf5{word-spacing:1.793268px;}
.ws107{word-spacing:1.882944px;}
.ws72{word-spacing:1.912819px;}
.ws103{word-spacing:1.936742px;}
.ws60{word-spacing:1.972595px;}
.ws102{word-spacing:1.990541px;}
.wsb{word-spacing:2.008454px;}
.ws84{word-spacing:2.032370px;}
.ws63{word-spacing:2.151922px;}
.ws7f{word-spacing:2.205734px;}
.wsa9{word-spacing:2.206404px;}
.wsb4{word-spacing:2.211697px;}
.ws13e{word-spacing:2.259533px;}
.ws45{word-spacing:2.271473px;}
.ws104{word-spacing:2.313331px;}
.ws3b{word-spacing:2.331248px;}
.ws114{word-spacing:2.367130px;}
.ws3a{word-spacing:2.391024px;}
.ws59{word-spacing:2.450800px;}
.ws6{word-spacing:2.508839px;}
.ws31{word-spacing:2.510575px;}
.ws7e{word-spacing:2.528525px;}
.ws32{word-spacing:2.570351px;}
.ws71{word-spacing:2.630126px;}
.ws96{word-spacing:2.633256px;}
.ws82{word-spacing:2.689902px;}
.wsa7{word-spacing:2.735460px;}
.ws6e{word-spacing:2.809453px;}
.wsf8{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.ws13d{word-spacing:2.905114px;}
.ws97{word-spacing:2.927844px;}
.ws52{word-spacing:2.929004px;}
.wsc9{word-spacing:2.939786px;}
.wsca{word-spacing:2.945786px;}
.ws118{word-spacing:2.958912px;}
.wsab{word-spacing:2.963916px;}
.wsac{word-spacing:2.999988px;}
.ws70{word-spacing:3.048556px;}
.ws65{word-spacing:3.108331px;}
.ws40{word-spacing:3.168107px;}
.ws123{word-spacing:3.220474px;}
.ws11f{word-spacing:3.221213px;}
.ws149{word-spacing:3.223219px;}
.ws109{word-spacing:3.223632px;}
.ws146{word-spacing:3.224400px;}
.ws101{word-spacing:3.224822px;}
.ws12a{word-spacing:3.225101px;}
.ws134{word-spacing:3.226109px;}
.ws124{word-spacing:3.226454px;}
.ws138{word-spacing:3.226522px;}
.ws13c{word-spacing:3.227050px;}
.ws105{word-spacing:3.227088px;}
.ws142{word-spacing:3.227654px;}
.ws78{word-spacing:3.227882px;}
.wsc2{word-spacing:3.227904px;}
.ws137{word-spacing:3.227990px;}
.ws131{word-spacing:3.229046px;}
.ws135{word-spacing:3.230093px;}
.ws75{word-spacing:3.287658px;}
.ws121{word-spacing:3.335501px;}
.ws11c{word-spacing:3.389299px;}
.ws58{word-spacing:3.407209px;}
.ws20{word-spacing:3.443098px;}
.wsc7{word-spacing:3.466985px;}
.ws117{word-spacing:3.550694px;}
.ws21{word-spacing:3.586536px;}
.ws12d{word-spacing:3.604493px;}
.ws74{word-spacing:3.646312px;}
.ws125{word-spacing:3.658291px;}
.wsbf{word-spacing:3.706087px;}
.wsf4{word-spacing:3.765863px;}
.ws61{word-spacing:3.825638px;}
.ws81{word-spacing:3.885414px;}
.wsb9{word-spacing:3.998537px;}
.wscd{word-spacing:3.999000px;}
.wsfb{word-spacing:4.004965px;}
.wsce{word-spacing:4.005000px;}
.wsad{word-spacing:4.046076px;}
.ws41{word-spacing:4.064741px;}
.ws55{word-spacing:4.124516px;}
.wsb6{word-spacing:4.244068px;}
.ws2d{word-spacing:4.363619px;}
.wsae{word-spacing:4.412808px;}
.ws2e{word-spacing:4.542946px;}
.ws79{word-spacing:4.602721px;}
.ws13f{word-spacing:4.626662px;}
.wsbe{word-spacing:4.662497px;}
.ws50{word-spacing:5.021150px;}
.ws9e{word-spacing:5.098176px;}
.ws43{word-spacing:5.260253px;}
.ws62{word-spacing:5.320028px;}
.ws85{word-spacing:5.379804px;}
.ws9d{word-spacing:5.470920px;}
.ws4b{word-spacing:5.499355px;}
.ws9c{word-spacing:5.513004px;}
.ws13b{word-spacing:5.541235px;}
.ws7a{word-spacing:5.559131px;}
.ws37{word-spacing:5.678682px;}
.ws12c{word-spacing:5.702630px;}
.ws5b{word-spacing:5.738458px;}
.wsff{word-spacing:5.756429px;}
.wsf1{word-spacing:5.798233px;}
.ws27{word-spacing:5.917784px;}
.ws6f{word-spacing:5.977560px;}
.ws12e{word-spacing:6.025421px;}
.ws28{word-spacing:6.037336px;}
.ws12{word-spacing:6.067206px;}
.wsf3{word-spacing:6.097111px;}
.ws10d{word-spacing:6.133018px;}
.ws13{word-spacing:6.150892px;}
.ws26{word-spacing:6.455765px;}
.ws25{word-spacing:6.515540px;}
.wsf0{word-spacing:6.573000px;}
.ws69{word-spacing:6.575316px;}
.wse7{word-spacing:6.644640px;}
.ws147{word-spacing:6.671002px;}
.ws5d{word-spacing:6.694867px;}
.ws5e{word-spacing:6.754643px;}
.ws8a{word-spacing:6.895764px;}
.ws128{word-spacing:6.993792px;}
.ws148{word-spacing:7.101389px;}
.wsaa{word-spacing:7.262496px;}
.ws30{word-spacing:7.292623px;}
.ws15{word-spacing:7.316582px;}
.ws3c{word-spacing:7.352399px;}
.ws24{word-spacing:7.412174px;}
.ws2a{word-spacing:7.651277px;}
.ws6d{word-spacing:7.711052px;}
.ws54{word-spacing:7.890379px;}
.ws10{word-spacing:8.661460px;}
.ws3d{word-spacing:9.265218px;}
.wsbb{word-spacing:9.922750px;}
.wsba{word-spacing:9.982525px;}
.wsa6{word-spacing:10.911780px;}
.wsa5{word-spacing:10.917792px;}
.wsc4{word-spacing:11.175682px;}
.wsa8{word-spacing:11.224404px;}
.wsa4{word-spacing:12.288528px;}
.wsa3{word-spacing:12.685320px;}
.ws53{word-spacing:12.791978px;}
.wscb{word-spacing:14.943900px;}
.ws8{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.ws12f{word-spacing:15.493939px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wscf{word-spacing:16.154537px;}
.wsf{word-spacing:17.699504px;}
.wsc8{word-spacing:22.784537px;}
.wsc3{word-spacing:23.924537px;}
.wscc{word-spacing:23.927786px;}
.wsef{word-spacing:26.523000px;}
.ws11{word-spacing:27.448877px;}
.wsd1{word-spacing:31.103786px;}
.wsd8{word-spacing:89.133132px;}
.wsd6{word-spacing:89.826694px;}
.wsd9{word-spacing:92.891016px;}
.wsd7{word-spacing:101.719847px;}
.wse0{word-spacing:117.954853px;}
.wsd5{word-spacing:118.351937px;}
.wsdf{word-spacing:124.273116px;}
.wsdb{word-spacing:124.314959px;}
.wsdd{word-spacing:134.733816px;}
.wsda{word-spacing:134.775659px;}
.wsdc{word-spacing:154.567303px;}
.wsde{word-spacing:178.710599px;}
.wsec{word-spacing:207.043133px;}
.wse6{word-spacing:218.016931px;}
.wse8{word-spacing:221.004931px;}
.wseb{word-spacing:245.670931px;}
.wse5{word-spacing:287.738333px;}
.wsbc{word-spacing:378.319772px;}
.wsaf{word-spacing:474.717082px;}
.wsc6{word-spacing:744.983303px;}
.wsc1{word-spacing:960.893222px;}
._5c{margin-left:-27.437000px;}
._5e{margin-left:-24.677077px;}
._5d{margin-left:-22.040124px;}
._5f{margin-left:-20.981376px;}
._60{margin-left:-7.962163px;}
._f{margin-left:-6.657913px;}
._4{margin-left:-5.397721px;}
._8{margin-left:-4.088678px;}
._6{margin-left:-2.995645px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._1{width:2.995645px;}
._2e{width:4.471224px;}
._5b{width:6.762210px;}
._4c{width:10.502543px;}
._5{width:12.971268px;}
._10{width:13.982977px;}
._b{width:15.816730px;}
._7{width:16.949782px;}
._a{width:18.721843px;}
._17{width:20.230060px;}
._9{width:21.591040px;}
._e{width:22.961398px;}
._c{width:24.448220px;}
._1f{width:26.062162px;}
._1b{width:27.131437px;}
._14{width:28.520528px;}
._1c{width:29.798637px;}
._61{width:31.082386px;}
._15{width:32.278824px;}
._0{width:33.355008px;}
._11{width:35.387155px;}
._19{width:37.023917px;}
._d{width:38.562829px;}
._18{width:40.233879px;}
._16{width:42.403602px;}
._50{width:89.731864px;}
._52{width:100.568120px;}
._48{width:105.946622px;}
._4a{width:107.529619px;}
._4d{width:115.584950px;}
._31{width:119.879622px;}
._49{width:124.482330px;}
._51{width:128.826677px;}
._57{width:131.480333px;}
._40{width:132.516148px;}
._30{width:133.604060px;}
._42{width:134.733816px;}
._3d{width:145.236359px;}
._45{width:146.742700px;}
._36{width:147.997984px;}
._56{width:151.700122px;}
._3b{width:155.731033px;}
._59{width:157.953361px;}
._32{width:162.810335px;}
._4e{width:164.658515px;}
._2f{width:170.760467px;}
._4f{width:172.369445px;}
._3f{width:175.823446px;}
._33{width:181.472224px;}
._47{width:182.705088px;}
._34{width:187.246530px;}
._43{width:189.213142px;}
._3e{width:199.631999px;}
._2c{width:204.003533px;}
._3c{width:206.996332px;}
._35{width:211.682725px;}
._38{width:218.377573px;}
._39{width:221.139198px;}
._44{width:224.151880px;}
._41{width:225.783749px;}
._37{width:236.872091px;}
._46{width:240.637943px;}
._3a{width:247.290948px;}
._4b{width:250.178101px;}
._5a{width:259.358189px;}
._1e{width:278.138406px;}
._54{width:286.926841px;}
._55{width:323.778738px;}
._58{width:337.224812px;}
._28{width:389.608013px;}
._23{width:467.779526px;}
._27{width:481.388083px;}
._22{width:490.485274px;}
._2d{width:521.790682px;}
._20{width:530.566858px;}
._24{width:544.224614px;}
._1d{width:550.949414px;}
._29{width:566.066765px;}
._2a{width:568.164902px;}
._21{width:589.230941px;}
._26{width:595.386893px;}
._25{width:667.261555px;}
._12{width:705.140508px;}
._2b{width:791.912448px;}
._1a{width:1838.056238px;}
._53{width:2223.890102px;}
._13{width:2247.800102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fsc{font-size:41.842800px;}
.fsb{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fsa{font-size:47.236800px;}
.fs14{font-size:47.337600px;}
.fse{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fs5{font-size:52.197584px;}
.fsf{font-size:53.798400px;}
.fs12{font-size:54.000000px;}
.fs16{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs11{font-size:60.120000px;}
.fs13{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y122{bottom:-574.309050px;}
.y13e{bottom:-484.206462px;}
.y13d{bottom:-465.037200px;}
.y13c{bottom:-445.777758px;}
.y13b{bottom:-426.608496px;}
.y13a{bottom:-407.349054px;}
.y139{bottom:-388.089612px;}
.y138{bottom:-368.920350px;}
.y137{bottom:-349.660908px;}
.y136{bottom:-330.401466px;}
.y135{bottom:-311.232204px;}
.y134{bottom:-291.972762px;}
.y133{bottom:-272.803500px;}
.y132{bottom:-253.544058px;}
.y131{bottom:-234.284616px;}
.y130{bottom:-215.115354px;}
.y12f{bottom:-195.855912px;}
.y12e{bottom:-176.686650px;}
.y12d{bottom:-157.427208px;}
.y12c{bottom:-138.167766px;}
.y12b{bottom:-118.998504px;}
.y12a{bottom:-95.148900px;}
.y129{bottom:-58.518600px;}
.y128{bottom:-41.238600px;}
.y127{bottom:-23.779050px;}
.y126{bottom:-1.369050px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.425340px;}
.y27{bottom:5.788613px;}
.y2d{bottom:14.151273px;}
.y26{bottom:22.317924px;}
.y71{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y25{bottom:38.654567px;}
.y5{bottom:66.525004px;}
.y197{bottom:88.993500px;}
.y27d{bottom:92.125500px;}
.y4{bottom:97.125005px;}
.y252{bottom:101.764500px;}
.y47{bottom:102.823500px;}
.y2b3{bottom:103.557000px;}
.y70{bottom:103.621500px;}
.yf5{bottom:106.246500px;}
.y25d{bottom:106.695000px;}
.y196{bottom:107.823000px;}
.ya8{bottom:109.366500px;}
.y27c{bottom:109.386000px;}
.y15b{bottom:110.548500px;}
.y251{bottom:120.594000px;}
.y46{bottom:120.711000px;}
.y2b2{bottom:120.817500px;}
.y6f{bottom:122.449500px;}
.yf4{bottom:125.076000px;}
.y25c{bottom:125.524500px;}
.y27b{bottom:126.646500px;}
.y195{bottom:126.652500px;}
.ya7{bottom:128.196000px;}
.y15a{bottom:129.378000px;}
.y1fb{bottom:132.540000px;}
.y2b1{bottom:138.078000px;}
.y45{bottom:138.600000px;}
.y23{bottom:139.264499px;}
.y250{bottom:139.422000px;}
.y6e{bottom:141.279000px;}
.ydb{bottom:143.905500px;}
.y25b{bottom:144.354000px;}
.y194{bottom:145.482000px;}
.ya6{bottom:147.025500px;}
.y221{bottom:147.618000px;}
.y159{bottom:148.207500px;}
.y1fa{bottom:151.369500px;}
.y2b0{bottom:155.338500px;}
.y44{bottom:156.487500px;}
.y24f{bottom:158.251500px;}
.y6d{bottom:160.108500px;}
.y27a{bottom:161.166000px;}
.yda{bottom:162.735000px;}
.y25a{bottom:163.183500px;}
.y193{bottom:164.311500px;}
.y11e{bottom:164.529000px;}
.ya5{bottom:165.855000px;}
.y220{bottom:166.447500px;}
.y158{bottom:167.037000px;}
.y1f9{bottom:170.199000px;}
.y2af{bottom:172.599000px;}
.y43{bottom:174.375000px;}
.y1c6{bottom:175.759500px;}
.y24e{bottom:177.081000px;}
.y1c8{bottom:177.807000px;}
.y279{bottom:178.426500px;}
.y6c{bottom:178.938000px;}
.y1c7{bottom:179.676000px;}
.yd9{bottom:181.564500px;}
.y259{bottom:182.013000px;}
.y192{bottom:183.141000px;}
.y11d{bottom:183.358500px;}
.ya4{bottom:184.684500px;}
.y21f{bottom:185.277000px;}
.y157{bottom:185.866500px;}
.y1f8{bottom:189.028500px;}
.y2ae{bottom:189.858000px;}
.y42{bottom:192.264000px;}
.y278{bottom:195.687000px;}
.y24d{bottom:195.910500px;}
.y1a{bottom:196.933500px;}
.y6b{bottom:197.767500px;}
.y1c5{bottom:198.418500px;}
.yd8{bottom:200.394000px;}
.y258{bottom:200.842500px;}
.y191{bottom:201.970500px;}
.y11c{bottom:202.188000px;}
.ya3{bottom:203.514000px;}
.y156{bottom:204.696000px;}
.y2ad{bottom:207.118500px;}
.y1f7{bottom:207.856500px;}
.y21e{bottom:208.590000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y41{bottom:210.151500px;}
.y277{bottom:212.947500px;}
.y24c{bottom:214.740000px;}
.y6a{bottom:216.597000px;}
.y1c4{bottom:217.248000px;}
.yd7{bottom:219.223500px;}
.y257{bottom:219.672000px;}
.y190{bottom:220.800000px;}
.y11b{bottom:221.017500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.ya2{bottom:222.343500px;}
.y155{bottom:223.525500px;}
.y2ac{bottom:224.379000px;}
.y1f6{bottom:226.686000px;}
.y40{bottom:228.039000px;}
.y276{bottom:230.208000px;}
.y24b{bottom:233.569500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y69{bottom:235.426500px;}
.y1c3{bottom:236.077500px;}
.yd6{bottom:238.053000px;}
.y256{bottom:238.501500px;}
.y18f{bottom:239.629500px;}
.y11a{bottom:239.847000px;}
.ya1{bottom:241.173000px;}
.y2ab{bottom:241.639500px;}
.y21d{bottom:242.214000px;}
.y154{bottom:242.355000px;}
.y1f5{bottom:245.515500px;}
.y275{bottom:247.468500px;}
.y1c2{bottom:252.177000px;}
.y24a{bottom:252.399000px;}
.y68{bottom:254.256000px;}
.y1c1{bottom:254.907000px;}
.yd5{bottom:256.882500px;}
.y255{bottom:257.331000px;}
.y18e{bottom:258.459000px;}
.y119{bottom:258.676500px;}
.y2aa{bottom:258.900000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ya0{bottom:260.002500px;}
.y21c{bottom:261.043500px;}
.y153{bottom:261.184500px;}
.y274{bottom:264.729000px;}
.y1f4{bottom:268.828500px;}
.y249{bottom:271.228500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y67{bottom:273.085500px;}
.y1c0{bottom:273.736500px;}
.yf3{bottom:275.712000px;}
.y254{bottom:276.160500px;}
.y18d{bottom:277.288500px;}
.y118{bottom:277.506000px;}
.y9f{bottom:278.832000px;}
.y21b{bottom:279.873000px;}
.y152{bottom:280.014000px;}
.yd4{bottom:280.195500px;}
.y273{bottom:281.989500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1bf{bottom:289.836000px;}
.y248{bottom:290.058000px;}
.y66{bottom:291.915000px;}
.y1be{bottom:292.566000px;}
.y2a9{bottom:293.421000px;}
.y253{bottom:294.990000px;}
.y18c{bottom:296.118000px;}
.y117{bottom:296.335500px;}
.y9e{bottom:297.661500px;}
.y21a{bottom:298.701000px;}
.y151{bottom:298.843500px;}
.yf2{bottom:299.025000px;}
.y272{bottom:299.248500px;}
.y1f3{bottom:302.452500px;}
.y3f{bottom:307.299000px;}
.y247{bottom:308.887500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y2a8{bottom:310.681500px;}
.y65{bottom:310.744500px;}
.y1bd{bottom:311.395500px;}
.yd3{bottom:313.819500px;}
.y9d{bottom:316.491000px;}
.y271{bottom:316.509000px;}
.y219{bottom:317.530500px;}
.y150{bottom:317.673000px;}
.y18b{bottom:319.429500px;}
.y116{bottom:319.647000px;}
.y1f2{bottom:321.282000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y3e{bottom:325.186500px;}
.y246{bottom:327.717000px;}
.y2a7{bottom:327.940500px;}
.y64{bottom:329.574000px;}
.y1bc{bottom:330.225000px;}
.yd2{bottom:332.649000px;}
.y270{bottom:333.769500px;}
.y9c{bottom:335.320500px;}
.y218{bottom:336.360000px;}
.y14f{bottom:336.502500px;}
.y1f1{bottom:340.111500px;}
.y3d{bottom:343.074000px;}
.y2a6{bottom:345.201000px;}
.y11{bottom:348.133500px;}
.y63{bottom:348.403500px;}
.y245{bottom:351.030000px;}
.yd1{bottom:351.478500px;}
.y18a{bottom:353.053500px;}
.y115{bottom:353.271000px;}
.y9b{bottom:354.150000px;}
.y217{bottom:355.189500px;}
.y14e{bottom:355.332000px;}
.y1f0{bottom:358.941000px;}
.y3c{bottom:360.963000px;}
.y2a5{bottom:362.461500px;}
.y62{bottom:367.233000px;}
.y26f{bottom:368.290500px;}
.yd0{bottom:370.308000px;}
.y189{bottom:371.883000px;}
.y114{bottom:372.100500px;}
.y9a{bottom:372.979500px;}
.y216{bottom:374.019000px;}
.y14d{bottom:374.161500px;}
.y1bb{bottom:375.687000px;}
.y2a4{bottom:379.722000px;}
.y1ef{bottom:382.254000px;}
.y244{bottom:384.654000px;}
.y26e{bottom:385.551000px;}
.y61{bottom:386.062500px;}
.y10{bottom:386.785499px;}
.ycf{bottom:389.137500px;}
.y188{bottom:390.712500px;}
.y99{bottom:391.809000px;}
.y215{bottom:392.848500px;}
.y14c{bottom:392.991000px;}
.y2a3{bottom:396.982500px;}
.y3b{bottom:399.024000px;}
.y1ba{bottom:399.328500px;}
.y26d{bottom:402.811500px;}
.y243{bottom:403.483500px;}
.y60{bottom:404.892000px;}
.yce{bottom:407.967000px;}
.yf{bottom:408.044999px;}
.y113{bottom:408.862500px;}
.y187{bottom:409.542000px;}
.y98{bottom:410.638500px;}
.y14b{bottom:411.819000px;}
.y2a2{bottom:414.243000px;}
.y214{bottom:416.161500px;}
.y3a{bottom:416.913000px;}
.y26c{bottom:420.072000px;}
.y242{bottom:422.313000px;}
.y1ee{bottom:422.494500px;}
.y1b9{bottom:422.968500px;}
.y5f{bottom:423.721500px;}
.ycd{bottom:426.796500px;}
.y112{bottom:427.692000px;}
.y186{bottom:428.371500px;}
.y97{bottom:429.468000px;}
.y14a{bottom:430.648500px;}
.y2a1{bottom:431.503500px;}
.y39{bottom:434.800500px;}
.y26b{bottom:437.331000px;}
.y241{bottom:441.142500px;}
.y5e{bottom:442.551000px;}
.y1ed{bottom:443.896500px;}
.ycc{bottom:445.626000px;}
.y111{bottom:446.521500px;}
.y1b8{bottom:446.610000px;}
.y185{bottom:447.201000px;}
.y96{bottom:448.297500px;}
.y2a0{bottom:448.764000px;}
.y149{bottom:449.478000px;}
.y213{bottom:449.785500px;}
.yf1{bottom:450.108000px;}
.y26a{bottom:454.591500px;}
.y1ec{bottom:455.851500px;}
.y240{bottom:459.972000px;}
.y5d{bottom:461.380500px;}
.ycb{bottom:464.454000px;}
.y110{bottom:465.351000px;}
.y29f{bottom:466.024500px;}
.y184{bottom:466.030500px;}
.y125{bottom:466.722858px;}
.y95{bottom:467.127000px;}
.y1eb{bottom:467.806500px;}
.y148{bottom:468.307500px;}
.y212{bottom:468.615000px;}
.y1b7{bottom:470.250000px;}
.y38{bottom:470.622000px;}
.y269{bottom:471.852000px;}
.y23f{bottom:478.801500px;}
.y1ea{bottom:479.763000px;}
.y5c{bottom:480.210000px;}
.yca{bottom:483.283500px;}
.yf0{bottom:483.732000px;}
.y10f{bottom:484.180500px;}
.ye{bottom:484.864502px;}
.y124{bottom:485.892120px;}
.y94{bottom:485.956500px;}
.y147{bottom:487.137000px;}
.y211{bottom:487.444500px;}
.y183{bottom:489.343500px;}
.y1e9{bottom:491.718000px;}
.y268{bottom:493.596000px;}
.y1b6{bottom:493.891500px;}
.y23e{bottom:497.631000px;}
.y29e{bottom:500.544000px;}
.yc9{bottom:502.113000px;}
.yd{bottom:502.864502px;}
.y10e{bottom:503.010000px;}
.y5b{bottom:503.523000px;}
.y1e8{bottom:503.673000px;}
.y93{bottom:504.786000px;}
.y123{bottom:505.151562px;}
.y146{bottom:505.966500px;}
.y210{bottom:506.274000px;}
.y37{bottom:506.442000px;}
.y1e7{bottom:515.628000px;}
.y23d{bottom:516.460500px;}
.y1b5{bottom:517.531500px;}
.y29d{bottom:517.804500px;}
.yef{bottom:520.495500px;}
.yc{bottom:520.864502px;}
.yc8{bottom:520.942500px;}
.y10d{bottom:521.839500px;}
.y92{bottom:523.615500px;}
.y36{bottom:524.329500px;}
.y145{bottom:524.796000px;}
.y20f{bottom:525.103500px;}
.y267{bottom:527.220000px;}
.y1e6{bottom:527.583000px;}
.y182{bottom:530.950500px;}
.y29c{bottom:535.065000px;}
.y23c{bottom:535.290000px;}
.yb{bottom:538.864499px;}
.yee{bottom:539.323500px;}
.y1e5{bottom:539.538000px;}
.yc7{bottom:539.772000px;}
.y10c{bottom:540.669000px;}
.y1b4{bottom:541.171500px;}
.y35{bottom:542.218500px;}
.y91{bottom:542.445000px;}
.y144{bottom:543.625500px;}
.y20e{bottom:543.933000px;}
.y181{bottom:547.389000px;}
.y1e4{bottom:551.493000px;}
.y29b{bottom:552.325500px;}
.y266{bottom:553.761000px;}
.y23b{bottom:554.118000px;}
.y17e{bottom:555.607500px;}
.ya{bottom:556.864499px;}
.yed{bottom:558.153000px;}
.yc6{bottom:558.601500px;}
.y10b{bottom:559.498500px;}
.y121{bottom:559.691535px;}
.y34{bottom:560.106000px;}
.y90{bottom:561.274500px;}
.y143{bottom:562.455000px;}
.y20d{bottom:562.762500px;}
.y180{bottom:563.827500px;}
.y1b3{bottom:564.813000px;}
.y120{bottom:569.500950px;}
.y29a{bottom:569.586000px;}
.y1e3{bottom:570.651000px;}
.y23a{bottom:572.947500px;}
.y1e2{bottom:576.628500px;}
.yec{bottom:576.982500px;}
.yc5{bottom:577.431000px;}
.y33{bottom:577.993500px;}
.y10a{bottom:578.328000px;}
.y5a{bottom:578.673000px;}
.y8f{bottom:580.104000px;}
.y17f{bottom:580.264500px;}
.y265{bottom:580.300500px;}
.y20c{bottom:581.592000px;}
.y142{bottom:585.768000px;}
.y299{bottom:586.846500px;}
.y1b2{bottom:588.453000px;}
.y239{bottom:591.777000px;}
.yeb{bottom:595.812000px;}
.y32{bottom:595.882500px;}
.yc4{bottom:596.260500px;}
.y109{bottom:597.157500px;}
.y59{bottom:598.129500px;}
.y8e{bottom:598.932000px;}
.y20b{bottom:600.421500px;}
.y17d{bottom:603.906000px;}
.y298{bottom:604.107000px;}
.y264{bottom:606.841500px;}
.y238{bottom:610.606500px;}
.y1e1{bottom:611.088000px;}
.y1b1{bottom:612.094500px;}
.y31{bottom:613.770000px;}
.yea{bottom:614.641500px;}
.yc3{bottom:615.090000px;}
.y141{bottom:616.195500px;}
.y8d{bottom:617.761500px;}
.y20a{bottom:619.251000px;}
.y1b0{bottom:620.313000px;}
.y17b{bottom:620.344500px;}
.y108{bottom:620.470500px;}
.y297{bottom:621.366000px;}
.y237{bottom:629.436000px;}
.y30{bottom:631.657500px;}
.y263{bottom:633.382500px;}
.ye9{bottom:633.471000px;}
.yc2{bottom:633.919500px;}
.y140{bottom:635.428500px;}
.y58{bottom:635.518500px;}
.y8c{bottom:636.591000px;}
.y17a{bottom:636.783000px;}
.y209{bottom:638.080500px;}
.y296{bottom:638.626500px;}
.y9{bottom:645.510000px;}
.y1e0{bottom:646.696500px;}
.y236{bottom:648.265500px;}
.y2f{bottom:649.546500px;}
.y1af{bottom:652.173000px;}
.ye8{bottom:652.300500px;}
.yc1{bottom:652.749000px;}
.y17c{bottom:653.221500px;}
.y107{bottom:654.094500px;}
.y13f{bottom:654.661500px;}
.y57{bottom:654.976500px;}
.y8b{bottom:655.420500px;}
.y295{bottom:655.887000px;}
.y208{bottom:656.910000px;}
.y262{bottom:659.922000px;}
.y1df{bottom:665.526000px;}
.y8{bottom:666.771000px;}
.y235{bottom:667.095000px;}
.y1ad{bottom:668.611500px;}
.ye7{bottom:671.130000px;}
.yc0{bottom:671.578500px;}
.y2c{bottom:671.917464px;}
.y106{bottom:672.924000px;}
.y294{bottom:673.147500px;}
.y8a{bottom:674.250000px;}
.y56{bottom:674.433000px;}
.y207{bottom:675.739500px;}
.y179{bottom:676.861500px;}
.y11f{bottom:677.091000px;}
.y261{bottom:677.496000px;}
.y1de{bottom:684.355500px;}
.y1ae{bottom:685.050000px;}
.y234{bottom:685.924500px;}
.ye6{bottom:689.959500px;}
.ybf{bottom:690.408000px;}
.y89{bottom:693.079500px;}
.y177{bottom:693.300000px;}
.y55{bottom:693.891000px;}
.y206{bottom:694.569000px;}
.y260{bottom:695.070000px;}
.y1dd{bottom:703.185000px;}
.y233{bottom:704.754000px;}
.y293{bottom:707.668500px;}
.y1ac{bottom:708.691500px;}
.ye5{bottom:708.789000px;}
.ybe{bottom:709.237500px;}
.y105{bottom:709.686000px;}
.y178{bottom:709.738500px;}
.y88{bottom:711.909000px;}
.y25f{bottom:712.645500px;}
.y54{bottom:713.347500px;}
.y205{bottom:713.397000px;}
.y1ab{bottom:716.910000px;}
.y1dc{bottom:722.014500px;}
.y232{bottom:723.583500px;}
.y292{bottom:724.929000px;}
.y7{bottom:726.298500px;}
.ye4{bottom:727.618500px;}
.ybd{bottom:728.067000px;}
.y104{bottom:728.515500px;}
.y25e{bottom:730.219500px;}
.y87{bottom:730.738500px;}
.y204{bottom:732.226500px;}
.y53{bottom:732.804000px;}
.y176{bottom:733.378500px;}
.y1db{bottom:740.844000px;}
.y173{bottom:741.598500px;}
.y291{bottom:742.189500px;}
.y231{bottom:742.413000px;}
.ye3{bottom:746.448000px;}
.ybc{bottom:746.896500px;}
.y103{bottom:747.345000px;}
.y1aa{bottom:748.770000px;}
.y86{bottom:749.568000px;}
.y175{bottom:749.817000px;}
.y203{bottom:751.056000px;}
.y52{bottom:752.262000px;}
.y3{bottom:752.599495px;}
.y1a9{bottom:756.988500px;}
.y172{bottom:758.037000px;}
.y290{bottom:759.450000px;}
.y1da{bottom:759.673500px;}
.y230{bottom:761.242500px;}
.ye2{bottom:765.277500px;}
.ybb{bottom:765.726000px;}
.y102{bottom:766.174500px;}
.y174{bottom:766.255500px;}
.y85{bottom:768.397500px;}
.y202{bottom:769.885500px;}
.y51{bottom:771.718500px;}
.y28f{bottom:776.709000px;}
.y1d9{bottom:778.503000px;}
.y22f{bottom:780.072000px;}
.ye1{bottom:784.107000px;}
.yba{bottom:784.555500px;}
.y101{bottom:785.004000px;}
.y84{bottom:787.227000px;}
.y1a8{bottom:788.848500px;}
.y171{bottom:789.897000px;}
.y50{bottom:791.175000px;}
.y28e{bottom:793.969500px;}
.y1a7{bottom:797.068500px;}
.y1d8{bottom:797.332500px;}
.y170{bottom:798.115500px;}
.y22e{bottom:798.901500px;}
.ye0{bottom:802.936500px;}
.yb9{bottom:803.385000px;}
.y100{bottom:803.833500px;}
.y83{bottom:806.056500px;}
.y4f{bottom:810.633000px;}
.y28d{bottom:811.230000px;}
.y1d7{bottom:813.432000px;}
.y201{bottom:814.431000px;}
.y1d6{bottom:816.162000px;}
.y22d{bottom:817.731000px;}
.ydf{bottom:821.766000px;}
.yb8{bottom:822.214500px;}
.yff{bottom:822.663000px;}
.y82{bottom:824.886000px;}
.y28c{bottom:828.490500px;}
.y1a6{bottom:828.928500px;}
.y16f{bottom:829.975500px;}
.y4e{bottom:830.089500px;}
.y1d5{bottom:834.991500px;}
.y22c{bottom:836.560500px;}
.y200{bottom:837.178500px;}
.y16d{bottom:838.195500px;}
.yde{bottom:840.595500px;}
.yb7{bottom:841.044000px;}
.yfe{bottom:841.492500px;}
.y81{bottom:843.715500px;}
.y28b{bottom:845.751000px;}
.y16e{bottom:846.414000px;}
.y4d{bottom:849.547500px;}
.y1ff{bottom:853.617000px;}
.y22b{bottom:855.390000px;}
.ydd{bottom:859.425000px;}
.yb6{bottom:859.873500px;}
.yfd{bottom:860.322000px;}
.y1a5{bottom:860.547000px;}
.y80{bottom:862.545000px;}
.y28a{bottom:863.011500px;}
.y1d4{bottom:868.638000px;}
.y4c{bottom:869.004000px;}
.y16c{bottom:870.055500px;}
.y22a{bottom:874.219500px;}
.yb5{bottom:878.703000px;}
.yfc{bottom:879.151500px;}
.y2{bottom:879.369000px;}
.y289{bottom:880.272000px;}
.y7f{bottom:881.374500px;}
.ydc{bottom:882.738000px;}
.y16b{bottom:886.492500px;}
.y1d3{bottom:887.467500px;}
.y229{bottom:893.049000px;}
.y1a4{bottom:896.568000px;}
.yb4{bottom:897.532500px;}
.yfb{bottom:897.981000px;}
.y7e{bottom:900.204000px;}
.y1d2{bottom:901.740000px;}
.y16a{bottom:902.931000px;}
.y4b{bottom:904.969500px;}
.y1d1{bottom:906.297000px;}
.y228{bottom:911.878500px;}
.y288{bottom:914.793000px;}
.y1a3{bottom:915.397500px;}
.yb3{bottom:916.362000px;}
.yfa{bottom:916.810500px;}
.y7d{bottom:919.033500px;}
.y169{bottom:919.369500px;}
.y4a{bottom:921.109500px;}
.y1d0{bottom:925.126500px;}
.y227{bottom:930.708000px;}
.y287{bottom:932.052000px;}
.y1a2{bottom:934.227000px;}
.yb2{bottom:935.191500px;}
.yf9{bottom:935.640000px;}
.y1fe{bottom:935.667000px;}
.y168{bottom:935.808000px;}
.y7c{bottom:937.863000px;}
.y49{bottom:941.589000px;}
.y1cf{bottom:943.956000px;}
.y162{bottom:944.028000px;}
.y286{bottom:949.312500px;}
.y226{bottom:949.537500px;}
.y1a1{bottom:950.326500px;}
.y15f{bottom:952.246500px;}
.y1a0{bottom:953.056500px;}
.yb1{bottom:954.021000px;}
.y7b{bottom:956.692500px;}
.y48{bottom:957.729000px;}
.yf8{bottom:958.951500px;}
.y161{bottom:960.465000px;}
.y285{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.y225{bottom:968.367000px;}
.y15e{bottom:968.685000px;}
.y19f{bottom:969.156000px;}
.y19e{bottom:971.886000px;}
.yb0{bottom:972.849000px;}
.y1ce{bottom:974.643000px;}
.y7a{bottom:975.522000px;}
.y160{bottom:976.903500px;}
.y284{bottom:983.833500px;}
.y167{bottom:985.123500px;}
.y224{bottom:987.196500px;}
.y19d{bottom:987.985500px;}
.y19c{bottom:990.715500px;}
.yaf{bottom:991.678500px;}
.yf7{bottom:992.575500px;}
.y79{bottom:994.351500px;}
.y2b{bottom:995.302500px;}
.y283{bottom:1001.094000px;}
.y166{bottom:1001.562000px;}
.y1cd{bottom:1004.830500px;}
.y223{bottom:1006.026000px;}
.y19b{bottom:1006.815000px;}
.y1cc{bottom:1009.164000px;}
.y19a{bottom:1009.545000px;}
.yae{bottom:1010.508000px;}
.yf6{bottom:1011.405000px;}
.y78{bottom:1013.181000px;}
.y165{bottom:1018.000500px;}
.y282{bottom:1018.354500px;}
.y222{bottom:1024.855500px;}
.yad{bottom:1029.337500px;}
.y77{bottom:1032.010500px;}
.y164{bottom:1034.439000px;}
.y281{bottom:1035.615000px;}
.y2a{bottom:1041.199500px;}
.y1fd{bottom:1041.640500px;}
.y199{bottom:1042.128000px;}
.y1cb{bottom:1043.685000px;}
.y198{bottom:1047.249000px;}
.yac{bottom:1048.167000px;}
.y76{bottom:1050.840000px;}
.y163{bottom:1050.876000px;}
.y280{bottom:1052.875500px;}
.y1fc{bottom:1058.079000px;}
.y1ca{bottom:1062.513000px;}
.yab{bottom:1066.996500px;}
.y29{bottom:1069.443000px;}
.y75{bottom:1069.669500px;}
.y27f{bottom:1070.134500px;}
.y15d{bottom:1074.517500px;}
.y1c9{bottom:1081.342500px;}
.yaa{bottom:1085.826000px;}
.y27e{bottom:1087.395000px;}
.y74{bottom:1088.499000px;}
.y28{bottom:1097.688000px;}
.ya9{bottom:1104.655500px;}
.y15c{bottom:1106.137500px;}
.y73{bottom:1107.327000px;}
.y24{bottom:1141.174500px;}
.y72{bottom:1173.397500px;}
.hf{height:25.508090px;}
.h14{height:26.110157px;}
.h12{height:30.461558px;}
.h36{height:30.582721px;}
.h13{height:30.670772px;}
.h7{height:32.130000px;}
.h24{height:33.072749px;}
.h11{height:33.112997px;}
.h10{height:34.199443px;}
.h15{height:34.813397px;}
.h1b{height:35.052500px;}
.ha{height:36.277321px;}
.h16{height:38.896243px;}
.h17{height:39.165235px;}
.h37{height:39.434227px;}
.h33{height:41.473500px;}
.h30{height:41.723369px;}
.h34{height:42.043500px;}
.h18{height:43.217759px;}
.h19{height:43.516637px;}
.hc{height:43.815515px;}
.h20{height:43.886426px;}
.h1d{height:44.279648px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h2f{height:46.084950px;}
.h26{height:46.445641px;}
.h2c{height:46.714950px;}
.h3{height:48.195000px;}
.h38{height:49.117939px;}
.h1f{height:49.939453px;}
.h9{height:50.931027px;}
.h29{height:51.997200px;}
.h31{height:54.162344px;}
.h32{height:54.371558px;}
.he{height:54.541601px;}
.h1a{height:54.575123px;}
.h2{height:55.080000px;}
.h1e{height:55.599258px;}
.h2d{height:56.868749px;}
.h2a{height:57.756749px;}
.h2b{height:60.850637px;}
.h28{height:60.874157px;}
.h2e{height:64.312950px;}
.h22{height:68.769024px;}
.h25{height:72.039235px;}
.h21{height:72.045235px;}
.h35{height:72.609235px;}
.h27{height:76.540157px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h23{height:89.253024px;}
.h4{height:119.055004px;}
.h1c{height:442.510500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w6{width:560.758500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x16{left:-196.686000px;}
.x17{left:-1.117090px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x19{left:30.743894px;}
.x5{left:54.000000px;}
.x6{left:60.141348px;}
.x6d{left:65.979000px;}
.x6c{left:68.814000px;}
.x81{left:71.902500px;}
.x87{left:75.789000px;}
.x80{left:79.636500px;}
.x6b{left:82.857000px;}
.x9f{left:85.855500px;}
.x6f{left:87.601500px;}
.x6e{left:90.447000px;}
.x71{left:91.890000px;}
.x70{left:94.908000px;}
.x72{left:96.006000px;}
.x73{left:98.397000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x83{left:112.057500px;}
.x85{left:113.512500px;}
.x7d{left:116.304000px;}
.x86{left:117.360000px;}
.x84{left:119.787000px;}
.x88{left:126.043500px;}
.x7f{left:135.280500px;}
.x7e{left:136.990500px;}
.x82{left:148.911000px;}
.x4{left:203.484001px;}
.x74{left:211.155000px;}
.xa{left:249.832500px;}
.x8{left:250.897500px;}
.x76{left:253.761000px;}
.x90{left:255.480000px;}
.x5e{left:262.105500px;}
.x1a{left:265.245000px;}
.x9{left:271.221000px;}
.x33{left:274.047000px;}
.x27{left:275.533500px;}
.x91{left:277.099500px;}
.x37{left:279.543000px;}
.xd{left:282.786000px;}
.x1b{left:289.117500px;}
.x44{left:291.882000px;}
.x29{left:299.103000px;}
.x2a{left:302.425500px;}
.x45{left:304.635000px;}
.x26{left:306.844500px;}
.x3d{left:308.586000px;}
.x12{left:310.777500px;}
.xb{left:313.318500px;}
.x61{left:315.418500px;}
.x4c{left:316.693500px;}
.x54{left:318.112500px;}
.x3e{left:319.744500px;}
.xc{left:323.089500px;}
.x51{left:326.854500px;}
.x34{left:329.223000px;}
.x52{left:332.953500px;}
.x4f{left:335.899500px;}
.x53{left:339.712500px;}
.x49{left:341.722500px;}
.x4b{left:351.252000px;}
.x55{left:352.993500px;}
.x6a{left:357.771000px;}
.xf{left:359.239500px;}
.x3b{left:369.127500px;}
.x47{left:374.244000px;}
.x13{left:381.999000px;}
.x46{left:383.704500px;}
.x14{left:386.686500px;}
.x15{left:389.532000px;}
.x60{left:391.338000px;}
.xe{left:396.252000px;}
.x11{left:397.555500px;}
.x43{left:422.871000px;}
.x41{left:424.747500px;}
.x42{left:436.236000px;}
.x3{left:454.959000px;}
.x35{left:456.313500px;}
.x5b{left:458.310000px;}
.x1c{left:461.686500px;}
.x2b{left:464.841000px;}
.x30{left:466.750500px;}
.x38{left:470.401500px;}
.x2c{left:471.405000px;}
.x63{left:472.741500px;}
.x31{left:482.076000px;}
.x57{left:484.069500px;}
.x39{left:486.427500px;}
.x64{left:489.027000px;}
.x58{left:491.824500px;}
.x36{left:497.233500px;}
.x8b{left:501.532500px;}
.x62{left:505.489500px;}
.x32{left:508.228500px;}
.x59{left:511.998000px;}
.x1d{left:515.908500px;}
.x5a{left:519.753000px;}
.x8c{left:527.350500px;}
.x10{left:536.773500px;}
.x8d{left:540.402000px;}
.x77{left:547.468500px;}
.x8e{left:552.693000px;}
.x78{left:556.137000px;}
.x4d{left:561.388500px;}
.x5c{left:564.864000px;}
.x18{left:570.383850px;}
.x79{left:576.702000px;}
.x9b{left:591.268500px;}
.x3f{left:595.186500px;}
.x92{left:602.383500px;}
.x40{left:606.345000px;}
.x67{left:613.057500px;}
.x5d{left:615.865500px;}
.x9e{left:619.351500px;}
.x56{left:624.894000px;}
.x50{left:628.656000px;}
.x4e{left:634.392000px;}
.x4a{left:639.274500px;}
.x93{left:642.663000px;}
.x8f{left:649.939500px;}
.x48{left:652.051500px;}
.x23{left:653.529000px;}
.x20{left:656.293500px;}
.x24{left:657.840000px;}
.x1f{left:659.535000px;}
.x1e{left:661.498500px;}
.x65{left:664.050000px;}
.x2e{left:665.694000px;}
.x94{left:668.743500px;}
.x22{left:670.879500px;}
.x21{left:675.169500px;}
.x2d{left:676.434000px;}
.x95{left:682.174500px;}
.x25{left:687.946500px;}
.x3a{left:694.443000px;}
.x3c{left:702.388500px;}
.x7a{left:704.452500px;}
.x7b{left:713.119500px;}
.x28{left:715.377000px;}
.x66{left:721.023000px;}
.x2f{left:725.026500px;}
.x7c{left:733.684500px;}
.x98{left:752.419500px;}
.x99{left:778.212000px;}
.x89{left:785.307000px;}
.x9c{left:787.747500px;}
.x9a{left:791.167500px;}
.x96{left:793.675500px;}
.x8a{left:797.598000px;}
.x68{left:800.092500px;}
.x5f{left:802.527000px;}
.x97{left:805.966500px;}
.x75{left:811.716000px;}
.x69{left:816.418500px;}
.x9d{left:837.867000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.ve{vertical-align:-12.064000pt;}
.v12{vertical-align:-10.901333pt;}
.v3{vertical-align:-9.328000pt;}
.vd{vertical-align:-7.280000pt;}
.v10{vertical-align:-4.090667pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:3.557333pt;}
.va{vertical-align:8.016000pt;}
.vc{vertical-align:14.661333pt;}
.vf{vertical-align:16.202667pt;}
.v7{vertical-align:18.208000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:21.941333pt;}
.v4{vertical-align:29.226667pt;}
.vb{vertical-align:30.901333pt;}
.v9{vertical-align:44.826667pt;}
.v5{vertical-align:59.002667pt;}
.v6{vertical-align:77.210667pt;}
.ls30{letter-spacing:-0.138944pt;}
.ls2f{letter-spacing:-0.117568pt;}
.ls33{letter-spacing:-0.106880pt;}
.ls29{letter-spacing:-0.076608pt;}
.ls32{letter-spacing:-0.074816pt;}
.ls31{letter-spacing:-0.037408pt;}
.ls2b{letter-spacing:-0.033600pt;}
.ls34{letter-spacing:-0.021376pt;}
.ls2e{letter-spacing:-0.016032pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls2c{letter-spacing:-0.005344pt;}
.ls2a{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000024pt;}
.ls16{letter-spacing:0.000287pt;}
.lsc{letter-spacing:0.000518pt;}
.ls85{letter-spacing:0.000600pt;}
.ls82{letter-spacing:0.000711pt;}
.ls81{letter-spacing:0.000921pt;}
.ls7f{letter-spacing:0.001026pt;}
.ls58{letter-spacing:0.001193pt;}
.ls4c{letter-spacing:0.001404pt;}
.ls60{letter-spacing:0.002193pt;}
.ls80{letter-spacing:0.002262pt;}
.ls5{letter-spacing:0.002473pt;}
.ls87{letter-spacing:0.003230pt;}
.ls4d{letter-spacing:0.003658pt;}
.ls51{letter-spacing:0.004042pt;}
.ls46{letter-spacing:0.004147pt;}
.ls25{letter-spacing:0.005344pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls27{letter-spacing:0.010688pt;}
.ls21{letter-spacing:0.014400pt;}
.ls26{letter-spacing:0.016032pt;}
.ls18{letter-spacing:0.017024pt;}
.ls1d{letter-spacing:0.026720pt;}
.ls1e{letter-spacing:0.028800pt;}
.ls22{letter-spacing:0.032064pt;}
.ls1c{letter-spacing:0.037408pt;}
.ls24{letter-spacing:0.042752pt;}
.ls20{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.048096pt;}
.ls1b{letter-spacing:0.053440pt;}
.ls1a{letter-spacing:0.161728pt;}
.ls19{letter-spacing:0.170240pt;}
.ls5d{letter-spacing:0.442457pt;}
.ls5c{letter-spacing:0.447791pt;}
.ls42{letter-spacing:0.451918pt;}
.ls4a{letter-spacing:0.482502pt;}
.ls43{letter-spacing:0.487835pt;}
.ls41{letter-spacing:0.506211pt;}
.ls66{letter-spacing:0.536039pt;}
.ls5f{letter-spacing:0.541372pt;}
.ls65{letter-spacing:0.570745pt;}
.ls64{letter-spacing:0.576078pt;}
.ls38{letter-spacing:0.596214pt;}
.ls57{letter-spacing:0.601548pt;}
.ls78{letter-spacing:0.637762pt;}
.ls76{letter-spacing:0.643096pt;}
.ls3e{letter-spacing:0.652455pt;}
.ls54{letter-spacing:0.661757pt;}
.ls3d{letter-spacing:0.663756pt;}
.ls55{letter-spacing:0.664991pt;}
.ls9{letter-spacing:1.133683pt;}
.ls3a{letter-spacing:1.324173pt;}
.ls2{letter-spacing:1.654338pt;}
.ls5b{letter-spacing:2.654210pt;}
.ls5a{letter-spacing:2.659543pt;}
.ls44{letter-spacing:3.113251pt;}
.ls70{letter-spacing:3.253867pt;}
.ls67{letter-spacing:3.259200pt;}
.ls59{letter-spacing:3.318400pt;}
.ls56{letter-spacing:3.320877pt;}
.ls49{letter-spacing:10.029762pt;}
.ls73{letter-spacing:10.623733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls52{letter-spacing:10.968429pt;}
.ls50{letter-spacing:10.973762pt;}
.ls39{letter-spacing:11.635096pt;}
.ls5e{letter-spacing:11.955325pt;}
.ls6c{letter-spacing:12.528078pt;}
.ls6a{letter-spacing:12.533411pt;}
.ls4b{letter-spacing:12.710400pt;}
.ls48{letter-spacing:12.715733pt;}
.ls83{letter-spacing:12.938209pt;}
.ls17{letter-spacing:13.017797pt;}
.lsb{letter-spacing:13.070931pt;}
.ls7d{letter-spacing:13.124065pt;}
.ls3f{letter-spacing:13.177199pt;}
.lsd{letter-spacing:13.283467pt;}
.ls15{letter-spacing:13.336601pt;}
.ls10{letter-spacing:13.389734pt;}
.ls28{letter-spacing:13.442868pt;}
.ls11{letter-spacing:13.496002pt;}
.ls12{letter-spacing:13.549136pt;}
.ls7e{letter-spacing:13.602270pt;}
.ls4f{letter-spacing:13.651543pt;}
.ls7c{letter-spacing:13.708538pt;}
.ls7b{letter-spacing:13.814805pt;}
.ls75{letter-spacing:13.944877pt;}
.ls77{letter-spacing:13.950210pt;}
.ls86{letter-spacing:13.987954pt;}
.ls37{letter-spacing:14.186742pt;}
.ls84{letter-spacing:14.986647pt;}
.ls53{letter-spacing:15.400429pt;}
.ls1{letter-spacing:15.937067pt;}
.lsf{letter-spacing:17.268507pt;}
.ls13{letter-spacing:18.809389pt;}
.lse{letter-spacing:20.137735pt;}
.ls7{letter-spacing:20.987877pt;}
.ls6{letter-spacing:21.519216pt;}
.ls14{letter-spacing:22.422492pt;}
.lsa{letter-spacing:23.219500pt;}
.ls47{letter-spacing:23.315096pt;}
.ls4e{letter-spacing:24.253762pt;}
.ls7a{letter-spacing:27.997762pt;}
.ls40{letter-spacing:28.680429pt;}
.ls3b{letter-spacing:29.305548pt;}
.ls79{letter-spacing:30.022400pt;}
.ls74{letter-spacing:31.656429pt;}
.ls45{letter-spacing:40.947096pt;}
.ls3c{letter-spacing:41.965762pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls35{letter-spacing:230.787329pt;}
.ls6b{letter-spacing:338.989372pt;}
.ls6f{letter-spacing:357.842706pt;}
.ls6d{letter-spacing:366.472039pt;}
.ls69{letter-spacing:471.490706pt;}
.ls68{letter-spacing:489.837372pt;}
.ls71{letter-spacing:521.469372pt;}
.ls72{letter-spacing:660.818706pt;}
.ls61{letter-spacing:677.474706pt;}
.ls6e{letter-spacing:689.480039pt;}
.ls63{letter-spacing:751.453372pt;}
.ls62{letter-spacing:772.952039pt;}
.ws1{word-spacing:-14.692637pt;}
.ws29{word-spacing:-13.283467pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws7d{word-spacing:-10.810240pt;}
.ws38{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.wsc5{word-spacing:-7.970133pt;}
.wsd2{word-spacing:-4.429867pt;}
.wsd0{word-spacing:-3.763200pt;}
.ws9a{word-spacing:-2.527712pt;}
.ws6c{word-spacing:-2.337890pt;}
.ws9b{word-spacing:-2.335328pt;}
.wsfe{word-spacing:-2.295398pt;}
.wsfa{word-spacing:-2.231622pt;}
.ws95{word-spacing:-2.201728pt;}
.wsf9{word-spacing:-2.178489pt;}
.ws5a{word-spacing:-2.125355pt;}
.wsf6{word-spacing:-2.019087pt;}
.ws73{word-spacing:-1.912819pt;}
.ws10c{word-spacing:-1.817190pt;}
.ws7c{word-spacing:-1.806551pt;}
.ws132{word-spacing:-1.769370pt;}
.ws4{word-spacing:-1.696326pt;}
.ws77{word-spacing:-1.487748pt;}
.ws5f{word-spacing:-1.434614pt;}
.wsb7{word-spacing:-1.328347pt;}
.ws112{word-spacing:-1.243341pt;}
.ws99{word-spacing:-1.229120pt;}
.ws83{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws46{word-spacing:-1.168945pt;}
.ws47{word-spacing:-1.115811pt;}
.ws144{word-spacing:-1.099878pt;}
.ws145{word-spacing:-1.052058pt;}
.ws49{word-spacing:-1.009543pt;}
.wsbd{word-spacing:-0.956410pt;}
.ws1e{word-spacing:-0.860774pt;}
.ws64{word-spacing:-0.850142pt;}
.ws143{word-spacing:-0.812954pt;}
.ws67{word-spacing:-0.797008pt;}
.ws76{word-spacing:-0.743874pt;}
.ws4c{word-spacing:-0.690740pt;}
.ws68{word-spacing:-0.637606pt;}
.ws115{word-spacing:-0.573850pt;}
.wsa0{word-spacing:-0.561120pt;}
.ws9f{word-spacing:-0.539744pt;}
.wsd3{word-spacing:-0.531339pt;}
.wsa2{word-spacing:-0.480960pt;}
.ws56{word-spacing:-0.478205pt;}
.wsf7{word-spacing:-0.425071pt;}
.ws136{word-spacing:-0.382566pt;}
.ws7b{word-spacing:-0.371937pt;}
.ws11b{word-spacing:-0.334746pt;}
.ws119{word-spacing:-0.286925pt;}
.ws39{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.239104pt;}
.ws88{word-spacing:-0.238336pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws8e{word-spacing:-0.201600pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws8f{word-spacing:-0.168000pt;}
.ws23{word-spacing:-0.159402pt;}
.ws10a{word-spacing:-0.143462pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws87{word-spacing:-0.072352pt;}
.ws3f{word-spacing:-0.053134pt;}
.wsb3{word-spacing:-0.047821pt;}
.ws106{word-spacing:-0.009685pt;}
.ws13a{word-spacing:-0.009020pt;}
.ws11a{word-spacing:-0.008960pt;}
.ws10b{word-spacing:-0.008269pt;}
.ws111{word-spacing:-0.007637pt;}
.ws139{word-spacing:-0.007040pt;}
.ws130{word-spacing:-0.007031pt;}
.ws108{word-spacing:-0.006460pt;}
.ws110{word-spacing:-0.006417pt;}
.wse2{word-spacing:-0.006281pt;}
.ws141{word-spacing:-0.006144pt;}
.wsb2{word-spacing:-0.006059pt;}
.ws120{word-spacing:-0.005760pt;}
.ws11e{word-spacing:-0.005274pt;}
.wse1{word-spacing:-0.004497pt;}
.ws10e{word-spacing:-0.002935pt;}
.ws12b{word-spacing:-0.001246pt;}
.ws0{word-spacing:0.000000pt;}
.ws113{word-spacing:0.001067pt;}
.ws7{word-spacing:0.001465pt;}
.ws133{word-spacing:0.001877pt;}
.wsee{word-spacing:0.003932pt;}
.ws91{word-spacing:0.032064pt;}
.ws1c{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.ws8b{word-spacing:0.058784pt;}
.ws16{word-spacing:0.095642pt;}
.ws3e{word-spacing:0.106268pt;}
.wsa1{word-spacing:0.122912pt;}
.ws8c{word-spacing:0.134400pt;}
.ws1f{word-spacing:0.143462pt;}
.ws8d{word-spacing:0.153600pt;}
.ws5c{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.wsb1{word-spacing:0.191283pt;}
.ws90{word-spacing:0.196800pt;}
.ws98{word-spacing:0.203072pt;}
.ws48{word-spacing:0.212535pt;}
.ws116{word-spacing:0.219075pt;}
.ws86{word-spacing:0.225568pt;}
.ws100{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws22{word-spacing:0.265669pt;}
.wsfd{word-spacing:0.286925pt;}
.ws44{word-spacing:0.318803pt;}
.ws122{word-spacing:0.334746pt;}
.ws42{word-spacing:0.371937pt;}
.ws129{word-spacing:0.382566pt;}
.ws92{word-spacing:0.411488pt;}
.ws6b{word-spacing:0.425071pt;}
.ws66{word-spacing:0.478205pt;}
.ws1a{word-spacing:0.478208pt;}
.wsb8{word-spacing:0.531339pt;}
.wsd4{word-spacing:0.584473pt;}
.wse3{word-spacing:0.589500pt;}
.wsea{word-spacing:0.593638pt;}
.wse4{word-spacing:0.595797pt;}
.wsed{word-spacing:0.595831pt;}
.wse9{word-spacing:0.599270pt;}
.ws11d{word-spacing:0.621670pt;}
.wsc0{word-spacing:0.637606pt;}
.ws80{word-spacing:0.690740pt;}
.ws51{word-spacing:0.743874pt;}
.ws140{word-spacing:0.765133pt;}
.wsb5{word-spacing:0.797008pt;}
.wsf2{word-spacing:0.850142pt;}
.ws6a{word-spacing:0.903276pt;}
.ws10f{word-spacing:0.908595pt;}
.ws4f{word-spacing:0.956410pt;}
.ws89{word-spacing:0.993984pt;}
.ws127{word-spacing:1.004237pt;}
.ws19{word-spacing:1.052058pt;}
.wsfc{word-spacing:1.062677pt;}
.ws33{word-spacing:1.115811pt;}
.ws34{word-spacing:1.168945pt;}
.ws36{word-spacing:1.222079pt;}
.ws4a{word-spacing:1.275213pt;}
.ws126{word-spacing:1.291162pt;}
.ws4e{word-spacing:1.328347pt;}
.ws93{word-spacing:1.336000pt;}
.ws94{word-spacing:1.368064pt;}
.ws4d{word-spacing:1.381481pt;}
.ws35{word-spacing:1.487748pt;}
.ws17{word-spacing:1.530266pt;}
.ws57{word-spacing:1.540882pt;}
.wsf5{word-spacing:1.594016pt;}
.ws107{word-spacing:1.673728pt;}
.ws72{word-spacing:1.700284pt;}
.ws103{word-spacing:1.721549pt;}
.ws60{word-spacing:1.753418pt;}
.ws102{word-spacing:1.769370pt;}
.wsb{word-spacing:1.785293pt;}
.ws84{word-spacing:1.806551pt;}
.ws63{word-spacing:1.912819pt;}
.ws7f{word-spacing:1.960653pt;}
.wsa9{word-spacing:1.961248pt;}
.wsb4{word-spacing:1.965953pt;}
.ws13e{word-spacing:2.008474pt;}
.ws45{word-spacing:2.019087pt;}
.ws104{word-spacing:2.056294pt;}
.ws3b{word-spacing:2.072221pt;}
.ws114{word-spacing:2.104115pt;}
.ws3a{word-spacing:2.125355pt;}
.ws59{word-spacing:2.178489pt;}
.ws6{word-spacing:2.230079pt;}
.ws31{word-spacing:2.231622pt;}
.ws7e{word-spacing:2.247578pt;}
.ws32{word-spacing:2.284756pt;}
.ws71{word-spacing:2.337890pt;}
.ws96{word-spacing:2.340672pt;}
.ws82{word-spacing:2.391024pt;}
.wsa7{word-spacing:2.431520pt;}
.ws6e{word-spacing:2.497292pt;}
.wsf8{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.ws13d{word-spacing:2.582323pt;}
.ws97{word-spacing:2.602528pt;}
.ws52{word-spacing:2.603559pt;}
.wsc9{word-spacing:2.613143pt;}
.wsca{word-spacing:2.618477pt;}
.ws118{word-spacing:2.630144pt;}
.wsab{word-spacing:2.634592pt;}
.wsac{word-spacing:2.666656pt;}
.ws70{word-spacing:2.709827pt;}
.ws65{word-spacing:2.762961pt;}
.ws40{word-spacing:2.816095pt;}
.ws123{word-spacing:2.862643pt;}
.ws11f{word-spacing:2.863300pt;}
.ws149{word-spacing:2.865084pt;}
.ws109{word-spacing:2.865451pt;}
.ws146{word-spacing:2.866133pt;}
.ws101{word-spacing:2.866509pt;}
.ws12a{word-spacing:2.866756pt;}
.ws134{word-spacing:2.867652pt;}
.ws124{word-spacing:2.867959pt;}
.ws138{word-spacing:2.868019pt;}
.ws13c{word-spacing:2.868489pt;}
.ws105{word-spacing:2.868523pt;}
.ws142{word-spacing:2.869026pt;}
.ws78{word-spacing:2.869229pt;}
.wsc2{word-spacing:2.869248pt;}
.ws137{word-spacing:2.869325pt;}
.ws131{word-spacing:2.870263pt;}
.ws135{word-spacing:2.871194pt;}
.ws75{word-spacing:2.922363pt;}
.ws121{word-spacing:2.964890pt;}
.ws11c{word-spacing:3.012710pt;}
.ws58{word-spacing:3.028630pt;}
.ws20{word-spacing:3.060531pt;}
.wsc7{word-spacing:3.081764pt;}
.ws117{word-spacing:3.156173pt;}
.ws21{word-spacing:3.188032pt;}
.ws12d{word-spacing:3.203994pt;}
.ws74{word-spacing:3.241166pt;}
.ws125{word-spacing:3.251814pt;}
.wsbf{word-spacing:3.294300pt;}
.wsf4{word-spacing:3.347434pt;}
.ws61{word-spacing:3.400567pt;}
.ws81{word-spacing:3.453701pt;}
.wsb9{word-spacing:3.554255pt;}
.wscd{word-spacing:3.554667pt;}
.wsfb{word-spacing:3.559969pt;}
.wsce{word-spacing:3.560000pt;}
.wsad{word-spacing:3.596512pt;}
.ws41{word-spacing:3.613103pt;}
.ws55{word-spacing:3.666237pt;}
.wsb6{word-spacing:3.772505pt;}
.ws2d{word-spacing:3.878772pt;}
.wsae{word-spacing:3.922496pt;}
.ws2e{word-spacing:4.038174pt;}
.ws79{word-spacing:4.091308pt;}
.ws13f{word-spacing:4.112589pt;}
.wsbe{word-spacing:4.144442pt;}
.ws50{word-spacing:4.463245pt;}
.ws9e{word-spacing:4.531712pt;}
.ws43{word-spacing:4.675780pt;}
.ws62{word-spacing:4.728914pt;}
.ws85{word-spacing:4.782048pt;}
.ws9d{word-spacing:4.863040pt;}
.ws4b{word-spacing:4.888316pt;}
.ws9c{word-spacing:4.900448pt;}
.ws13b{word-spacing:4.925542pt;}
.ws7a{word-spacing:4.941450pt;}
.ws37{word-spacing:5.047717pt;}
.ws12c{word-spacing:5.069005pt;}
.ws5b{word-spacing:5.100851pt;}
.wsff{word-spacing:5.116826pt;}
.wsf1{word-spacing:5.153985pt;}
.ws27{word-spacing:5.260253pt;}
.ws6f{word-spacing:5.313387pt;}
.ws12e{word-spacing:5.355930pt;}
.ws28{word-spacing:5.366521pt;}
.ws12{word-spacing:5.393072pt;}
.wsf3{word-spacing:5.419654pt;}
.ws10d{word-spacing:5.451571pt;}
.ws13{word-spacing:5.467459pt;}
.ws26{word-spacing:5.738458pt;}
.ws25{word-spacing:5.791591pt;}
.wsf0{word-spacing:5.842667pt;}
.ws69{word-spacing:5.844725pt;}
.wse7{word-spacing:5.906347pt;}
.ws147{word-spacing:5.929779pt;}
.ws5d{word-spacing:5.950993pt;}
.ws5e{word-spacing:6.004127pt;}
.ws8a{word-spacing:6.129568pt;}
.ws128{word-spacing:6.216704pt;}
.ws148{word-spacing:6.312346pt;}
.wsaa{word-spacing:6.455552pt;}
.ws30{word-spacing:6.482332pt;}
.ws15{word-spacing:6.503629pt;}
.ws3c{word-spacing:6.535466pt;}
.ws24{word-spacing:6.588599pt;}
.ws2a{word-spacing:6.801135pt;}
.ws6d{word-spacing:6.854269pt;}
.ws54{word-spacing:7.013670pt;}
.ws10{word-spacing:7.699075pt;}
.ws3d{word-spacing:8.235749pt;}
.wsbb{word-spacing:8.820222pt;}
.wsba{word-spacing:8.873356pt;}
.wsa6{word-spacing:9.699360pt;}
.wsa5{word-spacing:9.704704pt;}
.wsc4{word-spacing:9.933939pt;}
.wsa8{word-spacing:9.977248pt;}
.wsa4{word-spacing:10.923136pt;}
.wsa3{word-spacing:11.275840pt;}
.ws53{word-spacing:11.370647pt;}
.wscb{word-spacing:13.283467pt;}
.ws8{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.ws12f{word-spacing:13.772390pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wscf{word-spacing:14.359588pt;}
.wsf{word-spacing:15.732893pt;}
.wsc8{word-spacing:20.252922pt;}
.wsc3{word-spacing:21.266255pt;}
.wscc{word-spacing:21.269143pt;}
.wsef{word-spacing:23.576000pt;}
.ws11{word-spacing:24.399002pt;}
.wsd1{word-spacing:27.647810pt;}
.wsd8{word-spacing:79.229451pt;}
.wsd6{word-spacing:79.845950pt;}
.wsd9{word-spacing:82.569792pt;}
.wsd7{word-spacing:90.417642pt;}
.wse0{word-spacing:104.848758pt;}
.wsd5{word-spacing:105.201722pt;}
.wsdf{word-spacing:110.464992pt;}
.wsdb{word-spacing:110.502186pt;}
.wsdd{word-spacing:119.763392pt;}
.wsda{word-spacing:119.800586pt;}
.wsdc{word-spacing:137.393158pt;}
.wsde{word-spacing:158.853866pt;}
.wsec{word-spacing:184.038340pt;}
.wse6{word-spacing:193.792828pt;}
.wse8{word-spacing:196.448828pt;}
.wseb{word-spacing:218.374161pt;}
.wse5{word-spacing:255.767407pt;}
.wsbc{word-spacing:336.284242pt;}
.wsaf{word-spacing:421.970739pt;}
.wsc6{word-spacing:662.207380pt;}
.wsc1{word-spacing:854.127309pt;}
._5c{margin-left:-24.388445pt;}
._5e{margin-left:-21.935180pt;}
._5d{margin-left:-19.591221pt;}
._5f{margin-left:-18.650112pt;}
._60{margin-left:-7.077478pt;}
._f{margin-left:-5.918145pt;}
._4{margin-left:-4.797974pt;}
._8{margin-left:-3.634381pt;}
._6{margin-left:-2.662796pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._1{width:2.662796pt;}
._2e{width:3.974421pt;}
._5b{width:6.010853pt;}
._4c{width:9.335594pt;}
._5{width:11.530016pt;}
._10{width:12.429313pt;}
._b{width:14.059315pt;}
._7{width:15.066473pt;}
._a{width:16.641638pt;}
._17{width:17.982276pt;}
._9{width:19.192035pt;}
._e{width:20.410131pt;}
._c{width:21.731751pt;}
._1f{width:23.166366pt;}
._1b{width:24.116833pt;}
._14{width:25.351581pt;}
._1c{width:26.487677pt;}
._61{width:27.628788pt;}
._15{width:28.692288pt;}
._0{width:29.648896pt;}
._11{width:31.455249pt;}
._19{width:32.910149pt;}
._d{width:34.278070pt;}
._18{width:35.763448pt;}
._16{width:37.692091pt;}
._50{width:79.761657pt;}
._52{width:89.393885pt;}
._48{width:94.174775pt;}
._4a{width:95.581884pt;}
._4d{width:102.742178pt;}
._31{width:106.559664pt;}
._49{width:110.650960pt;}
._51{width:114.512602pt;}
._57{width:116.871407pt;}
._40{width:117.792131pt;}
._30{width:118.759165pt;}
._42{width:119.763392pt;}
._3d{width:129.098986pt;}
._45{width:130.437955pt;}
._36{width:131.553763pt;}
._56{width:134.844553pt;}
._3b{width:138.427585pt;}
._59{width:140.402987pt;}
._32{width:144.720298pt;}
._4e{width:146.363124pt;}
._2f{width:151.787082pt;}
._4f{width:153.217284pt;}
._3f{width:156.287507pt;}
._33{width:161.308643pt;}
._47{width:162.404523pt;}
._34{width:166.441360pt;}
._43{width:168.189459pt;}
._3e{width:177.450666pt;}
._2c{width:181.336474pt;}
._3c{width:183.996739pt;}
._35{width:188.162422pt;}
._38{width:194.113398pt;}
._39{width:196.568176pt;}
._44{width:199.246115pt;}
._41{width:200.696666pt;}
._37{width:210.552970pt;}
._46{width:213.900394pt;}
._3a{width:219.814176pt;}
._4b{width:222.380534pt;}
._5a{width:230.540612pt;}
._1e{width:247.234139pt;}
._54{width:255.046081pt;}
._55{width:287.803323pt;}
._58{width:299.755389pt;}
._28{width:346.318234pt;}
._23{width:415.804023pt;}
._27{width:427.900518pt;}
._22{width:435.986910pt;}
._2d{width:463.813939pt;}
._20{width:471.614985pt;}
._24{width:483.755213pt;}
._1d{width:489.732813pt;}
._29{width:503.170458pt;}
._2a{width:505.035469pt;}
._21{width:523.760836pt;}
._26{width:529.232794pt;}
._25{width:593.121382pt;}
._12{width:626.791563pt;}
._2b{width:703.922176pt;}
._1a{width:1633.827767pt;}
._53{width:1976.791202pt;}
._13{width:1998.044535pt;}
.fsd{font-size:31.880533pt;}
.fsc{font-size:37.193600pt;}
.fsb{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fsa{font-size:41.988267pt;}
.fs14{font-size:42.077867pt;}
.fse{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fs5{font-size:46.397853pt;}
.fsf{font-size:47.820800pt;}
.fs12{font-size:48.000000pt;}
.fs16{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs11{font-size:53.440000pt;}
.fs13{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y122{bottom:-510.496933pt;}
.y13e{bottom:-430.405744pt;}
.y13d{bottom:-413.366400pt;}
.y13c{bottom:-396.246896pt;}
.y13b{bottom:-379.207552pt;}
.y13a{bottom:-362.088048pt;}
.y139{bottom:-344.968544pt;}
.y138{bottom:-327.929200pt;}
.y137{bottom:-310.809696pt;}
.y136{bottom:-293.690192pt;}
.y135{bottom:-276.650848pt;}
.y134{bottom:-259.531344pt;}
.y133{bottom:-242.492000pt;}
.y132{bottom:-225.372496pt;}
.y131{bottom:-208.252992pt;}
.y130{bottom:-191.213648pt;}
.y12f{bottom:-174.094144pt;}
.y12e{bottom:-157.054800pt;}
.y12d{bottom:-139.935296pt;}
.y12c{bottom:-122.815792pt;}
.y12b{bottom:-105.776448pt;}
.y12a{bottom:-84.576800pt;}
.y129{bottom:-52.016533pt;}
.y128{bottom:-36.656533pt;}
.y127{bottom:-21.136933pt;}
.y126{bottom:-1.216933pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.044747pt;}
.y27{bottom:5.145434pt;}
.y2d{bottom:12.578910pt;}
.y26{bottom:19.838154pt;}
.y71{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y25{bottom:34.359615pt;}
.y5{bottom:59.133337pt;}
.y197{bottom:79.105333pt;}
.y27d{bottom:81.889333pt;}
.y4{bottom:86.333337pt;}
.y252{bottom:90.457333pt;}
.y47{bottom:91.398667pt;}
.y2b3{bottom:92.050667pt;}
.y70{bottom:92.108000pt;}
.yf5{bottom:94.441333pt;}
.y25d{bottom:94.840000pt;}
.y196{bottom:95.842667pt;}
.ya8{bottom:97.214667pt;}
.y27c{bottom:97.232000pt;}
.y15b{bottom:98.265333pt;}
.y251{bottom:107.194667pt;}
.y46{bottom:107.298667pt;}
.y2b2{bottom:107.393333pt;}
.y6f{bottom:108.844000pt;}
.yf4{bottom:111.178667pt;}
.y25c{bottom:111.577333pt;}
.y27b{bottom:112.574667pt;}
.y195{bottom:112.580000pt;}
.ya7{bottom:113.952000pt;}
.y15a{bottom:115.002667pt;}
.y1fb{bottom:117.813333pt;}
.y2b1{bottom:122.736000pt;}
.y45{bottom:123.200000pt;}
.y23{bottom:123.790666pt;}
.y250{bottom:123.930667pt;}
.y6e{bottom:125.581333pt;}
.ydb{bottom:127.916000pt;}
.y25b{bottom:128.314667pt;}
.y194{bottom:129.317333pt;}
.ya6{bottom:130.689333pt;}
.y221{bottom:131.216000pt;}
.y159{bottom:131.740000pt;}
.y1fa{bottom:134.550667pt;}
.y2b0{bottom:138.078667pt;}
.y44{bottom:139.100000pt;}
.y24f{bottom:140.668000pt;}
.y6d{bottom:142.318667pt;}
.y27a{bottom:143.258667pt;}
.yda{bottom:144.653333pt;}
.y25a{bottom:145.052000pt;}
.y193{bottom:146.054667pt;}
.y11e{bottom:146.248000pt;}
.ya5{bottom:147.426667pt;}
.y220{bottom:147.953333pt;}
.y158{bottom:148.477333pt;}
.y1f9{bottom:151.288000pt;}
.y2af{bottom:153.421333pt;}
.y43{bottom:155.000000pt;}
.y1c6{bottom:156.230667pt;}
.y24e{bottom:157.405333pt;}
.y1c8{bottom:158.050667pt;}
.y279{bottom:158.601333pt;}
.y6c{bottom:159.056000pt;}
.y1c7{bottom:159.712000pt;}
.yd9{bottom:161.390667pt;}
.y259{bottom:161.789333pt;}
.y192{bottom:162.792000pt;}
.y11d{bottom:162.985333pt;}
.ya4{bottom:164.164000pt;}
.y21f{bottom:164.690667pt;}
.y157{bottom:165.214667pt;}
.y1f8{bottom:168.025333pt;}
.y2ae{bottom:168.762667pt;}
.y42{bottom:170.901333pt;}
.y278{bottom:173.944000pt;}
.y24d{bottom:174.142667pt;}
.y1a{bottom:175.052000pt;}
.y6b{bottom:175.793333pt;}
.y1c5{bottom:176.372000pt;}
.yd8{bottom:178.128000pt;}
.y258{bottom:178.526667pt;}
.y191{bottom:179.529333pt;}
.y11c{bottom:179.722667pt;}
.ya3{bottom:180.901333pt;}
.y156{bottom:181.952000pt;}
.y2ad{bottom:184.105333pt;}
.y1f7{bottom:184.761333pt;}
.y21e{bottom:185.413333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y41{bottom:186.801333pt;}
.y277{bottom:189.286667pt;}
.y24c{bottom:190.880000pt;}
.y6a{bottom:192.530667pt;}
.y1c4{bottom:193.109333pt;}
.yd7{bottom:194.865333pt;}
.y257{bottom:195.264000pt;}
.y190{bottom:196.266667pt;}
.y11b{bottom:196.460000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.ya2{bottom:197.638667pt;}
.y155{bottom:198.689333pt;}
.y2ac{bottom:199.448000pt;}
.y1f6{bottom:201.498667pt;}
.y40{bottom:202.701333pt;}
.y276{bottom:204.629333pt;}
.y24b{bottom:207.617333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y69{bottom:209.268000pt;}
.y1c3{bottom:209.846667pt;}
.yd6{bottom:211.602667pt;}
.y256{bottom:212.001333pt;}
.y18f{bottom:213.004000pt;}
.y11a{bottom:213.197333pt;}
.ya1{bottom:214.376000pt;}
.y2ab{bottom:214.790667pt;}
.y21d{bottom:215.301333pt;}
.y154{bottom:215.426667pt;}
.y1f5{bottom:218.236000pt;}
.y275{bottom:219.972000pt;}
.y1c2{bottom:224.157333pt;}
.y24a{bottom:224.354667pt;}
.y68{bottom:226.005333pt;}
.y1c1{bottom:226.584000pt;}
.yd5{bottom:228.340000pt;}
.y255{bottom:228.738667pt;}
.y18e{bottom:229.741333pt;}
.y119{bottom:229.934667pt;}
.y2aa{bottom:230.133333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ya0{bottom:231.113333pt;}
.y21c{bottom:232.038667pt;}
.y153{bottom:232.164000pt;}
.y274{bottom:235.314667pt;}
.y1f4{bottom:238.958667pt;}
.y249{bottom:241.092000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y67{bottom:242.742667pt;}
.y1c0{bottom:243.321333pt;}
.yf3{bottom:245.077333pt;}
.y254{bottom:245.476000pt;}
.y18d{bottom:246.478667pt;}
.y118{bottom:246.672000pt;}
.y9f{bottom:247.850667pt;}
.y21b{bottom:248.776000pt;}
.y152{bottom:248.901333pt;}
.yd4{bottom:249.062667pt;}
.y273{bottom:250.657333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1bf{bottom:257.632000pt;}
.y248{bottom:257.829333pt;}
.y66{bottom:259.480000pt;}
.y1be{bottom:260.058667pt;}
.y2a9{bottom:260.818667pt;}
.y253{bottom:262.213333pt;}
.y18c{bottom:263.216000pt;}
.y117{bottom:263.409333pt;}
.y9e{bottom:264.588000pt;}
.y21a{bottom:265.512000pt;}
.y151{bottom:265.638667pt;}
.yf2{bottom:265.800000pt;}
.y272{bottom:265.998667pt;}
.y1f3{bottom:268.846667pt;}
.y3f{bottom:273.154667pt;}
.y247{bottom:274.566667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y2a8{bottom:276.161333pt;}
.y65{bottom:276.217333pt;}
.y1bd{bottom:276.796000pt;}
.yd3{bottom:278.950667pt;}
.y9d{bottom:281.325333pt;}
.y271{bottom:281.341333pt;}
.y219{bottom:282.249333pt;}
.y150{bottom:282.376000pt;}
.y18b{bottom:283.937333pt;}
.y116{bottom:284.130667pt;}
.y1f2{bottom:285.584000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y3e{bottom:289.054667pt;}
.y246{bottom:291.304000pt;}
.y2a7{bottom:291.502667pt;}
.y64{bottom:292.954667pt;}
.y1bc{bottom:293.533333pt;}
.yd2{bottom:295.688000pt;}
.y270{bottom:296.684000pt;}
.y9c{bottom:298.062667pt;}
.y218{bottom:298.986667pt;}
.y14f{bottom:299.113333pt;}
.y1f1{bottom:302.321333pt;}
.y3d{bottom:304.954667pt;}
.y2a6{bottom:306.845333pt;}
.y11{bottom:309.452000pt;}
.y63{bottom:309.692000pt;}
.y245{bottom:312.026667pt;}
.yd1{bottom:312.425333pt;}
.y18a{bottom:313.825333pt;}
.y115{bottom:314.018667pt;}
.y9b{bottom:314.800000pt;}
.y217{bottom:315.724000pt;}
.y14e{bottom:315.850667pt;}
.y1f0{bottom:319.058667pt;}
.y3c{bottom:320.856000pt;}
.y2a5{bottom:322.188000pt;}
.y62{bottom:326.429333pt;}
.y26f{bottom:327.369333pt;}
.yd0{bottom:329.162667pt;}
.y189{bottom:330.562667pt;}
.y114{bottom:330.756000pt;}
.y9a{bottom:331.537333pt;}
.y216{bottom:332.461333pt;}
.y14d{bottom:332.588000pt;}
.y1bb{bottom:333.944000pt;}
.y2a4{bottom:337.530667pt;}
.y1ef{bottom:339.781333pt;}
.y244{bottom:341.914667pt;}
.y26e{bottom:342.712000pt;}
.y61{bottom:343.166667pt;}
.y10{bottom:343.809333pt;}
.ycf{bottom:345.900000pt;}
.y188{bottom:347.300000pt;}
.y99{bottom:348.274667pt;}
.y215{bottom:349.198667pt;}
.y14c{bottom:349.325333pt;}
.y2a3{bottom:352.873333pt;}
.y3b{bottom:354.688000pt;}
.y1ba{bottom:354.958667pt;}
.y26d{bottom:358.054667pt;}
.y243{bottom:358.652000pt;}
.y60{bottom:359.904000pt;}
.yce{bottom:362.637333pt;}
.yf{bottom:362.706666pt;}
.y113{bottom:363.433333pt;}
.y187{bottom:364.037333pt;}
.y98{bottom:365.012000pt;}
.y14b{bottom:366.061333pt;}
.y2a2{bottom:368.216000pt;}
.y214{bottom:369.921333pt;}
.y3a{bottom:370.589333pt;}
.y26c{bottom:373.397333pt;}
.y242{bottom:375.389333pt;}
.y1ee{bottom:375.550667pt;}
.y1b9{bottom:375.972000pt;}
.y5f{bottom:376.641333pt;}
.ycd{bottom:379.374667pt;}
.y112{bottom:380.170667pt;}
.y186{bottom:380.774667pt;}
.y97{bottom:381.749333pt;}
.y14a{bottom:382.798667pt;}
.y2a1{bottom:383.558667pt;}
.y39{bottom:386.489333pt;}
.y26b{bottom:388.738667pt;}
.y241{bottom:392.126667pt;}
.y5e{bottom:393.378667pt;}
.y1ed{bottom:394.574667pt;}
.ycc{bottom:396.112000pt;}
.y111{bottom:396.908000pt;}
.y1b8{bottom:396.986667pt;}
.y185{bottom:397.512000pt;}
.y96{bottom:398.486667pt;}
.y2a0{bottom:398.901333pt;}
.y149{bottom:399.536000pt;}
.y213{bottom:399.809333pt;}
.yf1{bottom:400.096000pt;}
.y26a{bottom:404.081333pt;}
.y1ec{bottom:405.201333pt;}
.y240{bottom:408.864000pt;}
.y5d{bottom:410.116000pt;}
.ycb{bottom:412.848000pt;}
.y110{bottom:413.645333pt;}
.y29f{bottom:414.244000pt;}
.y184{bottom:414.249333pt;}
.y125{bottom:414.864763pt;}
.y95{bottom:415.224000pt;}
.y1eb{bottom:415.828000pt;}
.y148{bottom:416.273333pt;}
.y212{bottom:416.546667pt;}
.y1b7{bottom:418.000000pt;}
.y38{bottom:418.330667pt;}
.y269{bottom:419.424000pt;}
.y23f{bottom:425.601333pt;}
.y1ea{bottom:426.456000pt;}
.y5c{bottom:426.853333pt;}
.yca{bottom:429.585333pt;}
.yf0{bottom:429.984000pt;}
.y10f{bottom:430.382667pt;}
.ye{bottom:430.990669pt;}
.y124{bottom:431.904107pt;}
.y94{bottom:431.961333pt;}
.y147{bottom:433.010667pt;}
.y211{bottom:433.284000pt;}
.y183{bottom:434.972000pt;}
.y1e9{bottom:437.082667pt;}
.y268{bottom:438.752000pt;}
.y1b6{bottom:439.014667pt;}
.y23e{bottom:442.338667pt;}
.y29e{bottom:444.928000pt;}
.yc9{bottom:446.322667pt;}
.yd{bottom:446.990669pt;}
.y10e{bottom:447.120000pt;}
.y5b{bottom:447.576000pt;}
.y1e8{bottom:447.709333pt;}
.y93{bottom:448.698667pt;}
.y123{bottom:449.023611pt;}
.y146{bottom:449.748000pt;}
.y210{bottom:450.021333pt;}
.y37{bottom:450.170667pt;}
.y1e7{bottom:458.336000pt;}
.y23d{bottom:459.076000pt;}
.y1b5{bottom:460.028000pt;}
.y29d{bottom:460.270667pt;}
.yef{bottom:462.662667pt;}
.yc{bottom:462.990669pt;}
.yc8{bottom:463.060000pt;}
.y10d{bottom:463.857333pt;}
.y92{bottom:465.436000pt;}
.y36{bottom:466.070667pt;}
.y145{bottom:466.485333pt;}
.y20f{bottom:466.758667pt;}
.y267{bottom:468.640000pt;}
.y1e6{bottom:468.962667pt;}
.y182{bottom:471.956000pt;}
.y29c{bottom:475.613333pt;}
.y23c{bottom:475.813333pt;}
.yb{bottom:478.990666pt;}
.yee{bottom:479.398667pt;}
.y1e5{bottom:479.589333pt;}
.yc7{bottom:479.797333pt;}
.y10c{bottom:480.594667pt;}
.y1b4{bottom:481.041333pt;}
.y35{bottom:481.972000pt;}
.y91{bottom:482.173333pt;}
.y144{bottom:483.222667pt;}
.y20e{bottom:483.496000pt;}
.y181{bottom:486.568000pt;}
.y1e4{bottom:490.216000pt;}
.y29b{bottom:490.956000pt;}
.y266{bottom:492.232000pt;}
.y23b{bottom:492.549333pt;}
.y17e{bottom:493.873333pt;}
.ya{bottom:494.990666pt;}
.yed{bottom:496.136000pt;}
.yc6{bottom:496.534667pt;}
.y10b{bottom:497.332000pt;}
.y121{bottom:497.503587pt;}
.y34{bottom:497.872000pt;}
.y90{bottom:498.910667pt;}
.y143{bottom:499.960000pt;}
.y20d{bottom:500.233333pt;}
.y180{bottom:501.180000pt;}
.y1b3{bottom:502.056000pt;}
.y120{bottom:506.223067pt;}
.y29a{bottom:506.298667pt;}
.y1e3{bottom:507.245333pt;}
.y23a{bottom:509.286667pt;}
.y1e2{bottom:512.558667pt;}
.yec{bottom:512.873333pt;}
.yc5{bottom:513.272000pt;}
.y33{bottom:513.772000pt;}
.y10a{bottom:514.069333pt;}
.y5a{bottom:514.376000pt;}
.y8f{bottom:515.648000pt;}
.y17f{bottom:515.790667pt;}
.y265{bottom:515.822667pt;}
.y20c{bottom:516.970667pt;}
.y142{bottom:520.682667pt;}
.y299{bottom:521.641333pt;}
.y1b2{bottom:523.069333pt;}
.y239{bottom:526.024000pt;}
.yeb{bottom:529.610667pt;}
.y32{bottom:529.673333pt;}
.yc4{bottom:530.009333pt;}
.y109{bottom:530.806667pt;}
.y59{bottom:531.670667pt;}
.y8e{bottom:532.384000pt;}
.y20b{bottom:533.708000pt;}
.y17d{bottom:536.805333pt;}
.y298{bottom:536.984000pt;}
.y264{bottom:539.414667pt;}
.y238{bottom:542.761333pt;}
.y1e1{bottom:543.189333pt;}
.y1b1{bottom:544.084000pt;}
.y31{bottom:545.573333pt;}
.yea{bottom:546.348000pt;}
.yc3{bottom:546.746667pt;}
.y141{bottom:547.729333pt;}
.y8d{bottom:549.121333pt;}
.y20a{bottom:550.445333pt;}
.y1b0{bottom:551.389333pt;}
.y17b{bottom:551.417333pt;}
.y108{bottom:551.529333pt;}
.y297{bottom:552.325333pt;}
.y237{bottom:559.498667pt;}
.y30{bottom:561.473333pt;}
.y263{bottom:563.006667pt;}
.ye9{bottom:563.085333pt;}
.yc2{bottom:563.484000pt;}
.y140{bottom:564.825333pt;}
.y58{bottom:564.905333pt;}
.y8c{bottom:565.858667pt;}
.y17a{bottom:566.029333pt;}
.y209{bottom:567.182667pt;}
.y296{bottom:567.668000pt;}
.y9{bottom:573.786667pt;}
.y1e0{bottom:574.841333pt;}
.y236{bottom:576.236000pt;}
.y2f{bottom:577.374667pt;}
.y1af{bottom:579.709333pt;}
.ye8{bottom:579.822667pt;}
.yc1{bottom:580.221333pt;}
.y17c{bottom:580.641333pt;}
.y107{bottom:581.417333pt;}
.y13f{bottom:581.921333pt;}
.y57{bottom:582.201333pt;}
.y8b{bottom:582.596000pt;}
.y295{bottom:583.010667pt;}
.y208{bottom:583.920000pt;}
.y262{bottom:586.597333pt;}
.y1df{bottom:591.578667pt;}
.y8{bottom:592.685334pt;}
.y235{bottom:592.973333pt;}
.y1ad{bottom:594.321333pt;}
.ye7{bottom:596.560000pt;}
.yc0{bottom:596.958667pt;}
.y2c{bottom:597.259968pt;}
.y106{bottom:598.154667pt;}
.y294{bottom:598.353333pt;}
.y8a{bottom:599.333333pt;}
.y56{bottom:599.496000pt;}
.y207{bottom:600.657333pt;}
.y179{bottom:601.654667pt;}
.y11f{bottom:601.858667pt;}
.y261{bottom:602.218667pt;}
.y1de{bottom:608.316000pt;}
.y1ae{bottom:608.933333pt;}
.y234{bottom:609.710667pt;}
.ye6{bottom:613.297333pt;}
.ybf{bottom:613.696000pt;}
.y89{bottom:616.070667pt;}
.y177{bottom:616.266667pt;}
.y55{bottom:616.792000pt;}
.y206{bottom:617.394667pt;}
.y260{bottom:617.840000pt;}
.y1dd{bottom:625.053333pt;}
.y233{bottom:626.448000pt;}
.y293{bottom:629.038667pt;}
.y1ac{bottom:629.948000pt;}
.ye5{bottom:630.034667pt;}
.ybe{bottom:630.433333pt;}
.y105{bottom:630.832000pt;}
.y178{bottom:630.878667pt;}
.y88{bottom:632.808000pt;}
.y25f{bottom:633.462667pt;}
.y54{bottom:634.086667pt;}
.y205{bottom:634.130667pt;}
.y1ab{bottom:637.253333pt;}
.y1dc{bottom:641.790667pt;}
.y232{bottom:643.185333pt;}
.y292{bottom:644.381333pt;}
.y7{bottom:645.598667pt;}
.ye4{bottom:646.772000pt;}
.ybd{bottom:647.170667pt;}
.y104{bottom:647.569333pt;}
.y25e{bottom:649.084000pt;}
.y87{bottom:649.545333pt;}
.y204{bottom:650.868000pt;}
.y53{bottom:651.381333pt;}
.y176{bottom:651.892000pt;}
.y1db{bottom:658.528000pt;}
.y173{bottom:659.198667pt;}
.y291{bottom:659.724000pt;}
.y231{bottom:659.922667pt;}
.ye3{bottom:663.509333pt;}
.ybc{bottom:663.908000pt;}
.y103{bottom:664.306667pt;}
.y1aa{bottom:665.573333pt;}
.y86{bottom:666.282667pt;}
.y175{bottom:666.504000pt;}
.y203{bottom:667.605333pt;}
.y52{bottom:668.677333pt;}
.y3{bottom:668.977329pt;}
.y1a9{bottom:672.878667pt;}
.y172{bottom:673.810667pt;}
.y290{bottom:675.066667pt;}
.y1da{bottom:675.265333pt;}
.y230{bottom:676.660000pt;}
.ye2{bottom:680.246667pt;}
.ybb{bottom:680.645333pt;}
.y102{bottom:681.044000pt;}
.y174{bottom:681.116000pt;}
.y85{bottom:683.020000pt;}
.y202{bottom:684.342667pt;}
.y51{bottom:685.972000pt;}
.y28f{bottom:690.408000pt;}
.y1d9{bottom:692.002667pt;}
.y22f{bottom:693.397333pt;}
.ye1{bottom:696.984000pt;}
.yba{bottom:697.382667pt;}
.y101{bottom:697.781333pt;}
.y84{bottom:699.757333pt;}
.y1a8{bottom:701.198667pt;}
.y171{bottom:702.130667pt;}
.y50{bottom:703.266667pt;}
.y28e{bottom:705.750667pt;}
.y1a7{bottom:708.505333pt;}
.y1d8{bottom:708.740000pt;}
.y170{bottom:709.436000pt;}
.y22e{bottom:710.134667pt;}
.ye0{bottom:713.721333pt;}
.yb9{bottom:714.120000pt;}
.y100{bottom:714.518667pt;}
.y83{bottom:716.494667pt;}
.y4f{bottom:720.562667pt;}
.y28d{bottom:721.093333pt;}
.y1d7{bottom:723.050667pt;}
.y201{bottom:723.938667pt;}
.y1d6{bottom:725.477333pt;}
.y22d{bottom:726.872000pt;}
.ydf{bottom:730.458667pt;}
.yb8{bottom:730.857333pt;}
.yff{bottom:731.256000pt;}
.y82{bottom:733.232000pt;}
.y28c{bottom:736.436000pt;}
.y1a6{bottom:736.825333pt;}
.y16f{bottom:737.756000pt;}
.y4e{bottom:737.857333pt;}
.y1d5{bottom:742.214667pt;}
.y22c{bottom:743.609333pt;}
.y200{bottom:744.158667pt;}
.y16d{bottom:745.062667pt;}
.yde{bottom:747.196000pt;}
.yb7{bottom:747.594667pt;}
.yfe{bottom:747.993333pt;}
.y81{bottom:749.969333pt;}
.y28b{bottom:751.778667pt;}
.y16e{bottom:752.368000pt;}
.y4d{bottom:755.153333pt;}
.y1ff{bottom:758.770667pt;}
.y22b{bottom:760.346667pt;}
.ydd{bottom:763.933333pt;}
.yb6{bottom:764.332000pt;}
.yfd{bottom:764.730667pt;}
.y1a5{bottom:764.930667pt;}
.y80{bottom:766.706667pt;}
.y28a{bottom:767.121333pt;}
.y1d4{bottom:772.122667pt;}
.y4c{bottom:772.448000pt;}
.y16c{bottom:773.382667pt;}
.y22a{bottom:777.084000pt;}
.yb5{bottom:781.069333pt;}
.yfc{bottom:781.468000pt;}
.y2{bottom:781.661334pt;}
.y289{bottom:782.464000pt;}
.y7f{bottom:783.444000pt;}
.ydc{bottom:784.656000pt;}
.y16b{bottom:787.993333pt;}
.y1d3{bottom:788.860000pt;}
.y229{bottom:793.821333pt;}
.y1a4{bottom:796.949333pt;}
.yb4{bottom:797.806667pt;}
.yfb{bottom:798.205333pt;}
.y7e{bottom:800.181333pt;}
.y1d2{bottom:801.546667pt;}
.y16a{bottom:802.605333pt;}
.y4b{bottom:804.417333pt;}
.y1d1{bottom:805.597333pt;}
.y228{bottom:810.558667pt;}
.y288{bottom:813.149333pt;}
.y1a3{bottom:813.686667pt;}
.yb3{bottom:814.544000pt;}
.yfa{bottom:814.942667pt;}
.y7d{bottom:816.918667pt;}
.y169{bottom:817.217333pt;}
.y4a{bottom:818.764000pt;}
.y1d0{bottom:822.334667pt;}
.y227{bottom:827.296000pt;}
.y287{bottom:828.490667pt;}
.y1a2{bottom:830.424000pt;}
.yb2{bottom:831.281333pt;}
.yf9{bottom:831.680000pt;}
.y1fe{bottom:831.704000pt;}
.y168{bottom:831.829333pt;}
.y7c{bottom:833.656000pt;}
.y49{bottom:836.968000pt;}
.y1cf{bottom:839.072000pt;}
.y162{bottom:839.136000pt;}
.y286{bottom:843.833333pt;}
.y226{bottom:844.033333pt;}
.y1a1{bottom:844.734667pt;}
.y15f{bottom:846.441333pt;}
.y1a0{bottom:847.161333pt;}
.yb1{bottom:848.018667pt;}
.y7b{bottom:850.393333pt;}
.y48{bottom:851.314667pt;}
.yf8{bottom:852.401333pt;}
.y161{bottom:853.746667pt;}
.y285{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.y225{bottom:860.770667pt;}
.y15e{bottom:861.053333pt;}
.y19f{bottom:861.472000pt;}
.y19e{bottom:863.898667pt;}
.yb0{bottom:864.754667pt;}
.y1ce{bottom:866.349333pt;}
.y7a{bottom:867.130667pt;}
.y160{bottom:868.358667pt;}
.y284{bottom:874.518667pt;}
.y167{bottom:875.665333pt;}
.y224{bottom:877.508000pt;}
.y19d{bottom:878.209333pt;}
.y19c{bottom:880.636000pt;}
.yaf{bottom:881.492000pt;}
.yf7{bottom:882.289333pt;}
.y79{bottom:883.868000pt;}
.y2b{bottom:884.713333pt;}
.y283{bottom:889.861333pt;}
.y166{bottom:890.277333pt;}
.y1cd{bottom:893.182667pt;}
.y223{bottom:894.245333pt;}
.y19b{bottom:894.946667pt;}
.y1cc{bottom:897.034667pt;}
.y19a{bottom:897.373333pt;}
.yae{bottom:898.229333pt;}
.yf6{bottom:899.026667pt;}
.y78{bottom:900.605333pt;}
.y165{bottom:904.889333pt;}
.y282{bottom:905.204000pt;}
.y222{bottom:910.982667pt;}
.yad{bottom:914.966667pt;}
.y77{bottom:917.342667pt;}
.y164{bottom:919.501333pt;}
.y281{bottom:920.546667pt;}
.y2a{bottom:925.510667pt;}
.y1fd{bottom:925.902667pt;}
.y199{bottom:926.336000pt;}
.y1cb{bottom:927.720000pt;}
.y198{bottom:930.888000pt;}
.yac{bottom:931.704000pt;}
.y76{bottom:934.080000pt;}
.y163{bottom:934.112000pt;}
.y280{bottom:935.889333pt;}
.y1fc{bottom:940.514667pt;}
.y1ca{bottom:944.456000pt;}
.yab{bottom:948.441333pt;}
.y29{bottom:950.616000pt;}
.y75{bottom:950.817333pt;}
.y27f{bottom:951.230667pt;}
.y15d{bottom:955.126667pt;}
.y1c9{bottom:961.193333pt;}
.yaa{bottom:965.178667pt;}
.y27e{bottom:966.573333pt;}
.y74{bottom:967.554667pt;}
.y28{bottom:975.722667pt;}
.ya9{bottom:981.916000pt;}
.y15c{bottom:983.233333pt;}
.y73{bottom:984.290667pt;}
.y24{bottom:1014.377333pt;}
.y72{bottom:1043.020000pt;}
.hf{height:22.673858pt;}
.h14{height:23.209028pt;}
.h12{height:27.076941pt;}
.h36{height:27.184641pt;}
.h13{height:27.262909pt;}
.h7{height:28.560000pt;}
.h24{height:29.397999pt;}
.h11{height:29.433775pt;}
.h10{height:30.399505pt;}
.h15{height:30.945242pt;}
.h1b{height:31.157778pt;}
.ha{height:32.246508pt;}
.h16{height:34.574438pt;}
.h17{height:34.813542pt;}
.h37{height:35.052646pt;}
.h33{height:36.865333pt;}
.h30{height:37.087439pt;}
.h34{height:37.372000pt;}
.h18{height:38.415786pt;}
.h19{height:38.681455pt;}
.hc{height:38.947124pt;}
.h20{height:39.010156pt;}
.h1d{height:39.359687pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h2f{height:40.964400pt;}
.h26{height:41.285014pt;}
.h2c{height:41.524400pt;}
.h3{height:42.840000pt;}
.h38{height:43.660390pt;}
.h1f{height:44.390625pt;}
.h9{height:45.272024pt;}
.h29{height:46.219733pt;}
.h31{height:48.144306pt;}
.h32{height:48.330274pt;}
.he{height:48.481423pt;}
.h1a{height:48.511220pt;}
.h2{height:48.960000pt;}
.h1e{height:49.421563pt;}
.h2d{height:50.549999pt;}
.h2a{height:51.339332pt;}
.h2b{height:54.089455pt;}
.h28{height:54.110362pt;}
.h2e{height:57.167067pt;}
.h22{height:61.128021pt;}
.h25{height:64.034876pt;}
.h21{height:64.040209pt;}
.h35{height:64.541542pt;}
.h27{height:68.035695pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h23{height:79.336021pt;}
.h4{height:105.826671pt;}
.h1c{height:393.342667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w6{width:498.452000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x16{left:-174.832000pt;}
.x17{left:-0.992969pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x19{left:27.327906pt;}
.x5{left:48.000000pt;}
.x6{left:53.458976pt;}
.x6d{left:58.648000pt;}
.x6c{left:61.168000pt;}
.x81{left:63.913333pt;}
.x87{left:67.368000pt;}
.x80{left:70.788000pt;}
.x6b{left:73.650667pt;}
.x9f{left:76.316000pt;}
.x6f{left:77.868000pt;}
.x6e{left:80.397333pt;}
.x71{left:81.680000pt;}
.x70{left:84.362667pt;}
.x72{left:85.338667pt;}
.x73{left:87.464000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x83{left:99.606667pt;}
.x85{left:100.900000pt;}
.x7d{left:103.381333pt;}
.x86{left:104.320000pt;}
.x84{left:106.477333pt;}
.x88{left:112.038667pt;}
.x7f{left:120.249333pt;}
.x7e{left:121.769333pt;}
.x82{left:132.365333pt;}
.x4{left:180.874667pt;}
.x74{left:187.693333pt;}
.xa{left:222.073333pt;}
.x8{left:223.020000pt;}
.x76{left:225.565333pt;}
.x90{left:227.093333pt;}
.x5e{left:232.982667pt;}
.x1a{left:235.773333pt;}
.x9{left:241.085333pt;}
.x33{left:243.597333pt;}
.x27{left:244.918667pt;}
.x91{left:246.310667pt;}
.x37{left:248.482667pt;}
.xd{left:251.365333pt;}
.x1b{left:256.993333pt;}
.x44{left:259.450667pt;}
.x29{left:265.869333pt;}
.x2a{left:268.822667pt;}
.x45{left:270.786667pt;}
.x26{left:272.750667pt;}
.x3d{left:274.298667pt;}
.x12{left:276.246667pt;}
.xb{left:278.505333pt;}
.x61{left:280.372000pt;}
.x4c{left:281.505333pt;}
.x54{left:282.766667pt;}
.x3e{left:284.217333pt;}
.xc{left:287.190667pt;}
.x51{left:290.537333pt;}
.x34{left:292.642667pt;}
.x52{left:295.958667pt;}
.x4f{left:298.577333pt;}
.x53{left:301.966667pt;}
.x49{left:303.753333pt;}
.x4b{left:312.224000pt;}
.x55{left:313.772000pt;}
.x6a{left:318.018667pt;}
.xf{left:319.324000pt;}
.x3b{left:328.113333pt;}
.x47{left:332.661333pt;}
.x13{left:339.554667pt;}
.x46{left:341.070667pt;}
.x14{left:343.721333pt;}
.x15{left:346.250667pt;}
.x60{left:347.856000pt;}
.xe{left:352.224000pt;}
.x11{left:353.382667pt;}
.x43{left:375.885333pt;}
.x41{left:377.553333pt;}
.x42{left:387.765333pt;}
.x3{left:404.408000pt;}
.x35{left:405.612000pt;}
.x5b{left:407.386667pt;}
.x1c{left:410.388000pt;}
.x2b{left:413.192000pt;}
.x30{left:414.889333pt;}
.x38{left:418.134667pt;}
.x2c{left:419.026667pt;}
.x63{left:420.214667pt;}
.x31{left:428.512000pt;}
.x57{left:430.284000pt;}
.x39{left:432.380000pt;}
.x64{left:434.690667pt;}
.x58{left:437.177333pt;}
.x36{left:441.985333pt;}
.x8b{left:445.806667pt;}
.x62{left:449.324000pt;}
.x32{left:451.758667pt;}
.x59{left:455.109333pt;}
.x1d{left:458.585333pt;}
.x5a{left:462.002667pt;}
.x8c{left:468.756000pt;}
.x10{left:477.132000pt;}
.x8d{left:480.357333pt;}
.x77{left:486.638667pt;}
.x8e{left:491.282667pt;}
.x78{left:494.344000pt;}
.x4d{left:499.012000pt;}
.x5c{left:502.101333pt;}
.x18{left:507.007867pt;}
.x79{left:512.624000pt;}
.x9b{left:525.572000pt;}
.x3f{left:529.054667pt;}
.x92{left:535.452000pt;}
.x40{left:538.973333pt;}
.x67{left:544.940000pt;}
.x5d{left:547.436000pt;}
.x9e{left:550.534667pt;}
.x56{left:555.461333pt;}
.x50{left:558.805333pt;}
.x4e{left:563.904000pt;}
.x4a{left:568.244000pt;}
.x93{left:571.256000pt;}
.x8f{left:577.724000pt;}
.x48{left:579.601333pt;}
.x23{left:580.914667pt;}
.x20{left:583.372000pt;}
.x24{left:584.746667pt;}
.x1f{left:586.253333pt;}
.x1e{left:587.998667pt;}
.x65{left:590.266667pt;}
.x2e{left:591.728000pt;}
.x94{left:594.438667pt;}
.x22{left:596.337333pt;}
.x21{left:600.150667pt;}
.x2d{left:601.274667pt;}
.x95{left:606.377333pt;}
.x25{left:611.508000pt;}
.x3a{left:617.282667pt;}
.x3c{left:624.345333pt;}
.x7a{left:626.180000pt;}
.x7b{left:633.884000pt;}
.x28{left:635.890667pt;}
.x66{left:640.909333pt;}
.x2f{left:644.468000pt;}
.x7c{left:652.164000pt;}
.x98{left:668.817333pt;}
.x99{left:691.744000pt;}
.x89{left:698.050667pt;}
.x9c{left:700.220000pt;}
.x9a{left:703.260000pt;}
.x96{left:705.489333pt;}
.x8a{left:708.976000pt;}
.x68{left:711.193333pt;}
.x5f{left:713.357333pt;}
.x97{left:716.414667pt;}
.x75{left:721.525333pt;}
.x69{left:725.705333pt;}
.x9d{left:744.770667pt;}
}




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