
    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_bea6ec85de3497d73060df87.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f5dc2dc9d9848147037d6687.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_ea260cf2a4ce67d6b2718e50.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_6ce446c1ec81cc4a0dab6e70.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912308;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_8cf5a1b9de8cfcd96d81e44c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4774801ab87fadabdf305e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_351ef0d4544b24fe53338fb8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2fb807b4831f8fa18332a11f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_9c2f29ab3de945cc6870c477.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.943359;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_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_de89f1119d6b3b997ea80960.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_bae34012859985d5c8635af9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.078613;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_1c18ab6cf3ebab284e963758.woff2')format("woff");}.fff{font-family:fff;line-height:0.781000;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_81de1aa16ade8560bb37f6f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912308;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_3d785057979d32e8c363859c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ca23430f2bdf73adec1608a0.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936000;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_6a28e517ab1e475db0ad328f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927734;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_93962c5a1fec503c97863b43.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.078613;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_1c18ab6cf3ebab284e963758.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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_81de1aa16ade8560bb37f6f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912308;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_3d785057979d32e8c363859c.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ca23430f2bdf73adec1608a0.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_1c18ab6cf3ebab284e963758.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.781000;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_81de1aa16ade8560bb37f6f9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.912308;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_3d785057979d32e8c363859c.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_ca23430f2bdf73adec1608a0.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.936000;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_2ff3683e47efcbd835789ac5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.927734;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_26c65fc893a61aea7cbcffd8.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.078613;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_1c18ab6cf3ebab284e963758.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.781000;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_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.936000;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_81de1aa16ade8560bb37f6f9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.912308;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_3d785057979d32e8c363859c.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ca23430f2bdf73adec1608a0.woff2')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_2ff3683e47efcbd835789ac5.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.927734;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_26c65fc893a61aea7cbcffd8.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.078613;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_1c18ab6cf3ebab284e963758.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.781000;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_42a6e8dab3f5120cd2636406.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.936000;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_81de1aa16ade8560bb37f6f9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.912308;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_3d785057979d32e8c363859c.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_ca23430f2bdf73adec1608a0.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_f0b946f77714be48bc900c82.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.690918;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;}
.m1{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);}
.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);}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:19.980000px;}
.v5{vertical-align:32.400000px;}
.v6{vertical-align:64.800000px;}
.lsd{letter-spacing:-3.552000px;}
.lsc{letter-spacing:-2.588520px;}
.ls10{letter-spacing:-1.650000px;}
.lsf{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.003600px;}
.lsa{letter-spacing:0.004920px;}
.lsb{letter-spacing:0.005520px;}
.lse{letter-spacing:0.013200px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls9{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls8{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-420.000000px;}
.ws20{word-spacing:-98.766600px;}
.wsc{word-spacing:-92.160000px;}
.wsb{word-spacing:-75.600000px;}
.ws7b{word-spacing:-72.479400px;}
.ws21{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.ws13c{word-spacing:-20.016000px;}
.ws92{word-spacing:-16.680000px;}
.ws93{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.520000px;}
.ws8b{word-spacing:-14.454000px;}
.ws9f{word-spacing:-14.400000px;}
.ws32{word-spacing:-14.388000px;}
.ws2f{word-spacing:-14.322000px;}
.ws64{word-spacing:-14.190000px;}
.ws65{word-spacing:-13.926000px;}
.ws87{word-spacing:-13.794000px;}
.ws37{word-spacing:-13.728000px;}
.ws82{word-spacing:-13.662000px;}
.ws56{word-spacing:-13.596000px;}
.ws5a{word-spacing:-13.530000px;}
.ws3d{word-spacing:-13.464000px;}
.wsa2{word-spacing:-13.344000px;}
.ws43{word-spacing:-13.134000px;}
.ws15{word-spacing:-13.068000px;}
.ws7{word-spacing:-12.960000px;}
.ws5f{word-spacing:-12.936000px;}
.ws40{word-spacing:-12.870000px;}
.ws4a{word-spacing:-12.804000px;}
.ws26{word-spacing:-12.672000px;}
.ws44{word-spacing:-12.606000px;}
.ws51{word-spacing:-12.540000px;}
.ws33{word-spacing:-12.474000px;}
.ws45{word-spacing:-12.408000px;}
.ws2b{word-spacing:-12.342000px;}
.ws76{word-spacing:-12.276000px;}
.ws13{word-spacing:-12.078000px;}
.ws4f{word-spacing:-12.012000px;}
.ws18{word-spacing:-11.748000px;}
.ws62{word-spacing:-11.616000px;}
.ws29{word-spacing:-11.550000px;}
.ws61{word-spacing:-11.484000px;}
.ws17{word-spacing:-11.352000px;}
.ws2e{word-spacing:-11.286000px;}
.wse{word-spacing:-11.154000px;}
.ws1c{word-spacing:-11.088000px;}
.ws52{word-spacing:-10.890000px;}
.ws3f{word-spacing:-10.824000px;}
.ws3a{word-spacing:-10.758000px;}
.ws7f{word-spacing:-10.626000px;}
.ws6a{word-spacing:-10.560000px;}
.ws85{word-spacing:-10.494000px;}
.ws19{word-spacing:-10.428000px;}
.ws38{word-spacing:-10.362000px;}
.ws54{word-spacing:-10.230000px;}
.ws79{word-spacing:-10.164000px;}
.ws66{word-spacing:-10.098000px;}
.ws6d{word-spacing:-9.966000px;}
.wsc7{word-spacing:-9.792000px;}
.ws6f{word-spacing:-9.768000px;}
.wsc5{word-spacing:-9.724440px;}
.ws60{word-spacing:-9.702000px;}
.ws10{word-spacing:-9.570000px;}
.ws22{word-spacing:-9.438000px;}
.wsf{word-spacing:-9.372000px;}
.ws4e{word-spacing:-9.240000px;}
.ws5b{word-spacing:-9.108000px;}
.ws3e{word-spacing:-9.042000px;}
.ws5e{word-spacing:-8.976000px;}
.ws71{word-spacing:-8.910000px;}
.ws30{word-spacing:-8.844000px;}
.ws5c{word-spacing:-8.778000px;}
.ws6c{word-spacing:-8.646000px;}
.ws108{word-spacing:-8.640000px;}
.ws25{word-spacing:-8.514000px;}
.ws72{word-spacing:-8.448000px;}
.ws89{word-spacing:-8.382000px;}
.ws2c{word-spacing:-8.316000px;}
.ws36{word-spacing:-8.250000px;}
.ws68{word-spacing:-8.052000px;}
.wsb7{word-spacing:-8.040000px;}
.ws24{word-spacing:-7.986000px;}
.ws41{word-spacing:-7.920000px;}
.ws70{word-spacing:-7.854000px;}
.ws6b{word-spacing:-7.788000px;}
.ws31{word-spacing:-7.722000px;}
.ws46{word-spacing:-7.656000px;}
.ws8e{word-spacing:-7.524000px;}
.ws63{word-spacing:-7.392000px;}
.ws7e{word-spacing:-7.260000px;}
.wsc6{word-spacing:-7.135920px;}
.ws1b{word-spacing:-7.128000px;}
.ws5d{word-spacing:-7.062000px;}
.ws14{word-spacing:-6.996000px;}
.ws78{word-spacing:-6.930000px;}
.ws48{word-spacing:-6.864000px;}
.ws84{word-spacing:-6.732000px;}
.ws4c{word-spacing:-6.666000px;}
.ws23{word-spacing:-6.534000px;}
.ws58{word-spacing:-6.402000px;}
.ws4d{word-spacing:-6.270000px;}
.ws55{word-spacing:-6.204000px;}
.ws6e{word-spacing:-6.138000px;}
.ws90{word-spacing:-6.072000px;}
.ws69{word-spacing:-5.940000px;}
.ws11{word-spacing:-5.874000px;}
.ws8a{word-spacing:-5.808000px;}
.ws47{word-spacing:-5.676000px;}
.ws88{word-spacing:-5.544000px;}
.ws27{word-spacing:-5.346000px;}
.ws53{word-spacing:-5.280000px;}
.ws3b{word-spacing:-5.214000px;}
.wsbd{word-spacing:-5.040000px;}
.ws81{word-spacing:-5.016000px;}
.ws67{word-spacing:-4.950000px;}
.ws75{word-spacing:-4.884000px;}
.ws2d{word-spacing:-4.818000px;}
.ws42{word-spacing:-4.752000px;}
.ws10c{word-spacing:-4.740000px;}
.wsf3{word-spacing:-4.500000px;}
.ws2a{word-spacing:-4.422000px;}
.wsd8{word-spacing:-4.380000px;}
.ws13b{word-spacing:-4.374000px;}
.ws34{word-spacing:-4.224000px;}
.ws7d{word-spacing:-4.092000px;}
.ws11e{word-spacing:-4.020000px;}
.ws13d{word-spacing:-3.960000px;}
.ws16{word-spacing:-3.894000px;}
.wsa9{word-spacing:-3.840000px;}
.ws8d{word-spacing:-3.828000px;}
.ws86{word-spacing:-3.762000px;}
.ws74{word-spacing:-3.630000px;}
.wsf4{word-spacing:-3.600000px;}
.ws3c{word-spacing:-3.498000px;}
.ws39{word-spacing:-3.432000px;}
.wsdc{word-spacing:-3.300000px;}
.wsf1{word-spacing:-3.240000px;}
.ws9e{word-spacing:-3.186000px;}
.ws112{word-spacing:-3.180000px;}
.ws8c{word-spacing:-3.168000px;}
.wsdf{word-spacing:-3.120000px;}
.ws83{word-spacing:-3.102000px;}
.ws118{word-spacing:-3.060000px;}
.ws77{word-spacing:-3.036000px;}
.wsc1{word-spacing:-3.024000px;}
.ws59{word-spacing:-2.838000px;}
.ws116{word-spacing:-2.820000px;}
.ws50{word-spacing:-2.772000px;}
.wsa0{word-spacing:-2.760000px;}
.ws57{word-spacing:-2.706000px;}
.ws28{word-spacing:-2.640000px;}
.ws98{word-spacing:-2.592000px;}
.ws8f{word-spacing:-2.574000px;}
.ws49{word-spacing:-2.442000px;}
.ws1d{word-spacing:-2.376000px;}
.ws121{word-spacing:-2.340000px;}
.wsbb{word-spacing:-2.280000px;}
.ws73{word-spacing:-2.244000px;}
.ws2{word-spacing:-2.220000px;}
.ws4b{word-spacing:-2.112000px;}
.ws9b{word-spacing:-2.106000px;}
.ws12b{word-spacing:-2.100000px;}
.ws132{word-spacing:-2.052000px;}
.ws1a{word-spacing:-2.046000px;}
.ws3{word-spacing:-1.998000px;}
.ws80{word-spacing:-1.914000px;}
.ws1e{word-spacing:-1.782000px;}
.ws12{word-spacing:-1.776000px;}
.wsaa{word-spacing:-1.500000px;}
.ws97{word-spacing:-1.350000px;}
.ws104{word-spacing:-1.320000px;}
.wse1{word-spacing:-1.152000px;}
.ws4{word-spacing:-0.972000px;}
.wsc2{word-spacing:-0.960000px;}
.ws35{word-spacing:-0.864000px;}
.ws101{word-spacing:-0.780000px;}
.wsc4{word-spacing:-0.720000px;}
.ws11f{word-spacing:-0.600000px;}
.ws135{word-spacing:-0.594000px;}
.wsc3{word-spacing:-0.528000px;}
.wse0{word-spacing:-0.480000px;}
.ws122{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.120000px;}
.ws11b{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws134{word-spacing:0.054000px;}
.wsb4{word-spacing:0.300000px;}
.wsbf{word-spacing:0.384000px;}
.wscc{word-spacing:0.600000px;}
.wsde{word-spacing:0.660000px;}
.ws133{word-spacing:0.702000px;}
.ws9a{word-spacing:0.756000px;}
.ws111{word-spacing:0.780000px;}
.ws103{word-spacing:0.960000px;}
.ws10f{word-spacing:1.260000px;}
.ws11a{word-spacing:1.320000px;}
.wsa8{word-spacing:1.440000px;}
.ws138{word-spacing:1.512000px;}
.wsd5{word-spacing:1.680000px;}
.wsf7{word-spacing:2.040000px;}
.wsfb{word-spacing:2.100000px;}
.wscd{word-spacing:2.220000px;}
.wsf8{word-spacing:2.640000px;}
.ws115{word-spacing:2.820000px;}
.wsb0{word-spacing:2.880000px;}
.ws113{word-spacing:2.940000px;}
.wsbc{word-spacing:3.060000px;}
.wsb8{word-spacing:3.360000px;}
.ws10d{word-spacing:3.480000px;}
.wsc0{word-spacing:3.648000px;}
.wsce{word-spacing:3.720000px;}
.ws107{word-spacing:3.900000px;}
.wsba{word-spacing:3.960000px;}
.ws127{word-spacing:4.140000px;}
.ws96{word-spacing:4.158000px;}
.wsd7{word-spacing:4.200000px;}
.ws9d{word-spacing:4.536000px;}
.wsc9{word-spacing:4.560000px;}
.wsf6{word-spacing:4.620000px;}
.wsb6{word-spacing:4.680000px;}
.ws100{word-spacing:4.800000px;}
.ws137{word-spacing:5.022000px;}
.wsa4{word-spacing:5.160000px;}
.ws12f{word-spacing:5.520000px;}
.ws114{word-spacing:5.580000px;}
.wsdd{word-spacing:5.820000px;}
.wsa7{word-spacing:6.120000px;}
.wsa6{word-spacing:6.420000px;}
.wsb2{word-spacing:6.480000px;}
.wsbe{word-spacing:6.864000px;}
.ws13a{word-spacing:6.912000px;}
.ws9c{word-spacing:7.074000px;}
.ws109{word-spacing:7.080000px;}
.ws126{word-spacing:7.260000px;}
.ws130{word-spacing:7.320000px;}
.wsd3{word-spacing:7.380000px;}
.ws136{word-spacing:7.452000px;}
.ws10e{word-spacing:7.620000px;}
.ws12e{word-spacing:7.680000px;}
.wsd0{word-spacing:7.800000px;}
.wsf5{word-spacing:8.040000px;}
.ws99{word-spacing:8.154000px;}
.wsfa{word-spacing:8.220000px;}
.ws110{word-spacing:8.460000px;}
.wsdb{word-spacing:8.580000px;}
.wscf{word-spacing:8.820000px;}
.ws131{word-spacing:8.856000px;}
.ws12c{word-spacing:9.240000px;}
.ws10a{word-spacing:9.360000px;}
.wsab{word-spacing:9.420000px;}
.wsb9{word-spacing:9.780000px;}
.ws124{word-spacing:10.140000px;}
.ws106{word-spacing:10.380000px;}
.ws10b{word-spacing:10.920000px;}
.ws120{word-spacing:11.040000px;}
.wsd2{word-spacing:11.160000px;}
.ws128{word-spacing:11.280000px;}
.wsfd{word-spacing:11.400000px;}
.ws117{word-spacing:11.460000px;}
.wsa3{word-spacing:11.520000px;}
.ws95{word-spacing:12.150000px;}
.ws123{word-spacing:12.240000px;}
.wsd4{word-spacing:12.300000px;}
.wsff{word-spacing:12.360000px;}
.wsd6{word-spacing:12.600000px;}
.wsf2{word-spacing:12.780000px;}
.wsb3{word-spacing:12.960000px;}
.wscb{word-spacing:13.260000px;}
.wsd1{word-spacing:13.440000px;}
.wsc8{word-spacing:13.620000px;}
.wsfc{word-spacing:13.740000px;}
.wsd9{word-spacing:14.100000px;}
.ws139{word-spacing:14.148000px;}
.wsca{word-spacing:14.340000px;}
.ws11d{word-spacing:15.780000px;}
.wsa1{word-spacing:15.840000px;}
.ws12d{word-spacing:16.680000px;}
.wsb5{word-spacing:16.980000px;}
.ws94{word-spacing:17.010000px;}
.wsae{word-spacing:17.400000px;}
.ws129{word-spacing:17.640000px;}
.wsb1{word-spacing:18.420000px;}
.wsac{word-spacing:18.900000px;}
.wsda{word-spacing:20.520000px;}
.ws8{word-spacing:20.574000px;}
.wsaf{word-spacing:20.760000px;}
.wsf9{word-spacing:21.300000px;}
.ws11c{word-spacing:21.960000px;}
.ws105{word-spacing:23.040000px;}
.ws12a{word-spacing:23.100000px;}
.wsfe{word-spacing:24.120000px;}
.wsa5{word-spacing:26.100000px;}
.ws102{word-spacing:27.180000px;}
.ws125{word-spacing:27.420000px;}
.ws119{word-spacing:28.860000px;}
.ws9{word-spacing:41.597400px;}
.wsa{word-spacing:41.633400px;}
.ws91{word-spacing:66.634800px;}
.ws1f{word-spacing:81.017400px;}
.ws7c{word-spacing:92.554800px;}
.ws5{word-spacing:101.888400px;}
.ws7a{word-spacing:107.243400px;}
.wsef{word-spacing:116.631600px;}
.wse4{word-spacing:223.915800px;}
.wse6{word-spacing:225.919200px;}
.wse9{word-spacing:238.931400px;}
.wsea{word-spacing:253.939200px;}
.wseb{word-spacing:275.661600px;}
.wsed{word-spacing:293.697600px;}
.wsee{word-spacing:299.691600px;}
.wsf0{word-spacing:329.715600px;}
.wsec{word-spacing:426.064800px;}
.wse7{word-spacing:569.455800px;}
.wse2{word-spacing:602.014200px;}
.wse3{word-spacing:967.851000px;}
.wse5{word-spacing:1099.827000px;}
.wse8{word-spacing:1141.839000px;}
._10{margin-left:-2067.096000px;}
._36{margin-left:-1881.693600px;}
._2d{margin-left:-1721.301600px;}
._2b{margin-left:-1718.806800px;}
._3f{margin-left:-1698.882600px;}
._34{margin-left:-1597.708200px;}
._38{margin-left:-1537.439400px;}
._25{margin-left:-1473.690000px;}
._2f{margin-left:-1406.215800px;}
._27{margin-left:-1348.122600px;}
._8{margin-left:-1344.388800px;}
._43{margin-left:-1325.889000px;}
._30{margin-left:-1314.353400px;}
._17{margin-left:-1272.573000px;}
._e{margin-left:-1238.490600px;}
._32{margin-left:-1212.406200px;}
._29{margin-left:-1194.318600px;}
._12{margin-left:-1134.312600px;}
._c{margin-left:-1121.347800px;}
._2a{margin-left:-1086.210000px;}
._3b{margin-left:-1072.250400px;}
._1c{margin-left:-1068.670800px;}
._14{margin-left:-1065.258000px;}
._9{margin-left:-1053.270000px;}
._1e{margin-left:-1029.294000px;}
._a{margin-left:-998.220000px;}
._15{margin-left:-951.156000px;}
._35{margin-left:-937.422000px;}
._23{margin-left:-927.258600px;}
._11{margin-left:-924.264000px;}
._21{margin-left:-915.300000px;}
._18{margin-left:-897.210000px;}
._42{margin-left:-891.096000px;}
._3e{margin-left:-882.966000px;}
._20{margin-left:-878.310000px;}
._13{margin-left:-861.192000px;}
._3c{margin-left:-858.276000px;}
._1a{margin-left:-853.032000px;}
._31{margin-left:-840.294000px;}
._1b{margin-left:-838.440000px;}
._d{margin-left:-813.078000px;}
._16{margin-left:-796.932000px;}
._22{margin-left:-786.240000px;}
._1d{margin-left:-782.130000px;}
._1f{margin-left:-775.422000px;}
._33{margin-left:-767.210400px;}
._40{margin-left:-762.156000px;}
._24{margin-left:-724.446000px;}
._3a{margin-left:-705.240000px;}
._2c{margin-left:-696.222000px;}
._7{margin-left:-693.252000px;}
._3d{margin-left:-609.336000px;}
._6{margin-left:-571.860000px;}
._41{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._19{margin-left:-480.864000px;}
._2e{margin-left:-441.126000px;}
._f{margin-left:-399.114000px;}
._28{margin-left:-389.048400px;}
._39{margin-left:-378.162000px;}
._37{margin-left:-366.120000px;}
._26{margin-left:-264.060000px;}
._48{margin-left:-13.186800px;}
._44{margin-left:-10.800000px;}
._4a{margin-left:-9.106800px;}
._b{margin-left:-6.993000px;}
._3{margin-left:-5.757600px;}
._4{margin-left:-4.017600px;}
._2{margin-left:-2.220000px;}
._5{margin-left:-1.043400px;}
._49{width:1.015200px;}
._1{width:2.196000px;}
._4b{width:3.608400px;}
._4e{width:5.473200px;}
._4c{width:6.926400px;}
._47{width:8.532000px;}
._46{width:10.492200px;}
._4f{width:11.545800px;}
._58{width:13.248120px;}
._57{width:14.291880px;}
._51{width:16.178400px;}
._6b{width:18.180000px;}
._50{width:19.192200px;}
._45{width:20.410200px;}
._52{width:22.204800px;}
._6d{width:28.983000px;}
._6e{width:33.000600px;}
._59{width:52.335000px;}
._5b{width:53.487000px;}
._5a{width:56.299800px;}
._6c{width:59.007000px;}
._53{width:72.144000px;}
._55{width:75.360000px;}
._54{width:78.624000px;}
._56{width:79.968000px;}
._5d{width:120.460200px;}
._5e{width:161.323800px;}
._66{width:167.494200px;}
._4d{width:231.220200px;}
._62{width:238.927800px;}
._61{width:295.659000px;}
._68{width:338.088600px;}
._65{width:364.108800px;}
._64{width:455.469600px;}
._69{width:461.046600px;}
._6a{width:467.148600px;}
._67{width:482.106600px;}
._5c{width:839.087400px;}
._5f{width:904.779000px;}
._60{width:964.827000px;}
._63{width:994.909200px;}
.fcc{color:rgb(105,198,71);}
.fcb{color:rgb(246,131,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(210,32,39);}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(90,198,243);}
.fc5{color:rgb(61,123,199);}
.fc6{color:rgb(48,169,64);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:transparent;}
.fc1{color:rgb(217,182,26);}
.fc0{color:rgb(213,185,16);}
.fsc{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs0{font-size:300.112800px;}
.fs3{font-size:420.000000px;}
.fs1{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.509250px;}
.y3{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y36{bottom:84.471900px;}
.ya2{bottom:85.007400px;}
.y61{bottom:126.811800px;}
.y35{bottom:127.558950px;}
.y5d{bottom:127.559100px;}
.y13d{bottom:128.869650px;}
.y16e{bottom:130.017750px;}
.y278{bottom:131.503950px;}
.y6c{bottom:134.096100px;}
.y1db{bottom:138.746400px;}
.y249{bottom:141.959100px;}
.y60{bottom:143.011800px;}
.y13c{bottom:143.269650px;}
.y16d{bottom:144.417600px;}
.y2a6{bottom:146.119050px;}
.y34{bottom:146.811000px;}
.y2df{bottom:147.134550px;}
.y15d{bottom:147.521550px;}
.y5c{bottom:148.011000px;}
.y11c{bottom:148.669650px;}
.y277{bottom:149.503950px;}
.y109{bottom:149.817750px;}
.y19e{bottom:150.965700px;}
.y6b{bottom:152.096100px;}
.y213{bottom:156.047100px;}
.y248{bottom:156.359100px;}
.y1da{bottom:156.746400px;}
.y5f{bottom:159.211800px;}
.y15c{bottom:161.921700px;}
.y11b{bottom:163.069650px;}
.y2de{bottom:163.334400px;}
.y2a5{bottom:164.119050px;}
.y108{bottom:164.217750px;}
.y19d{bottom:165.365700px;}
.y33{bottom:166.062900px;}
.y13b{bottom:167.321550px;}
.y276{bottom:167.503950px;}
.y5b{bottom:168.463050px;}
.y1a9{bottom:168.469650px;}
.y6a{bottom:170.096100px;}
.y212{bottom:170.447100px;}
.y247{bottom:170.759100px;}
.yd4{bottom:174.904350px;}
.y5e{bottom:175.411800px;}
.y2dd{bottom:179.534400px;}
.y13a{bottom:181.721700px;}
.y2a4{bottom:182.119050px;}
.y11a{bottom:182.869650px;}
.y1d9{bottom:183.250350px;}
.y211{bottom:184.847100px;}
.y246{bottom:185.159100px;}
.y19c{bottom:185.165700px;}
.y32{bottom:185.314950px;}
.y275{bottom:185.503950px;}
.y14b{bottom:187.121550px;}
.y69{bottom:188.096100px;}
.y107{bottom:188.269650px;}
.y5a{bottom:188.914950px;}
.yd3{bottom:189.304350px;}
.y2dc{bottom:195.734550px;}
.y210{bottom:199.247100px;}
.y245{bottom:199.559100px;}
.y2a3{bottom:200.119050px;}
.y139{bottom:201.521550px;}
.y106{bottom:202.669650px;}
.y274{bottom:203.503950px;}
.y31{bottom:204.566850px;}
.y15b{bottom:205.773600px;}
.y68{bottom:206.096100px;}
.y1b3{bottom:206.921700px;}
.yd2{bottom:209.104350px;}
.y19b{bottom:209.217750px;}
.y59{bottom:209.366850px;}
.ya1{bottom:209.507550px;}
.y2db{bottom:211.934550px;}
.y20f{bottom:213.647100px;}
.y244{bottom:213.959100px;}
.y2a2{bottom:218.119050px;}
.y15a{bottom:220.173600px;}
.y14a{bottom:221.321550px;}
.y273{bottom:221.503950px;}
.y16c{bottom:222.469650px;}
.y19a{bottom:223.617600px;}
.y30{bottom:223.818900px;}
.y67{bottom:224.096100px;}
.y138{bottom:225.573600px;}
.y105{bottom:226.721700px;}
.y20e{bottom:228.047100px;}
.y2da{bottom:228.134550px;}
.y243{bottom:228.359100px;}
.y58{bottom:229.818900px;}
.ya0{bottom:229.959600px;}
.yd1{bottom:233.156400px;}
.y1d8{bottom:234.211950px;}
.y2a1{bottom:236.119050px;}
.y272{bottom:239.503950px;}
.y137{bottom:239.973600px;}
.y104{bottom:241.121550px;}
.y66{bottom:242.096100px;}
.y20d{bottom:242.447100px;}
.y242{bottom:242.759100px;}
.y2f{bottom:243.070800px;}
.y2d9{bottom:244.334400px;}
.y149{bottom:245.373600px;}
.y16b{bottom:246.521550px;}
.yd0{bottom:247.556250px;}
.y199{bottom:247.669650px;}
.y57{bottom:250.270800px;}
.y9f{bottom:250.411500px;}
.y1d7{bottom:252.211950px;}
.y2e8{bottom:253.855950px;}
.y2a0{bottom:254.119050px;}
.y20c{bottom:256.847100px;}
.y271{bottom:257.503950px;}
.y148{bottom:259.773600px;}
.y65{bottom:260.096100px;}
.y2d8{bottom:260.534400px;}
.y119{bottom:260.921700px;}
.y198{bottom:262.069650px;}
.y2e{bottom:262.322700px;}
.y136{bottom:264.025500px;}
.y103{bottom:265.173600px;}
.ycf{bottom:267.356250px;}
.y56{bottom:270.722850px;}
.y9e{bottom:270.863550px;}
.y20b{bottom:271.247100px;}
.y2e7{bottom:271.855950px;}
.y29f{bottom:272.119050px;}
.y270{bottom:275.503950px;}
.y2d7{bottom:276.734550px;}
.y135{bottom:278.425500px;}
.y1d6{bottom:278.715900px;}
.y102{bottom:279.573600px;}
.y2d{bottom:281.574750px;}
.y197{bottom:281.869650px;}
.y241{bottom:283.911150px;}
.y118{bottom:284.973600px;}
.y20a{bottom:285.647100px;}
.y64{bottom:286.600050px;}
.y29e{bottom:290.119050px;}
.y55{bottom:291.174750px;}
.y9d{bottom:291.315450px;}
.yce{bottom:291.408300px;}
.y2d6{bottom:292.934550px;}
.y26f{bottom:293.503950px;}
.y1d5{bottom:296.715900px;}
.y134{bottom:298.225500px;}
.y101{bottom:299.373600px;}
.y209{bottom:300.047100px;}
.y2c{bottom:300.826650px;}
.y240{bottom:301.911150px;}
.y147{bottom:303.625650px;}
.y63{bottom:304.600050px;}
.y2fe{bottom:305.730000px;}
.ycd{bottom:305.808300px;}
.y196{bottom:305.921700px;}
.y29d{bottom:308.119050px;}
.y2d5{bottom:309.134550px;}
.y26e{bottom:311.503950px;}
.y54{bottom:311.626800px;}
.y9c{bottom:311.767350px;}
.y208{bottom:314.447100px;}
.y1d4{bottom:314.715900px;}
.y146{bottom:318.025500px;}
.y117{bottom:319.173600px;}
.y23f{bottom:319.911150px;}
.y2b{bottom:320.078700px;}
.y195{bottom:320.321550px;}
.y133{bottom:322.277550px;}
.y100{bottom:323.425500px;}
.y2d4{bottom:325.334400px;}
.y2fd{bottom:325.530000px;}
.ycc{bottom:325.608300px;}
.y29c{bottom:326.119050px;}
.y207{bottom:328.847100px;}
.y26d{bottom:329.503950px;}
.y62{bottom:331.104000px;}
.y53{bottom:332.078700px;}
.y9b{bottom:332.219400px;}
.y1d3{bottom:332.715900px;}
.y132{bottom:336.677550px;}
.yff{bottom:337.825500px;}
.y23e{bottom:337.911150px;}
.y2a{bottom:339.330600px;}
.y194{bottom:340.121550px;}
.y2d3{bottom:341.534400px;}
.y116{bottom:343.225500px;}
.y206{bottom:343.247100px;}
.y29b{bottom:344.119050px;}
.y2fc{bottom:345.330000px;}
.ycb{bottom:349.660200px;}
.y1d2{bottom:350.715900px;}
.y52{bottom:352.530600px;}
.y9a{bottom:352.671300px;}
.y159{bottom:356.477550px;}
.yfe{bottom:357.625650px;}
.y205{bottom:357.647100px;}
.y2d2{bottom:357.734550px;}
.y29{bottom:358.582650px;}
.y131{bottom:360.729450px;}
.y145{bottom:361.877550px;}
.y29a{bottom:362.119050px;}
.yca{bottom:364.060200px;}
.y193{bottom:364.173600px;}
.y23d{bottom:364.415100px;}
.y2fb{bottom:365.130000px;}
.y26c{bottom:365.503950px;}
.y1d1{bottom:368.715900px;}
.y204{bottom:372.047100px;}
.y51{bottom:372.982650px;}
.y99{bottom:373.123350px;}
.y2d1{bottom:373.934550px;}
.y130{bottom:375.129450px;}
.y144{bottom:376.277550px;}
.y115{bottom:377.425500px;}
.y28{bottom:377.834550px;}
.y192{bottom:378.573600px;}
.y299{bottom:380.119050px;}
.y158{bottom:380.529450px;}
.yfd{bottom:381.677550px;}
.y26b{bottom:383.503950px;}
.y2fa{bottom:384.930000px;}
.y1d0{bottom:386.715900px;}
.yc9{bottom:388.112250px;}
.y2d0{bottom:390.134550px;}
.y50{bottom:393.434550px;}
.y98{bottom:393.575250px;}
.y12f{bottom:394.929450px;}
.yfc{bottom:396.077550px;}
.y27{bottom:397.086600px;}
.y298{bottom:398.119050px;}
.y191{bottom:398.373600px;}
.y114{bottom:401.477550px;}
.y26a{bottom:401.503950px;}
.yc8{bottom:402.512250px;}
.y23c{bottom:404.015100px;}
.y1cf{bottom:404.715900px;}
.y2cf{bottom:406.334400px;}
.y4f{bottom:413.886600px;}
.y97{bottom:414.027300px;}
.y157{bottom:414.729450px;}
.y113{bottom:415.877550px;}
.y297{bottom:416.119050px;}
.y26{bottom:416.338500px;}
.y12e{bottom:418.981500px;}
.yfb{bottom:420.129450px;}
.y203{bottom:422.014950px;}
.y23b{bottom:422.015100px;}
.yc7{bottom:422.312250px;}
.y190{bottom:422.425500px;}
.y269{bottom:423.748650px;}
.y268{bottom:431.848650px;}
.y2f3{bottom:432.045300px;}
.y12d{bottom:433.381500px;}
.y296{bottom:434.119050px;}
.y4e{bottom:434.338500px;}
.y96{bottom:434.479200px;}
.yfa{bottom:434.529450px;}
.y25{bottom:435.590400px;}
.y16a{bottom:435.677550px;}
.y18f{bottom:436.825500px;}
.y156{bottom:438.781500px;}
.y112{bottom:439.929450px;}
.y202{bottom:440.014950px;}
.y23a{bottom:440.015100px;}
.y2ce{bottom:440.534550px;}
.yc6{bottom:446.364150px;}
.y1ce{bottom:448.204350px;}
.y2f2{bottom:451.845300px;}
.y295{bottom:452.119050px;}
.y12c{bottom:453.181500px;}
.yf9{bottom:454.329450px;}
.y4d{bottom:454.790550px;}
.y24{bottom:454.842450px;}
.y95{bottom:454.931250px;}
.y201{bottom:458.014950px;}
.y239{bottom:458.015100px;}
.y2cd{bottom:458.534550px;}
.y1b2{bottom:458.581500px;}
.y169{bottom:459.729450px;}
.yc5{bottom:460.764150px;}
.y18e{bottom:460.877550px;}
.y1cd{bottom:466.204350px;}
.y267{bottom:469.516500px;}
.y294{bottom:470.119050px;}
.y2f1{bottom:471.645300px;}
.y155{bottom:472.981500px;}
.y23{bottom:474.094500px;}
.y168{bottom:474.129450px;}
.y4c{bottom:475.242450px;}
.y18d{bottom:475.277550px;}
.y94{bottom:475.383150px;}
.y200{bottom:476.014950px;}
.y238{bottom:476.015100px;}
.y2cc{bottom:476.534550px;}
.y12b{bottom:477.233400px;}
.y266{bottom:477.616500px;}
.yf8{bottom:478.381500px;}
.yc4{bottom:480.564300px;}
.y293{bottom:488.119050px;}
.y12a{bottom:491.633400px;}
.y1cc{bottom:492.708300px;}
.yf7{bottom:492.781500px;}
.y22{bottom:493.346400px;}
.y1ff{bottom:494.014950px;}
.y237{bottom:494.015100px;}
.y2cb{bottom:494.534550px;}
.y18c{bottom:495.077550px;}
.y4b{bottom:495.694500px;}
.y93{bottom:495.835200px;}
.y154{bottom:497.033400px;}
.y167{bottom:498.181500px;}
.yc3{bottom:504.616200px;}
.y292{bottom:506.119050px;}
.y1cb{bottom:510.708300px;}
.y129{bottom:511.433400px;}
.y1fe{bottom:512.014950px;}
.y236{bottom:512.015100px;}
.y2ca{bottom:512.534550px;}
.y166{bottom:512.581500px;}
.y21{bottom:512.598300px;}
.y265{bottom:515.284350px;}
.y4a{bottom:516.146400px;}
.y92{bottom:516.287100px;}
.yf6{bottom:516.833400px;}
.y2f9{bottom:518.760750px;}
.yc2{bottom:519.016200px;}
.y18b{bottom:519.129450px;}
.y264{bottom:523.384350px;}
.y291{bottom:524.119050px;}
.y1ca{bottom:528.708300px;}
.y1fd{bottom:530.014950px;}
.y235{bottom:530.015100px;}
.y2c9{bottom:530.534550px;}
.yf5{bottom:531.233400px;}
.y20{bottom:531.850350px;}
.y165{bottom:532.381500px;}
.y18a{bottom:533.529450px;}
.y128{bottom:535.485450px;}
.y49{bottom:536.598450px;}
.y91{bottom:536.739000px;}
.y2f8{bottom:538.560750px;}
.yc1{bottom:538.816200px;}
.y290{bottom:542.119050px;}
.y1c9{bottom:546.708300px;}
.y1fc{bottom:548.014950px;}
.y234{bottom:548.015100px;}
.y2c8{bottom:548.534550px;}
.y127{bottom:549.885450px;}
.yf4{bottom:551.033400px;}
.y1f{bottom:551.102400px;}
.y153{bottom:555.285450px;}
.y164{bottom:556.433400px;}
.y48{bottom:557.050350px;}
.y189{bottom:557.581500px;}
.y2f7{bottom:558.360600px;}
.y28f{bottom:560.119050px;}
.y263{bottom:561.052200px;}
.yc0{bottom:562.868250px;}
.y1c8{bottom:564.708300px;}
.y1fb{bottom:566.014950px;}
.y233{bottom:566.015100px;}
.y2c7{bottom:566.534550px;}
.y262{bottom:569.152200px;}
.y126{bottom:569.685450px;}
.y1e{bottom:570.354300px;}
.y163{bottom:570.833400px;}
.y188{bottom:571.981500px;}
.yf3{bottom:575.085450px;}
.ybf{bottom:577.268100px;}
.y47{bottom:577.502400px;}
.y28e{bottom:578.119050px;}
.y2f6{bottom:578.160750px;}
.y90{bottom:580.616550px;}
.y1c7{bottom:582.708300px;}
.y1fa{bottom:584.014950px;}
.y232{bottom:584.015100px;}
.y2c6{bottom:584.534550px;}
.yf2{bottom:589.485450px;}
.y1d{bottom:589.606200px;}
.y1a8{bottom:590.633400px;}
.y187{bottom:591.781500px;}
.y125{bottom:593.737350px;}
.y162{bottom:594.885450px;}
.y28d{bottom:596.119050px;}
.ybe{bottom:597.068100px;}
.y8f{bottom:597.116550px;}
.y46{bottom:597.954300px;}
.y2f5{bottom:597.960600px;}
.y1c6{bottom:600.708300px;}
.y1f9{bottom:602.014950px;}
.y231{bottom:602.015100px;}
.y2c5{bottom:602.534550px;}
.y261{bottom:606.820050px;}
.y124{bottom:608.137350px;}
.y1c{bottom:608.858250px;}
.yf1{bottom:609.285450px;}
.y152{bottom:613.537350px;}
.y8e{bottom:613.616550px;}
.y28c{bottom:614.119050px;}
.y1a7{bottom:614.685450px;}
.y260{bottom:614.920050px;}
.y186{bottom:615.833400px;}
.y2f4{bottom:617.760750px;}
.y45{bottom:618.406200px;}
.y1f8{bottom:620.014950px;}
.y230{bottom:620.015100px;}
.y2c4{bottom:620.534550px;}
.ybd{bottom:621.120150px;}
.y123{bottom:627.937350px;}
.y1b{bottom:628.110150px;}
.y161{bottom:629.085450px;}
.y8d{bottom:630.116550px;}
.y185{bottom:630.233400px;}
.y28b{bottom:632.119050px;}
.yf0{bottom:633.337350px;}
.ybc{bottom:635.520150px;}
.y1f7{bottom:638.014950px;}
.y22f{bottom:638.015100px;}
.y2c3{bottom:638.534550px;}
.y44{bottom:638.858250px;}
.y1c5{bottom:642.070050px;}
.y8c{bottom:646.616550px;}
.y1a{bottom:647.362200px;}
.yef{bottom:647.737350px;}
.y1a6{bottom:648.885450px;}
.y28a{bottom:650.119050px;}
.y160{bottom:653.137350px;}
.y184{bottom:654.285450px;}
.ybb{bottom:655.320150px;}
.y1f6{bottom:656.014950px;}
.y22e{bottom:656.015100px;}
.y2c2{bottom:656.534550px;}
.y43{bottom:659.310150px;}
.y8b{bottom:663.116550px;}
.y19{bottom:666.614100px;}
.yee{bottom:667.537350px;}
.y289{bottom:668.119050px;}
.y1c4{bottom:668.574000px;}
.y183{bottom:668.685450px;}
.y122{bottom:671.789400px;}
.y25f{bottom:672.129900px;}
.y1a5{bottom:672.937350px;}
.y1f5{bottom:674.014950px;}
.y22d{bottom:674.015100px;}
.y2c1{bottom:674.534550px;}
.y2f0{bottom:677.952450px;}
.yba{bottom:679.372050px;}
.y8a{bottom:679.616550px;}
.y42{bottom:679.762200px;}
.y18{bottom:685.866000px;}
.y288{bottom:686.119050px;}
.y121{bottom:686.189400px;}
.y1c3{bottom:686.574000px;}
.y15f{bottom:687.337350px;}
.y182{bottom:688.485450px;}
.yed{bottom:691.589250px;}
.y1f4{bottom:692.014950px;}
.y22c{bottom:692.015100px;}
.y2c0{bottom:692.534550px;}
.yb9{bottom:693.772050px;}
.y89{bottom:696.116550px;}
.y2ef{bottom:697.752450px;}
.y41{bottom:700.214100px;}
.y287{bottom:704.119050px;}
.y1c2{bottom:704.574000px;}
.y17{bottom:705.118050px;}
.yec{bottom:705.989250px;}
.y1a4{bottom:707.137350px;}
.y1f3{bottom:710.014950px;}
.y22b{bottom:710.015100px;}
.y1b1{bottom:710.241300px;}
.y2bf{bottom:710.534550px;}
.y15e{bottom:711.389400px;}
.y181{bottom:712.537350px;}
.y88{bottom:712.616550px;}
.yb8{bottom:713.572050px;}
.y2ee{bottom:717.552450px;}
.y25e{bottom:717.744900px;}
.y40{bottom:720.666150px;}
.y286{bottom:722.119050px;}
.y1c1{bottom:722.574000px;}
.y16{bottom:724.369950px;}
.y1b0{bottom:724.641300px;}
.yeb{bottom:725.789400px;}
.y180{bottom:726.937350px;}
.y1f2{bottom:728.014950px;}
.y22a{bottom:728.015100px;}
.y2be{bottom:728.534550px;}
.y87{bottom:729.116550px;}
.y120{bottom:730.041300px;}
.y1a3{bottom:731.189400px;}
.y2ed{bottom:737.352450px;}
.yb7{bottom:737.624100px;}
.y285{bottom:740.119050px;}
.y1c0{bottom:740.574000px;}
.y3f{bottom:741.118050px;}
.y15{bottom:743.622000px;}
.y11f{bottom:744.441300px;}
.y1a2{bottom:745.589250px;}
.y86{bottom:745.616550px;}
.y229{bottom:746.015100px;}
.y2bd{bottom:746.534550px;}
.yea{bottom:749.841300px;}
.y17f{bottom:750.989250px;}
.yb6{bottom:752.024100px;}
.y25d{bottom:753.744900px;}
.y1f1{bottom:754.518900px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y284{bottom:758.119050px;}
.y1bf{bottom:758.574000px;}
.y3e{bottom:761.570100px;}
.y85{bottom:762.116550px;}
.y14{bottom:762.873900px;}
.y228{bottom:764.015100px;}
.ye9{bottom:764.241300px;}
.y2bc{bottom:764.534550px;}
.y17e{bottom:765.389400px;}
.y2e9{bottom:766.563300px;}
.y1af{bottom:768.493350px;}
.y25c{bottom:771.744900px;}
.yb5{bottom:776.076000px;}
.y283{bottom:776.119050px;}
.y1be{bottom:776.574000px;}
.y84{bottom:778.616550px;}
.y227{bottom:782.015100px;}
.y3d{bottom:782.022000px;}
.y13{bottom:782.125950px;}
.y2bb{bottom:782.534400px;}
.y1ae{bottom:782.893200px;}
.ye8{bottom:784.041300px;}
.y17d{bottom:785.189250px;}
.y11e{bottom:788.293200px;}
.y1a1{bottom:789.441300px;}
.y25b{bottom:789.744900px;}
.yb4{bottom:790.476000px;}
.y1f0{bottom:794.118900px;}
.y282{bottom:794.119050px;}
.y83{bottom:795.116550px;}
.y226{bottom:800.015100px;}
.y2ba{bottom:800.534400px;}
.y12{bottom:801.378000px;}
.y3c{bottom:802.474050px;}
.y11d{bottom:802.693200px;}
.y1a0{bottom:803.841300px;}
.y2ec{bottom:805.427700px;}
.ye7{bottom:808.093350px;}
.y17c{bottom:809.241300px;}
.y82{bottom:811.616550px;}
.y1ef{bottom:812.118900px;}
.y281{bottom:812.119050px;}
.yb3{bottom:814.528050px;}
.y225{bottom:818.015100px;}
.y2b9{bottom:818.534400px;}
.y11{bottom:820.629900px;}
.ye6{bottom:822.493350px;}
.y3b{bottom:822.925950px;}
.y17b{bottom:823.641300px;}
.y25a{bottom:826.341750px;}
.y1ad{bottom:826.745250px;}
.y19f{bottom:827.893200px;}
.y81{bottom:828.116550px;}
.yb2{bottom:828.928050px;}
.y1ee{bottom:830.118900px;}
.y280{bottom:830.119050px;}
.y2eb{bottom:835.531800px;}
.y224{bottom:836.015100px;}
.y2b8{bottom:836.534400px;}
.y10{bottom:839.881950px;}
.y1ac{bottom:841.145250px;}
.y111{bottom:842.293200px;}
.y259{bottom:842.541750px;}
.y3a{bottom:843.378000px;}
.y80{bottom:844.616550px;}
.ye5{bottom:846.545250px;}
.y17a{bottom:847.693200px;}
.y1ed{bottom:848.118900px;}
.y27f{bottom:848.119050px;}
.yb1{bottom:852.979950px;}
.y223{bottom:854.015100px;}
.y2b7{bottom:854.534400px;}
.yf{bottom:859.133850px;}
.ye4{bottom:860.945250px;}
.y7f{bottom:861.116550px;}
.y1bd{bottom:861.637350px;}
.y179{bottom:862.093350px;}
.y39{bottom:863.829900px;}
.y258{bottom:864.813600px;}
.y2ea{bottom:865.635750px;}
.y1ec{bottom:866.118900px;}
.y27e{bottom:866.119050px;}
.y110{bottom:866.345250px;}
.yb0{bottom:867.379950px;}
.y222{bottom:872.015100px;}
.y2b6{bottom:872.534400px;}
.ye3{bottom:880.745250px;}
.y257{bottom:881.013450px;}
.y1bc{bottom:881.437350px;}
.y178{bottom:881.893200px;}
.y1eb{bottom:884.118900px;}
.y27d{bottom:884.119050px;}
.y38{bottom:884.281800px;}
.y1ab{bottom:884.997300px;}
.yaf{bottom:887.179950px;}
.y221{bottom:890.015100px;}
.y2b5{bottom:890.534400px;}
.y1aa{bottom:899.397150px;}
.y151{bottom:900.545250px;}
.y7e{bottom:900.712950px;}
.y1bb{bottom:901.237350px;}
.y1ea{bottom:902.118900px;}
.y27c{bottom:902.119050px;}
.y256{bottom:903.285300px;}
.yc{bottom:903.943050px;}
.y37{bottom:904.733850px;}
.ye2{bottom:904.797150px;}
.y177{bottom:905.945250px;}
.y220{bottom:908.015100px;}
.y2b4{bottom:908.534400px;}
.yae{bottom:911.232000px;}
.y7d{bottom:917.212950px;}
.ye1{bottom:919.197300px;}
.y255{bottom:919.485300px;}
.y1e9{bottom:920.118900px;}
.y27b{bottom:920.119050px;}
.y176{bottom:920.345250px;}
.y1ba{bottom:921.037350px;}
.yb{bottom:921.943050px;}
.y150{bottom:924.597150px;}
.yad{bottom:925.632000px;}
.y2b3{bottom:926.534400px;}
.y7c{bottom:933.712950px;}
.y21f{bottom:934.519050px;}
.y1e8{bottom:938.118900px;}
.y27a{bottom:938.119050px;}
.y10f{bottom:938.997300px;}
.y254{bottom:941.757150px;}
.ye0{bottom:943.249200px;}
.y175{bottom:944.397150px;}
.y2b2{bottom:944.534400px;}
.ya{bottom:948.446850px;}
.yac{bottom:949.683900px;}
.y7b{bottom:950.212950px;}
.y1e7{bottom:956.118900px;}
.y279{bottom:956.119050px;}
.ydf{bottom:957.649200px;}
.y253{bottom:957.957150px;}
.y174{bottom:958.797150px;}
.y14f{bottom:958.797300px;}
.y1b9{bottom:960.637350px;}
.y2b1{bottom:962.534400px;}
.y10e{bottom:963.049200px;}
.yab{bottom:964.083900px;}
.y9{bottom:966.446850px;}
.y7a{bottom:966.712950px;}
.y1e6{bottom:974.118900px;}
.y21e{bottom:974.119050px;}
.yde{bottom:977.449200px;}
.y252{bottom:980.229000px;}
.y1b8{bottom:980.437350px;}
.y2b0{bottom:980.534400px;}
.y14e{bottom:982.849200px;}
.y79{bottom:983.212950px;}
.yaa{bottom:983.883900px;}
.ye{bottom:987.166650px;}
.y1e5{bottom:992.118900px;}
.y21d{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.y251{bottom:996.429000px;}
.y10d{bottom:997.249200px;}
.y2af{bottom:998.534400px;}
.y78{bottom:999.712950px;}
.y1b7{bottom:1000.237500px;}
.ydd{bottom:1001.501100px;}
.ya9{bottom:1007.935950px;}
.yd{bottom:1008.766800px;}
.y1e4{bottom:1010.118900px;}
.y21c{bottom:1010.119050px;}
.y7{bottom:1010.950800px;}
.ydc{bottom:1015.901250px;}
.y77{bottom:1016.212950px;}
.y2ae{bottom:1016.534400px;}
.y173{bottom:1017.049200px;}
.y250{bottom:1018.700850px;}
.y1b6{bottom:1020.037500px;}
.y10c{bottom:1021.301100px;}
.y143{bottom:1021.301250px;}
.ya8{bottom:1022.335950px;}
.y24f{bottom:1026.800850px;}
.y1e3{bottom:1028.118900px;}
.y21b{bottom:1028.119050px;}
.y76{bottom:1032.712950px;}
.y2ad{bottom:1034.534400px;}
.ydb{bottom:1035.701100px;}
.y142{bottom:1035.701250px;}
.y172{bottom:1041.101100px;}
.y1e2{bottom:1046.118900px;}
.y21a{bottom:1046.119050px;}
.ya7{bottom:1046.387850px;}
.y75{bottom:1049.212950px;}
.y2ac{bottom:1052.534400px;}
.y10b{bottom:1055.501100px;}
.y141{bottom:1055.501250px;}
.y2e6{bottom:1058.011050px;}
.yda{bottom:1059.753150px;}
.ya6{bottom:1060.787850px;}
.y1e1{bottom:1064.118900px;}
.y219{bottom:1064.119050px;}
.y74{bottom:1065.712950px;}
.y24e{bottom:1066.790550px;}
.y2ab{bottom:1070.534400px;}
.yd9{bottom:1074.153150px;}
.y2e5{bottom:1074.211050px;}
.y171{bottom:1075.301100px;}
.y10a{bottom:1079.553150px;}
.y1e0{bottom:1082.118900px;}
.y218{bottom:1082.119050px;}
.y73{bottom:1082.212950px;}
.y24d{bottom:1082.990550px;}
.y2aa{bottom:1088.534400px;}
.y2e4{bottom:1090.411050px;}
.y1b5{bottom:1093.837500px;}
.yd8{bottom:1093.953150px;}
.y72{bottom:1098.712950px;}
.y170{bottom:1099.353150px;}
.y1df{bottom:1100.118900px;}
.y217{bottom:1100.119050px;}
.y2a9{bottom:1106.534400px;}
.y2e3{bottom:1106.611050px;}
.ya5{bottom:1109.035500px;}
.y14d{bottom:1113.753150px;}
.y24c{bottom:1114.813500px;}
.y71{bottom:1115.212950px;}
.yd7{bottom:1118.005050px;}
.y140{bottom:1118.005200px;}
.y1de{bottom:1118.118900px;}
.y216{bottom:1118.119050px;}
.y2e2{bottom:1122.811050px;}
.y24b{bottom:1122.913650px;}
.y2a8{bottom:1124.534400px;}
.y70{bottom:1131.712950px;}
.yd6{bottom:1132.405050px;}
.y13f{bottom:1132.405200px;}
.y1dd{bottom:1136.118900px;}
.y215{bottom:1136.119050px;}
.y1b4{bottom:1137.037500px;}
.y16f{bottom:1137.805050px;}
.y14c{bottom:1137.805200px;}
.y2e1{bottom:1139.011050px;}
.y6f{bottom:1148.212950px;}
.y2a7{bottom:1151.038350px;}
.yd5{bottom:1152.205050px;}
.y13e{bottom:1152.205200px;}
.y24a{bottom:1153.371900px;}
.y1dc{bottom:1154.118900px;}
.y214{bottom:1154.119050px;}
.y2e0{bottom:1155.211050px;}
.y6e{bottom:1164.712950px;}
.y6d{bottom:1181.212950px;}
.ya3{bottom:1201.511100px;}
.ya4{bottom:1203.022800px;}
.h16{height:34.945312px;}
.h20{height:34.992188px;}
.h18{height:35.156250px;}
.h22{height:35.179688px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.hf{height:39.577148px;}
.he{height:41.454000px;}
.h23{height:42.568359px;}
.h8{height:43.681641px;}
.h1c{height:43.740234px;}
.h9{height:43.945312px;}
.h1f{height:43.974609px;}
.h1e{height:45.480557px;}
.h21{height:45.481157px;}
.h15{height:46.825195px;}
.h1b{height:48.049805px;}
.h10{height:48.114258px;}
.h11{height:48.372070px;}
.h1d{height:51.082031px;}
.h28{height:51.972656px;}
.ha{height:52.417969px;}
.h2a{height:52.488281px;}
.h13{height:52.560000px;}
.h17{height:57.169922px;}
.h24{height:71.713477px;}
.h25{height:71.766211px;}
.h26{height:71.766811px;}
.h29{height:85.148438px;}
.h1a{height:102.164062px;}
.h27{height:104.166211px;}
.h12{height:155.917969px;}
.h19{height:155.918569px;}
.h14{height:204.328125px;}
.h4{height:215.625000px;}
.h2{height:215.706075px;}
.h5{height:297.360000px;}
.h3{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.643400px;}
.x9{left:68.031450px;}
.x1c{left:72.776850px;}
.x28{left:74.031450px;}
.x19{left:82.227600px;}
.x5{left:96.944850px;}
.x29{left:99.504600px;}
.xa{left:104.598450px;}
.x15{left:106.299150px;}
.x4{left:108.374100px;}
.x1b{left:110.551200px;}
.x22{left:116.883750px;}
.x39{left:123.708900px;}
.x38{left:124.732050px;}
.x2a{left:127.559100px;}
.x35{left:133.513800px;}
.x36{left:135.354750px;}
.x2e{left:138.263250px;}
.x1e{left:140.314950px;}
.x3{left:142.368300px;}
.x2b{left:164.109750px;}
.x21{left:186.510750px;}
.x3b{left:197.802150px;}
.x1d{left:208.346400px;}
.x1a{left:215.016000px;}
.x40{left:227.937750px;}
.x3a{left:231.714300px;}
.x41{left:242.157600px;}
.x3f{left:248.409600px;}
.x2f{left:252.614100px;}
.x42{left:256.192350px;}
.x18{left:280.629900px;}
.x31{left:286.271400px;}
.x2d{left:313.305150px;}
.x37{left:329.282100px;}
.x3c{left:345.007050px;}
.x24{left:364.344150px;}
.x32{left:368.097600px;}
.x34{left:386.449200px;}
.x3d{left:389.464350px;}
.x3e{left:399.251700px;}
.x27{left:401.858850px;}
.x33{left:461.720700px;}
.x8{left:511.976100px;}
.x23{left:539.029650px;}
.xf{left:581.778450px;}
.x26{left:589.988700px;}
.x25{left:593.416500px;}
.xb{left:596.738100px;}
.x13{left:599.176800px;}
.x6{left:602.747100px;}
.xe{left:605.154750px;}
.x11{left:611.128800px;}
.x10{left:612.957600px;}
.xc{left:617.239800px;}
.xd{left:634.041900px;}
.x30{left:643.209450px;}
.x12{left:652.837950px;}
.x14{left:656.048550px;}
.x20{left:661.345650px;}
.x7{left:666.801750px;}
.x1{left:705.924150px;}
.x2c{left:756.042900px;}
.x1f{left:772.793700px;}
.x17{left:776.033700px;}
.x16{left:855.139050px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:17.760000pt;}
.v5{vertical-align:28.800000pt;}
.v6{vertical-align:57.600000pt;}
.lsd{letter-spacing:-3.157333pt;}
.lsc{letter-spacing:-2.300907pt;}
.ls10{letter-spacing:-1.466667pt;}
.lsf{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.003200pt;}
.lsa{letter-spacing:0.004373pt;}
.lsb{letter-spacing:0.004907pt;}
.lse{letter-spacing:0.011733pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls9{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls8{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.ws0{word-spacing:-373.333333pt;}
.ws20{word-spacing:-87.792533pt;}
.wsc{word-spacing:-81.920000pt;}
.wsb{word-spacing:-67.200000pt;}
.ws7b{word-spacing:-64.426133pt;}
.ws21{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws13c{word-spacing:-17.792000pt;}
.ws92{word-spacing:-14.826667pt;}
.ws93{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.906667pt;}
.ws8b{word-spacing:-12.848000pt;}
.ws9f{word-spacing:-12.800000pt;}
.ws32{word-spacing:-12.789333pt;}
.ws2f{word-spacing:-12.730667pt;}
.ws64{word-spacing:-12.613333pt;}
.ws65{word-spacing:-12.378667pt;}
.ws87{word-spacing:-12.261333pt;}
.ws37{word-spacing:-12.202667pt;}
.ws82{word-spacing:-12.144000pt;}
.ws56{word-spacing:-12.085333pt;}
.ws5a{word-spacing:-12.026667pt;}
.ws3d{word-spacing:-11.968000pt;}
.wsa2{word-spacing:-11.861333pt;}
.ws43{word-spacing:-11.674667pt;}
.ws15{word-spacing:-11.616000pt;}
.ws7{word-spacing:-11.520000pt;}
.ws5f{word-spacing:-11.498667pt;}
.ws40{word-spacing:-11.440000pt;}
.ws4a{word-spacing:-11.381333pt;}
.ws26{word-spacing:-11.264000pt;}
.ws44{word-spacing:-11.205333pt;}
.ws51{word-spacing:-11.146667pt;}
.ws33{word-spacing:-11.088000pt;}
.ws45{word-spacing:-11.029333pt;}
.ws2b{word-spacing:-10.970667pt;}
.ws76{word-spacing:-10.912000pt;}
.ws13{word-spacing:-10.736000pt;}
.ws4f{word-spacing:-10.677333pt;}
.ws18{word-spacing:-10.442667pt;}
.ws62{word-spacing:-10.325333pt;}
.ws29{word-spacing:-10.266667pt;}
.ws61{word-spacing:-10.208000pt;}
.ws17{word-spacing:-10.090667pt;}
.ws2e{word-spacing:-10.032000pt;}
.wse{word-spacing:-9.914667pt;}
.ws1c{word-spacing:-9.856000pt;}
.ws52{word-spacing:-9.680000pt;}
.ws3f{word-spacing:-9.621333pt;}
.ws3a{word-spacing:-9.562667pt;}
.ws7f{word-spacing:-9.445333pt;}
.ws6a{word-spacing:-9.386667pt;}
.ws85{word-spacing:-9.328000pt;}
.ws19{word-spacing:-9.269333pt;}
.ws38{word-spacing:-9.210667pt;}
.ws54{word-spacing:-9.093333pt;}
.ws79{word-spacing:-9.034667pt;}
.ws66{word-spacing:-8.976000pt;}
.ws6d{word-spacing:-8.858667pt;}
.wsc7{word-spacing:-8.704000pt;}
.ws6f{word-spacing:-8.682667pt;}
.wsc5{word-spacing:-8.643947pt;}
.ws60{word-spacing:-8.624000pt;}
.ws10{word-spacing:-8.506667pt;}
.ws22{word-spacing:-8.389333pt;}
.wsf{word-spacing:-8.330667pt;}
.ws4e{word-spacing:-8.213333pt;}
.ws5b{word-spacing:-8.096000pt;}
.ws3e{word-spacing:-8.037333pt;}
.ws5e{word-spacing:-7.978667pt;}
.ws71{word-spacing:-7.920000pt;}
.ws30{word-spacing:-7.861333pt;}
.ws5c{word-spacing:-7.802667pt;}
.ws6c{word-spacing:-7.685333pt;}
.ws108{word-spacing:-7.680000pt;}
.ws25{word-spacing:-7.568000pt;}
.ws72{word-spacing:-7.509333pt;}
.ws89{word-spacing:-7.450667pt;}
.ws2c{word-spacing:-7.392000pt;}
.ws36{word-spacing:-7.333333pt;}
.ws68{word-spacing:-7.157333pt;}
.wsb7{word-spacing:-7.146667pt;}
.ws24{word-spacing:-7.098667pt;}
.ws41{word-spacing:-7.040000pt;}
.ws70{word-spacing:-6.981333pt;}
.ws6b{word-spacing:-6.922667pt;}
.ws31{word-spacing:-6.864000pt;}
.ws46{word-spacing:-6.805333pt;}
.ws8e{word-spacing:-6.688000pt;}
.ws63{word-spacing:-6.570667pt;}
.ws7e{word-spacing:-6.453333pt;}
.wsc6{word-spacing:-6.343040pt;}
.ws1b{word-spacing:-6.336000pt;}
.ws5d{word-spacing:-6.277333pt;}
.ws14{word-spacing:-6.218667pt;}
.ws78{word-spacing:-6.160000pt;}
.ws48{word-spacing:-6.101333pt;}
.ws84{word-spacing:-5.984000pt;}
.ws4c{word-spacing:-5.925333pt;}
.ws23{word-spacing:-5.808000pt;}
.ws58{word-spacing:-5.690667pt;}
.ws4d{word-spacing:-5.573333pt;}
.ws55{word-spacing:-5.514667pt;}
.ws6e{word-spacing:-5.456000pt;}
.ws90{word-spacing:-5.397333pt;}
.ws69{word-spacing:-5.280000pt;}
.ws11{word-spacing:-5.221333pt;}
.ws8a{word-spacing:-5.162667pt;}
.ws47{word-spacing:-5.045333pt;}
.ws88{word-spacing:-4.928000pt;}
.ws27{word-spacing:-4.752000pt;}
.ws53{word-spacing:-4.693333pt;}
.ws3b{word-spacing:-4.634667pt;}
.wsbd{word-spacing:-4.480000pt;}
.ws81{word-spacing:-4.458667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws75{word-spacing:-4.341333pt;}
.ws2d{word-spacing:-4.282667pt;}
.ws42{word-spacing:-4.224000pt;}
.ws10c{word-spacing:-4.213333pt;}
.wsf3{word-spacing:-4.000000pt;}
.ws2a{word-spacing:-3.930667pt;}
.wsd8{word-spacing:-3.893333pt;}
.ws13b{word-spacing:-3.888000pt;}
.ws34{word-spacing:-3.754667pt;}
.ws7d{word-spacing:-3.637333pt;}
.ws11e{word-spacing:-3.573333pt;}
.ws13d{word-spacing:-3.520000pt;}
.ws16{word-spacing:-3.461333pt;}
.wsa9{word-spacing:-3.413333pt;}
.ws8d{word-spacing:-3.402667pt;}
.ws86{word-spacing:-3.344000pt;}
.ws74{word-spacing:-3.226667pt;}
.wsf4{word-spacing:-3.200000pt;}
.ws3c{word-spacing:-3.109333pt;}
.ws39{word-spacing:-3.050667pt;}
.wsdc{word-spacing:-2.933333pt;}
.wsf1{word-spacing:-2.880000pt;}
.ws9e{word-spacing:-2.832000pt;}
.ws112{word-spacing:-2.826667pt;}
.ws8c{word-spacing:-2.816000pt;}
.wsdf{word-spacing:-2.773333pt;}
.ws83{word-spacing:-2.757333pt;}
.ws118{word-spacing:-2.720000pt;}
.ws77{word-spacing:-2.698667pt;}
.wsc1{word-spacing:-2.688000pt;}
.ws59{word-spacing:-2.522667pt;}
.ws116{word-spacing:-2.506667pt;}
.ws50{word-spacing:-2.464000pt;}
.wsa0{word-spacing:-2.453333pt;}
.ws57{word-spacing:-2.405333pt;}
.ws28{word-spacing:-2.346667pt;}
.ws98{word-spacing:-2.304000pt;}
.ws8f{word-spacing:-2.288000pt;}
.ws49{word-spacing:-2.170667pt;}
.ws1d{word-spacing:-2.112000pt;}
.ws121{word-spacing:-2.080000pt;}
.wsbb{word-spacing:-2.026667pt;}
.ws73{word-spacing:-1.994667pt;}
.ws2{word-spacing:-1.973333pt;}
.ws4b{word-spacing:-1.877333pt;}
.ws9b{word-spacing:-1.872000pt;}
.ws12b{word-spacing:-1.866667pt;}
.ws132{word-spacing:-1.824000pt;}
.ws1a{word-spacing:-1.818667pt;}
.ws3{word-spacing:-1.776000pt;}
.ws80{word-spacing:-1.701333pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws12{word-spacing:-1.578667pt;}
.wsaa{word-spacing:-1.333333pt;}
.ws97{word-spacing:-1.200000pt;}
.ws104{word-spacing:-1.173333pt;}
.wse1{word-spacing:-1.024000pt;}
.ws4{word-spacing:-0.864000pt;}
.wsc2{word-spacing:-0.853333pt;}
.ws35{word-spacing:-0.768000pt;}
.ws101{word-spacing:-0.693333pt;}
.wsc4{word-spacing:-0.640000pt;}
.ws11f{word-spacing:-0.533333pt;}
.ws135{word-spacing:-0.528000pt;}
.wsc3{word-spacing:-0.469333pt;}
.wse0{word-spacing:-0.426667pt;}
.ws122{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.106667pt;}
.ws11b{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws134{word-spacing:0.048000pt;}
.wsb4{word-spacing:0.266667pt;}
.wsbf{word-spacing:0.341333pt;}
.wscc{word-spacing:0.533333pt;}
.wsde{word-spacing:0.586667pt;}
.ws133{word-spacing:0.624000pt;}
.ws9a{word-spacing:0.672000pt;}
.ws111{word-spacing:0.693333pt;}
.ws103{word-spacing:0.853333pt;}
.ws10f{word-spacing:1.120000pt;}
.ws11a{word-spacing:1.173333pt;}
.wsa8{word-spacing:1.280000pt;}
.ws138{word-spacing:1.344000pt;}
.wsd5{word-spacing:1.493333pt;}
.wsf7{word-spacing:1.813333pt;}
.wsfb{word-spacing:1.866667pt;}
.wscd{word-spacing:1.973333pt;}
.wsf8{word-spacing:2.346667pt;}
.ws115{word-spacing:2.506667pt;}
.wsb0{word-spacing:2.560000pt;}
.ws113{word-spacing:2.613333pt;}
.wsbc{word-spacing:2.720000pt;}
.wsb8{word-spacing:2.986667pt;}
.ws10d{word-spacing:3.093333pt;}
.wsc0{word-spacing:3.242667pt;}
.wsce{word-spacing:3.306667pt;}
.ws107{word-spacing:3.466667pt;}
.wsba{word-spacing:3.520000pt;}
.ws127{word-spacing:3.680000pt;}
.ws96{word-spacing:3.696000pt;}
.wsd7{word-spacing:3.733333pt;}
.ws9d{word-spacing:4.032000pt;}
.wsc9{word-spacing:4.053333pt;}
.wsf6{word-spacing:4.106667pt;}
.wsb6{word-spacing:4.160000pt;}
.ws100{word-spacing:4.266667pt;}
.ws137{word-spacing:4.464000pt;}
.wsa4{word-spacing:4.586667pt;}
.ws12f{word-spacing:4.906667pt;}
.ws114{word-spacing:4.960000pt;}
.wsdd{word-spacing:5.173333pt;}
.wsa7{word-spacing:5.440000pt;}
.wsa6{word-spacing:5.706667pt;}
.wsb2{word-spacing:5.760000pt;}
.wsbe{word-spacing:6.101333pt;}
.ws13a{word-spacing:6.144000pt;}
.ws9c{word-spacing:6.288000pt;}
.ws109{word-spacing:6.293333pt;}
.ws126{word-spacing:6.453333pt;}
.ws130{word-spacing:6.506667pt;}
.wsd3{word-spacing:6.560000pt;}
.ws136{word-spacing:6.624000pt;}
.ws10e{word-spacing:6.773333pt;}
.ws12e{word-spacing:6.826667pt;}
.wsd0{word-spacing:6.933333pt;}
.wsf5{word-spacing:7.146667pt;}
.ws99{word-spacing:7.248000pt;}
.wsfa{word-spacing:7.306667pt;}
.ws110{word-spacing:7.520000pt;}
.wsdb{word-spacing:7.626667pt;}
.wscf{word-spacing:7.840000pt;}
.ws131{word-spacing:7.872000pt;}
.ws12c{word-spacing:8.213333pt;}
.ws10a{word-spacing:8.320000pt;}
.wsab{word-spacing:8.373333pt;}
.wsb9{word-spacing:8.693333pt;}
.ws124{word-spacing:9.013333pt;}
.ws106{word-spacing:9.226667pt;}
.ws10b{word-spacing:9.706667pt;}
.ws120{word-spacing:9.813333pt;}
.wsd2{word-spacing:9.920000pt;}
.ws128{word-spacing:10.026667pt;}
.wsfd{word-spacing:10.133333pt;}
.ws117{word-spacing:10.186667pt;}
.wsa3{word-spacing:10.240000pt;}
.ws95{word-spacing:10.800000pt;}
.ws123{word-spacing:10.880000pt;}
.wsd4{word-spacing:10.933333pt;}
.wsff{word-spacing:10.986667pt;}
.wsd6{word-spacing:11.200000pt;}
.wsf2{word-spacing:11.360000pt;}
.wsb3{word-spacing:11.520000pt;}
.wscb{word-spacing:11.786667pt;}
.wsd1{word-spacing:11.946667pt;}
.wsc8{word-spacing:12.106667pt;}
.wsfc{word-spacing:12.213333pt;}
.wsd9{word-spacing:12.533333pt;}
.ws139{word-spacing:12.576000pt;}
.wsca{word-spacing:12.746667pt;}
.ws11d{word-spacing:14.026667pt;}
.wsa1{word-spacing:14.080000pt;}
.ws12d{word-spacing:14.826667pt;}
.wsb5{word-spacing:15.093333pt;}
.ws94{word-spacing:15.120000pt;}
.wsae{word-spacing:15.466667pt;}
.ws129{word-spacing:15.680000pt;}
.wsb1{word-spacing:16.373333pt;}
.wsac{word-spacing:16.800000pt;}
.wsda{word-spacing:18.240000pt;}
.ws8{word-spacing:18.288000pt;}
.wsaf{word-spacing:18.453333pt;}
.wsf9{word-spacing:18.933333pt;}
.ws11c{word-spacing:19.520000pt;}
.ws105{word-spacing:20.480000pt;}
.ws12a{word-spacing:20.533333pt;}
.wsfe{word-spacing:21.440000pt;}
.wsa5{word-spacing:23.200000pt;}
.ws102{word-spacing:24.160000pt;}
.ws125{word-spacing:24.373333pt;}
.ws119{word-spacing:25.653333pt;}
.ws9{word-spacing:36.975467pt;}
.wsa{word-spacing:37.007467pt;}
.ws91{word-spacing:59.230933pt;}
.ws1f{word-spacing:72.015467pt;}
.ws7c{word-spacing:82.270933pt;}
.ws5{word-spacing:90.567467pt;}
.ws7a{word-spacing:95.327467pt;}
.wsef{word-spacing:103.672533pt;}
.wse4{word-spacing:199.036267pt;}
.wse6{word-spacing:200.817067pt;}
.wse9{word-spacing:212.383467pt;}
.wsea{word-spacing:225.723733pt;}
.wseb{word-spacing:245.032533pt;}
.wsed{word-spacing:261.064533pt;}
.wsee{word-spacing:266.392533pt;}
.wsf0{word-spacing:293.080533pt;}
.wsec{word-spacing:378.724267pt;}
.wse7{word-spacing:506.182933pt;}
.wse2{word-spacing:535.123733pt;}
.wse3{word-spacing:860.312000pt;}
.wse5{word-spacing:977.624000pt;}
.wse8{word-spacing:1014.968000pt;}
._10{margin-left:-1837.418667pt;}
._36{margin-left:-1672.616533pt;}
._2d{margin-left:-1530.045867pt;}
._2b{margin-left:-1527.828267pt;}
._3f{margin-left:-1510.117867pt;}
._34{margin-left:-1420.185067pt;}
._38{margin-left:-1366.612800pt;}
._25{margin-left:-1309.946667pt;}
._2f{margin-left:-1249.969600pt;}
._27{margin-left:-1198.331200pt;}
._8{margin-left:-1195.012267pt;}
._43{margin-left:-1178.568000pt;}
._30{margin-left:-1168.314133pt;}
._17{margin-left:-1131.176000pt;}
._e{margin-left:-1100.880533pt;}
._32{margin-left:-1077.694400pt;}
._29{margin-left:-1061.616533pt;}
._12{margin-left:-1008.277867pt;}
._c{margin-left:-996.753600pt;}
._2a{margin-left:-965.520000pt;}
._3b{margin-left:-953.111467pt;}
._1c{margin-left:-949.929600pt;}
._14{margin-left:-946.896000pt;}
._9{margin-left:-936.240000pt;}
._1e{margin-left:-914.928000pt;}
._a{margin-left:-887.306667pt;}
._15{margin-left:-845.472000pt;}
._35{margin-left:-833.264000pt;}
._23{margin-left:-824.229867pt;}
._11{margin-left:-821.568000pt;}
._21{margin-left:-813.600000pt;}
._18{margin-left:-797.520000pt;}
._42{margin-left:-792.085333pt;}
._3e{margin-left:-784.858667pt;}
._20{margin-left:-780.720000pt;}
._13{margin-left:-765.504000pt;}
._3c{margin-left:-762.912000pt;}
._1a{margin-left:-758.250667pt;}
._31{margin-left:-746.928000pt;}
._1b{margin-left:-745.280000pt;}
._d{margin-left:-722.736000pt;}
._16{margin-left:-708.384000pt;}
._22{margin-left:-698.880000pt;}
._1d{margin-left:-695.226667pt;}
._1f{margin-left:-689.264000pt;}
._33{margin-left:-681.964800pt;}
._40{margin-left:-677.472000pt;}
._24{margin-left:-643.952000pt;}
._3a{margin-left:-626.880000pt;}
._2c{margin-left:-618.864000pt;}
._7{margin-left:-616.224000pt;}
._3d{margin-left:-541.632000pt;}
._6{margin-left:-508.320000pt;}
._41{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._19{margin-left:-427.434667pt;}
._2e{margin-left:-392.112000pt;}
._f{margin-left:-354.768000pt;}
._28{margin-left:-345.820800pt;}
._39{margin-left:-336.144000pt;}
._37{margin-left:-325.440000pt;}
._26{margin-left:-234.720000pt;}
._48{margin-left:-11.721600pt;}
._44{margin-left:-9.600000pt;}
._4a{margin-left:-8.094933pt;}
._b{margin-left:-6.216000pt;}
._3{margin-left:-5.117867pt;}
._4{margin-left:-3.571200pt;}
._2{margin-left:-1.973333pt;}
._5{margin-left:-0.927467pt;}
._49{width:0.902400pt;}
._1{width:1.952000pt;}
._4b{width:3.207467pt;}
._4e{width:4.865067pt;}
._4c{width:6.156800pt;}
._47{width:7.584000pt;}
._46{width:9.326400pt;}
._4f{width:10.262933pt;}
._58{width:11.776107pt;}
._57{width:12.703893pt;}
._51{width:14.380800pt;}
._6b{width:16.160000pt;}
._50{width:17.059733pt;}
._45{width:18.142400pt;}
._52{width:19.737600pt;}
._6d{width:25.762667pt;}
._6e{width:29.333867pt;}
._59{width:46.520000pt;}
._5b{width:47.544000pt;}
._5a{width:50.044267pt;}
._6c{width:52.450667pt;}
._53{width:64.128000pt;}
._55{width:66.986667pt;}
._54{width:69.888000pt;}
._56{width:71.082667pt;}
._5d{width:107.075733pt;}
._5e{width:143.398933pt;}
._66{width:148.883733pt;}
._4d{width:205.529067pt;}
._62{width:212.380267pt;}
._61{width:262.808000pt;}
._68{width:300.523200pt;}
._65{width:323.652267pt;}
._64{width:404.861867pt;}
._69{width:409.819200pt;}
._6a{width:415.243200pt;}
._67{width:428.539200pt;}
._5c{width:745.855467pt;}
._5f{width:804.248000pt;}
._60{width:857.624000pt;}
._63{width:884.363733pt;}
.fsc{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs0{font-size:266.766933pt;}
.fs3{font-size:373.333333pt;}
.fs1{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.452667pt;}
.y3{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y36{bottom:75.086133pt;}
.ya2{bottom:75.562133pt;}
.y61{bottom:112.721600pt;}
.y35{bottom:113.385733pt;}
.y5d{bottom:113.385867pt;}
.y13d{bottom:114.550800pt;}
.y16e{bottom:115.571333pt;}
.y278{bottom:116.892400pt;}
.y6c{bottom:119.196533pt;}
.y1db{bottom:123.330133pt;}
.y249{bottom:126.185867pt;}
.y60{bottom:127.121600pt;}
.y13c{bottom:127.350800pt;}
.y16d{bottom:128.371200pt;}
.y2a6{bottom:129.883600pt;}
.y34{bottom:130.498667pt;}
.y2df{bottom:130.786267pt;}
.y15d{bottom:131.130267pt;}
.y5c{bottom:131.565333pt;}
.y11c{bottom:132.150800pt;}
.y277{bottom:132.892400pt;}
.y109{bottom:133.171333pt;}
.y19e{bottom:134.191733pt;}
.y6b{bottom:135.196533pt;}
.y213{bottom:138.708533pt;}
.y248{bottom:138.985867pt;}
.y1da{bottom:139.330133pt;}
.y5f{bottom:141.521600pt;}
.y15c{bottom:143.930400pt;}
.y11b{bottom:144.950800pt;}
.y2de{bottom:145.186133pt;}
.y2a5{bottom:145.883600pt;}
.y108{bottom:145.971333pt;}
.y19d{bottom:146.991733pt;}
.y33{bottom:147.611467pt;}
.y13b{bottom:148.730267pt;}
.y276{bottom:148.892400pt;}
.y5b{bottom:149.744933pt;}
.y1a9{bottom:149.750800pt;}
.y6a{bottom:151.196533pt;}
.y212{bottom:151.508533pt;}
.y247{bottom:151.785867pt;}
.yd4{bottom:155.470533pt;}
.y5e{bottom:155.921600pt;}
.y2dd{bottom:159.586133pt;}
.y13a{bottom:161.530400pt;}
.y2a4{bottom:161.883600pt;}
.y11a{bottom:162.550800pt;}
.y1d9{bottom:162.889200pt;}
.y211{bottom:164.308533pt;}
.y246{bottom:164.585867pt;}
.y19c{bottom:164.591733pt;}
.y32{bottom:164.724400pt;}
.y275{bottom:164.892400pt;}
.y14b{bottom:166.330267pt;}
.y69{bottom:167.196533pt;}
.y107{bottom:167.350800pt;}
.y5a{bottom:167.924400pt;}
.yd3{bottom:168.270533pt;}
.y2dc{bottom:173.986267pt;}
.y210{bottom:177.108533pt;}
.y245{bottom:177.385867pt;}
.y2a3{bottom:177.883600pt;}
.y139{bottom:179.130267pt;}
.y106{bottom:180.150800pt;}
.y274{bottom:180.892400pt;}
.y31{bottom:181.837200pt;}
.y15b{bottom:182.909867pt;}
.y68{bottom:183.196533pt;}
.y1b3{bottom:183.930400pt;}
.yd2{bottom:185.870533pt;}
.y19b{bottom:185.971333pt;}
.y59{bottom:186.103867pt;}
.ya1{bottom:186.228933pt;}
.y2db{bottom:188.386267pt;}
.y20f{bottom:189.908533pt;}
.y244{bottom:190.185867pt;}
.y2a2{bottom:193.883600pt;}
.y15a{bottom:195.709867pt;}
.y14a{bottom:196.730267pt;}
.y273{bottom:196.892400pt;}
.y16c{bottom:197.750800pt;}
.y19a{bottom:198.771200pt;}
.y30{bottom:198.950133pt;}
.y67{bottom:199.196533pt;}
.y138{bottom:200.509867pt;}
.y105{bottom:201.530400pt;}
.y20e{bottom:202.708533pt;}
.y2da{bottom:202.786267pt;}
.y243{bottom:202.985867pt;}
.y58{bottom:204.283467pt;}
.ya0{bottom:204.408533pt;}
.yd1{bottom:207.250133pt;}
.y1d8{bottom:208.188400pt;}
.y2a1{bottom:209.883600pt;}
.y272{bottom:212.892400pt;}
.y137{bottom:213.309867pt;}
.y104{bottom:214.330267pt;}
.y66{bottom:215.196533pt;}
.y20d{bottom:215.508533pt;}
.y242{bottom:215.785867pt;}
.y2f{bottom:216.062933pt;}
.y2d9{bottom:217.186133pt;}
.y149{bottom:218.109867pt;}
.y16b{bottom:219.130267pt;}
.yd0{bottom:220.050000pt;}
.y199{bottom:220.150800pt;}
.y57{bottom:222.462933pt;}
.y9f{bottom:222.588000pt;}
.y1d7{bottom:224.188400pt;}
.y2e8{bottom:225.649733pt;}
.y2a0{bottom:225.883600pt;}
.y20c{bottom:228.308533pt;}
.y271{bottom:228.892400pt;}
.y148{bottom:230.909867pt;}
.y65{bottom:231.196533pt;}
.y2d8{bottom:231.586133pt;}
.y119{bottom:231.930400pt;}
.y198{bottom:232.950800pt;}
.y2e{bottom:233.175733pt;}
.y136{bottom:234.689333pt;}
.y103{bottom:235.709867pt;}
.ycf{bottom:237.650000pt;}
.y56{bottom:240.642533pt;}
.y9e{bottom:240.767600pt;}
.y20b{bottom:241.108533pt;}
.y2e7{bottom:241.649733pt;}
.y29f{bottom:241.883600pt;}
.y270{bottom:244.892400pt;}
.y2d7{bottom:245.986267pt;}
.y135{bottom:247.489333pt;}
.y1d6{bottom:247.747467pt;}
.y102{bottom:248.509867pt;}
.y2d{bottom:250.288667pt;}
.y197{bottom:250.550800pt;}
.y241{bottom:252.365467pt;}
.y118{bottom:253.309867pt;}
.y20a{bottom:253.908533pt;}
.y64{bottom:254.755600pt;}
.y29e{bottom:257.883600pt;}
.y55{bottom:258.822000pt;}
.y9d{bottom:258.947067pt;}
.yce{bottom:259.029600pt;}
.y2d6{bottom:260.386267pt;}
.y26f{bottom:260.892400pt;}
.y1d5{bottom:263.747467pt;}
.y134{bottom:265.089333pt;}
.y101{bottom:266.109867pt;}
.y209{bottom:266.708533pt;}
.y2c{bottom:267.401467pt;}
.y240{bottom:268.365467pt;}
.y147{bottom:269.889467pt;}
.y63{bottom:270.755600pt;}
.y2fe{bottom:271.760000pt;}
.ycd{bottom:271.829600pt;}
.y196{bottom:271.930400pt;}
.y29d{bottom:273.883600pt;}
.y2d5{bottom:274.786267pt;}
.y26e{bottom:276.892400pt;}
.y54{bottom:277.001600pt;}
.y9c{bottom:277.126533pt;}
.y208{bottom:279.508533pt;}
.y1d4{bottom:279.747467pt;}
.y146{bottom:282.689333pt;}
.y117{bottom:283.709867pt;}
.y23f{bottom:284.365467pt;}
.y2b{bottom:284.514400pt;}
.y195{bottom:284.730267pt;}
.y133{bottom:286.468933pt;}
.y100{bottom:287.489333pt;}
.y2d4{bottom:289.186133pt;}
.y2fd{bottom:289.360000pt;}
.ycc{bottom:289.429600pt;}
.y29c{bottom:289.883600pt;}
.y207{bottom:292.308533pt;}
.y26d{bottom:292.892400pt;}
.y62{bottom:294.314667pt;}
.y53{bottom:295.181067pt;}
.y9b{bottom:295.306133pt;}
.y1d3{bottom:295.747467pt;}
.y132{bottom:299.268933pt;}
.yff{bottom:300.289333pt;}
.y23e{bottom:300.365467pt;}
.y2a{bottom:301.627200pt;}
.y194{bottom:302.330267pt;}
.y2d3{bottom:303.586133pt;}
.y116{bottom:305.089333pt;}
.y206{bottom:305.108533pt;}
.y29b{bottom:305.883600pt;}
.y2fc{bottom:306.960000pt;}
.ycb{bottom:310.809067pt;}
.y1d2{bottom:311.747467pt;}
.y52{bottom:313.360533pt;}
.y9a{bottom:313.485600pt;}
.y159{bottom:316.868933pt;}
.yfe{bottom:317.889467pt;}
.y205{bottom:317.908533pt;}
.y2d2{bottom:317.986267pt;}
.y29{bottom:318.740133pt;}
.y131{bottom:320.648400pt;}
.y145{bottom:321.668933pt;}
.y29a{bottom:321.883600pt;}
.yca{bottom:323.609067pt;}
.y193{bottom:323.709867pt;}
.y23d{bottom:323.924533pt;}
.y2fb{bottom:324.560000pt;}
.y26c{bottom:324.892400pt;}
.y1d1{bottom:327.747467pt;}
.y204{bottom:330.708533pt;}
.y51{bottom:331.540133pt;}
.y99{bottom:331.665200pt;}
.y2d1{bottom:332.386267pt;}
.y130{bottom:333.448400pt;}
.y144{bottom:334.468933pt;}
.y115{bottom:335.489333pt;}
.y28{bottom:335.852933pt;}
.y192{bottom:336.509867pt;}
.y299{bottom:337.883600pt;}
.y158{bottom:338.248400pt;}
.yfd{bottom:339.268933pt;}
.y26b{bottom:340.892400pt;}
.y2fa{bottom:342.160000pt;}
.y1d0{bottom:343.747467pt;}
.yc9{bottom:344.988667pt;}
.y2d0{bottom:346.786267pt;}
.y50{bottom:349.719600pt;}
.y98{bottom:349.844667pt;}
.y12f{bottom:351.048400pt;}
.yfc{bottom:352.068933pt;}
.y27{bottom:352.965867pt;}
.y298{bottom:353.883600pt;}
.y191{bottom:354.109867pt;}
.y114{bottom:356.868933pt;}
.y26a{bottom:356.892400pt;}
.yc8{bottom:357.788667pt;}
.y23c{bottom:359.124533pt;}
.y1cf{bottom:359.747467pt;}
.y2cf{bottom:361.186133pt;}
.y4f{bottom:367.899200pt;}
.y97{bottom:368.024267pt;}
.y157{bottom:368.648400pt;}
.y113{bottom:369.668933pt;}
.y297{bottom:369.883600pt;}
.y26{bottom:370.078667pt;}
.y12e{bottom:372.428000pt;}
.yfb{bottom:373.448400pt;}
.y203{bottom:375.124400pt;}
.y23b{bottom:375.124533pt;}
.yc7{bottom:375.388667pt;}
.y190{bottom:375.489333pt;}
.y269{bottom:376.665467pt;}
.y268{bottom:383.865467pt;}
.y2f3{bottom:384.040267pt;}
.y12d{bottom:385.228000pt;}
.y296{bottom:385.883600pt;}
.y4e{bottom:386.078667pt;}
.y96{bottom:386.203733pt;}
.yfa{bottom:386.248400pt;}
.y25{bottom:387.191467pt;}
.y16a{bottom:387.268933pt;}
.y18f{bottom:388.289333pt;}
.y156{bottom:390.028000pt;}
.y112{bottom:391.048400pt;}
.y202{bottom:391.124400pt;}
.y23a{bottom:391.124533pt;}
.y2ce{bottom:391.586267pt;}
.yc6{bottom:396.768133pt;}
.y1ce{bottom:398.403867pt;}
.y2f2{bottom:401.640267pt;}
.y295{bottom:401.883600pt;}
.y12c{bottom:402.828000pt;}
.yf9{bottom:403.848400pt;}
.y4d{bottom:404.258267pt;}
.y24{bottom:404.304400pt;}
.y95{bottom:404.383333pt;}
.y201{bottom:407.124400pt;}
.y239{bottom:407.124533pt;}
.y2cd{bottom:407.586267pt;}
.y1b2{bottom:407.628000pt;}
.y169{bottom:408.648400pt;}
.yc5{bottom:409.568133pt;}
.y18e{bottom:409.668933pt;}
.y1cd{bottom:414.403867pt;}
.y267{bottom:417.348000pt;}
.y294{bottom:417.883600pt;}
.y2f1{bottom:419.240267pt;}
.y155{bottom:420.428000pt;}
.y23{bottom:421.417333pt;}
.y168{bottom:421.448400pt;}
.y4c{bottom:422.437733pt;}
.y18d{bottom:422.468933pt;}
.y94{bottom:422.562800pt;}
.y200{bottom:423.124400pt;}
.y238{bottom:423.124533pt;}
.y2cc{bottom:423.586267pt;}
.y12b{bottom:424.207467pt;}
.y266{bottom:424.548000pt;}
.yf8{bottom:425.228000pt;}
.yc4{bottom:427.168267pt;}
.y293{bottom:433.883600pt;}
.y12a{bottom:437.007467pt;}
.y1cc{bottom:437.962933pt;}
.yf7{bottom:438.028000pt;}
.y22{bottom:438.530133pt;}
.y1ff{bottom:439.124400pt;}
.y237{bottom:439.124533pt;}
.y2cb{bottom:439.586267pt;}
.y18c{bottom:440.068933pt;}
.y4b{bottom:440.617333pt;}
.y93{bottom:440.742400pt;}
.y154{bottom:441.807467pt;}
.y167{bottom:442.828000pt;}
.yc3{bottom:448.547733pt;}
.y292{bottom:449.883600pt;}
.y1cb{bottom:453.962933pt;}
.y129{bottom:454.607467pt;}
.y1fe{bottom:455.124400pt;}
.y236{bottom:455.124533pt;}
.y2ca{bottom:455.586267pt;}
.y166{bottom:455.628000pt;}
.y21{bottom:455.642933pt;}
.y265{bottom:458.030533pt;}
.y4a{bottom:458.796800pt;}
.y92{bottom:458.921867pt;}
.yf6{bottom:459.407467pt;}
.y2f9{bottom:461.120667pt;}
.yc2{bottom:461.347733pt;}
.y18b{bottom:461.448400pt;}
.y264{bottom:465.230533pt;}
.y291{bottom:465.883600pt;}
.y1ca{bottom:469.962933pt;}
.y1fd{bottom:471.124400pt;}
.y235{bottom:471.124533pt;}
.y2c9{bottom:471.586267pt;}
.yf5{bottom:472.207467pt;}
.y20{bottom:472.755867pt;}
.y165{bottom:473.228000pt;}
.y18a{bottom:474.248400pt;}
.y128{bottom:475.987067pt;}
.y49{bottom:476.976400pt;}
.y91{bottom:477.101333pt;}
.y2f8{bottom:478.720667pt;}
.yc1{bottom:478.947733pt;}
.y290{bottom:481.883600pt;}
.y1c9{bottom:485.962933pt;}
.y1fc{bottom:487.124400pt;}
.y234{bottom:487.124533pt;}
.y2c8{bottom:487.586267pt;}
.y127{bottom:488.787067pt;}
.yf4{bottom:489.807467pt;}
.y1f{bottom:489.868800pt;}
.y153{bottom:493.587067pt;}
.y164{bottom:494.607467pt;}
.y48{bottom:495.155867pt;}
.y189{bottom:495.628000pt;}
.y2f7{bottom:496.320533pt;}
.y28f{bottom:497.883600pt;}
.y263{bottom:498.713067pt;}
.yc0{bottom:500.327333pt;}
.y1c8{bottom:501.962933pt;}
.y1fb{bottom:503.124400pt;}
.y233{bottom:503.124533pt;}
.y2c7{bottom:503.586267pt;}
.y262{bottom:505.913067pt;}
.y126{bottom:506.387067pt;}
.y1e{bottom:506.981600pt;}
.y163{bottom:507.407467pt;}
.y188{bottom:508.428000pt;}
.yf3{bottom:511.187067pt;}
.ybf{bottom:513.127200pt;}
.y47{bottom:513.335467pt;}
.y28e{bottom:513.883600pt;}
.y2f6{bottom:513.920667pt;}
.y90{bottom:516.103600pt;}
.y1c7{bottom:517.962933pt;}
.y1fa{bottom:519.124400pt;}
.y232{bottom:519.124533pt;}
.y2c6{bottom:519.586267pt;}
.yf2{bottom:523.987067pt;}
.y1d{bottom:524.094400pt;}
.y1a8{bottom:525.007467pt;}
.y187{bottom:526.028000pt;}
.y125{bottom:527.766533pt;}
.y162{bottom:528.787067pt;}
.y28d{bottom:529.883600pt;}
.ybe{bottom:530.727200pt;}
.y8f{bottom:530.770267pt;}
.y46{bottom:531.514933pt;}
.y2f5{bottom:531.520533pt;}
.y1c6{bottom:533.962933pt;}
.y1f9{bottom:535.124400pt;}
.y231{bottom:535.124533pt;}
.y2c5{bottom:535.586267pt;}
.y261{bottom:539.395600pt;}
.y124{bottom:540.566533pt;}
.y1c{bottom:541.207333pt;}
.yf1{bottom:541.587067pt;}
.y152{bottom:545.366533pt;}
.y8e{bottom:545.436933pt;}
.y28c{bottom:545.883600pt;}
.y1a7{bottom:546.387067pt;}
.y260{bottom:546.595600pt;}
.y186{bottom:547.407467pt;}
.y2f4{bottom:549.120667pt;}
.y45{bottom:549.694400pt;}
.y1f8{bottom:551.124400pt;}
.y230{bottom:551.124533pt;}
.y2c4{bottom:551.586267pt;}
.ybd{bottom:552.106800pt;}
.y123{bottom:558.166533pt;}
.y1b{bottom:558.320133pt;}
.y161{bottom:559.187067pt;}
.y8d{bottom:560.103600pt;}
.y185{bottom:560.207467pt;}
.y28b{bottom:561.883600pt;}
.yf0{bottom:562.966533pt;}
.ybc{bottom:564.906800pt;}
.y1f7{bottom:567.124400pt;}
.y22f{bottom:567.124533pt;}
.y2c3{bottom:567.586267pt;}
.y44{bottom:567.874000pt;}
.y1c5{bottom:570.728933pt;}
.y8c{bottom:574.770267pt;}
.y1a{bottom:575.433067pt;}
.yef{bottom:575.766533pt;}
.y1a6{bottom:576.787067pt;}
.y28a{bottom:577.883600pt;}
.y160{bottom:580.566533pt;}
.y184{bottom:581.587067pt;}
.ybb{bottom:582.506800pt;}
.y1f6{bottom:583.124400pt;}
.y22e{bottom:583.124533pt;}
.y2c2{bottom:583.586267pt;}
.y43{bottom:586.053467pt;}
.y8b{bottom:589.436933pt;}
.y19{bottom:592.545867pt;}
.yee{bottom:593.366533pt;}
.y289{bottom:593.883600pt;}
.y1c4{bottom:594.288000pt;}
.y183{bottom:594.387067pt;}
.y122{bottom:597.146133pt;}
.y25f{bottom:597.448800pt;}
.y1a5{bottom:598.166533pt;}
.y1f5{bottom:599.124400pt;}
.y22d{bottom:599.124533pt;}
.y2c1{bottom:599.586267pt;}
.y2f0{bottom:602.624400pt;}
.yba{bottom:603.886267pt;}
.y8a{bottom:604.103600pt;}
.y42{bottom:604.233067pt;}
.y18{bottom:609.658667pt;}
.y288{bottom:609.883600pt;}
.y121{bottom:609.946133pt;}
.y1c3{bottom:610.288000pt;}
.y15f{bottom:610.966533pt;}
.y182{bottom:611.987067pt;}
.yed{bottom:614.746000pt;}
.y1f4{bottom:615.124400pt;}
.y22c{bottom:615.124533pt;}
.y2c0{bottom:615.586267pt;}
.yb9{bottom:616.686267pt;}
.y89{bottom:618.770267pt;}
.y2ef{bottom:620.224400pt;}
.y41{bottom:622.412533pt;}
.y287{bottom:625.883600pt;}
.y1c2{bottom:626.288000pt;}
.y17{bottom:626.771600pt;}
.yec{bottom:627.546000pt;}
.y1a4{bottom:628.566533pt;}
.y1f3{bottom:631.124400pt;}
.y22b{bottom:631.124533pt;}
.y1b1{bottom:631.325600pt;}
.y2bf{bottom:631.586267pt;}
.y15e{bottom:632.346133pt;}
.y181{bottom:633.366533pt;}
.y88{bottom:633.436933pt;}
.yb8{bottom:634.286267pt;}
.y2ee{bottom:637.824400pt;}
.y25e{bottom:637.995467pt;}
.y40{bottom:640.592133pt;}
.y286{bottom:641.883600pt;}
.y1c1{bottom:642.288000pt;}
.y16{bottom:643.884400pt;}
.y1b0{bottom:644.125600pt;}
.yeb{bottom:645.146133pt;}
.y180{bottom:646.166533pt;}
.y1f2{bottom:647.124400pt;}
.y22a{bottom:647.124533pt;}
.y2be{bottom:647.586267pt;}
.y87{bottom:648.103600pt;}
.y120{bottom:648.925600pt;}
.y1a3{bottom:649.946133pt;}
.y2ed{bottom:655.424400pt;}
.yb7{bottom:655.665867pt;}
.y285{bottom:657.883600pt;}
.y1c0{bottom:658.288000pt;}
.y3f{bottom:658.771600pt;}
.y15{bottom:660.997333pt;}
.y11f{bottom:661.725600pt;}
.y1a2{bottom:662.746000pt;}
.y86{bottom:662.770267pt;}
.y229{bottom:663.124533pt;}
.y2bd{bottom:663.586267pt;}
.yea{bottom:666.525600pt;}
.y17f{bottom:667.546000pt;}
.yb6{bottom:668.465867pt;}
.y25d{bottom:669.995467pt;}
.y1f1{bottom:670.683467pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y284{bottom:673.883600pt;}
.y1bf{bottom:674.288000pt;}
.y3e{bottom:676.951200pt;}
.y85{bottom:677.436933pt;}
.y14{bottom:678.110133pt;}
.y228{bottom:679.124533pt;}
.ye9{bottom:679.325600pt;}
.y2bc{bottom:679.586267pt;}
.y17e{bottom:680.346133pt;}
.y2e9{bottom:681.389600pt;}
.y1af{bottom:683.105200pt;}
.y25c{bottom:685.995467pt;}
.yb5{bottom:689.845333pt;}
.y283{bottom:689.883600pt;}
.y1be{bottom:690.288000pt;}
.y84{bottom:692.103600pt;}
.y227{bottom:695.124533pt;}
.y3d{bottom:695.130667pt;}
.y13{bottom:695.223067pt;}
.y2bb{bottom:695.586133pt;}
.y1ae{bottom:695.905067pt;}
.ye8{bottom:696.925600pt;}
.y17d{bottom:697.946000pt;}
.y11e{bottom:700.705067pt;}
.y1a1{bottom:701.725600pt;}
.y25b{bottom:701.995467pt;}
.yb4{bottom:702.645333pt;}
.y1f0{bottom:705.883467pt;}
.y282{bottom:705.883600pt;}
.y83{bottom:706.770267pt;}
.y226{bottom:711.124533pt;}
.y2ba{bottom:711.586133pt;}
.y12{bottom:712.336000pt;}
.y3c{bottom:713.310267pt;}
.y11d{bottom:713.505067pt;}
.y1a0{bottom:714.525600pt;}
.y2ec{bottom:715.935733pt;}
.ye7{bottom:718.305200pt;}
.y17c{bottom:719.325600pt;}
.y82{bottom:721.436933pt;}
.y1ef{bottom:721.883467pt;}
.y281{bottom:721.883600pt;}
.yb3{bottom:724.024933pt;}
.y225{bottom:727.124533pt;}
.y2b9{bottom:727.586133pt;}
.y11{bottom:729.448800pt;}
.ye6{bottom:731.105200pt;}
.y3b{bottom:731.489733pt;}
.y17b{bottom:732.125600pt;}
.y25a{bottom:734.526000pt;}
.y1ad{bottom:734.884667pt;}
.y19f{bottom:735.905067pt;}
.y81{bottom:736.103600pt;}
.yb2{bottom:736.824933pt;}
.y1ee{bottom:737.883467pt;}
.y280{bottom:737.883600pt;}
.y2eb{bottom:742.694933pt;}
.y224{bottom:743.124533pt;}
.y2b8{bottom:743.586133pt;}
.y10{bottom:746.561733pt;}
.y1ac{bottom:747.684667pt;}
.y111{bottom:748.705067pt;}
.y259{bottom:748.926000pt;}
.y3a{bottom:749.669333pt;}
.y80{bottom:750.770267pt;}
.ye5{bottom:752.484667pt;}
.y17a{bottom:753.505067pt;}
.y1ed{bottom:753.883467pt;}
.y27f{bottom:753.883600pt;}
.yb1{bottom:758.204400pt;}
.y223{bottom:759.124533pt;}
.y2b7{bottom:759.586133pt;}
.yf{bottom:763.674533pt;}
.ye4{bottom:765.284667pt;}
.y7f{bottom:765.436933pt;}
.y1bd{bottom:765.899867pt;}
.y179{bottom:766.305200pt;}
.y39{bottom:767.848800pt;}
.y258{bottom:768.723200pt;}
.y2ea{bottom:769.454000pt;}
.y1ec{bottom:769.883467pt;}
.y27e{bottom:769.883600pt;}
.y110{bottom:770.084667pt;}
.yb0{bottom:771.004400pt;}
.y222{bottom:775.124533pt;}
.y2b6{bottom:775.586133pt;}
.ye3{bottom:782.884667pt;}
.y257{bottom:783.123067pt;}
.y1bc{bottom:783.499867pt;}
.y178{bottom:783.905067pt;}
.y1eb{bottom:785.883467pt;}
.y27d{bottom:785.883600pt;}
.y38{bottom:786.028267pt;}
.y1ab{bottom:786.664267pt;}
.yaf{bottom:788.604400pt;}
.y221{bottom:791.124533pt;}
.y2b5{bottom:791.586133pt;}
.y1aa{bottom:799.464133pt;}
.y151{bottom:800.484667pt;}
.y7e{bottom:800.633733pt;}
.y1bb{bottom:801.099867pt;}
.y1ea{bottom:801.883467pt;}
.y27c{bottom:801.883600pt;}
.y256{bottom:802.920267pt;}
.yc{bottom:803.504933pt;}
.y37{bottom:804.207867pt;}
.ye2{bottom:804.264133pt;}
.y177{bottom:805.284667pt;}
.y220{bottom:807.124533pt;}
.y2b4{bottom:807.586133pt;}
.yae{bottom:809.984000pt;}
.y7d{bottom:815.300400pt;}
.ye1{bottom:817.064267pt;}
.y255{bottom:817.320267pt;}
.y1e9{bottom:817.883467pt;}
.y27b{bottom:817.883600pt;}
.y176{bottom:818.084667pt;}
.y1ba{bottom:818.699867pt;}
.yb{bottom:819.504933pt;}
.y150{bottom:821.864133pt;}
.yad{bottom:822.784000pt;}
.y2b3{bottom:823.586133pt;}
.y7c{bottom:829.967067pt;}
.y21f{bottom:830.683600pt;}
.y1e8{bottom:833.883467pt;}
.y27a{bottom:833.883600pt;}
.y10f{bottom:834.664267pt;}
.y254{bottom:837.117467pt;}
.ye0{bottom:838.443733pt;}
.y175{bottom:839.464133pt;}
.y2b2{bottom:839.586133pt;}
.ya{bottom:843.063867pt;}
.yac{bottom:844.163467pt;}
.y7b{bottom:844.633733pt;}
.y1e7{bottom:849.883467pt;}
.y279{bottom:849.883600pt;}
.ydf{bottom:851.243733pt;}
.y253{bottom:851.517467pt;}
.y174{bottom:852.264133pt;}
.y14f{bottom:852.264267pt;}
.y1b9{bottom:853.899867pt;}
.y2b1{bottom:855.586133pt;}
.y10e{bottom:856.043733pt;}
.yab{bottom:856.963467pt;}
.y9{bottom:859.063867pt;}
.y7a{bottom:859.300400pt;}
.y1e6{bottom:865.883467pt;}
.y21e{bottom:865.883600pt;}
.yde{bottom:868.843733pt;}
.y252{bottom:871.314667pt;}
.y1b8{bottom:871.499867pt;}
.y2b0{bottom:871.586133pt;}
.y14e{bottom:873.643733pt;}
.y79{bottom:873.967067pt;}
.yaa{bottom:874.563467pt;}
.ye{bottom:877.481467pt;}
.y1e5{bottom:881.883467pt;}
.y21d{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.y251{bottom:885.714667pt;}
.y10d{bottom:886.443733pt;}
.y2af{bottom:887.586133pt;}
.y78{bottom:888.633733pt;}
.y1b7{bottom:889.100000pt;}
.ydd{bottom:890.223200pt;}
.ya9{bottom:895.943067pt;}
.yd{bottom:896.681600pt;}
.y1e4{bottom:897.883467pt;}
.y21c{bottom:897.883600pt;}
.y7{bottom:898.622933pt;}
.ydc{bottom:903.023333pt;}
.y77{bottom:903.300400pt;}
.y2ae{bottom:903.586133pt;}
.y173{bottom:904.043733pt;}
.y250{bottom:905.511867pt;}
.y1b6{bottom:906.700000pt;}
.y10c{bottom:907.823200pt;}
.y143{bottom:907.823333pt;}
.ya8{bottom:908.743067pt;}
.y24f{bottom:912.711867pt;}
.y1e3{bottom:913.883467pt;}
.y21b{bottom:913.883600pt;}
.y76{bottom:917.967067pt;}
.y2ad{bottom:919.586133pt;}
.ydb{bottom:920.623200pt;}
.y142{bottom:920.623333pt;}
.y172{bottom:925.423200pt;}
.y1e2{bottom:929.883467pt;}
.y21a{bottom:929.883600pt;}
.ya7{bottom:930.122533pt;}
.y75{bottom:932.633733pt;}
.y2ac{bottom:935.586133pt;}
.y10b{bottom:938.223200pt;}
.y141{bottom:938.223333pt;}
.y2e6{bottom:940.454267pt;}
.yda{bottom:942.002800pt;}
.ya6{bottom:942.922533pt;}
.y1e1{bottom:945.883467pt;}
.y219{bottom:945.883600pt;}
.y74{bottom:947.300400pt;}
.y24e{bottom:948.258267pt;}
.y2ab{bottom:951.586133pt;}
.yd9{bottom:954.802800pt;}
.y2e5{bottom:954.854267pt;}
.y171{bottom:955.823200pt;}
.y10a{bottom:959.602800pt;}
.y1e0{bottom:961.883467pt;}
.y218{bottom:961.883600pt;}
.y73{bottom:961.967067pt;}
.y24d{bottom:962.658267pt;}
.y2aa{bottom:967.586133pt;}
.y2e4{bottom:969.254267pt;}
.y1b5{bottom:972.300000pt;}
.yd8{bottom:972.402800pt;}
.y72{bottom:976.633733pt;}
.y170{bottom:977.202800pt;}
.y1df{bottom:977.883467pt;}
.y217{bottom:977.883600pt;}
.y2a9{bottom:983.586133pt;}
.y2e3{bottom:983.654267pt;}
.ya5{bottom:985.809333pt;}
.y14d{bottom:990.002800pt;}
.y24c{bottom:990.945333pt;}
.y71{bottom:991.300400pt;}
.yd7{bottom:993.782267pt;}
.y140{bottom:993.782400pt;}
.y1de{bottom:993.883467pt;}
.y216{bottom:993.883600pt;}
.y2e2{bottom:998.054267pt;}
.y24b{bottom:998.145467pt;}
.y2a8{bottom:999.586133pt;}
.y70{bottom:1005.967067pt;}
.yd6{bottom:1006.582267pt;}
.y13f{bottom:1006.582400pt;}
.y1dd{bottom:1009.883467pt;}
.y215{bottom:1009.883600pt;}
.y1b4{bottom:1010.700000pt;}
.y16f{bottom:1011.382267pt;}
.y14c{bottom:1011.382400pt;}
.y2e1{bottom:1012.454267pt;}
.y6f{bottom:1020.633733pt;}
.y2a7{bottom:1023.145200pt;}
.yd5{bottom:1024.182267pt;}
.y13e{bottom:1024.182400pt;}
.y24a{bottom:1025.219467pt;}
.y1dc{bottom:1025.883467pt;}
.y214{bottom:1025.883600pt;}
.y2e0{bottom:1026.854267pt;}
.y6e{bottom:1035.300400pt;}
.y6d{bottom:1049.967067pt;}
.ya3{bottom:1068.009867pt;}
.ya4{bottom:1069.353600pt;}
.h16{height:31.062500pt;}
.h20{height:31.104167pt;}
.h18{height:31.250000pt;}
.h22{height:31.270833pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.hf{height:35.179688pt;}
.he{height:36.848000pt;}
.h23{height:37.838542pt;}
.h8{height:38.828125pt;}
.h1c{height:38.880208pt;}
.h9{height:39.062500pt;}
.h1f{height:39.088542pt;}
.h1e{height:40.427161pt;}
.h21{height:40.427695pt;}
.h15{height:41.622396pt;}
.h1b{height:42.710938pt;}
.h10{height:42.768229pt;}
.h11{height:42.997396pt;}
.h1d{height:45.406250pt;}
.h28{height:46.197917pt;}
.ha{height:46.593750pt;}
.h2a{height:46.656250pt;}
.h13{height:46.720000pt;}
.h17{height:50.817708pt;}
.h24{height:63.745312pt;}
.h25{height:63.792187pt;}
.h26{height:63.792721pt;}
.h29{height:75.687500pt;}
.h1a{height:90.812500pt;}
.h27{height:92.592187pt;}
.h12{height:138.593750pt;}
.h19{height:138.594283pt;}
.h14{height:181.625000pt;}
.h4{height:191.666667pt;}
.h2{height:191.738733pt;}
.h5{height:264.320000pt;}
.h3{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.794133pt;}
.x9{left:60.472400pt;}
.x1c{left:64.690533pt;}
.x28{left:65.805733pt;}
.x19{left:73.091200pt;}
.x5{left:86.173200pt;}
.x29{left:88.448533pt;}
.xa{left:92.976400pt;}
.x15{left:94.488133pt;}
.x4{left:96.332533pt;}
.x1b{left:98.267733pt;}
.x22{left:103.896667pt;}
.x39{left:109.963467pt;}
.x38{left:110.872933pt;}
.x2a{left:113.385867pt;}
.x35{left:118.678933pt;}
.x36{left:120.315333pt;}
.x2e{left:122.900667pt;}
.x1e{left:124.724400pt;}
.x3{left:126.549600pt;}
.x2b{left:145.875333pt;}
.x21{left:165.787333pt;}
.x3b{left:175.824133pt;}
.x1d{left:185.196800pt;}
.x1a{left:191.125333pt;}
.x40{left:202.611333pt;}
.x3a{left:205.968267pt;}
.x41{left:215.251200pt;}
.x3f{left:220.808533pt;}
.x2f{left:224.545867pt;}
.x42{left:227.726533pt;}
.x18{left:249.448800pt;}
.x31{left:254.463467pt;}
.x2d{left:278.493467pt;}
.x37{left:292.695200pt;}
.x3c{left:306.672933pt;}
.x24{left:323.861467pt;}
.x32{left:327.197867pt;}
.x34{left:343.510400pt;}
.x3d{left:346.190533pt;}
.x3e{left:354.890400pt;}
.x27{left:357.207867pt;}
.x33{left:410.418400pt;}
.x8{left:455.089867pt;}
.x23{left:479.137467pt;}
.xf{left:517.136400pt;}
.x26{left:524.434400pt;}
.x25{left:527.481333pt;}
.xb{left:530.433867pt;}
.x13{left:532.601600pt;}
.x6{left:535.775200pt;}
.xe{left:537.915333pt;}
.x11{left:543.225600pt;}
.x10{left:544.851200pt;}
.xc{left:548.657600pt;}
.xd{left:563.592800pt;}
.x30{left:571.741733pt;}
.x12{left:580.300400pt;}
.x14{left:583.154267pt;}
.x20{left:587.862800pt;}
.x7{left:592.712667pt;}
.x1{left:627.488133pt;}
.x2c{left:672.038133pt;}
.x1f{left:686.927733pt;}
.x17{left:689.807733pt;}
.x16{left:760.123600pt;}
}




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