
    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_b5996725a569e4a0e59a5b11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_f300374a615d4e7f5a365754.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_7f155c9393581799aab0550a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_614619eb9bb4cba85919a8b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.174000;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_acea644b2e42c8ddf50d7f0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.198000;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_d556223b3bccf503620bd91b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_2c84c9e5433ae3a15cc12ad6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.174000;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_846d2236439646e6756bc24b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.198000;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_614619eb9bb4cba85919a8b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.174000;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;}
.mf{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.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248093,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248403,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m4f{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m5a{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.m6a{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls30{letter-spacing:-3.480000px;}
.ls14{letter-spacing:-3.300000px;}
.ls3b{letter-spacing:-3.135000px;}
.ls2f{letter-spacing:-2.700000px;}
.ls31{letter-spacing:-2.580000px;}
.ls3d{letter-spacing:-1.620000px;}
.ls39{letter-spacing:-1.596000px;}
.ls32{letter-spacing:-1.200000px;}
.ls33{letter-spacing:-0.684000px;}
.ls15{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.462000px;}
.ls25{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.396000px;}
.ls3a{letter-spacing:-0.342000px;}
.ls22{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.264000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.153912px;}
.ls11{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.115434px;}
.lsa{letter-spacing:-0.114000px;}
.ls27{letter-spacing:-0.069960px;}
.ls13{letter-spacing:-0.066000px;}
.ls28{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000090px;}
.ls2c{letter-spacing:0.033000px;}
.ls37{letter-spacing:0.038478px;}
.ls38{letter-spacing:0.057000px;}
.ls5{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.114000px;}
.ls2d{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.171000px;}
.ls1d{letter-spacing:0.192390px;}
.lsc{letter-spacing:0.198000px;}
.lse{letter-spacing:0.231000px;}
.ls1c{letter-spacing:0.264000px;}
.ls35{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.323400px;}
.ls1a{letter-spacing:0.330000px;}
.ls2a{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.396000px;}
.ls1f{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.810000px;}
.ls10{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.350000px;}
.ls29{letter-spacing:73.800000px;}
.ls21{letter-spacing:75.960000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.632000px;}
.ws4d{word-spacing:-14.148000px;}
.ws43{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.608000px;}
.ws3c{word-spacing:-13.068000px;}
.ws1c{word-spacing:-12.870000px;}
.ws33{word-spacing:-12.798000px;}
.ws10{word-spacing:-12.600000px;}
.ws4a{word-spacing:-11.970000px;}
.ws37{word-spacing:-11.400000px;}
.ws4f{word-spacing:-11.178000px;}
.ws46{word-spacing:-11.115000px;}
.ws45{word-spacing:-10.773000px;}
.ws23{word-spacing:-10.560000px;}
.ws36{word-spacing:-10.020000px;}
.ws44{word-spacing:-9.519000px;}
.ws35{word-spacing:-9.120000px;}
.ws4b{word-spacing:-8.835000px;}
.ws3d{word-spacing:-8.118858px;}
.wse{word-spacing:-8.080380px;}
.ws1d{word-spacing:-7.964946px;}
.ws24{word-spacing:-7.926468px;}
.wsf{word-spacing:-7.345800px;}
.ws25{word-spacing:-7.275840px;}
.wsc{word-spacing:-1.350000px;}
.ws16{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.594000px;}
.ws40{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.528000px;}
.ws27{word-spacing:-0.462000px;}
.ws3f{word-spacing:-0.396000px;}
.ws30{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.330000px;}
.ws14{word-spacing:-0.264000px;}
.ws8{word-spacing:-0.198000px;}
.ws21{word-spacing:-0.192390px;}
.ws3{word-spacing:-0.171000px;}
.ws9{word-spacing:-0.132000px;}
.ws5{word-spacing:-0.114000px;}
.ws15{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.060000px;}
.ws48{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.057000px;}
.ws2c{word-spacing:0.060000px;}
.ws17{word-spacing:0.066000px;}
.ws6{word-spacing:0.114000px;}
.ws2b{word-spacing:0.120000px;}
.ws11{word-spacing:0.132000px;}
.ws2f{word-spacing:0.180000px;}
.ws7{word-spacing:0.198000px;}
.ws4c{word-spacing:0.228000px;}
.ws38{word-spacing:0.240000px;}
.ws29{word-spacing:0.264000px;}
.ws26{word-spacing:0.330000px;}
.ws47{word-spacing:0.342000px;}
.ws1f{word-spacing:0.396000px;}
.ws2a{word-spacing:0.420000px;}
.ws12{word-spacing:0.462000px;}
.ws1e{word-spacing:0.594000px;}
.ws19{word-spacing:0.660000px;}
.ws3a{word-spacing:0.684000px;}
.ws42{word-spacing:2.580000px;}
.ws39{word-spacing:2.700000px;}
.ws18{word-spacing:3.300000px;}
.ws2d{word-spacing:33.960000px;}
.ws3e{word-spacing:36.900000px;}
.ws34{word-spacing:39.780000px;}
.ws2e{word-spacing:47.040000px;}
.ws4e{word-spacing:1861.002000px;}
.wsd{word-spacing:1874.070000px;}
.ws3b{word-spacing:1875.528000px;}
.ws22{word-spacing:1876.932000px;}
.ws31{word-spacing:1878.120000px;}
.ws32{word-spacing:1878.336000px;}
.ws49{word-spacing:1878.390000px;}
.ws1b{word-spacing:1880.820000px;}
.ws41{word-spacing:1883.088000px;}
._e{margin-left:-2620.026000px;}
._17{margin-left:-2617.976100px;}
._a{margin-left:-8.620200px;}
._b{margin-left:-7.494900px;}
._6{margin-left:-6.332100px;}
._3{margin-left:-4.500000px;}
._2{margin-left:-3.425400px;}
._1{margin-left:-2.050200px;}
._0{margin-left:-1.020000px;}
._5{width:1.480200px;}
._7{width:3.080100px;}
._4{width:4.104000px;}
._8{width:5.407500px;}
._10{width:12.082200px;}
._f{width:16.002300px;}
._c{width:18.045000px;}
._15{width:51.600000px;}
._14{width:54.360000px;}
._16{width:55.560000px;}
._13{width:68.880000px;}
._12{width:70.500000px;}
._d{width:72.600000px;}
._11{width:76.800000px;}
._9{width:81.060000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:89.716800px;}
.y68{bottom:89.719350px;}
.ye0{bottom:90.290100px;}
.y152{bottom:91.323750px;}
.ycc{bottom:93.372750px;}
.yba{bottom:96.396900px;}
.y50{bottom:106.301400px;}
.y24{bottom:107.716800px;}
.y151{bottom:109.321500px;}
.y67{bottom:109.700850px;}
.y81{bottom:109.744950px;}
.yb7{bottom:111.550650px;}
.y4f{bottom:124.299150px;}
.y147{bottom:125.610150px;}
.y23{bottom:125.716800px;}
.yb4{bottom:125.716950px;}
.yf0{bottom:125.717100px;}
.y150{bottom:127.319250px;}
.y66{bottom:129.685050px;}
.y80{bottom:129.726450px;}
.y149{bottom:132.816450px;}
.y14c{bottom:133.556100px;}
.y146{bottom:143.607900px;}
.y22{bottom:143.716800px;}
.yb3{bottom:143.716950px;}
.yef{bottom:143.717100px;}
.y65{bottom:149.674800px;}
.y7f{bottom:149.707950px;}
.y11d{bottom:149.721150px;}
.y14b{bottom:151.553850px;}
.y140{bottom:161.591400px;}
.y145{bottom:161.605650px;}
.y21{bottom:161.716800px;}
.yb2{bottom:161.716950px;}
.yee{bottom:161.717100px;}
.y64{bottom:169.656300px;}
.y7e{bottom:169.689450px;}
.y11c{bottom:169.699650px;}
.y13f{bottom:179.589150px;}
.y20{bottom:179.716800px;}
.yb1{bottom:179.716950px;}
.yed{bottom:179.717100px;}
.y4e{bottom:189.637800px;}
.ydd{bottom:189.648900px;}
.y7d{bottom:189.670950px;}
.y11b{bottom:189.678150px;}
.y13e{bottom:197.586900px;}
.y144{bottom:197.601150px;}
.yb0{bottom:197.716950px;}
.yec{bottom:197.717100px;}
.y96{bottom:197.717250px;}
.y4d{bottom:209.622000px;}
.ydc{bottom:209.630400px;}
.y7c{bottom:209.652450px;}
.y11a{bottom:209.656650px;}
.y13d{bottom:215.584650px;}
.y143{bottom:215.598900px;}
.yaf{bottom:215.716950px;}
.y95{bottom:215.717250px;}
.y63{bottom:229.606350px;}
.ydb{bottom:229.611900px;}
.y7b{bottom:229.633950px;}
.y119{bottom:229.635150px;}
.y4c{bottom:229.636650px;}
.y13c{bottom:233.582400px;}
.y142{bottom:233.596650px;}
.yfe{bottom:233.716950px;}
.y94{bottom:233.717250px;}
.yae{bottom:233.717400px;}
.y1f{bottom:249.590550px;}
.yda{bottom:249.593400px;}
.y118{bottom:249.613650px;}
.y7a{bottom:249.615450px;}
.y4b{bottom:249.618150px;}
.y13b{bottom:251.580150px;}
.y141{bottom:251.594400px;}
.yfd{bottom:251.716950px;}
.y93{bottom:251.717250px;}
.yad{bottom:251.717400px;}
.y1e{bottom:269.574900px;}
.yeb{bottom:269.580300px;}
.y117{bottom:269.592150px;}
.y79{bottom:269.596950px;}
.y4a{bottom:269.599650px;}
.yfc{bottom:269.716950px;}
.y92{bottom:269.717250px;}
.yac{bottom:269.717400px;}
.yfb{bottom:287.716950px;}
.y91{bottom:287.717250px;}
.yab{bottom:287.717400px;}
.y1d{bottom:289.559100px;}
.yea{bottom:289.561800px;}
.y62{bottom:289.564650px;}
.y116{bottom:289.570650px;}
.y78{bottom:289.578450px;}
.y49{bottom:289.581150px;}
.yfa{bottom:305.716950px;}
.y90{bottom:305.717250px;}
.yaa{bottom:305.717400px;}
.y1c{bottom:309.543300px;}
.y61{bottom:309.546150px;}
.y115{bottom:309.549150px;}
.y77{bottom:309.559950px;}
.y48{bottom:309.562650px;}
.yf9{bottom:323.716950px;}
.y8f{bottom:323.717250px;}
.ya9{bottom:323.717400px;}
.y1b{bottom:329.527650px;}
.yd9{bottom:329.533050px;}
.y76{bottom:329.541450px;}
.y47{bottom:329.544150px;}
.yf8{bottom:341.716950px;}
.ya8{bottom:341.717550px;}
.y1a{bottom:349.511850px;}
.yd8{bottom:349.514550px;}
.y75{bottom:349.522950px;}
.y46{bottom:349.525650px;}
.yf7{bottom:359.716950px;}
.ya7{bottom:359.717550px;}
.y19{bottom:369.496050px;}
.y8e{bottom:369.498900px;}
.y74{bottom:369.504450px;}
.y45{bottom:369.507150px;}
.y13a{bottom:369.565200px;}
.yf6{bottom:377.716950px;}
.y18{bottom:389.480400px;}
.y60{bottom:389.483100px;}
.y73{bottom:389.485950px;}
.y44{bottom:389.488650px;}
.y139{bottom:389.543700px;}
.yd7{bottom:394.974900px;}
.yf5{bottom:395.716950px;}
.y5f{bottom:409.464600px;}
.y72{bottom:409.467450px;}
.y43{bottom:409.470150px;}
.ya6{bottom:409.472850px;}
.y138{bottom:409.522200px;}
.y114{bottom:409.527900px;}
.yd6{bottom:429.448800px;}
.y17{bottom:429.448950px;}
.y42{bottom:429.451650px;}
.ya5{bottom:429.454350px;}
.y137{bottom:429.500700px;}
.y113{bottom:429.506400px;}
.y41{bottom:449.433150px;}
.ya4{bottom:449.435850px;}
.yd5{bottom:449.455050px;}
.y136{bottom:449.479200px;}
.y112{bottom:449.484900px;}
.y40{bottom:469.417350px;}
.yd4{bottom:469.436550px;}
.y135{bottom:469.457700px;}
.y111{bottom:469.463400px;}
.y71{bottom:489.401700px;}
.y5e{bottom:489.412650px;}
.yd3{bottom:489.418050px;}
.y3f{bottom:489.418200px;}
.y134{bottom:489.436200px;}
.y110{bottom:489.441900px;}
.y70{bottom:509.385900px;}
.ya3{bottom:509.388600px;}
.yf4{bottom:509.391450px;}
.y5d{bottom:509.394150px;}
.yd2{bottom:509.399550px;}
.y3e{bottom:509.399700px;}
.y8d{bottom:509.402400px;}
.y133{bottom:509.414700px;}
.y10f{bottom:509.420400px;}
.y16{bottom:518.539200px;}
.ya2{bottom:529.370100px;}
.yf3{bottom:529.372950px;}
.y5c{bottom:529.375650px;}
.y6f{bottom:529.378350px;}
.yd1{bottom:529.381050px;}
.y3d{bottom:529.381200px;}
.y132{bottom:529.393200px;}
.y10e{bottom:529.398900px;}
.y15{bottom:536.539200px;}
.ycb{bottom:549.354300px;}
.ya1{bottom:549.354450px;}
.y5b{bottom:549.357150px;}
.y6e{bottom:549.359850px;}
.yd0{bottom:549.362550px;}
.y3c{bottom:549.362700px;}
.y8c{bottom:549.365400px;}
.y131{bottom:549.371700px;}
.y10d{bottom:549.377400px;}
.yb6{bottom:557.760900px;}
.y5a{bottom:569.338650px;}
.y6d{bottom:569.341350px;}
.ycf{bottom:569.344050px;}
.y3b{bottom:569.344200px;}
.yca{bottom:569.349600px;}
.y130{bottom:569.350200px;}
.y10c{bottom:569.355900px;}
.y14a{bottom:574.707600px;}
.yb5{bottom:575.758650px;}
.yb9{bottom:583.385550px;}
.y59{bottom:589.322850px;}
.yce{bottom:589.325550px;}
.y3a{bottom:589.325700px;}
.y8b{bottom:589.328400px;}
.y12f{bottom:589.328700px;}
.yc9{bottom:589.331100px;}
.y10b{bottom:589.334400px;}
.y14{bottom:597.058950px;}
.y14f{bottom:601.317000px;}
.yb8{bottom:601.383300px;}
.ycd{bottom:609.307050px;}
.y39{bottom:609.307200px;}
.y8a{bottom:609.309900px;}
.yc8{bottom:609.312600px;}
.y10a{bottom:609.312900px;}
.y13{bottom:615.058950px;}
.y14e{bottom:619.314750px;}
.y38{bottom:629.291400px;}
.y6c{bottom:629.294100px;}
.y12{bottom:633.063450px;}
.y14d{bottom:637.312500px;}
.y148{bottom:641.989650px;}
.y58{bottom:649.275600px;}
.yf2{bottom:649.278450px;}
.ye9{bottom:649.281150px;}
.y11{bottom:651.061200px;}
.y89{bottom:654.770100px;}
.yde{bottom:668.564550px;}
.y10{bottom:669.058950px;}
.yc7{bottom:669.259800px;}
.y37{bottom:669.259950px;}
.ye8{bottom:669.262650px;}
.y88{bottom:669.268200px;}
.y109{bottom:669.317400px;}
.ya0{bottom:674.754450px;}
.ydf{bottom:683.446350px;}
.yf{bottom:687.058950px;}
.yc6{bottom:689.244000px;}
.y6a{bottom:689.244150px;}
.y9f{bottom:689.246850px;}
.y87{bottom:689.249700px;}
.y108{bottom:689.295900px;}
.y12e{bottom:689.341950px;}
.y6b{bottom:694.738650px;}
.ye{bottom:705.058950px;}
.y9e{bottom:709.228350px;}
.y86{bottom:709.231200px;}
.yc5{bottom:709.233750px;}
.y57{bottom:709.236750px;}
.y107{bottom:709.274400px;}
.y12d{bottom:709.320450px;}
.yd{bottom:723.058950px;}
.y36{bottom:729.212700px;}
.yc4{bottom:729.215250px;}
.y56{bottom:729.218250px;}
.ye7{bottom:729.229200px;}
.y106{bottom:729.252900px;}
.y12c{bottom:729.298950px;}
.yc{bottom:741.061200px;}
.yc3{bottom:749.196750px;}
.y35{bottom:749.196900px;}
.y55{bottom:749.199750px;}
.ye6{bottom:749.210700px;}
.y105{bottom:749.231400px;}
.y12b{bottom:749.277450px;}
.yb{bottom:759.058950px;}
.y34{bottom:769.181250px;}
.y85{bottom:769.186650px;}
.ye5{bottom:769.192200px;}
.y104{bottom:769.209900px;}
.y12a{bottom:769.255950px;}
.ya{bottom:777.058950px;}
.yc2{bottom:789.165300px;}
.y33{bottom:789.165450px;}
.y84{bottom:789.168150px;}
.y69{bottom:789.171000px;}
.ye4{bottom:789.173700px;}
.y103{bottom:789.188400px;}
.y129{bottom:789.234450px;}
.y9{bottom:795.061200px;}
.y32{bottom:809.149650px;}
.y54{bottom:809.152500px;}
.y9d{bottom:809.155200px;}
.y102{bottom:809.166900px;}
.y128{bottom:809.212950px;}
.y8{bottom:813.058950px;}
.y31{bottom:829.134000px;}
.y9c{bottom:829.136700px;}
.y101{bottom:829.145400px;}
.y127{bottom:829.191450px;}
.y7{bottom:831.058950px;}
.y6{bottom:849.058950px;}
.y30{bottom:849.118200px;}
.y9b{bottom:849.120900px;}
.y100{bottom:849.123900px;}
.yc1{bottom:849.126300px;}
.y83{bottom:849.126450px;}
.y126{bottom:849.169950px;}
.y5{bottom:867.058950px;}
.y9a{bottom:869.102400px;}
.y53{bottom:869.105100px;}
.yc0{bottom:869.107800px;}
.y2f{bottom:869.107950px;}
.y125{bottom:869.148450px;}
.y4{bottom:885.058950px;}
.y52{bottom:889.086600px;}
.ybf{bottom:889.089300px;}
.y2e{bottom:889.089450px;}
.y124{bottom:889.126950px;}
.ybe{bottom:909.070800px;}
.y2d{bottom:909.070950px;}
.y123{bottom:909.105450px;}
.yff{bottom:911.055150px;}
.y2c{bottom:929.055150px;}
.y51{bottom:929.057850px;}
.yf1{bottom:929.060700px;}
.ye3{bottom:929.063400px;}
.y122{bottom:929.083950px;}
.y2b{bottom:949.039350px;}
.y82{bottom:949.042200px;}
.ye2{bottom:949.044900px;}
.ybd{bottom:949.047600px;}
.y121{bottom:949.062450px;}
.y3{bottom:954.082650px;}
.y2a{bottom:969.023700px;}
.ye1{bottom:969.026400px;}
.ybc{bottom:969.029100px;}
.y99{bottom:969.031950px;}
.y120{bottom:969.040950px;}
.y29{bottom:989.007900px;}
.ybb{bottom:989.010600px;}
.y98{bottom:989.013450px;}
.y11f{bottom:989.019450px;}
.y2{bottom:997.585350px;}
.y28{bottom:1008.992100px;}
.y97{bottom:1008.994950px;}
.y11e{bottom:1008.997950px;}
.y1{bottom:1026.094350px;}
.y27{bottom:1028.976450px;}
.y26{bottom:1082.225850px;}
.hc{height:34.630200px;}
.h4{height:44.100000px;}
.h9{height:50.868000px;}
.h5{height:51.300000px;}
.hb{height:52.098000px;}
.h6{height:52.920000px;}
.h8{height:54.000000px;}
.he{height:54.840000px;}
.h7{height:59.400000px;}
.ha{height:60.324000px;}
.hd{height:62.172000px;}
.hf{height:67.824000px;}
.h3{height:73.476000px;}
.h2{height:74.970000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x8{left:67.684500px;}
.xb{left:70.971300px;}
.x6{left:72.283500px;}
.x1{left:77.543850px;}
.x3{left:79.567050px;}
.x2{left:81.139350px;}
.x1c{left:88.948950px;}
.x1d{left:93.451950px;}
.x14{left:94.476750px;}
.x9{left:96.866100px;}
.x7{left:98.029350px;}
.x1b{left:101.367300px;}
.x4{left:102.448650px;}
.xf{left:105.370350px;}
.x5{left:106.533150px;}
.x15{left:289.880850px;}
.x10{left:306.749700px;}
.x11{left:310.850100px;}
.x1f{left:409.885350px;}
.x1e{left:411.068100px;}
.x21{left:425.943900px;}
.x22{left:447.133650px;}
.x16{left:466.499400px;}
.x17{left:475.441800px;}
.x12{left:602.052900px;}
.x13{left:610.966800px;}
.x18{left:622.178400px;}
.x19{left:631.120950px;}
.xd{left:641.838900px;}
.xe{left:650.912400px;}
.x20{left:715.678500px;}
.xc{left:719.876850px;}
.xa{left:723.116700px;}
.x1a{left:727.126950px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls30{letter-spacing:-3.093333pt;}
.ls14{letter-spacing:-2.933333pt;}
.ls3b{letter-spacing:-2.786667pt;}
.ls2f{letter-spacing:-2.400000pt;}
.ls31{letter-spacing:-2.293333pt;}
.ls3d{letter-spacing:-1.440000pt;}
.ls39{letter-spacing:-1.418667pt;}
.ls32{letter-spacing:-1.066667pt;}
.ls33{letter-spacing:-0.608000pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.410667pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.352000pt;}
.ls3a{letter-spacing:-0.304000pt;}
.ls22{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.234667pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.136811pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.102608pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls27{letter-spacing:-0.062187pt;}
.ls13{letter-spacing:-0.058667pt;}
.ls28{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000080pt;}
.ls2c{letter-spacing:0.029333pt;}
.ls37{letter-spacing:0.034203pt;}
.ls38{letter-spacing:0.050667pt;}
.ls5{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.101333pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.152000pt;}
.ls1d{letter-spacing:0.171013pt;}
.lsc{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.205333pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls35{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.287467pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.352000pt;}
.ls1f{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.720000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.200000pt;}
.ls29{letter-spacing:65.600000pt;}
.ls21{letter-spacing:67.520000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws4d{word-spacing:-12.576000pt;}
.ws43{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.096000pt;}
.ws3c{word-spacing:-11.616000pt;}
.ws1c{word-spacing:-11.440000pt;}
.ws33{word-spacing:-11.376000pt;}
.ws10{word-spacing:-11.200000pt;}
.ws4a{word-spacing:-10.640000pt;}
.ws37{word-spacing:-10.133333pt;}
.ws4f{word-spacing:-9.936000pt;}
.ws46{word-spacing:-9.880000pt;}
.ws45{word-spacing:-9.576000pt;}
.ws23{word-spacing:-9.386667pt;}
.ws36{word-spacing:-8.906667pt;}
.ws44{word-spacing:-8.461333pt;}
.ws35{word-spacing:-8.106667pt;}
.ws4b{word-spacing:-7.853333pt;}
.ws3d{word-spacing:-7.216763pt;}
.wse{word-spacing:-7.182560pt;}
.ws1d{word-spacing:-7.079952pt;}
.ws24{word-spacing:-7.045749pt;}
.wsf{word-spacing:-6.529600pt;}
.ws25{word-spacing:-6.467413pt;}
.wsc{word-spacing:-1.200000pt;}
.ws16{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.528000pt;}
.ws40{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.469333pt;}
.ws27{word-spacing:-0.410667pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.293333pt;}
.ws14{word-spacing:-0.234667pt;}
.ws8{word-spacing:-0.176000pt;}
.ws21{word-spacing:-0.171013pt;}
.ws3{word-spacing:-0.152000pt;}
.ws9{word-spacing:-0.117333pt;}
.ws5{word-spacing:-0.101333pt;}
.ws15{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.053333pt;}
.ws48{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.050667pt;}
.ws2c{word-spacing:0.053333pt;}
.ws17{word-spacing:0.058667pt;}
.ws6{word-spacing:0.101333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws11{word-spacing:0.117333pt;}
.ws2f{word-spacing:0.160000pt;}
.ws7{word-spacing:0.176000pt;}
.ws4c{word-spacing:0.202667pt;}
.ws38{word-spacing:0.213333pt;}
.ws29{word-spacing:0.234667pt;}
.ws26{word-spacing:0.293333pt;}
.ws47{word-spacing:0.304000pt;}
.ws1f{word-spacing:0.352000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws12{word-spacing:0.410667pt;}
.ws1e{word-spacing:0.528000pt;}
.ws19{word-spacing:0.586667pt;}
.ws3a{word-spacing:0.608000pt;}
.ws42{word-spacing:2.293333pt;}
.ws39{word-spacing:2.400000pt;}
.ws18{word-spacing:2.933333pt;}
.ws2d{word-spacing:30.186667pt;}
.ws3e{word-spacing:32.800000pt;}
.ws34{word-spacing:35.360000pt;}
.ws2e{word-spacing:41.813333pt;}
.ws4e{word-spacing:1654.224000pt;}
.wsd{word-spacing:1665.840000pt;}
.ws3b{word-spacing:1667.136000pt;}
.ws22{word-spacing:1668.384000pt;}
.ws31{word-spacing:1669.440000pt;}
.ws32{word-spacing:1669.632000pt;}
.ws49{word-spacing:1669.680000pt;}
.ws1b{word-spacing:1671.840000pt;}
.ws41{word-spacing:1673.856000pt;}
._e{margin-left:-2328.912000pt;}
._17{margin-left:-2327.089867pt;}
._a{margin-left:-7.662400pt;}
._b{margin-left:-6.662133pt;}
._6{margin-left:-5.628533pt;}
._3{margin-left:-4.000000pt;}
._2{margin-left:-3.044800pt;}
._1{margin-left:-1.822400pt;}
._0{margin-left:-0.906667pt;}
._5{width:1.315733pt;}
._7{width:2.737867pt;}
._4{width:3.648000pt;}
._8{width:4.806667pt;}
._10{width:10.739733pt;}
._f{width:14.224267pt;}
._c{width:16.040000pt;}
._15{width:45.866667pt;}
._14{width:48.320000pt;}
._16{width:49.386667pt;}
._13{width:61.226667pt;}
._12{width:62.666667pt;}
._d{width:64.533333pt;}
._11{width:68.266667pt;}
._9{width:72.053333pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:79.748267pt;}
.y68{bottom:79.750533pt;}
.ye0{bottom:80.257867pt;}
.y152{bottom:81.176667pt;}
.ycc{bottom:82.998000pt;}
.yba{bottom:85.686133pt;}
.y50{bottom:94.490133pt;}
.y24{bottom:95.748267pt;}
.y151{bottom:97.174667pt;}
.y67{bottom:97.511867pt;}
.y81{bottom:97.551067pt;}
.yb7{bottom:99.156133pt;}
.y4f{bottom:110.488133pt;}
.y147{bottom:111.653467pt;}
.y23{bottom:111.748267pt;}
.yb4{bottom:111.748400pt;}
.yf0{bottom:111.748533pt;}
.y150{bottom:113.172667pt;}
.y66{bottom:115.275600pt;}
.y80{bottom:115.312400pt;}
.y149{bottom:118.059067pt;}
.y14c{bottom:118.716533pt;}
.y146{bottom:127.651467pt;}
.y22{bottom:127.748267pt;}
.yb3{bottom:127.748400pt;}
.yef{bottom:127.748533pt;}
.y65{bottom:133.044267pt;}
.y7f{bottom:133.073733pt;}
.y11d{bottom:133.085467pt;}
.y14b{bottom:134.714533pt;}
.y140{bottom:143.636800pt;}
.y145{bottom:143.649467pt;}
.y21{bottom:143.748267pt;}
.yb2{bottom:143.748400pt;}
.yee{bottom:143.748533pt;}
.y64{bottom:150.805600pt;}
.y7e{bottom:150.835067pt;}
.y11c{bottom:150.844133pt;}
.y13f{bottom:159.634800pt;}
.y20{bottom:159.748267pt;}
.yb1{bottom:159.748400pt;}
.yed{bottom:159.748533pt;}
.y4e{bottom:168.566933pt;}
.ydd{bottom:168.576800pt;}
.y7d{bottom:168.596400pt;}
.y11b{bottom:168.602800pt;}
.y13e{bottom:175.632800pt;}
.y144{bottom:175.645467pt;}
.yb0{bottom:175.748400pt;}
.yec{bottom:175.748533pt;}
.y96{bottom:175.748667pt;}
.y4d{bottom:186.330667pt;}
.ydc{bottom:186.338133pt;}
.y7c{bottom:186.357733pt;}
.y11a{bottom:186.361467pt;}
.y13d{bottom:191.630800pt;}
.y143{bottom:191.643467pt;}
.yaf{bottom:191.748400pt;}
.y95{bottom:191.748667pt;}
.y63{bottom:204.094533pt;}
.ydb{bottom:204.099467pt;}
.y7b{bottom:204.119067pt;}
.y119{bottom:204.120133pt;}
.y4c{bottom:204.121467pt;}
.y13c{bottom:207.628800pt;}
.y142{bottom:207.641467pt;}
.yfe{bottom:207.748400pt;}
.y94{bottom:207.748667pt;}
.yae{bottom:207.748800pt;}
.y1f{bottom:221.858267pt;}
.yda{bottom:221.860800pt;}
.y118{bottom:221.878800pt;}
.y7a{bottom:221.880400pt;}
.y4b{bottom:221.882800pt;}
.y13b{bottom:223.626800pt;}
.y141{bottom:223.639467pt;}
.yfd{bottom:223.748400pt;}
.y93{bottom:223.748667pt;}
.yad{bottom:223.748800pt;}
.y1e{bottom:239.622133pt;}
.yeb{bottom:239.626933pt;}
.y117{bottom:239.637467pt;}
.y79{bottom:239.641733pt;}
.y4a{bottom:239.644133pt;}
.yfc{bottom:239.748400pt;}
.y92{bottom:239.748667pt;}
.yac{bottom:239.748800pt;}
.yfb{bottom:255.748400pt;}
.y91{bottom:255.748667pt;}
.yab{bottom:255.748800pt;}
.y1d{bottom:257.385867pt;}
.yea{bottom:257.388267pt;}
.y62{bottom:257.390800pt;}
.y116{bottom:257.396133pt;}
.y78{bottom:257.403067pt;}
.y49{bottom:257.405467pt;}
.yfa{bottom:271.748400pt;}
.y90{bottom:271.748667pt;}
.yaa{bottom:271.748800pt;}
.y1c{bottom:275.149600pt;}
.y61{bottom:275.152133pt;}
.y115{bottom:275.154800pt;}
.y77{bottom:275.164400pt;}
.y48{bottom:275.166800pt;}
.yf9{bottom:287.748400pt;}
.y8f{bottom:287.748667pt;}
.ya9{bottom:287.748800pt;}
.y1b{bottom:292.913467pt;}
.yd9{bottom:292.918267pt;}
.y76{bottom:292.925733pt;}
.y47{bottom:292.928133pt;}
.yf8{bottom:303.748400pt;}
.ya8{bottom:303.748933pt;}
.y1a{bottom:310.677200pt;}
.yd8{bottom:310.679600pt;}
.y75{bottom:310.687067pt;}
.y46{bottom:310.689467pt;}
.yf7{bottom:319.748400pt;}
.ya7{bottom:319.748933pt;}
.y19{bottom:328.440933pt;}
.y8e{bottom:328.443467pt;}
.y74{bottom:328.448400pt;}
.y45{bottom:328.450800pt;}
.y13a{bottom:328.502400pt;}
.yf6{bottom:335.748400pt;}
.y18{bottom:346.204800pt;}
.y60{bottom:346.207200pt;}
.y73{bottom:346.209733pt;}
.y44{bottom:346.212133pt;}
.y139{bottom:346.261067pt;}
.yd7{bottom:351.088800pt;}
.yf5{bottom:351.748400pt;}
.y5f{bottom:363.968533pt;}
.y72{bottom:363.971067pt;}
.y43{bottom:363.973467pt;}
.ya6{bottom:363.975867pt;}
.y138{bottom:364.019733pt;}
.y114{bottom:364.024800pt;}
.yd6{bottom:381.732267pt;}
.y17{bottom:381.732400pt;}
.y42{bottom:381.734800pt;}
.ya5{bottom:381.737200pt;}
.y137{bottom:381.778400pt;}
.y113{bottom:381.783467pt;}
.y41{bottom:399.496133pt;}
.ya4{bottom:399.498533pt;}
.yd5{bottom:399.515600pt;}
.y136{bottom:399.537067pt;}
.y112{bottom:399.542133pt;}
.y40{bottom:417.259867pt;}
.yd4{bottom:417.276933pt;}
.y135{bottom:417.295733pt;}
.y111{bottom:417.300800pt;}
.y71{bottom:435.023733pt;}
.y5e{bottom:435.033467pt;}
.yd3{bottom:435.038267pt;}
.y3f{bottom:435.038400pt;}
.y134{bottom:435.054400pt;}
.y110{bottom:435.059467pt;}
.y70{bottom:452.787467pt;}
.ya3{bottom:452.789867pt;}
.yf4{bottom:452.792400pt;}
.y5d{bottom:452.794800pt;}
.yd2{bottom:452.799600pt;}
.y3e{bottom:452.799733pt;}
.y8d{bottom:452.802133pt;}
.y133{bottom:452.813067pt;}
.y10f{bottom:452.818133pt;}
.y16{bottom:460.923733pt;}
.ya2{bottom:470.551200pt;}
.yf3{bottom:470.553733pt;}
.y5c{bottom:470.556133pt;}
.y6f{bottom:470.558533pt;}
.yd1{bottom:470.560933pt;}
.y3d{bottom:470.561067pt;}
.y132{bottom:470.571733pt;}
.y10e{bottom:470.576800pt;}
.y15{bottom:476.923733pt;}
.ycb{bottom:488.314933pt;}
.ya1{bottom:488.315067pt;}
.y5b{bottom:488.317467pt;}
.y6e{bottom:488.319867pt;}
.yd0{bottom:488.322267pt;}
.y3c{bottom:488.322400pt;}
.y8c{bottom:488.324800pt;}
.y131{bottom:488.330400pt;}
.y10d{bottom:488.335467pt;}
.yb6{bottom:495.787467pt;}
.y5a{bottom:506.078800pt;}
.y6d{bottom:506.081200pt;}
.ycf{bottom:506.083600pt;}
.y3b{bottom:506.083733pt;}
.yca{bottom:506.088533pt;}
.y130{bottom:506.089067pt;}
.y10c{bottom:506.094133pt;}
.y14a{bottom:510.851200pt;}
.yb5{bottom:511.785467pt;}
.yb9{bottom:518.564933pt;}
.y59{bottom:523.842533pt;}
.yce{bottom:523.844933pt;}
.y3a{bottom:523.845067pt;}
.y8b{bottom:523.847467pt;}
.y12f{bottom:523.847733pt;}
.yc9{bottom:523.849867pt;}
.y10b{bottom:523.852800pt;}
.y14{bottom:530.719067pt;}
.y14f{bottom:534.504000pt;}
.yb8{bottom:534.562933pt;}
.ycd{bottom:541.606267pt;}
.y39{bottom:541.606400pt;}
.y8a{bottom:541.608800pt;}
.yc8{bottom:541.611200pt;}
.y10a{bottom:541.611467pt;}
.y13{bottom:546.719067pt;}
.y14e{bottom:550.502000pt;}
.y38{bottom:559.370133pt;}
.y6c{bottom:559.372533pt;}
.y12{bottom:562.723067pt;}
.y14d{bottom:566.500000pt;}
.y148{bottom:570.657467pt;}
.y58{bottom:577.133867pt;}
.yf2{bottom:577.136400pt;}
.ye9{bottom:577.138800pt;}
.y11{bottom:578.721067pt;}
.y89{bottom:582.017867pt;}
.yde{bottom:594.279600pt;}
.y10{bottom:594.719067pt;}
.yc7{bottom:594.897600pt;}
.y37{bottom:594.897733pt;}
.ye8{bottom:594.900133pt;}
.y88{bottom:594.905067pt;}
.y109{bottom:594.948800pt;}
.ya0{bottom:599.781733pt;}
.ydf{bottom:607.507867pt;}
.yf{bottom:610.719067pt;}
.yc6{bottom:612.661333pt;}
.y6a{bottom:612.661467pt;}
.y9f{bottom:612.663867pt;}
.y87{bottom:612.666400pt;}
.y108{bottom:612.707467pt;}
.y12e{bottom:612.748400pt;}
.y6b{bottom:617.545467pt;}
.ye{bottom:626.719067pt;}
.y9e{bottom:630.425200pt;}
.y86{bottom:630.427733pt;}
.yc5{bottom:630.430000pt;}
.y57{bottom:630.432667pt;}
.y107{bottom:630.466133pt;}
.y12d{bottom:630.507067pt;}
.yd{bottom:642.719067pt;}
.y36{bottom:648.189067pt;}
.yc4{bottom:648.191333pt;}
.y56{bottom:648.194000pt;}
.ye7{bottom:648.203733pt;}
.y106{bottom:648.224800pt;}
.y12c{bottom:648.265733pt;}
.yc{bottom:658.721067pt;}
.yc3{bottom:665.952667pt;}
.y35{bottom:665.952800pt;}
.y55{bottom:665.955333pt;}
.ye6{bottom:665.965067pt;}
.y105{bottom:665.983467pt;}
.y12b{bottom:666.024400pt;}
.yb{bottom:674.719067pt;}
.y34{bottom:683.716667pt;}
.y85{bottom:683.721467pt;}
.ye5{bottom:683.726400pt;}
.y104{bottom:683.742133pt;}
.y12a{bottom:683.783067pt;}
.ya{bottom:690.719067pt;}
.yc2{bottom:701.480267pt;}
.y33{bottom:701.480400pt;}
.y84{bottom:701.482800pt;}
.y69{bottom:701.485333pt;}
.ye4{bottom:701.487733pt;}
.y103{bottom:701.500800pt;}
.y129{bottom:701.541733pt;}
.y9{bottom:706.721067pt;}
.y32{bottom:719.244133pt;}
.y54{bottom:719.246667pt;}
.y9d{bottom:719.249067pt;}
.y102{bottom:719.259467pt;}
.y128{bottom:719.300400pt;}
.y8{bottom:722.719067pt;}
.y31{bottom:737.008000pt;}
.y9c{bottom:737.010400pt;}
.y101{bottom:737.018133pt;}
.y127{bottom:737.059067pt;}
.y7{bottom:738.719067pt;}
.y6{bottom:754.719067pt;}
.y30{bottom:754.771733pt;}
.y9b{bottom:754.774133pt;}
.y100{bottom:754.776800pt;}
.yc1{bottom:754.778933pt;}
.y83{bottom:754.779067pt;}
.y126{bottom:754.817733pt;}
.y5{bottom:770.719067pt;}
.y9a{bottom:772.535467pt;}
.y53{bottom:772.537867pt;}
.yc0{bottom:772.540267pt;}
.y2f{bottom:772.540400pt;}
.y125{bottom:772.576400pt;}
.y4{bottom:786.719067pt;}
.y52{bottom:790.299200pt;}
.ybf{bottom:790.301600pt;}
.y2e{bottom:790.301733pt;}
.y124{bottom:790.335067pt;}
.ybe{bottom:808.062933pt;}
.y2d{bottom:808.063067pt;}
.y123{bottom:808.093733pt;}
.yff{bottom:809.826800pt;}
.y2c{bottom:825.826800pt;}
.y51{bottom:825.829200pt;}
.yf1{bottom:825.831733pt;}
.ye3{bottom:825.834133pt;}
.y122{bottom:825.852400pt;}
.y2b{bottom:843.590533pt;}
.y82{bottom:843.593067pt;}
.ye2{bottom:843.595467pt;}
.ybd{bottom:843.597867pt;}
.y121{bottom:843.611067pt;}
.y3{bottom:848.073467pt;}
.y2a{bottom:861.354400pt;}
.ye1{bottom:861.356800pt;}
.ybc{bottom:861.359200pt;}
.y99{bottom:861.361733pt;}
.y120{bottom:861.369733pt;}
.y29{bottom:879.118133pt;}
.ybb{bottom:879.120533pt;}
.y98{bottom:879.123067pt;}
.y11f{bottom:879.128400pt;}
.y2{bottom:886.742533pt;}
.y28{bottom:896.881867pt;}
.y97{bottom:896.884400pt;}
.y11e{bottom:896.887067pt;}
.y1{bottom:912.083867pt;}
.y27{bottom:914.645733pt;}
.y26{bottom:961.978533pt;}
.hc{height:30.782400pt;}
.h4{height:39.200000pt;}
.h9{height:45.216000pt;}
.h5{height:45.600000pt;}
.hb{height:46.309333pt;}
.h6{height:47.040000pt;}
.h8{height:48.000000pt;}
.he{height:48.746667pt;}
.h7{height:52.800000pt;}
.ha{height:53.621333pt;}
.hd{height:55.264000pt;}
.hf{height:60.288000pt;}
.h3{height:65.312000pt;}
.h2{height:66.640000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x8{left:60.164000pt;}
.xb{left:63.085600pt;}
.x6{left:64.252000pt;}
.x1{left:68.927867pt;}
.x3{left:70.726267pt;}
.x2{left:72.123867pt;}
.x1c{left:79.065733pt;}
.x1d{left:83.068400pt;}
.x14{left:83.979333pt;}
.x9{left:86.103200pt;}
.x7{left:87.137200pt;}
.x1b{left:90.104267pt;}
.x4{left:91.065467pt;}
.xf{left:93.662533pt;}
.x5{left:94.696133pt;}
.x15{left:257.671867pt;}
.x10{left:272.666400pt;}
.x11{left:276.311200pt;}
.x1f{left:364.342533pt;}
.x1e{left:365.393867pt;}
.x21{left:378.616800pt;}
.x22{left:397.452133pt;}
.x16{left:414.666133pt;}
.x17{left:422.614933pt;}
.x12{left:535.158133pt;}
.x13{left:543.081600pt;}
.x18{left:553.047467pt;}
.x19{left:560.996400pt;}
.xd{left:570.523467pt;}
.xe{left:578.588800pt;}
.x20{left:636.158667pt;}
.xc{left:639.890533pt;}
.xa{left:642.770400pt;}
.x1a{left:646.335067pt;}
}




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