
    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_131b5f4825903f84556aba25.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_d2ad440bd2f9c4f86c2de778.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a60d47ddaa0bfa9cf27a50f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187000;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_9b96779dd86c90fe3f804aa3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c19fc83ed0db5dfa484cd413.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_d245715a87fed644751e360e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.231000;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_025cac1a824848eb36a1c687.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_86475e0cf7913f63bdb8669d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731000;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_32cda92d753eedc9b6db8088.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.187000;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_1073d4f8ecd2b712bd3b2255.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c19fc83ed0db5dfa484cd413.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_164f46d5531716f748eb7e66.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.231000;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;}
.m25{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);}
.m51{transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m3a{transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m48{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m33{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);}
.m13{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m36{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,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);}
.md{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,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);}
.m24{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251009,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m39{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.893800px;}
.v6{vertical-align:18.981000px;}
.v1{vertical-align:21.955800px;}
.v7{vertical-align:23.982000px;}
.v3{vertical-align:26.982000px;}
.v4{vertical-align:30.024000px;}
.v8{vertical-align:47.991600px;}
.va{vertical-align:54.000000px;}
.v9{vertical-align:59.994000px;}
.ls1c{letter-spacing:-5.472000px;}
.lse{letter-spacing:-5.400000px;}
.ls1b{letter-spacing:-3.510000px;}
.lsf{letter-spacing:-3.300000px;}
.ls56{letter-spacing:-3.249000px;}
.ls20{letter-spacing:-3.240000px;}
.ls1f{letter-spacing:-2.592000px;}
.ls58{letter-spacing:-2.052000px;}
.ls21{letter-spacing:-1.890000px;}
.ls22{letter-spacing:-1.728000px;}
.ls55{letter-spacing:-1.425000px;}
.ls5b{letter-spacing:-1.197000px;}
.ls54{letter-spacing:-1.140000px;}
.ls3c{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-0.924000px;}
.ls38{letter-spacing:-0.858000px;}
.ls26{letter-spacing:-0.810000px;}
.ls34{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.758178px;}
.ls23{letter-spacing:-0.756000px;}
.ls35{letter-spacing:-0.726000px;}
.ls53{letter-spacing:-0.684000px;}
.ls36{letter-spacing:-0.660000px;}
.ls5c{letter-spacing:-0.627000px;}
.ls57{letter-spacing:-0.570000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.528000px;}
.ls5a{letter-spacing:-0.513000px;}
.ls19{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.396000px;}
.ls37{letter-spacing:-0.384780px;}
.ls5d{letter-spacing:-0.342000px;}
.ls9{letter-spacing:-0.330000px;}
.ls59{letter-spacing:-0.285000px;}
.ls5e{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.264000px;}
.ls39{letter-spacing:-0.228000px;}
.ls6{letter-spacing:-0.198000px;}
.ls27{letter-spacing:-0.171000px;}
.ls3a{letter-spacing:-0.132924px;}
.ls8{letter-spacing:-0.132000px;}
.ls32{letter-spacing:-0.115434px;}
.ls4{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000066px;}
.ls15{letter-spacing:0.000090px;}
.ls29{letter-spacing:0.057000px;}
.lsc{letter-spacing:0.066000px;}
.lsa{letter-spacing:0.132000px;}
.ls3b{letter-spacing:0.171000px;}
.ls16{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.264000px;}
.ls31{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.285000px;}
.ls10{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.342000px;}
.ls1a{letter-spacing:0.399000px;}
.ls46{letter-spacing:0.456000px;}
.ls17{letter-spacing:0.462000px;}
.ls40{letter-spacing:0.513000px;}
.ls25{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.570000px;}
.ls12{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.600000px;}
.ls51{letter-spacing:0.684000px;}
.ls52{letter-spacing:0.684356px;}
.ls0{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.741000px;}
.ls4c{letter-spacing:0.798000px;}
.ls2e{letter-spacing:0.808723px;}
.ls48{letter-spacing:0.855000px;}
.ls14{letter-spacing:0.858000px;}
.ls4a{letter-spacing:0.912000px;}
.ls13{letter-spacing:0.924000px;}
.ls4b{letter-spacing:0.969000px;}
.ls2d{letter-spacing:1.080000px;}
.ls44{letter-spacing:1.083000px;}
.ls45{letter-spacing:1.140000px;}
.ls42{letter-spacing:1.197000px;}
.ls41{letter-spacing:1.254000px;}
.ls4e{letter-spacing:1.311000px;}
.ls1{letter-spacing:1.350000px;}
.ls50{letter-spacing:1.368000px;}
.ls4f{letter-spacing:2.109000px;}
.ls3e{letter-spacing:2.223000px;}
.ls49{letter-spacing:4.218000px;}
.lsb{letter-spacing:5.412000px;}
.ls43{letter-spacing:9.063000px;}
.ls30{letter-spacing:43.316208px;}
.ls2c{letter-spacing:44.099640px;}
.ls2b{letter-spacing:44.162820px;}
.ls2a{letter-spacing:44.996796px;}
.ls1e{letter-spacing:264.432876px;}
.ls1d{letter-spacing:295.980054px;}
.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;}
}
.ws93{word-spacing:-43.328844px;}
.ws1{word-spacing:-16.632000px;}
.ws35{word-spacing:-14.124000px;}
.ws19{word-spacing:-13.992000px;}
.ws38{word-spacing:-13.926000px;}
.wsa7{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.662000px;}
.ws4e{word-spacing:-13.530000px;}
.ws9c{word-spacing:-13.332000px;}
.ws4d{word-spacing:-13.266000px;}
.wsb8{word-spacing:-13.167000px;}
.ws96{word-spacing:-13.068000px;}
.ws1a{word-spacing:-13.002000px;}
.wsbe{word-spacing:-12.939000px;}
.wsbc{word-spacing:-12.882000px;}
.ws36{word-spacing:-12.870000px;}
.ws34{word-spacing:-12.798000px;}
.wsbf{word-spacing:-12.768000px;}
.ws1d{word-spacing:-12.672000px;}
.wsc0{word-spacing:-12.483000px;}
.ws4f{word-spacing:-12.369000px;}
.ws9d{word-spacing:-12.342000px;}
.wsb9{word-spacing:-12.198000px;}
.ws39{word-spacing:-11.970000px;}
.wsae{word-spacing:-11.685000px;}
.ws92{word-spacing:-11.524306px;}
.wsb7{word-spacing:-11.400000px;}
.ws66{word-spacing:-11.340000px;}
.wsb3{word-spacing:-11.286000px;}
.wsb2{word-spacing:-11.115000px;}
.ws65{word-spacing:-11.070000px;}
.wsbb{word-spacing:-10.773000px;}
.ws1b{word-spacing:-10.560000px;}
.wsb4{word-spacing:-10.545000px;}
.wsba{word-spacing:-9.918000px;}
.ws75{word-spacing:-9.612000px;}
.ws37{word-spacing:-8.080380px;}
.ws64{word-spacing:-7.887990px;}
.ws9e{word-spacing:-7.695600px;}
.wsa0{word-spacing:-6.978510px;}
.ws9f{word-spacing:-6.845586px;}
.wsab{word-spacing:-6.611220px;}
.ws50{word-spacing:-6.498000px;}
.wscb{word-spacing:-3.477000px;}
.ws46{word-spacing:-3.102000px;}
.wsa4{word-spacing:-2.904000px;}
.ws14{word-spacing:-2.838000px;}
.ws8{word-spacing:-2.772000px;}
.ws61{word-spacing:-2.706000px;}
.ws9{word-spacing:-2.640000px;}
.ws8a{word-spacing:-2.574000px;}
.ws6{word-spacing:-2.451000px;}
.ws22{word-spacing:-2.442000px;}
.ws33{word-spacing:-2.394000px;}
.ws9a{word-spacing:-2.376000px;}
.ws31{word-spacing:-2.337000px;}
.wsd9{word-spacing:-2.280000px;}
.ws8f{word-spacing:-2.223000px;}
.ws30{word-spacing:-2.166000px;}
.ws8c{word-spacing:-2.112000px;}
.wsdb{word-spacing:-2.109000px;}
.wsc{word-spacing:-1.914000px;}
.ws43{word-spacing:-1.848000px;}
.ws87{word-spacing:-1.824000px;}
.ws2b{word-spacing:-1.782000px;}
.ws24{word-spacing:-1.716000px;}
.ws21{word-spacing:-1.650000px;}
.ws29{word-spacing:-1.584000px;}
.wse{word-spacing:-1.518000px;}
.wsa{word-spacing:-1.452000px;}
.ws97{word-spacing:-1.425000px;}
.ws52{word-spacing:-1.386000px;}
.wsd3{word-spacing:-1.368000px;}
.ws17{word-spacing:-1.350000px;}
.ws60{word-spacing:-1.254000px;}
.ws8e{word-spacing:-1.197000px;}
.ws23{word-spacing:-1.056000px;}
.ws3{word-spacing:-1.026000px;}
.ws13{word-spacing:-0.990000px;}
.wsbd{word-spacing:-0.969000px;}
.ws1f{word-spacing:-0.924000px;}
.wsce{word-spacing:-0.912000px;}
.ws2f{word-spacing:-0.858000px;}
.wsc7{word-spacing:-0.798000px;}
.ws28{word-spacing:-0.726000px;}
.ws2d{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.594000px;}
.ws88{word-spacing:-0.570000px;}
.ws86{word-spacing:-0.540000px;}
.wsa2{word-spacing:-0.528000px;}
.wsd5{word-spacing:-0.513000px;}
.wsd6{word-spacing:-0.456000px;}
.ws57{word-spacing:-0.330000px;}
.ws47{word-spacing:-0.264000px;}
.ws3b{word-spacing:-0.198000px;}
.ws2c{word-spacing:-0.132000px;}
.wsb5{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.wsd8{word-spacing:0.057000px;}
.wsc5{word-spacing:0.114000px;}
.wsa1{word-spacing:0.115434px;}
.ws63{word-spacing:0.132000px;}
.ws8d{word-spacing:0.171000px;}
.ws45{word-spacing:0.198000px;}
.wsda{word-spacing:0.228000px;}
.ws4b{word-spacing:0.342000px;}
.ws5e{word-spacing:0.462000px;}
.wscc{word-spacing:0.513000px;}
.wsd2{word-spacing:0.627000px;}
.ws5f{word-spacing:0.660000px;}
.ws55{word-spacing:0.726000px;}
.ws95{word-spacing:0.758178px;}
.ws54{word-spacing:0.792000px;}
.wsc8{word-spacing:0.855000px;}
.ws27{word-spacing:0.858000px;}
.ws3d{word-spacing:0.924000px;}
.ws32{word-spacing:0.969000px;}
.ws3e{word-spacing:0.990000px;}
.ws98{word-spacing:1.056000px;}
.wsaf{word-spacing:1.080000px;}
.ws4{word-spacing:1.083000px;}
.ws16{word-spacing:1.122000px;}
.ws26{word-spacing:1.188000px;}
.ws11{word-spacing:1.254000px;}
.ws2e{word-spacing:1.320000px;}
.ws62{word-spacing:1.386000px;}
.ws5{word-spacing:1.425000px;}
.ws5a{word-spacing:1.452000px;}
.ws59{word-spacing:1.518000px;}
.ws40{word-spacing:1.650000px;}
.ws7{word-spacing:1.716000px;}
.ws12{word-spacing:1.782000px;}
.wsb{word-spacing:1.848000px;}
.wsd{word-spacing:1.914000px;}
.ws5d{word-spacing:2.112000px;}
.ws90{word-spacing:2.166000px;}
.ws53{word-spacing:2.244000px;}
.wsca{word-spacing:2.280000px;}
.ws2a{word-spacing:2.310000px;}
.ws44{word-spacing:2.442000px;}
.wsc2{word-spacing:2.451000px;}
.wsa3{word-spacing:2.508000px;}
.ws85{word-spacing:2.592000px;}
.wsf{word-spacing:2.640000px;}
.ws5c{word-spacing:2.772000px;}
.ws56{word-spacing:2.838000px;}
.ws58{word-spacing:2.904000px;}
.ws3f{word-spacing:2.970000px;}
.ws4a{word-spacing:3.021000px;}
.ws99{word-spacing:3.102000px;}
.ws5b{word-spacing:3.168000px;}
.wsb6{word-spacing:3.192000px;}
.wsc1{word-spacing:3.249000px;}
.wsa6{word-spacing:3.432000px;}
.ws1e{word-spacing:3.564000px;}
.wsc9{word-spacing:3.648000px;}
.ws51{word-spacing:3.696000px;}
.ws49{word-spacing:3.762000px;}
.wsb0{word-spacing:3.819000px;}
.wsa5{word-spacing:3.828000px;}
.ws94{word-spacing:3.876000px;}
.ws8b{word-spacing:3.894000px;}
.ws48{word-spacing:3.933000px;}
.ws41{word-spacing:3.960000px;}
.ws42{word-spacing:4.158000px;}
.wsc3{word-spacing:4.218000px;}
.ws10{word-spacing:4.290000px;}
.wsd7{word-spacing:4.332000px;}
.ws3c{word-spacing:4.488000px;}
.ws15{word-spacing:4.554000px;}
.ws3a{word-spacing:4.620000px;}
.wsc4{word-spacing:4.788000px;}
.wsd0{word-spacing:5.358000px;}
.wscd{word-spacing:6.156000px;}
.wscf{word-spacing:6.441000px;}
.wsc6{word-spacing:7.866000px;}
.wsd4{word-spacing:8.265000px;}
.wsd1{word-spacing:8.835000px;}
.wsad{word-spacing:141.048000px;}
.ws84{word-spacing:174.798000px;}
.ws7d{word-spacing:181.008000px;}
.ws73{word-spacing:182.034000px;}
.ws74{word-spacing:182.088000px;}
.ws72{word-spacing:189.594000px;}
.ws7f{word-spacing:199.476000px;}
.ws7e{word-spacing:202.392000px;}
.ws79{word-spacing:205.902000px;}
.ws7c{word-spacing:210.654000px;}
.wsa8{word-spacing:210.708000px;}
.ws7a{word-spacing:211.248000px;}
.ws80{word-spacing:214.164000px;}
.ws71{word-spacing:222.534000px;}
.ws7b{word-spacing:223.668000px;}
.wsaa{word-spacing:226.098000px;}
.ws81{word-spacing:226.854000px;}
.ws82{word-spacing:228.420000px;}
.ws83{word-spacing:229.392000px;}
.ws77{word-spacing:229.824000px;}
.ws78{word-spacing:230.040000px;}
.ws76{word-spacing:237.492000px;}
.ws70{word-spacing:244.134000px;}
.wsa9{word-spacing:255.651684px;}
.ws6c{word-spacing:257.526000px;}
.ws67{word-spacing:258.984000px;}
.wsac{word-spacing:303.048000px;}
.ws68{word-spacing:395.766000px;}
.ws6a{word-spacing:395.982000px;}
.ws6e{word-spacing:399.438000px;}
.ws6b{word-spacing:417.312000px;}
.ws69{word-spacing:417.798000px;}
.ws6f{word-spacing:418.986000px;}
.ws6d{word-spacing:423.198000px;}
.wsdc{word-spacing:1913.923800px;}
.ws91{word-spacing:1926.559800px;}
.wsb1{word-spacing:1929.421800px;}
.ws9b{word-spacing:1935.739800px;}
.ws89{word-spacing:1937.305800px;}
.ws4c{word-spacing:1945.189800px;}
.ws18{word-spacing:1949.671800px;}
._13{margin-left:-2620.566000px;}
._e{margin-left:-2619.216000px;}
._a{margin-left:-18.255434px;}
._f{margin-left:-15.930000px;}
._6{margin-left:-14.807400px;}
._b{margin-left:-13.048800px;}
._c{margin-left:-11.376000px;}
._9{margin-left:-9.900000px;}
._54{margin-left:-7.380000px;}
._8{margin-left:-6.006000px;}
._3{margin-left:-4.500000px;}
._2{margin-left:-2.550000px;}
._0{margin-left:-1.530000px;}
._1{width:1.020000px;}
._5{width:2.370000px;}
._4{width:3.738000px;}
._7{width:5.118000px;}
._55{width:6.810000px;}
._12{width:7.829987px;}
._89{width:9.021000px;}
._8a{width:10.848013px;}
._87{width:19.437000px;}
._88{width:32.091000px;}
._10{width:38.987894px;}
._15{width:42.921000px;}
._11{width:44.232000px;}
._53{width:45.429000px;}
._56{width:46.683269px;}
._14{width:48.507000px;}
._d{width:54.378000px;}
._63{width:132.870000px;}
._61{width:140.106000px;}
._5a{width:142.104000px;}
._5f{width:144.102000px;}
._6b{width:152.988000px;}
._86{width:156.894000px;}
._72{width:158.616000px;}
._74{width:160.518000px;}
._75{width:161.574000px;}
._6c{width:164.238000px;}
._6f{width:165.750000px;}
._84{width:167.130000px;}
._78{width:168.330000px;}
._7a{width:175.464000px;}
._7d{width:179.196000px;}
._82{width:190.566000px;}
._66{width:192.684000px;}
._3d{width:196.422000px;}
._68{width:199.530000px;}
._69{width:202.788000px;}
._6e{width:204.714000px;}
._17{width:205.740000px;}
._60{width:208.236000px;}
._7f{width:209.424000px;}
._5c{width:213.438000px;}
._65{width:215.046000px;}
._46{width:217.620000px;}
._4b{width:221.142000px;}
._44{width:222.966000px;}
._3c{width:225.018000px;}
._4e{width:226.704000px;}
._42{width:231.174000px;}
._5e{width:234.000000px;}
._18{width:235.548000px;}
._59{width:237.276000px;}
._4d{width:238.356000px;}
._58{width:239.436000px;}
._50{width:240.840000px;}
._2c{width:242.652000px;}
._4f{width:244.188000px;}
._3a{width:246.762000px;}
._2f{width:248.208000px;}
._23{width:251.022000px;}
._31{width:257.940000px;}
._35{width:259.200000px;}
._1d{width:261.006000px;}
._38{width:262.020000px;}
._20{width:264.246000px;}
._37{width:265.356000px;}
._70{width:267.276000px;}
._2e{width:269.460000px;}
._29{width:270.594000px;}
._1c{width:272.322000px;}
._19{width:274.212000px;}
._85{width:276.168000px;}
._79{width:277.410000px;}
._7b{width:279.480000px;}
._80{width:285.744000px;}
._57{width:289.061400px;}
._83{width:292.368000px;}
._77{width:295.878000px;}
._7c{width:308.730000px;}
._76{width:309.918000px;}
._81{width:312.024000px;}
._67{width:313.428000px;}
._71{width:315.372000px;}
._73{width:318.072000px;}
._64{width:331.950000px;}
._5b{width:336.648000px;}
._5d{width:340.158000px;}
._16{width:343.113000px;}
._3e{width:345.036000px;}
._6a{width:348.798000px;}
._62{width:351.282000px;}
._6d{width:352.308000px;}
._36{width:361.998000px;}
._27{width:363.119400px;}
._2d{width:369.066000px;}
._2a{width:370.278000px;}
._24{width:373.008000px;}
._1e{width:375.492000px;}
._30{width:376.626000px;}
._1a{width:380.160000px;}
._32{width:382.026000px;}
._21{width:383.376000px;}
._34{width:408.408000px;}
._3b{width:411.486000px;}
._39{width:423.246000px;}
._26{width:424.440000px;}
._33{width:443.070000px;}
._28{width:446.364000px;}
._25{width:455.058000px;}
._1f{width:457.704000px;}
._22{width:460.242000px;}
._2b{width:461.376000px;}
._1b{width:463.698000px;}
._7e{width:635.160000px;}
._3f{width:877.338000px;}
._52{width:1295.568000px;}
._47{width:1299.726000px;}
._43{width:1318.956000px;}
._45{width:1320.030000px;}
._41{width:1324.164000px;}
._49{width:1326.648000px;}
._51{width:1329.120000px;}
._48{width:1335.450000px;}
._40{width:1346.304000px;}
._4c{width:1349.004000px;}
._4a{width:1351.578000px;}
.fc2{color:rgb(10,10,10);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:12.636000px;}
.fs8{font-size:31.482000px;}
.fsa{font-size:32.493600px;}
.fsd{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fsb{font-size:50.544000px;}
.fs9{font-size:50.545200px;}
.fs6{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;}
.ybe{bottom:3.159900px;}
.yb1{bottom:89.291400px;}
.y4a{bottom:89.716650px;}
.y7c{bottom:89.718750px;}
.yae{bottom:89.719350px;}
.y26{bottom:89.722050px;}
.yc7{bottom:89.724750px;}
.y61{bottom:89.727900px;}
.y120{bottom:91.902000px;}
.yb0{bottom:107.291400px;}
.y7b{bottom:107.716500px;}
.y49{bottom:107.716650px;}
.y60{bottom:107.725650px;}
.yad{bottom:109.700850px;}
.y25{bottom:109.703550px;}
.yc6{bottom:109.706250px;}
.y11f{bottom:109.902000px;}
.y48{bottom:125.721150px;}
.y5f{bottom:125.723400px;}
.y24{bottom:129.685050px;}
.yc5{bottom:129.687750px;}
.ybd{bottom:135.007500px;}
.y47{bottom:143.718900px;}
.y5e{bottom:143.721150px;}
.ybf{bottom:148.387500px;}
.yc0{bottom:148.400136px;}
.y23{bottom:149.669250px;}
.y114{bottom:149.675100px;}
.y79{bottom:149.680350px;}
.yd3{bottom:149.685900px;}
.y7a{bottom:155.163750px;}
.y46{bottom:161.716650px;}
.y5d{bottom:161.718900px;}
.y22{bottom:169.653600px;}
.y78{bottom:169.661850px;}
.yd2{bottom:169.667400px;}
.ya2{bottom:175.409250px;}
.y105{bottom:179.658900px;}
.y5c{bottom:179.716650px;}
.yac{bottom:186.600900px;}
.y21{bottom:189.637800px;}
.yc4{bottom:189.640500px;}
.y77{bottom:189.643350px;}
.yd1{bottom:189.648900px;}
.ya1{bottom:193.407000px;}
.y104{bottom:197.658900px;}
.y5b{bottom:197.716650px;}
.y20{bottom:209.622000px;}
.y76{bottom:209.624850px;}
.yd0{bottom:209.630400px;}
.yb8{bottom:222.253800px;}
.y103{bottom:226.739100px;}
.ya0{bottom:228.533250px;}
.y1f{bottom:229.606350px;}
.ycf{bottom:229.611900px;}
.yb9{bottom:238.738800px;}
.y1e{bottom:249.590550px;}
.yce{bottom:249.593400px;}
.yc3{bottom:249.596100px;}
.yab{bottom:249.598800px;}
.y113{bottom:249.602100px;}
.y102{bottom:250.121100px;}
.y9f{bottom:251.915250px;}
.y1d{bottom:269.574900px;}
.y75{bottom:269.577600px;}
.yaa{bottom:269.580300px;}
.y112{bottom:269.580600px;}
.y101{bottom:270.276600px;}
.y9e{bottom:275.297250px;}
.y100{bottom:277.769100px;}
.y45{bottom:289.559100px;}
.ya9{bottom:289.561800px;}
.y74{bottom:289.570050px;}
.y1c{bottom:289.572900px;}
.y9d{bottom:298.679250px;}
.yff{bottom:305.430600px;}
.ya8{bottom:309.543300px;}
.y44{bottom:309.548850px;}
.y73{bottom:309.551550px;}
.y1b{bottom:309.554400px;}
.y9c{bottom:322.061250px;}
.yfe{bottom:328.812600px;}
.ya7{bottom:329.527650px;}
.y43{bottom:329.530350px;}
.y72{bottom:329.533050px;}
.y1a{bottom:329.535900px;}
.yb7{bottom:332.596650px;}
.y9b{bottom:345.443250px;}
.y42{bottom:349.511850px;}
.y71{bottom:349.514550px;}
.y19{bottom:349.517400px;}
.yb6{bottom:349.768350px;}
.yfd{bottom:352.194600px;}
.y9a{bottom:368.825250px;}
.y41{bottom:369.496050px;}
.y18{bottom:369.498900px;}
.ya6{bottom:369.501600px;}
.yc2{bottom:373.466850px;}
.yfc{bottom:375.576600px;}
.y17{bottom:389.480400px;}
.ya5{bottom:389.483100px;}
.yc1{bottom:391.464600px;}
.y99{bottom:392.207250px;}
.yfb{bottom:398.958600px;}
.yb5{bottom:409.235700px;}
.y16{bottom:409.464600px;}
.y70{bottom:409.470150px;}
.ycd{bottom:414.959100px;}
.y98{bottom:415.589250px;}
.yfa{bottom:419.114100px;}
.yb4{bottom:425.744100px;}
.yf9{bottom:426.606600px;}
.y15{bottom:429.448950px;}
.y6f{bottom:429.451650px;}
.y97{bottom:438.971250px;}
.y14{bottom:449.433150px;}
.y5a{bottom:449.435850px;}
.y111{bottom:449.444700px;}
.yf8{bottom:454.268100px;}
.y96{bottom:462.353250px;}
.y40{bottom:469.417350px;}
.y13{bottom:469.422900px;}
.y110{bottom:469.423200px;}
.yf7{bottom:477.650100px;}
.y95{bottom:485.735250px;}
.y3f{bottom:489.401700px;}
.y12{bottom:489.404400px;}
.yf6{bottom:497.805600px;}
.yb2{bottom:498.484800px;}
.y94{bottom:509.117250px;}
.y11{bottom:509.385900px;}
.y3e{bottom:509.396850px;}
.yf5{bottom:511.305600px;}
.yb3{bottom:516.239250px;}
.y10{bottom:529.370100px;}
.y3d{bottom:529.378350px;}
.y10f{bottom:529.381650px;}
.y93{bottom:532.499250px;}
.yf4{bottom:544.961100px;}
.yf{bottom:549.354450px;}
.y3c{bottom:549.359850px;}
.y10e{bottom:549.360150px;}
.y59{bottom:549.368100px;}
.y92{bottom:555.881250px;}
.yba{bottom:566.980800px;}
.yf3{bottom:568.343100px;}
.ye{bottom:569.338650px;}
.y3b{bottom:569.341350px;}
.y58{bottom:569.349600px;}
.y91{bottom:579.263250px;}
.ybb{bottom:581.995200px;}
.ybc{bottom:583.161450px;}
.yf2{bottom:588.498600px;}
.yd{bottom:589.322850px;}
.y57{bottom:589.331100px;}
.ya4{bottom:600.603900px;}
.yf1{bottom:601.998600px;}
.y90{bottom:602.645250px;}
.y3a{bottom:609.307200px;}
.y56{bottom:609.312600px;}
.y6e{bottom:609.320850px;}
.ya3{bottom:618.603900px;}
.ycc{bottom:622.972500px;}
.y8f{bottom:626.027250px;}
.yc{bottom:629.291400px;}
.y55{bottom:629.294100px;}
.y39{bottom:629.296950px;}
.y6d{bottom:629.302350px;}
.yf0{bottom:632.427600px;}
.y11e{bottom:639.404250px;}
.yef{bottom:645.927600px;}
.y38{bottom:649.278450px;}
.y10d{bottom:649.281450px;}
.y6c{bottom:649.283850px;}
.y8e{bottom:649.409250px;}
.yaf{bottom:655.906650px;}
.y11d{bottom:657.402000px;}
.y37{bottom:669.259950px;}
.y6b{bottom:669.265350px;}
.y54{bottom:669.268200px;}
.y8d{bottom:672.791250px;}
.yee{bottom:676.356600px;}
.y36{bottom:689.244150px;}
.y6a{bottom:689.246850px;}
.y53{bottom:689.249700px;}
.yed{bottom:689.856600px;}
.y8c{bottom:696.173250px;}
.y69{bottom:709.228350px;}
.y35{bottom:709.231200px;}
.y10c{bottom:709.263000px;}
.yb{bottom:716.539200px;}
.y8b{bottom:719.555250px;}
.yea{bottom:720.285600px;}
.yec{bottom:721.784100px;}
.y34{bottom:729.212700px;}
.y10b{bottom:729.241500px;}
.ya{bottom:734.539200px;}
.ye9{bottom:735.284100px;}
.y8a{bottom:742.937250px;}
.yeb{bottom:748.784100px;}
.y52{bottom:749.196900px;}
.y68{bottom:749.205150px;}
.y10a{bottom:749.220000px;}
.ye8{bottom:750.282600px;}
.y9{bottom:752.539200px;}
.y89{bottom:766.319250px;}
.ye7{bottom:767.211600px;}
.y33{bottom:769.181250px;}
.y67{bottom:769.186650px;}
.y109{bottom:769.198500px;}
.ye4{bottom:782.210100px;}
.y51{bottom:789.165450px;}
.y66{bottom:789.168150px;}
.y108{bottom:789.177000px;}
.y88{bottom:789.701250px;}
.ye3{bottom:789.702600px;}
.ye6{bottom:797.208600px;}
.y50{bottom:809.149650px;}
.y107{bottom:809.155500px;}
.ye5{bottom:812.207100px;}
.y8{bottom:813.065700px;}
.y87{bottom:813.083250px;}
.y32{bottom:829.134000px;}
.y4f{bottom:829.136700px;}
.ye2{bottom:830.216100px;}
.y7{bottom:831.063450px;}
.y86{bottom:836.465250px;}
.ye1{bottom:837.724200px;}
.y11c{bottom:840.919200px;}
.y6{bottom:849.061200px;}
.y31{bottom:849.118200px;}
.y65{bottom:849.120900px;}
.y11b{bottom:858.916950px;}
.ycb{bottom:859.807200px;}
.y85{bottom:859.847250px;}
.ydf{bottom:863.225700px;}
.ye0{bottom:863.239200px;}
.y5{bottom:867.058950px;}
.y4e{bottom:869.102400px;}
.y30{bottom:869.110650px;}
.y106{bottom:871.086600px;}
.y11a{bottom:876.914700px;}
.yde{bottom:878.224200px;}
.y84{bottom:883.229250px;}
.y4{bottom:885.058950px;}
.y4d{bottom:889.086600px;}
.y2f{bottom:889.092150px;}
.y119{bottom:894.912450px;}
.ydd{bottom:895.153200px;}
.ydc{bottom:902.649300px;}
.y83{bottom:906.633300px;}
.y4c{bottom:909.070950px;}
.y2e{bottom:909.073650px;}
.y118{bottom:912.910200px;}
.ydb{bottom:927.084300px;}
.y2d{bottom:929.055150px;}
.y64{bottom:929.063400px;}
.y82{bottom:930.015300px;}
.yda{bottom:942.082800px;}
.y2c{bottom:949.039350px;}
.y63{bottom:949.044900px;}
.yd7{bottom:949.590900px;}
.y81{bottom:953.397300px;}
.y3{bottom:954.082650px;}
.yca{bottom:954.534000px;}
.yd9{bottom:957.081300px;}
.y2b{bottom:969.023700px;}
.y62{bottom:969.026400px;}
.yc9{bottom:969.031950px;}
.y117{bottom:969.040950px;}
.yd8{bottom:972.095400px;}
.y80{bottom:976.779300px;}
.y2a{bottom:989.007900px;}
.yc8{bottom:989.013450px;}
.y116{bottom:989.019450px;}
.yd6{bottom:991.359900px;}
.y2{bottom:997.585350px;}
.yd5{bottom:998.852400px;}
.y7f{bottom:1000.161300px;}
.y4b{bottom:1008.992100px;}
.y29{bottom:1008.994950px;}
.y115{bottom:1008.997950px;}
.y7e{bottom:1017.090300px;}
.y7d{bottom:1024.582800px;}
.y1{bottom:1026.094350px;}
.yd4{bottom:1028.853900px;}
.y28{bottom:1028.976450px;}
.y27{bottom:1082.225850px;}
.h12{height:9.085284px;}
.h13{height:9.161100px;}
.hf{height:23.070456px;}
.h14{height:34.707156px;}
.h11{height:35.886240px;}
.he{height:35.887092px;}
.ha{height:38.346000px;}
.h4{height:44.100000px;}
.hc{height:48.708000px;}
.h8{height:50.868000px;}
.h5{height:51.414000px;}
.hd{height:52.098000px;}
.h15{height:52.378764px;}
.h6{height:52.920000px;}
.h7{height:59.532000px;}
.h9{height:60.324000px;}
.h3{height:73.476000px;}
.h2{height:74.970000px;}
.h16{height:78.732000px;}
.hb{height:79.380000px;}
.h19{height:102.708000px;}
.h17{height:108.756000px;}
.h18{height:168.696000px;}
.h10{height:481.527000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w2{width:654.804000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x6{left:67.681500px;}
.xb{left:71.244900px;}
.x4{left:72.283500px;}
.x9{left:76.188450px;}
.x1{left:79.660950px;}
.x2{left:80.942100px;}
.x23{left:85.957950px;}
.x11{left:88.933650px;}
.x5{left:92.621700px;}
.x7{left:93.945450px;}
.x3{left:101.117550px;}
.xa{left:102.567450px;}
.x10{left:112.443900px;}
.xf{left:114.024750px;}
.xe{left:115.469250px;}
.xd{left:117.021750px;}
.x22{left:126.300000px;}
.x20{left:205.548150px;}
.x21{left:216.307800px;}
.x17{left:365.100300px;}
.x26{left:465.633000px;}
.x24{left:467.778450px;}
.x13{left:511.452900px;}
.x19{left:533.231250px;}
.x1d{left:554.412150px;}
.x16{left:562.820400px;}
.x14{left:565.668900px;}
.x18{left:567.082500px;}
.x27{left:573.822000px;}
.x25{left:574.834500px;}
.x1b{left:577.202481px;}
.x1e{left:585.436200px;}
.x1f{left:594.275550px;}
.x12{left:597.666750px;}
.x15{left:611.652300px;}
.x1a{left:644.302800px;}
.xc{left:650.852250px;}
.x8{left:720.781200px;}
.x1c{left:723.602850px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.905600pt;}
.v6{vertical-align:16.872000pt;}
.v1{vertical-align:19.516267pt;}
.v7{vertical-align:21.317333pt;}
.v3{vertical-align:23.984000pt;}
.v4{vertical-align:26.688000pt;}
.v8{vertical-align:42.659200pt;}
.va{vertical-align:48.000000pt;}
.v9{vertical-align:53.328000pt;}
.ls1c{letter-spacing:-4.864000pt;}
.lse{letter-spacing:-4.800000pt;}
.ls1b{letter-spacing:-3.120000pt;}
.lsf{letter-spacing:-2.933333pt;}
.ls56{letter-spacing:-2.888000pt;}
.ls20{letter-spacing:-2.880000pt;}
.ls1f{letter-spacing:-2.304000pt;}
.ls58{letter-spacing:-1.824000pt;}
.ls21{letter-spacing:-1.680000pt;}
.ls22{letter-spacing:-1.536000pt;}
.ls55{letter-spacing:-1.266667pt;}
.ls5b{letter-spacing:-1.064000pt;}
.ls54{letter-spacing:-1.013333pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.821333pt;}
.ls38{letter-spacing:-0.762667pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls34{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.673936pt;}
.ls23{letter-spacing:-0.672000pt;}
.ls35{letter-spacing:-0.645333pt;}
.ls53{letter-spacing:-0.608000pt;}
.ls36{letter-spacing:-0.586667pt;}
.ls5c{letter-spacing:-0.557333pt;}
.ls57{letter-spacing:-0.506667pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.469333pt;}
.ls5a{letter-spacing:-0.456000pt;}
.ls19{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls37{letter-spacing:-0.342027pt;}
.ls5d{letter-spacing:-0.304000pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls59{letter-spacing:-0.253333pt;}
.ls5e{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls39{letter-spacing:-0.202667pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls27{letter-spacing:-0.152000pt;}
.ls3a{letter-spacing:-0.118155pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls32{letter-spacing:-0.102608pt;}
.ls4{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000059pt;}
.ls15{letter-spacing:0.000080pt;}
.ls29{letter-spacing:0.050667pt;}
.lsc{letter-spacing:0.058667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls3b{letter-spacing:0.152000pt;}
.ls16{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls31{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.253333pt;}
.ls10{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.304000pt;}
.ls1a{letter-spacing:0.354667pt;}
.ls46{letter-spacing:0.405333pt;}
.ls17{letter-spacing:0.410667pt;}
.ls40{letter-spacing:0.456000pt;}
.ls25{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.506667pt;}
.ls12{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls51{letter-spacing:0.608000pt;}
.ls52{letter-spacing:0.608317pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.658667pt;}
.ls4c{letter-spacing:0.709333pt;}
.ls2e{letter-spacing:0.718865pt;}
.ls48{letter-spacing:0.760000pt;}
.ls14{letter-spacing:0.762667pt;}
.ls4a{letter-spacing:0.810667pt;}
.ls13{letter-spacing:0.821333pt;}
.ls4b{letter-spacing:0.861333pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls44{letter-spacing:0.962667pt;}
.ls45{letter-spacing:1.013333pt;}
.ls42{letter-spacing:1.064000pt;}
.ls41{letter-spacing:1.114667pt;}
.ls4e{letter-spacing:1.165333pt;}
.ls1{letter-spacing:1.200000pt;}
.ls50{letter-spacing:1.216000pt;}
.ls4f{letter-spacing:1.874667pt;}
.ls3e{letter-spacing:1.976000pt;}
.ls49{letter-spacing:3.749333pt;}
.lsb{letter-spacing:4.810667pt;}
.ls43{letter-spacing:8.056000pt;}
.ls30{letter-spacing:38.503296pt;}
.ls2c{letter-spacing:39.199680pt;}
.ls2b{letter-spacing:39.255840pt;}
.ls2a{letter-spacing:39.997152pt;}
.ls1e{letter-spacing:235.051445pt;}
.ls1d{letter-spacing:263.093381pt;}
.ws93{word-spacing:-38.514528pt;}
.ws1{word-spacing:-14.784000pt;}
.ws35{word-spacing:-12.554667pt;}
.ws19{word-spacing:-12.437333pt;}
.ws38{word-spacing:-12.378667pt;}
.wsa7{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.144000pt;}
.ws4e{word-spacing:-12.026667pt;}
.ws9c{word-spacing:-11.850667pt;}
.ws4d{word-spacing:-11.792000pt;}
.wsb8{word-spacing:-11.704000pt;}
.ws96{word-spacing:-11.616000pt;}
.ws1a{word-spacing:-11.557333pt;}
.wsbe{word-spacing:-11.501333pt;}
.wsbc{word-spacing:-11.450667pt;}
.ws36{word-spacing:-11.440000pt;}
.ws34{word-spacing:-11.376000pt;}
.wsbf{word-spacing:-11.349333pt;}
.ws1d{word-spacing:-11.264000pt;}
.wsc0{word-spacing:-11.096000pt;}
.ws4f{word-spacing:-10.994667pt;}
.ws9d{word-spacing:-10.970667pt;}
.wsb9{word-spacing:-10.842667pt;}
.ws39{word-spacing:-10.640000pt;}
.wsae{word-spacing:-10.386667pt;}
.ws92{word-spacing:-10.243827pt;}
.wsb7{word-spacing:-10.133333pt;}
.ws66{word-spacing:-10.080000pt;}
.wsb3{word-spacing:-10.032000pt;}
.wsb2{word-spacing:-9.880000pt;}
.ws65{word-spacing:-9.840000pt;}
.wsbb{word-spacing:-9.576000pt;}
.ws1b{word-spacing:-9.386667pt;}
.wsb4{word-spacing:-9.373333pt;}
.wsba{word-spacing:-8.816000pt;}
.ws75{word-spacing:-8.544000pt;}
.ws37{word-spacing:-7.182560pt;}
.ws64{word-spacing:-7.011547pt;}
.ws9e{word-spacing:-6.840533pt;}
.wsa0{word-spacing:-6.203120pt;}
.ws9f{word-spacing:-6.084965pt;}
.wsab{word-spacing:-5.876640pt;}
.ws50{word-spacing:-5.776000pt;}
.wscb{word-spacing:-3.090667pt;}
.ws46{word-spacing:-2.757333pt;}
.wsa4{word-spacing:-2.581333pt;}
.ws14{word-spacing:-2.522667pt;}
.ws8{word-spacing:-2.464000pt;}
.ws61{word-spacing:-2.405333pt;}
.ws9{word-spacing:-2.346667pt;}
.ws8a{word-spacing:-2.288000pt;}
.ws6{word-spacing:-2.178667pt;}
.ws22{word-spacing:-2.170667pt;}
.ws33{word-spacing:-2.128000pt;}
.ws9a{word-spacing:-2.112000pt;}
.ws31{word-spacing:-2.077333pt;}
.wsd9{word-spacing:-2.026667pt;}
.ws8f{word-spacing:-1.976000pt;}
.ws30{word-spacing:-1.925333pt;}
.ws8c{word-spacing:-1.877333pt;}
.wsdb{word-spacing:-1.874667pt;}
.wsc{word-spacing:-1.701333pt;}
.ws43{word-spacing:-1.642667pt;}
.ws87{word-spacing:-1.621333pt;}
.ws2b{word-spacing:-1.584000pt;}
.ws24{word-spacing:-1.525333pt;}
.ws21{word-spacing:-1.466667pt;}
.ws29{word-spacing:-1.408000pt;}
.wse{word-spacing:-1.349333pt;}
.wsa{word-spacing:-1.290667pt;}
.ws97{word-spacing:-1.266667pt;}
.ws52{word-spacing:-1.232000pt;}
.wsd3{word-spacing:-1.216000pt;}
.ws17{word-spacing:-1.200000pt;}
.ws60{word-spacing:-1.114667pt;}
.ws8e{word-spacing:-1.064000pt;}
.ws23{word-spacing:-0.938667pt;}
.ws3{word-spacing:-0.912000pt;}
.ws13{word-spacing:-0.880000pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws1f{word-spacing:-0.821333pt;}
.wsce{word-spacing:-0.810667pt;}
.ws2f{word-spacing:-0.762667pt;}
.wsc7{word-spacing:-0.709333pt;}
.ws28{word-spacing:-0.645333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.528000pt;}
.ws88{word-spacing:-0.506667pt;}
.ws86{word-spacing:-0.480000pt;}
.wsa2{word-spacing:-0.469333pt;}
.wsd5{word-spacing:-0.456000pt;}
.wsd6{word-spacing:-0.405333pt;}
.ws57{word-spacing:-0.293333pt;}
.ws47{word-spacing:-0.234667pt;}
.ws3b{word-spacing:-0.176000pt;}
.ws2c{word-spacing:-0.117333pt;}
.wsb5{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.050667pt;}
.wsc5{word-spacing:0.101333pt;}
.wsa1{word-spacing:0.102608pt;}
.ws63{word-spacing:0.117333pt;}
.ws8d{word-spacing:0.152000pt;}
.ws45{word-spacing:0.176000pt;}
.wsda{word-spacing:0.202667pt;}
.ws4b{word-spacing:0.304000pt;}
.ws5e{word-spacing:0.410667pt;}
.wscc{word-spacing:0.456000pt;}
.wsd2{word-spacing:0.557333pt;}
.ws5f{word-spacing:0.586667pt;}
.ws55{word-spacing:0.645333pt;}
.ws95{word-spacing:0.673936pt;}
.ws54{word-spacing:0.704000pt;}
.wsc8{word-spacing:0.760000pt;}
.ws27{word-spacing:0.762667pt;}
.ws3d{word-spacing:0.821333pt;}
.ws32{word-spacing:0.861333pt;}
.ws3e{word-spacing:0.880000pt;}
.ws98{word-spacing:0.938667pt;}
.wsaf{word-spacing:0.960000pt;}
.ws4{word-spacing:0.962667pt;}
.ws16{word-spacing:0.997333pt;}
.ws26{word-spacing:1.056000pt;}
.ws11{word-spacing:1.114667pt;}
.ws2e{word-spacing:1.173333pt;}
.ws62{word-spacing:1.232000pt;}
.ws5{word-spacing:1.266667pt;}
.ws5a{word-spacing:1.290667pt;}
.ws59{word-spacing:1.349333pt;}
.ws40{word-spacing:1.466667pt;}
.ws7{word-spacing:1.525333pt;}
.ws12{word-spacing:1.584000pt;}
.wsb{word-spacing:1.642667pt;}
.wsd{word-spacing:1.701333pt;}
.ws5d{word-spacing:1.877333pt;}
.ws90{word-spacing:1.925333pt;}
.ws53{word-spacing:1.994667pt;}
.wsca{word-spacing:2.026667pt;}
.ws2a{word-spacing:2.053333pt;}
.ws44{word-spacing:2.170667pt;}
.wsc2{word-spacing:2.178667pt;}
.wsa3{word-spacing:2.229333pt;}
.ws85{word-spacing:2.304000pt;}
.wsf{word-spacing:2.346667pt;}
.ws5c{word-spacing:2.464000pt;}
.ws56{word-spacing:2.522667pt;}
.ws58{word-spacing:2.581333pt;}
.ws3f{word-spacing:2.640000pt;}
.ws4a{word-spacing:2.685333pt;}
.ws99{word-spacing:2.757333pt;}
.ws5b{word-spacing:2.816000pt;}
.wsb6{word-spacing:2.837333pt;}
.wsc1{word-spacing:2.888000pt;}
.wsa6{word-spacing:3.050667pt;}
.ws1e{word-spacing:3.168000pt;}
.wsc9{word-spacing:3.242667pt;}
.ws51{word-spacing:3.285333pt;}
.ws49{word-spacing:3.344000pt;}
.wsb0{word-spacing:3.394667pt;}
.wsa5{word-spacing:3.402667pt;}
.ws94{word-spacing:3.445333pt;}
.ws8b{word-spacing:3.461333pt;}
.ws48{word-spacing:3.496000pt;}
.ws41{word-spacing:3.520000pt;}
.ws42{word-spacing:3.696000pt;}
.wsc3{word-spacing:3.749333pt;}
.ws10{word-spacing:3.813333pt;}
.wsd7{word-spacing:3.850667pt;}
.ws3c{word-spacing:3.989333pt;}
.ws15{word-spacing:4.048000pt;}
.ws3a{word-spacing:4.106667pt;}
.wsc4{word-spacing:4.256000pt;}
.wsd0{word-spacing:4.762667pt;}
.wscd{word-spacing:5.472000pt;}
.wscf{word-spacing:5.725333pt;}
.wsc6{word-spacing:6.992000pt;}
.wsd4{word-spacing:7.346667pt;}
.wsd1{word-spacing:7.853333pt;}
.wsad{word-spacing:125.376000pt;}
.ws84{word-spacing:155.376000pt;}
.ws7d{word-spacing:160.896000pt;}
.ws73{word-spacing:161.808000pt;}
.ws74{word-spacing:161.856000pt;}
.ws72{word-spacing:168.528000pt;}
.ws7f{word-spacing:177.312000pt;}
.ws7e{word-spacing:179.904000pt;}
.ws79{word-spacing:183.024000pt;}
.ws7c{word-spacing:187.248000pt;}
.wsa8{word-spacing:187.296000pt;}
.ws7a{word-spacing:187.776000pt;}
.ws80{word-spacing:190.368000pt;}
.ws71{word-spacing:197.808000pt;}
.ws7b{word-spacing:198.816000pt;}
.wsaa{word-spacing:200.976000pt;}
.ws81{word-spacing:201.648000pt;}
.ws82{word-spacing:203.040000pt;}
.ws83{word-spacing:203.904000pt;}
.ws77{word-spacing:204.288000pt;}
.ws78{word-spacing:204.480000pt;}
.ws76{word-spacing:211.104000pt;}
.ws70{word-spacing:217.008000pt;}
.wsa9{word-spacing:227.245941pt;}
.ws6c{word-spacing:228.912000pt;}
.ws67{word-spacing:230.208000pt;}
.wsac{word-spacing:269.376000pt;}
.ws68{word-spacing:351.792000pt;}
.ws6a{word-spacing:351.984000pt;}
.ws6e{word-spacing:355.056000pt;}
.ws6b{word-spacing:370.944000pt;}
.ws69{word-spacing:371.376000pt;}
.ws6f{word-spacing:372.432000pt;}
.ws6d{word-spacing:376.176000pt;}
.wsdc{word-spacing:1701.265600pt;}
.ws91{word-spacing:1712.497600pt;}
.wsb1{word-spacing:1715.041600pt;}
.ws9b{word-spacing:1720.657600pt;}
.ws89{word-spacing:1722.049600pt;}
.ws4c{word-spacing:1729.057600pt;}
.ws18{word-spacing:1733.041600pt;}
._13{margin-left:-2329.392000pt;}
._e{margin-left:-2328.192000pt;}
._a{margin-left:-16.227052pt;}
._f{margin-left:-14.160000pt;}
._6{margin-left:-13.162133pt;}
._b{margin-left:-11.598933pt;}
._c{margin-left:-10.112000pt;}
._9{margin-left:-8.800000pt;}
._54{margin-left:-6.560000pt;}
._8{margin-left:-5.338667pt;}
._3{margin-left:-4.000000pt;}
._2{margin-left:-2.266667pt;}
._0{margin-left:-1.360000pt;}
._1{width:0.906667pt;}
._5{width:2.106667pt;}
._4{width:3.322667pt;}
._7{width:4.549333pt;}
._55{width:6.053333pt;}
._12{width:6.959988pt;}
._89{width:8.018667pt;}
._8a{width:9.642678pt;}
._87{width:17.277333pt;}
._88{width:28.525333pt;}
._10{width:34.655906pt;}
._15{width:38.152000pt;}
._11{width:39.317333pt;}
._53{width:40.381333pt;}
._56{width:41.496239pt;}
._14{width:43.117333pt;}
._d{width:48.336000pt;}
._63{width:118.106667pt;}
._61{width:124.538667pt;}
._5a{width:126.314667pt;}
._5f{width:128.090667pt;}
._6b{width:135.989333pt;}
._86{width:139.461333pt;}
._72{width:140.992000pt;}
._74{width:142.682667pt;}
._75{width:143.621333pt;}
._6c{width:145.989333pt;}
._6f{width:147.333333pt;}
._84{width:148.560000pt;}
._78{width:149.626667pt;}
._7a{width:155.968000pt;}
._7d{width:159.285333pt;}
._82{width:169.392000pt;}
._66{width:171.274667pt;}
._3d{width:174.597333pt;}
._68{width:177.360000pt;}
._69{width:180.256000pt;}
._6e{width:181.968000pt;}
._17{width:182.880000pt;}
._60{width:185.098667pt;}
._7f{width:186.154667pt;}
._5c{width:189.722667pt;}
._65{width:191.152000pt;}
._46{width:193.440000pt;}
._4b{width:196.570667pt;}
._44{width:198.192000pt;}
._3c{width:200.016000pt;}
._4e{width:201.514667pt;}
._42{width:205.488000pt;}
._5e{width:208.000000pt;}
._18{width:209.376000pt;}
._59{width:210.912000pt;}
._4d{width:211.872000pt;}
._58{width:212.832000pt;}
._50{width:214.080000pt;}
._2c{width:215.690667pt;}
._4f{width:217.056000pt;}
._3a{width:219.344000pt;}
._2f{width:220.629333pt;}
._23{width:223.130667pt;}
._31{width:229.280000pt;}
._35{width:230.400000pt;}
._1d{width:232.005333pt;}
._38{width:232.906667pt;}
._20{width:234.885333pt;}
._37{width:235.872000pt;}
._70{width:237.578667pt;}
._2e{width:239.520000pt;}
._29{width:240.528000pt;}
._1c{width:242.064000pt;}
._19{width:243.744000pt;}
._85{width:245.482667pt;}
._79{width:246.586667pt;}
._7b{width:248.426667pt;}
._80{width:253.994667pt;}
._57{width:256.943467pt;}
._83{width:259.882667pt;}
._77{width:263.002667pt;}
._7c{width:274.426667pt;}
._76{width:275.482667pt;}
._81{width:277.354667pt;}
._67{width:278.602667pt;}
._71{width:280.330667pt;}
._73{width:282.730667pt;}
._64{width:295.066667pt;}
._5b{width:299.242667pt;}
._5d{width:302.362667pt;}
._16{width:304.989333pt;}
._3e{width:306.698667pt;}
._6a{width:310.042667pt;}
._62{width:312.250667pt;}
._6d{width:313.162667pt;}
._36{width:321.776000pt;}
._27{width:322.772800pt;}
._2d{width:328.058667pt;}
._2a{width:329.136000pt;}
._24{width:331.562667pt;}
._1e{width:333.770667pt;}
._30{width:334.778667pt;}
._1a{width:337.920000pt;}
._32{width:339.578667pt;}
._21{width:340.778667pt;}
._34{width:363.029333pt;}
._3b{width:365.765333pt;}
._39{width:376.218667pt;}
._26{width:377.280000pt;}
._33{width:393.840000pt;}
._28{width:396.768000pt;}
._25{width:404.496000pt;}
._1f{width:406.848000pt;}
._22{width:409.104000pt;}
._2b{width:410.112000pt;}
._1b{width:412.176000pt;}
._7e{width:564.586667pt;}
._3f{width:779.856000pt;}
._52{width:1151.616000pt;}
._47{width:1155.312000pt;}
._43{width:1172.405333pt;}
._45{width:1173.360000pt;}
._41{width:1177.034667pt;}
._49{width:1179.242667pt;}
._51{width:1181.440000pt;}
._48{width:1187.066667pt;}
._40{width:1196.714667pt;}
._4c{width:1199.114667pt;}
._4a{width:1201.402667pt;}
.fsc{font-size:11.232000pt;}
.fs8{font-size:27.984000pt;}
.fsa{font-size:28.883200pt;}
.fsd{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fsb{font-size:44.928000pt;}
.fs9{font-size:44.929067pt;}
.fs6{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;}
.ybe{bottom:2.808800pt;}
.yb1{bottom:79.370133pt;}
.y4a{bottom:79.748133pt;}
.y7c{bottom:79.750000pt;}
.yae{bottom:79.750533pt;}
.y26{bottom:79.752933pt;}
.yc7{bottom:79.755333pt;}
.y61{bottom:79.758133pt;}
.y120{bottom:81.690667pt;}
.yb0{bottom:95.370133pt;}
.y7b{bottom:95.748000pt;}
.y49{bottom:95.748133pt;}
.y60{bottom:95.756133pt;}
.yad{bottom:97.511867pt;}
.y25{bottom:97.514267pt;}
.yc6{bottom:97.516667pt;}
.y11f{bottom:97.690667pt;}
.y48{bottom:111.752133pt;}
.y5f{bottom:111.754133pt;}
.y24{bottom:115.275600pt;}
.yc5{bottom:115.278000pt;}
.ybd{bottom:120.006667pt;}
.y47{bottom:127.750133pt;}
.y5e{bottom:127.752133pt;}
.ybf{bottom:131.900000pt;}
.yc0{bottom:131.911232pt;}
.y23{bottom:133.039333pt;}
.y114{bottom:133.044533pt;}
.y79{bottom:133.049200pt;}
.yd3{bottom:133.054133pt;}
.y7a{bottom:137.923333pt;}
.y46{bottom:143.748133pt;}
.y5d{bottom:143.750133pt;}
.y22{bottom:150.803200pt;}
.y78{bottom:150.810533pt;}
.yd2{bottom:150.815467pt;}
.ya2{bottom:155.919333pt;}
.y105{bottom:159.696800pt;}
.y5c{bottom:159.748133pt;}
.yac{bottom:165.867467pt;}
.y21{bottom:168.566933pt;}
.yc4{bottom:168.569333pt;}
.y77{bottom:168.571867pt;}
.yd1{bottom:168.576800pt;}
.ya1{bottom:171.917333pt;}
.y104{bottom:175.696800pt;}
.y5b{bottom:175.748133pt;}
.y20{bottom:186.330667pt;}
.y76{bottom:186.333200pt;}
.yd0{bottom:186.338133pt;}
.yb8{bottom:197.558933pt;}
.y103{bottom:201.545867pt;}
.ya0{bottom:203.140667pt;}
.y1f{bottom:204.094533pt;}
.ycf{bottom:204.099467pt;}
.yb9{bottom:212.212267pt;}
.y1e{bottom:221.858267pt;}
.yce{bottom:221.860800pt;}
.yc3{bottom:221.863200pt;}
.yab{bottom:221.865600pt;}
.y113{bottom:221.868533pt;}
.y102{bottom:222.329867pt;}
.y9f{bottom:223.924667pt;}
.y1d{bottom:239.622133pt;}
.y75{bottom:239.624533pt;}
.yaa{bottom:239.626933pt;}
.y112{bottom:239.627200pt;}
.y101{bottom:240.245867pt;}
.y9e{bottom:244.708667pt;}
.y100{bottom:246.905867pt;}
.y45{bottom:257.385867pt;}
.ya9{bottom:257.388267pt;}
.y74{bottom:257.395600pt;}
.y1c{bottom:257.398133pt;}
.y9d{bottom:265.492667pt;}
.yff{bottom:271.493867pt;}
.ya8{bottom:275.149600pt;}
.y44{bottom:275.154533pt;}
.y73{bottom:275.156933pt;}
.y1b{bottom:275.159467pt;}
.y9c{bottom:286.276667pt;}
.yfe{bottom:292.277867pt;}
.ya7{bottom:292.913467pt;}
.y43{bottom:292.915867pt;}
.y72{bottom:292.918267pt;}
.y1a{bottom:292.920800pt;}
.yb7{bottom:295.641467pt;}
.y9b{bottom:307.060667pt;}
.y42{bottom:310.677200pt;}
.y71{bottom:310.679600pt;}
.y19{bottom:310.682133pt;}
.yb6{bottom:310.905200pt;}
.yfd{bottom:313.061867pt;}
.y9a{bottom:327.844667pt;}
.y41{bottom:328.440933pt;}
.y18{bottom:328.443467pt;}
.ya6{bottom:328.445867pt;}
.yc2{bottom:331.970533pt;}
.yfc{bottom:333.845867pt;}
.y17{bottom:346.204800pt;}
.ya5{bottom:346.207200pt;}
.yc1{bottom:347.968533pt;}
.y99{bottom:348.628667pt;}
.yfb{bottom:354.629867pt;}
.yb5{bottom:363.765067pt;}
.y16{bottom:363.968533pt;}
.y70{bottom:363.973467pt;}
.ycd{bottom:368.852533pt;}
.y98{bottom:369.412667pt;}
.yfa{bottom:372.545867pt;}
.yb4{bottom:378.439200pt;}
.yf9{bottom:379.205867pt;}
.y15{bottom:381.732400pt;}
.y6f{bottom:381.734800pt;}
.y97{bottom:390.196667pt;}
.y14{bottom:399.496133pt;}
.y5a{bottom:399.498533pt;}
.y111{bottom:399.506400pt;}
.yf8{bottom:403.793867pt;}
.y96{bottom:410.980667pt;}
.y40{bottom:417.259867pt;}
.y13{bottom:417.264800pt;}
.y110{bottom:417.265067pt;}
.yf7{bottom:424.577867pt;}
.y95{bottom:431.764667pt;}
.y3f{bottom:435.023733pt;}
.y12{bottom:435.026133pt;}
.yf6{bottom:442.493867pt;}
.yb2{bottom:443.097600pt;}
.y94{bottom:452.548667pt;}
.y11{bottom:452.787467pt;}
.y3e{bottom:452.797200pt;}
.yf5{bottom:454.493867pt;}
.yb3{bottom:458.879333pt;}
.y10{bottom:470.551200pt;}
.y3d{bottom:470.558533pt;}
.y10f{bottom:470.561467pt;}
.y93{bottom:473.332667pt;}
.yf4{bottom:484.409867pt;}
.yf{bottom:488.315067pt;}
.y3c{bottom:488.319867pt;}
.y10e{bottom:488.320133pt;}
.y59{bottom:488.327200pt;}
.y92{bottom:494.116667pt;}
.yba{bottom:503.982933pt;}
.yf3{bottom:505.193867pt;}
.ye{bottom:506.078800pt;}
.y3b{bottom:506.081200pt;}
.y58{bottom:506.088533pt;}
.y91{bottom:514.900667pt;}
.ybb{bottom:517.329067pt;}
.ybc{bottom:518.365733pt;}
.yf2{bottom:523.109867pt;}
.yd{bottom:523.842533pt;}
.y57{bottom:523.849867pt;}
.ya4{bottom:533.870133pt;}
.yf1{bottom:535.109867pt;}
.y90{bottom:535.684667pt;}
.y3a{bottom:541.606400pt;}
.y56{bottom:541.611200pt;}
.y6e{bottom:541.618533pt;}
.ya3{bottom:549.870133pt;}
.ycc{bottom:553.753333pt;}
.y8f{bottom:556.468667pt;}
.yc{bottom:559.370133pt;}
.y55{bottom:559.372533pt;}
.y39{bottom:559.375067pt;}
.y6d{bottom:559.379867pt;}
.yf0{bottom:562.157867pt;}
.y11e{bottom:568.359333pt;}
.yef{bottom:574.157867pt;}
.y38{bottom:577.136400pt;}
.y10d{bottom:577.139067pt;}
.y6c{bottom:577.141200pt;}
.y8e{bottom:577.252667pt;}
.yaf{bottom:583.028133pt;}
.y11d{bottom:584.357333pt;}
.y37{bottom:594.897733pt;}
.y6b{bottom:594.902533pt;}
.y54{bottom:594.905067pt;}
.y8d{bottom:598.036667pt;}
.yee{bottom:601.205867pt;}
.y36{bottom:612.661467pt;}
.y6a{bottom:612.663867pt;}
.y53{bottom:612.666400pt;}
.yed{bottom:613.205867pt;}
.y8c{bottom:618.820667pt;}
.y69{bottom:630.425200pt;}
.y35{bottom:630.427733pt;}
.y10c{bottom:630.456000pt;}
.yb{bottom:636.923733pt;}
.y8b{bottom:639.604667pt;}
.yea{bottom:640.253867pt;}
.yec{bottom:641.585867pt;}
.y34{bottom:648.189067pt;}
.y10b{bottom:648.214667pt;}
.ya{bottom:652.923733pt;}
.ye9{bottom:653.585867pt;}
.y8a{bottom:660.388667pt;}
.yeb{bottom:665.585867pt;}
.y52{bottom:665.952800pt;}
.y68{bottom:665.960133pt;}
.y10a{bottom:665.973333pt;}
.ye8{bottom:666.917867pt;}
.y9{bottom:668.923733pt;}
.y89{bottom:681.172667pt;}
.ye7{bottom:681.965867pt;}
.y33{bottom:683.716667pt;}
.y67{bottom:683.721467pt;}
.y109{bottom:683.732000pt;}
.ye4{bottom:695.297867pt;}
.y51{bottom:701.480400pt;}
.y66{bottom:701.482800pt;}
.y108{bottom:701.490667pt;}
.y88{bottom:701.956667pt;}
.ye3{bottom:701.957867pt;}
.ye6{bottom:708.629867pt;}
.y50{bottom:719.244133pt;}
.y107{bottom:719.249333pt;}
.ye5{bottom:721.961867pt;}
.y8{bottom:722.725067pt;}
.y87{bottom:722.740667pt;}
.y32{bottom:737.008000pt;}
.y4f{bottom:737.010400pt;}
.ye2{bottom:737.969867pt;}
.y7{bottom:738.723067pt;}
.y86{bottom:743.524667pt;}
.ye1{bottom:744.643733pt;}
.y11c{bottom:747.483733pt;}
.y6{bottom:754.721067pt;}
.y31{bottom:754.771733pt;}
.y65{bottom:754.774133pt;}
.y11b{bottom:763.481733pt;}
.ycb{bottom:764.273067pt;}
.y85{bottom:764.308667pt;}
.ydf{bottom:767.311733pt;}
.ye0{bottom:767.323733pt;}
.y5{bottom:770.719067pt;}
.y4e{bottom:772.535467pt;}
.y30{bottom:772.542800pt;}
.y106{bottom:774.299200pt;}
.y11a{bottom:779.479733pt;}
.yde{bottom:780.643733pt;}
.y84{bottom:785.092667pt;}
.y4{bottom:786.719067pt;}
.y4d{bottom:790.299200pt;}
.y2f{bottom:790.304133pt;}
.y119{bottom:795.477733pt;}
.ydd{bottom:795.691733pt;}
.ydc{bottom:802.354933pt;}
.y83{bottom:805.896267pt;}
.y4c{bottom:808.063067pt;}
.y2e{bottom:808.065467pt;}
.y118{bottom:811.475733pt;}
.ydb{bottom:824.074933pt;}
.y2d{bottom:825.826800pt;}
.y64{bottom:825.834133pt;}
.y82{bottom:826.680267pt;}
.yda{bottom:837.406933pt;}
.y2c{bottom:843.590533pt;}
.y63{bottom:843.595467pt;}
.yd7{bottom:844.080800pt;}
.y81{bottom:847.464267pt;}
.y3{bottom:848.073467pt;}
.yca{bottom:848.474667pt;}
.yd9{bottom:850.738933pt;}
.y2b{bottom:861.354400pt;}
.y62{bottom:861.356800pt;}
.yc9{bottom:861.361733pt;}
.y117{bottom:861.369733pt;}
.yd8{bottom:864.084800pt;}
.y80{bottom:868.248267pt;}
.y2a{bottom:879.118133pt;}
.yc8{bottom:879.123067pt;}
.y116{bottom:879.128400pt;}
.yd6{bottom:881.208800pt;}
.y2{bottom:886.742533pt;}
.yd5{bottom:887.868800pt;}
.y7f{bottom:889.032267pt;}
.y4b{bottom:896.881867pt;}
.y29{bottom:896.884400pt;}
.y115{bottom:896.887067pt;}
.y7e{bottom:904.080267pt;}
.y7d{bottom:910.740267pt;}
.y1{bottom:912.083867pt;}
.yd4{bottom:914.536800pt;}
.y28{bottom:914.645733pt;}
.y27{bottom:961.978533pt;}
.h12{height:8.075808pt;}
.h13{height:8.143200pt;}
.hf{height:20.507072pt;}
.h14{height:30.850805pt;}
.h11{height:31.898880pt;}
.he{height:31.899637pt;}
.ha{height:34.085333pt;}
.h4{height:39.200000pt;}
.hc{height:43.296000pt;}
.h8{height:45.216000pt;}
.h5{height:45.701333pt;}
.hd{height:46.309333pt;}
.h15{height:46.558901pt;}
.h6{height:47.040000pt;}
.h7{height:52.917333pt;}
.h9{height:53.621333pt;}
.h3{height:65.312000pt;}
.h2{height:66.640000pt;}
.h16{height:69.984000pt;}
.hb{height:70.560000pt;}
.h19{height:91.296000pt;}
.h17{height:96.672000pt;}
.h18{height:149.952000pt;}
.h10{height:428.024000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w2{width:582.048000pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x6{left:60.161333pt;}
.xb{left:63.328800pt;}
.x4{left:64.252000pt;}
.x9{left:67.723067pt;}
.x1{left:70.809733pt;}
.x2{left:71.948533pt;}
.x23{left:76.407067pt;}
.x11{left:79.052133pt;}
.x5{left:82.330400pt;}
.x7{left:83.507067pt;}
.x3{left:89.882267pt;}
.xa{left:91.171067pt;}
.x10{left:99.950133pt;}
.xf{left:101.355333pt;}
.xe{left:102.639333pt;}
.xd{left:104.019333pt;}
.x22{left:112.266667pt;}
.x20{left:182.709467pt;}
.x21{left:192.273600pt;}
.x17{left:324.533600pt;}
.x26{left:413.896000pt;}
.x24{left:415.803067pt;}
.x13{left:454.624800pt;}
.x19{left:473.983333pt;}
.x1d{left:492.810800pt;}
.x16{left:500.284800pt;}
.x14{left:502.816800pt;}
.x18{left:504.073333pt;}
.x27{left:510.064000pt;}
.x25{left:510.964000pt;}
.x1b{left:513.068872pt;}
.x1e{left:520.387733pt;}
.x1f{left:528.244933pt;}
.x12{left:531.259333pt;}
.x15{left:543.690933pt;}
.x1a{left:572.713600pt;}
.xc{left:578.535333pt;}
.x8{left:640.694400pt;}
.x1c{left:643.202533pt;}
}




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