
    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_287756c838e15ebfb02ec0da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_a2fe5ab58c8b7f89b1f363dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_3a9db7f833c948738e749d3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_f1078b874eb1b68d9cd1d5d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_948c543e6b72cd71bf0cf931.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_0b65bf04a4e2853963ea0cb6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041000;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_48aba2343f7eb410d5d751be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_0f1f19fb2f30f842abc47645.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_f4fb426d665357d9588616b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_cb24dc9858c964df9225ba58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_75dae8ea5ca17dc4c0653bb6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2c44a6f3cf187282ee6828e0.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m76{transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.245211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245211,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245871,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246067,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246093,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246274,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m11{transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246867,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247017,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247224,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247317,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mf{transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247683,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248024,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248052,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248176,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-5.985000px;}
.ls1c{letter-spacing:-1.311000px;}
.ls13{letter-spacing:-1.083000px;}
.lsb{letter-spacing:-0.969000px;}
.lsc{letter-spacing:-0.912000px;}
.ls19{letter-spacing:-0.798000px;}
.ls8{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.741000px;}
.ls1a{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.570000px;}
.ls17{letter-spacing:-0.399000px;}
.ls18{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.285000px;}
.lse{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.189000px;}
.lsd{letter-spacing:-0.171000px;}
.ls3{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.114000px;}
.ls4{letter-spacing:-0.063000px;}
.ls7{letter-spacing:-0.057000px;}
.ls2{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.171000px;}
.ls1b{letter-spacing:0.228000px;}
.ls11{letter-spacing:0.285000px;}
.lsf{letter-spacing:0.376200px;}
.ls1{letter-spacing:0.900000px;}
.ls10{letter-spacing:0.969000px;}
.ls12{letter-spacing:2.565000px;}
.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;}
}
.ws6{word-spacing:-14.301000px;}
.wsac{word-spacing:-14.238000px;}
.ws0{word-spacing:-13.986000px;}
.wse6{word-spacing:-13.908000px;}
.ws3{word-spacing:-13.356000px;}
.ws5{word-spacing:-13.332000px;}
.ws107{word-spacing:-13.281000px;}
.wse8{word-spacing:-13.224000px;}
.wse7{word-spacing:-13.110000px;}
.wsc1{word-spacing:-13.053000px;}
.ws8b{word-spacing:-12.939000px;}
.ws106{word-spacing:-12.882000px;}
.wse9{word-spacing:-12.825000px;}
.wsc2{word-spacing:-12.711000px;}
.wse5{word-spacing:-12.312000px;}
.wse4{word-spacing:-11.970000px;}
.ws108{word-spacing:-11.742000px;}
.ws27{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.810000px;}
.ws7{word-spacing:-9.408000px;}
.ws2{word-spacing:-8.820000px;}
.wsd9{word-spacing:-4.617000px;}
.wsd8{word-spacing:-3.933000px;}
.wsb8{word-spacing:-3.654000px;}
.ws1e{word-spacing:-2.961000px;}
.ws1f{word-spacing:-2.898000px;}
.ws48{word-spacing:-2.835000px;}
.ws4b{word-spacing:-2.772000px;}
.ws65{word-spacing:-2.709000px;}
.wsc6{word-spacing:-2.679000px;}
.ws8d{word-spacing:-2.646000px;}
.ws88{word-spacing:-2.622000px;}
.ws3b{word-spacing:-2.583000px;}
.wsf3{word-spacing:-2.565000px;}
.ws9b{word-spacing:-2.520000px;}
.ws83{word-spacing:-2.457000px;}
.ws110{word-spacing:-2.451000px;}
.wsb0{word-spacing:-2.394000px;}
.ws62{word-spacing:-2.331000px;}
.ws10{word-spacing:-2.321995px;}
.wsa4{word-spacing:-2.268000px;}
.wsf4{word-spacing:-2.223000px;}
.wsb2{word-spacing:-2.205000px;}
.ws87{word-spacing:-2.166000px;}
.ws4d{word-spacing:-2.142000px;}
.ws113{word-spacing:-2.109000px;}
.ws1c{word-spacing:-2.079000px;}
.ws90{word-spacing:-2.052000px;}
.ws8e{word-spacing:-2.016000px;}
.ws54{word-spacing:-1.953000px;}
.ws14{word-spacing:-1.944000px;}
.wsf6{word-spacing:-1.938000px;}
.ws39{word-spacing:-1.890000px;}
.wsdb{word-spacing:-1.881000px;}
.ws1d{word-spacing:-1.827000px;}
.ws3f{word-spacing:-1.764000px;}
.ws52{word-spacing:-1.701000px;}
.wsdc{word-spacing:-1.653000px;}
.ws4a{word-spacing:-1.638000px;}
.ws6a{word-spacing:-1.575000px;}
.ws44{word-spacing:-1.512000px;}
.ws97{word-spacing:-1.449000px;}
.wsf7{word-spacing:-1.425000px;}
.ws45{word-spacing:-1.386000px;}
.wsd{word-spacing:-1.350000px;}
.ws69{word-spacing:-1.323000px;}
.ws2c{word-spacing:-1.260000px;}
.wsbf{word-spacing:-1.254000px;}
.wse{word-spacing:-1.242000px;}
.ws89{word-spacing:-1.197000px;}
.ws9a{word-spacing:-1.134000px;}
.ws46{word-spacing:-1.071000px;}
.wsc0{word-spacing:-1.026000px;}
.ws5a{word-spacing:-1.008000px;}
.wsfa{word-spacing:-0.969000px;}
.wsb9{word-spacing:-0.945000px;}
.ws60{word-spacing:-0.882000px;}
.ws12{word-spacing:-0.864000px;}
.ws7e{word-spacing:-0.819000px;}
.ws3d{word-spacing:-0.693000px;}
.ws96{word-spacing:-0.630000px;}
.ws2d{word-spacing:-0.567000px;}
.wsbc{word-spacing:-0.513000px;}
.ws4c{word-spacing:-0.504000px;}
.wsd6{word-spacing:-0.456000px;}
.wsc{word-spacing:-0.450000px;}
.wsae{word-spacing:-0.441000px;}
.ws7d{word-spacing:-0.378000px;}
.wsb6{word-spacing:-0.315000px;}
.wsa6{word-spacing:-0.252000px;}
.wseb{word-spacing:-0.228000px;}
.ws23{word-spacing:-0.189000px;}
.ws6d{word-spacing:-0.126000px;}
.wsad{word-spacing:-0.063000px;}
.ws100{word-spacing:-0.057000px;}
.wsa{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.wsf5{word-spacing:0.057000px;}
.ws2f{word-spacing:0.063000px;}
.wsc7{word-spacing:0.114000px;}
.ws31{word-spacing:0.126000px;}
.ws5f{word-spacing:0.189000px;}
.wsc4{word-spacing:0.228000px;}
.wsaa{word-spacing:0.252000px;}
.ws115{word-spacing:0.285000px;}
.wse2{word-spacing:0.342000px;}
.ws11{word-spacing:0.378000px;}
.wsc3{word-spacing:0.399000px;}
.wsbb{word-spacing:0.441000px;}
.wsa9{word-spacing:0.504000px;}
.wscc{word-spacing:0.513000px;}
.ws42{word-spacing:0.567000px;}
.ws103{word-spacing:0.570000px;}
.ws32{word-spacing:0.630000px;}
.ws34{word-spacing:0.693000px;}
.ws10b{word-spacing:0.741000px;}
.ws61{word-spacing:0.756000px;}
.ws10f{word-spacing:0.798000px;}
.ws9d{word-spacing:0.819000px;}
.wsf8{word-spacing:0.855000px;}
.ws40{word-spacing:0.882000px;}
.ws112{word-spacing:0.912000px;}
.ws81{word-spacing:0.945000px;}
.wsc5{word-spacing:0.969000px;}
.ws5d{word-spacing:1.008000px;}
.ws26{word-spacing:1.071000px;}
.ws75{word-spacing:1.134000px;}
.ws1b{word-spacing:1.188000px;}
.ws33{word-spacing:1.197000px;}
.ws10a{word-spacing:1.254000px;}
.ws74{word-spacing:1.260000px;}
.ws64{word-spacing:1.323000px;}
.wscf{word-spacing:1.368000px;}
.ws93{word-spacing:1.386000px;}
.ws15{word-spacing:1.404000px;}
.ws109{word-spacing:1.425000px;}
.ws78{word-spacing:1.449000px;}
.wsd0{word-spacing:1.482000px;}
.ws55{word-spacing:1.512000px;}
.ws5b{word-spacing:1.575000px;}
.wscb{word-spacing:1.596000px;}
.ws4e{word-spacing:1.638000px;}
.ws85{word-spacing:1.653000px;}
.ws3c{word-spacing:1.701000px;}
.ws2e{word-spacing:1.764000px;}
.wsdd{word-spacing:1.824000px;}
.wsb1{word-spacing:1.827000px;}
.ws94{word-spacing:1.890000px;}
.ws95{word-spacing:1.953000px;}
.ws49{word-spacing:2.016000px;}
.ws98{word-spacing:2.079000px;}
.wsd1{word-spacing:2.109000px;}
.ws53{word-spacing:2.142000px;}
.wsf0{word-spacing:2.166000px;}
.ws29{word-spacing:2.205000px;}
.ws111{word-spacing:2.223000px;}
.ws20{word-spacing:2.268000px;}
.ws9e{word-spacing:2.331000px;}
.ws57{word-spacing:2.394000px;}
.wsd4{word-spacing:2.451000px;}
.ws58{word-spacing:2.457000px;}
.ws25{word-spacing:2.520000px;}
.ws102{word-spacing:2.565000px;}
.ws56{word-spacing:2.583000px;}
.ws66{word-spacing:2.646000px;}
.ws7a{word-spacing:2.709000px;}
.ws38{word-spacing:2.772000px;}
.wsd5{word-spacing:2.793000px;}
.ws84{word-spacing:2.835000px;}
.wsea{word-spacing:2.850000px;}
.ws73{word-spacing:2.898000px;}
.ws67{word-spacing:3.024000px;}
.ws5e{word-spacing:3.087000px;}
.wsaf{word-spacing:3.150000px;}
.ws72{word-spacing:3.213000px;}
.ws30{word-spacing:3.339000px;}
.wsf{word-spacing:3.348000px;}
.wsa1{word-spacing:3.402000px;}
.wsd2{word-spacing:3.420000px;}
.wsd3{word-spacing:3.477000px;}
.ws82{word-spacing:3.591000px;}
.wsee{word-spacing:3.648000px;}
.ws6f{word-spacing:3.654000px;}
.wsc8{word-spacing:3.705000px;}
.ws59{word-spacing:3.717000px;}
.ws77{word-spacing:3.780000px;}
.ws21{word-spacing:3.843000px;}
.ws7f{word-spacing:3.906000px;}
.wsf2{word-spacing:3.933000px;}
.wsa5{word-spacing:3.969000px;}
.ws91{word-spacing:3.990000px;}
.ws28{word-spacing:4.032000px;}
.wsa7{word-spacing:4.095000px;}
.wsce{word-spacing:4.104000px;}
.ws8a{word-spacing:4.158000px;}
.wsef{word-spacing:4.161000px;}
.ws76{word-spacing:4.221000px;}
.ws2a{word-spacing:4.284000px;}
.wsa2{word-spacing:4.347000px;}
.ws3e{word-spacing:4.410000px;}
.ws9f{word-spacing:4.599000px;}
.ws2b{word-spacing:4.662000px;}
.ws50{word-spacing:4.725000px;}
.ws3a{word-spacing:4.788000px;}
.ws51{word-spacing:4.914000px;}
.ws7b{word-spacing:4.977000px;}
.ws99{word-spacing:5.040000px;}
.wscd{word-spacing:5.073000px;}
.wsb5{word-spacing:5.166000px;}
.ws101{word-spacing:5.187000px;}
.ws24{word-spacing:5.229000px;}
.ws6c{word-spacing:5.355000px;}
.ws70{word-spacing:5.418000px;}
.ws104{word-spacing:5.472000px;}
.wsa8{word-spacing:5.481000px;}
.ws22{word-spacing:5.544000px;}
.ws36{word-spacing:5.607000px;}
.wsff{word-spacing:5.643000px;}
.ws19{word-spacing:5.778000px;}
.ws4f{word-spacing:5.796000px;}
.ws5c{word-spacing:5.859000px;}
.ws6e{word-spacing:5.922000px;}
.ws7c{word-spacing:5.985000px;}
.ws105{word-spacing:6.042000px;}
.ws37{word-spacing:6.048000px;}
.ws6b{word-spacing:6.111000px;}
.ws13{word-spacing:6.156000px;}
.ws68{word-spacing:6.174000px;}
.wse0{word-spacing:6.213000px;}
.ws47{word-spacing:6.237000px;}
.ws10c{word-spacing:6.327000px;}
.ws10d{word-spacing:6.384000px;}
.wse1{word-spacing:6.498000px;}
.wsfe{word-spacing:6.555000px;}
.wsb7{word-spacing:6.741000px;}
.wsa0{word-spacing:6.804000px;}
.ws8f{word-spacing:6.867000px;}
.wsba{word-spacing:6.930000px;}
.ws8c{word-spacing:6.993000px;}
.wsf9{word-spacing:7.068000px;}
.ws114{word-spacing:7.182000px;}
.ws71{word-spacing:7.245000px;}
.ws80{word-spacing:7.308000px;}
.ws9c{word-spacing:7.371000px;}
.ws86{word-spacing:7.410000px;}
.wsf1{word-spacing:7.467000px;}
.wsa3{word-spacing:7.623000px;}
.ws63{word-spacing:7.749000px;}
.wsbe{word-spacing:7.752000px;}
.wsbd{word-spacing:7.866000px;}
.ws43{word-spacing:8.127000px;}
.wsec{word-spacing:8.550000px;}
.wsfb{word-spacing:8.607000px;}
.wsed{word-spacing:8.664000px;}
.ws35{word-spacing:8.694000px;}
.wsfc{word-spacing:8.778000px;}
.wsfd{word-spacing:8.835000px;}
.wsb4{word-spacing:8.883000px;}
.wsb3{word-spacing:9.324000px;}
.wse3{word-spacing:9.804000px;}
.ws79{word-spacing:10.017000px;}
.ws17{word-spacing:10.314000px;}
.ws1a{word-spacing:10.476000px;}
.ws16{word-spacing:10.908000px;}
.wsde{word-spacing:11.172000px;}
.wsab{word-spacing:11.277000px;}
.wsdf{word-spacing:11.286000px;}
.wsd7{word-spacing:11.514000px;}
.ws92{word-spacing:12.348000px;}
.ws9{word-spacing:13.313810px;}
.ws8{word-spacing:13.817803px;}
.wsb{word-spacing:13.901801px;}
.ws18{word-spacing:15.066000px;}
.wsca{word-spacing:16.473000px;}
.wsda{word-spacing:16.815000px;}
.ws10e{word-spacing:23.541000px;}
.ws41{word-spacing:35.460000px;}
.wsc9{word-spacing:41.382000px;}
._14{margin-left:-12.927000px;}
._d{margin-left:-9.585000px;}
._f{margin-left:-8.574300px;}
._4{margin-left:-7.173000px;}
._5{margin-left:-5.544000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._3{width:1.800000px;}
._10{width:2.801701px;}
._13{width:3.981000px;}
._c{width:5.418000px;}
._e{width:6.715800px;}
._12{width:8.541000px;}
._b{width:10.795500px;}
._8{width:12.935815px;}
._6{width:14.766000px;}
._a{width:45.450000px;}
._11{width:60.181800px;}
._7{width:75.111600px;}
._9{width:101.461800px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(16,20,126);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.999400px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:39.964560px;}
.y45{bottom:51.955395px;}
.y44{bottom:63.946230px;}
.y2{bottom:67.597501px;}
.yff{bottom:71.368050px;}
.y43{bottom:76.021050px;}
.y1c7{bottom:81.287550px;}
.y1{bottom:84.097501px;}
.y196{bottom:85.460550px;}
.ybc{bottom:86.963550px;}
.y13e{bottom:86.965050px;}
.y73{bottom:87.388050px;}
.yfe{bottom:90.866550px;}
.y1fa{bottom:91.040550px;}
.y42{bottom:92.538450px;}
.y1c6{bottom:97.789050px;}
.y195{bottom:101.962050px;}
.y127{bottom:104.386050px;}
.ye1{bottom:106.463550px;}
.ybb{bottom:106.466550px;}
.y90{bottom:106.888050px;}
.y72{bottom:106.889550px;}
.y1f9{bottom:107.542050px;}
.yfd{bottom:110.365050px;}
.y1c5{bottom:114.290550px;}
.y194{bottom:118.463550px;}
.y126{bottom:123.884550px;}
.y1f8{bottom:124.043550px;}
.y13d{bottom:125.963550px;}
.yba{bottom:125.965050px;}
.ye0{bottom:125.971050px;}
.y71{bottom:126.388050px;}
.yfc{bottom:129.863550px;}
.y1c4{bottom:130.792050px;}
.y1f7{bottom:140.545050px;}
.y125{bottom:143.383050px;}
.y193{bottom:144.713550px;}
.yb9{bottom:145.463550px;}
.y15c{bottom:145.465050px;}
.y180{bottom:145.468050px;}
.ydf{bottom:145.469550px;}
.y13c{bottom:145.472550px;}
.y70{bottom:145.888050px;}
.y1c3{bottom:147.293550px;}
.yfb{bottom:149.363550px;}
.y39{bottom:153.087750px;}
.y1f6{bottom:157.046550px;}
.y124{bottom:162.881550px;}
.y1c2{bottom:163.795050px;}
.yb8{bottom:164.963550px;}
.y17f{bottom:164.966550px;}
.yde{bottom:164.968050px;}
.y13b{bottom:164.971050px;}
.y16c{bottom:164.978550px;}
.y6f{bottom:165.388050px;}
.yfa{bottom:168.869550px;}
.y38{bottom:172.587900px;}
.y1f5{bottom:173.548050px;}
.y1c1{bottom:180.296550px;}
.y123{bottom:182.380050px;}
.y15b{bottom:184.463550px;}
.y17e{bottom:184.465050px;}
.ydd{bottom:184.466550px;}
.y13a{bottom:184.469550px;}
.yb7{bottom:184.471050px;}
.y16b{bottom:184.477050px;}
.y6e{bottom:184.889550px;}
.y8f{bottom:184.894050px;}
.yf9{bottom:188.368050px;}
.y1f4{bottom:190.049550px;}
.y37{bottom:192.096900px;}
.y192{bottom:193.462050px;}
.y1c0{bottom:196.798050px;}
.y122{bottom:201.878550px;}
.y17d{bottom:203.963550px;}
.ydc{bottom:203.965050px;}
.y15a{bottom:203.966550px;}
.y139{bottom:203.968050px;}
.yb6{bottom:203.969550px;}
.y16a{bottom:203.975550px;}
.y6d{bottom:204.388050px;}
.y8e{bottom:204.392550px;}
.y1f3{bottom:206.551050px;}
.yf8{bottom:207.866550px;}
.y191{bottom:209.963550px;}
.y36{bottom:211.595400px;}
.y1bf{bottom:213.299550px;}
.y121{bottom:221.377050px;}
.y1f2{bottom:223.052550px;}
.ydb{bottom:223.463550px;}
.y159{bottom:223.465050px;}
.y138{bottom:223.466550px;}
.yb5{bottom:223.468050px;}
.y169{bottom:223.474050px;}
.y8d{bottom:223.891050px;}
.yf7{bottom:227.365050px;}
.y1be{bottom:229.801050px;}
.y35{bottom:231.093900px;}
.y6c{bottom:233.638050px;}
.y190{bottom:236.213550px;}
.y1f1{bottom:239.554050px;}
.y120{bottom:240.875550px;}
.yda{bottom:242.963550px;}
.y137{bottom:242.965050px;}
.yb4{bottom:242.966550px;}
.y185{bottom:242.968050px;}
.y168{bottom:242.972550px;}
.y17c{bottom:242.977050px;}
.y8c{bottom:243.389550px;}
.y1bd{bottom:246.302550px;}
.yf6{bottom:246.863550px;}
.y34{bottom:250.592400px;}
.y1f0{bottom:256.054050px;}
.y11f{bottom:260.374050px;}
.yd9{bottom:262.463550px;}
.yb3{bottom:262.465050px;}
.y184{bottom:262.466550px;}
.y167{bottom:262.471050px;}
.y17b{bottom:262.475550px;}
.y1bc{bottom:262.804050px;}
.y8b{bottom:262.888050px;}
.yf5{bottom:266.363550px;}
.y33{bottom:270.090900px;}
.y1ef{bottom:272.546550px;}
.y1bb{bottom:279.302550px;}
.y11e{bottom:279.872550px;}
.yb2{bottom:281.963550px;}
.y183{bottom:281.965050px;}
.yd8{bottom:281.969550px;}
.y17a{bottom:281.974050px;}
.y6b{bottom:282.388050px;}
.y18f{bottom:284.963550px;}
.yf4{bottom:285.863550px;}
.y1ee{bottom:289.048050px;}
.y32{bottom:289.589400px;}
.y1ba{bottom:295.804050px;}
.y11d{bottom:299.371050px;}
.y158{bottom:301.463550px;}
.yd7{bottom:301.468050px;}
.y179{bottom:301.472550px;}
.y8a{bottom:301.888050px;}
.y6a{bottom:301.889550px;}
.yf3{bottom:305.363550px;}
.y1ed{bottom:305.549550px;}
.y31{bottom:309.087900px;}
.yb1{bottom:311.213550px;}
.y1b9{bottom:312.302550px;}
.y11c{bottom:318.869550px;}
.y157{bottom:320.963550px;}
.yd6{bottom:320.966550px;}
.y178{bottom:320.971050px;}
.y69{bottom:321.388050px;}
.y1ec{bottom:322.051050px;}
.y30{bottom:328.587900px;}
.y1b8{bottom:328.804050px;}
.yf2{bottom:331.913550px;}
.y11b{bottom:338.368050px;}
.y1eb{bottom:338.552550px;}
.y156{bottom:340.463550px;}
.yd5{bottom:340.465050px;}
.y177{bottom:340.469550px;}
.y68{bottom:340.888050px;}
.y89{bottom:340.892550px;}
.y1b7{bottom:345.304050px;}
.y2f{bottom:348.087900px;}
.yf1{bottom:348.413550px;}
.y21d{bottom:355.051050px;}
.y1ea{bottom:355.054050px;}
.y11a{bottom:357.866550px;}
.yd4{bottom:359.963550px;}
.yb0{bottom:359.965050px;}
.y176{bottom:359.968050px;}
.y18e{bottom:359.969550px;}
.y136{bottom:359.975550px;}
.y155{bottom:359.992050px;}
.y67{bottom:360.388050px;}
.y88{bottom:360.391050px;}
.y1b6{bottom:361.798050px;}
.yf0{bottom:364.913550px;}
.y2e{bottom:367.589400px;}
.y21c{bottom:371.552550px;}
.y1e9{bottom:371.554050px;}
.y119{bottom:377.365050px;}
.y1b5{bottom:378.299550px;}
.yaf{bottom:379.463550px;}
.y175{bottom:379.466550px;}
.y18d{bottom:379.468050px;}
.y135{bottom:379.474050px;}
.y154{bottom:379.490550px;}
.y66{bottom:379.888050px;}
.y87{bottom:379.889550px;}
.yef{bottom:381.410550px;}
.y2d{bottom:387.087900px;}
.y1e8{bottom:388.046550px;}
.y21b{bottom:388.054050px;}
.y1b4{bottom:394.801050px;}
.y118{bottom:396.863550px;}
.yee{bottom:397.912050px;}
.yae{bottom:398.963550px;}
.y166{bottom:398.965050px;}
.y18c{bottom:398.966550px;}
.y134{bottom:398.972550px;}
.y153{bottom:398.989050px;}
.y65{bottom:399.388050px;}
.y1e7{bottom:404.548050px;}
.y21a{bottom:404.554050px;}
.y1b3{bottom:411.302550px;}
.yed{bottom:414.413550px;}
.y2c{bottom:416.337900px;}
.y117{bottom:416.363550px;}
.yd3{bottom:418.463550px;}
.y18b{bottom:418.465050px;}
.y133{bottom:418.471050px;}
.yad{bottom:418.477050px;}
.y152{bottom:418.487550px;}
.y86{bottom:418.888050px;}
.y64{bottom:418.892550px;}
.y12{bottom:419.122501px;}
.y219{bottom:421.043550px;}
.y1e6{bottom:421.049550px;}
.y1b2{bottom:427.804050px;}
.y182{bottom:428.213550px;}
.y116{bottom:435.883050px;}
.y218{bottom:437.545050px;}
.y1e5{bottom:437.551050px;}
.yec{bottom:437.963550px;}
.y132{bottom:437.969550px;}
.yd2{bottom:437.974050px;}
.yac{bottom:437.975550px;}
.y151{bottom:437.986050px;}
.y85{bottom:438.389550px;}
.y63{bottom:438.391050px;}
.y1b1{bottom:444.304050px;}
.y165{bottom:447.713550px;}
.y217{bottom:454.046550px;}
.y1e4{bottom:454.052550px;}
.y115{bottom:455.381550px;}
.yeb{bottom:457.463550px;}
.y131{bottom:457.468050px;}
.yd1{bottom:457.472550px;}
.yab{bottom:457.474050px;}
.y150{bottom:457.484550px;}
.y84{bottom:457.888050px;}
.y62{bottom:457.889550px;}
.y1b0{bottom:460.783050px;}
.y216{bottom:470.548050px;}
.y1e3{bottom:470.554050px;}
.y114{bottom:474.880050px;}
.yea{bottom:476.963550px;}
.y18a{bottom:476.965050px;}
.y130{bottom:476.966550px;}
.yd0{bottom:476.971050px;}
.yaa{bottom:476.972550px;}
.y14f{bottom:476.983050px;}
.y1af{bottom:477.284550px;}
.y61{bottom:477.388050px;}
.y2b{bottom:480.087900px;}
.y11{bottom:486.403500px;}
.y215{bottom:487.049550px;}
.y1e2{bottom:487.054050px;}
.y1ae{bottom:493.786050px;}
.y113{bottom:494.378550px;}
.y2a{bottom:495.087900px;}
.y189{bottom:496.463550px;}
.ye9{bottom:496.465050px;}
.y174{bottom:496.468050px;}
.ycf{bottom:496.469550px;}
.ya9{bottom:496.471050px;}
.y14e{bottom:496.481550px;}
.y60{bottom:496.888050px;}
.y83{bottom:496.897050px;}
.y1e1{bottom:503.537550px;}
.y214{bottom:503.551050px;}
.y29{bottom:510.102750px;}
.y1ad{bottom:510.287550px;}
.y112{bottom:513.877050px;}
.ye8{bottom:515.963550px;}
.y173{bottom:515.966550px;}
.yce{bottom:515.968050px;}
.ya8{bottom:515.969550px;}
.y14d{bottom:515.980050px;}
.y82{bottom:516.395550px;}
.y5f{bottom:516.404550px;}
.y1e0{bottom:520.039050px;}
.y213{bottom:520.052550px;}
.y28{bottom:525.101250px;}
.y1ac{bottom:526.789050px;}
.y111{bottom:533.375550px;}
.ye7{bottom:535.463550px;}
.y172{bottom:535.465050px;}
.ycd{bottom:535.466550px;}
.ya7{bottom:535.468050px;}
.y14c{bottom:535.478550px;}
.y81{bottom:535.894050px;}
.y5e{bottom:535.903050px;}
.y1df{bottom:536.540550px;}
.y212{bottom:536.554050px;}
.y27{bottom:540.099750px;}
.y1ab{bottom:543.290550px;}
.y10{bottom:547.822501px;}
.y110{bottom:552.874050px;}
.y1de{bottom:553.042050px;}
.y211{bottom:553.054050px;}
.y171{bottom:554.963550px;}
.ycc{bottom:554.965050px;}
.ya6{bottom:554.966550px;}
.y14b{bottom:554.977050px;}
.y26{bottom:555.098250px;}
.y80{bottom:555.392550px;}
.y5d{bottom:555.401550px;}
.y1aa{bottom:559.792050px;}
.y1dd{bottom:569.543550px;}
.y210{bottom:569.551050px;}
.y25{bottom:570.096750px;}
.y10f{bottom:572.372550px;}
.ycb{bottom:574.463550px;}
.ya5{bottom:574.465050px;}
.y14a{bottom:574.475550px;}
.y7f{bottom:574.891050px;}
.y5c{bottom:574.900050px;}
.y1a9{bottom:576.293550px;}
.y24{bottom:585.095250px;}
.y1dc{bottom:586.045050px;}
.y20f{bottom:586.052550px;}
.y10e{bottom:591.871050px;}
.y1a8{bottom:592.795050px;}
.ya4{bottom:593.963550px;}
.y170{bottom:593.968050px;}
.y149{bottom:593.974050px;}
.y7e{bottom:594.389550px;}
.y5b{bottom:594.398550px;}
.y23{bottom:600.093750px;}
.y1db{bottom:602.546550px;}
.y20e{bottom:602.554050px;}
.yca{bottom:603.713550px;}
.y1a7{bottom:609.296550px;}
.y10d{bottom:611.369550px;}
.ya3{bottom:613.463550px;}
.y164{bottom:613.466550px;}
.y148{bottom:613.472550px;}
.y7d{bottom:613.888050px;}
.y5a{bottom:613.897050px;}
.y22{bottom:615.092250px;}
.yf{bottom:615.103500px;}
.y1da{bottom:619.048050px;}
.y20d{bottom:619.054050px;}
.y1a6{bottom:625.798050px;}
.y3e{bottom:629.493900px;}
.y21{bottom:630.090750px;}
.y10c{bottom:630.868050px;}
.y188{bottom:632.963550px;}
.ya2{bottom:632.965050px;}
.y12f{bottom:632.966550px;}
.y147{bottom:632.971050px;}
.y7c{bottom:633.388050px;}
.y59{bottom:633.395550px;}
.y20c{bottom:635.545050px;}
.y1d9{bottom:635.549550px;}
.y1a5{bottom:642.299550px;}
.y3d{bottom:642.993900px;}
.y20{bottom:645.089250px;}
.ye{bottom:649.453501px;}
.y10b{bottom:650.366550px;}
.y20b{bottom:652.046550px;}
.y1d8{bottom:652.051050px;}
.ya1{bottom:652.463550px;}
.y12e{bottom:652.465050px;}
.yc9{bottom:652.466550px;}
.y146{bottom:652.469550px;}
.y58{bottom:652.894050px;}
.y7b{bottom:652.895550px;}
.y3c{bottom:656.493900px;}
.y1a4{bottom:658.801050px;}
.y1f{bottom:660.087750px;}
.yd{bottom:664.453501px;}
.y20a{bottom:668.548050px;}
.y1d7{bottom:668.552550px;}
.y10a{bottom:669.865050px;}
.y3b{bottom:669.993900px;}
.ya0{bottom:671.963550px;}
.yc8{bottom:671.965050px;}
.y145{bottom:671.968050px;}
.y57{bottom:672.392550px;}
.y7a{bottom:672.394050px;}
.y1e{bottom:675.087750px;}
.y1a3{bottom:675.302550px;}
.yc{bottom:679.453500px;}
.y3a{bottom:683.493900px;}
.y209{bottom:685.049550px;}
.y1d6{bottom:685.054050px;}
.y109{bottom:689.363550px;}
.y1d{bottom:690.090750px;}
.yc7{bottom:691.463550px;}
.y163{bottom:691.465050px;}
.y144{bottom:691.466550px;}
.y9f{bottom:691.468050px;}
.y1a2{bottom:691.804050px;}
.y56{bottom:691.891050px;}
.y79{bottom:691.892550px;}
.y208{bottom:701.551050px;}
.y1d5{bottom:701.554050px;}
.y1c{bottom:705.089250px;}
.y41{bottom:708.215400px;}
.y1a1{bottom:708.304050px;}
.yc6{bottom:710.963550px;}
.y143{bottom:710.965050px;}
.y9e{bottom:710.966550px;}
.y55{bottom:711.389550px;}
.y78{bottom:711.391050px;}
.y108{bottom:715.909200px;}
.y207{bottom:718.052550px;}
.y1d4{bottom:718.054050px;}
.y1b{bottom:720.087750px;}
.y40{bottom:721.715400px;}
.y1a0{bottom:724.804050px;}
.y142{bottom:730.463550px;}
.y9d{bottom:730.465050px;}
.y187{bottom:730.469550px;}
.yc5{bottom:730.478550px;}
.y54{bottom:730.888050px;}
.y77{bottom:730.889550px;}
.y107{bottom:732.410700px;}
.y1d3{bottom:734.552550px;}
.y206{bottom:734.554050px;}
.y1a{bottom:735.087750px;}
.y3f{bottom:735.215400px;}
.y19f{bottom:741.301200px;}
.y106{bottom:748.912200px;}
.y9c{bottom:749.963550px;}
.y16f{bottom:749.968050px;}
.y162{bottom:749.972550px;}
.yc4{bottom:749.977050px;}
.y53{bottom:750.388050px;}
.y1d2{bottom:751.054050px;}
.y19e{bottom:757.802700px;}
.yb{bottom:761.241002px;}
.y105{bottom:765.413700px;}
.y205{bottom:767.540700px;}
.y1d1{bottom:767.554050px;}
.y9b{bottom:769.463550px;}
.y181{bottom:769.465050px;}
.y16e{bottom:769.466550px;}
.y161{bottom:769.471050px;}
.yc3{bottom:769.475550px;}
.y52{bottom:769.888050px;}
.y19d{bottom:774.304200px;}
.y204{bottom:784.042200px;}
.y1d0{bottom:784.046700px;}
.y104{bottom:788.963550px;}
.y16d{bottom:788.965050px;}
.y9a{bottom:788.966550px;}
.ye6{bottom:788.968050px;}
.y160{bottom:788.969550px;}
.y12d{bottom:788.971050px;}
.yc2{bottom:788.974050px;}
.y51{bottom:789.388050px;}
.ya{bottom:791.630994px;}
.y19{bottom:792.596400px;}
.y203{bottom:800.543700px;}
.y1cf{bottom:800.548200px;}
.y19c{bottom:800.554200px;}
.y103{bottom:808.463550px;}
.y99{bottom:808.465050px;}
.ye5{bottom:808.466550px;}
.y15f{bottom:808.468050px;}
.y12c{bottom:808.469550px;}
.yc1{bottom:808.472550px;}
.y50{bottom:808.888050px;}
.y76{bottom:808.889550px;}
.y9{bottom:809.691006px;}
.y202{bottom:817.045200px;}
.y1ce{bottom:817.049700px;}
.y18{bottom:820.352400px;}
.y98{bottom:827.963550px;}
.ye4{bottom:827.965050px;}
.y15e{bottom:827.966550px;}
.y12b{bottom:827.968050px;}
.y102{bottom:827.969550px;}
.yc0{bottom:827.971050px;}
.y8{bottom:828.215993px;}
.y75{bottom:828.388050px;}
.y4f{bottom:828.398550px;}
.y201{bottom:833.546700px;}
.y1cd{bottom:833.551200px;}
.y97{bottom:847.463550px;}
.y15d{bottom:847.465050px;}
.y12a{bottom:847.466550px;}
.y101{bottom:847.468050px;}
.ybf{bottom:847.469550px;}
.y74{bottom:847.888050px;}
.y4e{bottom:847.897050px;}
.y19b{bottom:849.304200px;}
.y200{bottom:850.048200px;}
.y1cc{bottom:850.052700px;}
.y17{bottom:859.609650px;}
.y1ff{bottom:866.549700px;}
.y1cb{bottom:866.554200px;}
.y96{bottom:866.963550px;}
.y129{bottom:866.965050px;}
.y100{bottom:866.966550px;}
.ybe{bottom:866.968050px;}
.y186{bottom:866.971050px;}
.y4d{bottom:867.395550px;}
.y19a{bottom:875.554200px;}
.y7{bottom:881.115002px;}
.y1fe{bottom:883.051200px;}
.y1ca{bottom:883.054200px;}
.y16{bottom:883.612650px;}
.y95{bottom:886.463550px;}
.ye3{bottom:886.465050px;}
.ybd{bottom:886.466550px;}
.y141{bottom:886.469550px;}
.y4c{bottom:886.894050px;}
.y1c9{bottom:899.548200px;}
.y1fd{bottom:899.552700px;}
.ye2{bottom:905.963550px;}
.y94{bottom:905.965050px;}
.y140{bottom:905.968050px;}
.y4b{bottom:906.392550px;}
.y1c8{bottom:916.049700px;}
.y1fc{bottom:916.054200px;}
.y93{bottom:925.463550px;}
.y13f{bottom:925.466550px;}
.y4a{bottom:925.891050px;}
.y199{bottom:932.551200px;}
.y1fb{bottom:932.554200px;}
.y6{bottom:938.779498px;}
.y92{bottom:944.963550px;}
.y128{bottom:944.965050px;}
.y49{bottom:945.389550px;}
.y198{bottom:949.052700px;}
.y15{bottom:955.448850px;}
.y91{bottom:964.463550px;}
.y48{bottom:964.888050px;}
.y197{bottom:965.554200px;}
.y14{bottom:968.948850px;}
.y5{bottom:970.279498px;}
.y13{bottom:982.448850px;}
.y47{bottom:1005.008400px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.h15{height:30.029571px;}
.hf{height:31.500000px;}
.hb{height:32.175000px;}
.h13{height:34.320000px;}
.h14{height:34.608000px;}
.h4{height:36.726562px;}
.h16{height:36.900000px;}
.he{height:38.610000px;}
.h18{height:40.641000px;}
.h17{height:40.812000px;}
.h2{height:41.317383px;}
.h10{height:44.280000px;}
.h8{height:45.000000px;}
.h12{height:45.108000px;}
.h7{height:45.908203px;}
.h11{height:47.586000px;}
.hd{height:51.660000px;}
.h6{height:55.089844px;}
.hc{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.h9{height:1054.488000px;}
.ha{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:90.112500px;}
.xa{left:105.005250px;}
.x7{left:108.112500px;}
.x4{left:145.650000px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x2{left:228.163499px;}
.x9{left:285.063600px;}
.x1{left:293.590494px;}
.x8{left:514.954950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-5.320000pt;}
.ls1c{letter-spacing:-1.165333pt;}
.ls13{letter-spacing:-0.962667pt;}
.lsb{letter-spacing:-0.861333pt;}
.lsc{letter-spacing:-0.810667pt;}
.ls19{letter-spacing:-0.709333pt;}
.ls8{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.658667pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.506667pt;}
.ls17{letter-spacing:-0.354667pt;}
.ls18{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.253333pt;}
.lse{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.168000pt;}
.lsd{letter-spacing:-0.152000pt;}
.ls3{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:-0.056000pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls2{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.152000pt;}
.ls1b{letter-spacing:0.202667pt;}
.ls11{letter-spacing:0.253333pt;}
.lsf{letter-spacing:0.334400pt;}
.ls1{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.861333pt;}
.ls12{letter-spacing:2.280000pt;}
.ws6{word-spacing:-12.712000pt;}
.wsac{word-spacing:-12.656000pt;}
.ws0{word-spacing:-12.432000pt;}
.wse6{word-spacing:-12.362667pt;}
.ws3{word-spacing:-11.872000pt;}
.ws5{word-spacing:-11.850667pt;}
.ws107{word-spacing:-11.805333pt;}
.wse8{word-spacing:-11.754667pt;}
.wse7{word-spacing:-11.653333pt;}
.wsc1{word-spacing:-11.602667pt;}
.ws8b{word-spacing:-11.501333pt;}
.ws106{word-spacing:-11.450667pt;}
.wse9{word-spacing:-11.400000pt;}
.wsc2{word-spacing:-11.298667pt;}
.wse5{word-spacing:-10.944000pt;}
.wse4{word-spacing:-10.640000pt;}
.ws108{word-spacing:-10.437333pt;}
.ws27{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.720000pt;}
.ws7{word-spacing:-8.362667pt;}
.ws2{word-spacing:-7.840000pt;}
.wsd9{word-spacing:-4.104000pt;}
.wsd8{word-spacing:-3.496000pt;}
.wsb8{word-spacing:-3.248000pt;}
.ws1e{word-spacing:-2.632000pt;}
.ws1f{word-spacing:-2.576000pt;}
.ws48{word-spacing:-2.520000pt;}
.ws4b{word-spacing:-2.464000pt;}
.ws65{word-spacing:-2.408000pt;}
.wsc6{word-spacing:-2.381333pt;}
.ws8d{word-spacing:-2.352000pt;}
.ws88{word-spacing:-2.330667pt;}
.ws3b{word-spacing:-2.296000pt;}
.wsf3{word-spacing:-2.280000pt;}
.ws9b{word-spacing:-2.240000pt;}
.ws83{word-spacing:-2.184000pt;}
.ws110{word-spacing:-2.178667pt;}
.wsb0{word-spacing:-2.128000pt;}
.ws62{word-spacing:-2.072000pt;}
.ws10{word-spacing:-2.063995pt;}
.wsa4{word-spacing:-2.016000pt;}
.wsf4{word-spacing:-1.976000pt;}
.wsb2{word-spacing:-1.960000pt;}
.ws87{word-spacing:-1.925333pt;}
.ws4d{word-spacing:-1.904000pt;}
.ws113{word-spacing:-1.874667pt;}
.ws1c{word-spacing:-1.848000pt;}
.ws90{word-spacing:-1.824000pt;}
.ws8e{word-spacing:-1.792000pt;}
.ws54{word-spacing:-1.736000pt;}
.ws14{word-spacing:-1.728000pt;}
.wsf6{word-spacing:-1.722667pt;}
.ws39{word-spacing:-1.680000pt;}
.wsdb{word-spacing:-1.672000pt;}
.ws1d{word-spacing:-1.624000pt;}
.ws3f{word-spacing:-1.568000pt;}
.ws52{word-spacing:-1.512000pt;}
.wsdc{word-spacing:-1.469333pt;}
.ws4a{word-spacing:-1.456000pt;}
.ws6a{word-spacing:-1.400000pt;}
.ws44{word-spacing:-1.344000pt;}
.ws97{word-spacing:-1.288000pt;}
.wsf7{word-spacing:-1.266667pt;}
.ws45{word-spacing:-1.232000pt;}
.wsd{word-spacing:-1.200000pt;}
.ws69{word-spacing:-1.176000pt;}
.ws2c{word-spacing:-1.120000pt;}
.wsbf{word-spacing:-1.114667pt;}
.wse{word-spacing:-1.104000pt;}
.ws89{word-spacing:-1.064000pt;}
.ws9a{word-spacing:-1.008000pt;}
.ws46{word-spacing:-0.952000pt;}
.wsc0{word-spacing:-0.912000pt;}
.ws5a{word-spacing:-0.896000pt;}
.wsfa{word-spacing:-0.861333pt;}
.wsb9{word-spacing:-0.840000pt;}
.ws60{word-spacing:-0.784000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws7e{word-spacing:-0.728000pt;}
.ws3d{word-spacing:-0.616000pt;}
.ws96{word-spacing:-0.560000pt;}
.ws2d{word-spacing:-0.504000pt;}
.wsbc{word-spacing:-0.456000pt;}
.ws4c{word-spacing:-0.448000pt;}
.wsd6{word-spacing:-0.405333pt;}
.wsc{word-spacing:-0.400000pt;}
.wsae{word-spacing:-0.392000pt;}
.ws7d{word-spacing:-0.336000pt;}
.wsb6{word-spacing:-0.280000pt;}
.wsa6{word-spacing:-0.224000pt;}
.wseb{word-spacing:-0.202667pt;}
.ws23{word-spacing:-0.168000pt;}
.ws6d{word-spacing:-0.112000pt;}
.wsad{word-spacing:-0.056000pt;}
.ws100{word-spacing:-0.050667pt;}
.wsa{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf5{word-spacing:0.050667pt;}
.ws2f{word-spacing:0.056000pt;}
.wsc7{word-spacing:0.101333pt;}
.ws31{word-spacing:0.112000pt;}
.ws5f{word-spacing:0.168000pt;}
.wsc4{word-spacing:0.202667pt;}
.wsaa{word-spacing:0.224000pt;}
.ws115{word-spacing:0.253333pt;}
.wse2{word-spacing:0.304000pt;}
.ws11{word-spacing:0.336000pt;}
.wsc3{word-spacing:0.354667pt;}
.wsbb{word-spacing:0.392000pt;}
.wsa9{word-spacing:0.448000pt;}
.wscc{word-spacing:0.456000pt;}
.ws42{word-spacing:0.504000pt;}
.ws103{word-spacing:0.506667pt;}
.ws32{word-spacing:0.560000pt;}
.ws34{word-spacing:0.616000pt;}
.ws10b{word-spacing:0.658667pt;}
.ws61{word-spacing:0.672000pt;}
.ws10f{word-spacing:0.709333pt;}
.ws9d{word-spacing:0.728000pt;}
.wsf8{word-spacing:0.760000pt;}
.ws40{word-spacing:0.784000pt;}
.ws112{word-spacing:0.810667pt;}
.ws81{word-spacing:0.840000pt;}
.wsc5{word-spacing:0.861333pt;}
.ws5d{word-spacing:0.896000pt;}
.ws26{word-spacing:0.952000pt;}
.ws75{word-spacing:1.008000pt;}
.ws1b{word-spacing:1.056000pt;}
.ws33{word-spacing:1.064000pt;}
.ws10a{word-spacing:1.114667pt;}
.ws74{word-spacing:1.120000pt;}
.ws64{word-spacing:1.176000pt;}
.wscf{word-spacing:1.216000pt;}
.ws93{word-spacing:1.232000pt;}
.ws15{word-spacing:1.248000pt;}
.ws109{word-spacing:1.266667pt;}
.ws78{word-spacing:1.288000pt;}
.wsd0{word-spacing:1.317333pt;}
.ws55{word-spacing:1.344000pt;}
.ws5b{word-spacing:1.400000pt;}
.wscb{word-spacing:1.418667pt;}
.ws4e{word-spacing:1.456000pt;}
.ws85{word-spacing:1.469333pt;}
.ws3c{word-spacing:1.512000pt;}
.ws2e{word-spacing:1.568000pt;}
.wsdd{word-spacing:1.621333pt;}
.wsb1{word-spacing:1.624000pt;}
.ws94{word-spacing:1.680000pt;}
.ws95{word-spacing:1.736000pt;}
.ws49{word-spacing:1.792000pt;}
.ws98{word-spacing:1.848000pt;}
.wsd1{word-spacing:1.874667pt;}
.ws53{word-spacing:1.904000pt;}
.wsf0{word-spacing:1.925333pt;}
.ws29{word-spacing:1.960000pt;}
.ws111{word-spacing:1.976000pt;}
.ws20{word-spacing:2.016000pt;}
.ws9e{word-spacing:2.072000pt;}
.ws57{word-spacing:2.128000pt;}
.wsd4{word-spacing:2.178667pt;}
.ws58{word-spacing:2.184000pt;}
.ws25{word-spacing:2.240000pt;}
.ws102{word-spacing:2.280000pt;}
.ws56{word-spacing:2.296000pt;}
.ws66{word-spacing:2.352000pt;}
.ws7a{word-spacing:2.408000pt;}
.ws38{word-spacing:2.464000pt;}
.wsd5{word-spacing:2.482667pt;}
.ws84{word-spacing:2.520000pt;}
.wsea{word-spacing:2.533333pt;}
.ws73{word-spacing:2.576000pt;}
.ws67{word-spacing:2.688000pt;}
.ws5e{word-spacing:2.744000pt;}
.wsaf{word-spacing:2.800000pt;}
.ws72{word-spacing:2.856000pt;}
.ws30{word-spacing:2.968000pt;}
.wsf{word-spacing:2.976000pt;}
.wsa1{word-spacing:3.024000pt;}
.wsd2{word-spacing:3.040000pt;}
.wsd3{word-spacing:3.090667pt;}
.ws82{word-spacing:3.192000pt;}
.wsee{word-spacing:3.242667pt;}
.ws6f{word-spacing:3.248000pt;}
.wsc8{word-spacing:3.293333pt;}
.ws59{word-spacing:3.304000pt;}
.ws77{word-spacing:3.360000pt;}
.ws21{word-spacing:3.416000pt;}
.ws7f{word-spacing:3.472000pt;}
.wsf2{word-spacing:3.496000pt;}
.wsa5{word-spacing:3.528000pt;}
.ws91{word-spacing:3.546667pt;}
.ws28{word-spacing:3.584000pt;}
.wsa7{word-spacing:3.640000pt;}
.wsce{word-spacing:3.648000pt;}
.ws8a{word-spacing:3.696000pt;}
.wsef{word-spacing:3.698667pt;}
.ws76{word-spacing:3.752000pt;}
.ws2a{word-spacing:3.808000pt;}
.wsa2{word-spacing:3.864000pt;}
.ws3e{word-spacing:3.920000pt;}
.ws9f{word-spacing:4.088000pt;}
.ws2b{word-spacing:4.144000pt;}
.ws50{word-spacing:4.200000pt;}
.ws3a{word-spacing:4.256000pt;}
.ws51{word-spacing:4.368000pt;}
.ws7b{word-spacing:4.424000pt;}
.ws99{word-spacing:4.480000pt;}
.wscd{word-spacing:4.509333pt;}
.wsb5{word-spacing:4.592000pt;}
.ws101{word-spacing:4.610667pt;}
.ws24{word-spacing:4.648000pt;}
.ws6c{word-spacing:4.760000pt;}
.ws70{word-spacing:4.816000pt;}
.ws104{word-spacing:4.864000pt;}
.wsa8{word-spacing:4.872000pt;}
.ws22{word-spacing:4.928000pt;}
.ws36{word-spacing:4.984000pt;}
.wsff{word-spacing:5.016000pt;}
.ws19{word-spacing:5.136000pt;}
.ws4f{word-spacing:5.152000pt;}
.ws5c{word-spacing:5.208000pt;}
.ws6e{word-spacing:5.264000pt;}
.ws7c{word-spacing:5.320000pt;}
.ws105{word-spacing:5.370667pt;}
.ws37{word-spacing:5.376000pt;}
.ws6b{word-spacing:5.432000pt;}
.ws13{word-spacing:5.472000pt;}
.ws68{word-spacing:5.488000pt;}
.wse0{word-spacing:5.522667pt;}
.ws47{word-spacing:5.544000pt;}
.ws10c{word-spacing:5.624000pt;}
.ws10d{word-spacing:5.674667pt;}
.wse1{word-spacing:5.776000pt;}
.wsfe{word-spacing:5.826667pt;}
.wsb7{word-spacing:5.992000pt;}
.wsa0{word-spacing:6.048000pt;}
.ws8f{word-spacing:6.104000pt;}
.wsba{word-spacing:6.160000pt;}
.ws8c{word-spacing:6.216000pt;}
.wsf9{word-spacing:6.282667pt;}
.ws114{word-spacing:6.384000pt;}
.ws71{word-spacing:6.440000pt;}
.ws80{word-spacing:6.496000pt;}
.ws9c{word-spacing:6.552000pt;}
.ws86{word-spacing:6.586667pt;}
.wsf1{word-spacing:6.637333pt;}
.wsa3{word-spacing:6.776000pt;}
.ws63{word-spacing:6.888000pt;}
.wsbe{word-spacing:6.890667pt;}
.wsbd{word-spacing:6.992000pt;}
.ws43{word-spacing:7.224000pt;}
.wsec{word-spacing:7.600000pt;}
.wsfb{word-spacing:7.650667pt;}
.wsed{word-spacing:7.701333pt;}
.ws35{word-spacing:7.728000pt;}
.wsfc{word-spacing:7.802667pt;}
.wsfd{word-spacing:7.853333pt;}
.wsb4{word-spacing:7.896000pt;}
.wsb3{word-spacing:8.288000pt;}
.wse3{word-spacing:8.714667pt;}
.ws79{word-spacing:8.904000pt;}
.ws17{word-spacing:9.168000pt;}
.ws1a{word-spacing:9.312000pt;}
.ws16{word-spacing:9.696000pt;}
.wsde{word-spacing:9.930667pt;}
.wsab{word-spacing:10.024000pt;}
.wsdf{word-spacing:10.032000pt;}
.wsd7{word-spacing:10.234667pt;}
.ws92{word-spacing:10.976000pt;}
.ws9{word-spacing:11.834498pt;}
.ws8{word-spacing:12.282491pt;}
.wsb{word-spacing:12.357157pt;}
.ws18{word-spacing:13.392000pt;}
.wsca{word-spacing:14.642667pt;}
.wsda{word-spacing:14.946667pt;}
.ws10e{word-spacing:20.925333pt;}
.ws41{word-spacing:31.520000pt;}
.wsc9{word-spacing:36.784000pt;}
._14{margin-left:-11.490666pt;}
._d{margin-left:-8.520000pt;}
._f{margin-left:-7.621600pt;}
._4{margin-left:-6.376000pt;}
._5{margin-left:-4.928000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._3{width:1.600000pt;}
._10{width:2.490401pt;}
._13{width:3.538667pt;}
._c{width:4.816000pt;}
._e{width:5.969600pt;}
._12{width:7.592000pt;}
._b{width:9.596000pt;}
._8{width:11.498502pt;}
._6{width:13.125333pt;}
._a{width:40.400000pt;}
._11{width:53.494933pt;}
._7{width:66.765867pt;}
._9{width:90.188267pt;}
.fsa{font-size:37.332800pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:35.524053pt;}
.y45{bottom:46.182573pt;}
.y44{bottom:56.841093pt;}
.y2{bottom:60.086668pt;}
.yff{bottom:63.438267pt;}
.y43{bottom:67.574267pt;}
.y1c7{bottom:72.255600pt;}
.y1{bottom:74.753335pt;}
.y196{bottom:75.964933pt;}
.ybc{bottom:77.300933pt;}
.y13e{bottom:77.302267pt;}
.y73{bottom:77.678267pt;}
.yfe{bottom:80.770267pt;}
.y1fa{bottom:80.924933pt;}
.y42{bottom:82.256400pt;}
.y1c6{bottom:86.923600pt;}
.y195{bottom:90.632933pt;}
.y127{bottom:92.787600pt;}
.ye1{bottom:94.634267pt;}
.ybb{bottom:94.636933pt;}
.y90{bottom:95.011600pt;}
.y72{bottom:95.012933pt;}
.y1f9{bottom:95.592933pt;}
.yfd{bottom:98.102267pt;}
.y1c5{bottom:101.591600pt;}
.y194{bottom:105.300933pt;}
.y126{bottom:110.119600pt;}
.y1f8{bottom:110.260933pt;}
.y13d{bottom:111.967600pt;}
.yba{bottom:111.968933pt;}
.ye0{bottom:111.974267pt;}
.y71{bottom:112.344933pt;}
.yfc{bottom:115.434267pt;}
.y1c4{bottom:116.259600pt;}
.y1f7{bottom:124.928933pt;}
.y125{bottom:127.451600pt;}
.y193{bottom:128.634267pt;}
.yb9{bottom:129.300933pt;}
.y15c{bottom:129.302267pt;}
.y180{bottom:129.304933pt;}
.ydf{bottom:129.306267pt;}
.y13c{bottom:129.308933pt;}
.y70{bottom:129.678267pt;}
.y1c3{bottom:130.927600pt;}
.yfb{bottom:132.767600pt;}
.y39{bottom:136.078000pt;}
.y1f6{bottom:139.596933pt;}
.y124{bottom:144.783600pt;}
.y1c2{bottom:145.595600pt;}
.yb8{bottom:146.634267pt;}
.y17f{bottom:146.636933pt;}
.yde{bottom:146.638267pt;}
.y13b{bottom:146.640933pt;}
.y16c{bottom:146.647600pt;}
.y6f{bottom:147.011600pt;}
.yfa{bottom:150.106267pt;}
.y38{bottom:153.411467pt;}
.y1f5{bottom:154.264933pt;}
.y1c1{bottom:160.263600pt;}
.y123{bottom:162.115600pt;}
.y15b{bottom:163.967600pt;}
.y17e{bottom:163.968933pt;}
.ydd{bottom:163.970267pt;}
.y13a{bottom:163.972933pt;}
.yb7{bottom:163.974267pt;}
.y16b{bottom:163.979600pt;}
.y6e{bottom:164.346267pt;}
.y8f{bottom:164.350267pt;}
.yf9{bottom:167.438267pt;}
.y1f4{bottom:168.932933pt;}
.y37{bottom:170.752800pt;}
.y192{bottom:171.966267pt;}
.y1c0{bottom:174.931600pt;}
.y122{bottom:179.447600pt;}
.y17d{bottom:181.300933pt;}
.ydc{bottom:181.302267pt;}
.y15a{bottom:181.303600pt;}
.y139{bottom:181.304933pt;}
.yb6{bottom:181.306267pt;}
.y16a{bottom:181.311600pt;}
.y6d{bottom:181.678267pt;}
.y8e{bottom:181.682267pt;}
.y1f3{bottom:183.600933pt;}
.yf8{bottom:184.770267pt;}
.y191{bottom:186.634267pt;}
.y36{bottom:188.084800pt;}
.y1bf{bottom:189.599600pt;}
.y121{bottom:196.779600pt;}
.y1f2{bottom:198.268933pt;}
.ydb{bottom:198.634267pt;}
.y159{bottom:198.635600pt;}
.y138{bottom:198.636933pt;}
.yb5{bottom:198.638267pt;}
.y169{bottom:198.643600pt;}
.y8d{bottom:199.014267pt;}
.yf7{bottom:202.102267pt;}
.y1be{bottom:204.267600pt;}
.y35{bottom:205.416800pt;}
.y6c{bottom:207.678267pt;}
.y190{bottom:209.967600pt;}
.y1f1{bottom:212.936933pt;}
.y120{bottom:214.111600pt;}
.yda{bottom:215.967600pt;}
.y137{bottom:215.968933pt;}
.yb4{bottom:215.970267pt;}
.y185{bottom:215.971600pt;}
.y168{bottom:215.975600pt;}
.y17c{bottom:215.979600pt;}
.y8c{bottom:216.346267pt;}
.y1bd{bottom:218.935600pt;}
.yf6{bottom:219.434267pt;}
.y34{bottom:222.748800pt;}
.y1f0{bottom:227.603600pt;}
.y11f{bottom:231.443600pt;}
.yd9{bottom:233.300933pt;}
.yb3{bottom:233.302267pt;}
.y184{bottom:233.303600pt;}
.y167{bottom:233.307600pt;}
.y17b{bottom:233.311600pt;}
.y1bc{bottom:233.603600pt;}
.y8b{bottom:233.678267pt;}
.yf5{bottom:236.767600pt;}
.y33{bottom:240.080800pt;}
.y1ef{bottom:242.263600pt;}
.y1bb{bottom:248.268933pt;}
.y11e{bottom:248.775600pt;}
.yb2{bottom:250.634267pt;}
.y183{bottom:250.635600pt;}
.yd8{bottom:250.639600pt;}
.y17a{bottom:250.643600pt;}
.y6b{bottom:251.011600pt;}
.y18f{bottom:253.300933pt;}
.yf4{bottom:254.100933pt;}
.y1ee{bottom:256.931600pt;}
.y32{bottom:257.412800pt;}
.y1ba{bottom:262.936933pt;}
.y11d{bottom:266.107600pt;}
.y158{bottom:267.967600pt;}
.yd7{bottom:267.971600pt;}
.y179{bottom:267.975600pt;}
.y8a{bottom:268.344933pt;}
.y6a{bottom:268.346267pt;}
.yf3{bottom:271.434267pt;}
.y1ed{bottom:271.599600pt;}
.y31{bottom:274.744800pt;}
.yb1{bottom:276.634267pt;}
.y1b9{bottom:277.602267pt;}
.y11c{bottom:283.439600pt;}
.y157{bottom:285.300933pt;}
.yd6{bottom:285.303600pt;}
.y178{bottom:285.307600pt;}
.y69{bottom:285.678267pt;}
.y1ec{bottom:286.267600pt;}
.y30{bottom:292.078133pt;}
.y1b8{bottom:292.270267pt;}
.yf2{bottom:295.034267pt;}
.y11b{bottom:300.771600pt;}
.y1eb{bottom:300.935600pt;}
.y156{bottom:302.634267pt;}
.yd5{bottom:302.635600pt;}
.y177{bottom:302.639600pt;}
.y68{bottom:303.011600pt;}
.y89{bottom:303.015600pt;}
.y1b7{bottom:306.936933pt;}
.y2f{bottom:309.411467pt;}
.yf1{bottom:309.700933pt;}
.y21d{bottom:315.600933pt;}
.y1ea{bottom:315.603600pt;}
.y11a{bottom:318.103600pt;}
.yd4{bottom:319.967600pt;}
.yb0{bottom:319.968933pt;}
.y176{bottom:319.971600pt;}
.y18e{bottom:319.972933pt;}
.y136{bottom:319.978267pt;}
.y155{bottom:319.992933pt;}
.y67{bottom:320.344933pt;}
.y88{bottom:320.347600pt;}
.y1b6{bottom:321.598267pt;}
.yf0{bottom:324.367600pt;}
.y2e{bottom:326.746133pt;}
.y21c{bottom:330.268933pt;}
.y1e9{bottom:330.270267pt;}
.y119{bottom:335.435600pt;}
.y1b5{bottom:336.266267pt;}
.yaf{bottom:337.300933pt;}
.y175{bottom:337.303600pt;}
.y18d{bottom:337.304933pt;}
.y135{bottom:337.310267pt;}
.y154{bottom:337.324933pt;}
.y66{bottom:337.678267pt;}
.y87{bottom:337.679600pt;}
.yef{bottom:339.031600pt;}
.y2d{bottom:344.078133pt;}
.y1e8{bottom:344.930267pt;}
.y21b{bottom:344.936933pt;}
.y1b4{bottom:350.934267pt;}
.y118{bottom:352.767600pt;}
.yee{bottom:353.699600pt;}
.yae{bottom:354.634267pt;}
.y166{bottom:354.635600pt;}
.y18c{bottom:354.636933pt;}
.y134{bottom:354.642267pt;}
.y153{bottom:354.656933pt;}
.y65{bottom:355.011600pt;}
.y1e7{bottom:359.598267pt;}
.y21a{bottom:359.603600pt;}
.y1b3{bottom:365.602267pt;}
.yed{bottom:368.367600pt;}
.y2c{bottom:370.078133pt;}
.y117{bottom:370.100933pt;}
.yd3{bottom:371.967600pt;}
.y18b{bottom:371.968933pt;}
.y133{bottom:371.974267pt;}
.yad{bottom:371.979600pt;}
.y152{bottom:371.988933pt;}
.y86{bottom:372.344933pt;}
.y64{bottom:372.348933pt;}
.y12{bottom:372.553334pt;}
.y219{bottom:374.260933pt;}
.y1e6{bottom:374.266267pt;}
.y1b2{bottom:380.270267pt;}
.y182{bottom:380.634267pt;}
.y116{bottom:387.451600pt;}
.y218{bottom:388.928933pt;}
.y1e5{bottom:388.934267pt;}
.yec{bottom:389.300933pt;}
.y132{bottom:389.306267pt;}
.yd2{bottom:389.310267pt;}
.yac{bottom:389.311600pt;}
.y151{bottom:389.320933pt;}
.y85{bottom:389.679600pt;}
.y63{bottom:389.680933pt;}
.y1b1{bottom:394.936933pt;}
.y165{bottom:397.967600pt;}
.y217{bottom:403.596933pt;}
.y1e4{bottom:403.602267pt;}
.y115{bottom:404.783600pt;}
.yeb{bottom:406.634267pt;}
.y131{bottom:406.638267pt;}
.yd1{bottom:406.642267pt;}
.yab{bottom:406.643600pt;}
.y150{bottom:406.652933pt;}
.y84{bottom:407.011600pt;}
.y62{bottom:407.012933pt;}
.y1b0{bottom:409.584933pt;}
.y216{bottom:418.264933pt;}
.y1e3{bottom:418.270267pt;}
.y114{bottom:422.115600pt;}
.yea{bottom:423.967600pt;}
.y18a{bottom:423.968933pt;}
.y130{bottom:423.970267pt;}
.yd0{bottom:423.974267pt;}
.yaa{bottom:423.975600pt;}
.y14f{bottom:423.984933pt;}
.y1af{bottom:424.252933pt;}
.y61{bottom:424.344933pt;}
.y2b{bottom:426.744800pt;}
.y11{bottom:432.358667pt;}
.y215{bottom:432.932933pt;}
.y1e2{bottom:432.936933pt;}
.y1ae{bottom:438.920933pt;}
.y113{bottom:439.447600pt;}
.y2a{bottom:440.078133pt;}
.y189{bottom:441.300933pt;}
.ye9{bottom:441.302267pt;}
.y174{bottom:441.304933pt;}
.ycf{bottom:441.306267pt;}
.ya9{bottom:441.307600pt;}
.y14e{bottom:441.316933pt;}
.y60{bottom:441.678267pt;}
.y83{bottom:441.686267pt;}
.y1e1{bottom:447.588933pt;}
.y214{bottom:447.600933pt;}
.y29{bottom:453.424667pt;}
.y1ad{bottom:453.588933pt;}
.y112{bottom:456.779600pt;}
.ye8{bottom:458.634267pt;}
.y173{bottom:458.636933pt;}
.yce{bottom:458.638267pt;}
.ya8{bottom:458.639600pt;}
.y14d{bottom:458.648933pt;}
.y82{bottom:459.018267pt;}
.y5f{bottom:459.026267pt;}
.y1e0{bottom:462.256933pt;}
.y213{bottom:462.268933pt;}
.y28{bottom:466.756667pt;}
.y1ac{bottom:468.256933pt;}
.y111{bottom:474.111600pt;}
.ye7{bottom:475.967600pt;}
.y172{bottom:475.968933pt;}
.ycd{bottom:475.970267pt;}
.ya7{bottom:475.971600pt;}
.y14c{bottom:475.980933pt;}
.y81{bottom:476.350267pt;}
.y5e{bottom:476.358267pt;}
.y1df{bottom:476.924933pt;}
.y212{bottom:476.936933pt;}
.y27{bottom:480.088667pt;}
.y1ab{bottom:482.924933pt;}
.y10{bottom:486.953334pt;}
.y110{bottom:491.443600pt;}
.y1de{bottom:491.592933pt;}
.y211{bottom:491.603600pt;}
.y171{bottom:493.300933pt;}
.ycc{bottom:493.302267pt;}
.ya6{bottom:493.303600pt;}
.y14b{bottom:493.312933pt;}
.y26{bottom:493.420667pt;}
.y80{bottom:493.682267pt;}
.y5d{bottom:493.690267pt;}
.y1aa{bottom:497.592933pt;}
.y1dd{bottom:506.260933pt;}
.y210{bottom:506.267600pt;}
.y25{bottom:506.752667pt;}
.y10f{bottom:508.775600pt;}
.ycb{bottom:510.634267pt;}
.ya5{bottom:510.635600pt;}
.y14a{bottom:510.644933pt;}
.y7f{bottom:511.014267pt;}
.y5c{bottom:511.022267pt;}
.y1a9{bottom:512.260933pt;}
.y24{bottom:520.084667pt;}
.y1dc{bottom:520.928933pt;}
.y20f{bottom:520.935600pt;}
.y10e{bottom:526.107600pt;}
.y1a8{bottom:526.928933pt;}
.ya4{bottom:527.967600pt;}
.y170{bottom:527.971600pt;}
.y149{bottom:527.976933pt;}
.y7e{bottom:528.346267pt;}
.y5b{bottom:528.354267pt;}
.y23{bottom:533.416667pt;}
.y1db{bottom:535.596933pt;}
.y20e{bottom:535.603600pt;}
.yca{bottom:536.634267pt;}
.y1a7{bottom:541.596933pt;}
.y10d{bottom:543.439600pt;}
.ya3{bottom:545.300933pt;}
.y164{bottom:545.303600pt;}
.y148{bottom:545.308933pt;}
.y7d{bottom:545.678267pt;}
.y5a{bottom:545.686267pt;}
.y22{bottom:546.748667pt;}
.yf{bottom:546.758667pt;}
.y1da{bottom:550.264933pt;}
.y20d{bottom:550.270267pt;}
.y1a6{bottom:556.264933pt;}
.y3e{bottom:559.550133pt;}
.y21{bottom:560.080667pt;}
.y10c{bottom:560.771600pt;}
.y188{bottom:562.634267pt;}
.ya2{bottom:562.635600pt;}
.y12f{bottom:562.636933pt;}
.y147{bottom:562.640933pt;}
.y7c{bottom:563.011600pt;}
.y59{bottom:563.018267pt;}
.y20c{bottom:564.928933pt;}
.y1d9{bottom:564.932933pt;}
.y1a5{bottom:570.932933pt;}
.y3d{bottom:571.550133pt;}
.y20{bottom:573.412667pt;}
.ye{bottom:577.292001pt;}
.y10b{bottom:578.103600pt;}
.y20b{bottom:579.596933pt;}
.y1d8{bottom:579.600933pt;}
.ya1{bottom:579.967600pt;}
.y12e{bottom:579.968933pt;}
.yc9{bottom:579.970267pt;}
.y146{bottom:579.972933pt;}
.y58{bottom:580.350267pt;}
.y7b{bottom:580.351600pt;}
.y3c{bottom:583.550133pt;}
.y1a4{bottom:585.600933pt;}
.y1f{bottom:586.744667pt;}
.yd{bottom:590.625335pt;}
.y20a{bottom:594.264933pt;}
.y1d7{bottom:594.268933pt;}
.y10a{bottom:595.435600pt;}
.y3b{bottom:595.550133pt;}
.ya0{bottom:597.300933pt;}
.yc8{bottom:597.302267pt;}
.y145{bottom:597.304933pt;}
.y57{bottom:597.682267pt;}
.y7a{bottom:597.683600pt;}
.y1e{bottom:600.078000pt;}
.y1a3{bottom:600.268933pt;}
.yc{bottom:603.958667pt;}
.y3a{bottom:607.550133pt;}
.y209{bottom:608.932933pt;}
.y1d6{bottom:608.936933pt;}
.y109{bottom:612.767600pt;}
.y1d{bottom:613.414000pt;}
.yc7{bottom:614.634267pt;}
.y163{bottom:614.635600pt;}
.y144{bottom:614.636933pt;}
.y9f{bottom:614.638267pt;}
.y1a2{bottom:614.936933pt;}
.y56{bottom:615.014267pt;}
.y79{bottom:615.015600pt;}
.y208{bottom:623.600933pt;}
.y1d5{bottom:623.603600pt;}
.y1c{bottom:626.746000pt;}
.y41{bottom:629.524800pt;}
.y1a1{bottom:629.603600pt;}
.yc6{bottom:631.967600pt;}
.y143{bottom:631.968933pt;}
.y9e{bottom:631.970267pt;}
.y55{bottom:632.346267pt;}
.y78{bottom:632.347600pt;}
.y108{bottom:636.363733pt;}
.y207{bottom:638.268933pt;}
.y1d4{bottom:638.270267pt;}
.y1b{bottom:640.078000pt;}
.y40{bottom:641.524800pt;}
.y1a0{bottom:644.270267pt;}
.y142{bottom:649.300933pt;}
.y9d{bottom:649.302267pt;}
.y187{bottom:649.306267pt;}
.yc5{bottom:649.314267pt;}
.y54{bottom:649.678267pt;}
.y77{bottom:649.679600pt;}
.y107{bottom:651.031733pt;}
.y1d3{bottom:652.935600pt;}
.y206{bottom:652.936933pt;}
.y1a{bottom:653.411333pt;}
.y3f{bottom:653.524800pt;}
.y19f{bottom:658.934400pt;}
.y106{bottom:665.699733pt;}
.y9c{bottom:666.634267pt;}
.y16f{bottom:666.638267pt;}
.y162{bottom:666.642267pt;}
.yc4{bottom:666.646267pt;}
.y53{bottom:667.011600pt;}
.y1d2{bottom:667.603600pt;}
.y19e{bottom:673.602400pt;}
.yb{bottom:676.658668pt;}
.y105{bottom:680.367733pt;}
.y205{bottom:682.258400pt;}
.y1d1{bottom:682.270267pt;}
.y9b{bottom:683.967600pt;}
.y181{bottom:683.968933pt;}
.y16e{bottom:683.970267pt;}
.y161{bottom:683.974267pt;}
.yc3{bottom:683.978267pt;}
.y52{bottom:684.344933pt;}
.y19d{bottom:688.270400pt;}
.y204{bottom:696.926400pt;}
.y1d0{bottom:696.930400pt;}
.y104{bottom:701.300933pt;}
.y16d{bottom:701.302267pt;}
.y9a{bottom:701.303600pt;}
.ye6{bottom:701.304933pt;}
.y160{bottom:701.306267pt;}
.y12d{bottom:701.307600pt;}
.yc2{bottom:701.310267pt;}
.y51{bottom:701.678267pt;}
.ya{bottom:703.671994pt;}
.y19{bottom:704.530133pt;}
.y203{bottom:711.594400pt;}
.y1cf{bottom:711.598400pt;}
.y19c{bottom:711.603733pt;}
.y103{bottom:718.634267pt;}
.y99{bottom:718.635600pt;}
.ye5{bottom:718.636933pt;}
.y15f{bottom:718.638267pt;}
.y12c{bottom:718.639600pt;}
.yc1{bottom:718.642267pt;}
.y50{bottom:719.011600pt;}
.y76{bottom:719.012933pt;}
.y9{bottom:719.725339pt;}
.y202{bottom:726.262400pt;}
.y1ce{bottom:726.266400pt;}
.y18{bottom:729.202133pt;}
.y98{bottom:735.967600pt;}
.ye4{bottom:735.968933pt;}
.y15e{bottom:735.970267pt;}
.y12b{bottom:735.971600pt;}
.y102{bottom:735.972933pt;}
.yc0{bottom:735.974267pt;}
.y8{bottom:736.191993pt;}
.y75{bottom:736.344933pt;}
.y4f{bottom:736.354267pt;}
.y201{bottom:740.930400pt;}
.y1cd{bottom:740.934400pt;}
.y97{bottom:753.300933pt;}
.y15d{bottom:753.302267pt;}
.y12a{bottom:753.303600pt;}
.y101{bottom:753.304933pt;}
.ybf{bottom:753.306267pt;}
.y74{bottom:753.678267pt;}
.y4e{bottom:753.686267pt;}
.y19b{bottom:754.937067pt;}
.y200{bottom:755.598400pt;}
.y1cc{bottom:755.602400pt;}
.y17{bottom:764.097467pt;}
.y1ff{bottom:770.266400pt;}
.y1cb{bottom:770.270400pt;}
.y96{bottom:770.634267pt;}
.y129{bottom:770.635600pt;}
.y100{bottom:770.636933pt;}
.ybe{bottom:770.638267pt;}
.y186{bottom:770.640933pt;}
.y4d{bottom:771.018267pt;}
.y19a{bottom:778.270400pt;}
.y7{bottom:783.213335pt;}
.y1fe{bottom:784.934400pt;}
.y1ca{bottom:784.937067pt;}
.y16{bottom:785.433467pt;}
.y95{bottom:787.967600pt;}
.ye3{bottom:787.968933pt;}
.ybd{bottom:787.970267pt;}
.y141{bottom:787.972933pt;}
.y4c{bottom:788.350267pt;}
.y1c9{bottom:799.598400pt;}
.y1fd{bottom:799.602400pt;}
.ye2{bottom:805.300933pt;}
.y94{bottom:805.302267pt;}
.y140{bottom:805.304933pt;}
.y4b{bottom:805.682267pt;}
.y1c8{bottom:814.266400pt;}
.y1fc{bottom:814.270400pt;}
.y93{bottom:822.634267pt;}
.y13f{bottom:822.636933pt;}
.y4a{bottom:823.014267pt;}
.y199{bottom:828.934400pt;}
.y1fb{bottom:828.937067pt;}
.y6{bottom:834.470665pt;}
.y92{bottom:839.967600pt;}
.y128{bottom:839.968933pt;}
.y49{bottom:840.346267pt;}
.y198{bottom:843.602400pt;}
.y15{bottom:849.287867pt;}
.y91{bottom:857.300933pt;}
.y48{bottom:857.678267pt;}
.y197{bottom:858.270400pt;}
.y14{bottom:861.287867pt;}
.y5{bottom:862.470665pt;}
.y13{bottom:873.287867pt;}
.y47{bottom:893.340800pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.h15{height:26.692952pt;}
.hf{height:28.000000pt;}
.hb{height:28.600000pt;}
.h13{height:30.506667pt;}
.h14{height:30.762667pt;}
.h4{height:32.645833pt;}
.h16{height:32.800000pt;}
.he{height:34.320000pt;}
.h18{height:36.125333pt;}
.h17{height:36.277333pt;}
.h2{height:36.726562pt;}
.h10{height:39.360000pt;}
.h8{height:40.000000pt;}
.h12{height:40.096000pt;}
.h7{height:40.807292pt;}
.h11{height:42.298667pt;}
.hd{height:45.920000pt;}
.h6{height:48.968750pt;}
.hc{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.h9{height:937.322667pt;}
.ha{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:80.100000pt;}
.xa{left:93.338000pt;}
.x7{left:96.100000pt;}
.x4{left:129.466667pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x2{left:202.812000pt;}
.x9{left:253.389867pt;}
.x1{left:260.969328pt;}
.x8{left:457.737733pt;}
}




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