
    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_acc28a29be960508fe980238.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_877a2c2510e99601b68202b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b65801c0d524a2cea0dc211.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_febd133050a0156e2c1e0869.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d1e2e60000ec201a83b39c7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_652102e6f9ebe322de5cad89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_2c5c9f39d4b52a65c0569765.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4e22e716cef94a6bfceac437.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_13cf497abd63ed4dffd3cc12.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dd68dfc14922b700c412ea2a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5f014a8bd60184e94b88d46b.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4e22e716cef94a6bfceac437.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_35f16cac371737fa9703015c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5f014a8bd60184e94b88d46b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_dda07dbf561243b1712675a5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a99d5f5223a9d9968afef0b6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_00f25148e5f47fdf6d5ed9a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{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);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls1c{letter-spacing:-0.513600px;}
.ls15{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.159600px;}
.ls19{letter-spacing:-0.138000px;}
.ls7{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000284px;}
.ls4b{letter-spacing:0.000566px;}
.ls1d{letter-spacing:0.000845px;}
.ls4a{letter-spacing:0.001155px;}
.ls25{letter-spacing:0.002467px;}
.ls41{letter-spacing:0.004437px;}
.ls49{letter-spacing:0.004800px;}
.ls16{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.201600px;}
.ls18{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.289045px;}
.lsa{letter-spacing:0.295781px;}
.ls11{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.590721px;}
.ls20{letter-spacing:0.642088px;}
.ls21{letter-spacing:0.648088px;}
.ls1b{letter-spacing:0.894000px;}
.ls17{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls24{letter-spacing:11.957700px;}
.ls6{letter-spacing:11.960850px;}
.ls1e{letter-spacing:12.493100px;}
.ls4c{letter-spacing:13.267942px;}
.ls3f{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.450090px;}
.ls45{letter-spacing:13.450800px;}
.ls48{letter-spacing:13.454400px;}
.ls42{letter-spacing:13.454592px;}
.ls47{letter-spacing:13.507543px;}
.ls44{letter-spacing:13.508316px;}
.ls4e{letter-spacing:13.598787px;}
.ls3e{letter-spacing:13.615362px;}
.ls46{letter-spacing:13.632136px;}
.ls3c{letter-spacing:13.640024px;}
.ls43{letter-spacing:14.656282px;}
.ls29{letter-spacing:14.732753px;}
.ls28{letter-spacing:14.732988px;}
.ls37{letter-spacing:14.806250px;}
.ls38{letter-spacing:14.806318px;}
.lsc{letter-spacing:14.843276px;}
.ls31{letter-spacing:14.849794px;}
.lsf{letter-spacing:14.893737px;}
.lsd{letter-spacing:14.899257px;}
.ls3b{letter-spacing:14.944200px;}
.ls39{letter-spacing:14.993244px;}
.ls3a{letter-spacing:14.994612px;}
.ls33{letter-spacing:15.082721px;}
.ls35{letter-spacing:15.088603px;}
.ls34{letter-spacing:15.088671px;}
.ls2a{letter-spacing:15.122678px;}
.ls40{letter-spacing:15.144518px;}
.ls2f{letter-spacing:15.147427px;}
.ls30{letter-spacing:15.147494px;}
.ls2e{letter-spacing:15.289751px;}
.ls2d{letter-spacing:15.291244px;}
.lsb{letter-spacing:15.520609px;}
.ls2c{letter-spacing:16.818015px;}
.ls2b{letter-spacing:16.818082px;}
.ls4d{letter-spacing:17.668047px;}
.ls26{letter-spacing:18.600368px;}
.ls27{letter-spacing:18.600435px;}
.ls36{letter-spacing:19.023965px;}
.ls32{letter-spacing:23.541612px;}
.ls1{letter-spacing:57.421200px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.lse{letter-spacing:164.726082px;}
.ls23{letter-spacing:241.104600px;}
.ls22{letter-spacing:241.110600px;}
.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;}
}
.ws5b{word-spacing:-15.834000px;}
.ws58{word-spacing:-15.300000px;}
.ws57{word-spacing:-15.199800px;}
.ws5a{word-spacing:-15.141600px;}
.ws5d{word-spacing:-15.120000px;}
.ws7b{word-spacing:-14.943900px;}
.ws66{word-spacing:-14.940000px;}
.ws59{word-spacing:-14.780400px;}
.ws67{word-spacing:-14.580000px;}
.ws5c{word-spacing:-14.426400px;}
.ws56{word-spacing:-13.500000px;}
.ws5e{word-spacing:-13.449600px;}
.ws54{word-spacing:-12.420000px;}
.ws53{word-spacing:-12.060000px;}
.ws21{word-spacing:-11.955150px;}
.ws55{word-spacing:-11.700000px;}
.ws1{word-spacing:-11.357400px;}
.wsaa{word-spacing:-3.174106px;}
.ws78{word-spacing:-3.168107px;}
.ws64{word-spacing:-2.988780px;}
.wsab{word-spacing:-2.958912px;}
.ws98{word-spacing:-2.929004px;}
.ws2c{word-spacing:-2.749678px;}
.ws24{word-spacing:-2.570351px;}
.ws27{word-spacing:-2.510575px;}
.ws3d{word-spacing:-2.450800px;}
.ws95{word-spacing:-2.391024px;}
.ws51{word-spacing:-2.271473px;}
.ws28{word-spacing:-2.092146px;}
.ws4d{word-spacing:-2.032370px;}
.wsa5{word-spacing:-1.972595px;}
.ws8{word-spacing:-1.908367px;}
.ws39{word-spacing:-1.853044px;}
.wsbf{word-spacing:-1.613952px;}
.ws26{word-spacing:-1.613941px;}
.wsa2{word-spacing:-1.554166px;}
.wsa4{word-spacing:-1.434614px;}
.ws7{word-spacing:-1.322630px;}
.wsa0{word-spacing:-1.315063px;}
.wsa8{word-spacing:-0.956410px;}
.wse7{word-spacing:-0.914573px;}
.ws96{word-spacing:-0.896634px;}
.ws2f{word-spacing:-0.717307px;}
.ws4b{word-spacing:-0.657532px;}
.wsdf{word-spacing:-0.591782px;}
.wsde{word-spacing:-0.537984px;}
.ws4a{word-spacing:-0.537980px;}
.ws2e{word-spacing:-0.478205px;}
.ws65{word-spacing:-0.358654px;}
.wsdc{word-spacing:-0.322790px;}
.wsa{word-spacing:-0.298878px;}
.wsb2{word-spacing:-0.268992px;}
.ws30{word-spacing:-0.239102px;}
.ws7d{word-spacing:-0.222873px;}
.wsb7{word-spacing:-0.215194px;}
.ws7c{word-spacing:-0.206562px;}
.wsb6{word-spacing:-0.185454px;}
.ws16{word-spacing:-0.179327px;}
.wsba{word-spacing:-0.161395px;}
.ws90{word-spacing:-0.119933px;}
.ws10{word-spacing:-0.119551px;}
.wsb3{word-spacing:-0.107597px;}
.ws8e{word-spacing:-0.100982px;}
.ws76{word-spacing:-0.095641px;}
.wscd{word-spacing:-0.079554px;}
.wsc{word-spacing:-0.059776px;}
.wsbb{word-spacing:-0.053798px;}
.wsd5{word-spacing:-0.007238px;}
.wsc6{word-spacing:-0.007210px;}
.wscf{word-spacing:-0.006595px;}
.wsbd{word-spacing:-0.003821px;}
.ws70{word-spacing:-0.003562px;}
.wse8{word-spacing:-0.003466px;}
.wsb5{word-spacing:-0.002304px;}
.wsca{word-spacing:-0.000845px;}
.ws77{word-spacing:-0.000227px;}
.ws0{word-spacing:0.000000px;}
.ws91{word-spacing:0.048065px;}
.ws5{word-spacing:0.053798px;}
.ws93{word-spacing:0.055654px;}
.ws15{word-spacing:0.059776px;}
.wsd0{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.wsad{word-spacing:0.161395px;}
.ws23{word-spacing:0.179327px;}
.ws7e{word-spacing:0.193924px;}
.ws4{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.ws8b{word-spacing:0.257841px;}
.wsc9{word-spacing:0.268992px;}
.ws12{word-spacing:0.298878px;}
.ws86{word-spacing:0.322547px;}
.wsc7{word-spacing:0.322790px;}
.ws84{word-spacing:0.345680px;}
.ws82{word-spacing:0.357961px;}
.ws18{word-spacing:0.358654px;}
.wse0{word-spacing:0.376589px;}
.wsa1{word-spacing:0.418429px;}
.wsc5{word-spacing:0.430387px;}
.wsec{word-spacing:0.484186px;}
.ws34{word-spacing:0.537980px;}
.ws3{word-spacing:0.556186px;}
.wsdd{word-spacing:0.591782px;}
.wsd9{word-spacing:0.645581px;}
.wsbe{word-spacing:0.699379px;}
.ws1e{word-spacing:0.717307px;}
.ws9e{word-spacing:0.777083px;}
.wsa6{word-spacing:0.836858px;}
.ws97{word-spacing:0.896634px;}
.wsc4{word-spacing:0.914573px;}
.ws3a{word-spacing:1.016185px;}
.wse6{word-spacing:1.129766px;}
.wsb1{word-spacing:1.291162px;}
.ws9a{word-spacing:1.315063px;}
.ws48{word-spacing:1.434614px;}
.ws94{word-spacing:1.613941px;}
.wsb9{word-spacing:1.721549px;}
.wse{word-spacing:1.733492px;}
.ws80{word-spacing:1.853044px;}
.ws1f{word-spacing:1.912819px;}
.ws40{word-spacing:1.972595px;}
.wseb{word-spacing:1.990541px;}
.ws62{word-spacing:2.032370px;}
.wsdb{word-spacing:2.044339px;}
.ws3b{word-spacing:2.092146px;}
.ws9c{word-spacing:2.151922px;}
.ws2b{word-spacing:2.331248px;}
.ws61{word-spacing:2.391024px;}
.wsa3{word-spacing:2.450800px;}
.ws47{word-spacing:2.510575px;}
.ws17{word-spacing:2.630126px;}
.wsea{word-spacing:2.743718px;}
.wsc8{word-spacing:2.797517px;}
.ws9f{word-spacing:2.809453px;}
.ws36{word-spacing:2.869229px;}
.ws20{word-spacing:2.869236px;}
.ws4c{word-spacing:3.048556px;}
.ws5f{word-spacing:3.108331px;}
.wsaf{word-spacing:3.174106px;}
.wsd1{word-spacing:3.219235px;}
.wsd2{word-spacing:3.220570px;}
.wsd8{word-spacing:3.221702px;}
.wscc{word-spacing:3.223334px;}
.wsda{word-spacing:3.225571px;}
.ws9d{word-spacing:3.227882px;}
.ws6{word-spacing:3.227904px;}
.wsc3{word-spacing:3.230333px;}
.wsc0{word-spacing:3.281702px;}
.ws9{word-spacing:3.300586px;}
.wse3{word-spacing:3.335501px;}
.ws31{word-spacing:3.407209px;}
.wsd4{word-spacing:3.443098px;}
.wsd{word-spacing:3.466985px;}
.wsae{word-spacing:3.496896px;}
.ws1a{word-spacing:3.535375px;}
.wsc2{word-spacing:3.550694px;}
.ws19{word-spacing:3.567101px;}
.ws1b{word-spacing:3.583475px;}
.ws1c{word-spacing:3.586536px;}
.ws41{word-spacing:3.646312px;}
.wsac{word-spacing:3.658291px;}
.ws92{word-spacing:3.667908px;}
.ws8f{word-spacing:3.680530px;}
.ws29{word-spacing:3.706087px;}
.ws2a{word-spacing:3.765863px;}
.wsbc{word-spacing:3.765888px;}
.wsa7{word-spacing:3.825638px;}
.ws7f{word-spacing:3.864103px;}
.ws13{word-spacing:3.936634px;}
.ws6a{word-spacing:3.945190px;}
.ws8d{word-spacing:4.064741px;}
.ws83{word-spacing:4.093495px;}
.ws37{word-spacing:4.124516px;}
.ws42{word-spacing:4.184292px;}
.wse5{word-spacing:4.196275px;}
.ws99{word-spacing:4.363619px;}
.ws1d{word-spacing:4.423394px;}
.wsb4{word-spacing:4.465267px;}
.ws8c{word-spacing:4.533471px;}
.ws79{word-spacing:4.651959px;}
.ws68{word-spacing:4.662497px;}
.ws87{word-spacing:4.698177px;}
.ws11{word-spacing:4.722272px;}
.ws49{word-spacing:4.782048px;}
.ws45{word-spacing:4.841824px;}
.ws38{word-spacing:4.901599px;}
.ws44{word-spacing:4.961375px;}
.ws9b{word-spacing:5.021150px;}
.ws3f{word-spacing:5.200477px;}
.ws8a{word-spacing:5.320028px;}
.ws60{word-spacing:5.499355px;}
.ws3c{word-spacing:5.559131px;}
.ws69{word-spacing:5.917784px;}
.ws22{word-spacing:6.037336px;}
.ws43{word-spacing:6.156887px;}
.ws46{word-spacing:6.216662px;}
.ws52{word-spacing:6.276438px;}
.ws35{word-spacing:6.395989px;}
.ws25{word-spacing:6.575316px;}
.ws2d{word-spacing:6.694867px;}
.wse2{word-spacing:6.886195px;}
.wscb{word-spacing:7.208986px;}
.wsf{word-spacing:7.239729px;}
.ws6b{word-spacing:7.412174px;}
.wse9{word-spacing:7.631915px;}
.wsb8{word-spacing:7.639373px;}
.wsd6{word-spacing:8.392550px;}
.ws89{word-spacing:8.607686px;}
.wsd3{word-spacing:8.661542px;}
.ws3e{word-spacing:9.026116px;}
.wsc1{word-spacing:9.629914px;}
.ws85{word-spacing:9.683647px;}
.ws81{word-spacing:9.721707px;}
.wsb0{word-spacing:10.006502px;}
.wsa9{word-spacing:10.221628px;}
.wsd7{word-spacing:10.867277px;}
.ws32{word-spacing:11.716018px;}
.ws33{word-spacing:12.253998px;}
.ws63{word-spacing:13.031081px;}
.wse4{word-spacing:13.664794px;}
.wse1{word-spacing:13.933786px;}
.ws7a{word-spacing:15.074648px;}
.wsce{word-spacing:29.266330px;}
.ws88{word-spacing:29.892295px;}
.ws2{word-spacing:40.042186px;}
.ws75{word-spacing:121.399584px;}
.ws6d{word-spacing:131.890272px;}
.ws73{word-spacing:132.535738px;}
.ws74{word-spacing:143.026426px;}
.ws6e{word-spacing:144.663898px;}
.ws6f{word-spacing:153.648230px;}
.ws71{word-spacing:205.035946px;}
.ws72{word-spacing:205.041946px;}
.ws6c{word-spacing:222.886771px;}
.ws4f{word-spacing:612.890740px;}
.ws4e{word-spacing:719.452459px;}
.ws50{word-spacing:721.333251px;}
._2{margin-left:-11.943245px;}
._8{margin-left:-7.709329px;}
._9{margin-left:-6.635092px;}
._7{margin-left:-5.499355px;}
._5{margin-left:-4.428901px;}
._6{margin-left:-3.288640px;}
._b{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._c{width:1.091170px;}
._3{width:3.001438px;}
._4d{width:4.047102px;}
._4b{width:5.677200px;}
._4c{width:6.749020px;}
._4e{width:8.239330px;}
._0{width:10.165172px;}
._12{width:11.955150px;}
._1d{width:13.948679px;}
._17{width:15.481880px;}
._a{width:16.677504px;}
._d{width:18.338172px;}
._6d{width:19.341420px;}
._10{width:20.443255px;}
._1a{width:22.535401px;}
._e{width:24.142027px;}
._1c{width:26.002386px;}
._6c{width:27.078347px;}
._18{width:29.269677px;}
._19{width:30.280355px;}
._11{width:32.219048px;}
._f{width:33.295009px;}
._1b{width:34.729624px;}
._15{width:37.227262px;}
._16{width:38.734589px;}
._70{width:40.804533px;}
._6f{width:50.086310px;}
._4{width:54.401642px;}
._6e{width:75.532954px;}
._59{width:112.522733px;}
._58{width:134.280806px;}
._50{width:138.154291px;}
._5d{width:139.260538px;}
._57{width:149.757226px;}
._3a{width:154.509005px;}
._61{width:156.122957px;}
._55{width:158.113498px;}
._5c{width:161.078410px;}
._1f{width:164.723804px;}
._5a{width:167.097830px;}
._56{width:171.509299px;}
._69{width:175.724525px;}
._6a{width:178.234099px;}
._60{width:180.416314px;}
._5f{width:188.724787px;}
._63{width:190.987882px;}
._68{width:196.936733px;}
._66{width:206.585856px;}
._1e{width:207.979893px;}
._5e{width:210.935002px;}
._5b{width:219.921667px;}
._54{width:227.399251px;}
._62{width:240.532646px;}
._52{width:244.029542px;}
._67{width:256.779763px;}
._65{width:261.137434px;}
._53{width:266.893862px;}
._64{width:278.406720px;}
._46{width:293.482331px;}
._49{width:306.931931px;}
._25{width:309.588273px;}
._51{width:315.312422px;}
._24{width:321.912410px;}
._29{width:334.286042px;}
._23{width:341.759716px;}
._22{width:350.124291px;}
._28{width:354.133348px;}
._26{width:357.949889px;}
._36{width:362.448429px;}
._20{width:373.683686px;}
._47{width:389.620072px;}
._44{width:408.772302px;}
._48{width:410.386254px;}
._43{width:423.997249px;}
._13{width:427.576194px;}
._3f{width:489.846491px;}
._33{width:497.222028px;}
._32{width:514.050168px;}
._38{width:529.937911px;}
._27{width:531.521736px;}
._42{width:546.227214px;}
._3c{width:552.670963px;}
._3e{width:561.236968px;}
._41{width:566.120563px;}
._3d{width:579.205633px;}
._3b{width:593.193217px;}
._40{width:606.642817px;}
._37{width:622.096722px;}
._2c{width:681.490156px;}
._39{width:689.706248px;}
._2e{width:692.824403px;}
._45{width:760.775233px;}
._21{width:762.661182px;}
._2b{width:850.068518px;}
._30{width:862.392656px;}
._2d{width:869.915824px;}
._35{width:871.895605px;}
._31{width:882.289456px;}
._34{width:894.118648px;}
._2a{width:1118.229871px;}
._2f{width:1259.437759px;}
._6b{width:1545.191437px;}
._14{width:1569.103601px;}
._4a{width:1607.337170px;}
._4f{width:3048.793601px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs11{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:48.240000px;}
.fsa{font-size:49.494528px;}
.fsb{font-size:51.573360px;}
.fs6{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fsd{font-size:59.760000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsf{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.ycc{bottom:-409.300500px;}
.yea{bottom:-404.391000px;}
.yda{bottom:-297.670500px;}
.yd9{bottom:-277.510500px;}
.yd8{bottom:-257.170500px;}
.y11a{bottom:-250.456500px;}
.yf6{bottom:-244.881000px;}
.yd7{bottom:-237.010500px;}
.yf5{bottom:-224.541000px;}
.yd6{bottom:-216.670500px;}
.yf4{bottom:-204.381000px;}
.yd5{bottom:-196.510500px;}
.yf3{bottom:-184.041000px;}
.yd4{bottom:-176.170500px;}
.yf2{bottom:-163.881000px;}
.yd3{bottom:-156.010500px;}
.yf1{bottom:-143.541000px;}
.yd2{bottom:-135.805500px;}
.yf0{bottom:-123.336000px;}
.yd1{bottom:-115.465500px;}
.yef{bottom:-102.996000px;}
.yd0{bottom:-95.305500px;}
.yee{bottom:-82.836000px;}
.ycf{bottom:-65.965500px;}
.yed{bottom:-62.676000px;}
.y11d{bottom:-60.877500px;}
.yce{bottom:-28.345500px;}
.yec{bottom:-24.876000px;}
.y11c{bottom:-23.437500px;}
.ycd{bottom:-3.865500px;}
.yeb{bottom:-0.396000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:1.042500px;}
.y1d{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y1c{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y35{bottom:63.780000px;}
.y34{bottom:108.612000px;}
.y8d{bottom:113.349000px;}
.y13d{bottom:119.863500px;}
.ya6{bottom:127.041000px;}
.y1a0{bottom:128.325000px;}
.y33{bottom:128.875500px;}
.y8c{bottom:133.612500px;}
.y136{bottom:140.128500px;}
.ya5{bottom:142.233420px;}
.y65{bottom:145.837500px;}
.y19f{bottom:147.691500px;}
.y32{bottom:149.139000px;}
.y16d{bottom:150.651000px;}
.y8b{bottom:153.877500px;}
.ya4{bottom:157.425840px;}
.y135{bottom:160.392000px;}
.y64{bottom:166.101000px;}
.y19e{bottom:167.059500px;}
.y31{bottom:169.404000px;}
.y16c{bottom:170.017500px;}
.ya3{bottom:172.618260px;}
.y8a{bottom:174.141000px;}
.ye7{bottom:177.445500px;}
.y134{bottom:180.657000px;}
.y63{bottom:186.364500px;}
.y19d{bottom:186.427500px;}
.ya2{bottom:187.809300px;}
.y16b{bottom:189.385500px;}
.y30{bottom:189.667500px;}
.y89{bottom:194.404500px;}
.ye6{bottom:197.709000px;}
.y133{bottom:200.920500px;}
.ya1{bottom:203.001720px;}
.y19c{bottom:205.794000px;}
.y62{bottom:206.629500px;}
.y16a{bottom:208.753500px;}
.y2f{bottom:209.932500px;}
.y88{bottom:214.669500px;}
.ye5{bottom:217.972500px;}
.ya0{bottom:218.194140px;}
.y132{bottom:221.184000px;}
.y19b{bottom:225.162000px;}
.y100{bottom:226.153500px;}
.y61{bottom:226.893000px;}
.y169{bottom:228.120000px;}
.y9f{bottom:233.386560px;}
.y87{bottom:234.933000px;}
.ye4{bottom:238.237500px;}
.y2e{bottom:239.163000px;}
.y131{bottom:241.449000px;}
.y19a{bottom:244.528500px;}
.yff{bottom:246.417000px;}
.y60{bottom:247.158000px;}
.y168{bottom:247.488000px;}
.y9e{bottom:248.577600px;}
.y13c{bottom:250.414500px;}
.y86{bottom:255.198000px;}
.ye3{bottom:258.501000px;}
.y130{bottom:261.712500px;}
.y9d{bottom:263.770020px;}
.y199{bottom:263.896500px;}
.yfe{bottom:266.682000px;}
.y167{bottom:266.854500px;}
.y5f{bottom:267.421500px;}
.y85{bottom:275.461500px;}
.ye2{bottom:278.766000px;}
.y9c{bottom:278.962440px;}
.y12f{bottom:281.977500px;}
.y198{bottom:283.264500px;}
.y13b{bottom:285.234000px;}
.y11e{bottom:286.038000px;}
.y166{bottom:286.222500px;}
.yfd{bottom:286.945500px;}
.y5e{bottom:287.685000px;}
.y9b{bottom:294.154860px;}
.y84{bottom:295.725000px;}
.ye1{bottom:299.029500px;}
.y12e{bottom:302.241000px;}
.y197{bottom:302.631000px;}
.y13a{bottom:305.499000px;}
.y165{bottom:305.590500px;}
.yfc{bottom:307.209000px;}
.y118{bottom:308.467500px;}
.y9a{bottom:309.345900px;}
.y2d{bottom:315.570000px;}
.y83{bottom:315.990000px;}
.y5d{bottom:316.915500px;}
.ye0{bottom:319.293000px;}
.y196{bottom:321.999000px;}
.y12d{bottom:322.504500px;}
.y99{bottom:324.538320px;}
.y164{bottom:324.957000px;}
.y139{bottom:325.762500px;}
.yfb{bottom:327.474000px;}
.y82{bottom:336.253500px;}
.ydf{bottom:339.558000px;}
.y98{bottom:339.730740px;}
.y195{bottom:341.367000px;}
.y12c{bottom:342.769500px;}
.y163{bottom:344.325000px;}
.y138{bottom:346.027500px;}
.yfa{bottom:347.737500px;}
.y117{bottom:348.816000px;}
.y5c{bottom:351.735000px;}
.y2c{bottom:353.767500px;}
.y97{bottom:354.923160px;}
.y81{bottom:356.518500px;}
.yde{bottom:359.821500px;}
.y194{bottom:360.733500px;}
.y115{bottom:363.013500px;}
.y12b{bottom:363.033000px;}
.y162{bottom:363.691500px;}
.y137{bottom:366.291000px;}
.y116{bottom:367.353000px;}
.yf9{bottom:368.002500px;}
.y96{bottom:370.114200px;}
.y2b{bottom:374.031000px;}
.y80{bottom:376.782000px;}
.ydd{bottom:380.086500px;}
.y193{bottom:380.101500px;}
.y161{bottom:383.059500px;}
.y12a{bottom:383.298000px;}
.y114{bottom:384.789000px;}
.y95{bottom:385.306620px;}
.y5b{bottom:386.554500px;}
.yf8{bottom:388.266000px;}
.y2a{bottom:394.296000px;}
.y7f{bottom:397.045500px;}
.y192{bottom:399.468000px;}
.y94{bottom:400.499040px;}
.y113{bottom:401.302500px;}
.y160{bottom:402.427500px;}
.y129{bottom:403.561500px;}
.y5a{bottom:406.819500px;}
.ydc{bottom:409.317000px;}
.y29{bottom:414.559500px;}
.y93{bottom:415.691460px;}
.y7e{bottom:417.310500px;}
.y112{bottom:417.814500px;}
.y191{bottom:418.836000px;}
.y15f{bottom:421.794000px;}
.yf7{bottom:423.267000px;}
.y128{bottom:423.825000px;}
.y59{bottom:427.083000px;}
.y111{bottom:434.328000px;}
.yc9{bottom:434.622000px;}
.y28{bottom:434.824500px;}
.y92{bottom:437.509260px;}
.y7d{bottom:437.574000px;}
.y190{bottom:438.204000px;}
.ydb{bottom:440.940000px;}
.y15e{bottom:441.162000px;}
.y127{bottom:444.090000px;}
.ye8{bottom:445.695000px;}
.y58{bottom:447.348000px;}
.y110{bottom:450.766500px;}
.yc8{bottom:451.135500px;}
.y27{bottom:455.088000px;}
.y18f{bottom:457.570500px;}
.y7c{bottom:457.839000px;}
.y15d{bottom:460.528500px;}
.y1a3{bottom:463.354500px;}
.yca{bottom:463.368000px;}
.y126{bottom:464.353500px;}
.y10f{bottom:467.205000px;}
.y57{bottom:467.611500px;}
.yc7{bottom:467.649000px;}
.y91{bottom:467.778000px;}
.y26{bottom:475.351500px;}
.y18e{bottom:476.938500px;}
.y7b{bottom:478.102500px;}
.y15c{bottom:479.896500px;}
.y1a2{bottom:482.722500px;}
.yc6{bottom:484.161000px;}
.y125{bottom:484.618500px;}
.y119{bottom:486.217500px;}
.y56{bottom:487.875000px;}
.y10e{bottom:490.920000px;}
.y25{bottom:495.616500px;}
.y18d{bottom:496.305000px;}
.y15b{bottom:499.264500px;}
.yc5{bottom:500.674500px;}
.y1a1{bottom:502.090500px;}
.y90{bottom:504.882000px;}
.y7a{bottom:507.333000px;}
.y55{bottom:508.140000px;}
.y10d{bottom:514.636500px;}
.y18c{bottom:515.673000px;}
.y24{bottom:515.880000px;}
.yc4{bottom:517.188000px;}
.y15a{bottom:518.631000px;}
.y8f{bottom:525.145500px;}
.y54{bottom:528.403500px;}
.y18b{bottom:535.041000px;}
.y23{bottom:536.145000px;}
.y159{bottom:537.999000px;}
.y10c{bottom:538.351500px;}
.yc3{bottom:540.903000px;}
.y79{bottom:542.152500px;}
.y124{bottom:545.410500px;}
.y53{bottom:548.667000px;}
.y8e{bottom:554.376000px;}
.y18a{bottom:554.407500px;}
.y22{bottom:556.408500px;}
.y158{bottom:557.365500px;}
.yc2{bottom:557.416500px;}
.y10b{bottom:562.066500px;}
.y78{bottom:562.416000px;}
.y123{bottom:565.674000px;}
.y52{bottom:568.932000px;}
.y189{bottom:573.775500px;}
.yc1{bottom:573.930000px;}
.y21{bottom:576.672000px;}
.y157{bottom:576.733500px;}
.y10a{bottom:578.580000px;}
.y77{bottom:582.681000px;}
.y122{bottom:585.939000px;}
.y51{bottom:589.195500px;}
.yc0{bottom:590.442000px;}
.y188{bottom:593.142000px;}
.y109{bottom:595.093500px;}
.y156{bottom:596.101500px;}
.y20{bottom:596.937000px;}
.y121{bottom:606.202500px;}
.ybf{bottom:606.955500px;}
.y50{bottom:609.460500px;}
.y108{bottom:611.532000px;}
.y76{bottom:611.911500px;}
.y187{bottom:612.510000px;}
.y155{bottom:615.468000px;}
.y1f{bottom:617.200500px;}
.ybe{bottom:623.469000px;}
.y120{bottom:626.466000px;}
.y107{bottom:627.969000px;}
.y4f{bottom:629.724000px;}
.y186{bottom:631.878000px;}
.y154{bottom:634.836000px;}
.y1e{bottom:637.465500px;}
.ybd{bottom:639.982500px;}
.y106{bottom:644.407500px;}
.y75{bottom:646.731000px;}
.y4e{bottom:649.987500px;}
.y185{bottom:651.244500px;}
.y153{bottom:654.202500px;}
.ybc{bottom:663.697500px;}
.y74{bottom:666.994500px;}
.y105{bottom:668.124000px;}
.y4d{bottom:670.252500px;}
.y184{bottom:670.612500px;}
.y1b{bottom:672.881964px;}
.y1a{bottom:673.275000px;}
.y152{bottom:673.570500px;}
.ybb{bottom:680.211000px;}
.y73{bottom:687.258000px;}
.y183{bottom:689.979000px;}
.y4c{bottom:690.516000px;}
.y104{bottom:691.839000px;}
.y151{bottom:692.938500px;}
.y11f{bottom:696.225000px;}
.yba{bottom:696.723000px;}
.ycb{bottom:697.339500px;}
.ye9{bottom:702.249000px;}
.y72{bottom:707.523000px;}
.y182{bottom:709.347000px;}
.y4b{bottom:710.781000px;}
.y150{bottom:712.305000px;}
.y19{bottom:712.647000px;}
.yb9{bottom:713.236500px;}
.y103{bottom:715.554000px;}
.y71{bottom:727.786500px;}
.y181{bottom:728.715000px;}
.yb8{bottom:729.750000px;}
.y18{bottom:730.804500px;}
.y4a{bottom:731.044500px;}
.y14f{bottom:731.673000px;}
.y17{bottom:735.687000px;}
.yb7{bottom:746.263500px;}
.y102{bottom:747.622500px;}
.y70{bottom:748.051500px;}
.y180{bottom:748.081500px;}
.y16{bottom:748.962000px;}
.y14e{bottom:751.039500px;}
.y49{bottom:751.308000px;}
.y17f{bottom:767.449500px;}
.y6f{bottom:768.315000px;}
.yb6{bottom:769.978500px;}
.y14d{bottom:770.407500px;}
.y48{bottom:771.573000px;}
.y15{bottom:772.000500px;}
.y14{bottom:785.275500px;}
.yb5{bottom:786.492000px;}
.y17e{bottom:786.816000px;}
.y6e{bottom:788.578500px;}
.y47{bottom:791.836500px;}
.y101{bottom:798.445500px;}
.y14c{bottom:798.741000px;}
.yb4{bottom:803.005500px;}
.y13{bottom:803.433000px;}
.y17d{bottom:806.184000px;}
.y12{bottom:808.314000px;}
.y6d{bottom:808.843500px;}
.y46{bottom:812.101500px;}
.yb3{bottom:819.517500px;}
.y17c{bottom:825.552000px;}
.y11{bottom:826.471500px;}
.y6c{bottom:829.107000px;}
.y45{bottom:832.365000px;}
.yb2{bottom:836.031000px;}
.y14b{bottom:838.194000px;}
.y10{bottom:839.746500px;}
.y17b{bottom:844.918500px;}
.y6b{bottom:849.372000px;}
.yb1{bottom:852.544500px;}
.y44{bottom:852.628500px;}
.y14a{bottom:862.357500px;}
.yf{bottom:862.785000px;}
.y17a{bottom:864.286500px;}
.y6a{bottom:869.635500px;}
.y43{bottom:872.893500px;}
.ye{bottom:876.060000px;}
.yb0{bottom:876.259500px;}
.y149{bottom:877.555500px;}
.y179{bottom:883.653000px;}
.y69{bottom:889.899000px;}
.y148{bottom:892.753500px;}
.y42{bottom:893.157000px;}
.yd{bottom:899.100000px;}
.y178{bottom:903.021000px;}
.yaf{bottom:907.879500px;}
.y147{bottom:907.951500px;}
.y68{bottom:910.164000px;}
.yc{bottom:912.375000px;}
.y41{bottom:913.422000px;}
.y177{bottom:922.389000px;}
.y67{bottom:930.427500px;}
.y146{bottom:932.116500px;}
.y40{bottom:933.685500px;}
.yb{bottom:935.413500px;}
.y176{bottom:941.755500px;}
.yae{bottom:944.983500px;}
.y145{bottom:947.314500px;}
.y3f{bottom:953.949000px;}
.ya{bottom:957.639000px;}
.y66{bottom:959.658000px;}
.y175{bottom:961.123500px;}
.y144{bottom:962.512500px;}
.yad{bottom:965.247000px;}
.y3e{bottom:974.214000px;}
.y9{bottom:977.904000px;}
.y174{bottom:980.490000px;}
.yac{bottom:985.512000px;}
.y143{bottom:986.677500px;}
.y3d{bottom:994.477500px;}
.y8{bottom:998.167500px;}
.y173{bottom:999.858000px;}
.y142{bottom:1001.875500px;}
.yab{bottom:1005.775500px;}
.y3c{bottom:1014.742500px;}
.y141{bottom:1017.073500px;}
.y172{bottom:1019.226000px;}
.yaa{bottom:1026.039000px;}
.y140{bottom:1032.271500px;}
.y3b{bottom:1035.006000px;}
.y171{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.ya9{bottom:1046.304000px;}
.y13f{bottom:1047.469500px;}
.y3a{bottom:1055.269500px;}
.y170{bottom:1057.960500px;}
.y13e{bottom:1062.667500px;}
.ya8{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y39{bottom:1075.534500px;}
.y16f{bottom:1077.327000px;}
.ya7{bottom:1086.832500px;}
.y38{bottom:1095.798000px;}
.y16e{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y37{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y36{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h22{height:26.110157px;}
.h9{height:30.461558px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h21{height:34.813397px;}
.h10{height:35.052500px;}
.h16{height:35.214258px;}
.h15{height:35.355586px;}
.h11{height:35.933027px;}
.h12{height:36.032016px;}
.h13{height:38.896243px;}
.h1f{height:39.057638px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h24{height:39.418945px;}
.h1e{height:39.434227px;}
.h18{height:39.445312px;}
.h1a{height:39.614278px;}
.h4{height:41.001535px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h17{height:43.623633px;}
.h19{height:43.798711px;}
.h5{height:43.815515px;}
.h20{height:49.991558px;}
.h2{height:50.931027px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h6{height:77.792486px;}
.h23{height:452.619000px;}
.h14{height:667.639500px;}
.h1b{height:685.312500px;}
.h1c{height:892.914000px;}
.h1d{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:646.038750px;}
.w5{width:668.620650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w8{width:962.185500px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x6f{left:-35.379000px;}
.x5a{left:-7.851750px;}
.x61{left:-4.906350px;}
.x0{left:0.000000px;}
.x5d{left:24.008250px;}
.x63{left:26.953650px;}
.x8{left:29.274117px;}
.x2{left:59.014071px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x3{left:123.307500px;}
.x56{left:134.681640px;}
.x6e{left:141.615000px;}
.x57{left:143.085840px;}
.x4{left:146.170500px;}
.x5c{left:148.922250px;}
.x6c{left:150.660000px;}
.x6b{left:152.905500px;}
.x6a{left:154.533000px;}
.x38{left:156.610500px;}
.x41{left:162.835500px;}
.x59{left:165.136500px;}
.x53{left:168.418500px;}
.x71{left:170.391000px;}
.x35{left:171.418500px;}
.x69{left:173.994000px;}
.x1a{left:175.983000px;}
.x12{left:178.275000px;}
.x46{left:179.764500px;}
.x42{left:181.575000px;}
.x54{left:183.361500px;}
.x13{left:185.746500px;}
.x9{left:188.349000px;}
.x1b{left:190.927500px;}
.x47{left:194.709000px;}
.x43{left:196.519500px;}
.x48{left:198.519000px;}
.x44{left:204.111000px;}
.x65{left:207.262500px;}
.x84{left:208.933500px;}
.x49{left:213.463500px;}
.x45{left:219.055500px;}
.x39{left:220.309500px;}
.x86{left:223.311000px;}
.x85{left:227.538000px;}
.x3a{left:235.252500px;}
.x87{left:238.255500px;}
.x16{left:250.059000px;}
.xa3{left:252.097500px;}
.x64{left:254.560500px;}
.x17{left:257.530500px;}
.x7a{left:261.447000px;}
.x94{left:263.764500px;}
.x5e{left:264.847500px;}
.x90{left:268.189500px;}
.x52{left:272.706000px;}
.x5{left:278.554500px;}
.x10{left:280.255500px;}
.x55{left:283.267500px;}
.x11{left:287.727000px;}
.x3b{left:298.284000px;}
.x1c{left:300.736500px;}
.x73{left:310.656000px;}
.x3c{left:313.228500px;}
.x1d{left:315.681000px;}
.x3d{left:316.923000px;}
.x72{left:321.549000px;}
.x75{left:323.143500px;}
.x67{left:324.412500px;}
.x3e{left:331.867500px;}
.x68{left:333.013500px;}
.x76{left:335.434500px;}
.x91{left:347.154000px;}
.x92{left:354.499500px;}
.x21{left:359.109000px;}
.x88{left:361.194000px;}
.x93{left:369.442500px;}
.x22{left:374.053500px;}
.x5f{left:375.541500px;}
.x89{left:379.948500px;}
.x99{left:381.751500px;}
.x60{left:387.832500px;}
.x8a{left:394.893000px;}
.x9a{left:396.694500px;}
.x77{left:399.660000px;}
.x18{left:410.589000px;}
.x78{left:411.952500px;}
.x8b{left:413.647500px;}
.x19{left:418.060500px;}
.x4a{left:438.300000px;}
.x58{left:443.532000px;}
.x1e{left:448.621500px;}
.xe{left:451.893000px;}
.x4b{left:453.243000px;}
.x1f{left:456.093000px;}
.xf{left:459.364500px;}
.xc{left:469.939500px;}
.x20{left:474.702000px;}
.xd{left:477.412500px;}
.x7c{left:485.461500px;}
.x7d{left:497.752500px;}
.x6d{left:512.958000px;}
.x2b{left:514.654500px;}
.x4c{left:525.225000px;}
.x2c{left:529.599000px;}
.x3f{left:533.737500px;}
.x4d{left:540.168000px;}
.x66{left:543.226500px;}
.x40{left:548.680500px;}
.x95{left:573.028500px;}
.x27{left:587.739000px;}
.x50{left:598.051500px;}
.x28{left:602.683500px;}
.x96{left:608.200500px;}
.x29{left:610.006500px;}
.x51{left:612.994500px;}
.x8c{left:616.423500px;}
.xa0{left:620.377500px;}
.x97{left:623.145000px;}
.x2a{left:624.949500px;}
.xa2{left:628.738500px;}
.x8d{left:631.366500px;}
.xa{left:634.071000px;}
.x8e{left:635.178000px;}
.x7f{left:637.215000px;}
.xb{left:641.544000px;}
.xa1{left:647.275500px;}
.x98{left:648.991500px;}
.x8f{left:650.121000px;}
.x5b{left:651.242250px;}
.x2d{left:654.822000px;}
.x80{left:655.891500px;}
.x62{left:658.507650px;}
.x7e{left:668.104500px;}
.x2e{left:669.766500px;}
.x81{left:670.834500px;}
.x2f{left:673.576500px;}
.x9d{left:676.071000px;}
.x82{left:678.300000px;}
.x74{left:681.384000px;}
.x14{left:682.986000px;}
.x30{left:688.521000px;}
.x15{left:690.457500px;}
.x83{left:693.243000px;}
.x7{left:701.339982px;}
.x9e{left:702.970500px;}
.x4e{left:713.193000px;}
.x9b{left:714.435000px;}
.x36{left:718.687500px;}
.x7b{left:726.136500px;}
.x4f{left:728.137500px;}
.x9f{left:729.522000px;}
.x37{left:733.630500px;}
.x31{left:737.392500px;}
.x23{left:738.639000px;}
.x79{left:749.971500px;}
.x32{left:752.337000px;}
.x24{left:753.582000px;}
.x33{left:756.148500px;}
.x25{left:757.243500px;}
.x34{left:771.091500px;}
.x26{left:772.188000px;}
.x9c{left:776.422500px;}
.x70{left:962.871000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls1c{letter-spacing:-0.456533pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.141867pt;}
.ls19{letter-spacing:-0.122667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000253pt;}
.ls4b{letter-spacing:0.000503pt;}
.ls1d{letter-spacing:0.000751pt;}
.ls4a{letter-spacing:0.001026pt;}
.ls25{letter-spacing:0.002193pt;}
.ls41{letter-spacing:0.003944pt;}
.ls49{letter-spacing:0.004267pt;}
.ls16{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.179200pt;}
.ls18{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.256929pt;}
.lsa{letter-spacing:0.262916pt;}
.ls11{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.525085pt;}
.ls20{letter-spacing:0.570745pt;}
.ls21{letter-spacing:0.576078pt;}
.ls1b{letter-spacing:0.794667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls24{letter-spacing:10.629067pt;}
.ls6{letter-spacing:10.631867pt;}
.ls1e{letter-spacing:11.104978pt;}
.ls4c{letter-spacing:11.793726pt;}
.ls3f{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.955635pt;}
.ls45{letter-spacing:11.956267pt;}
.ls48{letter-spacing:11.959467pt;}
.ls42{letter-spacing:11.959637pt;}
.ls47{letter-spacing:12.006705pt;}
.ls44{letter-spacing:12.007392pt;}
.ls4e{letter-spacing:12.087811pt;}
.ls3e{letter-spacing:12.102544pt;}
.ls46{letter-spacing:12.117454pt;}
.ls3c{letter-spacing:12.124466pt;}
.ls43{letter-spacing:13.027807pt;}
.ls29{letter-spacing:13.095781pt;}
.ls28{letter-spacing:13.095989pt;}
.ls37{letter-spacing:13.161111pt;}
.ls38{letter-spacing:13.161171pt;}
.lsc{letter-spacing:13.194023pt;}
.ls31{letter-spacing:13.199817pt;}
.lsf{letter-spacing:13.238878pt;}
.lsd{letter-spacing:13.243784pt;}
.ls3b{letter-spacing:13.283733pt;}
.ls39{letter-spacing:13.327328pt;}
.ls3a{letter-spacing:13.328544pt;}
.ls33{letter-spacing:13.406863pt;}
.ls35{letter-spacing:13.412092pt;}
.ls34{letter-spacing:13.412152pt;}
.ls2a{letter-spacing:13.442380pt;}
.ls40{letter-spacing:13.461793pt;}
.ls2f{letter-spacing:13.464379pt;}
.ls30{letter-spacing:13.464439pt;}
.ls2e{letter-spacing:13.590890pt;}
.ls2d{letter-spacing:13.592217pt;}
.lsb{letter-spacing:13.796097pt;}
.ls2c{letter-spacing:14.949347pt;}
.ls2b{letter-spacing:14.949407pt;}
.ls4d{letter-spacing:15.704931pt;}
.ls26{letter-spacing:16.533660pt;}
.ls27{letter-spacing:16.533720pt;}
.ls36{letter-spacing:16.910191pt;}
.ls32{letter-spacing:20.925877pt;}
.ls1{letter-spacing:51.041067pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.lse{letter-spacing:146.423184pt;}
.ls23{letter-spacing:214.315200pt;}
.ls22{letter-spacing:214.320533pt;}
.ws5b{word-spacing:-14.074667pt;}
.ws58{word-spacing:-13.600000pt;}
.ws57{word-spacing:-13.510933pt;}
.ws5a{word-spacing:-13.459200pt;}
.ws5d{word-spacing:-13.440000pt;}
.ws7b{word-spacing:-13.283467pt;}
.ws66{word-spacing:-13.280000pt;}
.ws59{word-spacing:-13.138133pt;}
.ws67{word-spacing:-12.960000pt;}
.ws5c{word-spacing:-12.823467pt;}
.ws56{word-spacing:-12.000000pt;}
.ws5e{word-spacing:-11.955200pt;}
.ws54{word-spacing:-11.040000pt;}
.ws53{word-spacing:-10.720000pt;}
.ws21{word-spacing:-10.626800pt;}
.ws55{word-spacing:-10.400000pt;}
.ws1{word-spacing:-10.095467pt;}
.wsaa{word-spacing:-2.821427pt;}
.ws78{word-spacing:-2.816095pt;}
.ws64{word-spacing:-2.656693pt;}
.wsab{word-spacing:-2.630144pt;}
.ws98{word-spacing:-2.603559pt;}
.ws2c{word-spacing:-2.444158pt;}
.ws24{word-spacing:-2.284756pt;}
.ws27{word-spacing:-2.231622pt;}
.ws3d{word-spacing:-2.178489pt;}
.ws95{word-spacing:-2.125355pt;}
.ws51{word-spacing:-2.019087pt;}
.ws28{word-spacing:-1.859685pt;}
.ws4d{word-spacing:-1.806551pt;}
.wsa5{word-spacing:-1.753418pt;}
.ws8{word-spacing:-1.696326pt;}
.ws39{word-spacing:-1.647150pt;}
.wsbf{word-spacing:-1.434624pt;}
.ws26{word-spacing:-1.434614pt;}
.wsa2{word-spacing:-1.381481pt;}
.wsa4{word-spacing:-1.275213pt;}
.ws7{word-spacing:-1.175671pt;}
.wsa0{word-spacing:-1.168945pt;}
.wsa8{word-spacing:-0.850142pt;}
.wse7{word-spacing:-0.812954pt;}
.ws96{word-spacing:-0.797008pt;}
.ws2f{word-spacing:-0.637606pt;}
.ws4b{word-spacing:-0.584473pt;}
.wsdf{word-spacing:-0.526029pt;}
.wsde{word-spacing:-0.478208pt;}
.ws4a{word-spacing:-0.478205pt;}
.ws2e{word-spacing:-0.425071pt;}
.ws65{word-spacing:-0.318803pt;}
.wsdc{word-spacing:-0.286925pt;}
.wsa{word-spacing:-0.265669pt;}
.wsb2{word-spacing:-0.239104pt;}
.ws30{word-spacing:-0.212535pt;}
.ws7d{word-spacing:-0.198109pt;}
.wsb7{word-spacing:-0.191283pt;}
.ws7c{word-spacing:-0.183611pt;}
.wsb6{word-spacing:-0.164848pt;}
.ws16{word-spacing:-0.159402pt;}
.wsba{word-spacing:-0.143462pt;}
.ws90{word-spacing:-0.106607pt;}
.ws10{word-spacing:-0.106268pt;}
.wsb3{word-spacing:-0.095642pt;}
.ws8e{word-spacing:-0.089762pt;}
.ws76{word-spacing:-0.085014pt;}
.wscd{word-spacing:-0.070715pt;}
.wsc{word-spacing:-0.053134pt;}
.wsbb{word-spacing:-0.047821pt;}
.wsd5{word-spacing:-0.006434pt;}
.wsc6{word-spacing:-0.006409pt;}
.wscf{word-spacing:-0.005862pt;}
.wsbd{word-spacing:-0.003396pt;}
.ws70{word-spacing:-0.003166pt;}
.wse8{word-spacing:-0.003081pt;}
.wsb5{word-spacing:-0.002048pt;}
.wsca{word-spacing:-0.000751pt;}
.ws77{word-spacing:-0.000202pt;}
.ws0{word-spacing:0.000000pt;}
.ws91{word-spacing:0.042725pt;}
.ws5{word-spacing:0.047821pt;}
.ws93{word-spacing:0.049470pt;}
.ws15{word-spacing:0.053134pt;}
.wsd0{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.wsad{word-spacing:0.143462pt;}
.ws23{word-spacing:0.159402pt;}
.ws7e{word-spacing:0.172377pt;}
.ws4{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.ws8b{word-spacing:0.229192pt;}
.wsc9{word-spacing:0.239104pt;}
.ws12{word-spacing:0.265669pt;}
.ws86{word-spacing:0.286708pt;}
.wsc7{word-spacing:0.286925pt;}
.ws84{word-spacing:0.307271pt;}
.ws82{word-spacing:0.318188pt;}
.ws18{word-spacing:0.318803pt;}
.wse0{word-spacing:0.334746pt;}
.wsa1{word-spacing:0.371937pt;}
.wsc5{word-spacing:0.382566pt;}
.wsec{word-spacing:0.430387pt;}
.ws34{word-spacing:0.478205pt;}
.ws3{word-spacing:0.494387pt;}
.wsdd{word-spacing:0.526029pt;}
.wsd9{word-spacing:0.573850pt;}
.wsbe{word-spacing:0.621670pt;}
.ws1e{word-spacing:0.637606pt;}
.ws9e{word-spacing:0.690740pt;}
.wsa6{word-spacing:0.743874pt;}
.ws97{word-spacing:0.797008pt;}
.wsc4{word-spacing:0.812954pt;}
.ws3a{word-spacing:0.903276pt;}
.wse6{word-spacing:1.004237pt;}
.wsb1{word-spacing:1.147699pt;}
.ws9a{word-spacing:1.168945pt;}
.ws48{word-spacing:1.275213pt;}
.ws94{word-spacing:1.434614pt;}
.wsb9{word-spacing:1.530266pt;}
.wse{word-spacing:1.540882pt;}
.ws80{word-spacing:1.647150pt;}
.ws1f{word-spacing:1.700284pt;}
.ws40{word-spacing:1.753418pt;}
.wseb{word-spacing:1.769370pt;}
.ws62{word-spacing:1.806551pt;}
.wsdb{word-spacing:1.817190pt;}
.ws3b{word-spacing:1.859685pt;}
.ws9c{word-spacing:1.912819pt;}
.ws2b{word-spacing:2.072221pt;}
.ws61{word-spacing:2.125355pt;}
.wsa3{word-spacing:2.178489pt;}
.ws47{word-spacing:2.231622pt;}
.ws17{word-spacing:2.337890pt;}
.wsea{word-spacing:2.438861pt;}
.wsc8{word-spacing:2.486682pt;}
.ws9f{word-spacing:2.497292pt;}
.ws36{word-spacing:2.550426pt;}
.ws20{word-spacing:2.550432pt;}
.ws4c{word-spacing:2.709827pt;}
.ws5f{word-spacing:2.762961pt;}
.wsaf{word-spacing:2.821427pt;}
.wsd1{word-spacing:2.861542pt;}
.wsd2{word-spacing:2.862729pt;}
.wsd8{word-spacing:2.863735pt;}
.wscc{word-spacing:2.865186pt;}
.wsda{word-spacing:2.867174pt;}
.ws9d{word-spacing:2.869229pt;}
.ws6{word-spacing:2.869248pt;}
.wsc3{word-spacing:2.871407pt;}
.wsc0{word-spacing:2.917069pt;}
.ws9{word-spacing:2.933854pt;}
.wse3{word-spacing:2.964890pt;}
.ws31{word-spacing:3.028630pt;}
.wsd4{word-spacing:3.060531pt;}
.wsd{word-spacing:3.081764pt;}
.wsae{word-spacing:3.108352pt;}
.ws1a{word-spacing:3.142556pt;}
.wsc2{word-spacing:3.156173pt;}
.ws19{word-spacing:3.170756pt;}
.ws1b{word-spacing:3.185311pt;}
.ws1c{word-spacing:3.188032pt;}
.ws41{word-spacing:3.241166pt;}
.wsac{word-spacing:3.251814pt;}
.ws92{word-spacing:3.260363pt;}
.ws8f{word-spacing:3.271582pt;}
.ws29{word-spacing:3.294300pt;}
.ws2a{word-spacing:3.347434pt;}
.wsbc{word-spacing:3.347456pt;}
.wsa7{word-spacing:3.400567pt;}
.ws7f{word-spacing:3.434758pt;}
.ws13{word-spacing:3.499230pt;}
.ws6a{word-spacing:3.506835pt;}
.ws8d{word-spacing:3.613103pt;}
.ws83{word-spacing:3.638663pt;}
.ws37{word-spacing:3.666237pt;}
.ws42{word-spacing:3.719371pt;}
.wse5{word-spacing:3.730022pt;}
.ws99{word-spacing:3.878772pt;}
.ws1d{word-spacing:3.931906pt;}
.wsb4{word-spacing:3.969126pt;}
.ws8c{word-spacing:4.029752pt;}
.ws79{word-spacing:4.135075pt;}
.ws68{word-spacing:4.144442pt;}
.ws87{word-spacing:4.176158pt;}
.ws11{word-spacing:4.197575pt;}
.ws49{word-spacing:4.250709pt;}
.ws45{word-spacing:4.303843pt;}
.ws38{word-spacing:4.356977pt;}
.ws44{word-spacing:4.410111pt;}
.ws9b{word-spacing:4.463245pt;}
.ws3f{word-spacing:4.622646pt;}
.ws8a{word-spacing:4.728914pt;}
.ws60{word-spacing:4.888316pt;}
.ws3c{word-spacing:4.941450pt;}
.ws69{word-spacing:5.260253pt;}
.ws22{word-spacing:5.366521pt;}
.ws43{word-spacing:5.472788pt;}
.ws46{word-spacing:5.525922pt;}
.ws52{word-spacing:5.579056pt;}
.ws35{word-spacing:5.685324pt;}
.ws25{word-spacing:5.844725pt;}
.ws2d{word-spacing:5.950993pt;}
.wse2{word-spacing:6.121062pt;}
.wscb{word-spacing:6.407987pt;}
.wsf{word-spacing:6.435314pt;}
.ws6b{word-spacing:6.588599pt;}
.wse9{word-spacing:6.783925pt;}
.wsb8{word-spacing:6.790554pt;}
.wsd6{word-spacing:7.460045pt;}
.ws89{word-spacing:7.651277pt;}
.wsd3{word-spacing:7.699149pt;}
.ws3e{word-spacing:8.023214pt;}
.wsc1{word-spacing:8.559923pt;}
.ws85{word-spacing:8.607686pt;}
.ws81{word-spacing:8.641517pt;}
.wsb0{word-spacing:8.894669pt;}
.wsa9{word-spacing:9.085891pt;}
.wsd7{word-spacing:9.659802pt;}
.ws32{word-spacing:10.414238pt;}
.ws33{word-spacing:10.892443pt;}
.ws63{word-spacing:11.583183pt;}
.wse4{word-spacing:12.146483pt;}
.wse1{word-spacing:12.385587pt;}
.ws7a{word-spacing:13.399687pt;}
.wsce{word-spacing:26.014515pt;}
.ws88{word-spacing:26.570929pt;}
.ws2{word-spacing:35.593054pt;}
.ws75{word-spacing:107.910741pt;}
.ws6d{word-spacing:117.235797pt;}
.ws73{word-spacing:117.809545pt;}
.ws74{word-spacing:127.134601pt;}
.ws6e{word-spacing:128.590131pt;}
.ws6f{word-spacing:136.576205pt;}
.ws71{word-spacing:182.254174pt;}
.ws72{word-spacing:182.259507pt;}
.ws6c{word-spacing:198.121574pt;}
.ws4f{word-spacing:544.791769pt;}
.ws4e{word-spacing:639.513297pt;}
.ws50{word-spacing:641.185112pt;}
._2{margin-left:-10.616218pt;}
._8{margin-left:-6.852737pt;}
._9{margin-left:-5.897859pt;}
._7{margin-left:-4.888316pt;}
._5{margin-left:-3.936801pt;}
._6{margin-left:-2.923235pt;}
._b{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._c{width:0.969929pt;}
._3{width:2.667945pt;}
._4d{width:3.597424pt;}
._4b{width:5.046400pt;}
._4c{width:5.999129pt;}
._4e{width:7.323849pt;}
._0{width:9.035708pt;}
._12{width:10.626800pt;}
._1d{width:12.398826pt;}
._17{width:13.761671pt;}
._a{width:14.824448pt;}
._d{width:16.300597pt;}
._6d{width:17.192374pt;}
._10{width:18.171782pt;}
._1a{width:20.031468pt;}
._e{width:21.459579pt;}
._1c{width:23.113232pt;}
._6c{width:24.069642pt;}
._18{width:26.017490pt;}
._19{width:26.915871pt;}
._11{width:28.639154pt;}
._f{width:29.595564pt;}
._1b{width:30.870777pt;}
._15{width:33.090899pt;}
._16{width:34.430746pt;}
._70{width:36.270696pt;}
._6f{width:44.521165pt;}
._4{width:48.357015pt;}
._6e{width:67.140403pt;}
._59{width:100.020207pt;}
._58{width:119.360717pt;}
._50{width:122.803814pt;}
._5d{width:123.787145pt;}
._57{width:133.117534pt;}
._3a{width:137.341338pt;}
._61{width:138.775962pt;}
._55{width:140.545331pt;}
._5c{width:143.180809pt;}
._1f{width:146.421159pt;}
._5a{width:148.531405pt;}
._56{width:152.452710pt;}
._69{width:156.199578pt;}
._6a{width:158.430310pt;}
._60{width:160.370057pt;}
._5f{width:167.755366pt;}
._63{width:169.767006pt;}
._68{width:175.054874pt;}
._66{width:183.631872pt;}
._1e{width:184.871016pt;}
._5e{width:187.497779pt;}
._5b{width:195.485926pt;}
._54{width:202.132668pt;}
._62{width:213.806797pt;}
._52{width:216.915149pt;}
._67{width:228.248678pt;}
._65{width:232.122163pt;}
._53{width:237.238989pt;}
._64{width:247.472640pt;}
._46{width:260.873183pt;}
._49{width:272.828383pt;}
._25{width:275.189576pt;}
._51{width:280.277709pt;}
._24{width:286.144365pt;}
._29{width:297.143149pt;}
._23{width:303.786414pt;}
._22{width:311.221592pt;}
._28{width:314.785198pt;}
._26{width:318.177679pt;}
._36{width:322.176381pt;}
._20{width:332.163277pt;}
._47{width:346.328953pt;}
._44{width:363.353157pt;}
._48{width:364.787781pt;}
._43{width:376.886444pt;}
._13{width:380.067728pt;}
._3f{width:435.419103pt;}
._33{width:441.975136pt;}
._32{width:456.933482pt;}
._38{width:471.055921pt;}
._27{width:472.463766pt;}
._42{width:485.535301pt;}
._3c{width:491.263078pt;}
._3e{width:498.877305pt;}
._41{width:503.218278pt;}
._3d{width:514.849452pt;}
._3b{width:527.282860pt;}
._40{width:539.238060pt;}
._37{width:552.974864pt;}
._2c{width:605.769028pt;}
._39{width:613.072220pt;}
._2e{width:615.843914pt;}
._45{width:676.244652pt;}
._21{width:677.921051pt;}
._2b{width:755.616461pt;}
._30{width:766.571250pt;}
._2d{width:773.258510pt;}
._35{width:775.018316pt;}
._31{width:784.257294pt;}
._34{width:794.772132pt;}
._2a{width:993.982108pt;}
._2f{width:1119.500231pt;}
._6b{width:1373.503499pt;}
._14{width:1394.758756pt;}
._4a{width:1428.744151pt;}
._4f{width:2710.038756pt;}
.fs11{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.880000pt;}
.fsa{font-size:43.995136pt;}
.fsb{font-size:45.842987pt;}
.fs6{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fsd{font-size:53.120000pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsf{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.ycc{bottom:-363.822667pt;}
.yea{bottom:-359.458667pt;}
.yda{bottom:-264.596000pt;}
.yd9{bottom:-246.676000pt;}
.yd8{bottom:-228.596000pt;}
.y11a{bottom:-222.628000pt;}
.yf6{bottom:-217.672000pt;}
.yd7{bottom:-210.676000pt;}
.yf5{bottom:-199.592000pt;}
.yd6{bottom:-192.596000pt;}
.yf4{bottom:-181.672000pt;}
.yd5{bottom:-174.676000pt;}
.yf3{bottom:-163.592000pt;}
.yd4{bottom:-156.596000pt;}
.yf2{bottom:-145.672000pt;}
.yd3{bottom:-138.676000pt;}
.yf1{bottom:-127.592000pt;}
.yd2{bottom:-120.716000pt;}
.yf0{bottom:-109.632000pt;}
.yd1{bottom:-102.636000pt;}
.yef{bottom:-91.552000pt;}
.yd0{bottom:-84.716000pt;}
.yee{bottom:-73.632000pt;}
.ycf{bottom:-58.636000pt;}
.yed{bottom:-55.712000pt;}
.y11d{bottom:-54.113333pt;}
.yce{bottom:-25.196000pt;}
.yec{bottom:-22.112000pt;}
.y11c{bottom:-20.833333pt;}
.ycd{bottom:-3.436000pt;}
.yeb{bottom:-0.352000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:0.926667pt;}
.y1d{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y1c{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y35{bottom:56.693333pt;}
.y34{bottom:96.544000pt;}
.y8d{bottom:100.754667pt;}
.y13d{bottom:106.545333pt;}
.ya6{bottom:112.925333pt;}
.y1a0{bottom:114.066667pt;}
.y33{bottom:114.556000pt;}
.y8c{bottom:118.766667pt;}
.y136{bottom:124.558667pt;}
.ya5{bottom:126.429707pt;}
.y65{bottom:129.633333pt;}
.y19f{bottom:131.281333pt;}
.y32{bottom:132.568000pt;}
.y16d{bottom:133.912000pt;}
.y8b{bottom:136.780000pt;}
.ya4{bottom:139.934080pt;}
.y135{bottom:142.570667pt;}
.y64{bottom:147.645333pt;}
.y19e{bottom:148.497333pt;}
.y31{bottom:150.581333pt;}
.y16c{bottom:151.126667pt;}
.ya3{bottom:153.438453pt;}
.y8a{bottom:154.792000pt;}
.ye7{bottom:157.729333pt;}
.y134{bottom:160.584000pt;}
.y63{bottom:165.657333pt;}
.y19d{bottom:165.713333pt;}
.ya2{bottom:166.941600pt;}
.y16b{bottom:168.342667pt;}
.y30{bottom:168.593333pt;}
.y89{bottom:172.804000pt;}
.ye6{bottom:175.741333pt;}
.y133{bottom:178.596000pt;}
.ya1{bottom:180.445973pt;}
.y19c{bottom:182.928000pt;}
.y62{bottom:183.670667pt;}
.y16a{bottom:185.558667pt;}
.y2f{bottom:186.606667pt;}
.y88{bottom:190.817333pt;}
.ye5{bottom:193.753333pt;}
.ya0{bottom:193.950347pt;}
.y132{bottom:196.608000pt;}
.y19b{bottom:200.144000pt;}
.y100{bottom:201.025333pt;}
.y61{bottom:201.682667pt;}
.y169{bottom:202.773333pt;}
.y9f{bottom:207.454720pt;}
.y87{bottom:208.829333pt;}
.ye4{bottom:211.766667pt;}
.y2e{bottom:212.589333pt;}
.y131{bottom:214.621333pt;}
.y19a{bottom:217.358667pt;}
.yff{bottom:219.037333pt;}
.y60{bottom:219.696000pt;}
.y168{bottom:219.989333pt;}
.y9e{bottom:220.957867pt;}
.y13c{bottom:222.590667pt;}
.y86{bottom:226.842667pt;}
.ye3{bottom:229.778667pt;}
.y130{bottom:232.633333pt;}
.y9d{bottom:234.462240pt;}
.y199{bottom:234.574667pt;}
.yfe{bottom:237.050667pt;}
.y167{bottom:237.204000pt;}
.y5f{bottom:237.708000pt;}
.y85{bottom:244.854667pt;}
.ye2{bottom:247.792000pt;}
.y9c{bottom:247.966613pt;}
.y12f{bottom:250.646667pt;}
.y198{bottom:251.790667pt;}
.y13b{bottom:253.541333pt;}
.y11e{bottom:254.256000pt;}
.y166{bottom:254.420000pt;}
.yfd{bottom:255.062667pt;}
.y5e{bottom:255.720000pt;}
.y9b{bottom:261.470987pt;}
.y84{bottom:262.866667pt;}
.ye1{bottom:265.804000pt;}
.y12e{bottom:268.658667pt;}
.y197{bottom:269.005333pt;}
.y13a{bottom:271.554667pt;}
.y165{bottom:271.636000pt;}
.yfc{bottom:273.074667pt;}
.y118{bottom:274.193333pt;}
.y9a{bottom:274.974133pt;}
.y2d{bottom:280.506667pt;}
.y83{bottom:280.880000pt;}
.y5d{bottom:281.702667pt;}
.ye0{bottom:283.816000pt;}
.y196{bottom:286.221333pt;}
.y12d{bottom:286.670667pt;}
.y99{bottom:288.478507pt;}
.y164{bottom:288.850667pt;}
.y139{bottom:289.566667pt;}
.yfb{bottom:291.088000pt;}
.y82{bottom:298.892000pt;}
.ydf{bottom:301.829333pt;}
.y98{bottom:301.982880pt;}
.y195{bottom:303.437333pt;}
.y12c{bottom:304.684000pt;}
.y163{bottom:306.066667pt;}
.y138{bottom:307.580000pt;}
.yfa{bottom:309.100000pt;}
.y117{bottom:310.058667pt;}
.y5c{bottom:312.653333pt;}
.y2c{bottom:314.460000pt;}
.y97{bottom:315.487253pt;}
.y81{bottom:316.905333pt;}
.yde{bottom:319.841333pt;}
.y194{bottom:320.652000pt;}
.y115{bottom:322.678667pt;}
.y12b{bottom:322.696000pt;}
.y162{bottom:323.281333pt;}
.y137{bottom:325.592000pt;}
.y116{bottom:326.536000pt;}
.yf9{bottom:327.113333pt;}
.y96{bottom:328.990400pt;}
.y2b{bottom:332.472000pt;}
.y80{bottom:334.917333pt;}
.ydd{bottom:337.854667pt;}
.y193{bottom:337.868000pt;}
.y161{bottom:340.497333pt;}
.y12a{bottom:340.709333pt;}
.y114{bottom:342.034667pt;}
.y95{bottom:342.494773pt;}
.y5b{bottom:343.604000pt;}
.yf8{bottom:345.125333pt;}
.y2a{bottom:350.485333pt;}
.y7f{bottom:352.929333pt;}
.y192{bottom:355.082667pt;}
.y94{bottom:355.999147pt;}
.y113{bottom:356.713333pt;}
.y160{bottom:357.713333pt;}
.y129{bottom:358.721333pt;}
.y5a{bottom:361.617333pt;}
.ydc{bottom:363.837333pt;}
.y29{bottom:368.497333pt;}
.y93{bottom:369.503520pt;}
.y7e{bottom:370.942667pt;}
.y112{bottom:371.390667pt;}
.y191{bottom:372.298667pt;}
.y15f{bottom:374.928000pt;}
.yf7{bottom:376.237333pt;}
.y128{bottom:376.733333pt;}
.y59{bottom:379.629333pt;}
.y111{bottom:386.069333pt;}
.yc9{bottom:386.330667pt;}
.y28{bottom:386.510667pt;}
.y92{bottom:388.897120pt;}
.y7d{bottom:388.954667pt;}
.y190{bottom:389.514667pt;}
.ydb{bottom:391.946667pt;}
.y15e{bottom:392.144000pt;}
.y127{bottom:394.746667pt;}
.ye8{bottom:396.173333pt;}
.y58{bottom:397.642667pt;}
.y110{bottom:400.681333pt;}
.yc8{bottom:401.009333pt;}
.y27{bottom:404.522667pt;}
.y18f{bottom:406.729333pt;}
.y7c{bottom:406.968000pt;}
.y15d{bottom:409.358667pt;}
.y1a3{bottom:411.870667pt;}
.yca{bottom:411.882667pt;}
.y126{bottom:412.758667pt;}
.y10f{bottom:415.293333pt;}
.y57{bottom:415.654667pt;}
.yc7{bottom:415.688000pt;}
.y91{bottom:415.802667pt;}
.y26{bottom:422.534667pt;}
.y18e{bottom:423.945333pt;}
.y7b{bottom:424.980000pt;}
.y15c{bottom:426.574667pt;}
.y1a2{bottom:429.086667pt;}
.yc6{bottom:430.365333pt;}
.y125{bottom:430.772000pt;}
.y119{bottom:432.193333pt;}
.y56{bottom:433.666667pt;}
.y10e{bottom:436.373333pt;}
.y25{bottom:440.548000pt;}
.y18d{bottom:441.160000pt;}
.y15b{bottom:443.790667pt;}
.yc5{bottom:445.044000pt;}
.y1a1{bottom:446.302667pt;}
.y90{bottom:448.784000pt;}
.y7a{bottom:450.962667pt;}
.y55{bottom:451.680000pt;}
.y10d{bottom:457.454667pt;}
.y18c{bottom:458.376000pt;}
.y24{bottom:458.560000pt;}
.yc4{bottom:459.722667pt;}
.y15a{bottom:461.005333pt;}
.y8f{bottom:466.796000pt;}
.y54{bottom:469.692000pt;}
.y18b{bottom:475.592000pt;}
.y23{bottom:476.573333pt;}
.y159{bottom:478.221333pt;}
.y10c{bottom:478.534667pt;}
.yc3{bottom:480.802667pt;}
.y79{bottom:481.913333pt;}
.y124{bottom:484.809333pt;}
.y53{bottom:487.704000pt;}
.y8e{bottom:492.778667pt;}
.y18a{bottom:492.806667pt;}
.y22{bottom:494.585333pt;}
.y158{bottom:495.436000pt;}
.yc2{bottom:495.481333pt;}
.y10b{bottom:499.614667pt;}
.y78{bottom:499.925333pt;}
.y123{bottom:502.821333pt;}
.y52{bottom:505.717333pt;}
.y189{bottom:510.022667pt;}
.yc1{bottom:510.160000pt;}
.y21{bottom:512.597333pt;}
.y157{bottom:512.652000pt;}
.y10a{bottom:514.293333pt;}
.y77{bottom:517.938667pt;}
.y122{bottom:520.834667pt;}
.y51{bottom:523.729333pt;}
.yc0{bottom:524.837333pt;}
.y188{bottom:527.237333pt;}
.y109{bottom:528.972000pt;}
.y156{bottom:529.868000pt;}
.y20{bottom:530.610667pt;}
.y121{bottom:538.846667pt;}
.ybf{bottom:539.516000pt;}
.y50{bottom:541.742667pt;}
.y108{bottom:543.584000pt;}
.y76{bottom:543.921333pt;}
.y187{bottom:544.453333pt;}
.y155{bottom:547.082667pt;}
.y1f{bottom:548.622667pt;}
.ybe{bottom:554.194667pt;}
.y120{bottom:556.858667pt;}
.y107{bottom:558.194667pt;}
.y4f{bottom:559.754667pt;}
.y186{bottom:561.669333pt;}
.y154{bottom:564.298667pt;}
.y1e{bottom:566.636000pt;}
.ybd{bottom:568.873333pt;}
.y106{bottom:572.806667pt;}
.y75{bottom:574.872000pt;}
.y4e{bottom:577.766667pt;}
.y185{bottom:578.884000pt;}
.y153{bottom:581.513333pt;}
.ybc{bottom:589.953333pt;}
.y74{bottom:592.884000pt;}
.y105{bottom:593.888000pt;}
.y4d{bottom:595.780000pt;}
.y184{bottom:596.100000pt;}
.y1b{bottom:598.117301pt;}
.y1a{bottom:598.466667pt;}
.y152{bottom:598.729333pt;}
.ybb{bottom:604.632000pt;}
.y73{bottom:610.896000pt;}
.y183{bottom:613.314667pt;}
.y4c{bottom:613.792000pt;}
.y104{bottom:614.968000pt;}
.y151{bottom:615.945333pt;}
.y11f{bottom:618.866667pt;}
.yba{bottom:619.309333pt;}
.ycb{bottom:619.857333pt;}
.ye9{bottom:624.221333pt;}
.y72{bottom:628.909333pt;}
.y182{bottom:630.530667pt;}
.y4b{bottom:631.805333pt;}
.y150{bottom:633.160000pt;}
.y19{bottom:633.464000pt;}
.yb9{bottom:633.988000pt;}
.y103{bottom:636.048000pt;}
.y71{bottom:646.921333pt;}
.y181{bottom:647.746667pt;}
.yb8{bottom:648.666667pt;}
.y18{bottom:649.604000pt;}
.y4a{bottom:649.817333pt;}
.y14f{bottom:650.376000pt;}
.y17{bottom:653.944000pt;}
.yb7{bottom:663.345333pt;}
.y102{bottom:664.553333pt;}
.y70{bottom:664.934667pt;}
.y180{bottom:664.961333pt;}
.y16{bottom:665.744000pt;}
.y14e{bottom:667.590667pt;}
.y49{bottom:667.829333pt;}
.y17f{bottom:682.177333pt;}
.y6f{bottom:682.946667pt;}
.yb6{bottom:684.425333pt;}
.y14d{bottom:684.806667pt;}
.y48{bottom:685.842667pt;}
.y15{bottom:686.222667pt;}
.y14{bottom:698.022667pt;}
.yb5{bottom:699.104000pt;}
.y17e{bottom:699.392000pt;}
.y6e{bottom:700.958667pt;}
.y47{bottom:703.854667pt;}
.y101{bottom:709.729333pt;}
.y14c{bottom:709.992000pt;}
.yb4{bottom:713.782667pt;}
.y13{bottom:714.162667pt;}
.y17d{bottom:716.608000pt;}
.y12{bottom:718.501333pt;}
.y6d{bottom:718.972000pt;}
.y46{bottom:721.868000pt;}
.yb3{bottom:728.460000pt;}
.y17c{bottom:733.824000pt;}
.y11{bottom:734.641333pt;}
.y6c{bottom:736.984000pt;}
.y45{bottom:739.880000pt;}
.yb2{bottom:743.138667pt;}
.y14b{bottom:745.061333pt;}
.y10{bottom:746.441333pt;}
.y17b{bottom:751.038667pt;}
.y6b{bottom:754.997333pt;}
.yb1{bottom:757.817333pt;}
.y44{bottom:757.892000pt;}
.y14a{bottom:766.540000pt;}
.yf{bottom:766.920000pt;}
.y17a{bottom:768.254667pt;}
.y6a{bottom:773.009333pt;}
.y43{bottom:775.905333pt;}
.ye{bottom:778.720000pt;}
.yb0{bottom:778.897333pt;}
.y149{bottom:780.049333pt;}
.y179{bottom:785.469333pt;}
.y69{bottom:791.021333pt;}
.y148{bottom:793.558667pt;}
.y42{bottom:793.917333pt;}
.yd{bottom:799.200000pt;}
.y178{bottom:802.685333pt;}
.yaf{bottom:807.004000pt;}
.y147{bottom:807.068000pt;}
.y68{bottom:809.034667pt;}
.yc{bottom:811.000000pt;}
.y41{bottom:811.930667pt;}
.y177{bottom:819.901333pt;}
.y67{bottom:827.046667pt;}
.y146{bottom:828.548000pt;}
.y40{bottom:829.942667pt;}
.yb{bottom:831.478667pt;}
.y176{bottom:837.116000pt;}
.yae{bottom:839.985333pt;}
.y145{bottom:842.057333pt;}
.y3f{bottom:847.954667pt;}
.ya{bottom:851.234667pt;}
.y66{bottom:853.029333pt;}
.y175{bottom:854.332000pt;}
.y144{bottom:855.566667pt;}
.yad{bottom:857.997333pt;}
.y3e{bottom:865.968000pt;}
.y9{bottom:869.248000pt;}
.y174{bottom:871.546667pt;}
.yac{bottom:876.010667pt;}
.y143{bottom:877.046667pt;}
.y3d{bottom:883.980000pt;}
.y8{bottom:887.260000pt;}
.y173{bottom:888.762667pt;}
.y142{bottom:890.556000pt;}
.yab{bottom:894.022667pt;}
.y3c{bottom:901.993333pt;}
.y141{bottom:904.065333pt;}
.y172{bottom:905.978667pt;}
.yaa{bottom:912.034667pt;}
.y140{bottom:917.574667pt;}
.y3b{bottom:920.005333pt;}
.y171{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.ya9{bottom:930.048000pt;}
.y13f{bottom:931.084000pt;}
.y3a{bottom:938.017333pt;}
.y170{bottom:940.409333pt;}
.y13e{bottom:944.593333pt;}
.ya8{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y39{bottom:956.030667pt;}
.y16f{bottom:957.624000pt;}
.ya7{bottom:966.073333pt;}
.y38{bottom:974.042667pt;}
.y16e{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y37{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y36{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h22{height:23.209028pt;}
.h9{height:27.076941pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h21{height:30.945242pt;}
.h10{height:31.157778pt;}
.h16{height:31.301562pt;}
.h15{height:31.427187pt;}
.h11{height:31.940469pt;}
.h12{height:32.028459pt;}
.h13{height:34.574438pt;}
.h1f{height:34.717901pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h24{height:35.039062pt;}
.h1e{height:35.052646pt;}
.h18{height:35.062500pt;}
.h1a{height:35.212691pt;}
.h4{height:36.445809pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h17{height:38.776563pt;}
.h19{height:38.932188pt;}
.h5{height:38.947124pt;}
.h20{height:44.436941pt;}
.h2{height:45.272024pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h6{height:69.148877pt;}
.h23{height:402.328000pt;}
.h14{height:593.457333pt;}
.h1b{height:609.166667pt;}
.h1c{height:793.701333pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:574.256667pt;}
.w5{width:594.329467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w8{width:855.276000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x6f{left:-31.448000pt;}
.x5a{left:-6.979333pt;}
.x61{left:-4.361200pt;}
.x0{left:0.000000pt;}
.x5d{left:21.340667pt;}
.x63{left:23.958800pt;}
.x8{left:26.021437pt;}
.x2{left:52.456952pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x3{left:109.606667pt;}
.x56{left:119.717013pt;}
.x6e{left:125.880000pt;}
.x57{left:127.187413pt;}
.x4{left:129.929333pt;}
.x5c{left:132.375333pt;}
.x6c{left:133.920000pt;}
.x6b{left:135.916000pt;}
.x6a{left:137.362667pt;}
.x38{left:139.209333pt;}
.x41{left:144.742667pt;}
.x59{left:146.788000pt;}
.x53{left:149.705333pt;}
.x71{left:151.458667pt;}
.x35{left:152.372000pt;}
.x69{left:154.661333pt;}
.x1a{left:156.429333pt;}
.x12{left:158.466667pt;}
.x46{left:159.790667pt;}
.x42{left:161.400000pt;}
.x54{left:162.988000pt;}
.x13{left:165.108000pt;}
.x9{left:167.421333pt;}
.x1b{left:169.713333pt;}
.x47{left:173.074667pt;}
.x43{left:174.684000pt;}
.x48{left:176.461333pt;}
.x44{left:181.432000pt;}
.x65{left:184.233333pt;}
.x84{left:185.718667pt;}
.x49{left:189.745333pt;}
.x45{left:194.716000pt;}
.x39{left:195.830667pt;}
.x86{left:198.498667pt;}
.x85{left:202.256000pt;}
.x3a{left:209.113333pt;}
.x87{left:211.782667pt;}
.x16{left:222.274667pt;}
.xa3{left:224.086667pt;}
.x64{left:226.276000pt;}
.x17{left:228.916000pt;}
.x7a{left:232.397333pt;}
.x94{left:234.457333pt;}
.x5e{left:235.420000pt;}
.x90{left:238.390667pt;}
.x52{left:242.405333pt;}
.x5{left:247.604000pt;}
.x10{left:249.116000pt;}
.x55{left:251.793333pt;}
.x11{left:255.757333pt;}
.x3b{left:265.141333pt;}
.x1c{left:267.321333pt;}
.x73{left:276.138667pt;}
.x3c{left:278.425333pt;}
.x1d{left:280.605333pt;}
.x3d{left:281.709333pt;}
.x72{left:285.821333pt;}
.x75{left:287.238667pt;}
.x67{left:288.366667pt;}
.x3e{left:294.993333pt;}
.x68{left:296.012000pt;}
.x76{left:298.164000pt;}
.x91{left:308.581333pt;}
.x92{left:315.110667pt;}
.x21{left:319.208000pt;}
.x88{left:321.061333pt;}
.x93{left:328.393333pt;}
.x22{left:332.492000pt;}
.x5f{left:333.814667pt;}
.x89{left:337.732000pt;}
.x99{left:339.334667pt;}
.x60{left:344.740000pt;}
.x8a{left:351.016000pt;}
.x9a{left:352.617333pt;}
.x77{left:355.253333pt;}
.x18{left:364.968000pt;}
.x78{left:366.180000pt;}
.x8b{left:367.686667pt;}
.x19{left:371.609333pt;}
.x4a{left:389.600000pt;}
.x58{left:394.250667pt;}
.x1e{left:398.774667pt;}
.xe{left:401.682667pt;}
.x4b{left:402.882667pt;}
.x1f{left:405.416000pt;}
.xf{left:408.324000pt;}
.xc{left:417.724000pt;}
.x20{left:421.957333pt;}
.xd{left:424.366667pt;}
.x7c{left:431.521333pt;}
.x7d{left:442.446667pt;}
.x6d{left:455.962667pt;}
.x2b{left:457.470667pt;}
.x4c{left:466.866667pt;}
.x2c{left:470.754667pt;}
.x3f{left:474.433333pt;}
.x4d{left:480.149333pt;}
.x66{left:482.868000pt;}
.x40{left:487.716000pt;}
.x95{left:509.358667pt;}
.x27{left:522.434667pt;}
.x50{left:531.601333pt;}
.x28{left:535.718667pt;}
.x96{left:540.622667pt;}
.x29{left:542.228000pt;}
.x51{left:544.884000pt;}
.x8c{left:547.932000pt;}
.xa0{left:551.446667pt;}
.x97{left:553.906667pt;}
.x2a{left:555.510667pt;}
.xa2{left:558.878667pt;}
.x8d{left:561.214667pt;}
.xa{left:563.618667pt;}
.x8e{left:564.602667pt;}
.x7f{left:566.413333pt;}
.xb{left:570.261333pt;}
.xa1{left:575.356000pt;}
.x98{left:576.881333pt;}
.x8f{left:577.885333pt;}
.x5b{left:578.882000pt;}
.x2d{left:582.064000pt;}
.x80{left:583.014667pt;}
.x62{left:585.340133pt;}
.x7e{left:593.870667pt;}
.x2e{left:595.348000pt;}
.x81{left:596.297333pt;}
.x2f{left:598.734667pt;}
.x9d{left:600.952000pt;}
.x82{left:602.933333pt;}
.x74{left:605.674667pt;}
.x14{left:607.098667pt;}
.x30{left:612.018667pt;}
.x15{left:613.740000pt;}
.x83{left:616.216000pt;}
.x7{left:623.413317pt;}
.x9e{left:624.862667pt;}
.x4e{left:633.949333pt;}
.x9b{left:635.053333pt;}
.x36{left:638.833333pt;}
.x7b{left:645.454667pt;}
.x4f{left:647.233333pt;}
.x9f{left:648.464000pt;}
.x37{left:652.116000pt;}
.x31{left:655.460000pt;}
.x23{left:656.568000pt;}
.x79{left:666.641333pt;}
.x32{left:668.744000pt;}
.x24{left:669.850667pt;}
.x33{left:672.132000pt;}
.x25{left:673.105333pt;}
.x34{left:685.414667pt;}
.x26{left:686.389333pt;}
.x9c{left:690.153333pt;}
.x70{left:855.885333pt;}
}




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