
    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_ed70ff8cd66d3ce09e2cc750.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_76e9bca93e9e77805540fb16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_ed70ff8cd66d3ce09e2cc750.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_b3bf47578ff91ea45b82eb64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_4fed8ccd7adf7a52347d2f00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_e5767a1add2e203b1da9b158.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_4b6ab2821aa7f5034ecb22d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_ed70ff8cd66d3ce09e2cc750.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978000;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_ed70ff8cd66d3ce09e2cc750.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978000;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_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978000;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_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.fff{font-family:fff;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e5e2ffa704de2b3f6e9043fc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.978000;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;}
.m23{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245774,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245867,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246196,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246329,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246476,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247196,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247476,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,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);}
.mb{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250454,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250549,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m53{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251799,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252329,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.253769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253769,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254133,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254283,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254299,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-5.949600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:17.008200px;}
.v4{vertical-align:37.479600px;}
.ls26{letter-spacing:-6.786000px;}
.ls2a{letter-spacing:-4.680000px;}
.ls34{letter-spacing:-3.978000px;}
.ls18{letter-spacing:-2.730000px;}
.ls36{letter-spacing:-0.772800px;}
.ls2b{letter-spacing:-0.717600px;}
.ls2f{letter-spacing:-0.496800px;}
.ls2c{letter-spacing:-0.441600px;}
.ls2d{letter-spacing:-0.386400px;}
.ls2e{letter-spacing:-0.331200px;}
.ls30{letter-spacing:-0.276000px;}
.ls37{letter-spacing:-0.261000px;}
.ls1d{letter-spacing:-0.220800px;}
.ls27{letter-spacing:-0.165600px;}
.ls1f{letter-spacing:-0.156000px;}
.ls1a{letter-spacing:-0.110400px;}
.ls35{letter-spacing:-0.055200px;}
.ls19{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.055200px;}
.lse{letter-spacing:0.110400px;}
.ls20{letter-spacing:0.138000px;}
.ls10{letter-spacing:0.156600px;}
.ls2{letter-spacing:0.165600px;}
.ls8{letter-spacing:0.193200px;}
.ls0{letter-spacing:0.210000px;}
.ls4{letter-spacing:0.220800px;}
.ls16{letter-spacing:0.234000px;}
.ls32{letter-spacing:0.261000px;}
.ls17{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.276000px;}
.ls1e{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.315000px;}
.ls22{letter-spacing:0.331200px;}
.ls25{letter-spacing:0.386400px;}
.ls13{letter-spacing:0.390000px;}
.ls3{letter-spacing:0.441600px;}
.ls23{letter-spacing:0.496800px;}
.ls33{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.552000px;}
.ls6{letter-spacing:0.607200px;}
.ls7{letter-spacing:0.662400px;}
.ls1{letter-spacing:0.717600px;}
.ls31{letter-spacing:0.745200px;}
.ls21{letter-spacing:0.772800px;}
.ls5{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.883200px;}
.ls24{letter-spacing:0.910800px;}
.lsc{letter-spacing:0.938400px;}
.ls14{letter-spacing:0.960000px;}
.ls1c{letter-spacing:0.993600px;}
.ls15{letter-spacing:1.014000px;}
.ls28{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.214400px;}
.ls29{letter-spacing:1.252800px;}
.lsf{letter-spacing:24.335400px;}
.ls11{letter-spacing:24.336000px;}
.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:-43.584000px;}
.ws72{word-spacing:-14.772600px;}
.ws2f{word-spacing:-14.511600px;}
.ws74{word-spacing:-14.250600px;}
.ws53{word-spacing:-12.420000px;}
.ws57{word-spacing:-11.536800px;}
.ws3f{word-spacing:-5.133600px;}
.ws42{word-spacing:-4.912800px;}
.ws47{word-spacing:-4.416000px;}
.ws50{word-spacing:-4.360800px;}
.wsc{word-spacing:-4.305600px;}
.wsd{word-spacing:-4.250400px;}
.ws39{word-spacing:-4.140000px;}
.ws55{word-spacing:-4.084800px;}
.ws62{word-spacing:-3.919200px;}
.wsb{word-spacing:-3.864000px;}
.ws1b{word-spacing:-3.808800px;}
.ws4d{word-spacing:-3.753600px;}
.ws68{word-spacing:-3.698400px;}
.ws6c{word-spacing:-3.588000px;}
.ws1e{word-spacing:-3.532800px;}
.ws7{word-spacing:-3.477600px;}
.ws29{word-spacing:-3.360000px;}
.ws60{word-spacing:-3.312000px;}
.ws6d{word-spacing:-3.036000px;}
.ws31{word-spacing:-2.925600px;}
.ws2a{word-spacing:-2.923200px;}
.ws5a{word-spacing:-2.760000px;}
.ws3b{word-spacing:-2.704800px;}
.ws46{word-spacing:-2.484000px;}
.ws15{word-spacing:-2.428800px;}
.ws36{word-spacing:-2.373600px;}
.ws4a{word-spacing:-2.263200px;}
.ws14{word-spacing:-2.152800px;}
.ws6a{word-spacing:-2.042400px;}
.ws84{word-spacing:-1.821600px;}
.ws23{word-spacing:-1.656000px;}
.ws37{word-spacing:-1.600800px;}
.ws7b{word-spacing:-1.545600px;}
.ws80{word-spacing:-1.380000px;}
.ws17{word-spacing:-1.269600px;}
.ws83{word-spacing:-1.214400px;}
.ws24{word-spacing:-0.993600px;}
.ws44{word-spacing:-0.938400px;}
.ws2c{word-spacing:-0.702000px;}
.ws51{word-spacing:-0.662400px;}
.ws61{word-spacing:-0.607200px;}
.ws82{word-spacing:-0.496800px;}
.ws7c{word-spacing:-0.315000px;}
.ws87{word-spacing:-0.300000px;}
.ws86{word-spacing:-0.261000px;}
.ws38{word-spacing:-0.220800px;}
.wse{word-spacing:-0.165600px;}
.ws7d{word-spacing:-0.055200px;}
.ws2{word-spacing:0.000000px;}
.ws35{word-spacing:0.055200px;}
.ws58{word-spacing:0.110400px;}
.ws6e{word-spacing:0.165600px;}
.ws5d{word-spacing:0.276000px;}
.ws13{word-spacing:0.331200px;}
.ws7f{word-spacing:0.441600px;}
.ws4{word-spacing:0.607200px;}
.ws64{word-spacing:0.717600px;}
.ws32{word-spacing:0.772800px;}
.ws5b{word-spacing:0.993600px;}
.ws25{word-spacing:1.048800px;}
.ws1c{word-spacing:1.159200px;}
.ws79{word-spacing:1.435200px;}
.ws9{word-spacing:1.490400px;}
.ws66{word-spacing:1.545600px;}
.ws2b{word-spacing:1.560000px;}
.ws63{word-spacing:1.600800px;}
.ws22{word-spacing:1.711200px;}
.ws40{word-spacing:1.766400px;}
.ws3e{word-spacing:1.876800px;}
.ws6{word-spacing:1.932000px;}
.ws41{word-spacing:1.987200px;}
.ws12{word-spacing:2.042400px;}
.ws27{word-spacing:2.152800px;}
.ws11{word-spacing:2.318400px;}
.ws4e{word-spacing:2.484000px;}
.ws5f{word-spacing:2.594400px;}
.ws0{word-spacing:2.652000px;}
.ws28{word-spacing:3.091200px;}
.ws21{word-spacing:3.201600px;}
.ws69{word-spacing:3.256800px;}
.ws45{word-spacing:3.367200px;}
.ws33{word-spacing:3.422400px;}
.ws6f{word-spacing:3.477600px;}
.ws4c{word-spacing:3.753600px;}
.ws75{word-spacing:3.978000px;}
.ws3d{word-spacing:4.084800px;}
.wsf{word-spacing:4.195200px;}
.ws77{word-spacing:4.360800px;}
.ws85{word-spacing:4.471200px;}
.ws7e{word-spacing:4.636800px;}
.ws54{word-spacing:4.680000px;}
.ws3{word-spacing:4.802400px;}
.ws5{word-spacing:4.912800px;}
.ws81{word-spacing:5.023200px;}
.ws4f{word-spacing:5.133600px;}
.ws20{word-spacing:5.244000px;}
.ws1f{word-spacing:5.299200px;}
.ws65{word-spacing:5.354400px;}
.wsa{word-spacing:5.630400px;}
.ws4b{word-spacing:5.685600px;}
.ws10{word-spacing:5.796000px;}
.ws18{word-spacing:5.961600px;}
.ws26{word-spacing:6.016800px;}
.ws8{word-spacing:6.072000px;}
.ws1d{word-spacing:6.127200px;}
.ws6b{word-spacing:6.458400px;}
.ws49{word-spacing:6.624000px;}
.ws67{word-spacing:6.679200px;}
.ws30{word-spacing:6.786000px;}
.ws19{word-spacing:7.120800px;}
.ws56{word-spacing:7.507200px;}
.ws5c{word-spacing:7.562400px;}
.ws3a{word-spacing:7.728000px;}
.ws2d{word-spacing:7.878000px;}
.ws34{word-spacing:7.948800px;}
.ws7a{word-spacing:8.390400px;}
.ws3c{word-spacing:9.880800px;}
.ws52{word-spacing:9.970200px;}
.ws59{word-spacing:10.764000px;}
.ws16{word-spacing:10.929600px;}
.ws43{word-spacing:11.095200px;}
.ws1a{word-spacing:11.426400px;}
.ws48{word-spacing:11.702400px;}
.ws5e{word-spacing:12.033600px;}
.ws78{word-spacing:12.144000px;}
.ws76{word-spacing:15.345600px;}
.ws73{word-spacing:51.730200px;}
.ws70{word-spacing:57.524400px;}
.ws71{word-spacing:142.453800px;}
.ws2e{word-spacing:297.795600px;}
._e{margin-left:-1335.902400px;}
._10{margin-left:-935.730600px;}
._6{margin-left:-53.664000px;}
._4{margin-left:-24.619200px;}
._13{margin-left:-21.031294px;}
._16{margin-left:-19.540800px;}
._c{margin-left:-18.492000px;}
._5{margin-left:-15.932400px;}
._18{margin-left:-14.511600px;}
._b{margin-left:-12.199200px;}
._1a{margin-left:-10.804200px;}
._8{margin-left:-8.523600px;}
._17{margin-left:-7.142066px;}
._7{margin-left:-5.742000px;}
._0{margin-left:-3.864000px;}
._3{margin-left:-2.628600px;}
._2{margin-left:-1.490400px;}
._1{width:1.269600px;}
._9{width:3.264000px;}
._15{width:7.866000px;}
._14{width:8.931360px;}
._12{width:9.970200px;}
._f{width:443.125800px;}
._11{width:897.148200px;}
._19{width:1128.661200px;}
._a{width:1130.049600px;}
._d{width:1570.472400px;}
.fc5{color:transparent;}
.fc4{color:rgb(115,128,182);}
.fc3{color:rgb(197,28,32);}
.fc2{color:rgb(23,62,125);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs7{font-size:52.200000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:55.200000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:96.000000px;}
.fs9{font-size:192.000000px;}
.fs8{font-size:221.760000px;}
.y0{bottom:0.000000px;}
.y74{bottom:11.487450px;}
.y7a{bottom:11.487750px;}
.y76{bottom:11.488200px;}
.y78{bottom:11.488500px;}
.y7c{bottom:11.488800px;}
.y3{bottom:23.752050px;}
.y7d{bottom:63.533250px;}
.yba{bottom:90.493650px;}
.y3a{bottom:90.501900px;}
.y1d{bottom:90.502050px;}
.yb1{bottom:109.234800px;}
.ya6{bottom:109.243350px;}
.yb9{bottom:109.247850px;}
.yd8{bottom:109.249200px;}
.y1c{bottom:109.252050px;}
.y39{bottom:109.257300px;}
.yb0{bottom:127.987650px;}
.ya5{bottom:127.996200px;}
.y58{bottom:127.997850px;}
.y49{bottom:128.002050px;}
.yaf{bottom:146.740500px;}
.ya4{bottom:146.747850px;}
.y38{bottom:146.751900px;}
.y1b{bottom:146.752050px;}
.y5e{bottom:146.757450px;}
.yae{bottom:165.493350px;}
.y48{bottom:165.499200px;}
.ya3{bottom:165.500700px;}
.y37{bottom:165.501900px;}
.y57{bottom:165.502050px;}
.y47{bottom:182.752050px;}
.ya2{bottom:184.240500px;}
.yad{bottom:184.246200px;}
.y36{bottom:184.251900px;}
.y56{bottom:184.252050px;}
.ya1{bottom:202.993350px;}
.y1a{bottom:202.993650px;}
.y46{bottom:202.996350px;}
.y35{bottom:203.001900px;}
.y55{bottom:203.002050px;}
.yd7{bottom:203.005350px;}
.yd6{bottom:221.732100px;}
.ya0{bottom:221.746200px;}
.y19{bottom:221.747850px;}
.y45{bottom:221.749200px;}
.y34{bottom:221.751900px;}
.y54{bottom:221.752050px;}
.yd5{bottom:240.484950px;}
.y97{bottom:240.497850px;}
.y9f{bottom:240.499050px;}
.y33{bottom:240.501900px;}
.y18{bottom:240.502050px;}
.yac{bottom:259.227000px;}
.yd4{bottom:259.237800px;}
.y9e{bottom:259.243350px;}
.y5d{bottom:259.243650px;}
.y60{bottom:259.247850px;}
.y32{bottom:259.251900px;}
.y17{bottom:259.252050px;}
.yab{bottom:277.979850px;}
.y44{bottom:277.990650px;}
.y9d{bottom:277.996200px;}
.y5c{bottom:277.997850px;}
.y31{bottom:278.001900px;}
.y16{bottom:278.002050px;}
.yaa{bottom:296.732700px;}
.y43{bottom:296.743500px;}
.y9c{bottom:296.749050px;}
.y30{bottom:296.751900px;}
.y15{bottom:296.752050px;}
.ya9{bottom:315.485550px;}
.y9b{bottom:315.496200px;}
.y42{bottom:315.496350px;}
.y14{bottom:315.497850px;}
.yd3{bottom:315.498000px;}
.y2f{bottom:315.501900px;}
.y5b{bottom:315.502050px;}
.ya8{bottom:334.238400px;}
.y5a{bottom:334.247850px;}
.y9a{bottom:334.249050px;}
.y41{bottom:334.249200px;}
.y2e{bottom:334.251900px;}
.y13{bottom:334.252050px;}
.y40{bottom:351.502050px;}
.y2d{bottom:352.982100px;}
.ya7{bottom:352.991250px;}
.y99{bottom:353.001900px;}
.y53{bottom:353.002050px;}
.yd2{bottom:353.003700px;}
.y12{bottom:353.007450px;}
.y2c{bottom:371.736300px;}
.yd1{bottom:371.743500px;}
.yb8{bottom:371.747850px;}
.y3f{bottom:371.752050px;}
.y2b{bottom:390.490500px;}
.y3e{bottom:390.493500px;}
.yd0{bottom:390.496350px;}
.y98{bottom:390.501900px;}
.y11{bottom:390.502050px;}
.y2a{bottom:409.244700px;}
.y3d{bottom:409.246350px;}
.ycf{bottom:409.249200px;}
.y10{bottom:409.252050px;}
.y3c{bottom:427.999200px;}
.yf{bottom:428.002050px;}
.y29{bottom:446.739300px;}
.ye{bottom:446.752050px;}
.y3b{bottom:464.002050px;}
.y28{bottom:465.493500px;}
.y5f{bottom:465.497850px;}
.yd{bottom:465.502050px;}
.y4a{bottom:468.138900px;}
.y27{bottom:484.247700px;}
.yc{bottom:484.247850px;}
.y59{bottom:484.252050px;}
.y26{bottom:503.001900px;}
.yb{bottom:503.002050px;}
.yce{bottom:521.740650px;}
.y25{bottom:521.751900px;}
.ya{bottom:521.752050px;}
.ycd{bottom:540.493500px;}
.yb7{bottom:540.497850px;}
.y24{bottom:540.501900px;}
.y9{bottom:540.502050px;}
.ycc{bottom:559.246350px;}
.y8{bottom:559.252050px;}
.y23{bottom:559.257300px;}
.y6b{bottom:570.543600px;}
.y7{bottom:577.997850px;}
.y1f{bottom:578.002050px;}
.y86{bottom:596.743650px;}
.y22{bottom:596.751900px;}
.y6{bottom:596.752050px;}
.y72{bottom:598.168050px;}
.y71{bottom:613.828050px;}
.y1e{bottom:615.497850px;}
.y21{bottom:615.501900px;}
.y5{bottom:615.502050px;}
.y70{bottom:629.488050px;}
.y4{bottom:634.252050px;}
.y20{bottom:634.255050px;}
.y6f{bottom:645.148050px;}
.y96{bottom:652.993650px;}
.y85{bottom:653.002050px;}
.y4b{bottom:670.252050px;}
.y95{bottom:671.747850px;}
.y84{bottom:671.752050px;}
.y6d{bottom:678.359100px;}
.y6c{bottom:685.837350px;}
.y83{bottom:690.502050px;}
.ycb{bottom:692.079150px;}
.y6e{bottom:693.315600px;}
.yca{bottom:701.436000px;}
.y82{bottom:709.252050px;}
.y81{bottom:728.002050px;}
.yc9{bottom:734.191500px;}
.y69{bottom:740.601750px;}
.y65{bottom:741.347550px;}
.y80{bottom:746.752050px;}
.y68{bottom:753.201750px;}
.y75{bottom:755.830500px;}
.yc8{bottom:759.182250px;}
.y7f{bottom:765.497850px;}
.y94{bottom:765.502050px;}
.yc7{bottom:784.173000px;}
.y7e{bottom:784.252050px;}
.y52{bottom:786.645450px;}
.y77{bottom:795.840000px;}
.y64{bottom:797.893200px;}
.y93{bottom:803.002050px;}
.yc6{bottom:809.424750px;}
.y51{bottom:818.137950px;}
.y92{bottom:821.752050px;}
.y79{bottom:833.080500px;}
.yc5{bottom:834.937500px;}
.y91{bottom:840.494850px;}
.y50{bottom:849.630450px;}
.yc4{bottom:858.576150px;}
.y90{bottom:859.249050px;}
.y63{bottom:864.435150px;}
.yc3{bottom:867.959100px;}
.y7b{bottom:876.730500px;}
.yb6{bottom:878.002050px;}
.y8f{bottom:878.003250px;}
.y4f{bottom:881.122950px;}
.yb5{bottom:896.752050px;}
.yc2{bottom:899.122500px;}
.yc1{bottom:908.505450px;}
.y8e{bottom:915.493650px;}
.yb4{bottom:915.502050px;}
.y62{bottom:930.977100px;}
.y4e{bottom:931.384950px;}
.y8d{bottom:934.247850px;}
.yb3{bottom:934.252050px;}
.y73{bottom:935.880000px;}
.y8c{bottom:953.002050px;}
.y8b{bottom:971.752050px;}
.y67{bottom:981.356250px;}
.y4d{bottom:986.872950px;}
.y8a{bottom:990.502050px;}
.y66{bottom:993.956250px;}
.y6a{bottom:995.212350px;}
.ybe{bottom:1009.239450px;}
.y89{bottom:1009.252050px;}
.ybd{bottom:1027.993650px;}
.y88{bottom:1028.002050px;}
.yc0{bottom:1046.734050px;}
.ybc{bottom:1046.750850px;}
.y61{bottom:1046.752050px;}
.y4c{bottom:1061.122950px;}
.ybf{bottom:1065.488250px;}
.yb2{bottom:1065.502050px;}
.y87{bottom:1065.502650px;}
.ybb{bottom:1065.505050px;}
.y1{bottom:1148.031450px;}
.y2{bottom:1152.283500px;}
.h4{height:32.004000px;}
.h15{height:32.763000px;}
.h16{height:32.764500px;}
.h14{height:39.150000px;}
.hb{height:39.776400px;}
.h1b{height:39.781200px;}
.he{height:39.787800px;}
.h19{height:39.799200px;}
.h1e{height:39.808200px;}
.hc{height:39.810600px;}
.hd{height:39.822000px;}
.h1a{height:39.828600px;}
.h20{height:39.880800px;}
.h2{height:41.148000px;}
.h9{height:45.000000px;}
.h7{height:47.250000px;}
.h5{height:47.913600px;}
.h6{height:47.930400px;}
.h13{height:47.947200px;}
.h18{height:47.968800px;}
.h8{height:47.992800px;}
.h3{height:54.990000px;}
.h10{height:59.436000px;}
.h1c{height:61.250400px;}
.h12{height:71.998200px;}
.ha{height:72.000000px;}
.h1f{height:76.629600px;}
.h1d{height:77.256000px;}
.h17{height:136.854000px;}
.hf{height:166.320000px;}
.h11{height:166.656000px;}
.h0{height:1211.811000px;}
.h1{height:1212.000000px;}
.w7{width:33.927000px;}
.w6{width:33.928500px;}
.w3{width:137.436000px;}
.w5{width:207.094500px;}
.w4{width:255.991500px;}
.w2{width:573.727500px;}
.w0{width:901.417500px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.x24{left:12.122400px;}
.x3{left:51.023700px;}
.x2{left:56.253900px;}
.x9{left:57.935550px;}
.x28{left:59.527500px;}
.x27{left:61.653600px;}
.x1f{left:64.622550px;}
.xc{left:93.543300px;}
.x22{left:99.871500px;}
.xf{left:104.173200px;}
.x13{left:107.475300px;}
.x11{left:117.278100px;}
.x21{left:123.871500px;}
.x10{left:128.866500px;}
.x1a{left:206.271750px;}
.x1c{left:211.098000px;}
.x18{left:212.648550px;}
.x12{left:242.401500px;}
.x23{left:261.640500px;}
.x16{left:268.390800px;}
.x1d{left:282.872550px;}
.x29{left:308.769450px;}
.x4{left:310.393650px;}
.x8{left:312.519750px;}
.x6{left:344.409450px;}
.x7{left:351.153450px;}
.xd{left:352.913400px;}
.x1{left:356.360250px;}
.x25{left:364.170000px;}
.x1b{left:375.869550px;}
.x15{left:385.243800px;}
.xa{left:398.880000px;}
.x20{left:404.563500px;}
.x2a{left:405.685050px;}
.x2b{left:477.969000px;}
.x1e{left:506.626500px;}
.x19{left:521.533650px;}
.x2c{left:527.676750px;}
.x5{left:569.758026px;}
.xe{left:586.590600px;}
.xb{left:612.160800px;}
.x26{left:702.619500px;}
.x17{left:733.897350px;}
.x14{left:786.048300px;}
@media print{
.v3{vertical-align:-5.288533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:15.118400pt;}
.v4{vertical-align:33.315200pt;}
.ls26{letter-spacing:-6.032000pt;}
.ls2a{letter-spacing:-4.160000pt;}
.ls34{letter-spacing:-3.536000pt;}
.ls18{letter-spacing:-2.426667pt;}
.ls36{letter-spacing:-0.686933pt;}
.ls2b{letter-spacing:-0.637867pt;}
.ls2f{letter-spacing:-0.441600pt;}
.ls2c{letter-spacing:-0.392533pt;}
.ls2d{letter-spacing:-0.343467pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls30{letter-spacing:-0.245333pt;}
.ls37{letter-spacing:-0.232000pt;}
.ls1d{letter-spacing:-0.196267pt;}
.ls27{letter-spacing:-0.147200pt;}
.ls1f{letter-spacing:-0.138667pt;}
.ls1a{letter-spacing:-0.098133pt;}
.ls35{letter-spacing:-0.049067pt;}
.ls19{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.049067pt;}
.lse{letter-spacing:0.098133pt;}
.ls20{letter-spacing:0.122667pt;}
.ls10{letter-spacing:0.139200pt;}
.ls2{letter-spacing:0.147200pt;}
.ls8{letter-spacing:0.171733pt;}
.ls0{letter-spacing:0.186667pt;}
.ls4{letter-spacing:0.196267pt;}
.ls16{letter-spacing:0.208000pt;}
.ls32{letter-spacing:0.232000pt;}
.ls17{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.245333pt;}
.ls1e{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.280000pt;}
.ls22{letter-spacing:0.294400pt;}
.ls25{letter-spacing:0.343467pt;}
.ls13{letter-spacing:0.346667pt;}
.ls3{letter-spacing:0.392533pt;}
.ls23{letter-spacing:0.441600pt;}
.ls33{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.490667pt;}
.ls6{letter-spacing:0.539733pt;}
.ls7{letter-spacing:0.588800pt;}
.ls1{letter-spacing:0.637867pt;}
.ls31{letter-spacing:0.662400pt;}
.ls21{letter-spacing:0.686933pt;}
.ls5{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.785067pt;}
.ls24{letter-spacing:0.809600pt;}
.lsc{letter-spacing:0.834133pt;}
.ls14{letter-spacing:0.853333pt;}
.ls1c{letter-spacing:0.883200pt;}
.ls15{letter-spacing:0.901333pt;}
.ls28{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.079467pt;}
.ls29{letter-spacing:1.113600pt;}
.lsf{letter-spacing:21.631467pt;}
.ls11{letter-spacing:21.632000pt;}
.ws1{word-spacing:-38.741333pt;}
.ws72{word-spacing:-13.131200pt;}
.ws2f{word-spacing:-12.899200pt;}
.ws74{word-spacing:-12.667200pt;}
.ws53{word-spacing:-11.040000pt;}
.ws57{word-spacing:-10.254933pt;}
.ws3f{word-spacing:-4.563200pt;}
.ws42{word-spacing:-4.366933pt;}
.ws47{word-spacing:-3.925333pt;}
.ws50{word-spacing:-3.876267pt;}
.wsc{word-spacing:-3.827200pt;}
.wsd{word-spacing:-3.778133pt;}
.ws39{word-spacing:-3.680000pt;}
.ws55{word-spacing:-3.630933pt;}
.ws62{word-spacing:-3.483733pt;}
.wsb{word-spacing:-3.434667pt;}
.ws1b{word-spacing:-3.385600pt;}
.ws4d{word-spacing:-3.336533pt;}
.ws68{word-spacing:-3.287467pt;}
.ws6c{word-spacing:-3.189333pt;}
.ws1e{word-spacing:-3.140267pt;}
.ws7{word-spacing:-3.091200pt;}
.ws29{word-spacing:-2.986667pt;}
.ws60{word-spacing:-2.944000pt;}
.ws6d{word-spacing:-2.698667pt;}
.ws31{word-spacing:-2.600533pt;}
.ws2a{word-spacing:-2.598400pt;}
.ws5a{word-spacing:-2.453333pt;}
.ws3b{word-spacing:-2.404267pt;}
.ws46{word-spacing:-2.208000pt;}
.ws15{word-spacing:-2.158933pt;}
.ws36{word-spacing:-2.109867pt;}
.ws4a{word-spacing:-2.011733pt;}
.ws14{word-spacing:-1.913600pt;}
.ws6a{word-spacing:-1.815467pt;}
.ws84{word-spacing:-1.619200pt;}
.ws23{word-spacing:-1.472000pt;}
.ws37{word-spacing:-1.422933pt;}
.ws7b{word-spacing:-1.373867pt;}
.ws80{word-spacing:-1.226667pt;}
.ws17{word-spacing:-1.128533pt;}
.ws83{word-spacing:-1.079467pt;}
.ws24{word-spacing:-0.883200pt;}
.ws44{word-spacing:-0.834133pt;}
.ws2c{word-spacing:-0.624000pt;}
.ws51{word-spacing:-0.588800pt;}
.ws61{word-spacing:-0.539733pt;}
.ws82{word-spacing:-0.441600pt;}
.ws7c{word-spacing:-0.280000pt;}
.ws87{word-spacing:-0.266667pt;}
.ws86{word-spacing:-0.232000pt;}
.ws38{word-spacing:-0.196267pt;}
.wse{word-spacing:-0.147200pt;}
.ws7d{word-spacing:-0.049067pt;}
.ws2{word-spacing:0.000000pt;}
.ws35{word-spacing:0.049067pt;}
.ws58{word-spacing:0.098133pt;}
.ws6e{word-spacing:0.147200pt;}
.ws5d{word-spacing:0.245333pt;}
.ws13{word-spacing:0.294400pt;}
.ws7f{word-spacing:0.392533pt;}
.ws4{word-spacing:0.539733pt;}
.ws64{word-spacing:0.637867pt;}
.ws32{word-spacing:0.686933pt;}
.ws5b{word-spacing:0.883200pt;}
.ws25{word-spacing:0.932267pt;}
.ws1c{word-spacing:1.030400pt;}
.ws79{word-spacing:1.275733pt;}
.ws9{word-spacing:1.324800pt;}
.ws66{word-spacing:1.373867pt;}
.ws2b{word-spacing:1.386667pt;}
.ws63{word-spacing:1.422933pt;}
.ws22{word-spacing:1.521067pt;}
.ws40{word-spacing:1.570133pt;}
.ws3e{word-spacing:1.668267pt;}
.ws6{word-spacing:1.717333pt;}
.ws41{word-spacing:1.766400pt;}
.ws12{word-spacing:1.815467pt;}
.ws27{word-spacing:1.913600pt;}
.ws11{word-spacing:2.060800pt;}
.ws4e{word-spacing:2.208000pt;}
.ws5f{word-spacing:2.306133pt;}
.ws0{word-spacing:2.357333pt;}
.ws28{word-spacing:2.747733pt;}
.ws21{word-spacing:2.845867pt;}
.ws69{word-spacing:2.894933pt;}
.ws45{word-spacing:2.993067pt;}
.ws33{word-spacing:3.042133pt;}
.ws6f{word-spacing:3.091200pt;}
.ws4c{word-spacing:3.336533pt;}
.ws75{word-spacing:3.536000pt;}
.ws3d{word-spacing:3.630933pt;}
.wsf{word-spacing:3.729067pt;}
.ws77{word-spacing:3.876267pt;}
.ws85{word-spacing:3.974400pt;}
.ws7e{word-spacing:4.121600pt;}
.ws54{word-spacing:4.160000pt;}
.ws3{word-spacing:4.268800pt;}
.ws5{word-spacing:4.366933pt;}
.ws81{word-spacing:4.465067pt;}
.ws4f{word-spacing:4.563200pt;}
.ws20{word-spacing:4.661333pt;}
.ws1f{word-spacing:4.710400pt;}
.ws65{word-spacing:4.759467pt;}
.wsa{word-spacing:5.004800pt;}
.ws4b{word-spacing:5.053867pt;}
.ws10{word-spacing:5.152000pt;}
.ws18{word-spacing:5.299200pt;}
.ws26{word-spacing:5.348267pt;}
.ws8{word-spacing:5.397333pt;}
.ws1d{word-spacing:5.446400pt;}
.ws6b{word-spacing:5.740800pt;}
.ws49{word-spacing:5.888000pt;}
.ws67{word-spacing:5.937067pt;}
.ws30{word-spacing:6.032000pt;}
.ws19{word-spacing:6.329600pt;}
.ws56{word-spacing:6.673067pt;}
.ws5c{word-spacing:6.722133pt;}
.ws3a{word-spacing:6.869333pt;}
.ws2d{word-spacing:7.002667pt;}
.ws34{word-spacing:7.065600pt;}
.ws7a{word-spacing:7.458133pt;}
.ws3c{word-spacing:8.782933pt;}
.ws52{word-spacing:8.862400pt;}
.ws59{word-spacing:9.568000pt;}
.ws16{word-spacing:9.715200pt;}
.ws43{word-spacing:9.862400pt;}
.ws1a{word-spacing:10.156800pt;}
.ws48{word-spacing:10.402133pt;}
.ws5e{word-spacing:10.696533pt;}
.ws78{word-spacing:10.794667pt;}
.ws76{word-spacing:13.640533pt;}
.ws73{word-spacing:45.982400pt;}
.ws70{word-spacing:51.132800pt;}
.ws71{word-spacing:126.625600pt;}
.ws2e{word-spacing:264.707200pt;}
._e{margin-left:-1187.468800pt;}
._10{margin-left:-831.760533pt;}
._6{margin-left:-47.701333pt;}
._4{margin-left:-21.883733pt;}
._13{margin-left:-18.694484pt;}
._16{margin-left:-17.369600pt;}
._c{margin-left:-16.437333pt;}
._5{margin-left:-14.162133pt;}
._18{margin-left:-12.899200pt;}
._b{margin-left:-10.843733pt;}
._1a{margin-left:-9.603733pt;}
._8{margin-left:-7.576533pt;}
._17{margin-left:-6.348503pt;}
._7{margin-left:-5.104000pt;}
._0{margin-left:-3.434667pt;}
._3{margin-left:-2.336533pt;}
._2{margin-left:-1.324800pt;}
._1{width:1.128533pt;}
._9{width:2.901333pt;}
._15{width:6.992000pt;}
._14{width:7.938987pt;}
._12{width:8.862400pt;}
._f{width:393.889600pt;}
._11{width:797.465067pt;}
._19{width:1003.254400pt;}
._a{width:1004.488533pt;}
._d{width:1395.975467pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:46.400000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:49.066667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:85.333333pt;}
.fs9{font-size:170.666667pt;}
.fs8{font-size:197.120000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:10.211067pt;}
.y7a{bottom:10.211333pt;}
.y76{bottom:10.211733pt;}
.y78{bottom:10.212000pt;}
.y7c{bottom:10.212267pt;}
.y3{bottom:21.112933pt;}
.y7d{bottom:56.474000pt;}
.yba{bottom:80.438800pt;}
.y3a{bottom:80.446133pt;}
.y1d{bottom:80.446267pt;}
.yb1{bottom:97.097600pt;}
.ya6{bottom:97.105200pt;}
.yb9{bottom:97.109200pt;}
.yd8{bottom:97.110400pt;}
.y1c{bottom:97.112933pt;}
.y39{bottom:97.117600pt;}
.yb0{bottom:113.766800pt;}
.ya5{bottom:113.774400pt;}
.y58{bottom:113.775867pt;}
.y49{bottom:113.779600pt;}
.yaf{bottom:130.436000pt;}
.ya4{bottom:130.442533pt;}
.y38{bottom:130.446133pt;}
.y1b{bottom:130.446267pt;}
.y5e{bottom:130.451067pt;}
.yae{bottom:147.105200pt;}
.y48{bottom:147.110400pt;}
.ya3{bottom:147.111733pt;}
.y37{bottom:147.112800pt;}
.y57{bottom:147.112933pt;}
.y47{bottom:162.446267pt;}
.ya2{bottom:163.769333pt;}
.yad{bottom:163.774400pt;}
.y36{bottom:163.779467pt;}
.y56{bottom:163.779600pt;}
.ya1{bottom:180.438533pt;}
.y1a{bottom:180.438800pt;}
.y46{bottom:180.441200pt;}
.y35{bottom:180.446133pt;}
.y55{bottom:180.446267pt;}
.yd7{bottom:180.449200pt;}
.yd6{bottom:197.095200pt;}
.ya0{bottom:197.107733pt;}
.y19{bottom:197.109200pt;}
.y45{bottom:197.110400pt;}
.y34{bottom:197.112800pt;}
.y54{bottom:197.112933pt;}
.yd5{bottom:213.764400pt;}
.y97{bottom:213.775867pt;}
.y9f{bottom:213.776933pt;}
.y33{bottom:213.779467pt;}
.y18{bottom:213.779600pt;}
.yac{bottom:230.424000pt;}
.yd4{bottom:230.433600pt;}
.y9e{bottom:230.438533pt;}
.y5d{bottom:230.438800pt;}
.y60{bottom:230.442533pt;}
.y32{bottom:230.446133pt;}
.y17{bottom:230.446267pt;}
.yab{bottom:247.093200pt;}
.y44{bottom:247.102800pt;}
.y9d{bottom:247.107733pt;}
.y5c{bottom:247.109200pt;}
.y31{bottom:247.112800pt;}
.y16{bottom:247.112933pt;}
.yaa{bottom:263.762400pt;}
.y43{bottom:263.772000pt;}
.y9c{bottom:263.776933pt;}
.y30{bottom:263.779467pt;}
.y15{bottom:263.779600pt;}
.ya9{bottom:280.431600pt;}
.y9b{bottom:280.441067pt;}
.y42{bottom:280.441200pt;}
.y14{bottom:280.442533pt;}
.yd3{bottom:280.442667pt;}
.y2f{bottom:280.446133pt;}
.y5b{bottom:280.446267pt;}
.ya8{bottom:297.100800pt;}
.y5a{bottom:297.109200pt;}
.y9a{bottom:297.110267pt;}
.y41{bottom:297.110400pt;}
.y2e{bottom:297.112800pt;}
.y13{bottom:297.112933pt;}
.y40{bottom:312.446267pt;}
.y2d{bottom:313.761867pt;}
.ya7{bottom:313.770000pt;}
.y99{bottom:313.779467pt;}
.y53{bottom:313.779600pt;}
.yd2{bottom:313.781067pt;}
.y12{bottom:313.784400pt;}
.y2c{bottom:330.432267pt;}
.yd1{bottom:330.438667pt;}
.yb8{bottom:330.442533pt;}
.y3f{bottom:330.446267pt;}
.y2b{bottom:347.102667pt;}
.y3e{bottom:347.105333pt;}
.yd0{bottom:347.107867pt;}
.y98{bottom:347.112800pt;}
.y11{bottom:347.112933pt;}
.y2a{bottom:363.773067pt;}
.y3d{bottom:363.774533pt;}
.ycf{bottom:363.777067pt;}
.y10{bottom:363.779600pt;}
.y3c{bottom:380.443733pt;}
.yf{bottom:380.446267pt;}
.y29{bottom:397.101600pt;}
.ye{bottom:397.112933pt;}
.y3b{bottom:412.446267pt;}
.y28{bottom:413.772000pt;}
.y5f{bottom:413.775867pt;}
.yd{bottom:413.779600pt;}
.y4a{bottom:416.123467pt;}
.y27{bottom:430.442400pt;}
.yc{bottom:430.442533pt;}
.y59{bottom:430.446267pt;}
.y26{bottom:447.112800pt;}
.yb{bottom:447.112933pt;}
.yce{bottom:463.769467pt;}
.y25{bottom:463.779467pt;}
.ya{bottom:463.779600pt;}
.ycd{bottom:480.438667pt;}
.yb7{bottom:480.442533pt;}
.y24{bottom:480.446133pt;}
.y9{bottom:480.446267pt;}
.ycc{bottom:497.107867pt;}
.y8{bottom:497.112933pt;}
.y23{bottom:497.117600pt;}
.y6b{bottom:507.149867pt;}
.y7{bottom:513.775867pt;}
.y1f{bottom:513.779600pt;}
.y86{bottom:530.438800pt;}
.y22{bottom:530.446133pt;}
.y6{bottom:530.446267pt;}
.y72{bottom:531.704933pt;}
.y71{bottom:545.624933pt;}
.y1e{bottom:547.109200pt;}
.y21{bottom:547.112800pt;}
.y5{bottom:547.112933pt;}
.y70{bottom:559.544933pt;}
.y4{bottom:563.779600pt;}
.y20{bottom:563.782267pt;}
.y6f{bottom:573.464933pt;}
.y96{bottom:580.438800pt;}
.y85{bottom:580.446267pt;}
.y4b{bottom:595.779600pt;}
.y95{bottom:597.109200pt;}
.y84{bottom:597.112933pt;}
.y6d{bottom:602.985867pt;}
.y6c{bottom:609.633200pt;}
.y83{bottom:613.779600pt;}
.ycb{bottom:615.181467pt;}
.y6e{bottom:616.280533pt;}
.yca{bottom:623.498667pt;}
.y82{bottom:630.446267pt;}
.y81{bottom:647.112933pt;}
.yc9{bottom:652.614667pt;}
.y69{bottom:658.312667pt;}
.y65{bottom:658.975600pt;}
.y80{bottom:663.779600pt;}
.y68{bottom:669.512667pt;}
.y75{bottom:671.849333pt;}
.yc8{bottom:674.828667pt;}
.y7f{bottom:680.442533pt;}
.y94{bottom:680.446267pt;}
.yc7{bottom:697.042667pt;}
.y7e{bottom:697.112933pt;}
.y52{bottom:699.240400pt;}
.y77{bottom:707.413333pt;}
.y64{bottom:709.238400pt;}
.y93{bottom:713.779600pt;}
.yc6{bottom:719.488667pt;}
.y51{bottom:727.233733pt;}
.y92{bottom:730.446267pt;}
.y79{bottom:740.516000pt;}
.yc5{bottom:742.166667pt;}
.y91{bottom:747.106533pt;}
.y50{bottom:755.227067pt;}
.yc4{bottom:763.178800pt;}
.y90{bottom:763.776933pt;}
.y63{bottom:768.386800pt;}
.yc3{bottom:771.519200pt;}
.y7b{bottom:779.316000pt;}
.yb6{bottom:780.446267pt;}
.y8f{bottom:780.447333pt;}
.y4f{bottom:783.220400pt;}
.yb5{bottom:797.112933pt;}
.yc2{bottom:799.220000pt;}
.yc1{bottom:807.560400pt;}
.y8e{bottom:813.772133pt;}
.yb4{bottom:813.779600pt;}
.y62{bottom:827.535200pt;}
.y4e{bottom:827.897733pt;}
.y8d{bottom:830.442533pt;}
.yb3{bottom:830.446267pt;}
.y73{bottom:831.893333pt;}
.y8c{bottom:847.112933pt;}
.y8b{bottom:863.779600pt;}
.y67{bottom:872.316667pt;}
.y4d{bottom:877.220400pt;}
.y8a{bottom:880.446267pt;}
.y66{bottom:883.516667pt;}
.y6a{bottom:884.633200pt;}
.ybe{bottom:897.101733pt;}
.y89{bottom:897.112933pt;}
.ybd{bottom:913.772133pt;}
.y88{bottom:913.779600pt;}
.yc0{bottom:930.430267pt;}
.ybc{bottom:930.445200pt;}
.y61{bottom:930.446267pt;}
.y4c{bottom:943.220400pt;}
.ybf{bottom:947.100667pt;}
.yb2{bottom:947.112933pt;}
.y87{bottom:947.113467pt;}
.ybb{bottom:947.115600pt;}
.y1{bottom:1020.472400pt;}
.y2{bottom:1024.252000pt;}
.h4{height:28.448000pt;}
.h15{height:29.122667pt;}
.h16{height:29.124000pt;}
.h14{height:34.800000pt;}
.hb{height:35.356800pt;}
.h1b{height:35.361067pt;}
.he{height:35.366933pt;}
.h19{height:35.377067pt;}
.h1e{height:35.385067pt;}
.hc{height:35.387200pt;}
.hd{height:35.397333pt;}
.h1a{height:35.403200pt;}
.h20{height:35.449600pt;}
.h2{height:36.576000pt;}
.h9{height:40.000000pt;}
.h7{height:42.000000pt;}
.h5{height:42.589867pt;}
.h6{height:42.604800pt;}
.h13{height:42.619733pt;}
.h18{height:42.638933pt;}
.h8{height:42.660267pt;}
.h3{height:48.880000pt;}
.h10{height:52.832000pt;}
.h1c{height:54.444800pt;}
.h12{height:63.998400pt;}
.ha{height:64.000000pt;}
.h1f{height:68.115200pt;}
.h1d{height:68.672000pt;}
.h17{height:121.648000pt;}
.hf{height:147.840000pt;}
.h11{height:148.138667pt;}
.h0{height:1077.165333pt;}
.h1{height:1077.333333pt;}
.w7{width:30.157333pt;}
.w6{width:30.158667pt;}
.w3{width:122.165333pt;}
.w5{width:184.084000pt;}
.w4{width:227.548000pt;}
.w2{width:509.980000pt;}
.w0{width:801.260000pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.x24{left:10.775467pt;}
.x3{left:45.354400pt;}
.x2{left:50.003467pt;}
.x9{left:51.498267pt;}
.x28{left:52.913333pt;}
.x27{left:54.803200pt;}
.x1f{left:57.442267pt;}
.xc{left:83.149600pt;}
.x22{left:88.774667pt;}
.xf{left:92.598400pt;}
.x13{left:95.533600pt;}
.x11{left:104.247200pt;}
.x21{left:110.108000pt;}
.x10{left:114.548000pt;}
.x1a{left:183.352667pt;}
.x1c{left:187.642667pt;}
.x18{left:189.020933pt;}
.x12{left:215.468000pt;}
.x23{left:232.569333pt;}
.x16{left:238.569600pt;}
.x1d{left:251.442267pt;}
.x29{left:274.461733pt;}
.x4{left:275.905467pt;}
.x8{left:277.795333pt;}
.x6{left:306.141733pt;}
.x7{left:312.136400pt;}
.xd{left:313.700800pt;}
.x1{left:316.764667pt;}
.x25{left:323.706667pt;}
.x1b{left:334.106267pt;}
.x15{left:342.438933pt;}
.xa{left:354.560000pt;}
.x20{left:359.612000pt;}
.x2a{left:360.608933pt;}
.x2b{left:424.861333pt;}
.x1e{left:450.334667pt;}
.x19{left:463.585467pt;}
.x2c{left:469.046000pt;}
.x5{left:506.451579pt;}
.xe{left:521.413867pt;}
.xb{left:544.142933pt;}
.x26{left:624.550667pt;}
.x17{left:652.353200pt;}
.x14{left:698.709600pt;}
}




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