
    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_f91af2efc01d1c75d0158e80.woff')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_e3859656bdf0ee0a6e5de857.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_6518e402f2e430d20d877550.woff')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_cdaf66cfd71b0f822303137f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_c968041237b54ef690958677.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_4e64361f0fa1c0f3a5b549a2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.192383;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_23beb5bbd2f9af7bdf741179.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_48c20813c1b271468a573903.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_36d1c9c175ceef82f9f15104.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_109b1ea2a9bf2908f8f8bf4c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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_0f1cd0c9ce9e2e4de1509f85.woff')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_009f269d8c38b36e96422f67.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c6945238d7065c00c5445da6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0f1cd0c9ce9e2e4de1509f85.woff')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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_cbc86e9147a473d0a343a007.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dac11530a7b907948bb1f206.woff')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_36d1c9c175ceef82f9f15104.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_92d241fbcf9513e574018871.woff')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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_2a158deb2b61fe7b14d82986.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cb84c89c83a19c6e3f1d458e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.686000;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_0226d4d424941d8ff3d0aad7.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_36d1c9c175ceef82f9f15104.woff')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_92d241fbcf9513e574018871.woff')format("woff");}.ff17{font-family:ff17;line-height:0.999000;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_2a158deb2b61fe7b14d82986.woff')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_cb84c89c83a19c6e3f1d458e.woff')format("woff");}.ff19{font-family:ff19;line-height:0.686000;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_ecf6a6186027d82baea613d7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_142ab8ebf73166687106e139.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.362000;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_6f1c9e759530888616b7366f.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.750000;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_773c2f035515fc193e49db2a.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.384000;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_8ea552a6c9491fcd8fdd63e6.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_debbd86db899fc030d709482.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a959057d7d3bce93e87fd87b.woff')format("woff");}.ff20{font-family:ff20;line-height:0.999000;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_8410772028ccdc6f1f9e5c47.woff')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0f1cd0c9ce9e2e4de1509f85.woff')format("woff");}.ff22{font-family:ff22;line-height:0.686000;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_109b1ea2a9bf2908f8f8bf4c.woff')format("woff");}.ff23{font-family:ff23;line-height:1.199000;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_c4587a0107a8790e5e8ab9cd.woff')format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_2a8ed158e24d5a7113ccfc54.woff')format("woff");}.ff25{font-family:ff25;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_a959057d7d3bce93e87fd87b.woff')format("woff");}.ff26{font-family:ff26;line-height:0.999000;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_8410772028ccdc6f1f9e5c47.woff')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_0f1cd0c9ce9e2e4de1509f85.woff')format("woff");}.ff28{font-family:ff28;line-height:0.686000;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_109b1ea2a9bf2908f8f8bf4c.woff')format("woff");}.ff29{font-family:ff29;line-height:1.199000;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_8ea552a6c9491fcd8fdd63e6.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_943b15d70c6d2d6de6f44f04.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.999000;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_debbd86db899fc030d709482.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_fde4be075cb422e755a807fc.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_bfeae2a242949a311263d596.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-46.925995px;}
.v5{vertical-align:-18.630249px;}
.v3{vertical-align:-17.594971px;}
.v10{vertical-align:-14.489868px;}
.vd{vertical-align:-13.452027px;}
.v9{vertical-align:-8.370003px;}
.v8{vertical-align:-6.372070px;}
.v6{vertical-align:-4.584045px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.394010px;}
.va{vertical-align:8.370003px;}
.v4{vertical-align:17.594971px;}
.v2{vertical-align:18.630066px;}
.v1{vertical-align:20.699890px;}
.v7{vertical-align:21.938363px;}
.vc{vertical-align:25.836591px;}
.ve{vertical-align:46.926086px;}
.ls3c{letter-spacing:-4.860000px;}
.ls47{letter-spacing:-4.365000px;}
.ls40{letter-spacing:-2.790000px;}
.ls43{letter-spacing:-1.350000px;}
.ls20{letter-spacing:-1.147699px;}
.ls49{letter-spacing:-1.125000px;}
.ls42{letter-spacing:-1.080000px;}
.ls4e{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.972000px;}
.ls48{letter-spacing:-0.855000px;}
.ls3f{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.718200px;}
.ls29{letter-spacing:-0.702000px;}
.ls3d{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.486000px;}
.ls41{letter-spacing:-0.450000px;}
.ls4b{letter-spacing:-0.405000px;}
.ls1e{letter-spacing:-0.324000px;}
.ls4d{letter-spacing:-0.315000px;}
.ls2e{letter-spacing:-0.189000px;}
.ls4c{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.108000px;}
.ls8{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000004px;}
.ls2a{letter-spacing:0.000006px;}
.ls5{letter-spacing:0.000008px;}
.lsa{letter-spacing:0.000012px;}
.ls2b{letter-spacing:0.000025px;}
.ls26{letter-spacing:0.000044px;}
.ls15{letter-spacing:0.000050px;}
.ls24{letter-spacing:0.000056px;}
.ls16{letter-spacing:0.000075px;}
.ls46{letter-spacing:0.000086px;}
.ls44{letter-spacing:0.000088px;}
.ls4{letter-spacing:0.000104px;}
.ls2d{letter-spacing:0.000135px;}
.lsb{letter-spacing:0.000233px;}
.ls6{letter-spacing:0.011429px;}
.ls1{letter-spacing:0.013800px;}
.ls2{letter-spacing:0.014254px;}
.ls3{letter-spacing:0.014435px;}
.ls0{letter-spacing:0.014438px;}
.lsf{letter-spacing:0.014728px;}
.ls32{letter-spacing:0.018650px;}
.ls36{letter-spacing:0.018833px;}
.ls37{letter-spacing:0.021582px;}
.ls34{letter-spacing:0.027441px;}
.ls19{letter-spacing:0.032561px;}
.ls3a{letter-spacing:0.032968px;}
.ls1a{letter-spacing:0.033110px;}
.ls22{letter-spacing:0.038012px;}
.ls18{letter-spacing:0.038562px;}
.ls38{letter-spacing:0.041317px;}
.ls17{letter-spacing:0.042970px;}
.ls28{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.225000px;}
.ls3e{letter-spacing:0.543179px;}
.ls14{letter-spacing:1.560154px;}
.ls23{letter-spacing:1.900877px;}
.ls27{letter-spacing:2.474726px;}
.ls35{letter-spacing:2.992124px;}
.ls7{letter-spacing:3.000000px;}
.ls3b{letter-spacing:3.012710px;}
.ls1b{letter-spacing:4.196275px;}
.ls45{letter-spacing:5.544887px;}
.ls21{letter-spacing:5.774362px;}
.ls33{letter-spacing:12.266035px;}
.ls31{letter-spacing:12.319834px;}
.ls10{letter-spacing:15.269421px;}
.ls39{letter-spacing:16.448136px;}
.ls12{letter-spacing:18.338128px;}
.ls1d{letter-spacing:18.399053px;}
.lse{letter-spacing:30.718886px;}
.ls1c{letter-spacing:33.731597px;}
.ls13{letter-spacing:33.785395px;}
.ls11{letter-spacing:39.972211px;}
.ls30{letter-spacing:46.105229px;}
.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;}
}
.ws83{word-spacing:-66.000000px;}
.ws0{word-spacing:-60.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws5{word-spacing:-48.000000px;}
.ws1{word-spacing:-42.000000px;}
.ws5c{word-spacing:-33.731597px;}
.ws48{word-spacing:-18.452851px;}
.ws6{word-spacing:-15.000000px;}
.ws81{word-spacing:-12.582000px;}
.wsa5{word-spacing:-12.366000px;}
.wsd1{word-spacing:-12.266035px;}
.ws14{word-spacing:-12.258000px;}
.ws15{word-spacing:-12.096000px;}
.wsb2{word-spacing:-11.826000px;}
.ws9b{word-spacing:-11.718000px;}
.ws82{word-spacing:-11.664000px;}
.ws16{word-spacing:-11.286000px;}
.ws120{word-spacing:-11.232000px;}
.ws103{word-spacing:-10.440000px;}
.wse4{word-spacing:-10.305000px;}
.wse3{word-spacing:-9.855000px;}
.ws104{word-spacing:-9.810000px;}
.wse0{word-spacing:-9.765000px;}
.wse1{word-spacing:-9.585000px;}
.ws101{word-spacing:-9.450000px;}
.wsfd{word-spacing:-9.225000px;}
.ws102{word-spacing:-9.180000px;}
.ws4a{word-spacing:-9.172627px;}
.wsc9{word-spacing:-9.114000px;}
.wse5{word-spacing:-8.955000px;}
.ws3{word-spacing:-8.580600px;}
.wsb8{word-spacing:-8.467200px;}
.ws4d{word-spacing:-7.862400px;}
.wse2{word-spacing:-7.515000px;}
.ws4{word-spacing:-7.140000px;}
.ws8{word-spacing:-6.600000px;}
.wsca{word-spacing:-6.379800px;}
.ws100{word-spacing:-5.940000px;}
.ws4f{word-spacing:-5.810227px;}
.wsc5{word-spacing:-3.780000px;}
.ws89{word-spacing:-3.402000px;}
.ws74{word-spacing:-3.348000px;}
.ws42{word-spacing:-3.294000px;}
.ws59{word-spacing:-3.024000px;}
.ws105{word-spacing:-2.925000px;}
.ws2b{word-spacing:-2.700000px;}
.ws21{word-spacing:-2.646000px;}
.ws91{word-spacing:-2.592000px;}
.ws43{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.268000px;}
.wsbb{word-spacing:-2.214000px;}
.ws92{word-spacing:-2.160000px;}
.ws57{word-spacing:-2.106000px;}
.ws5a{word-spacing:-2.052000px;}
.ws9e{word-spacing:-1.998000px;}
.wsb4{word-spacing:-1.944000px;}
.ws80{word-spacing:-1.936742px;}
.ws10c{word-spacing:-1.935000px;}
.ws32{word-spacing:-1.890000px;}
.wsff{word-spacing:-1.845000px;}
.wsd3{word-spacing:-1.836000px;}
.ws39{word-spacing:-1.782000px;}
.wsdd{word-spacing:-1.728000px;}
.wsa3{word-spacing:-1.674000px;}
.wsea{word-spacing:-1.620000px;}
.ws20{word-spacing:-1.512000px;}
.ws8b{word-spacing:-1.458000px;}
.ws9{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.404000px;}
.ws70{word-spacing:-1.296000px;}
.ws72{word-spacing:-1.242000px;}
.ws8c{word-spacing:-1.188000px;}
.ws113{word-spacing:-1.170000px;}
.ws29{word-spacing:-1.134000px;}
.ws5b{word-spacing:-1.080000px;}
.wsf3{word-spacing:-1.035000px;}
.wsde{word-spacing:-1.026000px;}
.wsb{word-spacing:-0.972000px;}
.ws123{word-spacing:-0.918000px;}
.ws10e{word-spacing:-0.900000px;}
.ws1f{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.810000px;}
.wsf8{word-spacing:-0.765000px;}
.wsb0{word-spacing:-0.702000px;}
.ws3a{word-spacing:-0.648000px;}
.ws37{word-spacing:-0.594000px;}
.ws117{word-spacing:-0.585000px;}
.ws122{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.486000px;}
.wsa6{word-spacing:-0.378000px;}
.wsd0{word-spacing:-0.324000px;}
.ws10f{word-spacing:-0.315000px;}
.ws77{word-spacing:-0.270000px;}
.wsf5{word-spacing:-0.225000px;}
.ws95{word-spacing:-0.216000px;}
.ws35{word-spacing:-0.162000px;}
.wsec{word-spacing:-0.135000px;}
.ws34{word-spacing:-0.108000px;}
.ws94{word-spacing:-0.054000px;}
.ws49{word-spacing:-0.053798px;}
.wsf9{word-spacing:-0.045000px;}
.ws7{word-spacing:0.000000px;}
.ws46{word-spacing:0.054000px;}
.ws13{word-spacing:0.108000px;}
.ws9f{word-spacing:0.162000px;}
.ws114{word-spacing:0.180000px;}
.ws2d{word-spacing:0.216000px;}
.ws10d{word-spacing:0.225000px;}
.ws17{word-spacing:0.270000px;}
.ws116{word-spacing:0.315000px;}
.wsda{word-spacing:0.324000px;}
.wsaf{word-spacing:0.378000px;}
.ws1b{word-spacing:0.432000px;}
.ws3b{word-spacing:0.486000px;}
.wsed{word-spacing:0.540000px;}
.ws112{word-spacing:0.585000px;}
.ws11f{word-spacing:0.594000px;}
.ws67{word-spacing:0.648000px;}
.wsee{word-spacing:0.810000px;}
.wsef{word-spacing:0.855000px;}
.ws6f{word-spacing:0.864000px;}
.ws119{word-spacing:0.945000px;}
.ws33{word-spacing:0.972000px;}
.ws106{word-spacing:0.990000px;}
.wsdc{word-spacing:1.026000px;}
.ws27{word-spacing:1.134000px;}
.wsf6{word-spacing:1.170000px;}
.wsa2{word-spacing:1.188000px;}
.ws6d{word-spacing:1.242000px;}
.wsa4{word-spacing:1.296000px;}
.ws108{word-spacing:1.305000px;}
.ws8e{word-spacing:1.350000px;}
.wse8{word-spacing:1.404000px;}
.ws2f{word-spacing:1.458000px;}
.ws90{word-spacing:1.512000px;}
.wsfc{word-spacing:1.530000px;}
.ws38{word-spacing:1.566000px;}
.ws1e{word-spacing:1.620000px;}
.wsba{word-spacing:1.674000px;}
.ws75{word-spacing:1.728000px;}
.wsfa{word-spacing:1.755000px;}
.ws121{word-spacing:1.782000px;}
.wsf1{word-spacing:1.800000px;}
.ws58{word-spacing:1.836000px;}
.ws96{word-spacing:1.890000px;}
.ws6b{word-spacing:1.944000px;}
.ws61{word-spacing:1.998000px;}
.wseb{word-spacing:2.052000px;}
.ws10b{word-spacing:2.070000px;}
.ws64{word-spacing:2.106000px;}
.wsad{word-spacing:2.214000px;}
.ws7b{word-spacing:2.268000px;}
.ws87{word-spacing:2.322000px;}
.wsf4{word-spacing:2.340000px;}
.ws8a{word-spacing:2.376000px;}
.wsdb{word-spacing:2.430000px;}
.ws52{word-spacing:2.484000px;}
.wsbe{word-spacing:2.538000px;}
.ws56{word-spacing:2.592000px;}
.wsc3{word-spacing:2.646000px;}
.ws115{word-spacing:2.655000px;}
.ws3e{word-spacing:2.700000px;}
.ws2c{word-spacing:2.808000px;}
.ws30{word-spacing:2.862000px;}
.wse9{word-spacing:2.970000px;}
.ws66{word-spacing:3.024000px;}
.ws111{word-spacing:3.060000px;}
.ws93{word-spacing:3.078000px;}
.ws3f{word-spacing:3.132000px;}
.wsac{word-spacing:3.186000px;}
.ws41{word-spacing:3.240000px;}
.ws1a{word-spacing:3.294000px;}
.ws11a{word-spacing:3.330000px;}
.ws99{word-spacing:3.402000px;}
.ws45{word-spacing:3.456000px;}
.wsb9{word-spacing:3.510000px;}
.wsb6{word-spacing:3.564000px;}
.ws19{word-spacing:3.672000px;}
.wsc{word-spacing:3.780000px;}
.ws28{word-spacing:3.834000px;}
.ws36{word-spacing:3.888000px;}
.ws79{word-spacing:3.942000px;}
.wsc1{word-spacing:3.996000px;}
.ws25{word-spacing:4.050000px;}
.wsa1{word-spacing:4.104000px;}
.ws10{word-spacing:4.158000px;}
.wsfb{word-spacing:4.185000px;}
.ws6a{word-spacing:4.212000px;}
.ws73{word-spacing:4.266000px;}
.ws86{word-spacing:4.320000px;}
.ws11d{word-spacing:4.374000px;}
.wsf7{word-spacing:4.410000px;}
.wsab{word-spacing:4.428000px;}
.ws97{word-spacing:4.482000px;}
.ws62{word-spacing:4.590000px;}
.ws11b{word-spacing:4.635000px;}
.ws12{word-spacing:4.644000px;}
.ws68{word-spacing:4.698000px;}
.ws109{word-spacing:4.725000px;}
.wsb7{word-spacing:4.752000px;}
.ws10a{word-spacing:4.770000px;}
.ws65{word-spacing:4.806000px;}
.ws11c{word-spacing:4.815000px;}
.ws69{word-spacing:4.860000px;}
.wsc4{word-spacing:4.914000px;}
.wsfe{word-spacing:4.950000px;}
.ws88{word-spacing:4.968000px;}
.ws3d{word-spacing:5.022000px;}
.ws9c{word-spacing:5.076000px;}
.wsd{word-spacing:5.130000px;}
.ws7d{word-spacing:5.243551px;}
.ws22{word-spacing:5.400000px;}
.wsa7{word-spacing:5.454000px;}
.wsb5{word-spacing:5.508000px;}
.ws110{word-spacing:5.535000px;}
.ws55{word-spacing:5.616000px;}
.ws124{word-spacing:5.670000px;}
.wsbf{word-spacing:5.724000px;}
.wsa8{word-spacing:5.778000px;}
.ws54{word-spacing:5.832000px;}
.wsaa{word-spacing:5.886000px;}
.ws9d{word-spacing:5.940000px;}
.wsd4{word-spacing:5.994000px;}
.ws118{word-spacing:6.030000px;}
.ws63{word-spacing:6.048000px;}
.wsae{word-spacing:6.102000px;}
.ws7a{word-spacing:6.264000px;}
.ws76{word-spacing:6.372000px;}
.ws6c{word-spacing:6.426000px;}
.wsc0{word-spacing:6.480000px;}
.wsf{word-spacing:6.588000px;}
.ws8d{word-spacing:6.750000px;}
.wse{word-spacing:6.804000px;}
.wse6{word-spacing:6.858000px;}
.wsa0{word-spacing:6.912000px;}
.ws1d{word-spacing:7.020000px;}
.ws23{word-spacing:7.128000px;}
.ws11e{word-spacing:7.236000px;}
.ws44{word-spacing:7.290000px;}
.ws71{word-spacing:7.344000px;}
.wsc2{word-spacing:7.506000px;}
.wsb1{word-spacing:7.614000px;}
.wsd8{word-spacing:7.722000px;}
.ws18{word-spacing:7.776000px;}
.ws107{word-spacing:7.785000px;}
.ws6e{word-spacing:7.830000px;}
.wsf0{word-spacing:8.100000px;}
.wsbc{word-spacing:8.154000px;}
.ws2e{word-spacing:8.208000px;}
.wsf2{word-spacing:8.235000px;}
.wsa9{word-spacing:8.262000px;}
.ws5e{word-spacing:8.316000px;}
.ws9a{word-spacing:8.532000px;}
.ws26{word-spacing:8.586000px;}
.ws24{word-spacing:8.694000px;}
.wse7{word-spacing:8.802000px;}
.ws60{word-spacing:8.856000px;}
.ws11{word-spacing:9.018000px;}
.ws1c{word-spacing:9.072000px;}
.ws4c{word-spacing:9.366301px;}
.ws8f{word-spacing:9.990000px;}
.ws85{word-spacing:10.206000px;}
.wsa{word-spacing:11.988000px;}
.wsb3{word-spacing:12.096000px;}
.wsc7{word-spacing:12.176349px;}
.wsc6{word-spacing:12.176532px;}
.wsd9{word-spacing:13.068000px;}
.ws3c{word-spacing:13.554000px;}
.ws78{word-spacing:13.770000px;}
.wsdf{word-spacing:14.742000px;}
.ws98{word-spacing:14.796000px;}
.ws50{word-spacing:15.245250px;}
.ws51{word-spacing:16.399273px;}
.ws7f{word-spacing:17.537355px;}
.wsd7{word-spacing:18.414000px;}
.ws31{word-spacing:18.792000px;}
.ws7e{word-spacing:19.175252px;}
.ws4e{word-spacing:20.608583px;}
.ws47{word-spacing:25.339046px;}
.ws4b{word-spacing:30.611290px;}
.wsc8{word-spacing:30.826483px;}
.wscf{word-spacing:32.989819px;}
.wscb{word-spacing:33.404950px;}
.wscd{word-spacing:33.405133px;}
.wscc{word-spacing:40.869636px;}
.wsce{word-spacing:55.958950px;}
.wsd5{word-spacing:698.976000px;}
.ws7c{word-spacing:714.959988px;}
.ws5d{word-spacing:758.538000px;}
.wsd2{word-spacing:807.137976px;}
.ws84{word-spacing:836.352000px;}
.ws5f{word-spacing:877.500000px;}
.wsd6{word-spacing:945.593983px;}
._f{margin-left:-18.326224px;}
._e{margin-left:-16.907400px;}
._1f{margin-left:-15.750000px;}
._18{margin-left:-14.167817px;}
._1b{margin-left:-12.555000px;}
._1d{margin-left:-11.385000px;}
._1c{margin-left:-9.990000px;}
._c{margin-left:-8.043260px;}
._6{margin-left:-6.044224px;}
._2{margin-left:-4.301576px;}
._0{margin-left:-3.073200px;}
._1{margin-left:-1.260000px;}
._5{width:1.459800px;}
._7{width:3.354940px;}
._8{width:4.767260px;}
._9{width:6.028342px;}
._3{width:7.042958px;}
._a{width:8.194818px;}
._1a{width:9.405000px;}
._19{width:11.340000px;}
._10{width:12.362400px;}
._d{width:14.308764px;}
._4{width:17.314779px;}
._13{width:42.524369px;}
._12{width:62.681436px;}
._14{width:65.492401px;}
._15{width:95.574627px;}
._11{width:104.893826px;}
._17{width:115.734636px;}
._16{width:136.769436px;}
._1e{width:2254.578077px;}
._b{width:2285.339429px;}
.fc4{color:rgb(205,23,25);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.400000px;}
.fs5{font-size:35.699999px;}
.fsc{font-size:35.865600px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:53.798400px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:59.775599px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:1.095304px;}
.y146{bottom:1.791161px;}
.ybd{bottom:1.792511px;}
.y8a{bottom:2.538895px;}
.y91{bottom:3.661057px;}
.yba{bottom:4.631699px;}
.y133{bottom:5.902176px;}
.y13d{bottom:5.902359px;}
.y87{bottom:6.579895px;}
.y140{bottom:17.633858px;}
.y89{bottom:18.311371px;}
.y2b{bottom:27.634050px;}
.y2c{bottom:27.643049px;}
.yb8{bottom:66.490202px;}
.yb9{bottom:66.490499px;}
.ybb{bottom:70.097550px;}
.yfc{bottom:71.378849px;}
.y29{bottom:72.430200px;}
.y127{bottom:73.688999px;}
.ye5{bottom:78.524998px;}
.y28{bottom:83.031452px;}
.y116{bottom:84.218850px;}
.yfb{bottom:86.378849px;}
.y126{bottom:88.688999px;}
.y154{bottom:90.033148px;}
.ye4{bottom:93.524998px;}
.y6f{bottom:94.980148px;}
.yb7{bottom:96.661045px;}
.y1a2{bottom:97.103850px;}
.y27{bottom:98.031452px;}
.y115{bottom:99.218845px;}
.yfa{bottom:101.378849px;}
.y1ec{bottom:102.615898px;}
.y125{bottom:103.688999px;}
.y153{bottom:105.033154px;}
.y1a1{bottom:109.703854px;}
.y6e{bottom:109.980148px;}
.yb6{bottom:111.661045px;}
.y26{bottom:113.031452px;}
.y114{bottom:114.218845px;}
.yf9{bottom:116.378849px;}
.y1eb{bottom:117.615898px;}
.y124{bottom:118.688999px;}
.y152{bottom:120.033154px;}
.y1a0{bottom:122.303844px;}
.y6d{bottom:124.980148px;}
.yb5{bottom:126.661045px;}
.y25{bottom:128.031452px;}
.y113{bottom:129.218845px;}
.yf8{bottom:131.378849px;}
.y1ea{bottom:132.615898px;}
.y123{bottom:133.688999px;}
.y19f{bottom:134.903847px;}
.y151{bottom:135.033154px;}
.y6c{bottom:139.980148px;}
.yb4{bottom:141.661045px;}
.y112{bottom:144.218845px;}
.yf7{bottom:146.378849px;}
.y24{bottom:147.430195px;}
.y19e{bottom:147.503849px;}
.y1e9{bottom:147.615898px;}
.y122{bottom:148.688999px;}
.y150{bottom:150.033154px;}
.y6b{bottom:154.980148px;}
.yb3{bottom:156.661045px;}
.y111{bottom:159.218845px;}
.y19d{bottom:160.103850px;}
.yf6{bottom:161.378849px;}
.y1e8{bottom:162.615898px;}
.y121{bottom:163.688999px;}
.y14f{bottom:165.033154px;}
.y6a{bottom:169.980148px;}
.yb2{bottom:171.661045px;}
.y19c{bottom:172.703854px;}
.y110{bottom:174.218845px;}
.yf5{bottom:176.378849px;}
.y1e7{bottom:177.615898px;}
.y120{bottom:178.688999px;}
.y14e{bottom:180.033154px;}
.y69{bottom:184.980148px;}
.y19b{bottom:185.303844px;}
.yb1{bottom:186.661045px;}
.y10f{bottom:189.218845px;}
.yf4{bottom:191.378849px;}
.y23{bottom:191.829150px;}
.y11f{bottom:193.689011px;}
.y14d{bottom:195.033142px;}
.y19a{bottom:197.903847px;}
.y68{bottom:199.980148px;}
.yb0{bottom:201.661057px;}
.y10e{bottom:204.218857px;}
.yf3{bottom:206.378860px;}
.y22{bottom:206.829140px;}
.y11e{bottom:208.689011px;}
.y14c{bottom:210.033142px;}
.y199{bottom:210.503860px;}
.y1e6{bottom:210.615898px;}
.y67{bottom:214.980148px;}
.yaf{bottom:216.661057px;}
.y10d{bottom:219.218857px;}
.yf2{bottom:221.378860px;}
.y21{bottom:221.829140px;}
.y198{bottom:223.103850px;}
.y11d{bottom:223.689011px;}
.y14b{bottom:225.033142px;}
.y1e5{bottom:225.615898px;}
.y66{bottom:229.980148px;}
.yae{bottom:231.661057px;}
.y10c{bottom:234.218857px;}
.y197{bottom:235.703842px;}
.yf1{bottom:236.378860px;}
.y20{bottom:236.829140px;}
.y11c{bottom:238.689011px;}
.y14a{bottom:240.033142px;}
.y1e4{bottom:240.615898px;}
.yad{bottom:246.661057px;}
.y196{bottom:248.303856px;}
.y10b{bottom:249.218857px;}
.yf0{bottom:251.378860px;}
.y1f{bottom:251.829140px;}
.y11b{bottom:253.689011px;}
.y149{bottom:255.033142px;}
.y1e3{bottom:255.615898px;}
.y195{bottom:260.903847px;}
.yac{bottom:261.661057px;}
.y65{bottom:262.980148px;}
.y10a{bottom:264.218857px;}
.yef{bottom:266.378860px;}
.y1e{bottom:266.829140px;}
.y11a{bottom:268.689011px;}
.y148{bottom:270.033142px;}
.y1e2{bottom:270.615898px;}
.y194{bottom:273.503860px;}
.yab{bottom:276.661057px;}
.y64{bottom:277.980148px;}
.y109{bottom:279.218857px;}
.yee{bottom:281.378860px;}
.y1d{bottom:281.829140px;}
.y119{bottom:283.689011px;}
.y1e1{bottom:285.615898px;}
.y193{bottom:286.103850px;}
.y63{bottom:292.980148px;}
.y108{bottom:294.218857px;}
.yed{bottom:296.378860px;}
.y1c{bottom:296.829140px;}
.y144{bottom:297.789139px;}
.y145{bottom:297.790489px;}
.y192{bottom:298.703842px;}
.y147{bottom:299.753860px;}
.y1e0{bottom:300.615898px;}
.yaa{bottom:306.661057px;}
.y62{bottom:307.980148px;}
.y107{bottom:309.218857px;}
.y191{bottom:311.303856px;}
.yec{bottom:311.378860px;}
.y1b{bottom:311.829140px;}
.y12d{bottom:314.745003px;}
.ya9{bottom:321.661057px;}
.y61{bottom:322.980148px;}
.y190{bottom:323.903847px;}
.y106{bottom:324.218857px;}
.yeb{bottom:326.378860px;}
.y143{bottom:326.745003px;}
.y1a{bottom:326.829140px;}
.y1df{bottom:333.615898px;}
.y18f{bottom:336.503860px;}
.ya8{bottom:336.661194px;}
.y60{bottom:337.980148px;}
.y105{bottom:339.218857px;}
.yea{bottom:341.378860px;}
.y142{bottom:341.745003px;}
.y129{bottom:342.890556px;}
.y1de{bottom:346.215889px;}
.y18e{bottom:349.103850px;}
.ya7{bottom:351.661194px;}
.y5f{bottom:352.980148px;}
.y104{bottom:354.218857px;}
.ye9{bottom:356.378860px;}
.y128{bottom:357.890556px;}
.y1dd{bottom:358.815903px;}
.y19{bottom:359.829140px;}
.y18d{bottom:361.703842px;}
.ya6{bottom:366.661194px;}
.y5e{bottom:367.980148px;}
.y103{bottom:369.218857px;}
.y13b{bottom:369.500839px;}
.y13c{bottom:369.500999px;}
.ye8{bottom:371.378860px;}
.y1dc{bottom:371.415894px;}
.y13e{bottom:373.909355px;}
.y18c{bottom:374.303856px;}
.y141{bottom:375.088211px;}
.y13f{bottom:375.403358px;}
.y18{bottom:376.329140px;}
.ya5{bottom:381.661194px;}
.y5d{bottom:382.980148px;}
.y1db{bottom:384.015884px;}
.y102{bottom:384.218857px;}
.ye7{bottom:386.378860px;}
.y18b{bottom:386.903870px;}
.y1da{bottom:396.615921px;}
.ya4{bottom:396.661194px;}
.y5c{bottom:397.980148px;}
.y101{bottom:399.218857px;}
.y18a{bottom:399.503860px;}
.y13a{bottom:403.631836px;}
.y17{bottom:405.585022px;}
.y1d9{bottom:409.215912px;}
.ya3{bottom:411.661194px;}
.y189{bottom:412.103850px;}
.y5b{bottom:412.980148px;}
.y100{bottom:414.218857px;}
.y139{bottom:418.631836px;}
.y1d8{bottom:421.815903px;}
.y16{bottom:422.085022px;}
.y188{bottom:424.703842px;}
.ya2{bottom:426.661194px;}
.y5a{bottom:427.980148px;}
.yff{bottom:429.218857px;}
.y138{bottom:433.631836px;}
.y1d7{bottom:434.415894px;}
.y187{bottom:437.303833px;}
.y15{bottom:438.585022px;}
.ya1{bottom:441.661194px;}
.y59{bottom:442.980148px;}
.yfe{bottom:444.240143px;}
.y1d6{bottom:447.015884px;}
.y137{bottom:448.631836px;}
.y186{bottom:449.903870px;}
.y14{bottom:455.085022px;}
.ya0{bottom:456.661194px;}
.ye6{bottom:457.484985px;}
.y58{bottom:457.980148px;}
.yfd{bottom:459.240143px;}
.y1d5{bottom:459.615921px;}
.y185{bottom:462.503860px;}
.y13{bottom:471.585022px;}
.y9f{bottom:471.661194px;}
.y1d4{bottom:472.215912px;}
.y57{bottom:472.980148px;}
.y184{bottom:475.103850px;}
.y131{bottom:476.387695px;}
.y132{bottom:476.388016px;}
.y134{bottom:480.796188px;}
.y136{bottom:481.975067px;}
.y135{bottom:482.290192px;}
.y1d3{bottom:484.815903px;}
.y9e{bottom:486.661194px;}
.y118{bottom:487.080139px;}
.y183{bottom:487.703842px;}
.y56{bottom:487.980148px;}
.y12{bottom:488.085022px;}
.ye3{bottom:497.203629px;}
.y1d2{bottom:497.415894px;}
.y182{bottom:500.303833px;}
.y9d{bottom:501.661194px;}
.y117{bottom:502.080139px;}
.y55{bottom:502.980148px;}
.y11{bottom:504.585022px;}
.y1d1{bottom:510.015884px;}
.y130{bottom:510.518555px;}
.ye2{bottom:512.203629px;}
.y181{bottom:512.903870px;}
.y9c{bottom:516.661194px;}
.y54{bottom:517.980148px;}
.y10{bottom:521.085022px;}
.y1d0{bottom:522.615921px;}
.y180{bottom:525.503860px;}
.y12f{bottom:525.518555px;}
.ye1{bottom:527.203629px;}
.y9b{bottom:531.661194px;}
.y53{bottom:532.980148px;}
.y1cf{bottom:535.215912px;}
.yf{bottom:537.585022px;}
.y17f{bottom:538.103850px;}
.y12e{bottom:540.518555px;}
.ye0{bottom:542.203629px;}
.y9a{bottom:546.661194px;}
.y1ce{bottom:547.815903px;}
.y52{bottom:547.980148px;}
.y17e{bottom:550.703842px;}
.ye{bottom:554.085022px;}
.ydf{bottom:557.203629px;}
.y1cd{bottom:560.415894px;}
.y99{bottom:561.661194px;}
.y51{bottom:562.980148px;}
.y17d{bottom:563.303833px;}
.yd{bottom:570.585022px;}
.yde{bottom:572.203629px;}
.y1cc{bottom:573.015884px;}
.y17c{bottom:575.903870px;}
.y98{bottom:576.661194px;}
.y50{bottom:577.980148px;}
.y1cb{bottom:585.615921px;}
.yc{bottom:587.085022px;}
.ydd{bottom:587.203629px;}
.y17b{bottom:588.503860px;}
.y97{bottom:591.661194px;}
.y4f{bottom:592.980148px;}
.y1ca{bottom:598.215912px;}
.y155{bottom:598.379837px;}
.y17a{bottom:601.103850px;}
.ydc{bottom:602.203629px;}
.yb{bottom:603.585022px;}
.y96{bottom:606.661194px;}
.y4e{bottom:607.980148px;}
.y1c9{bottom:610.815903px;}
.y179{bottom:613.703842px;}
.ydb{bottom:617.203629px;}
.ya{bottom:620.085022px;}
.y95{bottom:621.661194px;}
.y4d{bottom:622.980148px;}
.y1c8{bottom:623.415894px;}
.y178{bottom:626.303833px;}
.yda{bottom:632.203629px;}
.y1c7{bottom:636.015884px;}
.y94{bottom:636.661194px;}
.y4c{bottom:637.980148px;}
.y204{bottom:638.618683px;}
.y177{bottom:638.903870px;}
.yd9{bottom:647.203629px;}
.y1c6{bottom:648.615921px;}
.y9{bottom:649.978821px;}
.y176{bottom:651.503860px;}
.y93{bottom:651.661194px;}
.y4b{bottom:652.980148px;}
.y1c5{bottom:661.215912px;}
.yd8{bottom:662.203629px;}
.y175{bottom:664.103850px;}
.y8{bottom:667.978821px;}
.y4a{bottom:667.980148px;}
.y203{bottom:669.818848px;}
.y1c4{bottom:673.815903px;}
.y174{bottom:676.703842px;}
.yd7{bottom:677.203629px;}
.y8f{bottom:679.417053px;}
.y90{bottom:679.417511px;}
.y12a{bottom:681.170563px;}
.y92{bottom:682.761887px;}
.y49{bottom:682.980148px;}
.y202{bottom:684.818848px;}
.y7{bottom:685.978821px;}
.y1c3{bottom:686.415894px;}
.y173{bottom:689.303833px;}
.yd6{bottom:692.203629px;}
.y48{bottom:697.980148px;}
.y1c2{bottom:699.015884px;}
.y201{bottom:699.818848px;}
.y172{bottom:701.903870px;}
.yd5{bottom:707.203629px;}
.y8e{bottom:709.062881px;}
.y1c1{bottom:711.615921px;}
.y47{bottom:712.980148px;}
.y171{bottom:714.503860px;}
.y200{bottom:714.818710px;}
.y6{bottom:718.945633px;}
.yd4{bottom:722.203629px;}
.y8d{bottom:724.062881px;}
.y1c0{bottom:724.215912px;}
.y46{bottom:727.980148px;}
.y1ff{bottom:729.818710px;}
.y1bf{bottom:736.815903px;}
.yd3{bottom:737.203629px;}
.y12c{bottom:740.520172px;}
.y45{bottom:742.980148px;}
.y1fe{bottom:744.818710px;}
.y1be{bottom:749.415894px;}
.y85{bottom:751.818878px;}
.y86{bottom:751.819519px;}
.yd2{bottom:752.203629px;}
.y12b{bottom:755.520172px;}
.y8c{bottom:757.751083px;}
.y44{bottom:757.980148px;}
.y88{bottom:758.399414px;}
.y1fd{bottom:759.818710px;}
.y1bd{bottom:762.015884px;}
.y5{bottom:763.945633px;}
.y170{bottom:765.480148px;}
.yd1{bottom:767.203629px;}
.y43{bottom:772.980194px;}
.y1bc{bottom:774.615875px;}
.y1fc{bottom:774.818665px;}
.yd0{bottom:782.203674px;}
.y84{bottom:786.639771px;}
.y1bb{bottom:787.215912px;}
.y42{bottom:787.980194px;}
.y16f{bottom:796.980194px;}
.ycf{bottom:797.203674px;}
.y1fb{bottom:798.818665px;}
.y1ba{bottom:799.815857px;}
.y83{bottom:801.639771px;}
.y41{bottom:802.980194px;}
.y4{bottom:808.945679px;}
.y16e{bottom:811.980194px;}
.yce{bottom:812.203674px;}
.y1b9{bottom:812.415894px;}
.y1fa{bottom:813.818665px;}
.y82{bottom:816.639771px;}
.y40{bottom:817.980194px;}
.y1b8{bottom:825.015930px;}
.y16d{bottom:826.980194px;}
.ycd{bottom:827.203674px;}
.y81{bottom:831.639771px;}
.y3f{bottom:832.980194px;}
.y1f9{bottom:836.387421px;}
.y1b7{bottom:837.615875px;}
.ycc{bottom:842.203674px;}
.y80{bottom:846.639771px;}
.y3e{bottom:847.980194px;}
.y1b6{bottom:850.215912px;}
.y3{bottom:853.945679px;}
.ycb{bottom:857.203674px;}
.y1f8{bottom:858.955811px;}
.y16c{bottom:859.980194px;}
.y7f{bottom:861.639771px;}
.y1b5{bottom:862.815857px;}
.y3d{bottom:862.980194px;}
.yca{bottom:872.203674px;}
.y16b{bottom:874.980194px;}
.y1b4{bottom:875.415894px;}
.y7e{bottom:876.639771px;}
.y3c{bottom:877.980194px;}
.y156{bottom:879.179810px;}
.y1f7{bottom:881.524384px;}
.yc9{bottom:887.203674px;}
.y1b3{bottom:888.015930px;}
.y16a{bottom:889.980194px;}
.y7d{bottom:891.639771px;}
.y3b{bottom:892.980194px;}
.y1f6{bottom:896.524384px;}
.y2{bottom:898.945679px;}
.y1b2{bottom:900.615875px;}
.yc8{bottom:902.203674px;}
.y169{bottom:904.980194px;}
.y7c{bottom:906.639771px;}
.y3a{bottom:907.980194px;}
.y1f5{bottom:911.524384px;}
.y1b1{bottom:913.215912px;}
.yc7{bottom:917.203674px;}
.y168{bottom:919.980194px;}
.y39{bottom:922.980194px;}
.y1b0{bottom:925.815857px;}
.yc6{bottom:932.203674px;}
.y167{bottom:934.980194px;}
.y7b{bottom:936.639771px;}
.y38{bottom:937.980194px;}
.y1af{bottom:938.415894px;}
.y15f{bottom:938.529327px;}
.y1{bottom:943.945679px;}
.y1f4{bottom:944.524384px;}
.yc5{bottom:947.203674px;}
.y166{bottom:949.980194px;}
.y1ae{bottom:951.015930px;}
.y7a{bottom:951.639771px;}
.y2a{bottom:952.050934px;}
.y37{bottom:952.980194px;}
.y15e{bottom:955.029327px;}
.y1f3{bottom:959.524384px;}
.yc4{bottom:962.203674px;}
.y1ad{bottom:963.615875px;}
.y165{bottom:964.980194px;}
.y79{bottom:966.639771px;}
.y36{bottom:967.980194px;}
.y1ac{bottom:976.215912px;}
.y164{bottom:979.980194px;}
.y78{bottom:981.639771px;}
.y35{bottom:982.980194px;}
.y15d{bottom:986.931335px;}
.y1ab{bottom:988.815857px;}
.y1f2{bottom:992.524384px;}
.y163{bottom:994.980194px;}
.yc3{bottom:995.203674px;}
.y77{bottom:996.639771px;}
.y34{bottom:997.980194px;}
.y1aa{bottom:1001.415894px;}
.y15c{bottom:1004.514313px;}
.y162{bottom:1009.980194px;}
.yc2{bottom:1010.203674px;}
.y76{bottom:1011.639771px;}
.y33{bottom:1012.980194px;}
.y1a9{bottom:1014.015930px;}
.y15b{bottom:1022.267395px;}
.y161{bottom:1024.980194px;}
.yc1{bottom:1025.203674px;}
.y1f1{bottom:1025.524384px;}
.y1a8{bottom:1026.615875px;}
.y75{bottom:1026.639771px;}
.y32{bottom:1027.980194px;}
.y1a7{bottom:1039.215912px;}
.y160{bottom:1039.980194px;}
.y15a{bottom:1040.020477px;}
.yc0{bottom:1040.203674px;}
.y1f0{bottom:1040.524384px;}
.y74{bottom:1041.639771px;}
.y31{bottom:1042.980194px;}
.y1a6{bottom:1051.815857px;}
.ybf{bottom:1055.203674px;}
.y1ef{bottom:1055.524384px;}
.y73{bottom:1056.639771px;}
.y159{bottom:1057.565277px;}
.y30{bottom:1057.980194px;}
.y1a5{bottom:1064.415894px;}
.y1ee{bottom:1070.524384px;}
.y72{bottom:1071.639771px;}
.y2f{bottom:1072.980194px;}
.y158{bottom:1074.948303px;}
.y1a4{bottom:1077.015930px;}
.ybc{bottom:1082.959534px;}
.y1ed{bottom:1085.524384px;}
.y157{bottom:1086.198303px;}
.ybe{bottom:1086.626678px;}
.y71{bottom:1086.639771px;}
.y2e{bottom:1087.980194px;}
.y1a3{bottom:1089.615875px;}
.y2d{bottom:1140.708343px;}
.y70{bottom:1140.800079px;}
.h18{height:2.391024px;}
.h2a{height:11.428500px;}
.h1b{height:14.190000px;}
.h1c{height:14.715000px;}
.h1d{height:14.835000px;}
.h24{height:18.675000px;}
.h27{height:18.676500px;}
.h16{height:19.365000px;}
.h9{height:25.676806px;}
.hc{height:25.798827px;}
.h19{height:26.899200px;}
.hf{height:34.523438px;}
.h2d{height:35.411133px;}
.hb{height:36.681152px;}
.h5{height:38.838867px;}
.h17{height:40.348800px;}
.h2c{height:41.538000px;}
.h2b{height:43.008000px;}
.h10{height:43.154297px;}
.ha{height:43.271777px;}
.he{height:43.583897px;}
.h2e{height:44.505000px;}
.h30{height:45.090000px;}
.h2f{height:46.080000px;}
.h20{height:47.469727px;}
.h28{height:49.317019px;}
.h25{height:49.317110px;}
.h29{height:49.692573px;}
.h26{height:49.692665px;}
.h4{height:51.416016px;}
.h1e{height:52.735791px;}
.h6{height:53.406000px;}
.h1f{height:54.108000px;}
.h21{height:55.296000px;}
.h11{height:56.013350px;}
.h15{height:56.014083px;}
.h22{height:56.014173px;}
.h12{height:56.014174px;}
.h23{height:56.014219px;}
.h14{height:56.014220px;}
.h8{height:56.014225px;}
.h7{height:56.014266px;}
.h3{height:57.128906px;}
.h1a{height:62.287163px;}
.h13{height:62.841797px;}
.hd{height:102.832031px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w8{width:110.220005px;}
.w3{width:144.254997px;}
.w5{width:164.834999px;}
.w6{width:179.444996px;}
.w2{width:203.759995px;}
.w4{width:225.525009px;}
.w7{width:233.535004px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:23.235168px;}
.x1c{left:26.122650px;}
.x9{left:57.306290px;}
.x3{left:61.653448px;}
.xb{left:116.817123px;}
.xd{left:135.553665px;}
.xe{left:139.211956px;}
.x2{left:140.352448px;}
.x25{left:155.118164px;}
.x1e{left:162.531189px;}
.x2a{left:179.479797px;}
.x19{left:182.179802px;}
.x10{left:196.908279px;}
.x26{left:209.764664px;}
.x18{left:219.979797px;}
.x1{left:233.858253px;}
.x2d{left:238.570793px;}
.x6{left:251.858253px;}
.x2e{left:252.992249px;}
.x2b{left:307.306800px;}
.x4{left:338.775604px;}
.x20{left:404.098480px;}
.x14{left:408.103500px;}
.x21{left:413.505157px;}
.x2c{left:414.704086px;}
.x7{left:418.986008px;}
.x1a{left:431.143478px;}
.x16{left:438.448517px;}
.x1b{left:440.550156px;}
.x12{left:448.738495px;}
.x28{left:465.755997px;}
.x8{left:472.452164px;}
.xa{left:509.311798px;}
.x23{left:519.784653px;}
.xc{left:542.652283px;}
.x24{left:550.000671px;}
.x1d{left:573.523636px;}
.x29{left:575.976150px;}
.x5{left:585.853363px;}
.x13{left:592.993652px;}
.x17{left:603.283630px;}
.xf{left:609.039322px;}
.x1f{left:610.588669px;}
.x11{left:622.746140px;}
.x15{left:633.628784px;}
.x27{left:637.633667px;}
@media print{
.vf{vertical-align:-41.711995pt;}
.v5{vertical-align:-16.560221pt;}
.v3{vertical-align:-15.639974pt;}
.v10{vertical-align:-12.879883pt;}
.vd{vertical-align:-11.957357pt;}
.v9{vertical-align:-7.440002pt;}
.v8{vertical-align:-5.664062pt;}
.v6{vertical-align:-4.074707pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.128009pt;}
.va{vertical-align:7.440002pt;}
.v4{vertical-align:15.639974pt;}
.v2{vertical-align:16.560059pt;}
.v1{vertical-align:18.399902pt;}
.v7{vertical-align:19.500767pt;}
.vc{vertical-align:22.965859pt;}
.ve{vertical-align:41.712077pt;}
.ls3c{letter-spacing:-4.320000pt;}
.ls47{letter-spacing:-3.880000pt;}
.ls40{letter-spacing:-2.480000pt;}
.ls43{letter-spacing:-1.200000pt;}
.ls20{letter-spacing:-1.020177pt;}
.ls49{letter-spacing:-1.000000pt;}
.ls42{letter-spacing:-0.960000pt;}
.ls4e{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.864000pt;}
.ls48{letter-spacing:-0.760000pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.638400pt;}
.ls29{letter-spacing:-0.624000pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.432000pt;}
.ls41{letter-spacing:-0.400000pt;}
.ls4b{letter-spacing:-0.360000pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls4d{letter-spacing:-0.280000pt;}
.ls2e{letter-spacing:-0.168000pt;}
.ls4c{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000004pt;}
.ls2a{letter-spacing:0.000005pt;}
.ls5{letter-spacing:0.000007pt;}
.lsa{letter-spacing:0.000011pt;}
.ls2b{letter-spacing:0.000022pt;}
.ls26{letter-spacing:0.000039pt;}
.ls15{letter-spacing:0.000045pt;}
.ls24{letter-spacing:0.000049pt;}
.ls16{letter-spacing:0.000066pt;}
.ls46{letter-spacing:0.000076pt;}
.ls44{letter-spacing:0.000078pt;}
.ls4{letter-spacing:0.000092pt;}
.ls2d{letter-spacing:0.000120pt;}
.lsb{letter-spacing:0.000207pt;}
.ls6{letter-spacing:0.010159pt;}
.ls1{letter-spacing:0.012267pt;}
.ls2{letter-spacing:0.012671pt;}
.ls3{letter-spacing:0.012832pt;}
.ls0{letter-spacing:0.012833pt;}
.lsf{letter-spacing:0.013091pt;}
.ls32{letter-spacing:0.016578pt;}
.ls36{letter-spacing:0.016740pt;}
.ls37{letter-spacing:0.019184pt;}
.ls34{letter-spacing:0.024392pt;}
.ls19{letter-spacing:0.028943pt;}
.ls3a{letter-spacing:0.029305pt;}
.ls1a{letter-spacing:0.029431pt;}
.ls22{letter-spacing:0.033789pt;}
.ls18{letter-spacing:0.034277pt;}
.ls38{letter-spacing:0.036727pt;}
.ls17{letter-spacing:0.038196pt;}
.ls28{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.200000pt;}
.ls3e{letter-spacing:0.482826pt;}
.ls14{letter-spacing:1.386803pt;}
.ls23{letter-spacing:1.689668pt;}
.ls27{letter-spacing:2.199757pt;}
.ls35{letter-spacing:2.659666pt;}
.ls7{letter-spacing:2.666667pt;}
.ls3b{letter-spacing:2.677965pt;}
.ls1b{letter-spacing:3.730022pt;}
.ls45{letter-spacing:4.928789pt;}
.ls21{letter-spacing:5.132766pt;}
.ls33{letter-spacing:10.903142pt;}
.ls31{letter-spacing:10.950963pt;}
.ls10{letter-spacing:13.572819pt;}
.ls39{letter-spacing:14.620565pt;}
.ls12{letter-spacing:16.300558pt;}
.ls1d{letter-spacing:16.354714pt;}
.lse{letter-spacing:27.305677pt;}
.ls1c{letter-spacing:29.983642pt;}
.ls13{letter-spacing:30.031462pt;}
.ls11{letter-spacing:35.530854pt;}
.ls30{letter-spacing:40.982426pt;}
.ws83{word-spacing:-58.666667pt;}
.ws0{word-spacing:-53.333333pt;}
.ws2{word-spacing:-48.000000pt;}
.ws5{word-spacing:-42.666667pt;}
.ws1{word-spacing:-37.333333pt;}
.ws5c{word-spacing:-29.983642pt;}
.ws48{word-spacing:-16.402534pt;}
.ws6{word-spacing:-13.333333pt;}
.ws81{word-spacing:-11.184000pt;}
.wsa5{word-spacing:-10.992000pt;}
.wsd1{word-spacing:-10.903142pt;}
.ws14{word-spacing:-10.896000pt;}
.ws15{word-spacing:-10.752000pt;}
.wsb2{word-spacing:-10.512000pt;}
.ws9b{word-spacing:-10.416000pt;}
.ws82{word-spacing:-10.368000pt;}
.ws16{word-spacing:-10.032000pt;}
.ws120{word-spacing:-9.984000pt;}
.ws103{word-spacing:-9.280000pt;}
.wse4{word-spacing:-9.160000pt;}
.wse3{word-spacing:-8.760000pt;}
.ws104{word-spacing:-8.720000pt;}
.wse0{word-spacing:-8.680000pt;}
.wse1{word-spacing:-8.520000pt;}
.ws101{word-spacing:-8.400000pt;}
.wsfd{word-spacing:-8.200000pt;}
.ws102{word-spacing:-8.160000pt;}
.ws4a{word-spacing:-8.153446pt;}
.wsc9{word-spacing:-8.101333pt;}
.wse5{word-spacing:-7.960000pt;}
.ws3{word-spacing:-7.627200pt;}
.wsb8{word-spacing:-7.526400pt;}
.ws4d{word-spacing:-6.988800pt;}
.wse2{word-spacing:-6.680000pt;}
.ws4{word-spacing:-6.346666pt;}
.ws8{word-spacing:-5.866667pt;}
.wsca{word-spacing:-5.670933pt;}
.ws100{word-spacing:-5.280000pt;}
.ws4f{word-spacing:-5.164646pt;}
.wsc5{word-spacing:-3.360000pt;}
.ws89{word-spacing:-3.024000pt;}
.ws74{word-spacing:-2.976000pt;}
.ws42{word-spacing:-2.928000pt;}
.ws59{word-spacing:-2.688000pt;}
.ws105{word-spacing:-2.600000pt;}
.ws2b{word-spacing:-2.400000pt;}
.ws21{word-spacing:-2.352000pt;}
.ws91{word-spacing:-2.304000pt;}
.ws43{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-2.016000pt;}
.wsbb{word-spacing:-1.968000pt;}
.ws92{word-spacing:-1.920000pt;}
.ws57{word-spacing:-1.872000pt;}
.ws5a{word-spacing:-1.824000pt;}
.ws9e{word-spacing:-1.776000pt;}
.wsb4{word-spacing:-1.728000pt;}
.ws80{word-spacing:-1.721549pt;}
.ws10c{word-spacing:-1.720000pt;}
.ws32{word-spacing:-1.680000pt;}
.wsff{word-spacing:-1.640000pt;}
.wsd3{word-spacing:-1.632000pt;}
.ws39{word-spacing:-1.584000pt;}
.wsdd{word-spacing:-1.536000pt;}
.wsa3{word-spacing:-1.488000pt;}
.wsea{word-spacing:-1.440000pt;}
.ws20{word-spacing:-1.344000pt;}
.ws8b{word-spacing:-1.296000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.248000pt;}
.ws70{word-spacing:-1.152000pt;}
.ws72{word-spacing:-1.104000pt;}
.ws8c{word-spacing:-1.056000pt;}
.ws113{word-spacing:-1.040000pt;}
.ws29{word-spacing:-1.008000pt;}
.ws5b{word-spacing:-0.960000pt;}
.wsf3{word-spacing:-0.920000pt;}
.wsde{word-spacing:-0.912000pt;}
.wsb{word-spacing:-0.864000pt;}
.ws123{word-spacing:-0.816000pt;}
.ws10e{word-spacing:-0.800000pt;}
.ws1f{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.720000pt;}
.wsf8{word-spacing:-0.680000pt;}
.wsb0{word-spacing:-0.624000pt;}
.ws3a{word-spacing:-0.576000pt;}
.ws37{word-spacing:-0.528000pt;}
.ws117{word-spacing:-0.520000pt;}
.ws122{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.432000pt;}
.wsa6{word-spacing:-0.336000pt;}
.wsd0{word-spacing:-0.288000pt;}
.ws10f{word-spacing:-0.280000pt;}
.ws77{word-spacing:-0.240000pt;}
.wsf5{word-spacing:-0.200000pt;}
.ws95{word-spacing:-0.192000pt;}
.ws35{word-spacing:-0.144000pt;}
.wsec{word-spacing:-0.120000pt;}
.ws34{word-spacing:-0.096000pt;}
.ws94{word-spacing:-0.048000pt;}
.ws49{word-spacing:-0.047821pt;}
.wsf9{word-spacing:-0.040000pt;}
.ws7{word-spacing:0.000000pt;}
.ws46{word-spacing:0.048000pt;}
.ws13{word-spacing:0.096000pt;}
.ws9f{word-spacing:0.144000pt;}
.ws114{word-spacing:0.160000pt;}
.ws2d{word-spacing:0.192000pt;}
.ws10d{word-spacing:0.200000pt;}
.ws17{word-spacing:0.240000pt;}
.ws116{word-spacing:0.280000pt;}
.wsda{word-spacing:0.288000pt;}
.wsaf{word-spacing:0.336000pt;}
.ws1b{word-spacing:0.384000pt;}
.ws3b{word-spacing:0.432000pt;}
.wsed{word-spacing:0.480000pt;}
.ws112{word-spacing:0.520000pt;}
.ws11f{word-spacing:0.528000pt;}
.ws67{word-spacing:0.576000pt;}
.wsee{word-spacing:0.720000pt;}
.wsef{word-spacing:0.760000pt;}
.ws6f{word-spacing:0.768000pt;}
.ws119{word-spacing:0.840000pt;}
.ws33{word-spacing:0.864000pt;}
.ws106{word-spacing:0.880000pt;}
.wsdc{word-spacing:0.912000pt;}
.ws27{word-spacing:1.008000pt;}
.wsf6{word-spacing:1.040000pt;}
.wsa2{word-spacing:1.056000pt;}
.ws6d{word-spacing:1.104000pt;}
.wsa4{word-spacing:1.152000pt;}
.ws108{word-spacing:1.160000pt;}
.ws8e{word-spacing:1.200000pt;}
.wse8{word-spacing:1.248000pt;}
.ws2f{word-spacing:1.296000pt;}
.ws90{word-spacing:1.344000pt;}
.wsfc{word-spacing:1.360000pt;}
.ws38{word-spacing:1.392000pt;}
.ws1e{word-spacing:1.440000pt;}
.wsba{word-spacing:1.488000pt;}
.ws75{word-spacing:1.536000pt;}
.wsfa{word-spacing:1.560000pt;}
.ws121{word-spacing:1.584000pt;}
.wsf1{word-spacing:1.600000pt;}
.ws58{word-spacing:1.632000pt;}
.ws96{word-spacing:1.680000pt;}
.ws6b{word-spacing:1.728000pt;}
.ws61{word-spacing:1.776000pt;}
.wseb{word-spacing:1.824000pt;}
.ws10b{word-spacing:1.840000pt;}
.ws64{word-spacing:1.872000pt;}
.wsad{word-spacing:1.968000pt;}
.ws7b{word-spacing:2.016000pt;}
.ws87{word-spacing:2.064000pt;}
.wsf4{word-spacing:2.080000pt;}
.ws8a{word-spacing:2.112000pt;}
.wsdb{word-spacing:2.160000pt;}
.ws52{word-spacing:2.208000pt;}
.wsbe{word-spacing:2.256000pt;}
.ws56{word-spacing:2.304000pt;}
.wsc3{word-spacing:2.352000pt;}
.ws115{word-spacing:2.360000pt;}
.ws3e{word-spacing:2.400000pt;}
.ws2c{word-spacing:2.496000pt;}
.ws30{word-spacing:2.544000pt;}
.wse9{word-spacing:2.640000pt;}
.ws66{word-spacing:2.688000pt;}
.ws111{word-spacing:2.720000pt;}
.ws93{word-spacing:2.736000pt;}
.ws3f{word-spacing:2.784000pt;}
.wsac{word-spacing:2.832000pt;}
.ws41{word-spacing:2.880000pt;}
.ws1a{word-spacing:2.928000pt;}
.ws11a{word-spacing:2.960000pt;}
.ws99{word-spacing:3.024000pt;}
.ws45{word-spacing:3.072000pt;}
.wsb9{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.168000pt;}
.ws19{word-spacing:3.264000pt;}
.wsc{word-spacing:3.360000pt;}
.ws28{word-spacing:3.408000pt;}
.ws36{word-spacing:3.456000pt;}
.ws79{word-spacing:3.504000pt;}
.wsc1{word-spacing:3.552000pt;}
.ws25{word-spacing:3.600000pt;}
.wsa1{word-spacing:3.648000pt;}
.ws10{word-spacing:3.696000pt;}
.wsfb{word-spacing:3.720000pt;}
.ws6a{word-spacing:3.744000pt;}
.ws73{word-spacing:3.792000pt;}
.ws86{word-spacing:3.840000pt;}
.ws11d{word-spacing:3.888000pt;}
.wsf7{word-spacing:3.920000pt;}
.wsab{word-spacing:3.936000pt;}
.ws97{word-spacing:3.984000pt;}
.ws62{word-spacing:4.080000pt;}
.ws11b{word-spacing:4.120000pt;}
.ws12{word-spacing:4.128000pt;}
.ws68{word-spacing:4.176000pt;}
.ws109{word-spacing:4.200000pt;}
.wsb7{word-spacing:4.224000pt;}
.ws10a{word-spacing:4.240000pt;}
.ws65{word-spacing:4.272000pt;}
.ws11c{word-spacing:4.280000pt;}
.ws69{word-spacing:4.320000pt;}
.wsc4{word-spacing:4.368000pt;}
.wsfe{word-spacing:4.400000pt;}
.ws88{word-spacing:4.416000pt;}
.ws3d{word-spacing:4.464000pt;}
.ws9c{word-spacing:4.512000pt;}
.wsd{word-spacing:4.560000pt;}
.ws7d{word-spacing:4.660934pt;}
.ws22{word-spacing:4.800000pt;}
.wsa7{word-spacing:4.848000pt;}
.wsb5{word-spacing:4.896000pt;}
.ws110{word-spacing:4.920000pt;}
.ws55{word-spacing:4.992000pt;}
.ws124{word-spacing:5.040000pt;}
.wsbf{word-spacing:5.088000pt;}
.wsa8{word-spacing:5.136000pt;}
.ws54{word-spacing:5.184000pt;}
.wsaa{word-spacing:5.232000pt;}
.ws9d{word-spacing:5.280000pt;}
.wsd4{word-spacing:5.328000pt;}
.ws118{word-spacing:5.360000pt;}
.ws63{word-spacing:5.376000pt;}
.wsae{word-spacing:5.424000pt;}
.ws7a{word-spacing:5.568000pt;}
.ws76{word-spacing:5.664000pt;}
.ws6c{word-spacing:5.712000pt;}
.wsc0{word-spacing:5.760000pt;}
.wsf{word-spacing:5.856000pt;}
.ws8d{word-spacing:6.000000pt;}
.wse{word-spacing:6.048000pt;}
.wse6{word-spacing:6.096000pt;}
.wsa0{word-spacing:6.144000pt;}
.ws1d{word-spacing:6.240000pt;}
.ws23{word-spacing:6.336000pt;}
.ws11e{word-spacing:6.432000pt;}
.ws44{word-spacing:6.480000pt;}
.ws71{word-spacing:6.528000pt;}
.wsc2{word-spacing:6.672000pt;}
.wsb1{word-spacing:6.768000pt;}
.wsd8{word-spacing:6.864000pt;}
.ws18{word-spacing:6.912000pt;}
.ws107{word-spacing:6.920000pt;}
.ws6e{word-spacing:6.960000pt;}
.wsf0{word-spacing:7.200000pt;}
.wsbc{word-spacing:7.248000pt;}
.ws2e{word-spacing:7.296000pt;}
.wsf2{word-spacing:7.320000pt;}
.wsa9{word-spacing:7.344000pt;}
.ws5e{word-spacing:7.392000pt;}
.ws9a{word-spacing:7.584000pt;}
.ws26{word-spacing:7.632000pt;}
.ws24{word-spacing:7.728000pt;}
.wse7{word-spacing:7.824000pt;}
.ws60{word-spacing:7.872000pt;}
.ws11{word-spacing:8.016000pt;}
.ws1c{word-spacing:8.064000pt;}
.ws4c{word-spacing:8.325601pt;}
.ws8f{word-spacing:8.880000pt;}
.ws85{word-spacing:9.072000pt;}
.wsa{word-spacing:10.656000pt;}
.wsb3{word-spacing:10.752000pt;}
.wsc7{word-spacing:10.823422pt;}
.wsc6{word-spacing:10.823584pt;}
.wsd9{word-spacing:11.616000pt;}
.ws3c{word-spacing:12.048000pt;}
.ws78{word-spacing:12.240000pt;}
.wsdf{word-spacing:13.104000pt;}
.ws98{word-spacing:13.152000pt;}
.ws50{word-spacing:13.551333pt;}
.ws51{word-spacing:14.577131pt;}
.ws7f{word-spacing:15.588760pt;}
.wsd7{word-spacing:16.368000pt;}
.ws31{word-spacing:16.704000pt;}
.ws7e{word-spacing:17.044668pt;}
.ws4e{word-spacing:18.318741pt;}
.ws47{word-spacing:22.523597pt;}
.ws4b{word-spacing:27.210035pt;}
.wsc8{word-spacing:27.401318pt;}
.wscf{word-spacing:29.324284pt;}
.wscb{word-spacing:29.693289pt;}
.wscd{word-spacing:29.693452pt;}
.wscc{word-spacing:36.328565pt;}
.wsce{word-spacing:49.741289pt;}
.wsd5{word-spacing:621.312000pt;}
.ws7c{word-spacing:635.519989pt;}
.ws5d{word-spacing:674.256000pt;}
.wsd2{word-spacing:717.455978pt;}
.ws84{word-spacing:743.424000pt;}
.ws5f{word-spacing:780.000000pt;}
.wsd6{word-spacing:840.527985pt;}
._f{margin-left:-16.289977pt;}
._e{margin-left:-15.028800pt;}
._1f{margin-left:-14.000000pt;}
._18{margin-left:-12.593615pt;}
._1b{margin-left:-11.160000pt;}
._1d{margin-left:-10.120000pt;}
._1c{margin-left:-8.880000pt;}
._c{margin-left:-7.149565pt;}
._6{margin-left:-5.372644pt;}
._2{margin-left:-3.823623pt;}
._0{margin-left:-2.731733pt;}
._1{margin-left:-1.120000pt;}
._5{width:1.297600pt;}
._7{width:2.982169pt;}
._8{width:4.237565pt;}
._9{width:5.358527pt;}
._3{width:6.260407pt;}
._a{width:7.284283pt;}
._1a{width:8.360000pt;}
._19{width:10.080000pt;}
._10{width:10.988800pt;}
._d{width:12.718902pt;}
._4{width:15.390915pt;}
._13{width:37.799439pt;}
._12{width:55.716832pt;}
._14{width:58.215467pt;}
._15{width:84.955224pt;}
._11{width:93.238957pt;}
._17{width:102.875232pt;}
._16{width:121.572832pt;}
._1e{width:2004.069402pt;}
._b{width:2031.412826pt;}
.fsd{font-size:26.133333pt;}
.fs5{font-size:31.733332pt;}
.fsc{font-size:31.880533pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:47.820800pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:53.133865pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:0.973604pt;}
.y146{bottom:1.592143pt;}
.ybd{bottom:1.593343pt;}
.y8a{bottom:2.256795pt;}
.y91{bottom:3.254272pt;}
.yba{bottom:4.117065pt;}
.y133{bottom:5.246379pt;}
.y13d{bottom:5.246541pt;}
.y87{bottom:5.848796pt;}
.y140{bottom:15.674540pt;}
.y89{bottom:16.276774pt;}
.y2b{bottom:24.563600pt;}
.y2c{bottom:24.571599pt;}
.yb8{bottom:59.102402pt;}
.yb9{bottom:59.102666pt;}
.ybb{bottom:62.308933pt;}
.yfc{bottom:63.447866pt;}
.y29{bottom:64.382400pt;}
.y127{bottom:65.501333pt;}
.ye5{bottom:69.799998pt;}
.y28{bottom:73.805735pt;}
.y116{bottom:74.861200pt;}
.yfb{bottom:76.781199pt;}
.y126{bottom:78.834666pt;}
.y154{bottom:80.029465pt;}
.ye4{bottom:83.133331pt;}
.y6f{bottom:84.426799pt;}
.yb7{bottom:85.920929pt;}
.y1a2{bottom:86.314533pt;}
.y27{bottom:87.139069pt;}
.y115{bottom:88.194529pt;}
.yfa{bottom:90.114532pt;}
.y1ec{bottom:91.214132pt;}
.y125{bottom:92.167999pt;}
.y153{bottom:93.362803pt;}
.y1a1{bottom:97.514537pt;}
.y6e{bottom:97.760132pt;}
.yb6{bottom:99.254262pt;}
.y26{bottom:100.472402pt;}
.y114{bottom:101.527863pt;}
.yf9{bottom:103.447866pt;}
.y1eb{bottom:104.547465pt;}
.y124{bottom:105.501333pt;}
.y152{bottom:106.696136pt;}
.y1a0{bottom:108.714528pt;}
.y6d{bottom:111.093465pt;}
.yb5{bottom:112.587596pt;}
.y25{bottom:113.805735pt;}
.y113{bottom:114.861196pt;}
.yf8{bottom:116.781199pt;}
.y1ea{bottom:117.880798pt;}
.y123{bottom:118.834666pt;}
.y19f{bottom:119.914530pt;}
.y151{bottom:120.029470pt;}
.y6c{bottom:124.426799pt;}
.yb4{bottom:125.920929pt;}
.y112{bottom:128.194529pt;}
.yf7{bottom:130.114532pt;}
.y24{bottom:131.049062pt;}
.y19e{bottom:131.114532pt;}
.y1e9{bottom:131.214132pt;}
.y122{bottom:132.167999pt;}
.y150{bottom:133.362803pt;}
.y6b{bottom:137.760132pt;}
.yb3{bottom:139.254262pt;}
.y111{bottom:141.527863pt;}
.y19d{bottom:142.314533pt;}
.yf6{bottom:143.447866pt;}
.y1e8{bottom:144.547465pt;}
.y121{bottom:145.501333pt;}
.y14f{bottom:146.696136pt;}
.y6a{bottom:151.093465pt;}
.yb2{bottom:152.587596pt;}
.y19c{bottom:153.514537pt;}
.y110{bottom:154.861196pt;}
.yf5{bottom:156.781199pt;}
.y1e7{bottom:157.880798pt;}
.y120{bottom:158.834666pt;}
.y14e{bottom:160.029470pt;}
.y69{bottom:164.426799pt;}
.y19b{bottom:164.714528pt;}
.yb1{bottom:165.920929pt;}
.y10f{bottom:168.194529pt;}
.yf4{bottom:170.114532pt;}
.y23{bottom:170.514800pt;}
.y11f{bottom:172.168009pt;}
.y14d{bottom:173.362793pt;}
.y19a{bottom:175.914530pt;}
.y68{bottom:177.760132pt;}
.yb0{bottom:179.254272pt;}
.y10e{bottom:181.527873pt;}
.yf3{bottom:183.447876pt;}
.y22{bottom:183.848124pt;}
.y11e{bottom:185.501343pt;}
.y14c{bottom:186.696126pt;}
.y199{bottom:187.114543pt;}
.y1e6{bottom:187.214132pt;}
.y67{bottom:191.093465pt;}
.yaf{bottom:192.587606pt;}
.y10d{bottom:194.861206pt;}
.yf2{bottom:196.781209pt;}
.y21{bottom:197.181458pt;}
.y198{bottom:198.314533pt;}
.y11d{bottom:198.834676pt;}
.y14b{bottom:200.029460pt;}
.y1e5{bottom:200.547465pt;}
.y66{bottom:204.426799pt;}
.yae{bottom:205.920939pt;}
.y10c{bottom:208.194539pt;}
.y197{bottom:209.514526pt;}
.yf1{bottom:210.114543pt;}
.y20{bottom:210.514791pt;}
.y11c{bottom:212.168009pt;}
.y14a{bottom:213.362793pt;}
.y1e4{bottom:213.880798pt;}
.yad{bottom:219.254272pt;}
.y196{bottom:220.714539pt;}
.y10b{bottom:221.527873pt;}
.yf0{bottom:223.447876pt;}
.y1f{bottom:223.848124pt;}
.y11b{bottom:225.501343pt;}
.y149{bottom:226.696126pt;}
.y1e3{bottom:227.214132pt;}
.y195{bottom:231.914530pt;}
.yac{bottom:232.587606pt;}
.y65{bottom:233.760132pt;}
.y10a{bottom:234.861206pt;}
.yef{bottom:236.781209pt;}
.y1e{bottom:237.181458pt;}
.y11a{bottom:238.834676pt;}
.y148{bottom:240.029460pt;}
.y1e2{bottom:240.547465pt;}
.y194{bottom:243.114543pt;}
.yab{bottom:245.920939pt;}
.y64{bottom:247.093465pt;}
.y109{bottom:248.194539pt;}
.yee{bottom:250.114543pt;}
.y1d{bottom:250.514791pt;}
.y119{bottom:252.168009pt;}
.y1e1{bottom:253.880798pt;}
.y193{bottom:254.314533pt;}
.y63{bottom:260.426799pt;}
.y108{bottom:261.527873pt;}
.yed{bottom:263.447876pt;}
.y1c{bottom:263.848124pt;}
.y144{bottom:264.701457pt;}
.y145{bottom:264.702657pt;}
.y192{bottom:265.514526pt;}
.y147{bottom:266.447876pt;}
.y1e0{bottom:267.214132pt;}
.yaa{bottom:272.587606pt;}
.y62{bottom:273.760132pt;}
.y107{bottom:274.861206pt;}
.y191{bottom:276.714539pt;}
.yec{bottom:276.781209pt;}
.y1b{bottom:277.181458pt;}
.y12d{bottom:279.773336pt;}
.ya9{bottom:285.920939pt;}
.y61{bottom:287.093465pt;}
.y190{bottom:287.914530pt;}
.y106{bottom:288.194539pt;}
.yeb{bottom:290.114543pt;}
.y143{bottom:290.440002pt;}
.y1a{bottom:290.514791pt;}
.y1df{bottom:296.547465pt;}
.y18f{bottom:299.114543pt;}
.ya8{bottom:299.254395pt;}
.y60{bottom:300.426799pt;}
.y105{bottom:301.527873pt;}
.yea{bottom:303.447876pt;}
.y142{bottom:303.773336pt;}
.y129{bottom:304.791606pt;}
.y1de{bottom:307.747457pt;}
.y18e{bottom:310.314533pt;}
.ya7{bottom:312.587728pt;}
.y5f{bottom:313.760132pt;}
.y104{bottom:314.861206pt;}
.ye9{bottom:316.781209pt;}
.y128{bottom:318.124939pt;}
.y1dd{bottom:318.947469pt;}
.y19{bottom:319.848124pt;}
.y18d{bottom:321.514526pt;}
.ya6{bottom:325.921061pt;}
.y5e{bottom:327.093465pt;}
.y103{bottom:328.194539pt;}
.y13b{bottom:328.445190pt;}
.y13c{bottom:328.445333pt;}
.ye8{bottom:330.114543pt;}
.y1dc{bottom:330.147461pt;}
.y13e{bottom:332.363871pt;}
.y18c{bottom:332.714539pt;}
.y141{bottom:333.411743pt;}
.y13f{bottom:333.691874pt;}
.y18{bottom:334.514791pt;}
.ya5{bottom:339.254395pt;}
.y5d{bottom:340.426799pt;}
.y1db{bottom:341.347453pt;}
.y102{bottom:341.527873pt;}
.ye7{bottom:343.447876pt;}
.y18b{bottom:343.914551pt;}
.y1da{bottom:352.547485pt;}
.ya4{bottom:352.587728pt;}
.y5c{bottom:353.760132pt;}
.y101{bottom:354.861206pt;}
.y18a{bottom:355.114543pt;}
.y13a{bottom:358.783854pt;}
.y17{bottom:360.520020pt;}
.y1d9{bottom:363.747477pt;}
.ya3{bottom:365.921061pt;}
.y189{bottom:366.314533pt;}
.y5b{bottom:367.093465pt;}
.y100{bottom:368.194539pt;}
.y139{bottom:372.117188pt;}
.y1d8{bottom:374.947469pt;}
.y16{bottom:375.186686pt;}
.y188{bottom:377.514526pt;}
.ya2{bottom:379.254395pt;}
.y5a{bottom:380.426799pt;}
.yff{bottom:381.527873pt;}
.y138{bottom:385.450521pt;}
.y1d7{bottom:386.147461pt;}
.y187{bottom:388.714518pt;}
.y15{bottom:389.853353pt;}
.ya1{bottom:392.587728pt;}
.y59{bottom:393.760132pt;}
.yfe{bottom:394.880127pt;}
.y1d6{bottom:397.347453pt;}
.y137{bottom:398.783854pt;}
.y186{bottom:399.914551pt;}
.y14{bottom:404.520020pt;}
.ya0{bottom:405.921061pt;}
.ye6{bottom:406.653320pt;}
.y58{bottom:407.093465pt;}
.yfd{bottom:408.213460pt;}
.y1d5{bottom:408.547485pt;}
.y185{bottom:411.114543pt;}
.y13{bottom:419.186686pt;}
.y9f{bottom:419.254395pt;}
.y1d4{bottom:419.747477pt;}
.y57{bottom:420.426799pt;}
.y184{bottom:422.314533pt;}
.y131{bottom:423.455729pt;}
.y132{bottom:423.456014pt;}
.y134{bottom:427.374390pt;}
.y136{bottom:428.422282pt;}
.y135{bottom:428.702393pt;}
.y1d3{bottom:430.947469pt;}
.y9e{bottom:432.587728pt;}
.y118{bottom:432.960124pt;}
.y183{bottom:433.514526pt;}
.y56{bottom:433.760132pt;}
.y12{bottom:433.853353pt;}
.ye3{bottom:441.958781pt;}
.y1d2{bottom:442.147461pt;}
.y182{bottom:444.714518pt;}
.y9d{bottom:445.921061pt;}
.y117{bottom:446.293457pt;}
.y55{bottom:447.093465pt;}
.y11{bottom:448.520020pt;}
.y1d1{bottom:453.347453pt;}
.y130{bottom:453.794271pt;}
.ye2{bottom:455.292114pt;}
.y181{bottom:455.914551pt;}
.y9c{bottom:459.254395pt;}
.y54{bottom:460.426799pt;}
.y10{bottom:463.186686pt;}
.y1d0{bottom:464.547485pt;}
.y180{bottom:467.114543pt;}
.y12f{bottom:467.127604pt;}
.ye1{bottom:468.625448pt;}
.y9b{bottom:472.587728pt;}
.y53{bottom:473.760132pt;}
.y1cf{bottom:475.747477pt;}
.yf{bottom:477.853353pt;}
.y17f{bottom:478.314533pt;}
.y12e{bottom:480.460938pt;}
.ye0{bottom:481.958781pt;}
.y9a{bottom:485.921061pt;}
.y1ce{bottom:486.947469pt;}
.y52{bottom:487.093465pt;}
.y17e{bottom:489.514526pt;}
.ye{bottom:492.520020pt;}
.ydf{bottom:495.292114pt;}
.y1cd{bottom:498.147461pt;}
.y99{bottom:499.254395pt;}
.y51{bottom:500.426799pt;}
.y17d{bottom:500.714518pt;}
.yd{bottom:507.186686pt;}
.yde{bottom:508.625448pt;}
.y1cc{bottom:509.347453pt;}
.y17c{bottom:511.914551pt;}
.y98{bottom:512.587728pt;}
.y50{bottom:513.760132pt;}
.y1cb{bottom:520.547485pt;}
.yc{bottom:521.853353pt;}
.ydd{bottom:521.958781pt;}
.y17b{bottom:523.114543pt;}
.y97{bottom:525.921061pt;}
.y4f{bottom:527.093465pt;}
.y1ca{bottom:531.747477pt;}
.y155{bottom:531.893188pt;}
.y17a{bottom:534.314533pt;}
.ydc{bottom:535.292114pt;}
.yb{bottom:536.520020pt;}
.y96{bottom:539.254395pt;}
.y4e{bottom:540.426799pt;}
.y1c9{bottom:542.947469pt;}
.y179{bottom:545.514526pt;}
.ydb{bottom:548.625448pt;}
.ya{bottom:551.186686pt;}
.y95{bottom:552.587728pt;}
.y4d{bottom:553.760132pt;}
.y1c8{bottom:554.147461pt;}
.y178{bottom:556.714518pt;}
.yda{bottom:561.958781pt;}
.y1c7{bottom:565.347453pt;}
.y94{bottom:565.921061pt;}
.y4c{bottom:567.093465pt;}
.y204{bottom:567.661051pt;}
.y177{bottom:567.914551pt;}
.yd9{bottom:575.292114pt;}
.y1c6{bottom:576.547485pt;}
.y9{bottom:577.758952pt;}
.y176{bottom:579.114543pt;}
.y93{bottom:579.254395pt;}
.y4b{bottom:580.426799pt;}
.y1c5{bottom:587.747477pt;}
.yd8{bottom:588.625448pt;}
.y175{bottom:590.314533pt;}
.y8{bottom:593.758952pt;}
.y4a{bottom:593.760132pt;}
.y203{bottom:595.394531pt;}
.y1c4{bottom:598.947469pt;}
.y174{bottom:601.514526pt;}
.yd7{bottom:601.958781pt;}
.y8f{bottom:603.926270pt;}
.y90{bottom:603.926676pt;}
.y12a{bottom:605.484945pt;}
.y92{bottom:606.899455pt;}
.y49{bottom:607.093465pt;}
.y202{bottom:608.727865pt;}
.y7{bottom:609.758952pt;}
.y1c3{bottom:610.147461pt;}
.y173{bottom:612.714518pt;}
.yd6{bottom:615.292114pt;}
.y48{bottom:620.426799pt;}
.y1c2{bottom:621.347453pt;}
.y201{bottom:622.061198pt;}
.y172{bottom:623.914551pt;}
.yd5{bottom:628.625448pt;}
.y8e{bottom:630.278117pt;}
.y1c1{bottom:632.547485pt;}
.y47{bottom:633.760132pt;}
.y171{bottom:635.114543pt;}
.y200{bottom:635.394409pt;}
.y6{bottom:639.062785pt;}
.yd4{bottom:641.958781pt;}
.y8d{bottom:643.611450pt;}
.y1c0{bottom:643.747477pt;}
.y46{bottom:647.093465pt;}
.y1ff{bottom:648.727743pt;}
.y1bf{bottom:654.947469pt;}
.yd3{bottom:655.292114pt;}
.y12c{bottom:658.240153pt;}
.y45{bottom:660.426799pt;}
.y1fe{bottom:662.061076pt;}
.y1be{bottom:666.147461pt;}
.y85{bottom:668.283447pt;}
.y86{bottom:668.284017pt;}
.yd2{bottom:668.625448pt;}
.y12b{bottom:671.573486pt;}
.y8c{bottom:673.556519pt;}
.y44{bottom:673.760132pt;}
.y88{bottom:674.132812pt;}
.y1fd{bottom:675.394409pt;}
.y1bd{bottom:677.347453pt;}
.y5{bottom:679.062785pt;}
.y170{bottom:680.426799pt;}
.yd1{bottom:681.958781pt;}
.y43{bottom:687.093506pt;}
.y1bc{bottom:688.547445pt;}
.y1fc{bottom:688.727702pt;}
.yd0{bottom:695.292155pt;}
.y84{bottom:699.235352pt;}
.y1bb{bottom:699.747477pt;}
.y42{bottom:700.426839pt;}
.y16f{bottom:708.426839pt;}
.ycf{bottom:708.625488pt;}
.y1fb{bottom:710.061035pt;}
.y1ba{bottom:710.947428pt;}
.y83{bottom:712.568685pt;}
.y41{bottom:713.760173pt;}
.y4{bottom:719.062826pt;}
.y16e{bottom:721.760173pt;}
.yce{bottom:721.958822pt;}
.y1b9{bottom:722.147461pt;}
.y1fa{bottom:723.394368pt;}
.y82{bottom:725.902018pt;}
.y40{bottom:727.093506pt;}
.y1b8{bottom:733.347493pt;}
.y16d{bottom:735.093506pt;}
.ycd{bottom:735.292155pt;}
.y81{bottom:739.235352pt;}
.y3f{bottom:740.426839pt;}
.y1f9{bottom:743.455485pt;}
.y1b7{bottom:744.547445pt;}
.ycc{bottom:748.625488pt;}
.y80{bottom:752.568685pt;}
.y3e{bottom:753.760173pt;}
.y1b6{bottom:755.747477pt;}
.y3{bottom:759.062826pt;}
.ycb{bottom:761.958822pt;}
.y1f8{bottom:763.516276pt;}
.y16c{bottom:764.426839pt;}
.y7f{bottom:765.902018pt;}
.y1b5{bottom:766.947428pt;}
.y3d{bottom:767.093506pt;}
.yca{bottom:775.292155pt;}
.y16b{bottom:777.760173pt;}
.y1b4{bottom:778.147461pt;}
.y7e{bottom:779.235352pt;}
.y3c{bottom:780.426839pt;}
.y156{bottom:781.493164pt;}
.y1f7{bottom:783.577230pt;}
.yc9{bottom:788.625488pt;}
.y1b3{bottom:789.347493pt;}
.y16a{bottom:791.093506pt;}
.y7d{bottom:792.568685pt;}
.y3b{bottom:793.760173pt;}
.y1f6{bottom:796.910563pt;}
.y2{bottom:799.062826pt;}
.y1b2{bottom:800.547445pt;}
.yc8{bottom:801.958822pt;}
.y169{bottom:804.426839pt;}
.y7c{bottom:805.902018pt;}
.y3a{bottom:807.093506pt;}
.y1f5{bottom:810.243896pt;}
.y1b1{bottom:811.747477pt;}
.yc7{bottom:815.292155pt;}
.y168{bottom:817.760173pt;}
.y39{bottom:820.426839pt;}
.y1b0{bottom:822.947428pt;}
.yc6{bottom:828.625488pt;}
.y167{bottom:831.093506pt;}
.y7b{bottom:832.568685pt;}
.y38{bottom:833.760173pt;}
.y1af{bottom:834.147461pt;}
.y15f{bottom:834.248291pt;}
.y1{bottom:839.062826pt;}
.y1f4{bottom:839.577230pt;}
.yc5{bottom:841.958822pt;}
.y166{bottom:844.426839pt;}
.y1ae{bottom:845.347493pt;}
.y7a{bottom:845.902018pt;}
.y2a{bottom:846.267497pt;}
.y37{bottom:847.093506pt;}
.y15e{bottom:848.914958pt;}
.y1f3{bottom:852.910563pt;}
.yc4{bottom:855.292155pt;}
.y1ad{bottom:856.547445pt;}
.y165{bottom:857.760173pt;}
.y79{bottom:859.235352pt;}
.y36{bottom:860.426839pt;}
.y1ac{bottom:867.747477pt;}
.y164{bottom:871.093506pt;}
.y78{bottom:872.568685pt;}
.y35{bottom:873.760173pt;}
.y15d{bottom:877.272298pt;}
.y1ab{bottom:878.947428pt;}
.y1f2{bottom:882.243896pt;}
.y163{bottom:884.426839pt;}
.yc3{bottom:884.625488pt;}
.y77{bottom:885.902018pt;}
.y34{bottom:887.093506pt;}
.y1aa{bottom:890.147461pt;}
.y15c{bottom:892.901611pt;}
.y162{bottom:897.760173pt;}
.yc2{bottom:897.958822pt;}
.y76{bottom:899.235352pt;}
.y33{bottom:900.426839pt;}
.y1a9{bottom:901.347493pt;}
.y15b{bottom:908.682129pt;}
.y161{bottom:911.093506pt;}
.yc1{bottom:911.292155pt;}
.y1f1{bottom:911.577230pt;}
.y1a8{bottom:912.547445pt;}
.y75{bottom:912.568685pt;}
.y32{bottom:913.760173pt;}
.y1a7{bottom:923.747477pt;}
.y160{bottom:924.426839pt;}
.y15a{bottom:924.462646pt;}
.yc0{bottom:924.625488pt;}
.y1f0{bottom:924.910563pt;}
.y74{bottom:925.902018pt;}
.y31{bottom:927.093506pt;}
.y1a6{bottom:934.947428pt;}
.ybf{bottom:937.958822pt;}
.y1ef{bottom:938.243896pt;}
.y73{bottom:939.235352pt;}
.y159{bottom:940.058024pt;}
.y30{bottom:940.426839pt;}
.y1a5{bottom:946.147461pt;}
.y1ee{bottom:951.577230pt;}
.y72{bottom:952.568685pt;}
.y2f{bottom:953.760173pt;}
.y158{bottom:955.509603pt;}
.y1a4{bottom:957.347493pt;}
.ybc{bottom:962.630697pt;}
.y1ed{bottom:964.910563pt;}
.y157{bottom:965.509603pt;}
.ybe{bottom:965.890381pt;}
.y71{bottom:965.902018pt;}
.y2e{bottom:967.093506pt;}
.y1a3{bottom:968.547445pt;}
.y2d{bottom:1013.962972pt;}
.y70{bottom:1014.044515pt;}
.h18{height:2.125355pt;}
.h2a{height:10.158667pt;}
.h1b{height:12.613333pt;}
.h1c{height:13.080000pt;}
.h1d{height:13.186667pt;}
.h24{height:16.600000pt;}
.h27{height:16.601333pt;}
.h16{height:17.213333pt;}
.h9{height:22.823827pt;}
.hc{height:22.932291pt;}
.h19{height:23.910400pt;}
.hf{height:30.687500pt;}
.h2d{height:31.476562pt;}
.hb{height:32.605469pt;}
.h5{height:34.523438pt;}
.h17{height:35.865600pt;}
.h2c{height:36.922667pt;}
.h2b{height:38.229333pt;}
.h10{height:38.359375pt;}
.ha{height:38.463801pt;}
.he{height:38.741242pt;}
.h2e{height:39.560000pt;}
.h30{height:40.080000pt;}
.h2f{height:40.960000pt;}
.h20{height:42.195312pt;}
.h28{height:43.837350pt;}
.h25{height:43.837431pt;}
.h29{height:44.171176pt;}
.h26{height:44.171258pt;}
.h4{height:45.703125pt;}
.h1e{height:46.876259pt;}
.h6{height:47.472000pt;}
.h1f{height:48.096000pt;}
.h21{height:49.152000pt;}
.h11{height:49.789645pt;}
.h15{height:49.790296pt;}
.h22{height:49.790376pt;}
.h12{height:49.790377pt;}
.h23{height:49.790416pt;}
.h14{height:49.790418pt;}
.h8{height:49.790422pt;}
.h7{height:49.790459pt;}
.h3{height:50.781250pt;}
.h1a{height:55.366367pt;}
.h13{height:55.859375pt;}
.hd{height:91.406250pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w8{width:97.973338pt;}
.w3{width:128.226664pt;}
.w5{width:146.519999pt;}
.w6{width:159.506663pt;}
.w2{width:181.119995pt;}
.w4{width:200.466675pt;}
.w7{width:207.586670pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:20.653483pt;}
.x1c{left:23.220133pt;}
.x9{left:50.938924pt;}
.x3{left:54.803065pt;}
.xb{left:103.837443pt;}
.xd{left:120.492147pt;}
.xe{left:123.743961pt;}
.x2{left:124.757731pt;}
.x25{left:137.882812pt;}
.x1e{left:144.472168pt;}
.x2a{left:159.537598pt;}
.x19{left:161.937602pt;}
.x10{left:175.029582pt;}
.x26{left:186.457479pt;}
.x18{left:195.537598pt;}
.x1{left:207.874003pt;}
.x2d{left:212.062927pt;}
.x6{left:223.874003pt;}
.x2e{left:224.881999pt;}
.x2b{left:273.161600pt;}
.x4{left:301.133870pt;}
.x20{left:359.198649pt;}
.x14{left:362.758667pt;}
.x21{left:367.560140pt;}
.x2c{left:368.625854pt;}
.x7{left:372.432007pt;}
.x1a{left:383.238647pt;}
.x16{left:389.732015pt;}
.x1b{left:391.600138pt;}
.x12{left:398.878662pt;}
.x28{left:414.005330pt;}
.x8{left:419.957479pt;}
.xa{left:452.721598pt;}
.x23{left:462.030802pt;}
.xc{left:482.357585pt;}
.x24{left:488.889486pt;}
.x1d{left:509.798787pt;}
.x29{left:511.978800pt;}
.x5{left:520.758545pt;}
.x13{left:527.105469pt;}
.x17{left:536.252116pt;}
.xf{left:541.368286pt;}
.x1f{left:542.745483pt;}
.x11{left:553.552124pt;}
.x15{left:563.225586pt;}
.x27{left:566.785482pt;}
}




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