
    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_4328c5908684061a14d7e493.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_f3f1d27fc62bf054011caf01.woff')format("woff");}.ff2{font-family:ff2;line-height:0.714000;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_1b8c3e996ddbb114dea1ab3a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979000;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_7666707eccaf4b15caf93d8c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62d4b2c519895a1749b7f78d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_905e7aff279b8cebe60b1a68.woff')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_01a68ec72be8dc9d1a2c6660.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_2ef6191f7a6a6849a4213e4f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.718750;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_163b66173b7bda792fa10c05.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7cb519e5b859b37d78e6a300.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_929f221055df01aeb513162f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_83b2ae7f071fb45e82a948af.woff')format("woff");}.ffc{font-family:ffc;line-height:0.731445;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_c907517c67c30ad3bb71e94b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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_2248e85977f60c015a0e007d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.731445;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_7f1537c3228fea35fc135314.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_396ab61d92eb87dd9849015a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_ae24e36faa51e65fd29c6ba4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.718750;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_72ccf81f5d09cb5817958d2a.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e33d24bc6041579eb668042a.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a5da563aa7e01938780c9adf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.740234;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_3656f2c587ee8a1c24376680.woff')format("woff");}.ff15{font-family:ff15;line-height:0.740234;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_fe8a1067eb94e19a28f868e0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.926758;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_0dbe563854b06ded963a6633.woff')format("woff");}.ff17{font-family:ff17;line-height:0.718750;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_38c2d05f9f2ca45f4f7c193b.woff')format("woff");}.ff18{font-family:ff18;line-height:0.731445;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_37341c42decd2d09ab246b05.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_1634590db84f339c4aef2563.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.740723;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_06faf9fc036c590d96824a06.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.730957;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_709c69c298d45c21af06cb55.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_37d427008cb075b2fa612f14.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.730957;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_d146d6107087de4c076825e4.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.740234;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_9553ca88729f6bd2ec3b0b98.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.730957;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_48c9b9a2dd85258f5e55f64a.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_cf3b82305463ff7ea1725767.woff')format("woff");}.ff21{font-family:ff21;line-height:0.718750;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_932521c174447f47b1066956.woff')format("woff");}.ff22{font-family:ff22;line-height:0.727539;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_42c1216c950e7b329e4d0407.woff')format("woff");}.ff23{font-family:ff23;line-height:0.730957;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_be4f9e6ca3f2767208cdfac2.woff')format("woff");}.ff24{font-family:ff24;line-height:0.730957;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_5b883c5af92c11379cf2e7c1.woff')format("woff");}.ff25{font-family:ff25;line-height:0.666504;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_e98acf56d1e41ca7ddb24df5.woff')format("woff");}.ff26{font-family:ff26;line-height:0.731445;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_68318fe5e56893418405b7bb.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_071f537db6234fbea4eb6ab3.woff')format("woff");}.ff28{font-family:ff28;line-height:0.740234;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_568dd5f119f7296e860f140c.woff')format("woff");}.ff29{font-family:ff29;line-height:0.926758;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_54824af451fac12c9c29696b.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_c06a02943b629e529bb13ea2.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_0e7a25a9a57becf744a5782d.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.718750;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_6e282721f57ea9110eea3d4b.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.740234;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_dc080ba9f4f53c31a8d94270.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.715820;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_cbef3a7e7082e25fcafed237.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;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_1cf251db3b9a86d59afc47e1.woff')format("woff");}.ff30{font-family:ff30;line-height:0.740234;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_10156d3e469bcc352f8956e1.woff')format("woff");}.ff31{font-family:ff31;line-height:0.718750;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_99ef320fe6dadbf98d8a931a.woff')format("woff");}.ff32{font-family:ff32;line-height:0.731445;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_aba2a722c1481efed02bd5ca.woff')format("woff");}.ff33{font-family:ff33;line-height:0.854980;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_69bbc9885814da8bcc5724c3.woff')format("woff");}.ff34{font-family:ff34;line-height:0.666504;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_3bd655727601b9f6d3d91f1c.woff')format("woff");}.ff35{font-family:ff35;line-height:0.930664;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_663d2d1e2dcd5b538f72632e.woff')format("woff");}.ff36{font-family:ff36;line-height:0.666504;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_c809467908b6ea278a3c22ff.woff')format("woff");}.ff37{font-family:ff37;line-height:0.677734;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_1ccd1131af6605b540b568a4.woff')format("woff");}.ff38{font-family:ff38;line-height:0.819336;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_0b814101f66421464d07033c.woff')format("woff");}.ff39{font-family:ff39;line-height:0.960000;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_95f3723652c671910bca6c79.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;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_4386e7c9e86b4de1567276ee.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.666504;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_402b68004d923d96503faef5.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.938965;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_11e61a28bf545607ca1d8534.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.666504;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_401a064280f5966eb46a2e24.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.727539;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_a279d5d2e987bd46cf876c94.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.938965;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_fbb2843ec116f8f314d1960e.woff')format("woff");}.ff40{font-family:ff40;line-height:0.666504;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;}
.m4{transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,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);}
.m1{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);}
.m6{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-156.304800px;}
.v27{vertical-align:-99.147898px;}
.v13{vertical-align:-91.262400px;}
.v2e{vertical-align:-89.375544px;}
.v29{vertical-align:-67.679010px;}
.v2a{vertical-align:-61.390251px;}
.v24{vertical-align:-59.771409px;}
.v25{vertical-align:-54.425680px;}
.v26{vertical-align:-50.606076px;}
.ve{vertical-align:-47.970000px;}
.v14{vertical-align:-46.562400px;}
.v1f{vertical-align:-38.354400px;}
.v16{vertical-align:-37.249800px;}
.v18{vertical-align:-34.508400px;}
.v5{vertical-align:-32.462490px;}
.v3{vertical-align:-29.077362px;}
.va{vertical-align:-26.751174px;}
.v2{vertical-align:-23.869476px;}
.v21{vertical-align:-22.133514px;}
.v1c{vertical-align:-21.086748px;}
.v7{vertical-align:-19.529574px;}
.v1{vertical-align:-17.039796px;}
.v2c{vertical-align:-15.335814px;}
.v2f{vertical-align:-13.631838px;}
.v12{vertical-align:-11.175000px;}
.v23{vertical-align:-5.345729px;}
.v0{vertical-align:0.000000px;}
.v2b{vertical-align:15.723000px;}
.v1a{vertical-align:17.039796px;}
.v8{vertical-align:19.529574px;}
.v1d{vertical-align:21.086748px;}
.v22{vertical-align:22.133514px;}
.vc{vertical-align:24.988800px;}
.vb{vertical-align:26.751174px;}
.v6{vertical-align:32.462490px;}
.v19{vertical-align:34.508400px;}
.v17{vertical-align:37.249800px;}
.v20{vertical-align:38.354400px;}
.v15{vertical-align:46.562400px;}
.vf{vertical-align:47.970000px;}
.v2d{vertical-align:52.093440px;}
.v9{vertical-align:57.120000px;}
.v11{vertical-align:63.324600px;}
.v1e{vertical-align:66.055200px;}
.v31{vertical-align:68.544000px;}
.vd{vertical-align:81.541800px;}
.v30{vertical-align:126.134400px;}
.v28{vertical-align:155.301660px;}
.v1b{vertical-align:231.744000px;}
.v4{vertical-align:345.470880px;}
.ls4{letter-spacing:-66.810000px;}
.ls42{letter-spacing:-58.124700px;}
.lsa{letter-spacing:-19.380000px;}
.ls1{letter-spacing:-11.520000px;}
.ls32{letter-spacing:-10.560000px;}
.ls5{letter-spacing:-10.200000px;}
.ls37{letter-spacing:-9.588000px;}
.ls1f{letter-spacing:-9.486000px;}
.ls36{letter-spacing:-9.384000px;}
.ls8{letter-spacing:-8.976000px;}
.ls43{letter-spacing:-8.874000px;}
.ls35{letter-spacing:-8.670000px;}
.ls33{letter-spacing:-7.680000px;}
.lsc{letter-spacing:-7.477200px;}
.ls2{letter-spacing:-7.200000px;}
.ls2d{letter-spacing:-6.120000px;}
.ls19{letter-spacing:-6.000000px;}
.ls20{letter-spacing:-5.940000px;}
.lsb{letter-spacing:-5.400000px;}
.ls18{letter-spacing:-4.800000px;}
.ls3f{letter-spacing:-4.616547px;}
.ls9{letter-spacing:-4.200000px;}
.ls30{letter-spacing:-3.840000px;}
.ls2f{letter-spacing:-0.220645px;}
.ls2e{letter-spacing:-0.196374px;}
.ls39{letter-spacing:-0.189501px;}
.ls3d{letter-spacing:-0.171893px;}
.ls38{letter-spacing:-0.162430px;}
.ls3c{letter-spacing:-0.147337px;}
.ls3b{letter-spacing:-0.121889px;}
.ls3a{letter-spacing:-0.108286px;}
.ls3e{letter-spacing:-0.098224px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000009px;}
.ls41{letter-spacing:0.000120px;}
.ls7{letter-spacing:0.000180px;}
.ls6{letter-spacing:0.000189px;}
.ls15{letter-spacing:0.018413px;}
.ls13{letter-spacing:0.024413px;}
.ls44{letter-spacing:0.036000px;}
.ls26{letter-spacing:0.066193px;}
.ls25{letter-spacing:0.073548px;}
.ls28{letter-spacing:0.195883px;}
.ls2a{letter-spacing:0.197109px;}
.ls2c{letter-spacing:0.220645px;}
.ls2b{letter-spacing:0.286838px;}
.ls29{letter-spacing:0.333835px;}
.ls1b{letter-spacing:0.426127px;}
.ls12{letter-spacing:0.517629px;}
.ls22{letter-spacing:0.546130px;}
.ls23{letter-spacing:0.546183px;}
.ls21{letter-spacing:0.546730px;}
.ls24{letter-spacing:0.546783px;}
.lsf{letter-spacing:0.551300px;}
.ls11{letter-spacing:0.555151px;}
.ls10{letter-spacing:0.558750px;}
.ls1a{letter-spacing:0.639237px;}
.ls1c{letter-spacing:0.639242px;}
.lsd{letter-spacing:0.709895px;}
.lse{letter-spacing:0.710755px;}
.ls14{letter-spacing:0.738173px;}
.ls16{letter-spacing:0.744173px;}
.ls1d{letter-spacing:0.903267px;}
.ls1e{letter-spacing:0.903867px;}
.ls45{letter-spacing:26.314500px;}
.ls17{letter-spacing:78.383633px;}
.ls40{letter-spacing:99.012000px;}
.ls31{letter-spacing:452.644980px;}
.ls34{letter-spacing:492.727800px;}
.ls27{letter-spacing:2680.597609px;}
.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;}
}
.ws48{word-spacing:-220.644648px;}
.ws52{word-spacing:-196.177363px;}
.ws0{word-spacing:-148.608000px;}
.ws56{word-spacing:-136.224000px;}
.ws4{word-spacing:-131.580000px;}
.wsf{word-spacing:-124.766400px;}
.ws5d{word-spacing:-123.685200px;}
.ws11{word-spacing:-122.400000px;}
.ws33{word-spacing:-122.369400px;}
.ws5a{word-spacing:-121.053600px;}
.wsd{word-spacing:-115.790400px;}
.ws78{word-spacing:-114.474600px;}
.ws59{word-spacing:-111.843000px;}
.wsb{word-spacing:-111.756000px;}
.ws14{word-spacing:-102.815520px;}
.ws54{word-spacing:-99.072000px;}
.ws16{word-spacing:-96.455880px;}
.ws71{word-spacing:-95.632011px;}
.ws58{word-spacing:-94.520006px;}
.ws1{word-spacing:-92.880000px;}
.ws9{word-spacing:-91.740000px;}
.ws5e{word-spacing:-88.848806px;}
.ws5b{word-spacing:-86.958394px;}
.ws63{word-spacing:-84.591097px;}
.wse{word-spacing:-83.177606px;}
.ws70{word-spacing:-80.064000px;}
.ws45{word-spacing:-78.948000px;}
.ws68{word-spacing:-78.396000px;}
.ws32{word-spacing:-77.400000px;}
.ws34{word-spacing:-76.626000px;}
.ws61{word-spacing:-75.259059px;}
.ws62{word-spacing:-75.150773px;}
.ws13{word-spacing:-75.060000px;}
.ws3{word-spacing:-74.970000px;}
.wsc{word-spacing:-74.504006px;}
.ws12{word-spacing:-69.660000px;}
.ws15{word-spacing:-68.543674px;}
.ws66{word-spacing:-68.167735px;}
.ws5{word-spacing:-66.720000px;}
.ws77{word-spacing:-65.223900px;}
.ws30{word-spacing:-61.920000px;}
.wsa{word-spacing:-61.160006px;}
.ws6c{word-spacing:-60.848640px;}
.ws6b{word-spacing:-60.048000px;}
.ws46{word-spacing:-56.712000px;}
.ws35{word-spacing:-55.044000px;}
.ws10{word-spacing:-54.180000px;}
.ws3d{word-spacing:-53.905110px;}
.ws6f{word-spacing:-53.376000px;}
.ws73{word-spacing:-52.842240px;}
.ws69{word-spacing:-52.263994px;}
.ws60{word-spacing:-50.172706px;}
.ws7a{word-spacing:-50.076000px;}
.ws8{word-spacing:-50.040000px;}
.ws1b{word-spacing:-50.004484px;}
.ws4b{word-spacing:-49.931884px;}
.ws47{word-spacing:-49.865690px;}
.ws75{word-spacing:-49.639680px;}
.ws53{word-spacing:-49.536000px;}
.ws26{word-spacing:-47.117515px;}
.ws41{word-spacing:-46.391361px;}
.ws65{word-spacing:-45.510639px;}
.ws7{word-spacing:-44.480006px;}
.ws4c{word-spacing:-44.380464px;}
.ws4e{word-spacing:-44.184091px;}
.ws6d{word-spacing:-40.565760px;}
.ws6a{word-spacing:-40.032000px;}
.ws3e{word-spacing:-39.688378px;}
.ws28{word-spacing:-39.391867px;}
.ws23{word-spacing:-38.833117px;}
.ws40{word-spacing:-38.236164px;}
.ws74{word-spacing:-35.583994px;}
.ws4a{word-spacing:-33.243794px;}
.ws76{word-spacing:-33.093120px;}
.ws4d{word-spacing:-29.586976px;}
.ws2d{word-spacing:-25.902176px;}
.ws3c{word-spacing:-0.799052px;}
.ws29{word-spacing:-0.647037px;}
.ws79{word-spacing:-0.330000px;}
.ws5c{word-spacing:-0.288000px;}
.ws67{word-spacing:-0.282000px;}
.ws5f{word-spacing:-0.270716px;}
.ws64{word-spacing:-0.245561px;}
.ws4f{word-spacing:-0.220645px;}
.ws6e{word-spacing:-0.218880px;}
.ws18{word-spacing:-0.201457px;}
.ws50{word-spacing:-0.196374px;}
.ws3a{word-spacing:-0.178988px;}
.ws43{word-spacing:-0.166882px;}
.ws1a{word-spacing:-0.160686px;}
.ws36{word-spacing:-0.159810px;}
.ws2f{word-spacing:-0.157015px;}
.ws1e{word-spacing:-0.156450px;}
.ws39{word-spacing:-0.142764px;}
.ws20{word-spacing:-0.139687px;}
.ws19{word-spacing:-0.136703px;}
.ws51{word-spacing:-0.130916px;}
.ws2b{word-spacing:-0.129407px;}
.ws1c{word-spacing:-0.122313px;}
.ws25{word-spacing:-0.115475px;}
.ws42{word-spacing:-0.113700px;}
.ws37{word-spacing:-0.108671px;}
.ws2e{word-spacing:-0.106977px;}
.ws1f{word-spacing:-0.106162px;}
.ws27{word-spacing:-0.094987px;}
.ws44{word-spacing:-0.093527px;}
.ws2c{word-spacing:-0.087997px;}
.ws2{word-spacing:0.000000px;}
.ws55{word-spacing:28.356000px;}
.ws3b{word-spacing:141.112514px;}
.ws22{word-spacing:187.088340px;}
.ws38{word-spacing:361.437650px;}
.ws17{word-spacing:402.000324px;}
.ws24{word-spacing:457.895650px;}
.ws72{word-spacing:598.884240px;}
.ws6{word-spacing:669.012000px;}
.ws2a{word-spacing:694.703636px;}
.ws3f{word-spacing:802.226046px;}
.ws1d{word-spacing:852.316656px;}
.ws31{word-spacing:1686.190020px;}
.ws49{word-spacing:2379.386529px;}
.ws21{word-spacing:2758.258124px;}
.ws57{word-spacing:7359.985800px;}
._21{margin-left:-6976.762800px;}
._9{margin-left:-6196.759200px;}
._a{margin-left:-3697.716600px;}
._0{margin-left:-31.680000px;}
._3{margin-left:-22.080000px;}
._22{margin-left:-19.872000px;}
._1e{margin-left:-17.664000px;}
._6{margin-left:-10.200000px;}
._b{margin-left:-8.280000px;}
._1{margin-left:-7.200000px;}
._f{margin-left:-5.400000px;}
._2{margin-left:-4.320000px;}
._8{margin-left:-3.240000px;}
._15{margin-left:-1.088792px;}
._14{width:1.283072px;}
._7{width:3.240000px;}
._20{width:4.420098px;}
._23{width:6.480000px;}
._e{width:9.180000px;}
._27{width:41.264100px;}
._5{width:47.430000px;}
._26{width:49.250700px;}
._4{width:56.610000px;}
._1b{width:144.042087px;}
._17{width:227.618195px;}
._c{width:270.309789px;}
._1d{width:304.973118px;}
._18{width:310.152950px;}
._1a{width:364.367222px;}
._13{width:400.517678px;}
._12{width:460.473544px;}
._11{width:515.631475px;}
._d{width:535.838700px;}
._19{width:693.616685px;}
._25{width:743.443800px;}
._24{width:754.399440px;}
._1c{width:956.913193px;}
._10{width:1585.352571px;}
._1f{width:3278.586297px;}
._16{width:5707.082940px;}
.fc1a{color:rgb(254,229,78);}
.fc16{color:rgb(139,191,106);}
.fc17{color:rgb(145,199,110);}
.fc14{color:rgb(199,95,9);}
.fc12{color:rgb(121,163,91);}
.fc11{color:rgb(183,247,137);}
.fcf{color:transparent;}
.fc0{color:rgb(255,255,255);}
.fcd{color:rgb(255,102,0);}
.fc1{color:rgb(213,213,213);}
.fc6{color:rgb(146,146,146);}
.fc7{color:rgb(82,82,82);}
.fcb{color:rgb(140,140,140);}
.fc2{color:rgb(101,174,243);}
.fc3{color:rgb(86,192,249);}
.fc10{color:rgb(166,243,116);}
.fce{color:rgb(166,166,166);}
.fc5{color:rgb(63,142,185);}
.fc19{color:rgb(203,203,203);}
.fc4{color:rgb(0,0,0);}
.fc8{color:rgb(69,166,120);}
.fc15{color:rgb(94,94,94);}
.fc9{color:rgb(56,125,184);}
.fc1b{color:rgb(254,174,0);}
.fc18{color:rgb(242,114,0);}
.fc13{color:rgb(127,127,127);}
.fcc{color:rgb(203,58,86);}
.fca{color:rgb(201,51,76);}
.fs26{font-size:63.840962px;}
.fs24{font-size:87.997001px;}
.fs25{font-size:93.173296px;}
.fs3a{font-size:93.527309px;}
.fs22{font-size:94.987480px;}
.fs35{font-size:98.017039px;}
.fs2a{font-size:100.075021px;}
.fs1c{font-size:106.162477px;}
.fs28{font-size:106.976747px;}
.fs30{font-size:108.671065px;}
.fs39{font-size:113.699866px;}
.fs21{font-size:115.474975px;}
.fs61{font-size:119.040000px;}
.fs1a{font-size:122.313127px;}
.fs20{font-size:124.787473px;}
.fs5f{font-size:127.999980px;}
.fs23{font-size:129.407355px;}
.fs49{font-size:130.324353px;}
.fs40{font-size:130.915824px;}
.fs15{font-size:136.702735px;}
.fs36{font-size:137.540160px;}
.fs1f{font-size:139.687470px;}
.fs32{font-size:142.763948px;}
.fs58{font-size:144.000000px;}
.fs5a{font-size:145.920000px;}
.fs3e{font-size:147.096432px;}
.fs1b{font-size:156.449966px;}
.fs27{font-size:157.014257px;}
.fs29{font-size:157.015349px;}
.fs2f{font-size:159.810390px;}
.fs4{font-size:160.000020px;}
.fs18{font-size:160.685671px;}
.fs53{font-size:163.707336px;}
.fs37{font-size:166.875400px;}
.fs38{font-size:166.882061px;}
.fs1e{font-size:169.487464px;}
.fs1d{font-size:169.495599px;}
.fsf{font-size:176.400000px;}
.fs60{font-size:178.560000px;}
.fs33{font-size:178.987637px;}
.fs19{font-size:179.872245px;}
.fs5{font-size:180.000000px;}
.fs50{font-size:180.477360px;}
.fs55{font-size:187.999980px;}
.fs5d{font-size:190.080000px;}
.fs41{font-size:192.000000px;}
.fs34{font-size:193.903273px;}
.fs31{font-size:193.910480px;}
.fs3f{font-size:196.373737px;}
.fs2e{font-size:198.000000px;}
.fs14{font-size:201.456662px;}
.fs3c{font-size:204.000000px;}
.fs4c{font-size:207.360000px;}
.fsd{font-size:210.000000px;}
.fs57{font-size:216.000000px;}
.fs17{font-size:218.244718px;}
.fs16{font-size:218.244991px;}
.fs59{font-size:218.880000px;}
.fs7{font-size:220.000020px;}
.fs3d{font-size:220.644648px;}
.fs63{font-size:222.000000px;}
.fs0{font-size:240.000000px;}
.fs52{font-size:245.561004px;}
.fs11{font-size:246.559980px;}
.fs13{font-size:249.240000px;}
.fs5e{font-size:252.000000px;}
.fs56{font-size:265.680000px;}
.fs9{font-size:268.000020px;}
.fse{font-size:270.000000px;}
.fs4f{font-size:270.716040px;}
.fs47{font-size:279.360000px;}
.fs54{font-size:282.000000px;}
.fs5c{font-size:285.120000px;}
.fs46{font-size:288.000000px;}
.fs2d{font-size:297.000000px;}
.fsc{font-size:299.200020px;}
.fs2b{font-size:300.000000px;}
.fs51{font-size:304.722972px;}
.fs3b{font-size:306.000000px;}
.fs4b{font-size:312.799980px;}
.fs4e{font-size:319.600020px;}
.fs6{font-size:330.000000px;}
.fs45{font-size:340.000020px;}
.fsa{font-size:341.700000px;}
.fs5b{font-size:344.000040px;}
.fs44{font-size:352.000020px;}
.fs2{font-size:360.000000px;}
.fs10{font-size:369.840000px;}
.fs12{font-size:373.860000px;}
.fs43{font-size:384.000000px;}
.fs8{font-size:402.000000px;}
.fs48{font-size:433.500000px;}
.fs62{font-size:443.700000px;}
.fsb{font-size:448.800000px;}
.fs4a{font-size:469.200000px;}
.fs2c{font-size:474.300000px;}
.fs4d{font-size:479.400000px;}
.fs3{font-size:510.000000px;}
.fs42{font-size:528.000000px;}
.fs1{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:11.647050px;}
.y4b{bottom:12.572400px;}
.y98{bottom:14.383350px;}
.yb4{bottom:15.511185px;}
.y33{bottom:16.189155px;}
.y63{bottom:18.625500px;}
.yb1{bottom:20.631450px;}
.y17{bottom:23.951100px;}
.yf1{bottom:25.436949px;}
.y3{bottom:28.335450px;}
.yed{bottom:31.715007px;}
.y7c{bottom:36.722385px;}
.y11c{bottom:37.865850px;}
.ye2{bottom:38.588100px;}
.y10d{bottom:39.168150px;}
.y9{bottom:41.643270px;}
.y24{bottom:44.059335px;}
.yf7{bottom:46.775115px;}
.y2b{bottom:47.453100px;}
.ycd{bottom:49.754880px;}
.y107{bottom:50.640150px;}
.yea{bottom:63.368490px;}
.ydd{bottom:63.382282px;}
.y1b{bottom:66.140895px;}
.y19{bottom:67.663650px;}
.y68{bottom:76.350750px;}
.y45{bottom:80.088000px;}
.y5c{bottom:82.881750px;}
.ya9{bottom:83.899950px;}
.y123{bottom:85.356585px;}
.y89{bottom:87.896100px;}
.y7b{bottom:94.658385px;}
.y114{bottom:101.404365px;}
.y2{bottom:101.835450px;}
.y2c{bottom:103.127250px;}
.y69{bottom:108.271200px;}
.y117{bottom:109.152375px;}
.y10a{bottom:112.222290px;}
.y8{bottom:113.643270px;}
.yc9{bottom:113.704056px;}
.yef{bottom:116.893899px;}
.y5d{bottom:117.337950px;}
.yaa{bottom:117.826500px;}
.y25{bottom:118.910745px;}
.ye1{bottom:124.752300px;}
.y9b{bottom:127.316100px;}
.yd2{bottom:127.895235px;}
.y1d{bottom:130.129530px;}
.yf6{bottom:133.656375px;}
.ye4{bottom:143.210835px;}
.y10c{bottom:143.304150px;}
.ye9{bottom:146.087190px;}
.y72{bottom:164.779050px;}
.y124{bottom:165.523650px;}
.y46{bottom:168.556800px;}
.y7a{bottom:171.680850px;}
.y1{bottom:175.335450px;}
.y109{bottom:179.722350px;}
.y2d{bottom:183.470100px;}
.y7{bottom:185.643300px;}
.ydf{bottom:191.493300px;}
.ya8{bottom:199.077300px;}
.y84{bottom:202.208100px;}
.yf2{bottom:212.508099px;}
.y110{bottom:215.213100px;}
.yf0{bottom:216.085149px;}
.y27{bottom:217.266600px;}
.ye8{bottom:225.046140px;}
.y8a{bottom:229.594650px;}
.y44{bottom:231.877050px;}
.yc3{bottom:260.630408px;}
.yab{bottom:264.994500px;}
.y111{bottom:273.839550px;}
.y5e{bottom:277.047300px;}
.ydc{bottom:279.121500px;}
.y104{bottom:281.846400px;}
.y26{bottom:289.266600px;}
.ye0{bottom:296.416650px;}
.yd0{bottom:299.200050px;}
.y51{bottom:300.794250px;}
.yf5{bottom:304.656450px;}
.yc2{bottom:315.978199px;}
.y16{bottom:317.237400px;}
.y61{bottom:318.022350px;}
.yeb{bottom:327.470490px;}
.ye7{bottom:331.244700px;}
.yb8{bottom:332.996643px;}
.y50{bottom:343.166100px;}
.y60{bottom:356.669250px;}
.yc8{bottom:359.306372px;}
.y71{bottom:360.615600px;}
.y8b{bottom:362.770050px;}
.yb0{bottom:364.481850px;}
.y6a{bottom:366.223200px;}
.y62{bottom:378.087900px;}
.y4f{bottom:385.537950px;}
.y70{bottom:395.555550px;}
.y79{bottom:397.712400px;}
.y2e{bottom:402.913950px;}
.y3d{bottom:408.909750px;}
.yac{bottom:412.620900px;}
.y47{bottom:426.978600px;}
.y4e{bottom:427.909800px;}
.y53{bottom:429.772350px;}
.y4a{bottom:432.566100px;}
.y9c{bottom:433.086600px;}
.y9f{bottom:433.619250px;}
.y5f{bottom:436.756650px;}
.y10f{bottom:448.477950px;}
.y64{bottom:457.720050px;}
.y3c{bottom:458.674200px;}
.y77{bottom:461.553300px;}
.y4d{bottom:470.281650px;}
.y8d{bottom:491.151000px;}
.y65{bottom:495.199200px;}
.y8c{bottom:499.674300px;}
.y3b{bottom:508.438800px;}
.y4c{bottom:514.050450px;}
.y75{bottom:517.198500px;}
.yba{bottom:519.303161px;}
.y73{bottom:519.355200px;}
.y9a{bottom:523.113150px;}
.yc6{bottom:533.670805px;}
.y83{bottom:541.587450px;}
.yc1{bottom:547.022871px;}
.y32{bottom:549.209850px;}
.y54{bottom:550.834800px;}
.y74{bottom:551.275800px;}
.ybe{bottom:551.495522px;}
.y97{bottom:557.738700px;}
.y3a{bottom:558.203400px;}
.yd5{bottom:558.907050px;}
.yad{bottom:559.788900px;}
.y99{bottom:567.859950px;}
.y6f{bottom:575.431800px;}
.y55{bottom:585.291000px;}
.ye3{bottom:586.354500px;}
.yb9{bottom:590.768737px;}
.ya7{bottom:593.194950px;}
.y103{bottom:607.151550px;}
.y39{bottom:607.968000px;}
.y20{bottom:609.712950px;}
.ybd{bottom:610.309579px;}
.y82{bottom:612.803250px;}
.y2f{bottom:625.955250px;}
.y121{bottom:626.001900px;}
.yec{bottom:628.643400px;}
.y85{bottom:629.120700px;}
.y66{bottom:644.017650px;}
.yd4{bottom:645.907050px;}
.y38{bottom:657.732600px;}
.ya6{bottom:658.162950px;}
.y22{bottom:660.412500px;}
.yc7{bottom:670.911776px;}
.yff{bottom:671.651550px;}
.y18{bottom:677.098500px;}
.y48{bottom:687.728550px;}
.y106{bottom:697.911150px;}
.yae{bottom:707.415450px;}
.y37{bottom:707.497200px;}
.y120{bottom:708.806850px;}
.y108{bottom:725.250000px;}
.y56{bottom:726.375300px;}
.y102{bottom:732.220800px;}
.yfe{bottom:736.151550px;}
.y2a{bottom:738.545850px;}
.y9d{bottom:738.857100px;}
.y6e{bottom:741.936000px;}
.y112{bottom:756.216300px;}
.y36{bottom:757.261800px;}
.y86{bottom:759.632400px;}
.y6d{bottom:776.875950px;}
.yd3{bottom:777.971550px;}
.y94{bottom:780.940500px;}
.y21{bottom:792.207750px;}
.y67{bottom:792.836250px;}
.y11f{bottom:795.446400px;}
.ye6{bottom:795.662550px;}
.yfd{bottom:796.720800px;}
.y13{bottom:798.564900px;}
.y58{bottom:806.462850px;}
.y35{bottom:807.026400px;}
.yc5{bottom:819.626269px;}
.y93{bottom:825.154650px;}
.y12{bottom:829.837650px;}
.y14{bottom:834.330450px;}
.yb7{bottom:844.568001px;}
.y76{bottom:848.050050px;}
.y30{bottom:848.996550px;}
.y6b{bottom:850.206750px;}
.y6c{bottom:854.089050px;}
.yaf{bottom:854.583450px;}
.y34{bottom:857.390550px;}
.y80{bottom:863.664600px;}
.y101{bottom:865.151550px;}
.y57{bottom:867.925350px;}
.y115{bottom:869.289750px;}
.y92{bottom:869.368950px;}
.ybc{bottom:869.885136px;}
.ybb{bottom:870.392619px;}
.y41{bottom:875.377800px;}
.y87{bottom:892.807800px;}
.y5b{bottom:904.244100px;}
.yd{bottom:905.308350px;}
.y52{bottom:905.640900px;}
.y59{bottom:908.900400px;}
.y91{bottom:913.583100px;}
.y40{bottom:915.549150px;}
.y15{bottom:922.929600px;}
.yfc{bottom:929.651550px;}
.yd7{bottom:934.767750px;}
.y49{bottom:948.944100px;}
.yb2{bottom:955.904700px;}
.y90{bottom:957.797250px;}
.y3f{bottom:969.510750px;}
.yfb{bottom:990.220800px;}
.ya1{bottom:991.890150px;}
.yce{bottom:992.159700px;}
.y1f{bottom:993.010650px;}
.y5a{bottom:1001.094000px;}
.y3e{bottom:1001.887650px;}
.y8f{bottom:1002.011550px;}
.y88{bottom:1026.515700px;}
.ya2{bottom:1027.048500px;}
.y96{bottom:1030.244700px;}
.ya0{bottom:1036.104450px;}
.yee{bottom:1041.641850px;}
.y9e{bottom:1044.627600px;}
.y95{bottom:1045.160250px;}
.y29{bottom:1045.279650px;}
.yd6{bottom:1046.220450px;}
.y8e{bottom:1046.758350px;}
.y1e{bottom:1057.978650px;}
.y42{bottom:1067.241150px;}
.yc4{bottom:1069.837300px;}
.y31{bottom:1072.037850px;}
.yb6{bottom:1102.340402px;}
.yc0{bottom:1113.269667px;}
.yfa{bottom:1123.151550px;}
.y7f{bottom:1127.416950px;}
.y126{bottom:1143.424350px;}
.y6{bottom:1158.336000px;}
.y11b{bottom:1166.857050px;}
.ybf{bottom:1172.083723px;}
.yd8{bottom:1180.619400px;}
.yf9{bottom:1183.720800px;}
.y119{bottom:1183.911750px;}
.y125{bottom:1210.956000px;}
.ycf{bottom:1216.837650px;}
.ya5{bottom:1221.006450px;}
.y7d{bottom:1229.937150px;}
.yd1{bottom:1236.896850px;}
.yb3{bottom:1256.372250px;}
.y1c{bottom:1264.825200px;}
.y11a{bottom:1268.857050px;}
.y118{bottom:1271.620950px;}
.y105{bottom:1274.815650px;}
.yc{bottom:1283.763900px;}
.ya4{bottom:1285.974450px;}
.y11{bottom:1288.606050px;}
.yf{bottom:1291.236300px;}
.y5{bottom:1297.371150px;}
.y100{bottom:1305.722850px;}
.y1a{bottom:1326.503250px;}
.y10b{bottom:1340.524350px;}
.yb{bottom:1348.731900px;}
.yf4{bottom:1349.974200px;}
.y28{bottom:1351.485150px;}
.y10{bottom:1353.574050px;}
.yf3{bottom:1353.822000px;}
.yb5{bottom:1356.139973px;}
.ye{bottom:1356.204300px;}
.y11e{bottom:1357.684950px;}
.yda{bottom:1369.304700px;}
.y7e{bottom:1372.586850px;}
.y113{bottom:1410.197100px;}
.y4{bottom:1439.806500px;}
.ydb{bottom:1440.435750px;}
.y10e{bottom:1443.634200px;}
.ycc{bottom:1446.265200px;}
.ye5{bottom:1448.880150px;}
.yde{bottom:1451.252850px;}
.yd9{bottom:1455.340350px;}
.y116{bottom:1461.687750px;}
.yca{bottom:1462.593000px;}
.yf8{bottom:1467.265200px;}
.ya{bottom:1471.370550px;}
.y23{bottom:1482.015000px;}
.y11d{bottom:1482.024600px;}
.y43{bottom:1482.196050px;}
.ya3{bottom:1484.960100px;}
.y81{bottom:1496.028450px;}
.ycb{bottom:1527.075000px;}
.y122{bottom:1565.479500px;}
.h22{height:67.832707px;}
.h25{height:71.928921px;}
.h7{height:80.212350px;}
.h47{height:86.861690px;}
.h1f{height:90.848693px;}
.h21{height:94.212093px;}
.h33{height:100.132997px;}
.h1e{height:101.696298px;}
.h2f{height:103.936058px;}
.h24{height:112.394776px;}
.h1a{height:113.899853px;}
.h2b{height:114.863718px;}
.h17{height:115.492826px;}
.h16{height:116.983562px;}
.h35{height:121.494703px;}
.h34{height:121.571336px;}
.h1d{height:123.391508px;}
.h1c{height:123.397431px;}
.h4e{height:126.967890px;}
.he{height:128.424023px;}
.h30{height:130.307894px;}
.h18{height:130.951913px;}
.h5e{height:131.044922px;}
.h60{height:131.580000px;}
.h5c{height:137.491200px;}
.h6{height:138.600000px;}
.h1b{height:139.628880px;}
.h3f{height:140.352000px;}
.h23{height:140.730137px;}
.h31{height:141.166885px;}
.h2e{height:141.172132px;}
.h58{height:141.984000px;}
.h8{height:142.678590px;}
.h2d{height:144.161928px;}
.h2c{height:144.162528px;}
.h12{height:144.796976px;}
.h3e{height:147.060520px;}
.h5b{height:147.840000px;}
.hc{height:153.510000px;}
.h3d{height:155.716058px;}
.h39{height:155.814122px;}
.h3a{height:158.372867px;}
.h3b{height:158.784398px;}
.h15{height:158.888122px;}
.h14{height:158.888321px;}
.h4a{height:159.667200px;}
.h56{height:160.001280px;}
.h54{height:166.320000px;}
.h55{height:169.500000px;}
.h38{height:169.726318px;}
.h5f{height:170.940000px;}
.h3c{height:175.072047px;}
.h1{height:175.440000px;}
.h51{height:178.895028px;}
.h13{height:179.796891px;}
.h4{height:184.800000px;}
.h53{height:189.164160px;}
.h5a{height:194.040000px;}
.h4d{height:197.220865px;}
.hd{height:197.370000px;}
.h52{height:206.142000px;}
.h42{height:210.528000px;}
.h43{height:215.107200px;}
.h57{height:216.912000px;}
.h4f{height:218.126893px;}
.h27{height:219.300000px;}
.h59{height:219.542400px;}
.h44{height:221.760000px;}
.h36{height:223.686000px;}
.h29{height:228.690000px;}
.h9{height:241.230000px;}
.h37{height:247.035900px;}
.h3{height:263.160000px;}
.h40{height:280.704000px;}
.h50{height:289.898400px;}
.hf{height:298.280460px;}
.h45{height:316.888500px;}
.h5d{height:324.344700px;}
.hb{height:328.072800px;}
.h48{height:342.985200px;}
.h28{height:346.713300px;}
.h4b{height:350.441400px;}
.h5{height:372.810000px;}
.h49{height:386.465550px;}
.h4c{height:409.834050px;}
.h26{height:416.544000px;}
.h2{height:421.056000px;}
.h41{height:436.005660px;}
.ha{height:595.253580px;}
.h10{height:595.253700px;}
.h20{height:897.224700px;}
.h32{height:989.831100px;}
.h46{height:1038.713700px;}
.h19{height:1042.068900px;}
.h2a{height:1101.626550px;}
.h11{height:1231.524000px;}
.h0{height:1620.000000px;}
.wc{width:160.825950px;}
.w8{width:199.349850px;}
.w1{width:569.513100px;}
.w2{width:696.795000px;}
.wd{width:706.922100px;}
.wb{width:770.788650px;}
.wa{width:877.877700px;}
.w7{width:1136.036685px;}
.w5{width:1312.200150px;}
.w9{width:1419.814050px;}
.w3{width:1428.186150px;}
.w4{width:1438.248300px;}
.w6{width:1592.303925px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x7c{left:9.691314px;}
.x1a{left:13.107000px;}
.x77{left:15.219150px;}
.x1c{left:17.475000px;}
.x1{left:20.154075px;}
.x62{left:22.936575px;}
.x9d{left:27.449460px;}
.x28{left:30.962565px;}
.x7d{left:37.005165px;}
.x38{left:40.094385px;}
.x1e{left:42.570360px;}
.x9{left:44.891130px;}
.x66{left:49.010310px;}
.x9b{left:50.711055px;}
.x16{left:53.558205px;}
.x2f{left:55.160700px;}
.x81{left:56.720520px;}
.x3b{left:59.931975px;}
.x26{left:61.821165px;}
.xc8{left:62.850225px;}
.xa6{left:64.731000px;}
.x4c{left:67.291650px;}
.x64{left:68.721000px;}
.xab{left:71.468355px;}
.xba{left:73.296000px;}
.xa1{left:75.237000px;}
.x2e{left:77.344950px;}
.xaf{left:79.062555px;}
.x8e{left:82.779939px;}
.x9e{left:92.335963px;}
.xa{left:107.211135px;}
.x98{left:113.047155px;}
.xb3{left:116.581575px;}
.x9f{left:121.948710px;}
.xbb{left:123.324915px;}
.x8{left:142.359255px;}
.x3a{left:165.168300px;}
.x99{left:169.171950px;}
.x63{left:175.797975px;}
.x58{left:178.582650px;}
.x65{left:184.854225px;}
.x56{left:189.798150px;}
.x39{left:204.748350px;}
.x2d{left:212.848650px;}
.x5c{left:236.829300px;}
.x6a{left:242.920725px;}
.x7e{left:244.353285px;}
.x3f{left:251.313000px;}
.xc2{left:261.102750px;}
.x80{left:266.817285px;}
.x1f{left:270.256350px;}
.x84{left:282.082120px;}
.x85{left:297.442972px;}
.x83{left:300.499819px;}
.x97{left:309.414900px;}
.xc9{left:314.484450px;}
.x4e{left:319.638150px;}
.x2c{left:327.967650px;}
.x6c{left:336.146925px;}
.xc3{left:354.802650px;}
.x3c{left:360.274500px;}
.x24{left:364.226700px;}
.x45{left:367.724850px;}
.x2{left:369.288000px;}
.x90{left:371.754900px;}
.x4f{left:376.146150px;}
.x52{left:377.440650px;}
.xbc{left:394.948650px;}
.x69{left:405.933375px;}
.x51{left:410.224650px;}
.x50{left:425.322150px;}
.x32{left:434.091150px;}
.xca{left:436.263150px;}
.x96{left:438.654900px;}
.xb6{left:452.655000px;}
.x9a{left:477.883950px;}
.xbd{left:486.348600px;}
.x7f{left:518.505735px;}
.x95{left:535.152300px;}
.x57{left:544.377150px;}
.x4{left:553.556550px;}
.x33{left:558.204150px;}
.x53{left:597.003150px;}
.x3{left:602.928000px;}
.x31{left:619.959150px;}
.x3d{left:621.036900px;}
.x8b{left:636.414441px;}
.x30{left:641.544150px;}
.xce{left:644.230350px;}
.x8c{left:645.902161px;}
.x6d{left:650.985075px;}
.x67{left:652.050525px;}
.xd{left:691.611150px;}
.x3e{left:698.334450px;}
.xc{left:709.321200px;}
.x6e{left:730.893225px;}
.x68{left:731.958675px;}
.xb5{left:740.835000px;}
.x55{left:796.291650px;}
.x34{left:798.033150px;}
.x87{left:800.024593px;}
.x54{left:816.565650px;}
.x25{left:818.596500px;}
.x48{left:860.845350px;}
.x35{left:865.185150px;}
.x43{left:878.074200px;}
.x73{left:885.915075px;}
.x27{left:898.214700px;}
.x72{left:905.625675px;}
.x42{left:917.188650px;}
.x4d{left:923.544150px;}
.x71{left:927.999975px;}
.x70{left:950.374275px;}
.x40{left:975.860250px;}
.x41{left:982.844850px;}
.x37{left:988.098150px;}
.x46{left:1018.234050px;}
.x4a{left:1023.356250px;}
.x6b{left:1025.487975px;}
.x6f{left:1026.553425px;}
.x44{left:1061.073600px;}
.xc7{left:1065.546150px;}
.x76{left:1093.143525px;}
.x86{left:1136.409923px;}
.xb{left:1151.467500px;}
.x49{left:1159.790850px;}
.x92{left:1172.346900px;}
.x88{left:1181.393851px;}
.xcb{left:1206.218850px;}
.xe{left:1223.647800px;}
.x47{left:1245.469950px;}
.x36{left:1247.713650px;}
.x74{left:1250.828925px;}
.xf{left:1284.817800px;}
.xac{left:1318.872000px;}
.x2b{left:1411.864350px;}
.x8d{left:1419.758103px;}
.x1b{left:1424.265450px;}
.x17{left:1446.756750px;}
.x75{left:1458.590175px;}
.x2a{left:1471.714800px;}
.xc5{left:1473.312750px;}
.x4b{left:1478.182350px;}
.xad{left:1495.768200px;}
.x20{left:1501.833000px;}
.xb1{left:1507.491000px;}
.x6{left:1527.235500px;}
.xc6{left:1528.354500px;}
.xb2{left:1555.491000px;}
.x8a{left:1565.268958px;}
.x1d{left:1573.066500px;}
.x19{left:1585.207500px;}
.xc4{left:1594.291500px;}
.x59{left:1615.618500px;}
.x29{left:1618.843500px;}
.x18{left:1661.745000px;}
.x5{left:1671.715500px;}
.x5a{left:1683.498000px;}
.x89{left:1727.795193px;}
.xb7{left:1740.349500px;}
.xa5{left:1791.624000px;}
.xa8{left:1815.693000px;}
.xa4{left:1817.614500px;}
.xa9{left:1823.517000px;}
.xb8{left:1850.145000px;}
.x93{left:1875.438000px;}
.xa0{left:1883.758500px;}
.x10{left:1885.491000px;}
.x9c{left:1905.571500px;}
.x11{left:1914.451500px;}
.x7{left:1924.915500px;}
.xae{left:1932.889500px;}
.xa3{left:1961.811000px;}
.x60{left:1988.665500px;}
.xb4{left:2002.788000px;}
.x61{left:2025.729000px;}
.xb9{left:2041.356000px;}
.x7a{left:2107.278000px;}
.x8f{left:2110.845000px;}
.xb0{left:2116.479000px;}
.xc0{left:2121.318000px;}
.x78{left:2197.278000px;}
.x7b{left:2220.118500px;}
.x79{left:2241.778500px;}
.x21{left:2290.360500px;}
.xbf{left:2318.422500px;}
.x23{left:2338.155000px;}
.x5f{left:2340.843000px;}
.x12{left:2356.165500px;}
.x5b{left:2385.876000px;}
.x22{left:2387.661000px;}
.xbe{left:2392.416000px;}
.x14{left:2403.960000px;}
.xa7{left:2421.657000px;}
.x13{left:2453.466000px;}
.x15{left:2483.451000px;}
.x91{left:2496.936000px;}
.xcd{left:2537.074500px;}
.x94{left:2539.993500px;}
.x5e{left:2575.722000px;}
.xaa{left:2593.794000px;}
.xc1{left:2601.451500px;}
.xa2{left:2625.244500px;}
.x5d{left:2638.302000px;}
.x82{left:2680.650000px;}
.xcc{left:2741.875500px;}
@media print{
.v10{vertical-align:-138.937600pt;}
.v27{vertical-align:-88.131465pt;}
.v13{vertical-align:-81.122133pt;}
.v2e{vertical-align:-79.444928pt;}
.v29{vertical-align:-60.159120pt;}
.v2a{vertical-align:-54.569112pt;}
.v24{vertical-align:-53.130142pt;}
.v25{vertical-align:-48.378382pt;}
.v26{vertical-align:-44.983179pt;}
.ve{vertical-align:-42.640000pt;}
.v14{vertical-align:-41.388800pt;}
.v1f{vertical-align:-34.092800pt;}
.v16{vertical-align:-33.110933pt;}
.v18{vertical-align:-30.674133pt;}
.v5{vertical-align:-28.855547pt;}
.v3{vertical-align:-25.846544pt;}
.va{vertical-align:-23.778821pt;}
.v2{vertical-align:-21.217312pt;}
.v21{vertical-align:-19.674235pt;}
.v1c{vertical-align:-18.743776pt;}
.v7{vertical-align:-17.359621pt;}
.v1{vertical-align:-15.146485pt;}
.v2c{vertical-align:-13.631835pt;}
.v2f{vertical-align:-12.117189pt;}
.v12{vertical-align:-9.933333pt;}
.v23{vertical-align:-4.751760pt;}
.v0{vertical-align:0.000000pt;}
.v2b{vertical-align:13.976000pt;}
.v1a{vertical-align:15.146485pt;}
.v8{vertical-align:17.359621pt;}
.v1d{vertical-align:18.743776pt;}
.v22{vertical-align:19.674235pt;}
.vc{vertical-align:22.212267pt;}
.vb{vertical-align:23.778821pt;}
.v6{vertical-align:28.855547pt;}
.v19{vertical-align:30.674133pt;}
.v17{vertical-align:33.110933pt;}
.v20{vertical-align:34.092800pt;}
.v15{vertical-align:41.388800pt;}
.vf{vertical-align:42.640000pt;}
.v2d{vertical-align:46.305280pt;}
.v9{vertical-align:50.773333pt;}
.v11{vertical-align:56.288533pt;}
.v1e{vertical-align:58.715733pt;}
.v31{vertical-align:60.928000pt;}
.vd{vertical-align:72.481600pt;}
.v30{vertical-align:112.119467pt;}
.v28{vertical-align:138.045920pt;}
.v1b{vertical-align:205.994667pt;}
.v4{vertical-align:307.085227pt;}
.ls4{letter-spacing:-59.386667pt;}
.ls42{letter-spacing:-51.666400pt;}
.lsa{letter-spacing:-17.226667pt;}
.ls1{letter-spacing:-10.240000pt;}
.ls32{letter-spacing:-9.386667pt;}
.ls5{letter-spacing:-9.066667pt;}
.ls37{letter-spacing:-8.522667pt;}
.ls1f{letter-spacing:-8.432000pt;}
.ls36{letter-spacing:-8.341333pt;}
.ls8{letter-spacing:-7.978667pt;}
.ls43{letter-spacing:-7.888000pt;}
.ls35{letter-spacing:-7.706667pt;}
.ls33{letter-spacing:-6.826667pt;}
.lsc{letter-spacing:-6.646400pt;}
.ls2{letter-spacing:-6.400000pt;}
.ls2d{letter-spacing:-5.440000pt;}
.ls19{letter-spacing:-5.333333pt;}
.ls20{letter-spacing:-5.280000pt;}
.lsb{letter-spacing:-4.800000pt;}
.ls18{letter-spacing:-4.266667pt;}
.ls3f{letter-spacing:-4.103597pt;}
.ls9{letter-spacing:-3.733333pt;}
.ls30{letter-spacing:-3.413333pt;}
.ls2f{letter-spacing:-0.196129pt;}
.ls2e{letter-spacing:-0.174554pt;}
.ls39{letter-spacing:-0.168446pt;}
.ls3d{letter-spacing:-0.152794pt;}
.ls38{letter-spacing:-0.144382pt;}
.ls3c{letter-spacing:-0.130966pt;}
.ls3b{letter-spacing:-0.108346pt;}
.ls3a{letter-spacing:-0.096255pt;}
.ls3e{letter-spacing:-0.087311pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000008pt;}
.ls41{letter-spacing:0.000107pt;}
.ls7{letter-spacing:0.000160pt;}
.ls6{letter-spacing:0.000168pt;}
.ls15{letter-spacing:0.016367pt;}
.ls13{letter-spacing:0.021700pt;}
.ls44{letter-spacing:0.032000pt;}
.ls26{letter-spacing:0.058839pt;}
.ls25{letter-spacing:0.065376pt;}
.ls28{letter-spacing:0.174119pt;}
.ls2a{letter-spacing:0.175208pt;}
.ls2c{letter-spacing:0.196129pt;}
.ls2b{letter-spacing:0.254967pt;}
.ls29{letter-spacing:0.296743pt;}
.ls1b{letter-spacing:0.378780pt;}
.ls12{letter-spacing:0.460115pt;}
.ls22{letter-spacing:0.485449pt;}
.ls23{letter-spacing:0.485496pt;}
.ls21{letter-spacing:0.485982pt;}
.ls24{letter-spacing:0.486030pt;}
.lsf{letter-spacing:0.490044pt;}
.ls11{letter-spacing:0.493467pt;}
.ls10{letter-spacing:0.496667pt;}
.ls1a{letter-spacing:0.568210pt;}
.ls1c{letter-spacing:0.568215pt;}
.lsd{letter-spacing:0.631018pt;}
.lse{letter-spacing:0.631782pt;}
.ls14{letter-spacing:0.656154pt;}
.ls16{letter-spacing:0.661487pt;}
.ls1d{letter-spacing:0.802904pt;}
.ls1e{letter-spacing:0.803437pt;}
.ls45{letter-spacing:23.390667pt;}
.ls17{letter-spacing:69.674341pt;}
.ls40{letter-spacing:88.010667pt;}
.ls31{letter-spacing:402.351093pt;}
.ls34{letter-spacing:437.980267pt;}
.ls27{letter-spacing:2382.753430pt;}
.ws48{word-spacing:-196.128576pt;}
.ws52{word-spacing:-174.379878pt;}
.ws0{word-spacing:-132.096000pt;}
.ws56{word-spacing:-121.088000pt;}
.ws4{word-spacing:-116.960000pt;}
.wsf{word-spacing:-110.903467pt;}
.ws5d{word-spacing:-109.942400pt;}
.ws11{word-spacing:-108.800000pt;}
.ws33{word-spacing:-108.772800pt;}
.ws5a{word-spacing:-107.603200pt;}
.wsd{word-spacing:-102.924800pt;}
.ws78{word-spacing:-101.755200pt;}
.ws59{word-spacing:-99.416000pt;}
.wsb{word-spacing:-99.338667pt;}
.ws14{word-spacing:-91.391573pt;}
.ws54{word-spacing:-88.064000pt;}
.ws16{word-spacing:-85.738560pt;}
.ws71{word-spacing:-85.006232pt;}
.ws58{word-spacing:-84.017783pt;}
.ws1{word-spacing:-82.560000pt;}
.ws9{word-spacing:-81.546667pt;}
.ws5e{word-spacing:-78.976716pt;}
.ws5b{word-spacing:-77.296351pt;}
.ws63{word-spacing:-75.192086pt;}
.wse{word-spacing:-73.935649pt;}
.ws70{word-spacing:-71.168000pt;}
.ws45{word-spacing:-70.176000pt;}
.ws68{word-spacing:-69.685333pt;}
.ws32{word-spacing:-68.800000pt;}
.ws34{word-spacing:-68.112000pt;}
.ws61{word-spacing:-66.896941pt;}
.ws62{word-spacing:-66.800687pt;}
.ws13{word-spacing:-66.720000pt;}
.ws3{word-spacing:-66.640000pt;}
.wsc{word-spacing:-66.225783pt;}
.ws12{word-spacing:-61.920000pt;}
.ws15{word-spacing:-60.927711pt;}
.ws66{word-spacing:-60.593542pt;}
.ws5{word-spacing:-59.306667pt;}
.ws77{word-spacing:-57.976800pt;}
.ws30{word-spacing:-55.040000pt;}
.wsa{word-spacing:-54.364449pt;}
.ws6c{word-spacing:-54.087680pt;}
.ws6b{word-spacing:-53.376000pt;}
.ws46{word-spacing:-50.410667pt;}
.ws35{word-spacing:-48.928000pt;}
.ws10{word-spacing:-48.160000pt;}
.ws3d{word-spacing:-47.915653pt;}
.ws6f{word-spacing:-47.445333pt;}
.ws73{word-spacing:-46.970880pt;}
.ws69{word-spacing:-46.456884pt;}
.ws60{word-spacing:-44.597961pt;}
.ws7a{word-spacing:-44.512000pt;}
.ws8{word-spacing:-44.480000pt;}
.ws1b{word-spacing:-44.448430pt;}
.ws4b{word-spacing:-44.383897pt;}
.ws47{word-spacing:-44.325058pt;}
.ws75{word-spacing:-44.124160pt;}
.ws53{word-spacing:-44.032000pt;}
.ws26{word-spacing:-41.882235pt;}
.ws41{word-spacing:-41.236765pt;}
.ws65{word-spacing:-40.453902pt;}
.ws7{word-spacing:-39.537783pt;}
.ws4c{word-spacing:-39.449302pt;}
.ws4e{word-spacing:-39.274747pt;}
.ws6d{word-spacing:-36.058453pt;}
.ws6a{word-spacing:-35.584000pt;}
.ws3e{word-spacing:-35.278558pt;}
.ws28{word-spacing:-35.014992pt;}
.ws23{word-spacing:-34.518326pt;}
.ws40{word-spacing:-33.987702pt;}
.ws74{word-spacing:-31.630217pt;}
.ws4a{word-spacing:-29.550039pt;}
.ws76{word-spacing:-29.416107pt;}
.ws4d{word-spacing:-26.299535pt;}
.ws2d{word-spacing:-23.024157pt;}
.ws3c{word-spacing:-0.710268pt;}
.ws29{word-spacing:-0.575144pt;}
.ws79{word-spacing:-0.293333pt;}
.ws5c{word-spacing:-0.256000pt;}
.ws67{word-spacing:-0.250667pt;}
.ws5f{word-spacing:-0.240636pt;}
.ws64{word-spacing:-0.218276pt;}
.ws4f{word-spacing:-0.196129pt;}
.ws6e{word-spacing:-0.194560pt;}
.ws18{word-spacing:-0.179073pt;}
.ws50{word-spacing:-0.174554pt;}
.ws3a{word-spacing:-0.159100pt;}
.ws43{word-spacing:-0.148340pt;}
.ws1a{word-spacing:-0.142832pt;}
.ws36{word-spacing:-0.142054pt;}
.ws2f{word-spacing:-0.139569pt;}
.ws1e{word-spacing:-0.139067pt;}
.ws39{word-spacing:-0.126901pt;}
.ws20{word-spacing:-0.124167pt;}
.ws19{word-spacing:-0.121514pt;}
.ws51{word-spacing:-0.116370pt;}
.ws2b{word-spacing:-0.115029pt;}
.ws1c{word-spacing:-0.108723pt;}
.ws25{word-spacing:-0.102644pt;}
.ws42{word-spacing:-0.101067pt;}
.ws37{word-spacing:-0.096597pt;}
.ws2e{word-spacing:-0.095090pt;}
.ws1f{word-spacing:-0.094367pt;}
.ws27{word-spacing:-0.084433pt;}
.ws44{word-spacing:-0.083135pt;}
.ws2c{word-spacing:-0.078220pt;}
.ws2{word-spacing:0.000000pt;}
.ws55{word-spacing:25.205333pt;}
.ws3b{word-spacing:125.433346pt;}
.ws22{word-spacing:166.300746pt;}
.ws38{word-spacing:321.277911pt;}
.ws17{word-spacing:357.333621pt;}
.ws24{word-spacing:407.018355pt;}
.ws72{word-spacing:532.341547pt;}
.ws6{word-spacing:594.677333pt;}
.ws2a{word-spacing:617.514343pt;}
.ws3f{word-spacing:713.089818pt;}
.ws1d{word-spacing:757.614805pt;}
.ws31{word-spacing:1498.835573pt;}
.ws49{word-spacing:2115.010248pt;}
.ws21{word-spacing:2451.784999pt;}
.ws57{word-spacing:6542.209600pt;}
._21{margin-left:-6201.566933pt;}
._9{margin-left:-5508.230400pt;}
._a{margin-left:-3286.859200pt;}
._0{margin-left:-28.160000pt;}
._3{margin-left:-19.626667pt;}
._22{margin-left:-17.664000pt;}
._1e{margin-left:-15.701333pt;}
._6{margin-left:-9.066667pt;}
._b{margin-left:-7.360000pt;}
._1{margin-left:-6.400000pt;}
._f{margin-left:-4.800000pt;}
._2{margin-left:-3.840000pt;}
._8{margin-left:-2.880000pt;}
._15{margin-left:-0.967816pt;}
._14{width:1.140508pt;}
._7{width:2.880000pt;}
._20{width:3.928976pt;}
._23{width:5.760000pt;}
._e{width:8.160000pt;}
._27{width:36.679200pt;}
._5{width:42.160000pt;}
._26{width:43.778400pt;}
._4{width:50.320000pt;}
._1b{width:128.037411pt;}
._17{width:202.327285pt;}
._c{width:240.275368pt;}
._1d{width:271.087216pt;}
._18{width:275.691511pt;}
._1a{width:323.881975pt;}
._13{width:356.015714pt;}
._12{width:409.309817pt;}
._11{width:458.339089pt;}
._d{width:476.301067pt;}
._19{width:616.548164pt;}
._25{width:660.838933pt;}
._24{width:670.577280pt;}
._1c{width:850.589505pt;}
._10{width:1409.202285pt;}
._1f{width:2914.298931pt;}
._16{width:5072.962613pt;}
.fs26{font-size:56.747522pt;}
.fs24{font-size:78.219557pt;}
.fs25{font-size:82.820707pt;}
.fs3a{font-size:83.135386pt;}
.fs22{font-size:84.433315pt;}
.fs35{font-size:87.126257pt;}
.fs2a{font-size:88.955574pt;}
.fs1c{font-size:94.366646pt;}
.fs28{font-size:95.090442pt;}
.fs30{font-size:96.596502pt;}
.fs39{font-size:101.066547pt;}
.fs21{font-size:102.644422pt;}
.fs61{font-size:105.813333pt;}
.fs1a{font-size:108.722779pt;}
.fs20{font-size:110.922198pt;}
.fs5f{font-size:113.777760pt;}
.fs23{font-size:115.028760pt;}
.fs49{font-size:115.843869pt;}
.fs40{font-size:116.369622pt;}
.fs15{font-size:121.513542pt;}
.fs36{font-size:122.257920pt;}
.fs1f{font-size:124.166640pt;}
.fs32{font-size:126.901287pt;}
.fs58{font-size:128.000000pt;}
.fs5a{font-size:129.706667pt;}
.fs3e{font-size:130.752384pt;}
.fs1b{font-size:139.066637pt;}
.fs27{font-size:139.568229pt;}
.fs29{font-size:139.569199pt;}
.fs2f{font-size:142.053680pt;}
.fs4{font-size:142.222240pt;}
.fs18{font-size:142.831708pt;}
.fs53{font-size:145.517632pt;}
.fs37{font-size:148.333689pt;}
.fs38{font-size:148.339610pt;}
.fs1e{font-size:150.655523pt;}
.fs1d{font-size:150.662755pt;}
.fsf{font-size:156.800000pt;}
.fs60{font-size:158.720000pt;}
.fs33{font-size:159.100122pt;}
.fs19{font-size:159.886440pt;}
.fs5{font-size:160.000000pt;}
.fs50{font-size:160.424320pt;}
.fs55{font-size:167.111093pt;}
.fs5d{font-size:168.960000pt;}
.fs41{font-size:170.666667pt;}
.fs34{font-size:172.358465pt;}
.fs31{font-size:172.364871pt;}
.fs3f{font-size:174.554433pt;}
.fs2e{font-size:176.000000pt;}
.fs14{font-size:179.072589pt;}
.fs3c{font-size:181.333333pt;}
.fs4c{font-size:184.320000pt;}
.fsd{font-size:186.666667pt;}
.fs57{font-size:192.000000pt;}
.fs17{font-size:193.995305pt;}
.fs16{font-size:193.995547pt;}
.fs59{font-size:194.560000pt;}
.fs7{font-size:195.555573pt;}
.fs3d{font-size:196.128576pt;}
.fs63{font-size:197.333333pt;}
.fs0{font-size:213.333333pt;}
.fs52{font-size:218.276448pt;}
.fs11{font-size:219.164427pt;}
.fs13{font-size:221.546667pt;}
.fs5e{font-size:224.000000pt;}
.fs56{font-size:236.160000pt;}
.fs9{font-size:238.222240pt;}
.fse{font-size:240.000000pt;}
.fs4f{font-size:240.636480pt;}
.fs47{font-size:248.320000pt;}
.fs54{font-size:250.666667pt;}
.fs5c{font-size:253.440000pt;}
.fs46{font-size:256.000000pt;}
.fs2d{font-size:264.000000pt;}
.fsc{font-size:265.955573pt;}
.fs2b{font-size:266.666667pt;}
.fs51{font-size:270.864864pt;}
.fs3b{font-size:272.000000pt;}
.fs4b{font-size:278.044427pt;}
.fs4e{font-size:284.088907pt;}
.fs6{font-size:293.333333pt;}
.fs45{font-size:302.222240pt;}
.fsa{font-size:303.733333pt;}
.fs5b{font-size:305.777813pt;}
.fs44{font-size:312.888907pt;}
.fs2{font-size:320.000000pt;}
.fs10{font-size:328.746667pt;}
.fs12{font-size:332.320000pt;}
.fs43{font-size:341.333333pt;}
.fs8{font-size:357.333333pt;}
.fs48{font-size:385.333333pt;}
.fs62{font-size:394.400000pt;}
.fsb{font-size:398.933333pt;}
.fs4a{font-size:417.066667pt;}
.fs2c{font-size:421.600000pt;}
.fs4d{font-size:426.133333pt;}
.fs3{font-size:453.333333pt;}
.fs42{font-size:469.333333pt;}
.fs1{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:10.352933pt;}
.y4b{bottom:11.175467pt;}
.y98{bottom:12.785200pt;}
.yb4{bottom:13.787720pt;}
.y33{bottom:14.390360pt;}
.y63{bottom:16.556000pt;}
.yb1{bottom:18.339067pt;}
.y17{bottom:21.289867pt;}
.yf1{bottom:22.610621pt;}
.y3{bottom:25.187067pt;}
.yed{bottom:28.191117pt;}
.y7c{bottom:32.642120pt;}
.y11c{bottom:33.658533pt;}
.ye2{bottom:34.300533pt;}
.y10d{bottom:34.816133pt;}
.y9{bottom:37.016240pt;}
.y24{bottom:39.163853pt;}
.yf7{bottom:41.577880pt;}
.y2b{bottom:42.180533pt;}
.ycd{bottom:44.226560pt;}
.y107{bottom:45.013467pt;}
.yea{bottom:56.327547pt;}
.ydd{bottom:56.339806pt;}
.y1b{bottom:58.791907pt;}
.y19{bottom:60.145467pt;}
.y68{bottom:67.867333pt;}
.y45{bottom:71.189333pt;}
.y5c{bottom:73.672667pt;}
.ya9{bottom:74.577733pt;}
.y123{bottom:75.872520pt;}
.y89{bottom:78.129867pt;}
.y7b{bottom:84.140787pt;}
.y114{bottom:90.137213pt;}
.y2{bottom:90.520400pt;}
.y2c{bottom:91.668667pt;}
.y69{bottom:96.241067pt;}
.y117{bottom:97.024333pt;}
.y10a{bottom:99.753147pt;}
.y8{bottom:101.016240pt;}
.yc9{bottom:101.070272pt;}
.yef{bottom:103.905688pt;}
.y5d{bottom:104.300400pt;}
.yaa{bottom:104.734667pt;}
.y25{bottom:105.698440pt;}
.ye1{bottom:110.890933pt;}
.y9b{bottom:113.169867pt;}
.yd2{bottom:113.684653pt;}
.y1d{bottom:115.670693pt;}
.yf6{bottom:118.805667pt;}
.ye4{bottom:127.298520pt;}
.y10c{bottom:127.381467pt;}
.ye9{bottom:129.855280pt;}
.y72{bottom:146.470267pt;}
.y124{bottom:147.132133pt;}
.y46{bottom:149.828267pt;}
.y7a{bottom:152.605200pt;}
.y1{bottom:155.853733pt;}
.y109{bottom:159.753200pt;}
.y2d{bottom:163.084533pt;}
.y7{bottom:165.016267pt;}
.ydf{bottom:170.216267pt;}
.ya8{bottom:176.957600pt;}
.y84{bottom:179.740533pt;}
.yf2{bottom:188.896088pt;}
.y110{bottom:191.300533pt;}
.yf0{bottom:192.075688pt;}
.y27{bottom:193.125867pt;}
.ye8{bottom:200.041013pt;}
.y8a{bottom:204.084133pt;}
.y44{bottom:206.112933pt;}
.yc3{bottom:231.671474pt;}
.yab{bottom:235.550667pt;}
.y111{bottom:243.412933pt;}
.y5e{bottom:246.264267pt;}
.ydc{bottom:248.108000pt;}
.y104{bottom:250.530133pt;}
.y26{bottom:257.125867pt;}
.ye0{bottom:263.481467pt;}
.yd0{bottom:265.955600pt;}
.y51{bottom:267.372667pt;}
.yf5{bottom:270.805733pt;}
.yc2{bottom:280.869510pt;}
.y16{bottom:281.988800pt;}
.y61{bottom:282.686533pt;}
.yeb{bottom:291.084880pt;}
.ye7{bottom:294.439733pt;}
.yb8{bottom:295.997016pt;}
.y50{bottom:305.036533pt;}
.y60{bottom:317.039333pt;}
.yc8{bottom:319.383442pt;}
.y71{bottom:320.547200pt;}
.y8b{bottom:322.462267pt;}
.yb0{bottom:323.983867pt;}
.y6a{bottom:325.531733pt;}
.y62{bottom:336.078133pt;}
.y4f{bottom:342.700400pt;}
.y70{bottom:351.604933pt;}
.y79{bottom:353.522133pt;}
.y2e{bottom:358.145733pt;}
.y3d{bottom:363.475333pt;}
.yac{bottom:366.774133pt;}
.y47{bottom:379.536533pt;}
.y4e{bottom:380.364267pt;}
.y53{bottom:382.019867pt;}
.y4a{bottom:384.503200pt;}
.y9c{bottom:384.965867pt;}
.y9f{bottom:385.439333pt;}
.y5f{bottom:388.228133pt;}
.y10f{bottom:398.647067pt;}
.y64{bottom:406.862267pt;}
.y3c{bottom:407.710400pt;}
.y77{bottom:410.269600pt;}
.y4d{bottom:418.028133pt;}
.y8d{bottom:436.578667pt;}
.y65{bottom:440.177067pt;}
.y8c{bottom:444.154933pt;}
.y3b{bottom:451.945600pt;}
.y4c{bottom:456.933733pt;}
.y75{bottom:459.732000pt;}
.yba{bottom:461.602810pt;}
.y73{bottom:461.649067pt;}
.y9a{bottom:464.989467pt;}
.yc6{bottom:474.374049pt;}
.y83{bottom:481.411067pt;}
.yc1{bottom:486.242552pt;}
.y32{bottom:488.186533pt;}
.y54{bottom:489.630933pt;}
.y74{bottom:490.022933pt;}
.ybe{bottom:490.218242pt;}
.y97{bottom:495.767733pt;}
.y3a{bottom:496.180800pt;}
.yd5{bottom:496.806267pt;}
.yad{bottom:497.590133pt;}
.y99{bottom:504.764400pt;}
.y6f{bottom:511.494933pt;}
.y55{bottom:520.258667pt;}
.ye3{bottom:521.204000pt;}
.yb9{bottom:525.127766pt;}
.ya7{bottom:527.284400pt;}
.y103{bottom:539.690267pt;}
.y39{bottom:540.416000pt;}
.y20{bottom:541.967067pt;}
.ybd{bottom:542.497403pt;}
.y82{bottom:544.714000pt;}
.y2f{bottom:556.404667pt;}
.y121{bottom:556.446133pt;}
.yec{bottom:558.794133pt;}
.y85{bottom:559.218400pt;}
.y66{bottom:572.460133pt;}
.yd4{bottom:574.139600pt;}
.y38{bottom:584.651200pt;}
.ya6{bottom:585.033733pt;}
.y22{bottom:587.033333pt;}
.yc7{bottom:596.366023pt;}
.yff{bottom:597.023600pt;}
.y18{bottom:601.865333pt;}
.y48{bottom:611.314267pt;}
.y106{bottom:620.365467pt;}
.yae{bottom:628.813733pt;}
.y37{bottom:628.886400pt;}
.y120{bottom:630.050533pt;}
.y108{bottom:644.666667pt;}
.y56{bottom:645.666933pt;}
.y102{bottom:650.862933pt;}
.yfe{bottom:654.356933pt;}
.y2a{bottom:656.485200pt;}
.y9d{bottom:656.761867pt;}
.y6e{bottom:659.498667pt;}
.y112{bottom:672.192267pt;}
.y36{bottom:673.121600pt;}
.y86{bottom:675.228800pt;}
.y6d{bottom:690.556400pt;}
.yd3{bottom:691.530267pt;}
.y94{bottom:694.169333pt;}
.y21{bottom:704.184667pt;}
.y67{bottom:704.743333pt;}
.y11f{bottom:707.063467pt;}
.ye6{bottom:707.255600pt;}
.yfd{bottom:708.196267pt;}
.y13{bottom:709.835467pt;}
.y58{bottom:716.855867pt;}
.y35{bottom:717.356800pt;}
.yc5{bottom:728.556684pt;}
.y93{bottom:733.470800pt;}
.y12{bottom:737.633467pt;}
.y14{bottom:741.627067pt;}
.yb7{bottom:750.727112pt;}
.y76{bottom:753.822267pt;}
.y30{bottom:754.663600pt;}
.y6b{bottom:755.739333pt;}
.y6c{bottom:759.190267pt;}
.yaf{bottom:759.629733pt;}
.y34{bottom:762.124933pt;}
.y80{bottom:767.701867pt;}
.y101{bottom:769.023600pt;}
.y57{bottom:771.489200pt;}
.y115{bottom:772.702000pt;}
.y92{bottom:772.772400pt;}
.ybc{bottom:773.231232pt;}
.ybb{bottom:773.682328pt;}
.y41{bottom:778.113600pt;}
.y87{bottom:793.606933pt;}
.y5b{bottom:803.772533pt;}
.yd{bottom:804.718533pt;}
.y52{bottom:805.014133pt;}
.y59{bottom:807.911467pt;}
.y91{bottom:812.073867pt;}
.y40{bottom:813.821467pt;}
.y15{bottom:820.381867pt;}
.yfc{bottom:826.356933pt;}
.yd7{bottom:830.904667pt;}
.y49{bottom:843.505867pt;}
.yb2{bottom:849.693067pt;}
.y90{bottom:851.375333pt;}
.y3f{bottom:861.787333pt;}
.yfb{bottom:880.196267pt;}
.ya1{bottom:881.680133pt;}
.yce{bottom:881.919733pt;}
.y1f{bottom:882.676133pt;}
.y5a{bottom:889.861333pt;}
.y3e{bottom:890.566800pt;}
.y8f{bottom:890.676933pt;}
.y88{bottom:912.458400pt;}
.ya2{bottom:912.932000pt;}
.y96{bottom:915.773067pt;}
.ya0{bottom:920.981733pt;}
.yee{bottom:925.903867pt;}
.y9e{bottom:928.557867pt;}
.y95{bottom:929.031333pt;}
.y29{bottom:929.137467pt;}
.yd6{bottom:929.973733pt;}
.y8e{bottom:930.451867pt;}
.y1e{bottom:940.425467pt;}
.y42{bottom:948.658800pt;}
.yc4{bottom:950.966489pt;}
.y31{bottom:952.922533pt;}
.yb6{bottom:979.858135pt;}
.yc0{bottom:989.573037pt;}
.yfa{bottom:998.356933pt;}
.y7f{bottom:1002.148400pt;}
.y126{bottom:1016.377200pt;}
.y6{bottom:1029.632000pt;}
.y11b{bottom:1037.206267pt;}
.ybf{bottom:1041.852199pt;}
.yd8{bottom:1049.439467pt;}
.yf9{bottom:1052.196267pt;}
.y119{bottom:1052.366000pt;}
.y125{bottom:1076.405333pt;}
.ycf{bottom:1081.633467pt;}
.ya5{bottom:1085.339067pt;}
.y7d{bottom:1093.277467pt;}
.yd1{bottom:1099.463867pt;}
.yb3{bottom:1116.775333pt;}
.y1c{bottom:1124.289067pt;}
.y11a{bottom:1127.872933pt;}
.y118{bottom:1130.329733pt;}
.y105{bottom:1133.169467pt;}
.yc{bottom:1141.123467pt;}
.ya4{bottom:1143.088400pt;}
.y11{bottom:1145.427600pt;}
.yf{bottom:1147.765600pt;}
.y5{bottom:1153.218800pt;}
.y100{bottom:1160.642533pt;}
.y1a{bottom:1179.114000pt;}
.y10b{bottom:1191.577200pt;}
.yb{bottom:1198.872800pt;}
.yf4{bottom:1199.977067pt;}
.y28{bottom:1201.320133pt;}
.y10{bottom:1203.176933pt;}
.yf3{bottom:1203.397333pt;}
.yb5{bottom:1205.457753pt;}
.ye{bottom:1205.514933pt;}
.y11e{bottom:1206.831067pt;}
.yda{bottom:1217.159733pt;}
.y7e{bottom:1220.077200pt;}
.y113{bottom:1253.508533pt;}
.y4{bottom:1279.828000pt;}
.ydb{bottom:1280.387333pt;}
.y10e{bottom:1283.230400pt;}
.ycc{bottom:1285.569067pt;}
.ye5{bottom:1287.893467pt;}
.yde{bottom:1290.002533pt;}
.yd9{bottom:1293.635867pt;}
.y116{bottom:1299.278000pt;}
.yca{bottom:1300.082667pt;}
.yf8{bottom:1304.235733pt;}
.ya{bottom:1307.884933pt;}
.y23{bottom:1317.346667pt;}
.y11d{bottom:1317.355200pt;}
.y43{bottom:1317.507600pt;}
.ya3{bottom:1319.964533pt;}
.y81{bottom:1329.803067pt;}
.ycb{bottom:1357.400000pt;}
.y122{bottom:1391.537333pt;}
.h22{height:60.295739pt;}
.h25{height:63.936819pt;}
.h7{height:71.299867pt;}
.h47{height:77.210391pt;}
.h1f{height:80.754393pt;}
.h21{height:83.744083pt;}
.h33{height:89.007109pt;}
.h1e{height:90.396709pt;}
.h2f{height:92.387607pt;}
.h24{height:99.906468pt;}
.h1a{height:101.244314pt;}
.h2b{height:102.101083pt;}
.h17{height:102.660290pt;}
.h16{height:103.985389pt;}
.h35{height:107.995292pt;}
.h34{height:108.063410pt;}
.h1d{height:109.681340pt;}
.h1c{height:109.686605pt;}
.h4e{height:112.860347pt;}
.he{height:114.154687pt;}
.h30{height:115.829239pt;}
.h18{height:116.401700pt;}
.h5e{height:116.484375pt;}
.h60{height:116.960000pt;}
.h5c{height:122.214400pt;}
.h6{height:123.200000pt;}
.h1b{height:124.114560pt;}
.h3f{height:124.757333pt;}
.h23{height:125.093455pt;}
.h31{height:125.481675pt;}
.h2e{height:125.486340pt;}
.h58{height:126.208000pt;}
.h8{height:126.825413pt;}
.h2d{height:128.143936pt;}
.h2c{height:128.144469pt;}
.h12{height:128.708423pt;}
.h3e{height:130.720462pt;}
.h5b{height:131.413333pt;}
.hc{height:136.453333pt;}
.h3d{height:138.414274pt;}
.h39{height:138.501442pt;}
.h3a{height:140.775882pt;}
.h3b{height:141.141687pt;}
.h15{height:141.233886pt;}
.h14{height:141.234063pt;}
.h4a{height:141.926400pt;}
.h56{height:142.223360pt;}
.h54{height:147.840000pt;}
.h55{height:150.666667pt;}
.h38{height:150.867838pt;}
.h5f{height:151.946667pt;}
.h3c{height:155.619598pt;}
.h1{height:155.946667pt;}
.h51{height:159.017803pt;}
.h13{height:159.819459pt;}
.h4{height:164.266667pt;}
.h53{height:168.145920pt;}
.h5a{height:172.480000pt;}
.h4d{height:175.307436pt;}
.hd{height:175.440000pt;}
.h52{height:183.237333pt;}
.h42{height:187.136000pt;}
.h43{height:191.206400pt;}
.h57{height:192.810667pt;}
.h4f{height:193.890572pt;}
.h27{height:194.933333pt;}
.h59{height:195.148800pt;}
.h44{height:197.120000pt;}
.h36{height:198.832000pt;}
.h29{height:203.280000pt;}
.h9{height:214.426667pt;}
.h37{height:219.587467pt;}
.h3{height:233.920000pt;}
.h40{height:249.514667pt;}
.h50{height:257.687467pt;}
.hf{height:265.138187pt;}
.h45{height:281.678667pt;}
.h5d{height:288.306400pt;}
.hb{height:291.620267pt;}
.h48{height:304.875733pt;}
.h28{height:308.189600pt;}
.h4b{height:311.503467pt;}
.h5{height:331.386667pt;}
.h49{height:343.524933pt;}
.h4c{height:364.296933pt;}
.h26{height:370.261333pt;}
.h2{height:374.272000pt;}
.h41{height:387.560587pt;}
.ha{height:529.114293pt;}
.h10{height:529.114400pt;}
.h20{height:797.533067pt;}
.h32{height:879.849867pt;}
.h46{height:923.301067pt;}
.h19{height:926.283467pt;}
.h2a{height:979.223600pt;}
.h11{height:1094.688000pt;}
.h0{height:1440.000000pt;}
.wc{width:142.956400pt;}
.w8{width:177.199867pt;}
.w1{width:506.233867pt;}
.w2{width:619.373333pt;}
.wd{width:628.375200pt;}
.wb{width:685.145467pt;}
.wa{width:780.335733pt;}
.w7{width:1009.810387pt;}
.w5{width:1166.400133pt;}
.w9{width:1262.056933pt;}
.w3{width:1269.498800pt;}
.w4{width:1278.442933pt;}
.w6{width:1415.381267pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:8.614501pt;}
.x1a{left:11.650667pt;}
.x77{left:13.528133pt;}
.x1c{left:15.533333pt;}
.x1{left:17.914733pt;}
.x62{left:20.388067pt;}
.x9d{left:24.399520pt;}
.x28{left:27.522280pt;}
.x7d{left:32.893480pt;}
.x38{left:35.639453pt;}
.x1e{left:37.840320pt;}
.x9{left:39.903227pt;}
.x66{left:43.564720pt;}
.x9b{left:45.076493pt;}
.x16{left:47.607293pt;}
.x2f{left:49.031733pt;}
.x81{left:50.418240pt;}
.x3b{left:53.272867pt;}
.x26{left:54.952147pt;}
.xc8{left:55.866867pt;}
.xa6{left:57.538667pt;}
.x4c{left:59.814800pt;}
.x64{left:61.085333pt;}
.xab{left:63.527427pt;}
.xba{left:65.152000pt;}
.xa1{left:66.877333pt;}
.x2e{left:68.751067pt;}
.xaf{left:70.277827pt;}
.x8e{left:73.582168pt;}
.x9e{left:82.076411pt;}
.xa{left:95.298787pt;}
.x98{left:100.486360pt;}
.xb3{left:103.628067pt;}
.x9f{left:108.398853pt;}
.xbb{left:109.622147pt;}
.x8{left:126.541560pt;}
.x3a{left:146.816267pt;}
.x99{left:150.375067pt;}
.x63{left:156.264867pt;}
.x58{left:158.740133pt;}
.x65{left:164.314867pt;}
.x56{left:168.709467pt;}
.x39{left:181.998533pt;}
.x2d{left:189.198800pt;}
.x5c{left:210.514933pt;}
.x6a{left:215.929533pt;}
.x7e{left:217.202920pt;}
.x3f{left:223.389333pt;}
.xc2{left:232.091333pt;}
.x80{left:237.170920pt;}
.x1f{left:240.227867pt;}
.x84{left:250.739662pt;}
.x85{left:264.393753pt;}
.x83{left:267.110951pt;}
.x97{left:275.035467pt;}
.xc9{left:279.541733pt;}
.x4e{left:284.122800pt;}
.x2c{left:291.526800pt;}
.x6c{left:298.797267pt;}
.xc3{left:315.380133pt;}
.x3c{left:320.244000pt;}
.x24{left:323.757067pt;}
.x45{left:326.866533pt;}
.x2{left:328.256000pt;}
.x90{left:330.448800pt;}
.x4f{left:334.352133pt;}
.x52{left:335.502800pt;}
.xbc{left:351.065467pt;}
.x69{left:360.829667pt;}
.x51{left:364.644133pt;}
.x50{left:378.064133pt;}
.x32{left:385.858800pt;}
.xca{left:387.789467pt;}
.x96{left:389.915467pt;}
.xb6{left:402.360000pt;}
.x9a{left:424.785733pt;}
.xbd{left:432.309867pt;}
.x7f{left:460.893987pt;}
.x95{left:475.690933pt;}
.x57{left:483.890800pt;}
.x4{left:492.050267pt;}
.x33{left:496.181467pt;}
.x53{left:530.669467pt;}
.x3{left:535.936000pt;}
.x31{left:551.074800pt;}
.x3d{left:552.032800pt;}
.x8b{left:565.701725pt;}
.x30{left:570.261467pt;}
.xce{left:572.649200pt;}
.x8c{left:574.135254pt;}
.x6d{left:578.653400pt;}
.x67{left:579.600467pt;}
.xd{left:614.765467pt;}
.x3e{left:620.741733pt;}
.xc{left:630.507733pt;}
.x6e{left:649.682867pt;}
.x68{left:650.629933pt;}
.xb5{left:658.520000pt;}
.x55{left:707.814800pt;}
.x34{left:709.362800pt;}
.x87{left:711.132971pt;}
.x54{left:725.836133pt;}
.x25{left:727.641333pt;}
.x48{left:765.195867pt;}
.x35{left:769.053467pt;}
.x43{left:780.510400pt;}
.x73{left:787.480067pt;}
.x27{left:798.413067pt;}
.x72{left:805.000600pt;}
.x42{left:815.278800pt;}
.x4d{left:820.928133pt;}
.x71{left:824.888867pt;}
.x70{left:844.777133pt;}
.x40{left:867.431333pt;}
.x41{left:873.639867pt;}
.x37{left:878.309467pt;}
.x46{left:905.096933pt;}
.x4a{left:909.650000pt;}
.x6b{left:911.544867pt;}
.x6f{left:912.491933pt;}
.x44{left:943.176533pt;}
.xc7{left:947.152133pt;}
.x76{left:971.683133pt;}
.x86{left:1010.142154pt;}
.xb{left:1023.526667pt;}
.x49{left:1030.925200pt;}
.x92{left:1042.086133pt;}
.x88{left:1050.127867pt;}
.xcb{left:1072.194533pt;}
.xe{left:1087.686933pt;}
.x47{left:1107.084400pt;}
.x36{left:1109.078800pt;}
.x74{left:1111.847933pt;}
.xf{left:1142.060267pt;}
.xac{left:1172.330667pt;}
.x2b{left:1254.990533pt;}
.x8d{left:1262.007202pt;}
.x1b{left:1266.013733pt;}
.x17{left:1286.006000pt;}
.x75{left:1296.524600pt;}
.x2a{left:1308.190933pt;}
.xc5{left:1309.611333pt;}
.x4b{left:1313.939867pt;}
.xad{left:1329.571733pt;}
.x20{left:1334.962667pt;}
.xb1{left:1339.992000pt;}
.x6{left:1357.542667pt;}
.xc6{left:1358.537333pt;}
.xb2{left:1382.658667pt;}
.x8a{left:1391.350185pt;}
.x1d{left:1398.281333pt;}
.x19{left:1409.073333pt;}
.xc4{left:1417.148000pt;}
.x59{left:1436.105333pt;}
.x29{left:1438.972000pt;}
.x18{left:1477.106667pt;}
.x5{left:1485.969333pt;}
.x5a{left:1496.442667pt;}
.x89{left:1535.817949pt;}
.xb7{left:1546.977333pt;}
.xa5{left:1592.554667pt;}
.xa8{left:1613.949333pt;}
.xa4{left:1615.657333pt;}
.xa9{left:1620.904000pt;}
.xb8{left:1644.573333pt;}
.x93{left:1667.056000pt;}
.xa0{left:1674.452000pt;}
.x10{left:1675.992000pt;}
.x9c{left:1693.841333pt;}
.x11{left:1701.734667pt;}
.x7{left:1711.036000pt;}
.xae{left:1718.124000pt;}
.xa3{left:1743.832000pt;}
.x60{left:1767.702667pt;}
.xb4{left:1780.256000pt;}
.x61{left:1800.648000pt;}
.xb9{left:1814.538667pt;}
.x7a{left:1873.136000pt;}
.x8f{left:1876.306667pt;}
.xb0{left:1881.314667pt;}
.xc0{left:1885.616000pt;}
.x78{left:1953.136000pt;}
.x7b{left:1973.438667pt;}
.x79{left:1992.692000pt;}
.x21{left:2035.876000pt;}
.xbf{left:2060.820000pt;}
.x23{left:2078.360000pt;}
.x5f{left:2080.749333pt;}
.x12{left:2094.369333pt;}
.x5b{left:2120.778667pt;}
.x22{left:2122.365333pt;}
.xbe{left:2126.592000pt;}
.x14{left:2136.853333pt;}
.xa7{left:2152.584000pt;}
.x13{left:2180.858667pt;}
.x15{left:2207.512000pt;}
.x91{left:2219.498667pt;}
.xcd{left:2255.177333pt;}
.x94{left:2257.772000pt;}
.x5e{left:2289.530667pt;}
.xaa{left:2305.594667pt;}
.xc1{left:2312.401333pt;}
.xa2{left:2333.550667pt;}
.x5d{left:2345.157333pt;}
.x82{left:2382.800000pt;}
.xcc{left:2437.222667pt;}
}




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