
    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_0009129b91234dd427e93135.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_f52d85165f128f79fd73b696.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_78c32b6f98c22f51c0751d48.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.711000;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_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.955000;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_7e98cdfa1591ddbe0eea98ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.719000;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_b0c4b860a69600ee0d5ac872.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_afd99dfd231eff98cbecd0fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.190000;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_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ec922190bf6562968cf22e37.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_52a9de59a7e254e98cab9622.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e88281c950d096b1e1026c68.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.194000;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_cdb600e673e4b847f241a79e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_075dea137e17634847240ffb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.013000;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_942df97241aabd3130497cf5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.194000;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_78c32b6f98c22f51c0751d48.woff2')format("woff");}.fff{font-family:fff;line-height:0.711000;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_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955000;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_afd99dfd231eff98cbecd0fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.190000;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_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ec922190bf6562968cf22e37.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e88281c950d096b1e1026c68.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.194000;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_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.951000;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_942df97241aabd3130497cf5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.194000;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_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.955000;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_d61334b44392aed73d692c91.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ec922190bf6562968cf22e37.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.194000;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_e88281c950d096b1e1026c68.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.194000;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_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.955000;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_d61334b44392aed73d692c91.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ec922190bf6562968cf22e37.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.194000;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_e88281c950d096b1e1026c68.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.194000;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_924e7d1b27fba77637659a4f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.935279;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_c2baf2210ef56b1af6715971.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.937000;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:ff23;src:url('chunks/assets/font_4f0c2b382928c05371b43009.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.928000;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:ff24;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.955000;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:ff25;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.951000;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:ff26;src:url('chunks/assets/font_3bccad5f5c3a41d0b8758860.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.194000;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:ff28;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.955000;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:ff29;src:url('chunks/assets/font_3bccad5f5c3a41d0b8758860.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.194000;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:ff2b;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.951000;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:ff2c;src:url('chunks/assets/font_e88281c950d096b1e1026c68.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.194000;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:ff2d;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.955000;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:ff2e;src:url('chunks/assets/font_3bccad5f5c3a41d0b8758860.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.194000;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:ff30;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.951000;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:ff31;src:url('chunks/assets/font_e88281c950d096b1e1026c68.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.194000;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:ff32;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.955000;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:ff33;src:url('chunks/assets/font_3bccad5f5c3a41d0b8758860.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.194000;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:ff35;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.951000;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:ff36;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.955000;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:ff37;src:url('chunks/assets/font_3bccad5f5c3a41d0b8758860.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.194000;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:ff39;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.951000;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:ff3a;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.955000;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:ff3b;src:url('chunks/assets/font_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.194000;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:ff3d;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.951000;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:ff3e;src:url('chunks/assets/font_75950f4a02e0ba56ed8206fd.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.955000;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:ff3f;src:url('chunks/assets/font_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.194000;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:ff41;src:url('chunks/assets/font_cdb600e673e4b847f241a79e.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.951000;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:ff42;src:url('chunks/assets/font_e6614c407deed1db84e3c537.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.955000;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:ff43;src:url('chunks/assets/font_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.194000;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:ff45;src:url('chunks/assets/font_09e14950cdf6bca0d15915c3.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.951000;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:ff46;src:url('chunks/assets/font_9b493aa0b0af79bf97b26f3a.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.943000;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:ff47;src:url('chunks/assets/font_e6614c407deed1db84e3c537.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.955000;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:ff48;src:url('chunks/assets/font_34e1af3a3b84d2c438739e15.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_942df97241aabd3130497cf5.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.194000;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:ff4a;src:url('chunks/assets/font_09e14950cdf6bca0d15915c3.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.951000;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:ff4b;src:url('chunks/assets/font_9b493aa0b0af79bf97b26f3a.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.943000;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;}
.m2{transform:matrix(0.224046,0.000000,-0.043423,0.246200,0,0);-ms-transform:matrix(0.224046,0.000000,-0.043423,0.246200,0,0);-webkit-transform:matrix(0.224046,0.000000,-0.043423,0.246200,0,0);}
.m1{transform:matrix(0.227486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227486,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242513,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);}
.v2{vertical-align:-1.127992px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:31.358175px;}
.v1{vertical-align:90.239352px;}
.ls3{letter-spacing:-6.735723px;}
.ls12{letter-spacing:-1.869244px;}
.lsa{letter-spacing:-1.630754px;}
.lsb{letter-spacing:-1.488949px;}
.lsc{letter-spacing:-1.469612px;}
.ls5{letter-spacing:-1.408378px;}
.ls15{letter-spacing:-1.224677px;}
.ls16{letter-spacing:-1.160220px;}
.ls9{letter-spacing:-1.082872px;}
.ls11{letter-spacing:-0.966850px;}
.lsf{letter-spacing:-0.902394px;}
.ls13{letter-spacing:-0.837937px;}
.ls8{letter-spacing:-0.709023px;}
.ls6{letter-spacing:-0.618784px;}
.ls17{letter-spacing:-0.515653px;}
.lse{letter-spacing:-0.386740px;}
.ls1{letter-spacing:-0.354537px;}
.ls7{letter-spacing:-0.232044px;}
.ls2{letter-spacing:-0.212707px;}
.lsd{letter-spacing:-0.193370px;}
.ls4{letter-spacing:-0.183702px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.064457px;}
.ls10{letter-spacing:0.193370px;}
.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;}
}
.ws2{word-spacing:-194.343336px;}
.wse{word-spacing:-103.130688px;}
.ws1{word-spacing:-71.993485px;}
.ws3{word-spacing:-70.902348px;}
.ws4{word-spacing:-70.689641px;}
.ws11{word-spacing:-70.193325px;}
.ws12{word-spacing:-69.271594px;}
.wsc{word-spacing:-61.233846px;}
.ws9{word-spacing:-61.050144px;}
.wsd{word-spacing:-59.825468px;}
.wsf{word-spacing:-54.788178px;}
.ws0{word-spacing:-45.119676px;}
.ws6{word-spacing:-17.725587px;}
.ws7{word-spacing:-17.512880px;}
.ws8{word-spacing:-16.011039px;}
.ws15{word-spacing:-13.471446px;}
.ws18{word-spacing:-12.440139px;}
.ws16{word-spacing:-11.537746px;}
.ws17{word-spacing:-10.893179px;}
.ws5{word-spacing:-0.070902px;}
.ws14{word-spacing:-0.064457px;}
.wsa{word-spacing:-0.061234px;}
.ws10{word-spacing:-0.054788px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:1.392264px;}
._6{margin-left:-8.856348px;}
._5{margin-left:-7.064452px;}
._2{margin-left:-5.594840px;}
._3{margin-left:-3.802944px;}
._7{margin-left:-2.475137px;}
._0{margin-left:-1.353590px;}
._8{width:1.224677px;}
._1{width:2.255984px;}
._b{width:4.995393px;}
._4{width:6.523016px;}
._a{width:3768.524253px;}
._9{width:3769.748930px;}
.fc2{color:rgb(149,55,61);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:45.119676px;}
.fsb{font-size:54.788178px;}
.fs6{font-size:61.233846px;}
.fsc{font-size:64.456680px;}
.fs4{font-size:70.902348px;}
.fs1{font-size:70.907376px;}
.fs2{font-size:71.993485px;}
.fs8{font-size:77.344793px;}
.fs5{font-size:77.348016px;}
.fsa{font-size:103.125854px;}
.fs9{font-size:103.130688px;}
.fs7{font-size:161.141700px;}
.fs3{font-size:194.343336px;}
.y0{bottom:0.000000px;}
.y20d{bottom:23.645933px;}
.yeb{bottom:29.830552px;}
.y2{bottom:37.668484px;}
.y5{bottom:37.950482px;}
.ya1{bottom:55.289329px;}
.yea{bottom:68.512617px;}
.y1d{bottom:68.514228px;}
.y10f{bottom:68.515839px;}
.y8c{bottom:68.517451px;}
.y184{bottom:68.519062px;}
.y94{bottom:68.838123px;}
.y69{bottom:69.999954px;}
.y135{bottom:75.589960px;}
.y93{bottom:86.563710px;}
.y68{bottom:87.725541px;}
.y276{bottom:88.249252px;}
.y29f{bottom:88.265366px;}
.yc6{bottom:91.211036px;}
.y19c{bottom:91.230373px;}
.ye9{bottom:91.278716px;}
.y1c{bottom:91.302887px;}
.y158{bottom:91.370567px;}
.y10e{bottom:91.415686px;}
.y231{bottom:91.484977px;}
.y183{bottom:91.552657px;}
.y254{bottom:91.565548px;}
.y132{bottom:91.584885px;}
.y1bd{bottom:91.626782px;}
.y207{bottom:91.692850px;}
.y134{bottom:91.704130px;}
.y1d4{bottom:91.836266px;}
.y1f0{bottom:91.907169px;}
.y33{bottom:92.553347px;}
.ya2{bottom:92.650354px;}
.y8b{bottom:92.704820px;}
.y92{bottom:104.289297px;}
.y133{bottom:107.818300px;}
.y275{bottom:107.981053px;}
.y29e{bottom:108.014893px;}
.yc5{bottom:113.907845px;}
.y19b{bottom:113.943296px;}
.ye8{bottom:114.043204px;}
.y1b{bottom:114.091546px;}
.y157{bottom:114.225294px;}
.y10d{bottom:114.315533px;}
.y230{bottom:114.454115px;}
.y182{bottom:114.586251px;}
.y253{bottom:114.615257px;}
.y131{bottom:114.655542px;}
.y1bc{bottom:114.739336px;}
.y206{bottom:114.873084px;}
.y1d3{bottom:115.158304px;}
.y1ef{bottom:115.300109px;}
.y32{bottom:116.592466px;}
.y8a{bottom:116.892189px;}
.y274{bottom:127.712854px;}
.y29d{bottom:132.597059px;}
.yc4{bottom:136.604653px;}
.y19a{bottom:136.656219px;}
.ye7{bottom:136.809303px;}
.y1a{bottom:136.880206px;}
.y156{bottom:137.080021px;}
.y10c{bottom:137.215380px;}
.y22f{bottom:137.423253px;}
.y181{bottom:137.619846px;}
.y252{bottom:137.664966px;}
.y130{bottom:137.726200px;}
.y205{bottom:138.053317px;}
.y1d2{bottom:138.480343px;}
.y1ee{bottom:138.693050px;}
.y31{bottom:140.631584px;}
.y1bb{bottom:141.074724px;}
.y89{bottom:141.079558px;}
.y273{bottom:150.667489px;}
.y29c{bottom:152.346586px;}
.y1{bottom:153.900000px;}
.yc3{bottom:159.301462px;}
.y199{bottom:159.369141px;}
.ye6{bottom:159.575403px;}
.y19{bottom:159.668865px;}
.y155{bottom:159.934749px;}
.y10b{bottom:160.115227px;}
.y22e{bottom:160.392391px;}
.y180{bottom:160.653441px;}
.y251{bottom:160.714674px;}
.y12f{bottom:160.796857px;}
.y204{bottom:161.231939px;}
.y1d1{bottom:161.802381px;}
.y1ed{bottom:162.085990px;}
.y1ba{bottom:164.185667px;}
.y30{bottom:164.670703px;}
.y88{bottom:166.878345px;}
.y29b{bottom:172.094501px;}
.yc2{bottom:181.998270px;}
.y198{bottom:182.080452px;}
.y18{bottom:182.457524px;}
.y154{bottom:182.789476px;}
.y10a{bottom:183.015074px;}
.y22d{bottom:183.361529px;}
.y17f{bottom:183.687035px;}
.y250{bottom:183.764383px;}
.y12e{bottom:183.867514px;}
.y203{bottom:184.412173px;}
.y1d0{bottom:185.124419px;}
.y1ec{bottom:185.478931px;}
.ye5{bottom:187.174142px;}
.y1b9{bottom:187.298221px;}
.y2f{bottom:188.709822px;}
.y272{bottom:191.349323px;}
.y87{bottom:192.677131px;}
.y29a{bottom:193.455445px;}
.yc1{bottom:204.695079px;}
.y197{bottom:204.793375px;}
.y17{bottom:205.246183px;}
.y16c{bottom:205.644203px;}
.y109{bottom:205.913310px;}
.y22c{bottom:206.330667px;}
.y17e{bottom:206.722241px;}
.y12d{bottom:206.938171px;}
.y153{bottom:207.255620px;}
.y202{bottom:207.592406px;}
.y1cf{bottom:208.446457px;}
.y1eb{bottom:208.870260px;}
.ye4{bottom:209.938630px;}
.y24f{bottom:210.036926px;}
.y1b8{bottom:210.410775px;}
.y2e{bottom:212.748941px;}
.y299{bottom:213.203360px;}
.y271{bottom:214.303958px;}
.y86{bottom:216.862888px;}
.yc0{bottom:227.391887px;}
.y196{bottom:227.506298px;}
.y16{bottom:228.034843px;}
.y22b{bottom:229.299805px;}
.y17d{bottom:229.755836px;}
.y12c{bottom:230.007217px;}
.y152{bottom:230.110348px;}
.y108{bottom:230.424574px;}
.y201{bottom:230.771029px;}
.y1ce{bottom:231.768496px;}
.y1ea{bottom:232.263201px;}
.ye3{bottom:232.704729px;}
.y298{bottom:232.952887px;}
.y24e{bottom:233.086635px;}
.y1b7{bottom:233.521717px;}
.y2d{bottom:236.788060px;}
.y270{bottom:237.258593px;}
.y85{bottom:241.050258px;}
.y90{bottom:242.381288px;}
.ybf{bottom:250.088696px;}
.y195{bottom:250.219220px;}
.y15{bottom:250.823502px;}
.y22a{bottom:252.268943px;}
.y297{bottom:252.700803px;}
.y17c{bottom:252.791042px;}
.y151{bottom:252.965075px;}
.y107{bottom:253.324421px;}
.y200{bottom:253.951262px;}
.y1cd{bottom:255.092145px;}
.ye2{bottom:255.469217px;}
.y1e9{bottom:255.654530px;}
.y24d{bottom:256.136344px;}
.y12b{bottom:256.300708px;}
.y1b6{bottom:256.634271px;}
.y8f{bottom:260.106875px;}
.y26f{bottom:260.214840px;}
.y2c{bottom:260.827178px;}
.y84{bottom:265.237627px;}
.ya0{bottom:268.434034px;}
.ybe{bottom:272.783893px;}
.y14{bottom:273.610550px;}
.y296{bottom:274.061746px;}
.y229{bottom:275.238081px;}
.y150{bottom:275.819802px;}
.y17b{bottom:275.824636px;}
.y194{bottom:276.153366px;}
.y106{bottom:276.224268px;}
.y1ff{bottom:277.131496px;}
.y16b{bottom:277.431219px;}
.y8e{bottom:277.832462px;}
.ye1{bottom:278.235316px;}
.y1cc{bottom:278.414184px;}
.y1e8{bottom:279.047470px;}
.y24c{bottom:279.186052px;}
.y1b5{bottom:279.746825px;}
.y26e{bottom:283.169475px;}
.y2b{bottom:284.866297px;}
.y83{bottom:289.424996px;}
.y9f{bottom:292.605450px;}
.y12a{bottom:293.068410px;}
.y295{bottom:293.809662px;}
.ybd{bottom:295.480701px;}
.y8d{bottom:295.558049px;}
.y13{bottom:296.399209px;}
.y228{bottom:298.205607px;}
.y14f{bottom:298.674530px;}
.y17a{bottom:298.859842px;}
.y193{bottom:298.866288px;}
.y105{bottom:299.124115px;}
.y16a{bottom:300.285947px;}
.y1fe{bottom:300.310118px;}
.ye0{bottom:300.999804px;}
.y1cb{bottom:301.736222px;}
.y24b{bottom:302.235761px;}
.y1e7{bottom:302.440411px;}
.y1b4{bottom:302.857768px;}
.y26d{bottom:306.125722px;}
.y2a{bottom:308.905416px;}
.y294{bottom:313.557577px;}
.y82{bottom:313.612365px;}
.y4d{bottom:314.179584px;}
.y129{bottom:316.139067px;}
.ybc{bottom:318.177509px;}
.y227{bottom:321.174745px;}
.y14e{bottom:321.529257px;}
.y192{bottom:321.579211px;}
.y179{bottom:321.893437px;}
.y104{bottom:322.022350px;}
.y169{bottom:323.140674px;}
.ydf{bottom:323.765904px;}
.y1ca{bottom:325.058260px;}
.y24a{bottom:325.285470px;}
.y1e6{bottom:325.831740px;}
.y1b3{bottom:325.970322px;}
.y1fd{bottom:326.713185px;}
.y12{bottom:327.244953px;}
.y26c{bottom:329.080357px;}
.y29{bottom:332.944535px;}
.y293{bottom:334.918521px;}
.y67{bottom:336.438087px;}
.y81{bottom:337.799734px;}
.y4c{bottom:338.792367px;}
.y128{bottom:339.209724px;}
.y9e{bottom:339.335576px;}
.ybb{bottom:340.874318px;}
.y226{bottom:344.143883px;}
.y191{bottom:344.292133px;}
.y103{bottom:344.922197px;}
.y14d{bottom:345.995401px;}
.yde{bottom:346.530392px;}
.y249{bottom:348.335179px;}
.y1c9{bottom:348.380298px;}
.y1b2{bottom:349.082876px;}
.y1e5{bottom:349.224681px;}
.y178{bottom:349.762894px;}
.y1fc{bottom:349.893419px;}
.y11{bottom:350.033612px;}
.y26b{bottom:352.034992px;}
.y292{bottom:354.666436px;}
.y28{bottom:356.983654px;}
.y66{bottom:358.696590px;}
.y4b{bottom:361.793733px;}
.y80{bottom:361.987103px;}
.y127{bottom:362.280381px;}
.y9d{bottom:363.506992px;}
.yba{bottom:363.571126px;}
.y190{bottom:367.003445px;}
.y225{bottom:367.113021px;}
.y102{bottom:367.822044px;}
.y14c{bottom:368.850128px;}
.ydd{bottom:369.296491px;}
.y248{bottom:371.384887px;}
.y1c8{bottom:371.702337px;}
.y1b1{bottom:372.193819px;}
.y1e4{bottom:372.616010px;}
.y10{bottom:372.822271px;}
.y1fb{bottom:373.072041px;}
.y291{bottom:374.415963px;}
.y26a{bottom:376.602656px;}
.y65{bottom:380.955093px;}
.y27{bottom:382.634189px;}
.y4a{bottom:384.795100px;}
.y126{bottom:385.349427px;}
.y7f{bottom:386.174473px;}
.yb9{bottom:386.267935px;}
.y177{bottom:386.493533px;}
.y18f{bottom:389.716367px;}
.y224{bottom:390.082159px;}
.y14b{bottom:391.704856px;}
.ydc{bottom:392.060979px;}
.y101{bottom:392.333308px;}
.y290{bottom:394.163878px;}
.y247{bottom:394.434596px;}
.y1b0{bottom:395.306373px;}
.yf{bottom:395.610931px;}
.y1fa{bottom:396.252275px;}
.y1c7{bottom:396.635792px;}
.y9c{bottom:397.345782px;}
.y1e3{bottom:397.620368px;}
.y269{bottom:399.557291px;}
.y64{bottom:403.213596px;}
.y26{bottom:406.673308px;}
.y49{bottom:407.796466px;}
.y125{bottom:408.420084px;}
.yb8{bottom:408.964743px;}
.y176{bottom:409.528739px;}
.y7e{bottom:410.361842px;}
.y18e{bottom:412.429290px;}
.y223{bottom:413.051297px;}
.y28f{bottom:413.913405px;}
.y14a{bottom:414.559583px;}
.ydb{bottom:414.827078px;}
.y100{bottom:415.233155px;}
.y246{bottom:417.484305px;}
.ye{bottom:418.399590px;}
.y1f9{bottom:419.432508px;}
.y1c6{bottom:419.957830px;}
.y1e2{bottom:421.011697px;}
.y9b{bottom:421.517198px;}
.y268{bottom:422.513537px;}
.y1af{bottom:423.253178px;}
.y63{bottom:425.472099px;}
.y25{bottom:430.712427px;}
.y48{bottom:430.797832px;}
.y124{bottom:431.490742px;}
.yb7{bottom:431.659940px;}
.y175{bottom:432.562334px;}
.y18d{bottom:435.140601px;}
.y28e{bottom:435.272737px;}
.y222{bottom:436.020435px;}
.y149{bottom:437.414310px;}
.yda{bottom:437.591566px;}
.y7d{bottom:437.772045px;}
.yff{bottom:438.131391px;}
.y245{bottom:440.534014px;}
.yd{bottom:441.186638px;}
.y1f8{bottom:442.611130px;}
.y1e1{bottom:444.404637px;}
.y1c5{bottom:444.891285px;}
.y267{bottom:445.468173px;}
.y9a{bottom:445.688776px;}
.y1ae{bottom:446.364120px;}
.y62{bottom:447.728991px;}
.y47{bottom:453.799198px;}
.yb6{bottom:454.356749px;}
.y123{bottom:454.561399px;}
.y24{bottom:454.751546px;}
.y28d{bottom:455.022264px;}
.y174{bottom:455.597540px;}
.y18c{bottom:457.853524px;}
.y221{bottom:458.989573px;}
.y148{bottom:460.269038px;}
.yd9{bottom:460.357666px;}
.yfe{bottom:461.031238px;}
.y7c{bottom:461.556560px;}
.y244{bottom:463.582111px;}
.yc{bottom:463.975297px;}
.y1f7{bottom:465.791364px;}
.y1e0{bottom:467.797578px;}
.y1c4{bottom:468.214935px;}
.y266{bottom:468.422808px;}
.y1ad{bottom:469.476674px;}
.y61{bottom:469.987494px;}
.y28c{bottom:474.770179px;}
.y46{bottom:476.800565px;}
.yb5{bottom:477.053557px;}
.y122{bottom:477.632056px;}
.y173{bottom:478.631134px;}
.y23{bottom:478.790665px;}
.y99{bottom:479.527405px;}
.y18b{bottom:480.566446px;}
.y220{bottom:481.957099px;}
.yd8{bottom:483.122154px;}
.y147{bottom:483.123765px;}
.yfd{bottom:483.931085px;}
.y7b{bottom:485.341075px;}
.y243{bottom:486.631820px;}
.yb{bottom:486.763956px;}
.y1f6{bottom:488.971597px;}
.y1df{bottom:491.188907px;}
.y265{bottom:491.379054px;}
.y1c3{bottom:491.536973px;}
.y60{bottom:492.245997px;}
.y1ac{bottom:492.589228px;}
.y28b{bottom:494.519706px;}
.yb4{bottom:499.750366px;}
.y45{bottom:499.803542px;}
.y121{bottom:500.701102px;}
.y172{bottom:501.666340px;}
.y22{bottom:502.829784px;}
.y18a{bottom:503.279369px;}
.y98{bottom:503.698982px;}
.y21f{bottom:504.926237px;}
.yd7{bottom:505.888253px;}
.y146{bottom:505.978492px;}
.y91{bottom:506.664956px;}
.yfc{bottom:506.830932px;}
.y168{bottom:507.589909px;}
.ya{bottom:509.552615px;}
.y242{bottom:509.681529px;}
.y1f5{bottom:512.150219px;}
.y7a{bottom:513.959841px;}
.y264{bottom:514.333689px;}
.y5f{bottom:514.504500px;}
.y1de{bottom:514.581848px;}
.y1c2{bottom:514.859011px;}
.y1ab{bottom:515.700171px;}
.y28a{bottom:515.879038px;}
.yb3{bottom:522.447174px;}
.y44{bottom:522.804909px;}
.y120{bottom:523.771759px;}
.y171{bottom:524.699935px;}
.y189{bottom:525.990680px;}
.y21{bottom:526.868902px;}
.y97{bottom:527.870398px;}
.y21e{bottom:527.895375px;}
.yd6{bottom:528.652741px;}
.y145{bottom:528.833220px;}
.yfb{bottom:529.730779px;}
.y167{bottom:530.444637px;}
.y9{bottom:532.341274px;}
.y241{bottom:532.731237px;}
.y1f4{bottom:535.330453px;}
.y289{bottom:535.628565px;}
.y263{bottom:537.289936px;}
.y79{bottom:537.744356px;}
.y1dd{bottom:537.973177px;}
.y1c1{bottom:538.181050px;}
.y5e{bottom:538.374420px;}
.y1aa{bottom:538.812725px;}
.yb2{bottom:545.143983px;}
.y43{bottom:545.806275px;}
.y11f{bottom:546.842416px;}
.y170{bottom:547.735141px;}
.y188{bottom:548.703603px;}
.y20{bottom:550.908021px;}
.yd5{bottom:551.417229px;}
.y144{bottom:551.687947px;}
.y21d{bottom:552.475930px;}
.yfa{bottom:552.629014px;}
.y166{bottom:553.299364px;}
.y8{bottom:555.129934px;}
.y288{bottom:555.376480px;}
.y240{bottom:555.780946px;}
.y1f3{bottom:558.510687px;}
.y262{bottom:560.244571px;}
.y1dc{bottom:561.366117px;}
.y1c0{bottom:561.503088px;}
.y78{bottom:561.528871px;}
.y1a9{bottom:561.925279px;}
.y5d{bottom:562.244340px;}
.yb1{bottom:567.840791px;}
.y42{bottom:568.807641px;}
.y11e{bottom:569.913073px;}
.y16f{bottom:570.768736px;}
.y187{bottom:571.416525px;}
.yd4{bottom:574.183328px;}
.y143{bottom:574.542674px;}
.y287{bottom:575.126007px;}
.y21c{bottom:575.445068px;}
.yf9{bottom:575.528861px;}
.y165{bottom:576.154091px;}
.y1f{bottom:576.558557px;}
.y7{bottom:577.918593px;}
.y6{bottom:578.145803px;}
.y23f{bottom:578.830655px;}
.y5c{bottom:584.502843px;}
.y1db{bottom:584.759058px;}
.y261{bottom:584.810623px;}
.y1bf{bottom:584.825126px;}
.y1a8{bottom:585.036222px;}
.y77{bottom:585.313385px;}
.y1f2{bottom:586.523560px;}
.y41{bottom:591.809007px;}
.yb0{bottom:592.147405px;}
.y11d{bottom:592.983730px;}
.y16e{bottom:593.803942px;}
.y186{bottom:594.129448px;}
.y286{bottom:596.485340px;}
.yd3{bottom:596.947816px;}
.y142{bottom:597.397402px;}
.y21b{bottom:598.414206px;}
.yf8{bottom:598.428708px;}
.y164{bottom:599.008819px;}
.y1e{bottom:600.597676px;}
.y23e{bottom:601.880364px;}
.y5b{bottom:606.761346px;}
.y1f1{bottom:607.286668px;}
.y1be{bottom:608.147164px;}
.y1a7{bottom:608.148776px;}
.y1da{bottom:608.150387px;}
.y76{bottom:609.097900px;}
.y40{bottom:614.810374px;}
.yaf{bottom:614.844213px;}
.y11c{bottom:616.054388px;}
.y285{bottom:616.234866px;}
.y16d{bottom:616.837536px;}
.y185{bottom:616.840759px;}
.yd2{bottom:619.713916px;}
.y141{bottom:620.252129px;}
.y260{bottom:620.658206px;}
.yf7{bottom:621.328555px;}
.y21a{bottom:621.383344px;}
.y163{bottom:621.863546px;}
.y23d{bottom:624.930072px;}
.y5a{bottom:629.019849px;}
.y75{bottom:632.882415px;}
.y284{bottom:635.982782px;}
.y3f{bottom:637.811740px;}
.y11b{bottom:639.123433px;}
.yae{bottom:640.763856px;}
.y140{bottom:643.106856px;}
.y25f{bottom:643.612841px;}
.y3{bottom:643.958812px;}
.y4{bottom:643.959135px;}
.yd1{bottom:644.089821px;}
.yf6{bottom:644.228402px;}
.y219{bottom:644.352482px;}
.y162{bottom:644.718273px;}
.y23c{bottom:647.979781px;}
.y1d9{bottom:649.932819px;}
.y59{bottom:651.278352px;}
.y74{bottom:656.666930px;}
.y283{bottom:657.343725px;}
.y11a{bottom:662.194091px;}
.y1a6{bottom:662.240822px;}
.y3e{bottom:662.424523px;}
.y20c{bottom:662.596945px;}
.yad{bottom:663.460664px;}
.y13f{bottom:665.961584px;}
.y25e{bottom:666.569088px;}
.yd0{bottom:666.855920px;}
.yf5{bottom:667.126638px;}
.y218{bottom:667.321619px;}
.y161{bottom:667.573001px;}
.y1d8{bottom:667.658406px;}
.y23b{bottom:671.029490px;}
.y58{bottom:673.535243px;}
.y282{bottom:677.091641px;}
.y1a5{bottom:679.966409px;}
.y20b{bottom:680.322532px;}
.y73{bottom:680.451445px;}
.y119{bottom:685.264748px;}
.y1d7{bottom:685.383993px;}
.y3d{bottom:685.425889px;}
.yac{bottom:686.157473px;}
.y13e{bottom:688.816311px;}
.y25d{bottom:689.523723px;}
.ycf{bottom:689.620408px;}
.yf4{bottom:690.026485px;}
.y217{bottom:690.289146px;}
.y160{bottom:690.427728px;}
.y23a{bottom:694.079199px;}
.y57{bottom:695.793746px;}
.y281{bottom:696.841167px;}
.y1a4{bottom:697.691996px;}
.y20a{bottom:698.048119px;}
.y1d6{bottom:703.109580px;}
.y72{bottom:704.235960px;}
.y118{bottom:708.335405px;}
.yab{bottom:708.854281px;}
.y3c{bottom:710.038673px;}
.y13d{bottom:711.671038px;}
.y25c{bottom:712.478358px;}
.yf3{bottom:712.926332px;}
.y216{bottom:713.258284px;}
.y15f{bottom:713.282455px;}
.yce{bottom:713.997924px;}
.y1a3{bottom:715.417583px;}
.y209{bottom:715.773706px;}
.y280{bottom:716.589083px;}
.y56{bottom:718.052249px;}
.y1d5{bottom:720.835167px;}
.y239{bottom:721.963159px;}
.y71{bottom:728.020475px;}
.y117{bottom:731.406062px;}
.yaa{bottom:731.549478px;}
.y3b{bottom:733.040039px;}
.y1a2{bottom:733.143170px;}
.y208{bottom:733.499293px;}
.y13c{bottom:734.525765px;}
.y25b{bottom:735.434605px;}
.yf2{bottom:735.826179px;}
.y15e{bottom:736.137182px;}
.y215{bottom:736.227422px;}
.ycd{bottom:736.762412px;}
.y27f{bottom:737.950027px;}
.y55{bottom:740.310752px;}
.y1a1{bottom:750.868757px;}
.y70{bottom:751.804990px;}
.ya9{bottom:754.246287px;}
.y116{bottom:754.476719px;}
.y3a{bottom:756.041405px;}
.y13b{bottom:757.380493px;}
.y27e{bottom:757.697942px;}
.y25a{bottom:758.389240px;}
.y238{bottom:758.709912px;}
.yf1{bottom:758.726026px;}
.y15d{bottom:758.991910px;}
.y214{bottom:759.196560px;}
.ycc{bottom:759.528512px;}
.y54{bottom:762.569255px;}
.y1a0{bottom:768.594344px;}
.y6f{bottom:775.589505px;}
.ya8{bottom:776.943095px;}
.y27d{bottom:777.447469px;}
.y39{bottom:779.042771px;}
.y115{bottom:779.157182px;}
.y13a{bottom:780.235220px;}
.y259{bottom:781.345486px;}
.yf0{bottom:781.624262px;}
.y237{bottom:781.759621px;}
.y15c{bottom:781.846637px;}
.y213{bottom:782.165698px;}
.ycb{bottom:782.293000px;}
.y53{bottom:784.827759px;}
.y19f{bottom:786.319931px;}
.y27c{bottom:797.195384px;}
.y6e{bottom:799.374020px;}
.ya7{bottom:799.639904px;}
.y38{bottom:802.044138px;}
.y114{bottom:802.227839px;}
.y139{bottom:803.089947px;}
.y19e{bottom:804.045518px;}
.y258{bottom:804.300122px;}
.yef{bottom:804.524109px;}
.y15b{bottom:804.701364px;}
.y236{bottom:804.809329px;}
.yca{bottom:805.059099px;}
.y212{bottom:805.134836px;}
.y52{bottom:807.086262px;}
.y27b{bottom:816.944911px;}
.y19d{bottom:821.771105px;}
.ya6{bottom:822.336712px;}
.y6d{bottom:823.158535px;}
.y37{bottom:825.045504px;}
.y113{bottom:825.298496px;}
.y138{bottom:825.944675px;}
.y257{bottom:827.254757px;}
.yee{bottom:827.423955px;}
.y15a{bottom:827.556092px;}
.yc9{bottom:827.823587px;}
.y235{bottom:827.859038px;}
.y211{bottom:828.103973px;}
.y51{bottom:829.344765px;}
.y96{bottom:832.891493px;}
.y27a{bottom:838.304243px;}
.ya5{bottom:845.033520px;}
.y6c{bottom:846.943050px;}
.y36{bottom:848.046870px;}
.y137{bottom:848.799402px;}
.y112{bottom:849.980571px;}
.y256{bottom:850.211003px;}
.yed{bottom:850.323802px;}
.y159{bottom:850.410819px;}
.yc8{bottom:850.589686px;}
.y234{bottom:850.908747px;}
.y210{bottom:851.073111px;}
.y50{bottom:851.603268px;}
.y279{bottom:858.053770px;}
.ya4{bottom:867.730329px;}
.y6b{bottom:872.338982px;}
.y111{bottom:873.051228px;}
.y255{bottom:873.165638px;}
.yec{bottom:873.223649px;}
.y136{bottom:873.265546px;}
.yc7{bottom:873.354174px;}
.y4f{bottom:873.861771px;}
.y233{bottom:873.958456px;}
.y20f{bottom:874.040638px;}
.y35{bottom:874.271071px;}
.y278{bottom:877.801685px;}
.y95{bottom:879.622586px;}
.y34{bottom:895.258166px;}
.ya3{bottom:895.259777px;}
.y4e{bottom:896.118662px;}
.y110{bottom:896.120274px;}
.y6a{bottom:896.121885px;}
.y232{bottom:897.008164px;}
.y20e{bottom:897.009776px;}
.y277{bottom:897.549600px;}
.h3{height:33.162962px;}
.h17{height:40.159734px;}
.hf{height:44.884409px;}
.h1a{height:46.473266px;}
.h18{height:47.117833px;}
.h19{height:47.375660px;}
.h4{height:47.578849px;}
.h5{height:48.307629px;}
.h16{height:50.295547px;}
.h7{height:51.262398px;}
.h9{height:51.616909px;}
.hd{height:51.829616px;}
.hb{height:51.971421px;}
.he{height:56.212671px;}
.hc{height:56.541400px;}
.h12{height:57.003113px;}
.h11{height:57.019686px;}
.h15{height:64.521137px;}
.ha{height:65.088355px;}
.h8{height:65.513770px;}
.h14{height:75.694377px;}
.h13{height:75.697925px;}
.h10{height:118.795963px;}
.h6{height:141.501750px;}
.h2{height:957.600000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:668.400000px;}
.w2{width:684.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x14{left:-635.922774px;}
.x11{left:-634.675537px;}
.x13{left:-632.577472px;}
.x37{left:-622.219284px;}
.x28{left:-614.210541px;}
.x15{left:-601.863864px;}
.x27{left:-592.219533px;}
.x2c{left:-572.858197px;}
.x2a{left:-562.909469px;}
.x2d{left:-559.307243px;}
.x29{left:-556.757079px;}
.x2b{left:-555.094097px;}
.x12{left:-552.693730px;}
.x33{left:-519.380262px;}
.x2e{left:-462.572979px;}
.x32{left:-455.052495px;}
.x16{left:-327.597468px;}
.x38{left:-313.892366px;}
.x3c{left:-230.430634px;}
.x0{left:0.000000px;}
.x17{left:35.541799px;}
.x6{left:45.677226px;}
.x3{left:46.924463px;}
.x5{left:49.022528px;}
.x34{left:59.380716px;}
.x1a{left:67.389844px;}
.x7{left:79.736136px;}
.x21{left:89.380467px;}
.x1{left:105.600000px;}
.xf{left:112.800000px;}
.x1b{left:119.859193px;}
.x22{left:124.842921px;}
.x2f{left:126.737947px;}
.x4{left:128.906270px;}
.x31{left:162.219738px;}
.x30{left:226.547505px;}
.x18{left:343.868716px;}
.x25{left:345.650943px;}
.x8{left:354.002532px;}
.x19{left:357.572206px;}
.x35{left:367.707634px;}
.x24{left:381.266482px;}
.x23{left:383.324261px;}
.x26{left:398.971121px;}
.x39{left:444.820768px;}
.x3a{left:451.169366px;}
.x10{left:452.183333px;}
.x3d{left:466.141427px;}
.x9{left:717.141799px;}
.xa{left:726.278533px;}
.x1c{left:730.848512px;}
.xd{left:748.989844px;}
.xe{left:801.459193px;}
.xb{left:1025.468716px;}
.x1f{left:1027.250943px;}
.xc{left:1039.172206px;}
.x1e{left:1062.866482px;}
.x1d{left:1064.924261px;}
.x20{left:1080.571121px;}
.x36{left:1126.420768px;}
.x2{left:1133.783333px;}
.x3b{left:1147.741427px;}
@media print{
.v2{vertical-align:-1.002659pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:27.873933pt;}
.v1{vertical-align:80.212757pt;}
.ls3{letter-spacing:-5.987309pt;}
.ls12{letter-spacing:-1.661550pt;}
.lsa{letter-spacing:-1.449559pt;}
.lsb{letter-spacing:-1.323510pt;}
.lsc{letter-spacing:-1.306322pt;}
.ls5{letter-spacing:-1.251892pt;}
.ls15{letter-spacing:-1.088602pt;}
.ls16{letter-spacing:-1.031307pt;}
.ls9{letter-spacing:-0.962553pt;}
.ls11{letter-spacing:-0.859422pt;}
.lsf{letter-spacing:-0.802128pt;}
.ls13{letter-spacing:-0.744833pt;}
.ls8{letter-spacing:-0.630243pt;}
.ls6{letter-spacing:-0.550030pt;}
.ls17{letter-spacing:-0.458359pt;}
.lse{letter-spacing:-0.343769pt;}
.ls1{letter-spacing:-0.315144pt;}
.ls7{letter-spacing:-0.206261pt;}
.ls2{letter-spacing:-0.189073pt;}
.lsd{letter-spacing:-0.171884pt;}
.ls4{letter-spacing:-0.163290pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.057295pt;}
.ls10{letter-spacing:0.171884pt;}
.ws2{word-spacing:-172.749632pt;}
.wse{word-spacing:-91.671723pt;}
.ws1{word-spacing:-63.994209pt;}
.ws3{word-spacing:-63.024309pt;}
.ws4{word-spacing:-62.835236pt;}
.ws11{word-spacing:-62.394066pt;}
.ws12{word-spacing:-61.574750pt;}
.wsc{word-spacing:-54.430085pt;}
.ws9{word-spacing:-54.266795pt;}
.wsd{word-spacing:-53.178193pt;}
.wsf{word-spacing:-48.700603pt;}
.ws0{word-spacing:-40.106379pt;}
.ws6{word-spacing:-15.756077pt;}
.ws7{word-spacing:-15.567004pt;}
.ws8{word-spacing:-14.232035pt;}
.ws15{word-spacing:-11.974619pt;}
.ws18{word-spacing:-11.057902pt;}
.ws16{word-spacing:-10.255774pt;}
.ws17{word-spacing:-9.682826pt;}
.ws5{word-spacing:-0.063024pt;}
.ws14{word-spacing:-0.057295pt;}
.wsa{word-spacing:-0.054430pt;}
.ws10{word-spacing:-0.048701pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:1.237568pt;}
._6{margin-left:-7.872309pt;}
._5{margin-left:-6.279513pt;}
._2{margin-left:-4.973191pt;}
._3{margin-left:-3.380395pt;}
._7{margin-left:-2.200121pt;}
._0{margin-left:-1.203191pt;}
._8{width:1.088602pt;}
._1{width:2.005319pt;}
._b{width:4.440349pt;}
._4{width:5.798236pt;}
._a{width:3349.799336pt;}
._9{width:3350.887938pt;}
.fs0{font-size:40.106379pt;}
.fsb{font-size:48.700603pt;}
.fs6{font-size:54.430085pt;}
.fsc{font-size:57.294827pt;}
.fs4{font-size:63.024309pt;}
.fs1{font-size:63.028778pt;}
.fs2{font-size:63.994209pt;}
.fs8{font-size:68.750927pt;}
.fs5{font-size:68.753792pt;}
.fsa{font-size:91.667426pt;}
.fs9{font-size:91.671723pt;}
.fs7{font-size:143.237067pt;}
.fs3{font-size:172.749632pt;}
.y0{bottom:0.000000pt;}
.y20d{bottom:21.018607pt;}
.yeb{bottom:26.516046pt;}
.y2{bottom:33.483097pt;}
.y5{bottom:33.733762pt;}
.ya1{bottom:49.146070pt;}
.yea{bottom:60.900104pt;}
.y1d{bottom:60.901536pt;}
.y10f{bottom:60.902968pt;}
.y8c{bottom:60.904401pt;}
.y184{bottom:60.905833pt;}
.y94{bottom:61.189443pt;}
.y69{bottom:62.222182pt;}
.y135{bottom:67.191076pt;}
.y93{bottom:76.945520pt;}
.y68{bottom:77.978259pt;}
.y276{bottom:78.443780pt;}
.y29f{bottom:78.458103pt;}
.yc6{bottom:81.076477pt;}
.y19c{bottom:81.093665pt;}
.ye9{bottom:81.136636pt;}
.y1c{bottom:81.158122pt;}
.y158{bottom:81.218282pt;}
.y10e{bottom:81.258388pt;}
.y231{bottom:81.319980pt;}
.y183{bottom:81.380139pt;}
.y254{bottom:81.391598pt;}
.y132{bottom:81.408787pt;}
.y1bd{bottom:81.446028pt;}
.y207{bottom:81.504756pt;}
.y134{bottom:81.514782pt;}
.y1d4{bottom:81.632237pt;}
.y1f0{bottom:81.695261pt;}
.y33{bottom:82.269642pt;}
.ya2{bottom:82.355870pt;}
.y8b{bottom:82.404284pt;}
.y92{bottom:92.701597pt;}
.y133{bottom:95.838489pt;}
.y275{bottom:95.983158pt;}
.y29e{bottom:96.013238pt;}
.yc5{bottom:101.251418pt;}
.y19b{bottom:101.282930pt;}
.ye8{bottom:101.371737pt;}
.y1b{bottom:101.414708pt;}
.y157{bottom:101.533595pt;}
.y10d{bottom:101.613807pt;}
.y230{bottom:101.736991pt;}
.y182{bottom:101.854446pt;}
.y253{bottom:101.880228pt;}
.y131{bottom:101.916038pt;}
.y1bc{bottom:101.990521pt;}
.y206{bottom:102.109408pt;}
.y1d3{bottom:102.362937pt;}
.y1ef{bottom:102.488986pt;}
.y32{bottom:103.637747pt;}
.y8a{bottom:103.904168pt;}
.y274{bottom:113.522537pt;}
.y29d{bottom:117.864053pt;}
.yc4{bottom:121.426359pt;}
.y19a{bottom:121.472194pt;}
.ye7{bottom:121.608270pt;}
.y1a{bottom:121.671294pt;}
.y156{bottom:121.848908pt;}
.y10c{bottom:121.969227pt;}
.y22f{bottom:122.154003pt;}
.y181{bottom:122.328752pt;}
.y252{bottom:122.368858pt;}
.y130{bottom:122.423289pt;}
.y205{bottom:122.714060pt;}
.y1d2{bottom:123.093638pt;}
.y1ee{bottom:123.282711pt;}
.y31{bottom:125.005853pt;}
.y1bb{bottom:125.399755pt;}
.y89{bottom:125.404052pt;}
.y273{bottom:133.926657pt;}
.y29c{bottom:135.419188pt;}
.y1{bottom:136.800000pt;}
.yc3{bottom:141.601299pt;}
.y199{bottom:141.661459pt;}
.ye6{bottom:141.844802pt;}
.y19{bottom:141.927880pt;}
.y155{bottom:142.164221pt;}
.y10b{bottom:142.324647pt;}
.y22e{bottom:142.571014pt;}
.y180{bottom:142.803058pt;}
.y251{bottom:142.857488pt;}
.y12f{bottom:142.930539pt;}
.y204{bottom:143.317279pt;}
.y1d1{bottom:143.824339pt;}
.y1ed{bottom:144.076436pt;}
.y1ba{bottom:145.942815pt;}
.y30{bottom:146.373958pt;}
.y88{bottom:148.336306pt;}
.y29b{bottom:152.972890pt;}
.yc2{bottom:161.776240pt;}
.y198{bottom:161.849291pt;}
.y18{bottom:162.184466pt;}
.y154{bottom:162.479534pt;}
.y10a{bottom:162.680066pt;}
.y22d{bottom:162.988026pt;}
.y17f{bottom:163.277365pt;}
.y250{bottom:163.346118pt;}
.y12e{bottom:163.437790pt;}
.y203{bottom:163.921931pt;}
.y1d0{bottom:164.555039pt;}
.y1ec{bottom:164.870161pt;}
.ye5{bottom:166.377015pt;}
.y1b9{bottom:166.487307pt;}
.y2f{bottom:167.742064pt;}
.y272{bottom:170.088287pt;}
.y87{bottom:171.268561pt;}
.y29a{bottom:171.960396pt;}
.yc1{bottom:181.951181pt;}
.y197{bottom:182.038556pt;}
.y17{bottom:182.441052pt;}
.y16c{bottom:182.794847pt;}
.y109{bottom:183.034053pt;}
.y22c{bottom:183.405037pt;}
.y17e{bottom:183.753103pt;}
.y12d{bottom:183.945041pt;}
.y153{bottom:184.227218pt;}
.y202{bottom:184.526584pt;}
.y1cf{bottom:185.285740pt;}
.y1eb{bottom:185.662453pt;}
.ye4{bottom:186.612115pt;}
.y24f{bottom:186.699490pt;}
.y1b8{bottom:187.031800pt;}
.y2e{bottom:189.110170pt;}
.y299{bottom:189.514098pt;}
.y271{bottom:190.492407pt;}
.y86{bottom:192.767012pt;}
.yc0{bottom:202.126122pt;}
.y196{bottom:202.227820pt;}
.y16{bottom:202.697638pt;}
.y22b{bottom:203.822049pt;}
.y17d{bottom:204.227410pt;}
.y12c{bottom:204.450859pt;}
.y152{bottom:204.542531pt;}
.y108{bottom:204.821843pt;}
.y201{bottom:205.129803pt;}
.y1ce{bottom:206.016441pt;}
.y1ea{bottom:206.456178pt;}
.ye3{bottom:206.848648pt;}
.y298{bottom:207.069233pt;}
.y24e{bottom:207.188120pt;}
.y1b7{bottom:207.574860pt;}
.y2d{bottom:210.478275pt;}
.y270{bottom:210.896527pt;}
.y85{bottom:214.266896pt;}
.y90{bottom:215.450034pt;}
.ybf{bottom:222.301063pt;}
.y195{bottom:222.417085pt;}
.y15{bottom:222.954224pt;}
.y22a{bottom:224.239060pt;}
.y297{bottom:224.622936pt;}
.y17c{bottom:224.703148pt;}
.y151{bottom:224.857844pt;}
.y107{bottom:225.177263pt;}
.y200{bottom:225.734455pt;}
.y1cd{bottom:226.748574pt;}
.ye2{bottom:227.083748pt;}
.y1e9{bottom:227.248471pt;}
.y24d{bottom:227.676750pt;}
.y12b{bottom:227.822852pt;}
.y1b6{bottom:228.119352pt;}
.y8f{bottom:231.206111pt;}
.y26f{bottom:231.302080pt;}
.y2c{bottom:231.846381pt;}
.y84{bottom:235.766779pt;}
.ya0{bottom:238.608030pt;}
.ybe{bottom:242.474571pt;}
.y14{bottom:243.209377pt;}
.y296{bottom:243.610441pt;}
.y229{bottom:244.656072pt;}
.y150{bottom:245.173158pt;}
.y17b{bottom:245.177455pt;}
.y194{bottom:245.469658pt;}
.y106{bottom:245.532683pt;}
.y1ff{bottom:246.339107pt;}
.y16b{bottom:246.605528pt;}
.y8e{bottom:246.962188pt;}
.ye1{bottom:247.320281pt;}
.y1cc{bottom:247.479274pt;}
.y1e8{bottom:248.042196pt;}
.y24c{bottom:248.165380pt;}
.y1b5{bottom:248.663845pt;}
.y26e{bottom:251.706200pt;}
.y2b{bottom:253.214486pt;}
.y83{bottom:257.266663pt;}
.y9f{bottom:260.093733pt;}
.y12a{bottom:260.505253pt;}
.y295{bottom:261.164144pt;}
.ybd{bottom:262.649512pt;}
.y8d{bottom:262.718266pt;}
.y13{bottom:263.465963pt;}
.y228{bottom:265.071651pt;}
.y14f{bottom:265.488471pt;}
.y17a{bottom:265.653193pt;}
.y193{bottom:265.658923pt;}
.y105{bottom:265.888102pt;}
.y16a{bottom:266.920841pt;}
.y1fe{bottom:266.942327pt;}
.ye0{bottom:267.555382pt;}
.y1cb{bottom:268.209975pt;}
.y24b{bottom:268.654010pt;}
.y1e7{bottom:268.835921pt;}
.y1b4{bottom:269.206905pt;}
.y26d{bottom:272.111753pt;}
.y2a{bottom:274.582592pt;}
.y294{bottom:278.717846pt;}
.y82{bottom:278.766547pt;}
.y4d{bottom:279.270741pt;}
.y129{bottom:281.012504pt;}
.ybc{bottom:282.824453pt;}
.y227{bottom:285.488662pt;}
.y14e{bottom:285.803784pt;}
.y192{bottom:285.848187pt;}
.y179{bottom:286.127500pt;}
.y104{bottom:286.242089pt;}
.y169{bottom:287.236155pt;}
.ydf{bottom:287.791914pt;}
.y1ca{bottom:288.940676pt;}
.y24a{bottom:289.142640pt;}
.y1e6{bottom:289.628214pt;}
.y1b3{bottom:289.751397pt;}
.y1fd{bottom:290.411720pt;}
.y12{bottom:290.884403pt;}
.y26c{bottom:292.515873pt;}
.y29{bottom:295.950698pt;}
.y293{bottom:297.705352pt;}
.y67{bottom:299.056077pt;}
.y81{bottom:300.266430pt;}
.y4c{bottom:301.148771pt;}
.y128{bottom:301.519755pt;}
.y9e{bottom:301.631623pt;}
.ybb{bottom:302.999394pt;}
.y226{bottom:305.905674pt;}
.y191{bottom:306.037452pt;}
.y103{bottom:306.597509pt;}
.y14d{bottom:307.551468pt;}
.yde{bottom:308.027015pt;}
.y249{bottom:309.631270pt;}
.y1c9{bottom:309.671376pt;}
.y1b2{bottom:310.295890pt;}
.y1e5{bottom:310.421939pt;}
.y178{bottom:310.900350pt;}
.y1fc{bottom:311.016372pt;}
.y11{bottom:311.140989pt;}
.y26b{bottom:312.919993pt;}
.y292{bottom:315.259054pt;}
.y28{bottom:317.318803pt;}
.y66{bottom:318.841413pt;}
.y4b{bottom:321.594430pt;}
.y80{bottom:321.766314pt;}
.y127{bottom:322.027006pt;}
.y9d{bottom:323.117326pt;}
.yba{bottom:323.174335pt;}
.y190{bottom:326.225284pt;}
.y225{bottom:326.322685pt;}
.y102{bottom:326.952928pt;}
.y14c{bottom:327.866781pt;}
.ydd{bottom:328.263548pt;}
.y248{bottom:330.119900pt;}
.y1c8{bottom:330.402077pt;}
.y1b1{bottom:330.838950pt;}
.y1e4{bottom:331.214231pt;}
.y10{bottom:331.397575pt;}
.y1fb{bottom:331.619592pt;}
.y291{bottom:332.814189pt;}
.y26a{bottom:334.757916pt;}
.y65{bottom:338.626749pt;}
.y27{bottom:340.119280pt;}
.y4a{bottom:342.040089pt;}
.y126{bottom:342.532824pt;}
.y7f{bottom:343.266198pt;}
.yb9{bottom:343.349275pt;}
.y177{bottom:343.549807pt;}
.y18f{bottom:346.414549pt;}
.y224{bottom:346.739697pt;}
.y14b{bottom:348.182094pt;}
.ydc{bottom:348.498648pt;}
.y101{bottom:348.740719pt;}
.y290{bottom:350.367892pt;}
.y247{bottom:350.608530pt;}
.y1b0{bottom:351.383442pt;}
.yf{bottom:351.654161pt;}
.y1fa{bottom:352.224244pt;}
.y1c7{bottom:352.565148pt;}
.y9c{bottom:353.196251pt;}
.y1e3{bottom:353.440327pt;}
.y269{bottom:355.162036pt;}
.y64{bottom:358.412085pt;}
.y26{bottom:361.487385pt;}
.y49{bottom:362.485748pt;}
.y125{bottom:363.040075pt;}
.yb8{bottom:363.524216pt;}
.y176{bottom:364.025546pt;}
.y7e{bottom:364.766082pt;}
.y18e{bottom:366.603813pt;}
.y223{bottom:367.156708pt;}
.y28f{bottom:367.923027pt;}
.y14a{bottom:368.497407pt;}
.ydb{bottom:368.735181pt;}
.y100{bottom:369.096138pt;}
.y246{bottom:371.097160pt;}
.ye{bottom:371.910746pt;}
.y1f9{bottom:372.828896pt;}
.y1c6{bottom:373.295849pt;}
.y1e2{bottom:374.232619pt;}
.y9b{bottom:374.681954pt;}
.y268{bottom:375.567589pt;}
.y1af{bottom:376.225047pt;}
.y63{bottom:378.197421pt;}
.y25{bottom:382.855491pt;}
.y48{bottom:382.931406pt;}
.y124{bottom:383.547326pt;}
.yb7{bottom:383.697725pt;}
.y175{bottom:384.499852pt;}
.y18d{bottom:386.791645pt;}
.y28e{bottom:386.909100pt;}
.y222{bottom:387.573720pt;}
.y149{bottom:388.812720pt;}
.yda{bottom:388.970281pt;}
.y7d{bottom:389.130707pt;}
.yff{bottom:389.450125pt;}
.y245{bottom:391.585790pt;}
.yd{bottom:392.165900pt;}
.y1f8{bottom:393.432116pt;}
.y1e1{bottom:395.026344pt;}
.y1c5{bottom:395.458920pt;}
.y267{bottom:395.971709pt;}
.y9a{bottom:396.167800pt;}
.y1ae{bottom:396.768107pt;}
.y62{bottom:397.981325pt;}
.y47{bottom:403.377065pt;}
.yb6{bottom:403.872666pt;}
.y123{bottom:404.054577pt;}
.y24{bottom:404.223596pt;}
.y28d{bottom:404.464235pt;}
.y174{bottom:404.975591pt;}
.y18c{bottom:406.980910pt;}
.y221{bottom:407.990731pt;}
.y148{bottom:409.128034pt;}
.yd9{bottom:409.206814pt;}
.yfe{bottom:409.805545pt;}
.y7c{bottom:410.272498pt;}
.y244{bottom:412.072988pt;}
.yc{bottom:412.422486pt;}
.y1f7{bottom:414.036768pt;}
.y1e0{bottom:415.820069pt;}
.y1c4{bottom:416.191053pt;}
.y266{bottom:416.375829pt;}
.y1ad{bottom:417.312600pt;}
.y61{bottom:417.766661pt;}
.y28c{bottom:422.017937pt;}
.y46{bottom:423.822724pt;}
.yb5{bottom:424.047606pt;}
.y122{bottom:424.561827pt;}
.y173{bottom:425.449897pt;}
.y23{bottom:425.591702pt;}
.y99{bottom:426.246582pt;}
.y18b{bottom:427.170174pt;}
.y220{bottom:428.406310pt;}
.yd8{bottom:429.441914pt;}
.y147{bottom:429.443347pt;}
.yfd{bottom:430.160964pt;}
.y7b{bottom:431.414289pt;}
.y243{bottom:432.561618pt;}
.yb{bottom:432.679072pt;}
.y1f6{bottom:434.641420pt;}
.y1df{bottom:436.612362pt;}
.y265{bottom:436.781382pt;}
.y1c3{bottom:436.921754pt;}
.y60{bottom:437.551997pt;}
.y1ac{bottom:437.857092pt;}
.y28b{bottom:439.573072pt;}
.yb4{bottom:444.222547pt;}
.y45{bottom:444.269815pt;}
.y121{bottom:445.067646pt;}
.y172{bottom:445.925636pt;}
.y22{bottom:446.959808pt;}
.y18a{bottom:447.359439pt;}
.y98{bottom:447.732428pt;}
.y21f{bottom:448.823322pt;}
.yd7{bottom:449.678447pt;}
.y146{bottom:449.758660pt;}
.y91{bottom:450.368850pt;}
.yfc{bottom:450.516384pt;}
.y168{bottom:451.191031pt;}
.ya{bottom:452.935658pt;}
.y242{bottom:453.050248pt;}
.y1f5{bottom:455.244640pt;}
.y7a{bottom:456.853192pt;}
.y264{bottom:457.185502pt;}
.y5f{bottom:457.337333pt;}
.y1de{bottom:457.406087pt;}
.y1c2{bottom:457.652455pt;}
.y1ab{bottom:458.400152pt;}
.y28a{bottom:458.559145pt;}
.yb3{bottom:464.397488pt;}
.y44{bottom:464.715474pt;}
.y120{bottom:465.574897pt;}
.y171{bottom:466.399942pt;}
.y189{bottom:467.547271pt;}
.y21{bottom:468.327913pt;}
.y97{bottom:469.218132pt;}
.y21e{bottom:469.240333pt;}
.yd6{bottom:469.913548pt;}
.y145{bottom:470.073973pt;}
.yfb{bottom:470.871803pt;}
.y167{bottom:471.506344pt;}
.y9{bottom:473.192244pt;}
.y241{bottom:473.538878pt;}
.y1f4{bottom:475.849292pt;}
.y289{bottom:476.114280pt;}
.y263{bottom:477.591054pt;}
.y79{bottom:477.994983pt;}
.y1dd{bottom:478.198379pt;}
.y1c1{bottom:478.383155pt;}
.y5e{bottom:478.555040pt;}
.y1aa{bottom:478.944645pt;}
.yb2{bottom:484.572429pt;}
.y43{bottom:485.161133pt;}
.y11f{bottom:486.082148pt;}
.y170{bottom:486.875681pt;}
.y188{bottom:487.736536pt;}
.y20{bottom:489.696019pt;}
.yd5{bottom:490.148648pt;}
.y144{bottom:490.389286pt;}
.y21d{bottom:491.089715pt;}
.yfa{bottom:491.225791pt;}
.y166{bottom:491.821657pt;}
.y8{bottom:493.448830pt;}
.y288{bottom:493.667983pt;}
.y240{bottom:494.027508pt;}
.y1f3{bottom:496.453944pt;}
.y262{bottom:497.995174pt;}
.y1dc{bottom:498.992104pt;}
.y1c0{bottom:499.113856pt;}
.y78{bottom:499.136774pt;}
.y1a9{bottom:499.489137pt;}
.y5d{bottom:499.772746pt;}
.yb1{bottom:504.747370pt;}
.y42{bottom:505.606792pt;}
.y11e{bottom:506.589398pt;}
.y16f{bottom:507.349987pt;}
.y187{bottom:507.925800pt;}
.yd4{bottom:510.385181pt;}
.y143{bottom:510.704599pt;}
.y287{bottom:511.223118pt;}
.y21c{bottom:511.506727pt;}
.yf9{bottom:511.581210pt;}
.y165{bottom:512.136970pt;}
.y1f{bottom:512.496495pt;}
.y7{bottom:513.705416pt;}
.y6{bottom:513.907380pt;}
.y23f{bottom:514.516138pt;}
.y5c{bottom:519.558082pt;}
.y1db{bottom:519.785829pt;}
.y261{bottom:519.831665pt;}
.y1bf{bottom:519.844557pt;}
.y1a8{bottom:520.032197pt;}
.y77{bottom:520.278565pt;}
.y1f2{bottom:521.354275pt;}
.y41{bottom:526.052451pt;}
.yb0{bottom:526.353249pt;}
.y11d{bottom:527.096649pt;}
.y16e{bottom:527.825726pt;}
.y186{bottom:528.115065pt;}
.y286{bottom:530.209191pt;}
.yd3{bottom:530.620281pt;}
.y142{bottom:531.019913pt;}
.y21b{bottom:531.923738pt;}
.yf8{bottom:531.936630pt;}
.y164{bottom:532.452283pt;}
.y1e{bottom:533.864601pt;}
.y23e{bottom:535.004768pt;}
.y5b{bottom:539.343418pt;}
.y1f1{bottom:539.810371pt;}
.y1be{bottom:540.575257pt;}
.y1a7{bottom:540.576690pt;}
.y1da{bottom:540.578122pt;}
.y76{bottom:541.420356pt;}
.y40{bottom:546.498110pt;}
.yaf{bottom:546.528190pt;}
.y11c{bottom:547.603900pt;}
.y285{bottom:547.764326pt;}
.y16d{bottom:548.300032pt;}
.y185{bottom:548.302897pt;}
.yd2{bottom:550.856814pt;}
.y141{bottom:551.335226pt;}
.y260{bottom:551.696183pt;}
.yf7{bottom:552.292049pt;}
.y21a{bottom:552.340750pt;}
.y163{bottom:552.767596pt;}
.y23d{bottom:555.493398pt;}
.y5a{bottom:559.128754pt;}
.y75{bottom:562.562147pt;}
.y284{bottom:565.318028pt;}
.y3f{bottom:566.943769pt;}
.y11b{bottom:568.109719pt;}
.yae{bottom:569.567872pt;}
.y140{bottom:571.650539pt;}
.y25f{bottom:572.100303pt;}
.y3{bottom:572.407833pt;}
.y4{bottom:572.408120pt;}
.yd1{bottom:572.524285pt;}
.yf6{bottom:572.647469pt;}
.y219{bottom:572.757761pt;}
.y162{bottom:573.082910pt;}
.y23c{bottom:575.982028pt;}
.y1d9{bottom:577.718061pt;}
.y59{bottom:578.914090pt;}
.y74{bottom:583.703938pt;}
.y283{bottom:584.305534pt;}
.y11a{bottom:588.616969pt;}
.y1a6{bottom:588.658508pt;}
.y3e{bottom:588.821798pt;}
.y20c{bottom:588.975062pt;}
.yad{bottom:589.742813pt;}
.y13f{bottom:591.965852pt;}
.y25e{bottom:592.505856pt;}
.yd0{bottom:592.760818pt;}
.yf5{bottom:593.001456pt;}
.y218{bottom:593.174773pt;}
.y161{bottom:593.398223pt;}
.y1d8{bottom:593.474138pt;}
.y23b{bottom:596.470658pt;}
.y58{bottom:598.697994pt;}
.y282{bottom:601.859236pt;}
.y1a5{bottom:604.414585pt;}
.y20b{bottom:604.731139pt;}
.y73{bottom:604.845729pt;}
.y119{bottom:609.124220pt;}
.y1d7{bottom:609.230216pt;}
.y3d{bottom:609.267457pt;}
.yac{bottom:609.917754pt;}
.y13e{bottom:612.281165pt;}
.y25d{bottom:612.909976pt;}
.ycf{bottom:612.995918pt;}
.yf4{bottom:613.356876pt;}
.y217{bottom:613.590352pt;}
.y160{bottom:613.713536pt;}
.y23a{bottom:616.959288pt;}
.y57{bottom:618.483330pt;}
.y281{bottom:619.414371pt;}
.y1a4{bottom:620.170663pt;}
.y20a{bottom:620.487217pt;}
.y1d6{bottom:624.986293pt;}
.y72{bottom:625.987520pt;}
.y118{bottom:629.631471pt;}
.yab{bottom:630.092694pt;}
.y3c{bottom:631.145487pt;}
.y13d{bottom:632.596478pt;}
.y25c{bottom:633.314096pt;}
.yf3{bottom:633.712295pt;}
.y216{bottom:634.007363pt;}
.y15f{bottom:634.028849pt;}
.yce{bottom:634.664822pt;}
.y1a3{bottom:635.926740pt;}
.y209{bottom:636.243294pt;}
.y280{bottom:636.968074pt;}
.y56{bottom:638.268666pt;}
.y1d5{bottom:640.742370pt;}
.y239{bottom:641.745030pt;}
.y71{bottom:647.129311pt;}
.y117{bottom:650.138722pt;}
.yaa{bottom:650.266203pt;}
.y3b{bottom:651.591146pt;}
.y1a2{bottom:651.682817pt;}
.y208{bottom:651.999371pt;}
.y13c{bottom:652.911792pt;}
.y25b{bottom:653.719649pt;}
.yf2{bottom:654.067715pt;}
.y15e{bottom:654.344162pt;}
.y215{bottom:654.424375pt;}
.ycd{bottom:654.899922pt;}
.y27f{bottom:655.955579pt;}
.y55{bottom:658.054002pt;}
.y1a1{bottom:667.438895pt;}
.y70{bottom:668.271102pt;}
.ya9{bottom:670.441144pt;}
.y116{bottom:670.645973pt;}
.y3a{bottom:672.036805pt;}
.y13b{bottom:673.227105pt;}
.y27e{bottom:673.509282pt;}
.y25a{bottom:674.123769pt;}
.y238{bottom:674.408810pt;}
.yf1{bottom:674.423134pt;}
.y15d{bottom:674.659475pt;}
.y214{bottom:674.841386pt;}
.ycc{bottom:675.136455pt;}
.y54{bottom:677.839338pt;}
.y1a0{bottom:683.194972pt;}
.y6f{bottom:689.412893pt;}
.ya8{bottom:690.616085pt;}
.y27d{bottom:691.064417pt;}
.y39{bottom:692.482464pt;}
.y115{bottom:692.584162pt;}
.y13a{bottom:693.542418pt;}
.y259{bottom:694.529321pt;}
.yf0{bottom:694.777121pt;}
.y237{bottom:694.897440pt;}
.y15c{bottom:694.974789pt;}
.y213{bottom:695.258398pt;}
.ycb{bottom:695.371555pt;}
.y53{bottom:697.624674pt;}
.y19f{bottom:698.951049pt;}
.y27c{bottom:708.618119pt;}
.y6e{bottom:710.554684pt;}
.ya7{bottom:710.791025pt;}
.y38{bottom:712.928122pt;}
.y114{bottom:713.091413pt;}
.y139{bottom:713.857731pt;}
.y19e{bottom:714.707127pt;}
.y258{bottom:714.933441pt;}
.yef{bottom:715.132541pt;}
.y15b{bottom:715.290102pt;}
.y236{bottom:715.386071pt;}
.yca{bottom:715.608088pt;}
.y212{bottom:715.675409pt;}
.y52{bottom:717.410010pt;}
.y27b{bottom:726.173254pt;}
.y19d{bottom:730.463204pt;}
.ya6{bottom:730.965966pt;}
.y6d{bottom:731.696475pt;}
.y37{bottom:733.373781pt;}
.y113{bottom:733.598664pt;}
.y138{bottom:734.173044pt;}
.y257{bottom:735.337562pt;}
.yee{bottom:735.487960pt;}
.y15a{bottom:735.605415pt;}
.yc9{bottom:735.843188pt;}
.y235{bottom:735.874701pt;}
.y211{bottom:736.092421pt;}
.y51{bottom:737.195346pt;}
.y96{bottom:740.347994pt;}
.y27a{bottom:745.159327pt;}
.ya5{bottom:751.140907pt;}
.y6c{bottom:752.838266pt;}
.y36{bottom:753.819440pt;}
.y137{bottom:754.488357pt;}
.y112{bottom:755.538285pt;}
.y256{bottom:755.743114pt;}
.yed{bottom:755.843380pt;}
.y159{bottom:755.920728pt;}
.yc8{bottom:756.079721pt;}
.y234{bottom:756.363331pt;}
.y210{bottom:756.509432pt;}
.y50{bottom:756.980682pt;}
.y279{bottom:762.714462pt;}
.ya4{bottom:771.315848pt;}
.y6b{bottom:775.412428pt;}
.y111{bottom:776.045536pt;}
.y255{bottom:776.147234pt;}
.yec{bottom:776.198800pt;}
.y136{bottom:776.236041pt;}
.yc7{bottom:776.314822pt;}
.y4f{bottom:776.766018pt;}
.y233{bottom:776.851961pt;}
.y20f{bottom:776.925011pt;}
.y35{bottom:777.129840pt;}
.y278{bottom:780.268165pt;}
.y95{bottom:781.886743pt;}
.y34{bottom:795.785036pt;}
.ya3{bottom:795.786468pt;}
.y4e{bottom:796.549922pt;}
.y110{bottom:796.551354pt;}
.y6a{bottom:796.552787pt;}
.y232{bottom:797.340591pt;}
.y20e{bottom:797.342023pt;}
.y277{bottom:797.821867pt;}
.h3{height:29.478188pt;}
.h17{height:35.697542pt;}
.hf{height:39.897253pt;}
.h1a{height:41.309570pt;}
.h18{height:41.882518pt;}
.h19{height:42.111698pt;}
.h4{height:42.292310pt;}
.h5{height:42.940114pt;}
.h16{height:44.707153pt;}
.h7{height:45.566576pt;}
.h9{height:45.881697pt;}
.hd{height:46.070770pt;}
.hb{height:46.196819pt;}
.he{height:49.966818pt;}
.hc{height:50.259022pt;}
.h12{height:50.669433pt;}
.h11{height:50.684166pt;}
.h15{height:57.352121pt;}
.ha{height:57.856316pt;}
.h8{height:58.234462pt;}
.h14{height:67.283890pt;}
.h13{height:67.287044pt;}
.h10{height:105.596412pt;}
.h6{height:125.779333pt;}
.h2{height:851.200000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:594.133333pt;}
.w2{width:608.000000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x14{left:-565.264688pt;}
.x11{left:-564.156033pt;}
.x13{left:-562.291086pt;}
.x37{left:-553.083808pt;}
.x28{left:-545.964925pt;}
.x15{left:-534.990101pt;}
.x27{left:-526.417363pt;}
.x2c{left:-509.207286pt;}
.x2a{left:-500.363973pt;}
.x2d{left:-497.161994pt;}
.x29{left:-494.895182pt;}
.x2b{left:-493.416975pt;}
.x12{left:-491.283316pt;}
.x33{left:-461.671344pt;}
.x2e{left:-411.175981pt;}
.x32{left:-404.491107pt;}
.x16{left:-291.197749pt;}
.x38{left:-279.015437pt;}
.x3c{left:-204.827230pt;}
.x0{left:0.000000pt;}
.x17{left:31.592710pt;}
.x6{left:40.601979pt;}
.x3{left:41.710634pt;}
.x5{left:43.575580pt;}
.x34{left:52.782859pt;}
.x1a{left:59.902084pt;}
.x7{left:70.876565pt;}
.x21{left:79.449304pt;}
.x1{left:93.866667pt;}
.xf{left:100.266667pt;}
.x1b{left:106.541505pt;}
.x22{left:110.971485pt;}
.x2f{left:112.655953pt;}
.x4{left:114.583351pt;}
.x31{left:144.195323pt;}
.x30{left:201.375560pt;}
.x18{left:305.661081pt;}
.x25{left:307.245283pt;}
.x8{left:314.668918pt;}
.x19{left:317.841961pt;}
.x35{left:326.851230pt;}
.x24{left:338.903540pt;}
.x23{left:340.732677pt;}
.x26{left:354.640996pt;}
.x39{left:395.396239pt;}
.x3a{left:401.039436pt;}
.x10{left:401.940740pt;}
.x3d{left:414.347935pt;}
.x9{left:637.459377pt;}
.xa{left:645.580918pt;}
.x1c{left:649.643122pt;}
.xd{left:665.768751pt;}
.xe{left:712.408172pt;}
.xb{left:911.527748pt;}
.x1f{left:913.111950pt;}
.xc{left:923.708628pt;}
.x1e{left:944.770206pt;}
.x1d{left:946.599344pt;}
.x20{left:960.507663pt;}
.x36{left:1001.262905pt;}
.x2{left:1007.807407pt;}
.x3b{left:1020.214602pt;}
}




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