
    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_423f816923d184db9db5b3d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_bf17d5878a0ec5df529cfc75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.860000;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_48645e0c0756ab86ebca8324.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.891000;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_fb9abea06fa3e0cadace6d7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882000;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_94a71eff6dd129183be7863e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.880000;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_f8ff6b19804133840303f606.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871000;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_a509eb706e481ab903eecb27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_54df198918dde95b02848d7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_296a0acab95afb91d010e516.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891000;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_bf17d5878a0ec5df529cfc75.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.860000;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_54571f2b3ab332972a1523a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880000;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_1c8f740faf24b57879d5f9a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.930000;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_2358122fecff4b98cb695bca.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718000;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_296a0acab95afb91d010e516.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.891000;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_bf17d5878a0ec5df529cfc75.woff2')format("woff");}.fff{font-family:fff;line-height:0.860000;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_54571f2b3ab332972a1523a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.880000;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_1c8f740faf24b57879d5f9a2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.930000;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_218b23c43634d4ed527382d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677246;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_0c5a9fd26799f0f83a2fde32.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.946000;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_fb5379221c2676f7daae3aeb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.964000;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_ed33d6a8d87693ad03330aea.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3f27db7ee5d22300b48bd5f9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_31409c5204a3dc6ac4e92b14.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.702000;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;}
.m12{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);}
.m5{transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.245587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245587,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246226,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246398,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246555,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247073,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247401,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,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);}
.m50{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252582,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253113,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253148,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253537,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v5{vertical-align:-19.980000px;}
.v3{vertical-align:-18.018000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.984000px;}
.v2{vertical-align:17.982000px;}
.v4{vertical-align:19.980000px;}
.ls17{letter-spacing:-5.490000px;}
.ls58{letter-spacing:-4.416000px;}
.ls5b{letter-spacing:-3.264000px;}
.ls55{letter-spacing:-2.640000px;}
.ls5c{letter-spacing:-2.592000px;}
.ls68{letter-spacing:-2.304000px;}
.ls54{letter-spacing:-2.208000px;}
.ls5a{letter-spacing:-1.632000px;}
.ls2b{letter-spacing:-1.620000px;}
.ls27{letter-spacing:-1.560000px;}
.ls2a{letter-spacing:-1.500000px;}
.ls2c{letter-spacing:-1.440000px;}
.ls59{letter-spacing:-1.152000px;}
.ls52{letter-spacing:-1.104000px;}
.ls1f{letter-spacing:-1.020000px;}
.ls6{letter-spacing:-1.008000px;}
.ls5e{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.855000px;}
.ls12{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.630000px;}
.ls57{letter-spacing:-0.624000px;}
.ls7{letter-spacing:-0.600000px;}
.ls56{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.524700px;}
.ls5d{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.420000px;}
.ls5f{letter-spacing:-0.336000px;}
.ls11{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.180000px;}
.ls53{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000150px;}
.ls1d{letter-spacing:0.004800px;}
.ls14{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.135000px;}
.ls3{letter-spacing:0.174399px;}
.ls26{letter-spacing:0.174894px;}
.ls2f{letter-spacing:0.174900px;}
.ls4{letter-spacing:0.174987px;}
.ls2e{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.306000px;}
.lse{letter-spacing:0.366540px;}
.ls10{letter-spacing:0.366747px;}
.lsc{letter-spacing:0.366752px;}
.lsf{letter-spacing:0.367140px;}
.ls25{letter-spacing:0.524700px;}
.ls22{letter-spacing:0.525000px;}
.ls1b{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.630000px;}
.ls13{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.816000px;}
.ls37{letter-spacing:0.820800px;}
.ls21{letter-spacing:0.900000px;}
.ls23{letter-spacing:0.906000px;}
.ls32{letter-spacing:0.960000px;}
.ls24{letter-spacing:1.032000px;}
.ls0{letter-spacing:1.296000px;}
.ls36{letter-spacing:1.632000px;}
.ls3e{letter-spacing:2.352000px;}
.ls45{letter-spacing:2.688000px;}
.ls4d{letter-spacing:2.736000px;}
.ls4c{letter-spacing:3.120000px;}
.ls35{letter-spacing:3.648000px;}
.ls3a{letter-spacing:3.888000px;}
.ls3b{letter-spacing:3.936000px;}
.ls46{letter-spacing:3.984000px;}
.ls50{letter-spacing:4.176000px;}
.ls51{letter-spacing:4.180800px;}
.ls65{letter-spacing:5.476800px;}
.ls34{letter-spacing:5.760000px;}
.ls67{letter-spacing:6.528000px;}
.ls3c{letter-spacing:6.576000px;}
.ls3f{letter-spacing:6.720000px;}
.ls40{letter-spacing:6.724800px;}
.ls33{letter-spacing:6.816000px;}
.ls60{letter-spacing:6.912000px;}
.ls61{letter-spacing:6.960000px;}
.ls62{letter-spacing:6.964800px;}
.ls3d{letter-spacing:7.152000px;}
.ls4a{letter-spacing:7.344000px;}
.ls49{letter-spacing:7.392000px;}
.ls44{letter-spacing:7.824000px;}
.ls41{letter-spacing:8.016000px;}
.ls47{letter-spacing:9.408000px;}
.ls42{letter-spacing:10.032000px;}
.ls43{letter-spacing:10.036800px;}
.ls64{letter-spacing:11.472000px;}
.ls31{letter-spacing:11.856000px;}
.ls30{letter-spacing:11.860800px;}
.ls48{letter-spacing:12.816000px;}
.ls4f{letter-spacing:13.248000px;}
.ls4b{letter-spacing:13.824000px;}
.ls63{letter-spacing:13.920000px;}
.ls39{letter-spacing:18.336000px;}
.ls66{letter-spacing:20.304000px;}
.ls4e{letter-spacing:22.272000px;}
.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;}
}
.ws98{word-spacing:-17.208000px;}
.wsb8{word-spacing:-14.520000px;}
.ws3f{word-spacing:-14.280000px;}
.ws3d{word-spacing:-14.250000px;}
.ws76{word-spacing:-14.220000px;}
.wsda{word-spacing:-13.920000px;}
.ws72{word-spacing:-13.824000px;}
.ws3e{word-spacing:-13.800000px;}
.ws3c{word-spacing:-13.740000px;}
.ws9{word-spacing:-13.620000px;}
.ws6e{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.452000px;}
.ws3b{word-spacing:-13.380000px;}
.ws99{word-spacing:-13.320000px;}
.ws5{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.140000px;}
.ws7{word-spacing:-13.080000px;}
.ws70{word-spacing:-13.008000px;}
.ws8{word-spacing:-12.900000px;}
.ws4{word-spacing:-12.744000px;}
.ws6f{word-spacing:-12.720000px;}
.wsc7{word-spacing:-12.480000px;}
.wsca{word-spacing:-12.288000px;}
.ws97{word-spacing:-12.240000px;}
.ws96{word-spacing:-12.180000px;}
.wsc9{word-spacing:-12.096000px;}
.wsab{word-spacing:-12.000000px;}
.wsf{word-spacing:-11.808000px;}
.wse9{word-spacing:-11.664000px;}
.ws1{word-spacing:-11.520000px;}
.ws74{word-spacing:-11.328000px;}
.ws11b{word-spacing:-11.184000px;}
.wsce{word-spacing:-11.136000px;}
.wsad{word-spacing:-11.100000px;}
.wsd5{word-spacing:-11.040000px;}
.wscc{word-spacing:-10.944000px;}
.wscd{word-spacing:-10.896000px;}
.wsd8{word-spacing:-10.800000px;}
.wse1{word-spacing:-10.704000px;}
.wsd6{word-spacing:-10.560000px;}
.wsff{word-spacing:-10.368000px;}
.ws44{word-spacing:-10.215000px;}
.wscf{word-spacing:-10.080000px;}
.ws100{word-spacing:-9.888000px;}
.ws73{word-spacing:-9.676800px;}
.ws6b{word-spacing:-9.675000px;}
.ws6c{word-spacing:-9.495000px;}
.wsc8{word-spacing:-9.312000px;}
.ws12f{word-spacing:-9.216000px;}
.ws71{word-spacing:-9.105600px;}
.wsd2{word-spacing:-8.928000px;}
.wscb{word-spacing:-8.880000px;}
.ws106{word-spacing:-8.256000px;}
.wsa{word-spacing:-7.940460px;}
.ws3{word-spacing:-7.744572px;}
.wsf2{word-spacing:-7.104000px;}
.ws0{word-spacing:-6.884064px;}
.wsb7{word-spacing:-6.780000px;}
.wsa5{word-spacing:-6.471300px;}
.ws17{word-spacing:-6.422328px;}
.wsa0{word-spacing:-5.160000px;}
.wsd0{word-spacing:-4.944000px;}
.wsd3{word-spacing:-4.809600px;}
.wsd4{word-spacing:-4.780800px;}
.wsd1{word-spacing:-4.392000px;}
.ws84{word-spacing:-4.020000px;}
.ws12d{word-spacing:-3.696000px;}
.wsdd{word-spacing:-3.660000px;}
.ws122{word-spacing:-3.600000px;}
.ws12e{word-spacing:-3.552000px;}
.ws52{word-spacing:-3.540000px;}
.ws53{word-spacing:-2.940000px;}
.ws54{word-spacing:-2.880000px;}
.ws51{word-spacing:-2.820000px;}
.ws25{word-spacing:-2.760000px;}
.ws75{word-spacing:-2.700000px;}
.ws115{word-spacing:-2.640000px;}
.ws9c{word-spacing:-2.580000px;}
.ws4f{word-spacing:-2.520000px;}
.ws9d{word-spacing:-2.400000px;}
.ws69{word-spacing:-2.304000px;}
.ws8f{word-spacing:-2.280000px;}
.wsb1{word-spacing:-2.160000px;}
.ws82{word-spacing:-2.100000px;}
.ws92{word-spacing:-2.040000px;}
.ws39{word-spacing:-1.980000px;}
.ws134{word-spacing:-1.968000px;}
.wsa2{word-spacing:-1.920000px;}
.wsfd{word-spacing:-1.872000px;}
.ws22{word-spacing:-1.860000px;}
.wsfe{word-spacing:-1.824000px;}
.ws5a{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.728000px;}
.ws6a{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.674000px;}
.ws68{word-spacing:-1.584000px;}
.ws8a{word-spacing:-1.560000px;}
.ws1a{word-spacing:-1.512000px;}
.ws86{word-spacing:-1.500000px;}
.ws1d{word-spacing:-1.440000px;}
.ws10f{word-spacing:-1.344000px;}
.ws28{word-spacing:-1.320000px;}
.wsf3{word-spacing:-1.296000px;}
.wsf4{word-spacing:-1.248000px;}
.ws64{word-spacing:-1.200000px;}
.ws116{word-spacing:-1.152000px;}
.ws117{word-spacing:-1.104000px;}
.ws11e{word-spacing:-1.056000px;}
.ws94{word-spacing:-1.008000px;}
.wsea{word-spacing:-0.960000px;}
.ws105{word-spacing:-0.912000px;}
.ws1e{word-spacing:-0.900000px;}
.ws1f{word-spacing:-0.840000px;}
.ws57{word-spacing:-0.720000px;}
.ws9e{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.648000px;}
.ws7a{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.540000px;}
.ws13a{word-spacing:-0.480000px;}
.ws9f{word-spacing:-0.420000px;}
.wsf7{word-spacing:-0.384000px;}
.ws7b{word-spacing:-0.360000px;}
.wsf8{word-spacing:-0.336000px;}
.ws8e{word-spacing:-0.300000px;}
.ws10c{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.270000px;}
.ws85{word-spacing:-0.180000px;}
.ws124{word-spacing:-0.144000px;}
.ws87{word-spacing:-0.120000px;}
.ws6d{word-spacing:-0.090000px;}
.wsb{word-spacing:0.000000px;}
.wsa6{word-spacing:0.060000px;}
.wseb{word-spacing:0.144000px;}
.ws65{word-spacing:0.180000px;}
.ws36{word-spacing:0.240000px;}
.ws83{word-spacing:0.300000px;}
.ws10{word-spacing:0.324000px;}
.wsf1{word-spacing:0.336000px;}
.wsf0{word-spacing:0.384000px;}
.ws29{word-spacing:0.420000px;}
.ws88{word-spacing:0.480000px;}
.wsf9{word-spacing:0.528000px;}
.wsfa{word-spacing:0.576000px;}
.wsb0{word-spacing:0.600000px;}
.ws24{word-spacing:0.660000px;}
.ws4b{word-spacing:0.840000px;}
.ws37{word-spacing:0.900000px;}
.wsd7{word-spacing:0.940800px;}
.ws4e{word-spacing:0.960000px;}
.wsc{word-spacing:1.008000px;}
.wse2{word-spacing:1.104000px;}
.wsa1{word-spacing:1.140000px;}
.wsd{word-spacing:1.248000px;}
.ws23{word-spacing:1.260000px;}
.wse{word-spacing:1.296000px;}
.ws3a{word-spacing:1.320000px;}
.ws4c{word-spacing:1.380000px;}
.ws77{word-spacing:1.500000px;}
.ws31{word-spacing:1.560000px;}
.wsf5{word-spacing:1.584000px;}
.wsf6{word-spacing:1.632000px;}
.ws7f{word-spacing:1.680000px;}
.ws95{word-spacing:1.728000px;}
.wsa3{word-spacing:1.800000px;}
.ws50{word-spacing:1.860000px;}
.ws11d{word-spacing:1.872000px;}
.wsa4{word-spacing:2.040000px;}
.ws33{word-spacing:2.100000px;}
.ws136{word-spacing:2.160000px;}
.ws107{word-spacing:2.256000px;}
.wsac{word-spacing:2.280000px;}
.ws11{word-spacing:2.322000px;}
.ws81{word-spacing:2.400000px;}
.wsbd{word-spacing:2.460000px;}
.ws127{word-spacing:2.496000px;}
.ws2e{word-spacing:2.520000px;}
.ws21{word-spacing:2.580000px;}
.ws110{word-spacing:2.592000px;}
.ws20{word-spacing:2.640000px;}
.ws111{word-spacing:2.688000px;}
.ws104{word-spacing:2.736000px;}
.ws2c{word-spacing:2.760000px;}
.ws128{word-spacing:2.784000px;}
.ws103{word-spacing:2.880000px;}
.ws11a{word-spacing:2.976000px;}
.ws62{word-spacing:3.000000px;}
.ws126{word-spacing:3.024000px;}
.ws119{word-spacing:3.072000px;}
.ws13{word-spacing:3.132000px;}
.ws138{word-spacing:3.168000px;}
.ws108{word-spacing:3.216000px;}
.wsb5{word-spacing:3.240000px;}
.wsbe{word-spacing:3.360000px;}
.ws63{word-spacing:3.420000px;}
.wsb6{word-spacing:3.480000px;}
.ws16{word-spacing:3.510000px;}
.ws59{word-spacing:3.540000px;}
.ws61{word-spacing:3.720000px;}
.wsfb{word-spacing:3.744000px;}
.ws112{word-spacing:3.840000px;}
.ws66{word-spacing:3.900000px;}
.wsfc{word-spacing:3.936000px;}
.ws123{word-spacing:3.984000px;}
.ws2a{word-spacing:4.020000px;}
.wsbf{word-spacing:4.080000px;}
.ws2f{word-spacing:4.140000px;}
.wse0{word-spacing:4.176000px;}
.ws2b{word-spacing:4.260000px;}
.ws8b{word-spacing:4.320000px;}
.ws5f{word-spacing:4.380000px;}
.ws26{word-spacing:4.440000px;}
.ws2d{word-spacing:4.500000px;}
.wsae{word-spacing:4.560000px;}
.wsdc{word-spacing:4.680000px;}
.ws30{word-spacing:4.740000px;}
.wsdf{word-spacing:4.944000px;}
.ws32{word-spacing:5.040000px;}
.ws89{word-spacing:5.100000px;}
.ws7d{word-spacing:5.220000px;}
.wsaf{word-spacing:5.340000px;}
.ws67{word-spacing:5.376000px;}
.ws135{word-spacing:5.472000px;}
.ws93{word-spacing:5.616000px;}
.ws8d{word-spacing:5.640000px;}
.ws27{word-spacing:5.760000px;}
.ws125{word-spacing:5.808000px;}
.ws78{word-spacing:5.820000px;}
.wsbc{word-spacing:5.880000px;}
.ws38{word-spacing:6.000000px;}
.ws101{word-spacing:6.144000px;}
.wsc3{word-spacing:6.180000px;}
.ws109{word-spacing:6.192000px;}
.ws8c{word-spacing:6.420000px;}
.ws102{word-spacing:6.432000px;}
.ws34{word-spacing:6.540000px;}
.ws1c{word-spacing:6.642000px;}
.ws12c{word-spacing:6.720000px;}
.ws1b{word-spacing:6.912000px;}
.ws130{word-spacing:6.960000px;}
.ws12b{word-spacing:7.008000px;}
.ws55{word-spacing:7.320000px;}
.wsc6{word-spacing:7.380000px;}
.ws11f{word-spacing:7.392000px;}
.ws80{word-spacing:7.440000px;}
.ws4d{word-spacing:7.560000px;}
.ws10d{word-spacing:7.824000px;}
.ws56{word-spacing:7.860000px;}
.ws7c{word-spacing:7.980000px;}
.ws10a{word-spacing:8.016000px;}
.ws7e{word-spacing:8.040000px;}
.ws10e{word-spacing:8.784000px;}
.wsb9{word-spacing:9.000000px;}
.wsa7{word-spacing:9.060000px;}
.wsd9{word-spacing:9.120000px;}
.ws118{word-spacing:9.408000px;}
.ws120{word-spacing:9.840000px;}
.ws10b{word-spacing:10.032000px;}
.wsde{word-spacing:10.368000px;}
.wsb3{word-spacing:10.380000px;}
.ws5e{word-spacing:10.680000px;}
.wse6{word-spacing:10.752000px;}
.wsc5{word-spacing:10.800000px;}
.wsb2{word-spacing:10.860000px;}
.ws60{word-spacing:10.920000px;}
.wse5{word-spacing:11.040000px;}
.wse3{word-spacing:11.376000px;}
.ws133{word-spacing:11.472000px;}
.wse4{word-spacing:11.520000px;}
.wsba{word-spacing:11.580000px;}
.ws113{word-spacing:11.952000px;}
.wsc2{word-spacing:12.180000px;}
.wsaa{word-spacing:12.360000px;}
.ws91{word-spacing:12.420000px;}
.ws114{word-spacing:12.432000px;}
.ws11c{word-spacing:12.816000px;}
.ws12a{word-spacing:12.960000px;}
.wsc4{word-spacing:13.020000px;}
.wsa8{word-spacing:13.260000px;}
.ws139{word-spacing:13.344000px;}
.ws35{word-spacing:13.500000px;}
.ws121{word-spacing:13.824000px;}
.ws131{word-spacing:13.920000px;}
.wsa9{word-spacing:13.980000px;}
.ws9b{word-spacing:14.040000px;}
.ws79{word-spacing:14.160000px;}
.wsec{word-spacing:14.928000px;}
.ws90{word-spacing:15.240000px;}
.wsed{word-spacing:15.552000px;}
.wse8{word-spacing:15.936000px;}
.ws5d{word-spacing:16.440000px;}
.wsdb{word-spacing:16.560000px;}
.wse7{word-spacing:16.608000px;}
.wsc1{word-spacing:17.220000px;}
.wsc0{word-spacing:17.280000px;}
.ws132{word-spacing:17.616000px;}
.ws5c{word-spacing:18.240000px;}
.wsbb{word-spacing:18.660000px;}
.wsef{word-spacing:19.008000px;}
.wsee{word-spacing:19.536000px;}
.wsb4{word-spacing:19.800000px;}
.ws137{word-spacing:20.352000px;}
.ws5b{word-spacing:21.060000px;}
.ws9a{word-spacing:22.200000px;}
.ws129{word-spacing:22.272000px;}
.ws45{word-spacing:241.695000px;}
.ws42{word-spacing:251.190000px;}
.ws4a{word-spacing:280.215000px;}
.ws46{word-spacing:282.064500px;}
.ws43{word-spacing:299.209500px;}
.ws47{word-spacing:329.175000px;}
.ws40{word-spacing:342.945000px;}
.ws41{word-spacing:377.959500px;}
.ws49{word-spacing:570.424500px;}
.ws48{word-spacing:589.545000px;}
._11{margin-left:-34.576871px;}
._13{margin-left:-31.585200px;}
._3a{margin-left:-27.780000px;}
._43{margin-left:-26.640000px;}
._12{margin-left:-24.985200px;}
._3c{margin-left:-22.705200px;}
._3b{margin-left:-21.505200px;}
._e{margin-left:-19.215600px;}
._d{margin-left:-18.049200px;}
._a{margin-left:-17.010000px;}
._9{margin-left:-15.606000px;}
._8{margin-left:-14.018400px;}
._7{margin-left:-12.852000px;}
._6{margin-left:-11.066400px;}
._10{margin-left:-9.913200px;}
._b{margin-left:-8.377200px;}
._1{margin-left:-6.793200px;}
._f{margin-left:-5.245200px;}
._3{margin-left:-4.032000px;}
._2{margin-left:-3.013200px;}
._0{margin-left:-1.954800px;}
._5{width:1.086000px;}
._c{width:2.940000px;}
._49{width:4.074300px;}
._1f{width:5.080500px;}
._1e{width:6.120000px;}
._48{width:7.387500px;}
._4a{width:8.800800px;}
._4b{width:9.919200px;}
._40{width:10.935600px;}
._4{width:12.313200px;}
._4c{width:13.371900px;}
._3f{width:14.760000px;}
._39{width:16.414800px;}
._41{width:18.108000px;}
._47{width:19.270800px;}
._42{width:20.587522px;}
._4d{width:21.616800px;}
._46{width:23.450400px;}
._3e{width:25.206000px;}
._3d{width:26.343600px;}
._45{width:32.466000px;}
._44{width:34.386000px;}
._4e{width:37.522800px;}
._31{width:55.504800px;}
._34{width:58.905000px;}
._30{width:63.694800px;}
._35{width:92.745000px;}
._2a{width:113.130000px;}
._2c{width:123.885000px;}
._2b{width:140.355000px;}
._32{width:156.214800px;}
._29{width:157.584600px;}
._2f{width:184.744800px;}
._2e{width:216.199800px;}
._2d{width:230.734800px;}
._1b{width:251.319000px;}
._1d{width:255.555000px;}
._1a{width:275.838000px;}
._1c{width:281.044800px;}
._33{width:312.699600px;}
._38{width:324.270000px;}
._27{width:331.174800px;}
._23{width:339.390000px;}
._19{width:342.394500px;}
._37{width:371.160000px;}
._24{width:373.230000px;}
._17{width:376.830000px;}
._20{width:399.678600px;}
._36{width:403.020000px;}
._22{width:420.120000px;}
._16{width:423.720000px;}
._25{width:425.925000px;}
._14{width:447.840000px;}
._21{width:451.980000px;}
._26{width:454.185000px;}
._15{width:455.580000px;}
._18{width:502.419000px;}
._28{width:565.380000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fsb{font-size:33.600000px;}
.fs9{font-size:34.980000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:2.845200px;}
.y1{bottom:26.078700px;}
.y13{bottom:43.466850px;}
.y149{bottom:76.896300px;}
.y185{bottom:77.061300px;}
.y113{bottom:77.254350px;}
.y1c7{bottom:77.392050px;}
.y12{bottom:80.646300px;}
.y77{bottom:85.109100px;}
.yd8{bottom:89.286300px;}
.y184{bottom:90.777300px;}
.y1c6{bottom:91.024050px;}
.y11{bottom:94.146300px;}
.y148{bottom:94.251300px;}
.y112{bottom:94.669350px;}
.y1e3{bottom:96.785400px;}
.y76{bottom:99.362850px;}
.yd7{bottom:104.286300px;}
.y183{bottom:104.493300px;}
.y1c5{bottom:104.656050px;}
.y10{bottom:107.646300px;}
.y147{bottom:111.606450px;}
.y111{bottom:112.084350px;}
.y182{bottom:118.209300px;}
.yd6{bottom:119.286300px;}
.yf{bottom:121.146300px;}
.y1c4{bottom:122.788050px;}
.y1e2{bottom:123.185400px;}
.y75{bottom:124.034100px;}
.y146{bottom:128.961450px;}
.y110{bottom:129.499350px;}
.yd5{bottom:134.286300px;}
.ye{bottom:134.646300px;}
.y181{bottom:136.413300px;}
.y1c3{bottom:136.420050px;}
.y1e1{bottom:138.185400px;}
.y74{bottom:138.287850px;}
.y145{bottom:146.316450px;}
.y10f{bottom:146.914350px;}
.yd{bottom:148.146300px;}
.yd4{bottom:149.286300px;}
.y1c2{bottom:150.052050px;}
.y180{bottom:150.129300px;}
.y1e0{bottom:153.185400px;}
.yc{bottom:161.646300px;}
.y73{bottom:162.970350px;}
.y144{bottom:163.671450px;}
.y1c1{bottom:163.684050px;}
.y17f{bottom:163.845300px;}
.y1df{bottom:168.185400px;}
.y10e{bottom:172.833300px;}
.yb{bottom:175.146300px;}
.y72{bottom:177.224100px;}
.y17e{bottom:177.561300px;}
.y143{bottom:181.026300px;}
.y1c0{bottom:181.816050px;}
.y1de{bottom:183.185400px;}
.yc1{bottom:186.838500px;}
.ya{bottom:188.646300px;}
.y10d{bottom:190.248300px;}
.yc3{bottom:194.183700px;}
.y1bf{bottom:195.448050px;}
.y17d{bottom:195.765300px;}
.y1dd{bottom:198.185400px;}
.y142{bottom:198.381300px;}
.y71{bottom:201.906600px;}
.y9{bottom:202.146300px;}
.yc0{bottom:206.170200px;}
.ycc{bottom:206.405850px;}
.y10c{bottom:207.663300px;}
.y1be{bottom:209.080050px;}
.y17c{bottom:209.481300px;}
.y8{bottom:215.646300px;}
.y141{bottom:215.736300px;}
.y70{bottom:216.160350px;}
.y1dc{bottom:217.685400px;}
.yd2{bottom:220.067850px;}
.ybf{bottom:222.649350px;}
.y17b{bottom:223.197300px;}
.y10b{bottom:225.078300px;}
.y1bd{bottom:227.212050px;}
.y140{bottom:233.091300px;}
.ybe{bottom:239.255850px;}
.y6f{bottom:240.842850px;}
.y1bc{bottom:240.844050px;}
.y17a{bottom:241.401300px;}
.y10a{bottom:242.493300px;}
.y13f{bottom:250.446300px;}
.y1bb{bottom:254.476050px;}
.y179{bottom:255.117300px;}
.ybd{bottom:255.730350px;}
.yc4{bottom:257.165850px;}
.y109{bottom:259.908300px;}
.y6e{bottom:265.525350px;}
.ycd{bottom:268.334850px;}
.y178{bottom:268.833300px;}
.y43{bottom:271.272450px;}
.y32{bottom:271.316400px;}
.ybc{bottom:272.222850px;}
.y1ba{bottom:272.608050px;}
.y13e{bottom:276.305400px;}
.y107{bottom:277.323300px;}
.y108{bottom:282.318300px;}
.yd0{bottom:282.806850px;}
.y1b9{bottom:286.240050px;}
.y177{bottom:287.037300px;}
.y31{bottom:288.656400px;}
.ybb{bottom:288.709350px;}
.y42{bottom:289.167450px;}
.y6d{bottom:290.207850px;}
.y13d{bottom:293.660250px;}
.y106{bottom:294.738300px;}
.y176{bottom:300.753300px;}
.y1b8{bottom:304.372050px;}
.yba{bottom:305.309850px;}
.y30{bottom:305.996400px;}
.y41{bottom:307.062450px;}
.y105{bottom:312.153300px;}
.y175{bottom:314.469300px;}
.y6c{bottom:314.890350px;}
.y13c{bottom:315.261300px;}
.y1b7{bottom:318.004050px;}
.yb9{bottom:321.794700px;}
.y2f{bottom:323.336400px;}
.y40{bottom:324.957450px;}
.y104{bottom:329.568300px;}
.y1b6{bottom:331.636050px;}
.y174{bottom:332.673300px;}
.y13b{bottom:336.267300px;}
.yb8{bottom:338.281350px;}
.y6b{bottom:339.572850px;}
.y2e{bottom:340.676400px;}
.ycb{bottom:340.901850px;}
.y3f{bottom:342.852450px;}
.y173{bottom:346.389300px;}
.y103{bottom:346.983300px;}
.y1b5{bottom:349.768050px;}
.yb7{bottom:354.760200px;}
.y2d{bottom:358.016400px;}
.y172{bottom:360.105300px;}
.y3e{bottom:360.747450px;}
.y1b4{bottom:363.400050px;}
.y6a{bottom:364.255350px;}
.y102{bottom:364.398300px;}
.yb6{bottom:371.248350px;}
.yce{bottom:371.600850px;}
.y171{bottom:373.821300px;}
.y2c{bottom:375.356400px;}
.y3d{bottom:378.642450px;}
.y1b3{bottom:381.532050px;}
.y101{bottom:381.813300px;}
.ycf{bottom:383.957850px;}
.yb5{bottom:387.841350px;}
.y69{bottom:388.937850px;}
.y13a{bottom:390.956250px;}
.y170{bottom:392.025300px;}
.y2b{bottom:392.696400px;}
.y1b2{bottom:395.164050px;}
.y3c{bottom:396.537450px;}
.y100{bottom:399.228300px;}
.yb4{bottom:404.333700px;}
.y16f{bottom:405.741300px;}
.y139{bottom:408.311250px;}
.y2a{bottom:410.036400px;}
.y1b1{bottom:413.296050px;}
.y68{bottom:413.620350px;}
.y3b{bottom:414.432450px;}
.yff{bottom:416.643300px;}
.y16e{bottom:419.457300px;}
.yb3{bottom:420.813750px;}
.yc5{bottom:423.440850px;}
.y137{bottom:425.666250px;}
.y1b0{bottom:426.928050px;}
.y29{bottom:427.376400px;}
.y138{bottom:430.661250px;}
.y3a{bottom:432.327450px;}
.y16d{bottom:433.173300px;}
.yfe{bottom:434.058300px;}
.yb2{bottom:437.293050px;}
.yd1{bottom:437.651850px;}
.y67{bottom:438.302850px;}
.y28{bottom:444.716400px;}
.y1af{bottom:445.060050px;}
.yfd{bottom:446.478300px;}
.y16c{bottom:446.889300px;}
.y39{bottom:450.222450px;}
.yfc{bottom:451.473300px;}
.y136{bottom:451.525050px;}
.yb1{bottom:453.900150px;}
.y1ae{bottom:458.692050px;}
.y27{bottom:462.056400px;}
.y66{bottom:462.985350px;}
.y16b{bottom:465.093300px;}
.yca{bottom:468.260850px;}
.y135{bottom:468.880050px;}
.yfb{bottom:468.888300px;}
.yb0{bottom:470.379600px;}
.y1ad{bottom:472.324050px;}
.y38{bottom:476.621400px;}
.y16a{bottom:478.809300px;}
.y26{bottom:479.396400px;}
.y134{bottom:486.235050px;}
.yfa{bottom:486.303300px;}
.yaf{bottom:486.865650px;}
.y65{bottom:487.656600px;}
.y1ac{bottom:490.456050px;}
.y169{bottom:492.525300px;}
.y37{bottom:494.516400px;}
.y25{bottom:496.736400px;}
.y64{bottom:501.910350px;}
.yae{bottom:503.352300px;}
.y133{bottom:503.590050px;}
.yf9{bottom:503.718300px;}
.y1ab{bottom:504.088050px;}
.y168{bottom:506.241300px;}
.yc9{bottom:510.965850px;}
.y36{bottom:512.411400px;}
.y24{bottom:514.076400px;}
.yd3{bottom:515.445600px;}
.y1aa{bottom:517.720050px;}
.yad{bottom:519.952050px;}
.y167{bottom:519.957300px;}
.y132{bottom:520.945200px;}
.yf8{bottom:521.133300px;}
.yc8{bottom:525.266850px;}
.y63{bottom:526.592850px;}
.y35{bottom:530.306400px;}
.y1a9{bottom:531.352050px;}
.y23{bottom:531.416400px;}
.y166{bottom:533.673300px;}
.yac{bottom:536.432400px;}
.y131{bottom:538.300050px;}
.yc7{bottom:539.630850px;}
.yf7{bottom:547.052250px;}
.y33{bottom:548.201400px;}
.y22{bottom:548.756400px;}
.y1a8{bottom:549.484050px;}
.y62{bottom:551.522850px;}
.yc6{bottom:551.996850px;}
.yab{bottom:552.924900px;}
.y34{bottom:553.196400px;}
.y130{bottom:555.655050px;}
.y165{bottom:561.633300px;}
.y1a7{bottom:563.116050px;}
.yf6{bottom:564.467250px;}
.y21{bottom:566.096400px;}
.y12f{bottom:573.010050px;}
.y164{bottom:575.349300px;}
.y1a6{bottom:576.748050px;}
.y61{bottom:579.080100px;}
.yf5{bottom:581.882250px;}
.y12e{bottom:590.365200px;}
.y60{bottom:594.080100px;}
.y1a5{bottom:594.880050px;}
.y163{bottom:598.809300px;}
.yf4{bottom:599.297250px;}
.y12d{bottom:607.720200px;}
.y1a4{bottom:608.512050px;}
.y5f{bottom:609.084000px;}
.y91{bottom:610.921200px;}
.yaa{bottom:611.087250px;}
.y162{bottom:612.525300px;}
.yf3{bottom:616.712250px;}
.y1a3{bottom:622.144050px;}
.y12c{bottom:625.075200px;}
.y161{bottom:626.241300px;}
.y90{bottom:628.216200px;}
.ya9{bottom:628.727250px;}
.y5e{bottom:632.832000px;}
.yf2{bottom:634.127250px;}
.y1a2{bottom:635.776050px;}
.y20{bottom:635.899650px;}
.y160{bottom:639.957300px;}
.y12b{bottom:642.430050px;}
.y8f{bottom:645.511200px;}
.ya8{bottom:646.367250px;}
.yf1{bottom:651.542250px;}
.y15f{bottom:653.673300px;}
.y1f{bottom:653.904150px;}
.y1a1{bottom:653.908050px;}
.y12a{bottom:659.785200px;}
.y8e{bottom:662.806200px;}
.ya7{bottom:664.007250px;}
.y1a0{bottom:667.540050px;}
.yf0{bottom:668.957250px;}
.y1e{bottom:671.899650px;}
.y129{bottom:677.140200px;}
.y8d{bottom:680.101200px;}
.y19f{bottom:681.172050px;}
.ya6{bottom:681.647250px;}
.yef{bottom:686.372250px;}
.y5a{bottom:689.837250px;}
.y1d{bottom:689.904150px;}
.y128{bottom:694.495200px;}
.y8c{bottom:697.396200px;}
.ya5{bottom:699.287250px;}
.y19e{bottom:699.304050px;}
.y15e{bottom:702.887250px;}
.yee{bottom:703.787250px;}
.y59{bottom:707.087250px;}
.y1c{bottom:707.899650px;}
.y127{bottom:711.850200px;}
.y19d{bottom:712.936050px;}
.y8b{bottom:714.691200px;}
.ya4{bottom:716.927250px;}
.y15d{bottom:720.347250px;}
.yed{bottom:721.202250px;}
.y58{bottom:724.337250px;}
.y1b{bottom:725.904150px;}
.y126{bottom:729.205050px;}
.y19c{bottom:731.068050px;}
.y8a{bottom:731.986200px;}
.ya3{bottom:734.567250px;}
.y15b{bottom:737.807250px;}
.yec{bottom:738.617250px;}
.y57{bottom:741.587250px;}
.y15c{bottom:742.802250px;}
.y1a{bottom:743.899650px;}
.y19b{bottom:744.700050px;}
.y125{bottom:746.560200px;}
.y89{bottom:749.281200px;}
.yeb{bottom:756.032250px;}
.y56{bottom:758.837250px;}
.ya2{bottom:760.711200px;}
.y19{bottom:761.913150px;}
.y19a{bottom:762.832050px;}
.y15a{bottom:763.771200px;}
.y124{bottom:763.915050px;}
.y88{bottom:766.576200px;}
.yea{bottom:773.447250px;}
.y55{bottom:776.087250px;}
.y199{bottom:776.464050px;}
.ya1{bottom:778.351200px;}
.y18{bottom:779.908650px;}
.y159{bottom:781.231200px;}
.y123{bottom:781.270050px;}
.y87{bottom:783.871200px;}
.y198{bottom:790.096050px;}
.y54{bottom:793.337250px;}
.ya0{bottom:795.991200px;}
.y17{bottom:797.904150px;}
.y122{bottom:798.625050px;}
.y158{bottom:798.691200px;}
.ye9{bottom:799.366200px;}
.y86{bottom:801.166200px;}
.y197{bottom:808.228050px;}
.y53{bottom:810.587250px;}
.y9f{bottom:813.631200px;}
.y16{bottom:815.899650px;}
.y121{bottom:815.980200px;}
.y157{bottom:816.151200px;}
.ye7{bottom:816.781200px;}
.y85{bottom:818.461200px;}
.ye8{bottom:821.776200px;}
.y196{bottom:821.860050px;}
.y52{bottom:827.837250px;}
.y9e{bottom:831.271200px;}
.y120{bottom:833.335200px;}
.y156{bottom:833.611200px;}
.y15{bottom:833.895150px;}
.ye6{bottom:834.196200px;}
.y195{bottom:835.492050px;}
.y84{bottom:835.756200px;}
.y51{bottom:845.087250px;}
.y9d{bottom:848.911200px;}
.y11f{bottom:850.690200px;}
.y155{bottom:851.071200px;}
.ye5{bottom:851.611200px;}
.y83{bottom:853.051200px;}
.y194{bottom:853.624050px;}
.y14{bottom:856.147200px;}
.y50{bottom:862.337250px;}
.y9c{bottom:866.551200px;}
.y193{bottom:867.256050px;}
.y11e{bottom:868.045200px;}
.y154{bottom:868.531200px;}
.ye4{bottom:869.026200px;}
.y82{bottom:870.346200px;}
.y4f{bottom:879.587250px;}
.y192{bottom:880.888050px;}
.y9b{bottom:884.191200px;}
.y11d{bottom:885.400050px;}
.y153{bottom:885.991200px;}
.ye3{bottom:886.441200px;}
.y81{bottom:887.641200px;}
.y4e{bottom:896.837250px;}
.y191{bottom:899.020050px;}
.y9a{bottom:901.831200px;}
.y11c{bottom:902.755050px;}
.y152{bottom:903.451200px;}
.ye2{bottom:903.856200px;}
.y80{bottom:904.936200px;}
.y190{bottom:912.652050px;}
.y1d2{bottom:913.996050px;}
.y4d{bottom:914.087250px;}
.y1db{bottom:914.176050px;}
.y99{bottom:919.471200px;}
.y11b{bottom:920.110200px;}
.y151{bottom:920.911200px;}
.ye1{bottom:921.271200px;}
.y7f{bottom:922.231200px;}
.y18f{bottom:926.284050px;}
.y1d1{bottom:927.496050px;}
.y4{bottom:929.096400px;}
.y1da{bottom:929.656050px;}
.y4c{bottom:931.337250px;}
.y98{bottom:937.111200px;}
.y11a{bottom:937.465200px;}
.y150{bottom:938.371200px;}
.ye0{bottom:938.686200px;}
.y7e{bottom:939.526200px;}
.y18e{bottom:944.313300px;}
.y1d9{bottom:945.136050px;}
.y1d0{bottom:945.496050px;}
.y4b{bottom:948.587250px;}
.y97{bottom:954.751200px;}
.y119{bottom:954.820200px;}
.y14f{bottom:955.831200px;}
.ydf{bottom:956.101200px;}
.y7d{bottom:956.821200px;}
.y18d{bottom:957.945300px;}
.y1cf{bottom:958.996050px;}
.y1d8{bottom:960.616050px;}
.y4a{bottom:965.837250px;}
.y3{bottom:969.584400px;}
.y18c{bottom:971.577300px;}
.y96{bottom:972.391200px;}
.y1ce{bottom:972.496050px;}
.y14e{bottom:973.291200px;}
.yde{bottom:973.516200px;}
.y7c{bottom:974.116200px;}
.y1d7{bottom:980.596050px;}
.y118{bottom:980.679000px;}
.y49{bottom:983.087250px;}
.y18b{bottom:989.709300px;}
.y95{bottom:990.031200px;}
.y1cd{bottom:990.496050px;}
.y14d{bottom:990.751200px;}
.ydd{bottom:990.931200px;}
.y7b{bottom:991.411200px;}
.y1d6{bottom:996.076050px;}
.y117{bottom:998.034000px;}
.y2{bottom:998.096400px;}
.y48{bottom:1000.337250px;}
.y18a{bottom:1003.341300px;}
.y1cc{bottom:1003.996050px;}
.y94{bottom:1007.671200px;}
.y14c{bottom:1008.211200px;}
.ydc{bottom:1008.346200px;}
.y7a{bottom:1008.706200px;}
.y1d5{bottom:1011.556050px;}
.y116{bottom:1015.389000px;}
.y189{bottom:1016.973300px;}
.y1cb{bottom:1017.496050px;}
.y47{bottom:1017.586200px;}
.y5d{bottom:1017.587250px;}
.y93{bottom:1025.311200px;}
.y14b{bottom:1025.671200px;}
.ydb{bottom:1025.761200px;}
.y79{bottom:1026.001200px;}
.y1d4{bottom:1031.536050px;}
.y188{bottom:1035.105300px;}
.y1ca{bottom:1035.496050px;}
.y115{bottom:1036.990050px;}
.y92{bottom:1042.951200px;}
.y14a{bottom:1043.131200px;}
.yd9{bottom:1043.176200px;}
.y78{bottom:1043.296200px;}
.y46{bottom:1043.341200px;}
.y5c{bottom:1043.342250px;}
.y1d3{bottom:1047.016050px;}
.yda{bottom:1048.171200px;}
.y187{bottom:1048.737300px;}
.y1c9{bottom:1048.996050px;}
.y114{bottom:1057.996050px;}
.y45{bottom:1060.591200px;}
.y5b{bottom:1060.592250px;}
.y186{bottom:1062.369300px;}
.y1c8{bottom:1062.496050px;}
.y7{bottom:1081.562850px;}
.y6{bottom:1099.310850px;}
.y5{bottom:1117.062900px;}
.y44{bottom:1117.771650px;}
.hf{height:24.940740px;}
.h7{height:26.640000px;}
.h1b{height:26.913600px;}
.h1c{height:28.836000px;}
.h13{height:31.635000px;}
.h14{height:32.085000px;}
.h21{height:33.168000px;}
.h1e{height:33.600000px;}
.h2{height:35.520000px;}
.h1f{height:35.931000px;}
.h12{height:36.676560px;}
.h6{height:36.692160px;}
.h1a{height:38.448000px;}
.h8{height:38.760000px;}
.ha{height:39.960000px;}
.hb{height:41.206680px;}
.hc{height:41.242680px;}
.hd{height:41.260680px;}
.h9{height:41.278680px;}
.h20{height:41.460000px;}
.he{height:42.780000px;}
.h5{height:43.533000px;}
.h4{height:44.400000px;}
.h18{height:44.879400px;}
.h17{height:44.880000px;}
.h16{height:44.913000px;}
.h15{height:44.913600px;}
.h10{height:44.920740px;}
.h11{height:44.924940px;}
.h1d{height:49.752000px;}
.h3{height:75.600000px;}
.h19{height:380.823000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:583.893000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x4a{left:74.403450px;}
.xa{left:77.781000px;}
.x6{left:86.539350px;}
.x3a{left:91.942800px;}
.x33{left:104.031000px;}
.x34{left:110.006400px;}
.x35{left:115.420050px;}
.x23{left:154.510500px;}
.x3b{left:173.282100px;}
.x36{left:177.212700px;}
.x37{left:182.545050px;}
.x31{left:184.140150px;}
.x3c{left:187.590900px;}
.x4d{left:196.707000px;}
.x32{left:198.699150px;}
.x44{left:202.595250px;}
.x45{left:207.934650px;}
.x3d{left:212.317200px;}
.x30{left:218.358150px;}
.x4e{left:220.395000px;}
.xb{left:229.689750px;}
.x2c{left:235.530150px;}
.x2d{left:239.193150px;}
.x2f{left:240.768150px;}
.x13{left:249.377250px;}
.x38{left:251.508900px;}
.x2e{left:252.819150px;}
.x39{left:256.841250px;}
.x22{left:267.184200px;}
.x2b{left:268.326150px;}
.x21{left:278.983500px;}
.x1a{left:285.012900px;}
.x1d{left:289.867350px;}
.x46{left:300.904950px;}
.x4{left:304.735200px;}
.x47{left:306.244500px;}
.x24{left:310.423650px;}
.x1b{left:313.057650px;}
.x2a{left:324.801150px;}
.x1c{left:330.612150px;}
.x27{left:333.711150px;}
.x29{left:338.346150px;}
.x28{left:343.800150px;}
.x1e{left:347.259150px;}
.x16{left:352.902150px;}
.x3{left:355.756650px;}
.x1f{left:358.263150px;}
.x15{left:361.155150px;}
.x19{left:362.463150px;}
.x14{left:365.734650px;}
.x11{left:370.506000px;}
.x5{left:374.023200px;}
.x18{left:380.679150px;}
.x17{left:400.077150px;}
.x48{left:413.463000px;}
.x49{left:418.802400px;}
.x20{left:429.030150px;}
.x1{left:436.880700px;}
.x12{left:451.607250px;}
.x7{left:465.591450px;}
.x4b{left:471.939450px;}
.xc{left:476.346000px;}
.x4c{left:489.267450px;}
.x26{left:518.805150px;}
.xd{left:551.664750px;}
.x3e{left:599.153100px;}
.x3f{left:604.453350px;}
.xe{left:659.091000px;}
.x25{left:668.763000px;}
.x40{left:699.396000px;}
.x41{left:704.696250px;}
.xf{left:755.109750px;}
.x10{left:758.934750px;}
.x8{left:792.281100px;}
.x9{left:797.704800px;}
.x42{left:811.123950px;}
.x43{left:816.424200px;}
@media print{
.v5{vertical-align:-17.760000pt;}
.v3{vertical-align:-16.016000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.208000pt;}
.v2{vertical-align:15.984000pt;}
.v4{vertical-align:17.760000pt;}
.ls17{letter-spacing:-4.880000pt;}
.ls58{letter-spacing:-3.925333pt;}
.ls5b{letter-spacing:-2.901333pt;}
.ls55{letter-spacing:-2.346667pt;}
.ls5c{letter-spacing:-2.304000pt;}
.ls68{letter-spacing:-2.048000pt;}
.ls54{letter-spacing:-1.962667pt;}
.ls5a{letter-spacing:-1.450667pt;}
.ls2b{letter-spacing:-1.440000pt;}
.ls27{letter-spacing:-1.386667pt;}
.ls2a{letter-spacing:-1.333333pt;}
.ls2c{letter-spacing:-1.280000pt;}
.ls59{letter-spacing:-1.024000pt;}
.ls52{letter-spacing:-0.981333pt;}
.ls1f{letter-spacing:-0.906667pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls5e{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.760000pt;}
.ls12{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.560000pt;}
.ls57{letter-spacing:-0.554667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls56{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.466400pt;}
.ls5d{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls5f{letter-spacing:-0.298667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls53{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000133pt;}
.ls1d{letter-spacing:0.004267pt;}
.ls14{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.120000pt;}
.ls3{letter-spacing:0.155021pt;}
.ls26{letter-spacing:0.155461pt;}
.ls2f{letter-spacing:0.155467pt;}
.ls4{letter-spacing:0.155544pt;}
.ls2e{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.325813pt;}
.ls10{letter-spacing:0.325998pt;}
.lsc{letter-spacing:0.326002pt;}
.lsf{letter-spacing:0.326347pt;}
.ls25{letter-spacing:0.466400pt;}
.ls22{letter-spacing:0.466667pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.560000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.725333pt;}
.ls37{letter-spacing:0.729600pt;}
.ls21{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.805333pt;}
.ls32{letter-spacing:0.853333pt;}
.ls24{letter-spacing:0.917333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls36{letter-spacing:1.450667pt;}
.ls3e{letter-spacing:2.090667pt;}
.ls45{letter-spacing:2.389333pt;}
.ls4d{letter-spacing:2.432000pt;}
.ls4c{letter-spacing:2.773333pt;}
.ls35{letter-spacing:3.242667pt;}
.ls3a{letter-spacing:3.456000pt;}
.ls3b{letter-spacing:3.498667pt;}
.ls46{letter-spacing:3.541333pt;}
.ls50{letter-spacing:3.712000pt;}
.ls51{letter-spacing:3.716267pt;}
.ls65{letter-spacing:4.868267pt;}
.ls34{letter-spacing:5.120000pt;}
.ls67{letter-spacing:5.802667pt;}
.ls3c{letter-spacing:5.845333pt;}
.ls3f{letter-spacing:5.973333pt;}
.ls40{letter-spacing:5.977600pt;}
.ls33{letter-spacing:6.058667pt;}
.ls60{letter-spacing:6.144000pt;}
.ls61{letter-spacing:6.186667pt;}
.ls62{letter-spacing:6.190933pt;}
.ls3d{letter-spacing:6.357333pt;}
.ls4a{letter-spacing:6.528000pt;}
.ls49{letter-spacing:6.570667pt;}
.ls44{letter-spacing:6.954667pt;}
.ls41{letter-spacing:7.125333pt;}
.ls47{letter-spacing:8.362667pt;}
.ls42{letter-spacing:8.917333pt;}
.ls43{letter-spacing:8.921600pt;}
.ls64{letter-spacing:10.197333pt;}
.ls31{letter-spacing:10.538667pt;}
.ls30{letter-spacing:10.542933pt;}
.ls48{letter-spacing:11.392000pt;}
.ls4f{letter-spacing:11.776000pt;}
.ls4b{letter-spacing:12.288000pt;}
.ls63{letter-spacing:12.373333pt;}
.ls39{letter-spacing:16.298667pt;}
.ls66{letter-spacing:18.048000pt;}
.ls4e{letter-spacing:19.797333pt;}
.ws98{word-spacing:-15.296000pt;}
.wsb8{word-spacing:-12.906667pt;}
.ws3f{word-spacing:-12.693333pt;}
.ws3d{word-spacing:-12.666667pt;}
.ws76{word-spacing:-12.640000pt;}
.wsda{word-spacing:-12.373333pt;}
.ws72{word-spacing:-12.288000pt;}
.ws3e{word-spacing:-12.266667pt;}
.ws3c{word-spacing:-12.213333pt;}
.ws9{word-spacing:-12.106667pt;}
.ws6e{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.957333pt;}
.ws3b{word-spacing:-11.893333pt;}
.ws99{word-spacing:-11.840000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.626667pt;}
.ws70{word-spacing:-11.562667pt;}
.ws8{word-spacing:-11.466667pt;}
.ws4{word-spacing:-11.328000pt;}
.ws6f{word-spacing:-11.306667pt;}
.wsc7{word-spacing:-11.093333pt;}
.wsca{word-spacing:-10.922667pt;}
.ws97{word-spacing:-10.880000pt;}
.ws96{word-spacing:-10.826667pt;}
.wsc9{word-spacing:-10.752000pt;}
.wsab{word-spacing:-10.666667pt;}
.wsf{word-spacing:-10.496000pt;}
.wse9{word-spacing:-10.368000pt;}
.ws1{word-spacing:-10.240000pt;}
.ws74{word-spacing:-10.069333pt;}
.ws11b{word-spacing:-9.941333pt;}
.wsce{word-spacing:-9.898667pt;}
.wsad{word-spacing:-9.866667pt;}
.wsd5{word-spacing:-9.813333pt;}
.wscc{word-spacing:-9.728000pt;}
.wscd{word-spacing:-9.685333pt;}
.wsd8{word-spacing:-9.600000pt;}
.wse1{word-spacing:-9.514667pt;}
.wsd6{word-spacing:-9.386667pt;}
.wsff{word-spacing:-9.216000pt;}
.ws44{word-spacing:-9.080000pt;}
.wscf{word-spacing:-8.960000pt;}
.ws100{word-spacing:-8.789333pt;}
.ws73{word-spacing:-8.601600pt;}
.ws6b{word-spacing:-8.600000pt;}
.ws6c{word-spacing:-8.440000pt;}
.wsc8{word-spacing:-8.277333pt;}
.ws12f{word-spacing:-8.192000pt;}
.ws71{word-spacing:-8.093867pt;}
.wsd2{word-spacing:-7.936000pt;}
.wscb{word-spacing:-7.893333pt;}
.ws106{word-spacing:-7.338667pt;}
.wsa{word-spacing:-7.058187pt;}
.ws3{word-spacing:-6.884064pt;}
.wsf2{word-spacing:-6.314667pt;}
.ws0{word-spacing:-6.119168pt;}
.wsb7{word-spacing:-6.026667pt;}
.wsa5{word-spacing:-5.752267pt;}
.ws17{word-spacing:-5.708736pt;}
.wsa0{word-spacing:-4.586667pt;}
.wsd0{word-spacing:-4.394667pt;}
.wsd3{word-spacing:-4.275200pt;}
.wsd4{word-spacing:-4.249600pt;}
.wsd1{word-spacing:-3.904000pt;}
.ws84{word-spacing:-3.573333pt;}
.ws12d{word-spacing:-3.285333pt;}
.wsdd{word-spacing:-3.253333pt;}
.ws122{word-spacing:-3.200000pt;}
.ws12e{word-spacing:-3.157333pt;}
.ws52{word-spacing:-3.146667pt;}
.ws53{word-spacing:-2.613333pt;}
.ws54{word-spacing:-2.560000pt;}
.ws51{word-spacing:-2.506667pt;}
.ws25{word-spacing:-2.453333pt;}
.ws75{word-spacing:-2.400000pt;}
.ws115{word-spacing:-2.346667pt;}
.ws9c{word-spacing:-2.293333pt;}
.ws4f{word-spacing:-2.240000pt;}
.ws9d{word-spacing:-2.133333pt;}
.ws69{word-spacing:-2.048000pt;}
.ws8f{word-spacing:-2.026667pt;}
.wsb1{word-spacing:-1.920000pt;}
.ws82{word-spacing:-1.866667pt;}
.ws92{word-spacing:-1.813333pt;}
.ws39{word-spacing:-1.760000pt;}
.ws134{word-spacing:-1.749333pt;}
.wsa2{word-spacing:-1.706667pt;}
.wsfd{word-spacing:-1.664000pt;}
.ws22{word-spacing:-1.653333pt;}
.wsfe{word-spacing:-1.621333pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.536000pt;}
.ws6a{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.488000pt;}
.ws68{word-spacing:-1.408000pt;}
.ws8a{word-spacing:-1.386667pt;}
.ws1a{word-spacing:-1.344000pt;}
.ws86{word-spacing:-1.333333pt;}
.ws1d{word-spacing:-1.280000pt;}
.ws10f{word-spacing:-1.194667pt;}
.ws28{word-spacing:-1.173333pt;}
.wsf3{word-spacing:-1.152000pt;}
.wsf4{word-spacing:-1.109333pt;}
.ws64{word-spacing:-1.066667pt;}
.ws116{word-spacing:-1.024000pt;}
.ws117{word-spacing:-0.981333pt;}
.ws11e{word-spacing:-0.938667pt;}
.ws94{word-spacing:-0.896000pt;}
.wsea{word-spacing:-0.853333pt;}
.ws105{word-spacing:-0.810667pt;}
.ws1e{word-spacing:-0.800000pt;}
.ws1f{word-spacing:-0.746667pt;}
.ws57{word-spacing:-0.640000pt;}
.ws9e{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.576000pt;}
.ws7a{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.480000pt;}
.ws13a{word-spacing:-0.426667pt;}
.ws9f{word-spacing:-0.373333pt;}
.wsf7{word-spacing:-0.341333pt;}
.ws7b{word-spacing:-0.320000pt;}
.wsf8{word-spacing:-0.298667pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws10c{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.240000pt;}
.ws85{word-spacing:-0.160000pt;}
.ws124{word-spacing:-0.128000pt;}
.ws87{word-spacing:-0.106667pt;}
.ws6d{word-spacing:-0.080000pt;}
.wsb{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.053333pt;}
.wseb{word-spacing:0.128000pt;}
.ws65{word-spacing:0.160000pt;}
.ws36{word-spacing:0.213333pt;}
.ws83{word-spacing:0.266667pt;}
.ws10{word-spacing:0.288000pt;}
.wsf1{word-spacing:0.298667pt;}
.wsf0{word-spacing:0.341333pt;}
.ws29{word-spacing:0.373333pt;}
.ws88{word-spacing:0.426667pt;}
.wsf9{word-spacing:0.469333pt;}
.wsfa{word-spacing:0.512000pt;}
.wsb0{word-spacing:0.533333pt;}
.ws24{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.746667pt;}
.ws37{word-spacing:0.800000pt;}
.wsd7{word-spacing:0.836267pt;}
.ws4e{word-spacing:0.853333pt;}
.wsc{word-spacing:0.896000pt;}
.wse2{word-spacing:0.981333pt;}
.wsa1{word-spacing:1.013333pt;}
.wsd{word-spacing:1.109333pt;}
.ws23{word-spacing:1.120000pt;}
.wse{word-spacing:1.152000pt;}
.ws3a{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.226667pt;}
.ws77{word-spacing:1.333333pt;}
.ws31{word-spacing:1.386667pt;}
.wsf5{word-spacing:1.408000pt;}
.wsf6{word-spacing:1.450667pt;}
.ws7f{word-spacing:1.493333pt;}
.ws95{word-spacing:1.536000pt;}
.wsa3{word-spacing:1.600000pt;}
.ws50{word-spacing:1.653333pt;}
.ws11d{word-spacing:1.664000pt;}
.wsa4{word-spacing:1.813333pt;}
.ws33{word-spacing:1.866667pt;}
.ws136{word-spacing:1.920000pt;}
.ws107{word-spacing:2.005333pt;}
.wsac{word-spacing:2.026667pt;}
.ws11{word-spacing:2.064000pt;}
.ws81{word-spacing:2.133333pt;}
.wsbd{word-spacing:2.186667pt;}
.ws127{word-spacing:2.218667pt;}
.ws2e{word-spacing:2.240000pt;}
.ws21{word-spacing:2.293333pt;}
.ws110{word-spacing:2.304000pt;}
.ws20{word-spacing:2.346667pt;}
.ws111{word-spacing:2.389333pt;}
.ws104{word-spacing:2.432000pt;}
.ws2c{word-spacing:2.453333pt;}
.ws128{word-spacing:2.474667pt;}
.ws103{word-spacing:2.560000pt;}
.ws11a{word-spacing:2.645333pt;}
.ws62{word-spacing:2.666667pt;}
.ws126{word-spacing:2.688000pt;}
.ws119{word-spacing:2.730667pt;}
.ws13{word-spacing:2.784000pt;}
.ws138{word-spacing:2.816000pt;}
.ws108{word-spacing:2.858667pt;}
.wsb5{word-spacing:2.880000pt;}
.wsbe{word-spacing:2.986667pt;}
.ws63{word-spacing:3.040000pt;}
.wsb6{word-spacing:3.093333pt;}
.ws16{word-spacing:3.120000pt;}
.ws59{word-spacing:3.146667pt;}
.ws61{word-spacing:3.306667pt;}
.wsfb{word-spacing:3.328000pt;}
.ws112{word-spacing:3.413333pt;}
.ws66{word-spacing:3.466667pt;}
.wsfc{word-spacing:3.498667pt;}
.ws123{word-spacing:3.541333pt;}
.ws2a{word-spacing:3.573333pt;}
.wsbf{word-spacing:3.626667pt;}
.ws2f{word-spacing:3.680000pt;}
.wse0{word-spacing:3.712000pt;}
.ws2b{word-spacing:3.786667pt;}
.ws8b{word-spacing:3.840000pt;}
.ws5f{word-spacing:3.893333pt;}
.ws26{word-spacing:3.946667pt;}
.ws2d{word-spacing:4.000000pt;}
.wsae{word-spacing:4.053333pt;}
.wsdc{word-spacing:4.160000pt;}
.ws30{word-spacing:4.213333pt;}
.wsdf{word-spacing:4.394667pt;}
.ws32{word-spacing:4.480000pt;}
.ws89{word-spacing:4.533333pt;}
.ws7d{word-spacing:4.640000pt;}
.wsaf{word-spacing:4.746667pt;}
.ws67{word-spacing:4.778667pt;}
.ws135{word-spacing:4.864000pt;}
.ws93{word-spacing:4.992000pt;}
.ws8d{word-spacing:5.013333pt;}
.ws27{word-spacing:5.120000pt;}
.ws125{word-spacing:5.162667pt;}
.ws78{word-spacing:5.173333pt;}
.wsbc{word-spacing:5.226667pt;}
.ws38{word-spacing:5.333333pt;}
.ws101{word-spacing:5.461333pt;}
.wsc3{word-spacing:5.493333pt;}
.ws109{word-spacing:5.504000pt;}
.ws8c{word-spacing:5.706667pt;}
.ws102{word-spacing:5.717333pt;}
.ws34{word-spacing:5.813333pt;}
.ws1c{word-spacing:5.904000pt;}
.ws12c{word-spacing:5.973333pt;}
.ws1b{word-spacing:6.144000pt;}
.ws130{word-spacing:6.186667pt;}
.ws12b{word-spacing:6.229333pt;}
.ws55{word-spacing:6.506667pt;}
.wsc6{word-spacing:6.560000pt;}
.ws11f{word-spacing:6.570667pt;}
.ws80{word-spacing:6.613333pt;}
.ws4d{word-spacing:6.720000pt;}
.ws10d{word-spacing:6.954667pt;}
.ws56{word-spacing:6.986667pt;}
.ws7c{word-spacing:7.093333pt;}
.ws10a{word-spacing:7.125333pt;}
.ws7e{word-spacing:7.146667pt;}
.ws10e{word-spacing:7.808000pt;}
.wsb9{word-spacing:8.000000pt;}
.wsa7{word-spacing:8.053333pt;}
.wsd9{word-spacing:8.106667pt;}
.ws118{word-spacing:8.362667pt;}
.ws120{word-spacing:8.746667pt;}
.ws10b{word-spacing:8.917333pt;}
.wsde{word-spacing:9.216000pt;}
.wsb3{word-spacing:9.226667pt;}
.ws5e{word-spacing:9.493333pt;}
.wse6{word-spacing:9.557333pt;}
.wsc5{word-spacing:9.600000pt;}
.wsb2{word-spacing:9.653333pt;}
.ws60{word-spacing:9.706667pt;}
.wse5{word-spacing:9.813333pt;}
.wse3{word-spacing:10.112000pt;}
.ws133{word-spacing:10.197333pt;}
.wse4{word-spacing:10.240000pt;}
.wsba{word-spacing:10.293333pt;}
.ws113{word-spacing:10.624000pt;}
.wsc2{word-spacing:10.826667pt;}
.wsaa{word-spacing:10.986667pt;}
.ws91{word-spacing:11.040000pt;}
.ws114{word-spacing:11.050667pt;}
.ws11c{word-spacing:11.392000pt;}
.ws12a{word-spacing:11.520000pt;}
.wsc4{word-spacing:11.573333pt;}
.wsa8{word-spacing:11.786667pt;}
.ws139{word-spacing:11.861333pt;}
.ws35{word-spacing:12.000000pt;}
.ws121{word-spacing:12.288000pt;}
.ws131{word-spacing:12.373333pt;}
.wsa9{word-spacing:12.426667pt;}
.ws9b{word-spacing:12.480000pt;}
.ws79{word-spacing:12.586667pt;}
.wsec{word-spacing:13.269333pt;}
.ws90{word-spacing:13.546667pt;}
.wsed{word-spacing:13.824000pt;}
.wse8{word-spacing:14.165333pt;}
.ws5d{word-spacing:14.613333pt;}
.wsdb{word-spacing:14.720000pt;}
.wse7{word-spacing:14.762667pt;}
.wsc1{word-spacing:15.306667pt;}
.wsc0{word-spacing:15.360000pt;}
.ws132{word-spacing:15.658667pt;}
.ws5c{word-spacing:16.213333pt;}
.wsbb{word-spacing:16.586667pt;}
.wsef{word-spacing:16.896000pt;}
.wsee{word-spacing:17.365333pt;}
.wsb4{word-spacing:17.600000pt;}
.ws137{word-spacing:18.090667pt;}
.ws5b{word-spacing:18.720000pt;}
.ws9a{word-spacing:19.733333pt;}
.ws129{word-spacing:19.797333pt;}
.ws45{word-spacing:214.840000pt;}
.ws42{word-spacing:223.280000pt;}
.ws4a{word-spacing:249.080000pt;}
.ws46{word-spacing:250.724000pt;}
.ws43{word-spacing:265.964000pt;}
.ws47{word-spacing:292.600000pt;}
.ws40{word-spacing:304.840000pt;}
.ws41{word-spacing:335.964000pt;}
.ws49{word-spacing:507.044000pt;}
.ws48{word-spacing:524.040000pt;}
._11{margin-left:-30.734996pt;}
._13{margin-left:-28.075733pt;}
._3a{margin-left:-24.693333pt;}
._43{margin-left:-23.680000pt;}
._12{margin-left:-22.209067pt;}
._3c{margin-left:-20.182400pt;}
._3b{margin-left:-19.115733pt;}
._e{margin-left:-17.080533pt;}
._d{margin-left:-16.043733pt;}
._a{margin-left:-15.120000pt;}
._9{margin-left:-13.872000pt;}
._8{margin-left:-12.460800pt;}
._7{margin-left:-11.424000pt;}
._6{margin-left:-9.836800pt;}
._10{margin-left:-8.811733pt;}
._b{margin-left:-7.446400pt;}
._1{margin-left:-6.038400pt;}
._f{margin-left:-4.662400pt;}
._3{margin-left:-3.584000pt;}
._2{margin-left:-2.678400pt;}
._0{margin-left:-1.737600pt;}
._5{width:0.965333pt;}
._c{width:2.613333pt;}
._49{width:3.621600pt;}
._1f{width:4.516000pt;}
._1e{width:5.440000pt;}
._48{width:6.566667pt;}
._4a{width:7.822933pt;}
._4b{width:8.817067pt;}
._40{width:9.720533pt;}
._4{width:10.945067pt;}
._4c{width:11.886133pt;}
._3f{width:13.120000pt;}
._39{width:14.590933pt;}
._41{width:16.096000pt;}
._47{width:17.129600pt;}
._42{width:18.300020pt;}
._4d{width:19.214933pt;}
._46{width:20.844800pt;}
._3e{width:22.405333pt;}
._3d{width:23.416533pt;}
._45{width:28.858667pt;}
._44{width:30.565333pt;}
._4e{width:33.353600pt;}
._31{width:49.337600pt;}
._34{width:52.360000pt;}
._30{width:56.617600pt;}
._35{width:82.440000pt;}
._2a{width:100.560000pt;}
._2c{width:110.120000pt;}
._2b{width:124.760000pt;}
._32{width:138.857600pt;}
._29{width:140.075200pt;}
._2f{width:164.217600pt;}
._2e{width:192.177600pt;}
._2d{width:205.097600pt;}
._1b{width:223.394667pt;}
._1d{width:227.160000pt;}
._1a{width:245.189333pt;}
._1c{width:249.817600pt;}
._33{width:277.955200pt;}
._38{width:288.240000pt;}
._27{width:294.377600pt;}
._23{width:301.680000pt;}
._19{width:304.350667pt;}
._37{width:329.920000pt;}
._24{width:331.760000pt;}
._17{width:334.960000pt;}
._20{width:355.269867pt;}
._36{width:358.240000pt;}
._22{width:373.440000pt;}
._16{width:376.640000pt;}
._25{width:378.600000pt;}
._14{width:398.080000pt;}
._21{width:401.760000pt;}
._26{width:403.720000pt;}
._15{width:404.960000pt;}
._18{width:446.594667pt;}
._28{width:502.560000pt;}
.fs4{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fsb{font-size:29.866667pt;}
.fs9{font-size:31.093333pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.529067pt;}
.y1{bottom:23.181067pt;}
.y13{bottom:38.637200pt;}
.y149{bottom:68.352267pt;}
.y185{bottom:68.498933pt;}
.y113{bottom:68.670533pt;}
.y1c7{bottom:68.792933pt;}
.y12{bottom:71.685600pt;}
.y77{bottom:75.652533pt;}
.yd8{bottom:79.365600pt;}
.y184{bottom:80.690933pt;}
.y1c6{bottom:80.910267pt;}
.y11{bottom:83.685600pt;}
.y148{bottom:83.778933pt;}
.y112{bottom:84.150533pt;}
.y1e3{bottom:86.031467pt;}
.y76{bottom:88.322533pt;}
.yd7{bottom:92.698933pt;}
.y183{bottom:92.882933pt;}
.y1c5{bottom:93.027600pt;}
.y10{bottom:95.685600pt;}
.y147{bottom:99.205733pt;}
.y111{bottom:99.630533pt;}
.y182{bottom:105.074933pt;}
.yd6{bottom:106.032267pt;}
.yf{bottom:107.685600pt;}
.y1c4{bottom:109.144933pt;}
.y1e2{bottom:109.498133pt;}
.y75{bottom:110.252533pt;}
.y146{bottom:114.632400pt;}
.y110{bottom:115.110533pt;}
.yd5{bottom:119.365600pt;}
.ye{bottom:119.685600pt;}
.y181{bottom:121.256267pt;}
.y1c3{bottom:121.262267pt;}
.y1e1{bottom:122.831467pt;}
.y74{bottom:122.922533pt;}
.y145{bottom:130.059067pt;}
.y10f{bottom:130.590533pt;}
.yd{bottom:131.685600pt;}
.yd4{bottom:132.698933pt;}
.y1c2{bottom:133.379600pt;}
.y180{bottom:133.448267pt;}
.y1e0{bottom:136.164800pt;}
.yc{bottom:143.685600pt;}
.y73{bottom:144.862533pt;}
.y144{bottom:145.485733pt;}
.y1c1{bottom:145.496933pt;}
.y17f{bottom:145.640267pt;}
.y1df{bottom:149.498133pt;}
.y10e{bottom:153.629600pt;}
.yb{bottom:155.685600pt;}
.y72{bottom:157.532533pt;}
.y17e{bottom:157.832267pt;}
.y143{bottom:160.912267pt;}
.y1c0{bottom:161.614267pt;}
.y1de{bottom:162.831467pt;}
.yc1{bottom:166.078667pt;}
.ya{bottom:167.685600pt;}
.y10d{bottom:169.109600pt;}
.yc3{bottom:172.607733pt;}
.y1bf{bottom:173.731600pt;}
.y17d{bottom:174.013600pt;}
.y1dd{bottom:176.164800pt;}
.y142{bottom:176.338933pt;}
.y71{bottom:179.472533pt;}
.y9{bottom:179.685600pt;}
.yc0{bottom:183.262400pt;}
.ycc{bottom:183.471867pt;}
.y10c{bottom:184.589600pt;}
.y1be{bottom:185.848933pt;}
.y17c{bottom:186.205600pt;}
.y8{bottom:191.685600pt;}
.y141{bottom:191.765600pt;}
.y70{bottom:192.142533pt;}
.y1dc{bottom:193.498133pt;}
.yd2{bottom:195.615867pt;}
.ybf{bottom:197.910533pt;}
.y17b{bottom:198.397600pt;}
.y10b{bottom:200.069600pt;}
.y1bd{bottom:201.966267pt;}
.y140{bottom:207.192267pt;}
.ybe{bottom:212.671867pt;}
.y6f{bottom:214.082533pt;}
.y1bc{bottom:214.083600pt;}
.y17a{bottom:214.578933pt;}
.y10a{bottom:215.549600pt;}
.y13f{bottom:222.618933pt;}
.y1bb{bottom:226.200933pt;}
.y179{bottom:226.770933pt;}
.ybd{bottom:227.315867pt;}
.yc4{bottom:228.591867pt;}
.y109{bottom:231.029600pt;}
.y6e{bottom:236.022533pt;}
.ycd{bottom:238.519867pt;}
.y178{bottom:238.962933pt;}
.y43{bottom:241.131067pt;}
.y32{bottom:241.170133pt;}
.ybc{bottom:241.975867pt;}
.y1ba{bottom:242.318267pt;}
.y13e{bottom:245.604800pt;}
.y107{bottom:246.509600pt;}
.y108{bottom:250.949600pt;}
.yd0{bottom:251.383867pt;}
.y1b9{bottom:254.435600pt;}
.y177{bottom:255.144267pt;}
.y31{bottom:256.583467pt;}
.ybb{bottom:256.630533pt;}
.y42{bottom:257.037733pt;}
.y6d{bottom:257.962533pt;}
.y13d{bottom:261.031333pt;}
.y106{bottom:261.989600pt;}
.y176{bottom:267.336267pt;}
.y1b8{bottom:270.552933pt;}
.yba{bottom:271.386533pt;}
.y30{bottom:271.996800pt;}
.y41{bottom:272.944400pt;}
.y105{bottom:277.469600pt;}
.y175{bottom:279.528267pt;}
.y6c{bottom:279.902533pt;}
.y13c{bottom:280.232267pt;}
.y1b7{bottom:282.670267pt;}
.yb9{bottom:286.039733pt;}
.y2f{bottom:287.410133pt;}
.y40{bottom:288.851067pt;}
.y104{bottom:292.949600pt;}
.y1b6{bottom:294.787600pt;}
.y174{bottom:295.709600pt;}
.y13b{bottom:298.904267pt;}
.yb8{bottom:300.694533pt;}
.y6b{bottom:301.842533pt;}
.y2e{bottom:302.823467pt;}
.ycb{bottom:303.023867pt;}
.y3f{bottom:304.757733pt;}
.y173{bottom:307.901600pt;}
.y103{bottom:308.429600pt;}
.y1b5{bottom:310.904933pt;}
.yb7{bottom:315.342400pt;}
.y2d{bottom:318.236800pt;}
.y172{bottom:320.093600pt;}
.y3e{bottom:320.664400pt;}
.y1b4{bottom:323.022267pt;}
.y6a{bottom:323.782533pt;}
.y102{bottom:323.909600pt;}
.yb6{bottom:329.998533pt;}
.yce{bottom:330.311867pt;}
.y171{bottom:332.285600pt;}
.y2c{bottom:333.650133pt;}
.y3d{bottom:336.571067pt;}
.y1b3{bottom:339.139600pt;}
.y101{bottom:339.389600pt;}
.ycf{bottom:341.295867pt;}
.yb5{bottom:344.747867pt;}
.y69{bottom:345.722533pt;}
.y13a{bottom:347.516667pt;}
.y170{bottom:348.466933pt;}
.y2b{bottom:349.063467pt;}
.y1b2{bottom:351.256933pt;}
.y3c{bottom:352.477733pt;}
.y100{bottom:354.869600pt;}
.yb4{bottom:359.407733pt;}
.y16f{bottom:360.658933pt;}
.y139{bottom:362.943333pt;}
.y2a{bottom:364.476800pt;}
.y1b1{bottom:367.374267pt;}
.y68{bottom:367.662533pt;}
.y3b{bottom:368.384400pt;}
.yff{bottom:370.349600pt;}
.y16e{bottom:372.850933pt;}
.yb3{bottom:374.056667pt;}
.yc5{bottom:376.391867pt;}
.y137{bottom:378.370000pt;}
.y1b0{bottom:379.491600pt;}
.y29{bottom:379.890133pt;}
.y138{bottom:382.810000pt;}
.y3a{bottom:384.291067pt;}
.y16d{bottom:385.042933pt;}
.yfe{bottom:385.829600pt;}
.yb2{bottom:388.704933pt;}
.yd1{bottom:389.023867pt;}
.y67{bottom:389.602533pt;}
.y28{bottom:395.303467pt;}
.y1af{bottom:395.608933pt;}
.yfd{bottom:396.869600pt;}
.y16c{bottom:397.234933pt;}
.y39{bottom:400.197733pt;}
.yfc{bottom:401.309600pt;}
.y136{bottom:401.355600pt;}
.yb1{bottom:403.466800pt;}
.y1ae{bottom:407.726267pt;}
.y27{bottom:410.716800pt;}
.y66{bottom:411.542533pt;}
.y16b{bottom:413.416267pt;}
.yca{bottom:416.231867pt;}
.y135{bottom:416.782267pt;}
.yfb{bottom:416.789600pt;}
.yb0{bottom:418.115200pt;}
.y1ad{bottom:419.843600pt;}
.y38{bottom:423.663467pt;}
.y16a{bottom:425.608267pt;}
.y26{bottom:426.130133pt;}
.y134{bottom:432.208933pt;}
.yfa{bottom:432.269600pt;}
.yaf{bottom:432.769467pt;}
.y65{bottom:433.472533pt;}
.y1ac{bottom:435.960933pt;}
.y169{bottom:437.800267pt;}
.y37{bottom:439.570133pt;}
.y25{bottom:441.543467pt;}
.y64{bottom:446.142533pt;}
.yae{bottom:447.424267pt;}
.y133{bottom:447.635600pt;}
.yf9{bottom:447.749600pt;}
.y1ab{bottom:448.078267pt;}
.y168{bottom:449.992267pt;}
.yc9{bottom:454.191867pt;}
.y36{bottom:455.476800pt;}
.y24{bottom:456.956800pt;}
.yd3{bottom:458.173867pt;}
.y1aa{bottom:460.195600pt;}
.yad{bottom:462.179600pt;}
.y167{bottom:462.184267pt;}
.y132{bottom:463.062400pt;}
.yf8{bottom:463.229600pt;}
.yc8{bottom:466.903867pt;}
.y63{bottom:468.082533pt;}
.y35{bottom:471.383467pt;}
.y1a9{bottom:472.312933pt;}
.y23{bottom:472.370133pt;}
.y166{bottom:474.376267pt;}
.yac{bottom:476.828800pt;}
.y131{bottom:478.488933pt;}
.yc7{bottom:479.671867pt;}
.yf7{bottom:486.268667pt;}
.y33{bottom:487.290133pt;}
.y22{bottom:487.783467pt;}
.y1a8{bottom:488.430267pt;}
.y62{bottom:490.242533pt;}
.yc6{bottom:490.663867pt;}
.yab{bottom:491.488800pt;}
.y34{bottom:491.730133pt;}
.y130{bottom:493.915600pt;}
.y165{bottom:499.229600pt;}
.y1a7{bottom:500.547600pt;}
.yf6{bottom:501.748667pt;}
.y21{bottom:503.196800pt;}
.y12f{bottom:509.342267pt;}
.y164{bottom:511.421600pt;}
.y1a6{bottom:512.664933pt;}
.y61{bottom:514.737867pt;}
.yf5{bottom:517.228667pt;}
.y12e{bottom:524.769067pt;}
.y60{bottom:528.071200pt;}
.y1a5{bottom:528.782267pt;}
.y163{bottom:532.274933pt;}
.yf4{bottom:532.708667pt;}
.y12d{bottom:540.195733pt;}
.y1a4{bottom:540.899600pt;}
.y5f{bottom:541.408000pt;}
.y91{bottom:543.041067pt;}
.yaa{bottom:543.188667pt;}
.y162{bottom:544.466933pt;}
.yf3{bottom:548.188667pt;}
.y1a3{bottom:553.016933pt;}
.y12c{bottom:555.622400pt;}
.y161{bottom:556.658933pt;}
.y90{bottom:558.414400pt;}
.ya9{bottom:558.868667pt;}
.y5e{bottom:562.517333pt;}
.yf2{bottom:563.668667pt;}
.y1a2{bottom:565.134267pt;}
.y20{bottom:565.244133pt;}
.y160{bottom:568.850933pt;}
.y12b{bottom:571.048933pt;}
.y8f{bottom:573.787733pt;}
.ya8{bottom:574.548667pt;}
.yf1{bottom:579.148667pt;}
.y15f{bottom:581.042933pt;}
.y1f{bottom:581.248133pt;}
.y1a1{bottom:581.251600pt;}
.y12a{bottom:586.475733pt;}
.y8e{bottom:589.161067pt;}
.ya7{bottom:590.228667pt;}
.y1a0{bottom:593.368933pt;}
.yf0{bottom:594.628667pt;}
.y1e{bottom:597.244133pt;}
.y129{bottom:601.902400pt;}
.y8d{bottom:604.534400pt;}
.y19f{bottom:605.486267pt;}
.ya6{bottom:605.908667pt;}
.yef{bottom:610.108667pt;}
.y5a{bottom:613.188667pt;}
.y1d{bottom:613.248133pt;}
.y128{bottom:617.329067pt;}
.y8c{bottom:619.907733pt;}
.ya5{bottom:621.588667pt;}
.y19e{bottom:621.603600pt;}
.y15e{bottom:624.788667pt;}
.yee{bottom:625.588667pt;}
.y59{bottom:628.522000pt;}
.y1c{bottom:629.244133pt;}
.y127{bottom:632.755733pt;}
.y19d{bottom:633.720933pt;}
.y8b{bottom:635.281067pt;}
.ya4{bottom:637.268667pt;}
.y15d{bottom:640.308667pt;}
.yed{bottom:641.068667pt;}
.y58{bottom:643.855333pt;}
.y1b{bottom:645.248133pt;}
.y126{bottom:648.182267pt;}
.y19c{bottom:649.838267pt;}
.y8a{bottom:650.654400pt;}
.ya3{bottom:652.948667pt;}
.y15b{bottom:655.828667pt;}
.yec{bottom:656.548667pt;}
.y57{bottom:659.188667pt;}
.y15c{bottom:660.268667pt;}
.y1a{bottom:661.244133pt;}
.y19b{bottom:661.955600pt;}
.y125{bottom:663.609067pt;}
.y89{bottom:666.027733pt;}
.yeb{bottom:672.028667pt;}
.y56{bottom:674.522000pt;}
.ya2{bottom:676.187733pt;}
.y19{bottom:677.256133pt;}
.y19a{bottom:678.072933pt;}
.y15a{bottom:678.907733pt;}
.y124{bottom:679.035600pt;}
.y88{bottom:681.401067pt;}
.yea{bottom:687.508667pt;}
.y55{bottom:689.855333pt;}
.y199{bottom:690.190267pt;}
.ya1{bottom:691.867733pt;}
.y18{bottom:693.252133pt;}
.y159{bottom:694.427733pt;}
.y123{bottom:694.462267pt;}
.y87{bottom:696.774400pt;}
.y198{bottom:702.307600pt;}
.y54{bottom:705.188667pt;}
.ya0{bottom:707.547733pt;}
.y17{bottom:709.248133pt;}
.y122{bottom:709.888933pt;}
.y158{bottom:709.947733pt;}
.ye9{bottom:710.547733pt;}
.y86{bottom:712.147733pt;}
.y197{bottom:718.424933pt;}
.y53{bottom:720.522000pt;}
.y9f{bottom:723.227733pt;}
.y16{bottom:725.244133pt;}
.y121{bottom:725.315733pt;}
.y157{bottom:725.467733pt;}
.ye7{bottom:726.027733pt;}
.y85{bottom:727.521067pt;}
.ye8{bottom:730.467733pt;}
.y196{bottom:730.542267pt;}
.y52{bottom:735.855333pt;}
.y9e{bottom:738.907733pt;}
.y120{bottom:740.742400pt;}
.y156{bottom:740.987733pt;}
.y15{bottom:741.240133pt;}
.ye6{bottom:741.507733pt;}
.y195{bottom:742.659600pt;}
.y84{bottom:742.894400pt;}
.y51{bottom:751.188667pt;}
.y9d{bottom:754.587733pt;}
.y11f{bottom:756.169067pt;}
.y155{bottom:756.507733pt;}
.ye5{bottom:756.987733pt;}
.y83{bottom:758.267733pt;}
.y194{bottom:758.776933pt;}
.y14{bottom:761.019733pt;}
.y50{bottom:766.522000pt;}
.y9c{bottom:770.267733pt;}
.y193{bottom:770.894267pt;}
.y11e{bottom:771.595733pt;}
.y154{bottom:772.027733pt;}
.ye4{bottom:772.467733pt;}
.y82{bottom:773.641067pt;}
.y4f{bottom:781.855333pt;}
.y192{bottom:783.011600pt;}
.y9b{bottom:785.947733pt;}
.y11d{bottom:787.022267pt;}
.y153{bottom:787.547733pt;}
.ye3{bottom:787.947733pt;}
.y81{bottom:789.014400pt;}
.y4e{bottom:797.188667pt;}
.y191{bottom:799.128933pt;}
.y9a{bottom:801.627733pt;}
.y11c{bottom:802.448933pt;}
.y152{bottom:803.067733pt;}
.ye2{bottom:803.427733pt;}
.y80{bottom:804.387733pt;}
.y190{bottom:811.246267pt;}
.y1d2{bottom:812.440933pt;}
.y4d{bottom:812.522000pt;}
.y1db{bottom:812.600933pt;}
.y99{bottom:817.307733pt;}
.y11b{bottom:817.875733pt;}
.y151{bottom:818.587733pt;}
.ye1{bottom:818.907733pt;}
.y7f{bottom:819.761067pt;}
.y18f{bottom:823.363600pt;}
.y1d1{bottom:824.440933pt;}
.y4{bottom:825.863467pt;}
.y1da{bottom:826.360933pt;}
.y4c{bottom:827.855333pt;}
.y98{bottom:832.987733pt;}
.y11a{bottom:833.302400pt;}
.y150{bottom:834.107733pt;}
.ye0{bottom:834.387733pt;}
.y7e{bottom:835.134400pt;}
.y18e{bottom:839.389600pt;}
.y1d9{bottom:840.120933pt;}
.y1d0{bottom:840.440933pt;}
.y4b{bottom:843.188667pt;}
.y97{bottom:848.667733pt;}
.y119{bottom:848.729067pt;}
.y14f{bottom:849.627733pt;}
.ydf{bottom:849.867733pt;}
.y7d{bottom:850.507733pt;}
.y18d{bottom:851.506933pt;}
.y1cf{bottom:852.440933pt;}
.y1d8{bottom:853.880933pt;}
.y4a{bottom:858.522000pt;}
.y3{bottom:861.852800pt;}
.y18c{bottom:863.624267pt;}
.y96{bottom:864.347733pt;}
.y1ce{bottom:864.440933pt;}
.y14e{bottom:865.147733pt;}
.yde{bottom:865.347733pt;}
.y7c{bottom:865.881067pt;}
.y1d7{bottom:871.640933pt;}
.y118{bottom:871.714667pt;}
.y49{bottom:873.855333pt;}
.y18b{bottom:879.741600pt;}
.y95{bottom:880.027733pt;}
.y1cd{bottom:880.440933pt;}
.y14d{bottom:880.667733pt;}
.ydd{bottom:880.827733pt;}
.y7b{bottom:881.254400pt;}
.y1d6{bottom:885.400933pt;}
.y117{bottom:887.141333pt;}
.y2{bottom:887.196800pt;}
.y48{bottom:889.188667pt;}
.y18a{bottom:891.858933pt;}
.y1cc{bottom:892.440933pt;}
.y94{bottom:895.707733pt;}
.y14c{bottom:896.187733pt;}
.ydc{bottom:896.307733pt;}
.y7a{bottom:896.627733pt;}
.y1d5{bottom:899.160933pt;}
.y116{bottom:902.568000pt;}
.y189{bottom:903.976267pt;}
.y1cb{bottom:904.440933pt;}
.y47{bottom:904.521067pt;}
.y5d{bottom:904.522000pt;}
.y93{bottom:911.387733pt;}
.y14b{bottom:911.707733pt;}
.ydb{bottom:911.787733pt;}
.y79{bottom:912.001067pt;}
.y1d4{bottom:916.920933pt;}
.y188{bottom:920.093600pt;}
.y1ca{bottom:920.440933pt;}
.y115{bottom:921.768933pt;}
.y92{bottom:927.067733pt;}
.y14a{bottom:927.227733pt;}
.yd9{bottom:927.267733pt;}
.y78{bottom:927.374400pt;}
.y46{bottom:927.414400pt;}
.y5c{bottom:927.415333pt;}
.y1d3{bottom:930.680933pt;}
.yda{bottom:931.707733pt;}
.y187{bottom:932.210933pt;}
.y1c9{bottom:932.440933pt;}
.y114{bottom:940.440933pt;}
.y45{bottom:942.747733pt;}
.y5b{bottom:942.748667pt;}
.y186{bottom:944.328267pt;}
.y1c8{bottom:944.440933pt;}
.y7{bottom:961.389200pt;}
.y6{bottom:977.165200pt;}
.y5{bottom:992.944800pt;}
.y44{bottom:993.574800pt;}
.hf{height:22.169547pt;}
.h7{height:23.680000pt;}
.h1b{height:23.923200pt;}
.h1c{height:25.632000pt;}
.h13{height:28.120000pt;}
.h14{height:28.520000pt;}
.h21{height:29.482667pt;}
.h1e{height:29.866667pt;}
.h2{height:31.573333pt;}
.h1f{height:31.938667pt;}
.h12{height:32.601387pt;}
.h6{height:32.615253pt;}
.h1a{height:34.176000pt;}
.h8{height:34.453333pt;}
.ha{height:35.520000pt;}
.hb{height:36.628160pt;}
.hc{height:36.660160pt;}
.hd{height:36.676160pt;}
.h9{height:36.692160pt;}
.h20{height:36.853333pt;}
.he{height:38.026667pt;}
.h5{height:38.696000pt;}
.h4{height:39.466667pt;}
.h18{height:39.892800pt;}
.h17{height:39.893333pt;}
.h16{height:39.922667pt;}
.h15{height:39.923200pt;}
.h10{height:39.929547pt;}
.h11{height:39.933280pt;}
.h1d{height:44.224000pt;}
.h3{height:67.200000pt;}
.h19{height:338.509333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:519.016000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x4a{left:66.136400pt;}
.xa{left:69.138667pt;}
.x6{left:76.923867pt;}
.x3a{left:81.726933pt;}
.x33{left:92.472000pt;}
.x34{left:97.783467pt;}
.x35{left:102.595600pt;}
.x23{left:137.342667pt;}
.x3b{left:154.028533pt;}
.x36{left:157.522400pt;}
.x37{left:162.262267pt;}
.x31{left:163.680133pt;}
.x3c{left:166.747467pt;}
.x4d{left:174.850667pt;}
.x32{left:176.621467pt;}
.x44{left:180.084667pt;}
.x45{left:184.830800pt;}
.x3d{left:188.726400pt;}
.x30{left:194.096133pt;}
.x4e{left:195.906667pt;}
.xb{left:204.168667pt;}
.x2c{left:209.360133pt;}
.x2d{left:212.616133pt;}
.x2f{left:214.016133pt;}
.x13{left:221.668667pt;}
.x38{left:223.563467pt;}
.x2e{left:224.728133pt;}
.x39{left:228.303333pt;}
.x22{left:237.497067pt;}
.x2b{left:238.512133pt;}
.x21{left:247.985333pt;}
.x1a{left:253.344800pt;}
.x1d{left:257.659867pt;}
.x46{left:267.471067pt;}
.x4{left:270.875733pt;}
.x47{left:272.217333pt;}
.x24{left:275.932133pt;}
.x1b{left:278.273467pt;}
.x2a{left:288.712133pt;}
.x1c{left:293.877467pt;}
.x27{left:296.632133pt;}
.x29{left:300.752133pt;}
.x28{left:305.600133pt;}
.x1e{left:308.674800pt;}
.x16{left:313.690800pt;}
.x3{left:316.228133pt;}
.x1f{left:318.456133pt;}
.x15{left:321.026800pt;}
.x19{left:322.189467pt;}
.x14{left:325.097467pt;}
.x11{left:329.338667pt;}
.x5{left:332.465067pt;}
.x18{left:338.381467pt;}
.x17{left:355.624133pt;}
.x48{left:367.522667pt;}
.x49{left:372.268800pt;}
.x20{left:381.360133pt;}
.x1{left:388.338400pt;}
.x12{left:401.428667pt;}
.x7{left:413.859067pt;}
.x4b{left:419.501733pt;}
.xc{left:423.418667pt;}
.x4c{left:434.904400pt;}
.x26{left:461.160133pt;}
.xd{left:490.368667pt;}
.x3e{left:532.580533pt;}
.x3f{left:537.291867pt;}
.xe{left:585.858667pt;}
.x25{left:594.456000pt;}
.x40{left:621.685333pt;}
.x41{left:626.396667pt;}
.xf{left:671.208667pt;}
.x10{left:674.608667pt;}
.x8{left:704.249867pt;}
.x9{left:709.070933pt;}
.x42{left:720.999067pt;}
.x43{left:725.710400pt;}
}




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