
    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_3bf88a38ee5cab9d0adb1d34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_75e2d68f2efe2d339881e01b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_001a38a7be26f4162fa7a6f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_c43011d6b83698dc49a329bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_c4f4563c4c9aee059cd637c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_434c20d877aaab743ddaa41b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954590;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_1bd5e3f94aa9aa3c14960095.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_63ce8468cd959e6aee1b79c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9cb4db4f9a4b47d60cf3f255.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951172;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_391975c0e0eecfc020f973db.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903000;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_aa618031a36ddbf5fc84203b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_94728c2e34f194317cef7bf5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_d7cd98ba83a8b0a5293f113f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.420898;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_c91619e7789e37c9371285e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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_7d271a4781a4e159ae1117e9.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;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_65ae6690ef294515f56642aa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_19ac199111b66f48789de826.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8259e77874dd7814555638e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b905522ad4aeed1703f1794f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.980957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f1d93cba81bcc0c7f4cf4aaa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7d271a4781a4e159ae1117e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.939453;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:ff16;src:url('chunks/assets/font_65ae6690ef294515f56642aa.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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:ff17;src:url('chunks/assets/font_7de63d0acdbd614d8db0bd87.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.971191;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:ff18;src:url('chunks/assets/font_b3a6b2a9552ccc0d029ee63f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.893555;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:ff19;src:url('chunks/assets/font_95168eb68fa42603edc0525d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.673828;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:ff1a;src:url('chunks/assets/font_1af39f27ac837d46ddaf156e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893555;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:ff1b;src:url('chunks/assets/font_6a941a7db149fe97af5d23fe.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910645;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:ff1c;src:url('chunks/assets/font_d9dc7749dfdea9b7865d78cb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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:ff1d;src:url('chunks/assets/font_7ea93e83517b1df480a37e66.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.893066;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:ff1e;src:url('chunks/assets/font_4701a302dd4ce01e0172d004.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;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:ff1f;src:url('chunks/assets/font_e634c216d0dc553aab57649e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;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:ff20;src:url('chunks/assets/font_4847c3deaa0d608874eb3e3a.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;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:ff21;src:url('chunks/assets/font_7d2080bf2c44fa207eb9ddfa.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.997607;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:ff22;src:url('chunks/assets/font_2416d6755e92bd2f48cb6a52.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-18.981000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.ls30{letter-spacing:-1.026000px;}
.ls35{letter-spacing:-0.855000px;}
.ls33{letter-spacing:-0.798000px;}
.lsf{letter-spacing:-0.672000px;}
.ls6b{letter-spacing:-0.630000px;}
.ls46{letter-spacing:-0.627000px;}
.ls67{letter-spacing:-0.585000px;}
.ls37{letter-spacing:-0.570000px;}
.ls31{letter-spacing:-0.513000px;}
.ls61{letter-spacing:-0.495000px;}
.ls47{letter-spacing:-0.456000px;}
.ls5f{letter-spacing:-0.450000px;}
.ls2f{letter-spacing:-0.399000px;}
.ls69{letter-spacing:-0.360000px;}
.ls68{letter-spacing:-0.315000px;}
.ls32{letter-spacing:-0.299079px;}
.ls63{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.232617px;}
.ls34{letter-spacing:-0.228000px;}
.ls48{letter-spacing:-0.192000px;}
.ls60{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.171000px;}
.ls66{letter-spacing:-0.135000px;}
.ls36{letter-spacing:-0.114000px;}
.ls65{letter-spacing:-0.090000px;}
.ls39{letter-spacing:-0.057000px;}
.ls6a{letter-spacing:-0.045000px;}
.ls5c{letter-spacing:-0.033231px;}
.lsc{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000600px;}
.ls3d{letter-spacing:0.007200px;}
.ls3e{letter-spacing:0.007800px;}
.ls3b{letter-spacing:0.033231px;}
.ls5e{letter-spacing:0.045000px;}
.ls14{letter-spacing:0.057000px;}
.ls49{letter-spacing:0.090000px;}
.ls3a{letter-spacing:0.099693px;}
.ls16{letter-spacing:0.114000px;}
.ls1c{letter-spacing:0.166155px;}
.ls2c{letter-spacing:0.171000px;}
.ls52{letter-spacing:0.225000px;}
.lsa{letter-spacing:0.228000px;}
.ls53{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.275400px;}
.ls1b{letter-spacing:0.285000px;}
.ls2b{letter-spacing:0.299079px;}
.ls64{letter-spacing:0.315000px;}
.ls5{letter-spacing:0.332310px;}
.ls11{letter-spacing:0.342000px;}
.ls5a{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.398772px;}
.ls4a{letter-spacing:0.450000px;}
.ls3c{letter-spacing:0.456000px;}
.lsb{letter-spacing:0.462000px;}
.ls4d{letter-spacing:0.495000px;}
.ls2a{letter-spacing:0.513000px;}
.ls3{letter-spacing:0.570000px;}
.ls4{letter-spacing:0.627000px;}
.ls4e{letter-spacing:0.630000px;}
.ls55{letter-spacing:0.675000px;}
.ls0{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.741000px;}
.ls1d{letter-spacing:0.798000px;}
.ls59{letter-spacing:0.810000px;}
.ls29{letter-spacing:0.841200px;}
.lsd{letter-spacing:0.855000px;}
.ls28{letter-spacing:0.867000px;}
.ls6{letter-spacing:0.912000px;}
.ls57{letter-spacing:0.945000px;}
.ls1f{letter-spacing:0.969000px;}
.ls22{letter-spacing:1.026000px;}
.ls51{letter-spacing:1.080000px;}
.ls4f{letter-spacing:1.125000px;}
.ls13{letter-spacing:1.140000px;}
.ls50{letter-spacing:1.170000px;}
.ls5d{letter-spacing:1.215000px;}
.ls15{letter-spacing:1.254000px;}
.ls62{letter-spacing:1.260000px;}
.ls4c{letter-spacing:1.395000px;}
.ls24{letter-spacing:1.482000px;}
.ls2d{letter-spacing:1.539000px;}
.ls21{letter-spacing:1.596000px;}
.ls23{letter-spacing:1.653000px;}
.ls25{letter-spacing:1.767000px;}
.ls26{letter-spacing:1.776600px;}
.ls19{letter-spacing:1.794474px;}
.ls58{letter-spacing:1.935000px;}
.ls17{letter-spacing:1.938000px;}
.ls1a{letter-spacing:1.995000px;}
.ls1e{letter-spacing:2.166000px;}
.ls4b{letter-spacing:2.205000px;}
.ls54{letter-spacing:2.340000px;}
.ls2e{letter-spacing:2.451000px;}
.ls9{letter-spacing:2.724942px;}
.ls38{letter-spacing:2.736000px;}
.ls18{letter-spacing:3.078000px;}
.ls5b{letter-spacing:3.195000px;}
.ls56{letter-spacing:3.330000px;}
.ls7{letter-spacing:3.819000px;}
.ls10{letter-spacing:4.332000px;}
.ls12{letter-spacing:4.446000px;}
.ls27{letter-spacing:4.474800px;}
.ls8{letter-spacing:4.674000px;}
.ls43{letter-spacing:405.563400px;}
.ls40{letter-spacing:424.875600px;}
.ls41{letter-spacing:456.891000px;}
.ls42{letter-spacing:458.250600px;}
.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;}
}
.ws27{word-spacing:-47.766000px;}
.ws52{word-spacing:-27.360000px;}
.ws53{word-spacing:-27.168000px;}
.ws2a{word-spacing:-17.613000px;}
.ws29{word-spacing:-17.100000px;}
.ws5{word-spacing:-16.587000px;}
.ws3{word-spacing:-16.188000px;}
.ws6{word-spacing:-16.074000px;}
.ws4{word-spacing:-15.846000px;}
.ws25{word-spacing:-15.105000px;}
.ws62{word-spacing:-14.250000px;}
.ws55{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.830236px;}
.ws9{word-spacing:-11.676000px;}
.ws22{word-spacing:-10.899768px;}
.ws7{word-spacing:-9.514560px;}
.ws0{word-spacing:-9.504066px;}
.ws1{word-spacing:-9.437604px;}
.ws2b{word-spacing:-9.404373px;}
.ws23{word-spacing:-9.271449px;}
.ws4f{word-spacing:-9.204987px;}
.ws50{word-spacing:-9.138525px;}
.ws24{word-spacing:-9.105294px;}
.ws61{word-spacing:-9.072063px;}
.ws51{word-spacing:-8.872677px;}
.ws26{word-spacing:-8.806215px;}
.ws8{word-spacing:-7.870500px;}
.ws56{word-spacing:-6.996000px;}
.ws3a{word-spacing:-5.073000px;}
.ws4a{word-spacing:-4.332000px;}
.ws2d{word-spacing:-3.990000px;}
.ws35{word-spacing:-3.933000px;}
.ws37{word-spacing:-3.876000px;}
.ws41{word-spacing:-3.591000px;}
.ws39{word-spacing:-3.534000px;}
.ws1c{word-spacing:-3.312000px;}
.ws8c{word-spacing:-3.195000px;}
.ws60{word-spacing:-3.135000px;}
.ws72{word-spacing:-3.105000px;}
.ws48{word-spacing:-2.736000px;}
.ws71{word-spacing:-2.565000px;}
.ws5a{word-spacing:-2.508000px;}
.ws81{word-spacing:-2.475000px;}
.ws83{word-spacing:-2.340000px;}
.ws91{word-spacing:-2.295000px;}
.ws6e{word-spacing:-1.980000px;}
.ws58{word-spacing:-1.938000px;}
.ws88{word-spacing:-1.935000px;}
.ws6c{word-spacing:-1.710000px;}
.ws20{word-spacing:-1.680000px;}
.ws44{word-spacing:-1.653000px;}
.ws6d{word-spacing:-1.581000px;}
.ws6b{word-spacing:-1.368000px;}
.ws1d{word-spacing:-1.344000px;}
.ws77{word-spacing:-1.260000px;}
.wsc{word-spacing:-1.197000px;}
.ws7f{word-spacing:-1.170000px;}
.ws5c{word-spacing:-1.083000px;}
.ws78{word-spacing:-0.945000px;}
.ws6a{word-spacing:-0.855000px;}
.ws8b{word-spacing:-0.810000px;}
.ws12{word-spacing:-0.684000px;}
.ws84{word-spacing:-0.675000px;}
.ws7c{word-spacing:-0.630000px;}
.ws4b{word-spacing:-0.627000px;}
.ws68{word-spacing:-0.570000px;}
.ws75{word-spacing:-0.450000px;}
.ws21{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.315000px;}
.ws8a{word-spacing:-0.270000px;}
.ws17{word-spacing:-0.228000px;}
.ws5e{word-spacing:-0.171000px;}
.ws28{word-spacing:-0.066000px;}
.ws54{word-spacing:-0.048000px;}
.ws70{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws7b{word-spacing:0.090000px;}
.ws86{word-spacing:0.135000px;}
.ws73{word-spacing:0.180000px;}
.ws79{word-spacing:0.270000px;}
.ws2e{word-spacing:0.342000px;}
.ws74{word-spacing:0.495000px;}
.ws5d{word-spacing:0.570000px;}
.ws80{word-spacing:0.585000px;}
.ws38{word-spacing:0.627000px;}
.ws90{word-spacing:0.630000px;}
.ws82{word-spacing:0.810000px;}
.ws18{word-spacing:0.855000px;}
.ws36{word-spacing:0.969000px;}
.ws4d{word-spacing:1.140000px;}
.ws7d{word-spacing:1.395000px;}
.ws3b{word-spacing:1.425000px;}
.ws3d{word-spacing:1.596000px;}
.ws1a{word-spacing:1.767000px;}
.ws8d{word-spacing:1.800000px;}
.wse{word-spacing:1.824000px;}
.ws4e{word-spacing:1.881000px;}
.ws1e{word-spacing:1.890000px;}
.ws16{word-spacing:2.166000px;}
.ws30{word-spacing:2.223000px;}
.ws8e{word-spacing:2.475000px;}
.ws43{word-spacing:2.622000px;}
.ws92{word-spacing:2.655000px;}
.wsd{word-spacing:2.736000px;}
.ws59{word-spacing:3.078000px;}
.ws2f{word-spacing:3.306000px;}
.ws85{word-spacing:3.645000px;}
.ws8f{word-spacing:3.735000px;}
.ws19{word-spacing:3.762000px;}
.ws13{word-spacing:3.819000px;}
.ws11{word-spacing:3.990000px;}
.ws7e{word-spacing:4.050000px;}
.ws67{word-spacing:4.503000px;}
.ws57{word-spacing:4.617000px;}
.ws5b{word-spacing:5.016000px;}
.ws3c{word-spacing:5.073000px;}
.ws3f{word-spacing:5.130000px;}
.ws4c{word-spacing:5.244000px;}
.ws5f{word-spacing:5.358000px;}
.ws87{word-spacing:5.400000px;}
.ws42{word-spacing:5.529000px;}
.ws14{word-spacing:5.757000px;}
.ws32{word-spacing:5.814000px;}
.ws1f{word-spacing:5.838000px;}
.ws89{word-spacing:5.895000px;}
.ws1b{word-spacing:5.904000px;}
.ws76{word-spacing:6.210000px;}
.ws40{word-spacing:6.213000px;}
.ws6f{word-spacing:6.255000px;}
.wsf{word-spacing:6.327000px;}
.ws69{word-spacing:6.669000px;}
.ws45{word-spacing:6.783000px;}
.ws49{word-spacing:7.125000px;}
.ws3e{word-spacing:7.182000px;}
.ws33{word-spacing:7.353000px;}
.ws34{word-spacing:7.695000px;}
.ws31{word-spacing:7.752000px;}
.wsb{word-spacing:7.809000px;}
.ws15{word-spacing:7.923000px;}
.ws10{word-spacing:8.208000px;}
.ws46{word-spacing:9.291000px;}
.ws47{word-spacing:9.804000px;}
.ws64{word-spacing:352.348200px;}
.ws66{word-spacing:364.348200px;}
.ws63{word-spacing:369.668400px;}
.ws65{word-spacing:388.348200px;}
.ws2c{word-spacing:1895.856000px;}
._5f{margin-left:-10.334100px;}
._7{margin-left:-8.772000px;}
._9{margin-left:-7.415700px;}
._8{margin-left:-5.979300px;}
._2{margin-left:-4.953300px;}
._3{margin-left:-3.157800px;}
._1{margin-left:-1.560000px;}
._4{width:1.207800px;}
._63{width:2.414700px;}
._5{width:4.257900px;}
._66{width:5.583600px;}
._64{width:6.865800px;}
._6{width:8.308200px;}
._6a{width:9.348600px;}
._6c{width:10.576200px;}
._6b{width:27.990000px;}
._69{width:31.050000px;}
._68{width:33.390000px;}
._4b{width:49.149000px;}
._65{width:51.000000px;}
._62{width:57.375000px;}
._61{width:58.635000px;}
._60{width:60.255000px;}
._67{width:61.785000px;}
._4c{width:103.912800px;}
._4d{width:115.725000px;}
._3b{width:122.010600px;}
._e{width:124.243200px;}
._2c{width:130.243200px;}
._11{width:142.243200px;}
._46{width:144.019800px;}
._4e{width:145.912800px;}
._51{width:149.586600px;}
._33{width:150.666600px;}
._14{width:154.243200px;}
._1d{width:155.397600px;}
._3a{width:166.243200px;}
._36{width:174.666600px;}
._29{width:178.243200px;}
._25{width:181.386600px;}
._d{width:186.928200px;}
._2a{width:189.306600px;}
._44{width:190.354800px;}
._52{width:191.432400px;}
._41{width:192.573600px;}
._45{width:193.912800px;}
._2e{width:195.259200px;}
._30{width:196.555200px;}
._10{width:198.258600px;}
._49{width:204.258600px;}
._5e{width:209.634600px;}
._13{width:210.928200px;}
._56{width:216.258600px;}
._15{width:222.664200px;}
._18{width:224.682600px;}
._21{width:227.586600px;}
._19{width:234.258600px;}
._5c{width:235.555200px;}
._57{width:240.258600px;}
._58{width:244.962600px;}
._50{width:246.258600px;}
._2b{width:252.258600px;}
._28{width:258.258600px;}
._39{width:263.322600px;}
._59{width:266.274600px;}
._4f{width:268.290600px;}
._20{width:270.258600px;}
._17{width:273.978600px;}
._38{width:276.258600px;}
._16{width:281.946600px;}
._5a{width:283.242600px;}
._1b{width:284.634600px;}
._48{width:292.242600px;}
._22{width:295.242600px;}
._5b{width:297.618600px;}
._12{width:306.885000px;}
._c{width:310.533000px;}
._55{width:312.306600px;}
._4a{width:315.570600px;}
._1a{width:320.682600px;}
._b{width:326.554200px;}
._f{width:334.026600px;}
._23{width:336.618600px;}
._3d{width:347.554200px;}
._72{width:350.404200px;}
._37{width:363.258600px;}
._70{width:364.996200px;}
._43{width:366.824400px;}
._3c{width:368.634600px;}
._42{width:375.330600px;}
._73{width:376.348200px;}
._2d{width:382.650600px;}
._53{width:385.554600px;}
._71{width:400.348200px;}
._24{width:427.290600px;}
._27{width:432.618600px;}
._47{width:444.930600px;}
._35{width:464.586600px;}
._34{width:467.226600px;}
._26{width:471.306600px;}
._54{width:485.586600px;}
._3f{width:488.850600px;}
._40{width:492.882600px;}
._3e{width:501.570600px;}
._5d{width:527.586600px;}
._32{width:544.170600px;}
._74{width:558.340200px;}
._1e{width:563.274600px;}
._31{width:571.242600px;}
._1f{width:583.290600px;}
._1c{width:591.258600px;}
._2f{width:601.242600px;}
._6d{width:637.732200px;}
._75{width:701.044200px;}
._6f{width:703.684200px;}
._6e{width:706.372200px;}
._0{width:1530.634800px;}
._a{width:1908.111600px;}
.fc1{color:rgb(196,27,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs2{font-size:33.231000px;}
.fs7{font-size:34.980000px;}
.fsc{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:60.827700px;}
.yaf{bottom:91.620150px;}
.ya4{bottom:91.620300px;}
.y71{bottom:91.842450px;}
.y30{bottom:98.967450px;}
.y191{bottom:105.263550px;}
.y148{bottom:105.395550px;}
.y3c{bottom:106.541700px;}
.ya3{bottom:108.971400px;}
.yc1{bottom:109.237200px;}
.y70{bottom:109.259700px;}
.yae{bottom:109.345800px;}
.y2f{bottom:113.367450px;}
.y190{bottom:118.906800px;}
.y147{bottom:119.171100px;}
.y3b{bottom:125.143500px;}
.ya2{bottom:126.322650px;}
.y6f{bottom:126.676950px;}
.yad{bottom:127.071300px;}
.y2e{bottom:127.767450px;}
.y18f{bottom:132.550050px;}
.y146{bottom:132.946650px;}
.y2d{bottom:142.167450px;}
.ya1{bottom:143.673900px;}
.yc0{bottom:144.104250px;}
.y18e{bottom:146.193300px;}
.y145{bottom:146.722200px;}
.y18d{bottom:159.836550px;}
.y144{bottom:160.497600px;}
.ya0{bottom:161.025150px;}
.y6e{bottom:161.344200px;}
.ybf{bottom:161.721300px;}
.yac{bottom:162.046950px;}
.y3a{bottom:165.708300px;}
.y18c{bottom:173.479950px;}
.y143{bottom:174.273150px;}
.y36{bottom:177.485400px;}
.y9f{bottom:178.376250px;}
.y6d{bottom:178.761450px;}
.ybe{bottom:179.338350px;}
.yab{bottom:179.772600px;}
.y39{bottom:184.308300px;}
.y18b{bottom:187.123200px;}
.y142{bottom:188.048700px;}
.y38{bottom:194.946750px;}
.y9e{bottom:195.727500px;}
.y6c{bottom:196.178700px;}
.ybd{bottom:196.955250px;}
.yaa{bottom:197.498250px;}
.y35{bottom:197.788650px;}
.y18a{bottom:200.766450px;}
.y141{bottom:201.824250px;}
.y34{bottom:211.288650px;}
.y37{bottom:211.306650px;}
.y9d{bottom:213.078750px;}
.y189{bottom:214.409700px;}
.ybc{bottom:214.572300px;}
.ya9{bottom:215.223750px;}
.y140{bottom:215.599800px;}
.y33{bottom:224.788650px;}
.y188{bottom:228.052950px;}
.y13f{bottom:229.375200px;}
.y9c{bottom:230.430000px;}
.y6b{bottom:230.845950px;}
.ybb{bottom:232.189350px;}
.ya8{bottom:232.949400px;}
.y32{bottom:238.288650px;}
.y187{bottom:241.696350px;}
.y13e{bottom:243.150750px;}
.y9b{bottom:247.781100px;}
.y6a{bottom:248.263200px;}
.yba{bottom:249.806400px;}
.y13{bottom:250.526700px;}
.ya7{bottom:250.675050px;}
.y31{bottom:251.788650px;}
.y186{bottom:255.339600px;}
.y13d{bottom:256.926150px;}
.y9a{bottom:265.132350px;}
.yb9{bottom:267.423450px;}
.y12{bottom:267.626700px;}
.ya6{bottom:268.400550px;}
.y185{bottom:268.982850px;}
.y13c{bottom:270.701700px;}
.y99{bottom:282.483600px;}
.y184{bottom:282.626100px;}
.y69{bottom:282.930450px;}
.y11{bottom:284.726700px;}
.yb8{bottom:285.040500px;}
.y9{bottom:285.708600px;}
.ya5{bottom:286.126200px;}
.y183{bottom:296.269350px;}
.y68{bottom:300.347700px;}
.y13b{bottom:301.727250px;}
.y10{bottom:301.826700px;}
.yb7{bottom:302.657550px;}
.y8{bottom:302.808600px;}
.y182{bottom:309.912750px;}
.y98{bottom:317.084850px;}
.y67{bottom:317.764950px;}
.yf{bottom:318.926700px;}
.y7{bottom:319.908600px;}
.yb6{bottom:320.274450px;}
.yf6{bottom:321.204300px;}
.y181{bottom:323.556000px;}
.y97{bottom:334.436100px;}
.y66{bottom:335.182200px;}
.yf5{bottom:335.604300px;}
.ye{bottom:336.026700px;}
.y180{bottom:337.199250px;}
.yb5{bottom:337.891500px;}
.y13a{bottom:339.052800px;}
.yf4{bottom:350.004300px;}
.y17f{bottom:350.842650px;}
.y96{bottom:351.787200px;}
.y65{bottom:352.599450px;}
.yd{bottom:353.126700px;}
.y6{bottom:354.258600px;}
.yb4{bottom:355.508550px;}
.y139{bottom:356.428200px;}
.yf3{bottom:364.404300px;}
.y17e{bottom:364.485900px;}
.y95{bottom:369.138450px;}
.y64{bottom:370.016700px;}
.yc{bottom:370.226700px;}
.y5{bottom:371.358600px;}
.yb3{bottom:373.125600px;}
.y17d{bottom:378.129150px;}
.yf2{bottom:378.804300px;}
.y94{bottom:386.489700px;}
.yb{bottom:387.326700px;}
.y63{bottom:387.433800px;}
.y4{bottom:388.458600px;}
.yb2{bottom:390.742650px;}
.y138{bottom:391.053750px;}
.y17c{bottom:391.772400px;}
.yf1{bottom:399.021450px;}
.y62{bottom:404.851050px;}
.y17b{bottom:405.415800px;}
.y3{bottom:405.558600px;}
.yb1{bottom:408.359550px;}
.y137{bottom:408.429300px;}
.yf0{bottom:413.421450px;}
.y17a{bottom:419.059050px;}
.y93{bottom:421.090950px;}
.ya{bottom:421.676700px;}
.y61{bottom:422.268300px;}
.y2{bottom:422.658600px;}
.yb0{bottom:425.976600px;}
.yef{bottom:427.891650px;}
.y179{bottom:432.702300px;}
.y60{bottom:439.685550px;}
.yee{bottom:442.291650px;}
.y136{bottom:443.054850px;}
.y178{bottom:446.345550px;}
.yed{bottom:456.687000px;}
.y5f{bottom:457.102800px;}
.y92{bottom:458.392050px;}
.y135{bottom:458.930400px;}
.y177{bottom:459.988800px;}
.y120{bottom:463.803150px;}
.yec{bottom:471.082350px;}
.y176{bottom:473.632200px;}
.y5e{bottom:474.520050px;}
.y134{bottom:474.805800px;}
.y91{bottom:475.743300px;}
.y2c{bottom:475.948500px;}
.y11f{bottom:478.203150px;}
.yeb{bottom:485.477700px;}
.y175{bottom:487.275450px;}
.y2b{bottom:490.348500px;}
.y5d{bottom:491.937300px;}
.y11e{bottom:492.603150px;}
.y90{bottom:493.094550px;}
.yea{bottom:499.873050px;}
.y174{bottom:500.918700px;}
.y11d{bottom:507.003150px;}
.y5c{bottom:509.354550px;}
.y133{bottom:509.431350px;}
.ye9{bottom:514.268250px;}
.y173{bottom:514.562100px;}
.y5b{bottom:526.771800px;}
.y132{bottom:526.806900px;}
.y11c{bottom:527.220450px;}
.y8f{bottom:527.695800px;}
.y172{bottom:528.205350px;}
.ye8{bottom:528.663600px;}
.y20{bottom:530.815350px;}
.y11b{bottom:541.690650px;}
.y171{bottom:541.848600px;}
.ye7{bottom:543.058950px;}
.y131{bottom:544.182300px;}
.y5a{bottom:544.189050px;}
.y8e{bottom:545.047050px;}
.y170{bottom:555.491850px;}
.y11a{bottom:556.086000px;}
.ye6{bottom:557.454300px;}
.y59{bottom:561.606300px;}
.y8d{bottom:562.398150px;}
.y16f{bottom:569.135100px;}
.y1f{bottom:570.040350px;}
.y119{bottom:570.481350px;}
.ye5{bottom:571.849500px;}
.y130{bottom:578.807850px;}
.y58{bottom:579.023550px;}
.y8c{bottom:579.749400px;}
.y16e{bottom:582.778500px;}
.y118{bottom:584.876700px;}
.ye4{bottom:586.244850px;}
.y1e{bottom:587.140350px;}
.y16d{bottom:596.421750px;}
.y57{bottom:596.440800px;}
.y8b{bottom:597.100650px;}
.y117{bottom:599.271900px;}
.ye3{bottom:600.640200px;}
.y1d{bottom:604.240350px;}
.y16c{bottom:610.065000px;}
.y116{bottom:613.667250px;}
.y56{bottom:613.858050px;}
.y8a{bottom:614.451900px;}
.ye2{bottom:615.035550px;}
.y12f{bottom:616.133400px;}
.y1c{bottom:621.340350px;}
.y16b{bottom:623.708250px;}
.y115{bottom:628.062600px;}
.ye1{bottom:629.430750px;}
.y55{bottom:631.275300px;}
.y89{bottom:631.803000px;}
.y12e{bottom:633.508800px;}
.y16a{bottom:637.351650px;}
.y1b{bottom:638.440500px;}
.y114{bottom:642.457950px;}
.ye0{bottom:643.826100px;}
.y88{bottom:649.154250px;}
.y12d{bottom:650.884350px;}
.y169{bottom:650.994900px;}
.y1a{bottom:655.540350px;}
.y113{bottom:657.298050px;}
.ydf{bottom:658.221450px;}
.y168{bottom:664.638150px;}
.y54{bottom:665.942550px;}
.y87{bottom:666.505500px;}
.y12c{bottom:668.259900px;}
.y112{bottom:671.693250px;}
.yde{bottom:672.616800px;}
.y19{bottom:672.640350px;}
.y167{bottom:678.281400px;}
.y53{bottom:683.359800px;}
.y86{bottom:683.856600px;}
.y12b{bottom:685.635450px;}
.y111{bottom:686.088600px;}
.ydd{bottom:687.012000px;}
.y18{bottom:689.740350px;}
.y166{bottom:691.924650px;}
.y110{bottom:700.483950px;}
.y52{bottom:700.777050px;}
.y85{bottom:701.207850px;}
.ydc{bottom:701.412000px;}
.y12a{bottom:703.011000px;}
.y165{bottom:705.568050px;}
.y17{bottom:706.840500px;}
.y10f{bottom:714.879300px;}
.ydb{bottom:715.807350px;}
.y51{bottom:718.194150px;}
.y84{bottom:718.559100px;}
.y164{bottom:719.211300px;}
.y16{bottom:723.940500px;}
.y10e{bottom:729.274500px;}
.yda{bottom:730.202700px;}
.y163{bottom:732.854550px;}
.y50{bottom:735.611550px;}
.y83{bottom:735.910350px;}
.y129{bottom:737.636400px;}
.y15{bottom:741.040350px;}
.y10d{bottom:743.681550px;}
.yd9{bottom:744.598050px;}
.y162{bottom:746.497950px;}
.y4f{bottom:753.028650px;}
.y128{bottom:755.011950px;}
.y10c{bottom:758.076900px;}
.yd8{bottom:758.993250px;}
.y161{bottom:760.141200px;}
.y4e{bottom:770.445900px;}
.y82{bottom:770.511450px;}
.y127{bottom:772.387500px;}
.y10b{bottom:772.472100px;}
.yd7{bottom:773.388600px;}
.y160{bottom:773.784450px;}
.y2a{bottom:778.050900px;}
.y10a{bottom:786.867600px;}
.y15f{bottom:787.427700px;}
.yd6{bottom:787.783950px;}
.y4d{bottom:787.863150px;}
.y126{bottom:789.763050px;}
.y15e{bottom:801.071100px;}
.y109{bottom:801.262800px;}
.yd5{bottom:802.179150px;}
.y4c{bottom:805.280400px;}
.y125{bottom:807.138450px;}
.y81{bottom:807.812550px;}
.y15d{bottom:814.714350px;}
.y108{bottom:815.658150px;}
.yd4{bottom:816.574650px;}
.y4b{bottom:822.697650px;}
.y124{bottom:824.514000px;}
.y80{bottom:825.163950px;}
.y15c{bottom:828.357600px;}
.y29{bottom:829.414650px;}
.y107{bottom:830.053500px;}
.yd3{bottom:830.969850px;}
.y4a{bottom:840.114900px;}
.y123{bottom:841.889400px;}
.y15b{bottom:842.000850px;}
.y7f{bottom:842.515050px;}
.y106{bottom:844.448700px;}
.yd2{bottom:845.365200px;}
.y28{bottom:850.110150px;}
.y15a{bottom:855.644100px;}
.y49{bottom:857.532150px;}
.y105{bottom:858.844050px;}
.y122{bottom:859.264950px;}
.yd1{bottom:859.760400px;}
.y7e{bottom:859.866300px;}
.y27{bottom:861.814650px;}
.y159{bottom:869.287500px;}
.y104{bottom:873.239400px;}
.yd0{bottom:874.155750px;}
.y48{bottom:874.949400px;}
.y121{bottom:876.640500px;}
.y7d{bottom:877.217400px;}
.y26{bottom:882.510150px;}
.y158{bottom:882.930750px;}
.y103{bottom:887.646450px;}
.ycf{bottom:888.551100px;}
.y47{bottom:892.366650px;}
.y25{bottom:894.214650px;}
.y7c{bottom:894.568800px;}
.y157{bottom:896.574000px;}
.y102{bottom:902.041650px;}
.yce{bottom:902.946450px;}
.y46{bottom:909.783900px;}
.y156{bottom:910.217250px;}
.y7b{bottom:911.919900px;}
.y19d{bottom:914.467200px;}
.y101{bottom:916.437000px;}
.ycd{bottom:917.341800px;}
.y24{bottom:918.918600px;}
.y155{bottom:923.860500px;}
.y19c{bottom:928.867200px;}
.y7a{bottom:929.271150px;}
.y100{bottom:930.832350px;}
.ycc{bottom:931.737000px;}
.y23{bottom:936.918600px;}
.y154{bottom:937.503900px;}
.y19b{bottom:943.267200px;}
.y45{bottom:944.451150px;}
.yff{bottom:945.227700px;}
.ycb{bottom:946.132350px;}
.y79{bottom:946.622250px;}
.y153{bottom:951.147150px;}
.y19a{bottom:957.667200px;}
.yfe{bottom:959.623050px;}
.yca{bottom:960.527700px;}
.y44{bottom:961.868400px;}
.y78{bottom:963.973500px;}
.y152{bottom:964.790400px;}
.yfd{bottom:974.018250px;}
.yc9{bottom:974.923050px;}
.y199{bottom:977.884350px;}
.y151{bottom:978.433800px;}
.y43{bottom:979.285650px;}
.y77{bottom:981.324750px;}
.yfc{bottom:988.413600px;}
.yc8{bottom:989.318250px;}
.y22{bottom:989.926500px;}
.y150{bottom:992.077050px;}
.y198{bottom:992.354700px;}
.y42{bottom:996.702900px;}
.y76{bottom:998.676000px;}
.yfb{bottom:1002.808950px;}
.yc7{bottom:1003.713600px;}
.y14f{bottom:1005.720300px;}
.y197{bottom:1006.750050px;}
.y41{bottom:1014.120150px;}
.y75{bottom:1016.027100px;}
.yc6{bottom:1018.108950px;}
.y14e{bottom:1019.363550px;}
.y1a3{bottom:1020.191400px;}
.y196{bottom:1021.145250px;}
.yfa{bottom:1021.854300px;}
.y21{bottom:1024.126500px;}
.y40{bottom:1031.537400px;}
.y14d{bottom:1033.006950px;}
.y1a2{bottom:1033.691400px;}
.y195{bottom:1035.540600px;}
.yf9{bottom:1036.254300px;}
.yc5{bottom:1037.154300px;}
.y14c{bottom:1046.650200px;}
.y1a1{bottom:1047.191400px;}
.y3f{bottom:1048.954500px;}
.y194{bottom:1049.935950px;}
.y74{bottom:1050.628350px;}
.yc4{bottom:1051.554150px;}
.yf8{bottom:1053.681150px;}
.y14b{bottom:1060.293450px;}
.y1a0{bottom:1060.691400px;}
.y73{bottom:1067.979600px;}
.yc3{bottom:1068.981150px;}
.y193{bottom:1068.981300px;}
.yf7{bottom:1071.108150px;}
.y14a{bottom:1073.936700px;}
.y19f{bottom:1074.191400px;}
.y3e{bottom:1083.621900px;}
.y72{bottom:1085.330850px;}
.yc2{bottom:1086.408150px;}
.y192{bottom:1086.408300px;}
.y149{bottom:1087.579950px;}
.y19e{bottom:1087.691400px;}
.y14{bottom:1096.699650px;}
.y3d{bottom:1118.743950px;}
.ha{height:21.596652px;}
.h11{height:28.393066px;}
.h12{height:30.577148px;}
.hf{height:30.618164px;}
.h16{height:32.531250px;}
.h17{height:33.351562px;}
.h1c{height:33.642334px;}
.h1b{height:33.750000px;}
.h1d{height:33.771973px;}
.h18{height:33.843750px;}
.h13{height:34.031250px;}
.h10{height:34.945312px;}
.he{height:34.992188px;}
.h1{height:36.679688px;}
.hb{height:37.044000px;}
.h19{height:38.150391px;}
.h15{height:38.997070px;}
.h9{height:39.578652px;}
.h1a{height:41.608887px;}
.h14{height:41.970703px;}
.h6{height:42.026367px;}
.h3{height:42.638672px;}
.h2{height:43.839346px;}
.h8{height:46.180840px;}
.h4{height:46.535156px;}
.hc{height:50.765625px;}
.hd{height:57.117188px;}
.h5{height:66.357422px;}
.h7{height:85.500000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:80.832000px;}
.x3{left:88.334100px;}
.xe{left:89.829900px;}
.x6{left:108.058500px;}
.x5{left:191.088750px;}
.xa{left:218.419800px;}
.x10{left:238.640550px;}
.xf{left:244.640550px;}
.xb{left:248.803500px;}
.x7{left:254.586600px;}
.x8{left:272.909250px;}
.x9{left:279.160950px;}
.xc{left:318.943350px;}
.xd{left:348.360300px;}
.x2{left:472.500000px;}
.x4{left:478.275000px;}
.x16{left:481.500000px;}
.x17{left:499.500000px;}
.x13{left:603.471750px;}
.x12{left:618.591900px;}
.x11{left:658.081200px;}
.x15{left:700.028400px;}
.x14{left:715.022550px;}
@media print{
.v2{vertical-align:-16.872000pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.ls30{letter-spacing:-0.912000pt;}
.ls35{letter-spacing:-0.760000pt;}
.ls33{letter-spacing:-0.709333pt;}
.lsf{letter-spacing:-0.597333pt;}
.ls6b{letter-spacing:-0.560000pt;}
.ls46{letter-spacing:-0.557333pt;}
.ls67{letter-spacing:-0.520000pt;}
.ls37{letter-spacing:-0.506667pt;}
.ls31{letter-spacing:-0.456000pt;}
.ls61{letter-spacing:-0.440000pt;}
.ls47{letter-spacing:-0.405333pt;}
.ls5f{letter-spacing:-0.400000pt;}
.ls2f{letter-spacing:-0.354667pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls68{letter-spacing:-0.280000pt;}
.ls32{letter-spacing:-0.265848pt;}
.ls63{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.206771pt;}
.ls34{letter-spacing:-0.202667pt;}
.ls48{letter-spacing:-0.170667pt;}
.ls60{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.152000pt;}
.ls66{letter-spacing:-0.120000pt;}
.ls36{letter-spacing:-0.101333pt;}
.ls65{letter-spacing:-0.080000pt;}
.ls39{letter-spacing:-0.050667pt;}
.ls6a{letter-spacing:-0.040000pt;}
.ls5c{letter-spacing:-0.029539pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000533pt;}
.ls3d{letter-spacing:0.006400pt;}
.ls3e{letter-spacing:0.006933pt;}
.ls3b{letter-spacing:0.029539pt;}
.ls5e{letter-spacing:0.040000pt;}
.ls14{letter-spacing:0.050667pt;}
.ls49{letter-spacing:0.080000pt;}
.ls3a{letter-spacing:0.088616pt;}
.ls16{letter-spacing:0.101333pt;}
.ls1c{letter-spacing:0.147693pt;}
.ls2c{letter-spacing:0.152000pt;}
.ls52{letter-spacing:0.200000pt;}
.lsa{letter-spacing:0.202667pt;}
.ls53{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.244800pt;}
.ls1b{letter-spacing:0.253333pt;}
.ls2b{letter-spacing:0.265848pt;}
.ls64{letter-spacing:0.280000pt;}
.ls5{letter-spacing:0.295387pt;}
.ls11{letter-spacing:0.304000pt;}
.ls5a{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.354464pt;}
.ls4a{letter-spacing:0.400000pt;}
.ls3c{letter-spacing:0.405333pt;}
.lsb{letter-spacing:0.410667pt;}
.ls4d{letter-spacing:0.440000pt;}
.ls2a{letter-spacing:0.456000pt;}
.ls3{letter-spacing:0.506667pt;}
.ls4{letter-spacing:0.557333pt;}
.ls4e{letter-spacing:0.560000pt;}
.ls55{letter-spacing:0.600000pt;}
.ls0{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.658667pt;}
.ls1d{letter-spacing:0.709333pt;}
.ls59{letter-spacing:0.720000pt;}
.ls29{letter-spacing:0.747733pt;}
.lsd{letter-spacing:0.760000pt;}
.ls28{letter-spacing:0.770667pt;}
.ls6{letter-spacing:0.810667pt;}
.ls57{letter-spacing:0.840000pt;}
.ls1f{letter-spacing:0.861333pt;}
.ls22{letter-spacing:0.912000pt;}
.ls51{letter-spacing:0.960000pt;}
.ls4f{letter-spacing:1.000000pt;}
.ls13{letter-spacing:1.013333pt;}
.ls50{letter-spacing:1.040000pt;}
.ls5d{letter-spacing:1.080000pt;}
.ls15{letter-spacing:1.114667pt;}
.ls62{letter-spacing:1.120000pt;}
.ls4c{letter-spacing:1.240000pt;}
.ls24{letter-spacing:1.317333pt;}
.ls2d{letter-spacing:1.368000pt;}
.ls21{letter-spacing:1.418667pt;}
.ls23{letter-spacing:1.469333pt;}
.ls25{letter-spacing:1.570667pt;}
.ls26{letter-spacing:1.579200pt;}
.ls19{letter-spacing:1.595088pt;}
.ls58{letter-spacing:1.720000pt;}
.ls17{letter-spacing:1.722667pt;}
.ls1a{letter-spacing:1.773333pt;}
.ls1e{letter-spacing:1.925333pt;}
.ls4b{letter-spacing:1.960000pt;}
.ls54{letter-spacing:2.080000pt;}
.ls2e{letter-spacing:2.178667pt;}
.ls9{letter-spacing:2.422171pt;}
.ls38{letter-spacing:2.432000pt;}
.ls18{letter-spacing:2.736000pt;}
.ls5b{letter-spacing:2.840000pt;}
.ls56{letter-spacing:2.960000pt;}
.ls7{letter-spacing:3.394667pt;}
.ls10{letter-spacing:3.850667pt;}
.ls12{letter-spacing:3.952000pt;}
.ls27{letter-spacing:3.977600pt;}
.ls8{letter-spacing:4.154667pt;}
.ls43{letter-spacing:360.500800pt;}
.ls40{letter-spacing:377.667200pt;}
.ls41{letter-spacing:406.125333pt;}
.ls42{letter-spacing:407.333867pt;}
.ws27{word-spacing:-42.458667pt;}
.ws52{word-spacing:-24.320000pt;}
.ws53{word-spacing:-24.149333pt;}
.ws2a{word-spacing:-15.656000pt;}
.ws29{word-spacing:-15.200000pt;}
.ws5{word-spacing:-14.744000pt;}
.ws3{word-spacing:-14.389333pt;}
.ws6{word-spacing:-14.288000pt;}
.ws4{word-spacing:-14.085333pt;}
.ws25{word-spacing:-13.426667pt;}
.ws62{word-spacing:-12.666667pt;}
.ws55{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.515765pt;}
.ws9{word-spacing:-10.378667pt;}
.ws22{word-spacing:-9.688683pt;}
.ws7{word-spacing:-8.457387pt;}
.ws0{word-spacing:-8.448059pt;}
.ws1{word-spacing:-8.388981pt;}
.ws2b{word-spacing:-8.359443pt;}
.ws23{word-spacing:-8.241288pt;}
.ws4f{word-spacing:-8.182211pt;}
.ws50{word-spacing:-8.123133pt;}
.ws24{word-spacing:-8.093595pt;}
.ws61{word-spacing:-8.064056pt;}
.ws51{word-spacing:-7.886824pt;}
.ws26{word-spacing:-7.827747pt;}
.ws8{word-spacing:-6.996000pt;}
.ws56{word-spacing:-6.218667pt;}
.ws3a{word-spacing:-4.509333pt;}
.ws4a{word-spacing:-3.850667pt;}
.ws2d{word-spacing:-3.546667pt;}
.ws35{word-spacing:-3.496000pt;}
.ws37{word-spacing:-3.445333pt;}
.ws41{word-spacing:-3.192000pt;}
.ws39{word-spacing:-3.141333pt;}
.ws1c{word-spacing:-2.944000pt;}
.ws8c{word-spacing:-2.840000pt;}
.ws60{word-spacing:-2.786667pt;}
.ws72{word-spacing:-2.760000pt;}
.ws48{word-spacing:-2.432000pt;}
.ws71{word-spacing:-2.280000pt;}
.ws5a{word-spacing:-2.229333pt;}
.ws81{word-spacing:-2.200000pt;}
.ws83{word-spacing:-2.080000pt;}
.ws91{word-spacing:-2.040000pt;}
.ws6e{word-spacing:-1.760000pt;}
.ws58{word-spacing:-1.722667pt;}
.ws88{word-spacing:-1.720000pt;}
.ws6c{word-spacing:-1.520000pt;}
.ws20{word-spacing:-1.493333pt;}
.ws44{word-spacing:-1.469333pt;}
.ws6d{word-spacing:-1.405333pt;}
.ws6b{word-spacing:-1.216000pt;}
.ws1d{word-spacing:-1.194667pt;}
.ws77{word-spacing:-1.120000pt;}
.wsc{word-spacing:-1.064000pt;}
.ws7f{word-spacing:-1.040000pt;}
.ws5c{word-spacing:-0.962667pt;}
.ws78{word-spacing:-0.840000pt;}
.ws6a{word-spacing:-0.760000pt;}
.ws8b{word-spacing:-0.720000pt;}
.ws12{word-spacing:-0.608000pt;}
.ws84{word-spacing:-0.600000pt;}
.ws7c{word-spacing:-0.560000pt;}
.ws4b{word-spacing:-0.557333pt;}
.ws68{word-spacing:-0.506667pt;}
.ws75{word-spacing:-0.400000pt;}
.ws21{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.280000pt;}
.ws8a{word-spacing:-0.240000pt;}
.ws17{word-spacing:-0.202667pt;}
.ws5e{word-spacing:-0.152000pt;}
.ws28{word-spacing:-0.058667pt;}
.ws54{word-spacing:-0.042667pt;}
.ws70{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.080000pt;}
.ws86{word-spacing:0.120000pt;}
.ws73{word-spacing:0.160000pt;}
.ws79{word-spacing:0.240000pt;}
.ws2e{word-spacing:0.304000pt;}
.ws74{word-spacing:0.440000pt;}
.ws5d{word-spacing:0.506667pt;}
.ws80{word-spacing:0.520000pt;}
.ws38{word-spacing:0.557333pt;}
.ws90{word-spacing:0.560000pt;}
.ws82{word-spacing:0.720000pt;}
.ws18{word-spacing:0.760000pt;}
.ws36{word-spacing:0.861333pt;}
.ws4d{word-spacing:1.013333pt;}
.ws7d{word-spacing:1.240000pt;}
.ws3b{word-spacing:1.266667pt;}
.ws3d{word-spacing:1.418667pt;}
.ws1a{word-spacing:1.570667pt;}
.ws8d{word-spacing:1.600000pt;}
.wse{word-spacing:1.621333pt;}
.ws4e{word-spacing:1.672000pt;}
.ws1e{word-spacing:1.680000pt;}
.ws16{word-spacing:1.925333pt;}
.ws30{word-spacing:1.976000pt;}
.ws8e{word-spacing:2.200000pt;}
.ws43{word-spacing:2.330667pt;}
.ws92{word-spacing:2.360000pt;}
.wsd{word-spacing:2.432000pt;}
.ws59{word-spacing:2.736000pt;}
.ws2f{word-spacing:2.938667pt;}
.ws85{word-spacing:3.240000pt;}
.ws8f{word-spacing:3.320000pt;}
.ws19{word-spacing:3.344000pt;}
.ws13{word-spacing:3.394667pt;}
.ws11{word-spacing:3.546667pt;}
.ws7e{word-spacing:3.600000pt;}
.ws67{word-spacing:4.002667pt;}
.ws57{word-spacing:4.104000pt;}
.ws5b{word-spacing:4.458667pt;}
.ws3c{word-spacing:4.509333pt;}
.ws3f{word-spacing:4.560000pt;}
.ws4c{word-spacing:4.661333pt;}
.ws5f{word-spacing:4.762667pt;}
.ws87{word-spacing:4.800000pt;}
.ws42{word-spacing:4.914667pt;}
.ws14{word-spacing:5.117333pt;}
.ws32{word-spacing:5.168000pt;}
.ws1f{word-spacing:5.189333pt;}
.ws89{word-spacing:5.240000pt;}
.ws1b{word-spacing:5.248000pt;}
.ws76{word-spacing:5.520000pt;}
.ws40{word-spacing:5.522667pt;}
.ws6f{word-spacing:5.560000pt;}
.wsf{word-spacing:5.624000pt;}
.ws69{word-spacing:5.928000pt;}
.ws45{word-spacing:6.029333pt;}
.ws49{word-spacing:6.333333pt;}
.ws3e{word-spacing:6.384000pt;}
.ws33{word-spacing:6.536000pt;}
.ws34{word-spacing:6.840000pt;}
.ws31{word-spacing:6.890667pt;}
.wsb{word-spacing:6.941333pt;}
.ws15{word-spacing:7.042667pt;}
.ws10{word-spacing:7.296000pt;}
.ws46{word-spacing:8.258667pt;}
.ws47{word-spacing:8.714667pt;}
.ws64{word-spacing:313.198400pt;}
.ws66{word-spacing:323.865067pt;}
.ws63{word-spacing:328.594133pt;}
.ws65{word-spacing:345.198400pt;}
.ws2c{word-spacing:1685.205333pt;}
._5f{margin-left:-9.185867pt;}
._7{margin-left:-7.797333pt;}
._9{margin-left:-6.591733pt;}
._8{margin-left:-5.314933pt;}
._2{margin-left:-4.402933pt;}
._3{margin-left:-2.806933pt;}
._1{margin-left:-1.386667pt;}
._4{width:1.073600pt;}
._63{width:2.146400pt;}
._5{width:3.784800pt;}
._66{width:4.963200pt;}
._64{width:6.102933pt;}
._6{width:7.385067pt;}
._6a{width:8.309867pt;}
._6c{width:9.401067pt;}
._6b{width:24.880000pt;}
._69{width:27.600000pt;}
._68{width:29.680000pt;}
._4b{width:43.688000pt;}
._65{width:45.333333pt;}
._62{width:51.000000pt;}
._61{width:52.120000pt;}
._60{width:53.560000pt;}
._67{width:54.920000pt;}
._4c{width:92.366933pt;}
._4d{width:102.866667pt;}
._3b{width:108.453867pt;}
._e{width:110.438400pt;}
._2c{width:115.771733pt;}
._11{width:126.438400pt;}
._46{width:128.017600pt;}
._4e{width:129.700267pt;}
._51{width:132.965867pt;}
._33{width:133.925867pt;}
._14{width:137.105067pt;}
._1d{width:138.131200pt;}
._3a{width:147.771733pt;}
._36{width:155.259200pt;}
._29{width:158.438400pt;}
._25{width:161.232533pt;}
._d{width:166.158400pt;}
._2a{width:168.272533pt;}
._44{width:169.204267pt;}
._52{width:170.162133pt;}
._41{width:171.176533pt;}
._45{width:172.366933pt;}
._2e{width:173.563733pt;}
._30{width:174.715733pt;}
._10{width:176.229867pt;}
._49{width:181.563200pt;}
._5e{width:186.341867pt;}
._13{width:187.491733pt;}
._56{width:192.229867pt;}
._15{width:197.923733pt;}
._18{width:199.717867pt;}
._21{width:202.299200pt;}
._19{width:208.229867pt;}
._5c{width:209.382400pt;}
._57{width:213.563200pt;}
._58{width:217.744533pt;}
._50{width:218.896533pt;}
._2b{width:224.229867pt;}
._28{width:229.563200pt;}
._39{width:234.064533pt;}
._59{width:236.688533pt;}
._4f{width:238.480533pt;}
._20{width:240.229867pt;}
._17{width:243.536533pt;}
._38{width:245.563200pt;}
._16{width:250.619200pt;}
._5a{width:251.771200pt;}
._1b{width:253.008533pt;}
._48{width:259.771200pt;}
._22{width:262.437867pt;}
._5b{width:264.549867pt;}
._12{width:272.786667pt;}
._c{width:276.029333pt;}
._55{width:277.605867pt;}
._4a{width:280.507200pt;}
._1a{width:285.051200pt;}
._b{width:290.270400pt;}
._f{width:296.912533pt;}
._23{width:299.216533pt;}
._3d{width:308.937067pt;}
._72{width:311.470400pt;}
._37{width:322.896533pt;}
._70{width:324.441067pt;}
._43{width:326.066133pt;}
._3c{width:327.675200pt;}
._42{width:333.627200pt;}
._73{width:334.531733pt;}
._2d{width:340.133867pt;}
._53{width:342.715200pt;}
._71{width:355.865067pt;}
._24{width:379.813867pt;}
._27{width:384.549867pt;}
._47{width:395.493867pt;}
._35{width:412.965867pt;}
._34{width:415.312533pt;}
._26{width:418.939200pt;}
._54{width:431.632533pt;}
._3f{width:434.533867pt;}
._40{width:438.117867pt;}
._3e{width:445.840533pt;}
._5d{width:468.965867pt;}
._32{width:483.707200pt;}
._74{width:496.302400pt;}
._1e{width:500.688533pt;}
._31{width:507.771200pt;}
._1f{width:518.480533pt;}
._1c{width:525.563200pt;}
._2f{width:534.437867pt;}
._6d{width:566.873067pt;}
._75{width:623.150400pt;}
._6f{width:625.497067pt;}
._6e{width:627.886400pt;}
._0{width:1360.564267pt;}
._a{width:1696.099200pt;}
.fse{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs2{font-size:29.538667pt;}
.fs7{font-size:31.093333pt;}
.fsc{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:54.069067pt;}
.yaf{bottom:81.440133pt;}
.ya4{bottom:81.440267pt;}
.y71{bottom:81.637733pt;}
.y30{bottom:87.971067pt;}
.y191{bottom:93.567600pt;}
.y148{bottom:93.684933pt;}
.y3c{bottom:94.703733pt;}
.ya3{bottom:96.863467pt;}
.yc1{bottom:97.099733pt;}
.y70{bottom:97.119733pt;}
.yae{bottom:97.196267pt;}
.y2f{bottom:100.771067pt;}
.y190{bottom:105.694933pt;}
.y147{bottom:105.929867pt;}
.y3b{bottom:111.238667pt;}
.ya2{bottom:112.286800pt;}
.y6f{bottom:112.601733pt;}
.yad{bottom:112.952267pt;}
.y2e{bottom:113.571067pt;}
.y18f{bottom:117.822267pt;}
.y146{bottom:118.174800pt;}
.y2d{bottom:126.371067pt;}
.ya1{bottom:127.710133pt;}
.yc0{bottom:128.092667pt;}
.y18e{bottom:129.949600pt;}
.y145{bottom:130.419733pt;}
.y18d{bottom:142.076933pt;}
.y144{bottom:142.664533pt;}
.ya0{bottom:143.133467pt;}
.y6e{bottom:143.417067pt;}
.ybf{bottom:143.752267pt;}
.yac{bottom:144.041733pt;}
.y3a{bottom:147.296267pt;}
.y18c{bottom:154.204400pt;}
.y143{bottom:154.909467pt;}
.y36{bottom:157.764800pt;}
.y9f{bottom:158.556667pt;}
.y6d{bottom:158.899067pt;}
.ybe{bottom:159.411867pt;}
.yab{bottom:159.797867pt;}
.y39{bottom:163.829600pt;}
.y18b{bottom:166.331733pt;}
.y142{bottom:167.154400pt;}
.y38{bottom:173.286000pt;}
.y9e{bottom:173.980000pt;}
.y6c{bottom:174.381067pt;}
.ybd{bottom:175.071333pt;}
.yaa{bottom:175.554000pt;}
.y35{bottom:175.812133pt;}
.y18a{bottom:178.459067pt;}
.y141{bottom:179.399333pt;}
.y34{bottom:187.812133pt;}
.y37{bottom:187.828133pt;}
.y9d{bottom:189.403333pt;}
.y189{bottom:190.586400pt;}
.ybc{bottom:190.730933pt;}
.ya9{bottom:191.310000pt;}
.y140{bottom:191.644267pt;}
.y33{bottom:199.812133pt;}
.y188{bottom:202.713733pt;}
.y13f{bottom:203.889067pt;}
.y9c{bottom:204.826667pt;}
.y6b{bottom:205.196400pt;}
.ybb{bottom:206.390533pt;}
.ya8{bottom:207.066133pt;}
.y32{bottom:211.812133pt;}
.y187{bottom:214.841200pt;}
.y13e{bottom:216.134000pt;}
.y9b{bottom:220.249867pt;}
.y6a{bottom:220.678400pt;}
.yba{bottom:222.050133pt;}
.y13{bottom:222.690400pt;}
.ya7{bottom:222.822267pt;}
.y31{bottom:223.812133pt;}
.y186{bottom:226.968533pt;}
.y13d{bottom:228.378800pt;}
.y9a{bottom:235.673200pt;}
.yb9{bottom:237.709733pt;}
.y12{bottom:237.890400pt;}
.ya6{bottom:238.578267pt;}
.y185{bottom:239.095867pt;}
.y13c{bottom:240.623733pt;}
.y99{bottom:251.096533pt;}
.y184{bottom:251.223200pt;}
.y69{bottom:251.493733pt;}
.y11{bottom:253.090400pt;}
.yb8{bottom:253.369333pt;}
.y9{bottom:253.963200pt;}
.ya5{bottom:254.334400pt;}
.y183{bottom:263.350533pt;}
.y68{bottom:266.975733pt;}
.y13b{bottom:268.202000pt;}
.y10{bottom:268.290400pt;}
.yb7{bottom:269.028933pt;}
.y8{bottom:269.163200pt;}
.y182{bottom:275.478000pt;}
.y98{bottom:281.853200pt;}
.y67{bottom:282.457733pt;}
.yf{bottom:283.490400pt;}
.y7{bottom:284.363200pt;}
.yb6{bottom:284.688400pt;}
.yf6{bottom:285.514933pt;}
.y181{bottom:287.605333pt;}
.y97{bottom:297.276533pt;}
.y66{bottom:297.939733pt;}
.yf5{bottom:298.314933pt;}
.ye{bottom:298.690400pt;}
.y180{bottom:299.732667pt;}
.yb5{bottom:300.348000pt;}
.y13a{bottom:301.380267pt;}
.yf4{bottom:311.114933pt;}
.y17f{bottom:311.860133pt;}
.y96{bottom:312.699733pt;}
.y65{bottom:313.421733pt;}
.yd{bottom:313.890400pt;}
.y6{bottom:314.896533pt;}
.yb4{bottom:316.007600pt;}
.y139{bottom:316.825067pt;}
.yf3{bottom:323.914933pt;}
.y17e{bottom:323.987467pt;}
.y95{bottom:328.123067pt;}
.y64{bottom:328.903733pt;}
.yc{bottom:329.090400pt;}
.y5{bottom:330.096533pt;}
.yb3{bottom:331.667200pt;}
.y17d{bottom:336.114800pt;}
.yf2{bottom:336.714933pt;}
.y94{bottom:343.546400pt;}
.yb{bottom:344.290400pt;}
.y63{bottom:344.385600pt;}
.y4{bottom:345.296533pt;}
.yb2{bottom:347.326800pt;}
.y138{bottom:347.603333pt;}
.y17c{bottom:348.242133pt;}
.yf1{bottom:354.685733pt;}
.y62{bottom:359.867600pt;}
.y17b{bottom:360.369600pt;}
.y3{bottom:360.496533pt;}
.yb1{bottom:362.986267pt;}
.y137{bottom:363.048267pt;}
.yf0{bottom:367.485733pt;}
.y17a{bottom:372.496933pt;}
.y93{bottom:374.303067pt;}
.ya{bottom:374.823733pt;}
.y61{bottom:375.349600pt;}
.y2{bottom:375.696533pt;}
.yb0{bottom:378.645867pt;}
.yef{bottom:380.348133pt;}
.y179{bottom:384.624267pt;}
.y60{bottom:390.831600pt;}
.yee{bottom:393.148133pt;}
.y136{bottom:393.826533pt;}
.y178{bottom:396.751600pt;}
.yed{bottom:405.944000pt;}
.y5f{bottom:406.313600pt;}
.y92{bottom:407.459600pt;}
.y135{bottom:407.938133pt;}
.y177{bottom:408.878933pt;}
.y120{bottom:412.269467pt;}
.yec{bottom:418.739867pt;}
.y176{bottom:421.006400pt;}
.y5e{bottom:421.795600pt;}
.y134{bottom:422.049600pt;}
.y91{bottom:422.882933pt;}
.y2c{bottom:423.065333pt;}
.y11f{bottom:425.069467pt;}
.yeb{bottom:431.535733pt;}
.y175{bottom:433.133733pt;}
.y2b{bottom:435.865333pt;}
.y5d{bottom:437.277600pt;}
.y11e{bottom:437.869467pt;}
.y90{bottom:438.306267pt;}
.yea{bottom:444.331600pt;}
.y174{bottom:445.261067pt;}
.y11d{bottom:450.669467pt;}
.y5c{bottom:452.759600pt;}
.y133{bottom:452.827867pt;}
.ye9{bottom:457.127333pt;}
.y173{bottom:457.388533pt;}
.y5b{bottom:468.241600pt;}
.y132{bottom:468.272800pt;}
.y11c{bottom:468.640400pt;}
.y8f{bottom:469.062933pt;}
.y172{bottom:469.515867pt;}
.ye8{bottom:469.923200pt;}
.y20{bottom:471.835867pt;}
.y11b{bottom:481.502800pt;}
.y171{bottom:481.643200pt;}
.ye7{bottom:482.719067pt;}
.y131{bottom:483.717600pt;}
.y5a{bottom:483.723600pt;}
.y8e{bottom:484.486267pt;}
.y170{bottom:493.770533pt;}
.y11a{bottom:494.298667pt;}
.ye6{bottom:495.514933pt;}
.y59{bottom:499.205600pt;}
.y8d{bottom:499.909467pt;}
.y16f{bottom:505.897867pt;}
.y1f{bottom:506.702533pt;}
.y119{bottom:507.094533pt;}
.ye5{bottom:508.310667pt;}
.y130{bottom:514.495867pt;}
.y58{bottom:514.687600pt;}
.y8c{bottom:515.332800pt;}
.y16e{bottom:518.025333pt;}
.y118{bottom:519.890400pt;}
.ye4{bottom:521.106533pt;}
.y1e{bottom:521.902533pt;}
.y16d{bottom:530.152667pt;}
.y57{bottom:530.169600pt;}
.y8b{bottom:530.756133pt;}
.y117{bottom:532.686133pt;}
.ye3{bottom:533.902400pt;}
.y1d{bottom:537.102533pt;}
.y16c{bottom:542.280000pt;}
.y116{bottom:545.482000pt;}
.y56{bottom:545.651600pt;}
.y8a{bottom:546.179467pt;}
.ye2{bottom:546.698267pt;}
.y12f{bottom:547.674133pt;}
.y1c{bottom:552.302533pt;}
.y16b{bottom:554.407333pt;}
.y115{bottom:558.277867pt;}
.ye1{bottom:559.494000pt;}
.y55{bottom:561.133600pt;}
.y89{bottom:561.602667pt;}
.y12e{bottom:563.118933pt;}
.y16a{bottom:566.534800pt;}
.y1b{bottom:567.502667pt;}
.y114{bottom:571.073733pt;}
.ye0{bottom:572.289867pt;}
.y88{bottom:577.026000pt;}
.y12d{bottom:578.563867pt;}
.y169{bottom:578.662133pt;}
.y1a{bottom:582.702533pt;}
.y113{bottom:584.264933pt;}
.ydf{bottom:585.085733pt;}
.y168{bottom:590.789467pt;}
.y54{bottom:591.948933pt;}
.y87{bottom:592.449333pt;}
.y12c{bottom:594.008800pt;}
.y112{bottom:597.060667pt;}
.yde{bottom:597.881600pt;}
.y19{bottom:597.902533pt;}
.y167{bottom:602.916800pt;}
.y53{bottom:607.430933pt;}
.y86{bottom:607.872533pt;}
.y12b{bottom:609.453733pt;}
.y111{bottom:609.856533pt;}
.ydd{bottom:610.677333pt;}
.y18{bottom:613.102533pt;}
.y166{bottom:615.044133pt;}
.y110{bottom:622.652400pt;}
.y52{bottom:622.912933pt;}
.y85{bottom:623.295867pt;}
.ydc{bottom:623.477333pt;}
.y12a{bottom:624.898667pt;}
.y165{bottom:627.171600pt;}
.y17{bottom:628.302667pt;}
.y10f{bottom:635.448267pt;}
.ydb{bottom:636.273200pt;}
.y51{bottom:638.394800pt;}
.y84{bottom:638.719200pt;}
.y164{bottom:639.298933pt;}
.y16{bottom:643.502667pt;}
.y10e{bottom:648.244000pt;}
.yda{bottom:649.069067pt;}
.y163{bottom:651.426267pt;}
.y50{bottom:653.876933pt;}
.y83{bottom:654.142533pt;}
.y129{bottom:655.676800pt;}
.y15{bottom:658.702533pt;}
.y10d{bottom:661.050267pt;}
.yd9{bottom:661.864933pt;}
.y162{bottom:663.553733pt;}
.y4f{bottom:669.358800pt;}
.y128{bottom:671.121733pt;}
.y10c{bottom:673.846133pt;}
.yd8{bottom:674.660667pt;}
.y161{bottom:675.681067pt;}
.y4e{bottom:684.840800pt;}
.y82{bottom:684.899067pt;}
.y127{bottom:686.566667pt;}
.y10b{bottom:686.641867pt;}
.yd7{bottom:687.456533pt;}
.y160{bottom:687.808400pt;}
.y2a{bottom:691.600800pt;}
.y10a{bottom:699.437867pt;}
.y15f{bottom:699.935733pt;}
.yd6{bottom:700.252400pt;}
.y4d{bottom:700.322800pt;}
.y126{bottom:702.011600pt;}
.y15e{bottom:712.063200pt;}
.y109{bottom:712.233600pt;}
.yd5{bottom:713.048133pt;}
.y4c{bottom:715.804800pt;}
.y125{bottom:717.456400pt;}
.y81{bottom:718.055600pt;}
.y15d{bottom:724.190533pt;}
.y108{bottom:725.029467pt;}
.yd4{bottom:725.844133pt;}
.y4b{bottom:731.286800pt;}
.y124{bottom:732.901333pt;}
.y80{bottom:733.479067pt;}
.y15c{bottom:736.317867pt;}
.y29{bottom:737.257467pt;}
.y107{bottom:737.825333pt;}
.yd3{bottom:738.639867pt;}
.y4a{bottom:746.768800pt;}
.y123{bottom:748.346133pt;}
.y15b{bottom:748.445200pt;}
.y7f{bottom:748.902267pt;}
.y106{bottom:750.621067pt;}
.yd2{bottom:751.435733pt;}
.y28{bottom:755.653467pt;}
.y15a{bottom:760.572533pt;}
.y49{bottom:762.250800pt;}
.y105{bottom:763.416933pt;}
.y122{bottom:763.791067pt;}
.yd1{bottom:764.231467pt;}
.y7e{bottom:764.325600pt;}
.y27{bottom:766.057467pt;}
.y159{bottom:772.700000pt;}
.y104{bottom:776.212800pt;}
.yd0{bottom:777.027333pt;}
.y48{bottom:777.732800pt;}
.y121{bottom:779.236000pt;}
.y7d{bottom:779.748800pt;}
.y26{bottom:784.453467pt;}
.y158{bottom:784.827333pt;}
.y103{bottom:789.019067pt;}
.ycf{bottom:789.823200pt;}
.y47{bottom:793.214800pt;}
.y25{bottom:794.857467pt;}
.y7c{bottom:795.172267pt;}
.y157{bottom:796.954667pt;}
.y102{bottom:801.814800pt;}
.yce{bottom:802.619067pt;}
.y46{bottom:808.696800pt;}
.y156{bottom:809.082000pt;}
.y7b{bottom:810.595467pt;}
.y19d{bottom:812.859733pt;}
.y101{bottom:814.610667pt;}
.ycd{bottom:815.414933pt;}
.y24{bottom:816.816533pt;}
.y155{bottom:821.209333pt;}
.y19c{bottom:825.659733pt;}
.y7a{bottom:826.018800pt;}
.y100{bottom:827.406533pt;}
.ycc{bottom:828.210667pt;}
.y23{bottom:832.816533pt;}
.y154{bottom:833.336800pt;}
.y19b{bottom:838.459733pt;}
.y45{bottom:839.512133pt;}
.yff{bottom:840.202400pt;}
.ycb{bottom:841.006533pt;}
.y79{bottom:841.442000pt;}
.y153{bottom:845.464133pt;}
.y19a{bottom:851.259733pt;}
.yfe{bottom:852.998267pt;}
.yca{bottom:853.802400pt;}
.y44{bottom:854.994133pt;}
.y78{bottom:856.865333pt;}
.y152{bottom:857.591467pt;}
.yfd{bottom:865.794000pt;}
.yc9{bottom:866.598267pt;}
.y199{bottom:869.230533pt;}
.y151{bottom:869.718933pt;}
.y43{bottom:870.476133pt;}
.y77{bottom:872.288667pt;}
.yfc{bottom:878.589867pt;}
.yc8{bottom:879.394000pt;}
.y22{bottom:879.934667pt;}
.y150{bottom:881.846267pt;}
.y198{bottom:882.093067pt;}
.y42{bottom:885.958133pt;}
.y76{bottom:887.712000pt;}
.yfb{bottom:891.385733pt;}
.yc7{bottom:892.189867pt;}
.y14f{bottom:893.973600pt;}
.y197{bottom:894.888933pt;}
.y41{bottom:901.440133pt;}
.y75{bottom:903.135200pt;}
.yc6{bottom:904.985733pt;}
.y14e{bottom:906.100933pt;}
.y1a3{bottom:906.836800pt;}
.y196{bottom:907.684667pt;}
.yfa{bottom:908.314933pt;}
.y21{bottom:910.334667pt;}
.y40{bottom:916.922133pt;}
.y14d{bottom:918.228400pt;}
.y1a2{bottom:918.836800pt;}
.y195{bottom:920.480533pt;}
.yf9{bottom:921.114933pt;}
.yc5{bottom:921.914933pt;}
.y14c{bottom:930.355733pt;}
.y1a1{bottom:930.836800pt;}
.y3f{bottom:932.404000pt;}
.y194{bottom:933.276400pt;}
.y74{bottom:933.891867pt;}
.yc4{bottom:934.714800pt;}
.yf8{bottom:936.605467pt;}
.y14b{bottom:942.483067pt;}
.y1a0{bottom:942.836800pt;}
.y73{bottom:949.315200pt;}
.yc3{bottom:950.205467pt;}
.y193{bottom:950.205600pt;}
.yf7{bottom:952.096133pt;}
.y14a{bottom:954.610400pt;}
.y19f{bottom:954.836800pt;}
.y3e{bottom:963.219467pt;}
.y72{bottom:964.738533pt;}
.yc2{bottom:965.696133pt;}
.y192{bottom:965.696267pt;}
.y149{bottom:966.737733pt;}
.y19e{bottom:966.836800pt;}
.y14{bottom:974.844133pt;}
.y3d{bottom:994.439067pt;}
.ha{height:19.197024pt;}
.h11{height:25.238281pt;}
.h12{height:27.179688pt;}
.hf{height:27.216146pt;}
.h16{height:28.916667pt;}
.h17{height:29.645833pt;}
.h1c{height:29.904297pt;}
.h1b{height:30.000000pt;}
.h1d{height:30.019531pt;}
.h18{height:30.083333pt;}
.h13{height:30.250000pt;}
.h10{height:31.062500pt;}
.he{height:31.104167pt;}
.h1{height:32.604167pt;}
.hb{height:32.928000pt;}
.h19{height:33.911458pt;}
.h15{height:34.664062pt;}
.h9{height:35.181024pt;}
.h1a{height:36.985677pt;}
.h14{height:37.307292pt;}
.h6{height:37.356771pt;}
.h3{height:37.901042pt;}
.h2{height:38.968307pt;}
.h8{height:41.049635pt;}
.h4{height:41.364583pt;}
.hc{height:45.125000pt;}
.hd{height:50.770833pt;}
.h5{height:58.984375pt;}
.h7{height:76.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.850667pt;}
.x3{left:78.519200pt;}
.xe{left:79.848800pt;}
.x6{left:96.052000pt;}
.x5{left:169.856667pt;}
.xa{left:194.150933pt;}
.x10{left:212.124933pt;}
.xf{left:217.458267pt;}
.xb{left:221.158667pt;}
.x7{left:226.299200pt;}
.x8{left:242.586000pt;}
.x9{left:248.143067pt;}
.xc{left:283.505200pt;}
.xd{left:309.653600pt;}
.x2{left:420.000000pt;}
.x4{left:425.133333pt;}
.x16{left:428.000000pt;}
.x17{left:444.000000pt;}
.x13{left:536.419333pt;}
.x12{left:549.859467pt;}
.x11{left:584.961067pt;}
.x15{left:622.247467pt;}
.x14{left:635.575600pt;}
}




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