
    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_63acdb83025179c245c8500c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight: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_b8b27e33c3c3afceb49087a0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight: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_9edbb92c13d612e5a8f6fb4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;font-style:normal;font-weight: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_dd7a90bea8bc0c2d81a09b96.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight: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_7025182970d36b18f96019c9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239000;font-style:normal;font-weight: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_a5f0aa02cfcbad97ec5b4102.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142000;font-style:normal;font-weight: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_9c701f8e95c6d39763b3a5d1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f411e551a0b3152b1e291061.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;font-style:normal;font-weight: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_467c6ce2028d896e9141aa30.woff')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5f2db4acbde1d872593c5233.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690000;font-style:normal;font-weight: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_2ba254ba18d2b6909b8f89a2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.439000;font-style:normal;font-weight: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_079951fa108cad0b423228d8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684000;font-style:normal;font-weight: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_9331c62c3ba9cfaa9f02c764.woff')format("woff");}.ffd{font-family:ffd;line-height:0.439000;font-style:normal;font-weight: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_82d5bad7de7778be8242da6b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c415d9f5d62ebeb357713e63.woff')format("woff");}.fff{font-family:fff;line-height:0.853000;font-style:normal;font-weight: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_48964e0e4a7ead9c098da949.woff')format("woff");}.ff10{font-family:ff10;line-height:0.243000;font-style:normal;font-weight: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_a44cf3c1600b3eba3817c9d1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.439000;font-style:normal;font-weight: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_28f790a886227330a2f538db.woff')format("woff");}.ff12{font-family:ff12;line-height:0.450000;font-style:normal;font-weight: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_b283b64c4ea8ba6e6cf1d28b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.674000;font-style:normal;font-weight: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_54d0020284f6dc8430033aea.woff')format("woff");}.ff14{font-family:ff14;line-height:0.439000;font-style:normal;font-weight: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_145caa9424e0ad60bc4542e2.woff')format("woff");}.ff15{font-family:ff15;line-height:0.653000;font-style:normal;font-weight: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_f3cdcd10ed7c3cc79b497640.woff')format("woff");}.ff16{font-family:ff16;line-height:0.674000;font-style:normal;font-weight: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_c9e08cc59c6e15fdd382ce87.woff')format("woff");}.ff17{font-family:ff17;line-height:0.439000;font-style:normal;font-weight: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_b281278bd5b39477b5f56003.woff')format("woff");}.ff18{font-family:ff18;line-height:0.653000;font-style:normal;font-weight: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_36f152dbaa1e4366ad327ef4.woff')format("woff");}.ff19{font-family:ff19;line-height:0.674000;font-style:normal;font-weight: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_855ec328fc575c5019785b18.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.439000;font-style:normal;font-weight: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_a356dd4921c2f03096894e7f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.684000;font-style:normal;font-weight: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_2739138a716c3cb7c893f2e9.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.674000;font-style:normal;font-weight: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_0de62d74cb78a86329bf9272.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.439000;font-style:normal;font-weight: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_124148a279706266b2a5f104.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.653000;font-style:normal;font-weight: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_89d462a21073ea9bf547bdc2.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.674000;font-style:normal;font-weight: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_2d69ab8ce9165a8d65c34b1e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.439000;font-style:normal;font-weight: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_5607465a3710d11a04f94115.woff')format("woff");}.ff21{font-family:ff21;line-height:0.684000;font-style:normal;font-weight: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_0b274c0875aa1d849f3abb04.woff')format("woff");}.ff22{font-family:ff22;line-height:0.674000;font-style:normal;font-weight: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_20b052ed924cc92d90bb3f62.woff')format("woff");}.ff23{font-family:ff23;line-height:0.439000;font-style:normal;font-weight: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_995ba90f9f6309dabe5b7280.woff')format("woff");}.ff24{font-family:ff24;line-height:0.684015;font-style:normal;font-weight: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_ddddd36596d4a7a28ce7a245.woff')format("woff");}.ff25{font-family:ff25;line-height:0.674000;font-style:normal;font-weight: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_3c6321fd2e6e320b91be54a5.woff')format("woff");}.ff26{font-family:ff26;line-height:0.439000;font-style:normal;font-weight: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_ca19e88ba6edd637b80696ac.woff')format("woff");}.ff27{font-family:ff27;line-height:0.685000;font-style:normal;font-weight: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_8a0b0b304d9c77e1eb027a0a.woff')format("woff");}.ff28{font-family:ff28;line-height:0.674000;font-style:normal;font-weight: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_715597cd749d2ba82e772700.woff')format("woff");}.ff29{font-family:ff29;line-height:0.439000;font-style:normal;font-weight: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_737762fc2c211c70886901da.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.685000;font-style:normal;font-weight: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_971de5c022b5840c5c8beaf5.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.674000;font-style:normal;font-weight: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_052e88919b8cdcacc6912381.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.439000;font-style:normal;font-weight: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_c6dae334efd48b305b8b1aaa.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_61f014914f4c8d4db5806022.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_0537b6f98d702b6c548bed27.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_4d1b605b92dd28baf7c87c5b.woff')format("woff");}.ff30{font-family:ff30;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_3bec0cf6bf2672ff414c6bb0.woff')format("woff");}.ff31{font-family:ff31;line-height:0.624000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_f3bc1090ffd32c13249ebb65.woff')format("woff");}.ff32{font-family:ff32;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_3678d264cab3dbaf0c698300.woff')format("woff");}.ff33{font-family:ff33;line-height:1.856000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_56c75e98d7f60ef81b2b880a.woff')format("woff");}.ff34{font-family:ff34;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_4abe833bcc256a5afa3ff282.woff')format("woff");}.ff35{font-family:ff35;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_0c141a17b3a2cc670e846dc6.woff')format("woff");}.ff36{font-family:ff36;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_d849feac4368ba5352b4630f.woff')format("woff");}.ff37{font-family:ff37;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_8baa6b45e2c109c032897b73.woff')format("woff");}.ff38{font-family:ff38;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_cf6b9c2ba9bcc54aa0e21fc8.woff')format("woff");}.ff39{font-family:ff39;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_885ce527b4bd4928ebbbb4aa.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_625f5b33e723d884afb8ab8c.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.441000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_30d5c5807f15710c2f6babce.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_52a2a228e1a0eaaa92ef0ae5.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.647000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_011e7234bdf4f8e6e38bb871.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.441000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_0792c818229c3feaee0c04cb.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_d700973b56c387da2a7cfff8.woff')format("woff");}.ff40{font-family:ff40;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_cd51d629adf9260ded245171.woff')format("woff");}.ff41{font-family:ff41;line-height:0.647000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_3616b4f27c7768d2837cfa7a.woff')format("woff");}.ff42{font-family:ff42;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_fb9a2400726232fc58520486.woff')format("woff");}.ff43{font-family:ff43;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_05904666f77b5f98219b3f29.woff')format("woff");}.ff44{font-family:ff44;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_1507a335752843a10133df44.woff')format("woff");}.ff45{font-family:ff45;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_94b9410a9f911cdbd2badc9a.woff')format("woff");}.ff46{font-family:ff46;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_107e9c3b6258beb4cdc2cc8b.woff')format("woff");}.ff47{font-family:ff47;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_d793bca4a72b3ba879aa640d.woff')format("woff");}.ff48{font-family:ff48;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_599850f51b060304c16bcf13.woff')format("woff");}.ff49{font-family:ff49;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_ceda063578b1eb5bcf2a0afb.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_6091698f5cf43c089ac744ed.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_9828b105369aaf5986f06697.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_c3aa7469d1235126485def79.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_c9e1e0ed388850d42d19b7dc.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_3cabff42ff3b7564ca7f9de8.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.452000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_ec221b54447f9885ef684457.woff')format("woff");}.ff50{font-family:ff50;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_741741aed1420c6dd06d5ede.woff')format("woff");}.ff51{font-family:ff51;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_b634d71e52ea1459cb443886.woff')format("woff");}.ff52{font-family:ff52;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_d950ce2b9b4aa47cfaed497e.woff')format("woff");}.ff53{font-family:ff53;line-height:0.439000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_18a8d7d0573cca9f4d3db0e1.woff')format("woff");}.ff54{font-family:ff54;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_56e9357610f000e190bb8e82.woff')format("woff");}.ff55{font-family:ff55;line-height:1.232000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_881d459d1e621c74d48c436b.woff')format("woff");}.ff56{font-family:ff56;line-height:0.243000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_43bb7b5ccea4ebcf41d5f2c9.woff')format("woff");}.ff57{font-family:ff57;line-height:0.633000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_0b02253f0f32d3f75085b52a.woff')format("woff");}.ff58{font-family:ff58;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_3549d86396291a4288c295ad.woff')format("woff");}.ff59{font-family:ff59;line-height:1.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_a2e829b21e6863469991185c.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_275968af93e16a97c4ea79a6.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.243000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_702fe03e15609bde22ee0c56.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_315c6de4f4170ab3995645e4.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_afbc5a0ea16245e5c6e0b762.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_b5c40f251d0398c4dec3ef45.woff')format("woff");}.ff5f{font-family:ff5f;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-20.400055px;}
.v3{vertical-align:-15.000000px;}
.v9{vertical-align:-2.700439px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v7{vertical-align:34.808699px;}
.v5{vertical-align:45.971488px;}
.v6{vertical-align:66.556632px;}
.v8{vertical-align:108.567130px;}
.ls80{letter-spacing:-20.405099px;}
.ls84{letter-spacing:-14.325478px;}
.ls5f{letter-spacing:-1.740435px;}
.ls1c{letter-spacing:-1.560000px;}
.ls2e{letter-spacing:-1.500000px;}
.ls31{letter-spacing:-1.440000px;}
.ls43{letter-spacing:-1.320000px;}
.ls42{letter-spacing:-1.200000px;}
.ls34{letter-spacing:-1.140000px;}
.ls5e{letter-spacing:-1.134000px;}
.ls35{letter-spacing:-1.020000px;}
.lsb0{letter-spacing:-0.969000px;}
.ls37{letter-spacing:-0.960000px;}
.lsaf{letter-spacing:-0.918000px;}
.ls2d{letter-spacing:-0.900000px;}
.lsb1{letter-spacing:-0.867000px;}
.ls36{letter-spacing:-0.840000px;}
.ls2f{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.720000px;}
.lsae{letter-spacing:-0.663000px;}
.ls30{letter-spacing:-0.660000px;}
.ls5b{letter-spacing:-0.630153px;}
.ls32{letter-spacing:-0.630000px;}
.ls48{letter-spacing:-0.612000px;}
.ls38{letter-spacing:-0.600000px;}
.lsb9{letter-spacing:-0.561000px;}
.ls44{letter-spacing:-0.540000px;}
.lsb2{letter-spacing:-0.510000px;}
.ls2c{letter-spacing:-0.480000px;}
.lsb8{letter-spacing:-0.459000px;}
.ls5a{letter-spacing:-0.420000px;}
.lsba{letter-spacing:-0.408000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsa9{letter-spacing:-0.357000px;}
.lsbb{letter-spacing:-0.306000px;}
.ls2b{letter-spacing:-0.300000px;}
.lsb7{letter-spacing:-0.255000px;}
.ls29{letter-spacing:-0.240000px;}
.lsaa{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.lsab{letter-spacing:-0.153000px;}
.ls33{letter-spacing:-0.120000px;}
.lsac{letter-spacing:-0.102000px;}
.ls1a{letter-spacing:-0.060000px;}
.lsad{letter-spacing:-0.051000px;}
.ls1b{letter-spacing:-0.042000px;}
.ls18{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls64{letter-spacing:0.000676px;}
.ls59{letter-spacing:0.003938px;}
.ls4b{letter-spacing:0.009951px;}
.ls61{letter-spacing:0.009953px;}
.ls4c{letter-spacing:0.010548px;}
.ls54{letter-spacing:0.010594px;}
.ls66{letter-spacing:0.015911px;}
.ls65{letter-spacing:0.016488px;}
.lsb5{letter-spacing:0.025500px;}
.ls5d{letter-spacing:0.042010px;}
.ls9e{letter-spacing:0.051000px;}
.ls4{letter-spacing:0.060000px;}
.lsb3{letter-spacing:0.076500px;}
.ls23{letter-spacing:0.090000px;}
.lsa1{letter-spacing:0.102000px;}
.ls11{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.178791px;}
.ls9{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.197980px;}
.lsb4{letter-spacing:0.204000px;}
.ls63{letter-spacing:0.209391px;}
.ls2a{letter-spacing:0.210000px;}
.ls76{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.240000px;}
.ls62{letter-spacing:0.243062px;}
.ls17{letter-spacing:0.255000px;}
.ls9d{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.270000px;}
.lsa2{letter-spacing:0.288000px;}
.lse{letter-spacing:0.299989px;}
.ls3{letter-spacing:0.300000px;}
.ls8e{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.329973px;}
.ls9f{letter-spacing:0.357000px;}
.ls3e{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.365958px;}
.ls15{letter-spacing:0.383958px;}
.ls8d{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.420000px;}
.lsa0{letter-spacing:0.459000px;}
.ls67{letter-spacing:0.462000px;}
.ls4a{letter-spacing:0.465591px;}
.ls25{letter-spacing:0.480000px;}
.ls9c{letter-spacing:0.510000px;}
.ls26{letter-spacing:0.520757px;}
.ls90{letter-spacing:0.535500px;}
.ls20{letter-spacing:0.535815px;}
.ls13{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.546000px;}
.lsa4{letter-spacing:0.561000px;}
.ls75{letter-spacing:0.588000px;}
.lsb{letter-spacing:0.600000px;}
.lsa5{letter-spacing:0.612000px;}
.ls79{letter-spacing:0.618000px;}
.ls60{letter-spacing:0.630000px;}
.ls3d{letter-spacing:0.660000px;}
.lsa6{letter-spacing:0.663000px;}
.ls7e{letter-spacing:0.672000px;}
.ls7{letter-spacing:0.702000px;}
.ls39{letter-spacing:0.714000px;}
.ls21{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.750000px;}
.ls8f{letter-spacing:0.765000px;}
.lsf{letter-spacing:0.780000px;}
.ls77{letter-spacing:0.810000px;}
.lsa3{letter-spacing:0.816000px;}
.ls7a{letter-spacing:0.833975px;}
.ls8{letter-spacing:0.840000px;}
.ls8c{letter-spacing:0.867000px;}
.ls1f{letter-spacing:0.900000px;}
.ls78{letter-spacing:0.918000px;}
.ls49{letter-spacing:0.930000px;}
.ls22{letter-spacing:0.948000px;}
.ls5{letter-spacing:0.960000px;}
.ls9b{letter-spacing:0.969000px;}
.ls6c{letter-spacing:0.990000px;}
.ls71{letter-spacing:1.019993px;}
.ls1e{letter-spacing:1.020000px;}
.lsb6{letter-spacing:1.071000px;}
.ls57{letter-spacing:1.074000px;}
.ls70{letter-spacing:1.080000px;}
.ls94{letter-spacing:1.122000px;}
.ls3a{letter-spacing:1.140000px;}
.ls58{letter-spacing:1.182000px;}
.ls24{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.205983px;}
.lsa7{letter-spacing:1.224000px;}
.ls46{letter-spacing:1.260000px;}
.ls98{letter-spacing:1.275000px;}
.ls14{letter-spacing:1.320000px;}
.ls93{letter-spacing:1.326000px;}
.ls96{letter-spacing:1.377000px;}
.ls3b{letter-spacing:1.380000px;}
.ls6a{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.500000px;}
.ls28{letter-spacing:1.530000px;}
.ls3f{letter-spacing:1.560000px;}
.ls85{letter-spacing:1.590000px;}
.ls89{letter-spacing:1.620000px;}
.ls92{letter-spacing:1.632000px;}
.ls40{letter-spacing:1.680000px;}
.ls91{letter-spacing:1.734000px;}
.ls3c{letter-spacing:1.800000px;}
.ls88{letter-spacing:1.830000px;}
.ls45{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.920000px;}
.ls95{letter-spacing:1.938000px;}
.ls69{letter-spacing:1.980000px;}
.ls97{letter-spacing:1.989000px;}
.ls8a{letter-spacing:2.040000px;}
.ls86{letter-spacing:2.100000px;}
.lsa8{letter-spacing:2.142000px;}
.ls87{letter-spacing:2.160000px;}
.ls72{letter-spacing:2.220000px;}
.ls81{letter-spacing:2.280000px;}
.ls83{letter-spacing:2.340585px;}
.ls9a{letter-spacing:2.346000px;}
.ls73{letter-spacing:2.460000px;}
.ls8b{letter-spacing:2.490000px;}
.ls27{letter-spacing:2.700000px;}
.ls68{letter-spacing:2.956517px;}
.ls56{letter-spacing:2.956560px;}
.ls6d{letter-spacing:2.979946px;}
.ls52{letter-spacing:2.984813px;}
.ls6e{letter-spacing:3.000883px;}
.ls99{letter-spacing:3.162000px;}
.ls6f{letter-spacing:3.600900px;}
.ls7f{letter-spacing:3.900000px;}
.ls0{letter-spacing:3.990000px;}
.ls7b{letter-spacing:7.141785px;}
.ls51{letter-spacing:8.762190px;}
.ls5c{letter-spacing:9.962490px;}
.ls53{letter-spacing:10.022505px;}
.ls7c{letter-spacing:10.172127px;}
.ls50{letter-spacing:13.383344px;}
.ls4f{letter-spacing:16.325832px;}
.ls4e{letter-spacing:16.684169px;}
.ls82{letter-spacing:16.744184px;}
.ls7d{letter-spacing:19.084769px;}
.ls4d{letter-spacing:20.525194px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws80{word-spacing:-18.900000px;}
.ws46{word-spacing:-17.700000px;}
.ws7b{word-spacing:-16.804199px;}
.ws7f{word-spacing:-15.960000px;}
.ws28{word-spacing:-15.780000px;}
.ws65{word-spacing:-15.660000px;}
.ws64{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.000000px;}
.ws9b{word-spacing:-14.832000px;}
.ws3b{word-spacing:-14.544000px;}
.ws5c{word-spacing:-14.160000px;}
.ws66{word-spacing:-14.100000px;}
.ws2a{word-spacing:-13.560000px;}
.ws10{word-spacing:-13.440000px;}
.ws9c{word-spacing:-13.005000px;}
.ws9a{word-spacing:-12.852000px;}
.ws73{word-spacing:-12.480000px;}
.ws3c{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws99{word-spacing:-11.526000px;}
.ws6{word-spacing:-11.520000px;}
.ws2c{word-spacing:-11.214000px;}
.ws77{word-spacing:-11.172000px;}
.ws78{word-spacing:-10.962000px;}
.ws29{word-spacing:-10.710000px;}
.ws5b{word-spacing:-10.500000px;}
.ws5{word-spacing:-10.458000px;}
.ws1{word-spacing:-9.996000px;}
.ws6d{word-spacing:-9.962490px;}
.ws2b{word-spacing:-9.870000px;}
.ws6a{word-spacing:-9.366000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws8c{word-spacing:-7.500000px;}
.ws8f{word-spacing:-7.380000px;}
.ws52{word-spacing:-7.320000px;}
.ws92{word-spacing:-2.340585px;}
.ws8e{word-spacing:-1.680000px;}
.wsb{word-spacing:-1.500000px;}
.ws40{word-spacing:-1.440000px;}
.wsc8{word-spacing:-1.377000px;}
.wscf{word-spacing:-1.326000px;}
.ws42{word-spacing:-1.320000px;}
.wsa1{word-spacing:-1.275000px;}
.ws4d{word-spacing:-1.260000px;}
.wsce{word-spacing:-1.224000px;}
.ws3d{word-spacing:-1.140000px;}
.ws4e{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.071000px;}
.ws31{word-spacing:-1.020000px;}
.wsaf{word-spacing:-0.969000px;}
.ws32{word-spacing:-0.960000px;}
.wsc7{word-spacing:-0.867000px;}
.ws2f{word-spacing:-0.840000px;}
.wsd3{word-spacing:-0.816000px;}
.ws20{word-spacing:-0.780000px;}
.wsb2{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsb3{word-spacing:-0.714000px;}
.ws25{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.wsf{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.wsbc{word-spacing:-0.561000px;}
.ws21{word-spacing:-0.540000px;}
.wsd4{word-spacing:-0.510000px;}
.ws4f{word-spacing:-0.480000px;}
.wsd5{word-spacing:-0.459000px;}
.ws16{word-spacing:-0.420000px;}
.ws57{word-spacing:-0.360000px;}
.wsc6{word-spacing:-0.306000px;}
.ws14{word-spacing:-0.300000px;}
.wsae{word-spacing:-0.264000px;}
.wsb9{word-spacing:-0.255000px;}
.ws1e{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.180000px;}
.ws39{word-spacing:-0.120000px;}
.ws67{word-spacing:-0.060015px;}
.ws23{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws69{word-spacing:-0.042010px;}
.ws9{word-spacing:0.000000px;}
.wsbd{word-spacing:0.051000px;}
.ws43{word-spacing:0.060000px;}
.ws1b{word-spacing:0.120000px;}
.ws96{word-spacing:0.180000px;}
.wsdc{word-spacing:0.204000px;}
.wse{word-spacing:0.240000px;}
.ws5e{word-spacing:0.300000px;}
.ws54{word-spacing:0.306000px;}
.wsb4{word-spacing:0.357000px;}
.ws59{word-spacing:0.360000px;}
.ws91{word-spacing:0.420000px;}
.wsd{word-spacing:0.540000px;}
.ws13{word-spacing:0.600000px;}
.ws63{word-spacing:0.612000px;}
.ws72{word-spacing:0.630153px;}
.ws3f{word-spacing:0.660000px;}
.wscb{word-spacing:0.714000px;}
.ws24{word-spacing:0.720000px;}
.wsbe{word-spacing:0.765000px;}
.ws60{word-spacing:0.840000px;}
.wsd6{word-spacing:0.867000px;}
.ws95{word-spacing:0.900000px;}
.wsb8{word-spacing:0.918000px;}
.ws17{word-spacing:1.020000px;}
.ws85{word-spacing:1.080000px;}
.ws56{word-spacing:1.140000px;}
.wsb0{word-spacing:1.173000px;}
.ws35{word-spacing:1.200000px;}
.ws9e{word-spacing:1.224000px;}
.ws37{word-spacing:1.260000px;}
.wsa0{word-spacing:1.275000px;}
.ws38{word-spacing:1.320000px;}
.ws98{word-spacing:1.326000px;}
.ws1c{word-spacing:1.380000px;}
.wsd0{word-spacing:1.428000px;}
.ws41{word-spacing:1.440000px;}
.wsc{word-spacing:1.500000px;}
.ws9f{word-spacing:1.530000px;}
.ws36{word-spacing:1.560000px;}
.wsda{word-spacing:1.581000px;}
.ws1d{word-spacing:1.620000px;}
.wsc1{word-spacing:1.632000px;}
.ws45{word-spacing:1.680000px;}
.wsc0{word-spacing:1.683000px;}
.wsba{word-spacing:1.734000px;}
.ws1f{word-spacing:1.740000px;}
.ws74{word-spacing:1.740435px;}
.wsb5{word-spacing:1.785000px;}
.ws90{word-spacing:1.800000px;}
.wsbf{word-spacing:1.836000px;}
.ws55{word-spacing:1.860000px;}
.ws2e{word-spacing:1.920000px;}
.wsa8{word-spacing:1.938000px;}
.ws18{word-spacing:2.040000px;}
.ws47{word-spacing:2.100000px;}
.ws82{word-spacing:2.160000px;}
.wsb7{word-spacing:2.193000px;}
.ws71{word-spacing:2.220000px;}
.wsc4{word-spacing:2.244000px;}
.ws34{word-spacing:2.280000px;}
.wsa4{word-spacing:2.295000px;}
.ws51{word-spacing:2.340000px;}
.wsa6{word-spacing:2.397000px;}
.ws30{word-spacing:2.400000px;}
.ws89{word-spacing:2.460000px;}
.ws9d{word-spacing:2.520000px;}
.wsd9{word-spacing:2.550000px;}
.ws6b{word-spacing:2.580000px;}
.ws33{word-spacing:2.640000px;}
.wsc5{word-spacing:2.652000px;}
.ws15{word-spacing:2.700000px;}
.ws62{word-spacing:2.754000px;}
.ws2d{word-spacing:2.760000px;}
.wsd8{word-spacing:2.805000px;}
.ws61{word-spacing:2.820000px;}
.wsc3{word-spacing:2.856000px;}
.ws5f{word-spacing:2.880000px;}
.wsc9{word-spacing:2.907000px;}
.ws44{word-spacing:2.940000px;}
.ws97{word-spacing:3.000000px;}
.wsad{word-spacing:3.009000px;}
.ws8a{word-spacing:3.060000px;}
.wsdb{word-spacing:3.111000px;}
.ws5d{word-spacing:3.180000px;}
.ws6c{word-spacing:3.240000px;}
.ws76{word-spacing:3.264000px;}
.ws8b{word-spacing:3.300000px;}
.ws83{word-spacing:3.360000px;}
.ws5a{word-spacing:3.366000px;}
.wscd{word-spacing:3.417000px;}
.ws4a{word-spacing:3.540000px;}
.wsdd{word-spacing:3.570000px;}
.wsb6{word-spacing:3.672000px;}
.ws3a{word-spacing:3.720000px;}
.wsd2{word-spacing:3.723000px;}
.wsa3{word-spacing:3.774000px;}
.ws81{word-spacing:3.840000px;}
.ws3e{word-spacing:3.900000px;}
.ws94{word-spacing:4.140000px;}
.ws48{word-spacing:4.200000px;}
.ws6e{word-spacing:4.380000px;}
.wsaa{word-spacing:4.437000px;}
.ws22{word-spacing:4.500000px;}
.ws4c{word-spacing:4.560000px;}
.wsc2{word-spacing:4.641000px;}
.ws6f{word-spacing:4.680000px;}
.wsd7{word-spacing:4.692000px;}
.ws87{word-spacing:4.740000px;}
.wsab{word-spacing:4.743000px;}
.wsbb{word-spacing:4.845000px;}
.wsd1{word-spacing:4.896000px;}
.ws8d{word-spacing:4.980000px;}
.wscc{word-spacing:4.998000px;}
.ws50{word-spacing:5.100000px;}
.wsa5{word-spacing:5.304000px;}
.ws84{word-spacing:5.340000px;}
.wsa7{word-spacing:5.355000px;}
.ws1a{word-spacing:5.400000px;}
.ws4b{word-spacing:5.520000px;}
.ws7c{word-spacing:5.581395px;}
.wsca{word-spacing:5.661000px;}
.ws88{word-spacing:5.820000px;}
.ws70{word-spacing:6.060000px;}
.wsa2{word-spacing:6.120000px;}
.ws58{word-spacing:6.300000px;}
.ws68{word-spacing:7.459706px;}
.ws49{word-spacing:8.619000px;}
.ws53{word-spacing:9.435000px;}
.wsac{word-spacing:9.945000px;}
.wsde{word-spacing:13.515000px;}
.wsa9{word-spacing:13.974000px;}
.ws93{word-spacing:14.325478px;}
.ws7d{word-spacing:16.564139px;}
.ws7e{word-spacing:16.624154px;}
.wsdf{word-spacing:17.595000px;}
.ws7a{word-spacing:19.612400px;}
.ws86{word-spacing:20.405099px;}
.ws75{word-spacing:20.655000px;}
.ws12{word-spacing:21.456000px;}
.ws79{word-spacing:24.145101px;}
.ws26{word-spacing:72.267000px;}
._12{margin-left:-2959.376944px;}
._8{margin-left:-96.900000px;}
._24{margin-left:-18.717000px;}
._18{margin-left:-17.640013px;}
._5{margin-left:-16.575000px;}
._22{margin-left:-15.351000px;}
._17{margin-left:-13.980000px;}
._3{margin-left:-12.974429px;}
._15{margin-left:-11.760000px;}
._21{margin-left:-10.506000px;}
._c{margin-left:-8.748000px;}
._b{margin-left:-6.989366px;}
._a{margin-left:-5.160000px;}
._1{margin-left:-3.371100px;}
._0{margin-left:-1.632000px;}
._2{width:1.238400px;}
._4{width:3.144000px;}
._1b{width:4.442100px;}
._19{width:5.496000px;}
._1a{width:7.037992px;}
._14{width:8.460000px;}
._1c{width:9.980700px;}
._16{width:11.004000px;}
._f{width:12.549000px;}
._13{width:14.536800px;}
._11{width:15.606000px;}
._6{width:18.360000px;}
._10{width:20.526000px;}
._23{width:22.287000px;}
._1e{width:23.658900px;}
._1f{width:25.155000px;}
._25{width:26.234429px;}
._1d{width:27.285008px;}
._20{width:29.922600px;}
._e{width:33.000000px;}
._d{width:36.000000px;}
._7{width:54.621000px;}
._9{width:1223.438973px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y12b{bottom:-0.016205px;}
.y0{bottom:0.000000px;}
.yf1{bottom:0.043945px;}
.ye9{bottom:0.045410px;}
.y169{bottom:0.105377px;}
.y139{bottom:0.195465px;}
.y167{bottom:0.793854px;}
.y160{bottom:0.825256px;}
.yd3{bottom:2.231140px;}
.y136{bottom:2.322418px;}
.yc3{bottom:3.793671px;}
.ybf{bottom:3.795135px;}
.ye4{bottom:3.795319px;}
.y110{bottom:3.795456px;}
.ybd{bottom:3.870438px;}
.y106{bottom:3.943954px;}
.yf3{bottom:3.944000px;}
.yb9{bottom:3.945282px;}
.ycc{bottom:3.945465px;}
.yf5{bottom:5.893799px;}
.yec{bottom:5.895355px;}
.y100{bottom:5.895448px;}
.yd4{bottom:5.956970px;}
.yd1{bottom:5.970428px;}
.y128{bottom:10.483795px;}
.y12d{bottom:10.486816px;}
.y164{bottom:11.293854px;}
.y15f{bottom:11.325256px;}
.y161{bottom:11.328003px;}
.y134{bottom:17.505295px;}
.y12a{bottom:19.178101px;}
.y137{bottom:19.210922px;}
.y130{bottom:19.215454px;}
.y166{bottom:19.988159px;}
.y132{bottom:30.352936px;}
.y1{bottom:68.829002px;}
.y173{bottom:113.149796px;}
.yab{bottom:113.269798px;}
.y64{bottom:113.415298px;}
.y8c{bottom:113.575805px;}
.ya3{bottom:113.869800px;}
.y6d{bottom:114.055805px;}
.y2d{bottom:114.211349px;}
.y34{bottom:118.032303px;}
.y125{bottom:119.925430px;}
.y1e4{bottom:125.524767px;}
.y1a7{bottom:127.533302px;}
.y8b{bottom:128.569805px;}
.y6c{bottom:129.049805px;}
.y15c{bottom:129.285260px;}
.y63{bottom:132.165298px;}
.y2c{bottom:132.961349px;}
.y33{bottom:135.485553px;}
.y124{bottom:138.675430px;}
.y1e3{bottom:140.518767px;}
.y15b{bottom:148.035260px;}
.y62{bottom:150.915298px;}
.y2b{bottom:151.711349px;}
.y1e2{bottom:155.512767px;}
.y32{bottom:155.579556px;}
.y123{bottom:157.425430px;}
.y1a6{bottom:157.533302px;}
.y15a{bottom:166.785260px;}
.y61{bottom:169.665298px;}
.y2a{bottom:170.461349px;}
.y1e1{bottom:170.506767px;}
.y31{bottom:173.032794px;}
.y122{bottom:176.175430px;}
.y1e0{bottom:185.500767px;}
.y159{bottom:185.535260px;}
.y60{bottom:188.415298px;}
.y29{bottom:189.211349px;}
.y1a5{bottom:191.431779px;}
.y30{bottom:193.126808px;}
.y121{bottom:194.925430px;}
.y1df{bottom:200.494767px;}
.y158{bottom:204.285260px;}
.y1a4{bottom:206.425779px;}
.y5f{bottom:207.165298px;}
.y28{bottom:207.961349px;}
.ydb{bottom:212.485791px;}
.y120{bottom:213.675430px;}
.y1de{bottom:215.488767px;}
.y2f{bottom:218.127300px;}
.y1a3{bottom:221.419779px;}
.y157{bottom:223.035260px;}
.y27{bottom:226.711349px;}
.yda{bottom:227.479791px;}
.y1dd{bottom:230.482767px;}
.y11f{bottom:232.425430px;}
.y2e{bottom:233.121300px;}
.y21e{bottom:236.566823px;}
.y257{bottom:236.809050px;}
.y156{bottom:241.785260px;}
.yd9{bottom:242.473791px;}
.y5e{bottom:244.665298px;}
.y26{bottom:245.461349px;}
.y1dc{bottom:245.476767px;}
.y11e{bottom:251.175430px;}
.y1a2{bottom:251.420529px;}
.y21d{bottom:251.560823px;}
.y256{bottom:251.803050px;}
.yd8{bottom:257.467791px;}
.y1db{bottom:260.470767px;}
.y155{bottom:260.535260px;}
.y25{bottom:264.211349px;}
.y1a1{bottom:266.414529px;}
.y21c{bottom:266.554823px;}
.y11d{bottom:269.925430px;}
.yd7{bottom:272.461791px;}
.y1da{bottom:275.464767px;}
.y154{bottom:279.285260px;}
.y1a0{bottom:281.408529px;}
.y21b{bottom:281.548823px;}
.y255{bottom:281.893049px;}
.y5d{bottom:282.165298px;}
.y23{bottom:282.961349px;}
.yd6{bottom:287.455791px;}
.y11c{bottom:288.675430px;}
.y1d9{bottom:290.458767px;}
.y19f{bottom:296.402529px;}
.y21a{bottom:296.542823px;}
.y254{bottom:296.887049px;}
.y153{bottom:298.035260px;}
.y5c{bottom:300.915298px;}
.y22{bottom:301.711349px;}
.yd5{bottom:302.449791px;}
.y1d8{bottom:305.452767px;}
.y11b{bottom:307.425430px;}
.y19e{bottom:311.396529px;}
.y219{bottom:311.536823px;}
.y253{bottom:311.881049px;}
.y152{bottom:316.785260px;}
.y5b{bottom:319.665298px;}
.y1d7{bottom:320.446767px;}
.y21{bottom:320.461349px;}
.y11a{bottom:326.175430px;}
.y19d{bottom:326.390529px;}
.y218{bottom:326.530823px;}
.y252{bottom:326.875049px;}
.y1d6{bottom:335.440767px;}
.y151{bottom:335.535260px;}
.y5a{bottom:338.415298px;}
.y20{bottom:339.211349px;}
.y19c{bottom:341.384529px;}
.y217{bottom:341.524823px;}
.y251{bottom:341.869049px;}
.y119{bottom:344.925430px;}
.y1d5{bottom:350.434767px;}
.y150{bottom:354.285260px;}
.y19b{bottom:356.378529px;}
.y216{bottom:356.518823px;}
.y250{bottom:356.863049px;}
.y59{bottom:357.165298px;}
.yde{bottom:357.373038px;}
.y1f{bottom:357.961349px;}
.y118{bottom:363.675430px;}
.y1d4{bottom:365.428767px;}
.y19a{bottom:371.372529px;}
.y215{bottom:371.512823px;}
.y24f{bottom:371.857049px;}
.ydd{bottom:372.367038px;}
.y14f{bottom:373.035260px;}
.y58{bottom:375.915298px;}
.y1e{bottom:376.711349px;}
.y1d3{bottom:380.422767px;}
.ybc{bottom:381.884995px;}
.y117{bottom:382.425430px;}
.ybb{bottom:383.310306px;}
.y199{bottom:386.366529px;}
.y214{bottom:386.506823px;}
.y24e{bottom:386.851049px;}
.ydc{bottom:387.361038px;}
.y14e{bottom:391.785260px;}
.y57{bottom:394.665298px;}
.y1d2{bottom:395.416767px;}
.y1d{bottom:395.461349px;}
.y116{bottom:401.175430px;}
.y198{bottom:401.360529px;}
.y213{bottom:401.500823px;}
.y24d{bottom:401.845049px;}
.y1d1{bottom:410.410767px;}
.y14d{bottom:410.535260px;}
.y56{bottom:413.415298px;}
.y1c{bottom:414.211349px;}
.yba{bottom:414.735306px;}
.y197{bottom:416.354529px;}
.y212{bottom:416.494823px;}
.y24c{bottom:416.839049px;}
.y115{bottom:419.925430px;}
.y1d0{bottom:425.404767px;}
.y14c{bottom:429.285260px;}
.yb8{bottom:429.542999px;}
.y196{bottom:431.348529px;}
.y211{bottom:431.488823px;}
.y24b{bottom:431.833049px;}
.y6b{bottom:432.165298px;}
.y1b{bottom:432.961349px;}
.yb7{bottom:433.485306px;}
.y114{bottom:438.675430px;}
.y1cf{bottom:440.398767px;}
.y195{bottom:446.342529px;}
.y210{bottom:446.482823px;}
.y24a{bottom:446.827049px;}
.y14b{bottom:448.035260px;}
.y55{bottom:450.915298px;}
.y1a{bottom:451.711349px;}
.yb6{bottom:452.235306px;}
.y1ce{bottom:455.392767px;}
.y113{bottom:457.425430px;}
.y194{bottom:461.336529px;}
.y20f{bottom:461.476823px;}
.y249{bottom:461.821049px;}
.y14a{bottom:466.785260px;}
.y6a{bottom:469.665298px;}
.y1cd{bottom:470.386767px;}
.y24{bottom:470.461349px;}
.yb5{bottom:470.985306px;}
.y112{bottom:476.175430px;}
.y193{bottom:476.330529px;}
.y20e{bottom:476.470823px;}
.y248{bottom:476.815049px;}
.y1cc{bottom:485.380767px;}
.y149{bottom:485.535260px;}
.y54{bottom:488.415298px;}
.y19{bottom:489.211349px;}
.yb4{bottom:489.735306px;}
.y20d{bottom:491.464823px;}
.y247{bottom:491.809049px;}
.y111{bottom:494.925430px;}
.y1cb{bottom:500.374767px;}
.y148{bottom:504.285260px;}
.y192{bottom:506.331279px;}
.y20c{bottom:506.458823px;}
.y246{bottom:506.803049px;}
.y69{bottom:507.165298px;}
.yb3{bottom:508.485306px;}
.y10f{bottom:509.867981px;}
.y10e{bottom:513.675430px;}
.y1ca{bottom:515.368767px;}
.y191{bottom:521.325279px;}
.y20b{bottom:521.452823px;}
.y245{bottom:521.797049px;}
.y147{bottom:523.035260px;}
.y68{bottom:525.915298px;}
.yb2{bottom:527.235306px;}
.y1c9{bottom:530.362767px;}
.y10d{bottom:532.425430px;}
.y190{bottom:536.319279px;}
.y20a{bottom:536.446823px;}
.y244{bottom:536.791049px;}
.y146{bottom:541.785260px;}
.y53{bottom:544.665298px;}
.y1c8{bottom:545.356767px;}
.y18{bottom:545.461349px;}
.yb1{bottom:545.985306px;}
.y10c{bottom:551.175430px;}
.y96{bottom:551.311798px;}
.y18f{bottom:551.313279px;}
.y209{bottom:551.440823px;}
.y243{bottom:551.785049px;}
.y1c7{bottom:560.350767px;}
.y145{bottom:560.535260px;}
.y52{bottom:563.415298px;}
.y17{bottom:564.211349px;}
.yaa{bottom:564.735306px;}
.y18e{bottom:566.307279px;}
.y208{bottom:566.434823px;}
.y242{bottom:566.779049px;}
.y10b{bottom:569.925430px;}
.y95{bottom:570.061798px;}
.ya0{bottom:571.246798px;}
.y1c6{bottom:575.344767px;}
.y144{bottom:579.285260px;}
.y18d{bottom:581.301279px;}
.y207{bottom:581.428823px;}
.y241{bottom:581.773049px;}
.y51{bottom:582.165298px;}
.ya9{bottom:583.485306px;}
.y10a{bottom:588.675430px;}
.y94{bottom:588.811798px;}
.y9f{bottom:589.996798px;}
.y1c5{bottom:590.338767px;}
.y8a{bottom:595.983173px;}
.y18c{bottom:596.295279px;}
.y206{bottom:596.422823px;}
.y240{bottom:596.767049px;}
.y143{bottom:598.035260px;}
.y50{bottom:600.915298px;}
.y16{bottom:601.711349px;}
.ya8{bottom:602.235306px;}
.y170{bottom:602.374786px;}
.y1c4{bottom:605.332767px;}
.y109{bottom:607.425430px;}
.y93{bottom:607.561798px;}
.y9e{bottom:608.746798px;}
.y89{bottom:610.977173px;}
.y18b{bottom:611.289279px;}
.y205{bottom:611.416823px;}
.y23f{bottom:611.761049px;}
.y142{bottom:616.785260px;}
.y4f{bottom:619.665298px;}
.yad{bottom:620.116931px;}
.y1c3{bottom:620.326767px;}
.y15{bottom:620.461349px;}
.y88{bottom:620.985260px;}
.ya7{bottom:620.985306px;}
.y16f{bottom:621.124786px;}
.y108{bottom:626.175430px;}
.y18a{bottom:626.283279px;}
.y92{bottom:626.311798px;}
.y204{bottom:626.410823px;}
.y23e{bottom:626.755049px;}
.y9d{bottom:627.496798px;}
.yac{bottom:635.110931px;}
.y1c2{bottom:635.320767px;}
.y141{bottom:635.535260px;}
.y4e{bottom:638.415298px;}
.y14{bottom:639.211349px;}
.y87{bottom:639.735260px;}
.ya6{bottom:639.735306px;}
.y16e{bottom:639.874786px;}
.y105{bottom:640.984497px;}
.y203{bottom:641.404823px;}
.y23d{bottom:641.749049px;}
.y107{bottom:644.925430px;}
.y91{bottom:645.061798px;}
.y9c{bottom:646.246798px;}
.y1c1{bottom:650.314767px;}
.y140{bottom:654.285260px;}
.y202{bottom:656.398823px;}
.y23c{bottom:656.743049px;}
.y4d{bottom:657.165298px;}
.y13{bottom:657.961395px;}
.y86{bottom:658.485260px;}
.ya5{bottom:658.485306px;}
.y16d{bottom:658.624786px;}
.y104{bottom:663.675430px;}
.y90{bottom:663.811798px;}
.y9b{bottom:664.996798px;}
.y1c0{bottom:665.308767px;}
.y201{bottom:671.392823px;}
.y23b{bottom:671.737049px;}
.y13f{bottom:673.035260px;}
.y189{bottom:675.033325px;}
.y4c{bottom:675.915298px;}
.y67{bottom:675.915344px;}
.y12{bottom:676.711395px;}
.y85{bottom:677.235260px;}
.yb0{bottom:677.235306px;}
.y16c{bottom:677.374786px;}
.y1bf{bottom:680.302767px;}
.y103{bottom:682.425430px;}
.y8f{bottom:682.561798px;}
.y9a{bottom:683.746798px;}
.y200{bottom:686.386823px;}
.y23a{bottom:686.731049px;}
.y13e{bottom:691.785260px;}
.y188{bottom:693.783325px;}
.y4b{bottom:694.665344px;}
.yff{bottom:695.289000px;}
.y1be{bottom:695.296767px;}
.y11{bottom:695.461395px;}
.y84{bottom:695.985260px;}
.ya4{bottom:695.985306px;}
.y16b{bottom:696.124786px;}
.y102{bottom:697.232986px;}
.y101{bottom:701.175430px;}
.y8e{bottom:701.311798px;}
.y1ff{bottom:701.380823px;}
.y239{bottom:701.725049px;}
.y99{bottom:702.496798px;}
.y1bd{bottom:710.290767px;}
.y13d{bottom:710.535260px;}
.y187{bottom:712.533325px;}
.y4a{bottom:713.415344px;}
.y10{bottom:714.211395px;}
.y83{bottom:714.735260px;}
.yaf{bottom:714.735306px;}
.y16a{bottom:714.874786px;}
.yfd{bottom:715.982986px;}
.y1fe{bottom:716.374823px;}
.y238{bottom:716.719049px;}
.yfc{bottom:719.925277px;}
.yfe{bottom:719.925430px;}
.y98{bottom:721.246798px;}
.y1bc{bottom:725.284767px;}
.y13c{bottom:729.285260px;}
.y186{bottom:731.283325px;}
.y1fd{bottom:731.368823px;}
.y237{bottom:731.713049px;}
.y49{bottom:732.165344px;}
.yf{bottom:732.961395px;}
.y82{bottom:733.485260px;}
.yae{bottom:733.485306px;}
.y8d{bottom:738.811798px;}
.y97{bottom:739.996798px;}
.y1bb{bottom:740.278767px;}
.y1fc{bottom:746.362823px;}
.y236{bottom:746.707049px;}
.y13b{bottom:748.035260px;}
.y12f{bottom:748.050018px;}
.y185{bottom:750.033325px;}
.y48{bottom:750.915344px;}
.ye{bottom:751.711395px;}
.y81{bottom:752.235260px;}
.y135{bottom:754.125320px;}
.y1ba{bottom:755.272767px;}
.y172{bottom:759.976825px;}
.y1fb{bottom:761.356823px;}
.y235{bottom:761.701049px;}
.y12e{bottom:762.525467px;}
.y131{bottom:767.265472px;}
.y184{bottom:768.783325px;}
.y47{bottom:769.665344px;}
.y1b9{bottom:770.266767px;}
.yd{bottom:770.461395px;}
.y80{bottom:770.985260px;}
.y133{bottom:774.649933px;}
.y171{bottom:774.970825px;}
.y163{bottom:776.161468px;}
.y1fa{bottom:776.350823px;}
.y234{bottom:776.695049px;}
.yce{bottom:780.660461px;}
.y1b8{bottom:785.260767px;}
.ya2{bottom:785.614795px;}
.y162{bottom:785.685425px;}
.y165{bottom:787.455322px;}
.y183{bottom:787.533325px;}
.y46{bottom:788.415344px;}
.yc{bottom:789.211395px;}
.y7f{bottom:789.735260px;}
.y1f9{bottom:791.344823px;}
.y233{bottom:791.689049px;}
.ycb{bottom:795.468018px;}
.yca{bottom:799.410260px;}
.ycd{bottom:799.410461px;}
.y1b7{bottom:800.254767px;}
.ya1{bottom:800.608795px;}
.yfb{bottom:801.113983px;}
.y168{bottom:804.090179px;}
.y182{bottom:806.283325px;}
.y1f8{bottom:806.338823px;}
.y232{bottom:806.683049px;}
.yfa{bottom:807.000275px;}
.y45{bottom:807.165344px;}
.y7e{bottom:808.485260px;}
.y1b6{bottom:815.248767px;}
.yc9{bottom:818.160260px;}
.y1f7{bottom:821.332823px;}
.y231{bottom:821.677049px;}
.y181{bottom:825.033325px;}
.y13a{bottom:825.210260px;}
.yf9{bottom:825.750275px;}
.y44{bottom:825.915344px;}
.y7d{bottom:827.235260px;}
.y1b5{bottom:830.242767px;}
.yb{bottom:833.394153px;}
.y1f6{bottom:836.326823px;}
.y230{bottom:836.671049px;}
.y180{bottom:843.783325px;}
.yf8{bottom:844.500275px;}
.y43{bottom:844.665344px;}
.y78{bottom:845.985260px;}
.yd0{bottom:846.285004px;}
.ya{bottom:848.388153px;}
.ycf{bottom:849.885458px;}
.y1f5{bottom:851.320823px;}
.y22f{bottom:851.665049px;}
.yd2{bottom:852.255432px;}
.y15e{bottom:853.335022px;}
.yf7{bottom:859.442963px;}
.y17f{bottom:862.533325px;}
.y15d{bottom:862.785283px;}
.yf6{bottom:863.250275px;}
.y42{bottom:863.415344px;}
.y1b4{bottom:863.992767px;}
.y77{bottom:864.735260px;}
.y1f4{bottom:866.314823px;}
.y22e{bottom:866.659049px;}
.yf4{bottom:876.115540px;}
.yf2{bottom:878.059479px;}
.yc8{bottom:879.679504px;}
.y17e{bottom:881.283325px;}
.y1f3{bottom:881.308823px;}
.y22d{bottom:881.653049px;}
.yf0{bottom:881.957977px;}
.yef{bottom:882.000275px;}
.y41{bottom:882.165344px;}
.y76{bottom:883.485260px;}
.y9{bottom:890.988190px;}
.y1f2{bottom:896.302823px;}
.y22c{bottom:896.647049px;}
.y17d{bottom:900.033325px;}
.yee{bottom:900.750275px;}
.y40{bottom:900.915344px;}
.y138{bottom:902.046021px;}
.y7c{bottom:902.235260px;}
.y8{bottom:909.738190px;}
.y1f1{bottom:911.296823px;}
.y22b{bottom:911.641049px;}
.yc7{bottom:917.042999px;}
.y17c{bottom:918.783325px;}
.yed{bottom:919.500275px;}
.y3f{bottom:919.665344px;}
.y75{bottom:920.985260px;}
.y1b3{bottom:926.142284px;}
.y1f0{bottom:926.290823px;}
.y22a{bottom:926.635049px;}
.yeb{bottom:932.363983px;}
.y17b{bottom:937.533325px;}
.ye8{bottom:938.206512px;}
.yea{bottom:938.250275px;}
.ye7{bottom:938.250330px;}
.y3e{bottom:938.415344px;}
.y7b{bottom:939.735260px;}
.y1b2{bottom:941.136284px;}
.y1ef{bottom:941.284823px;}
.y229{bottom:941.629049px;}
.y7{bottom:954.424622px;}
.y1b1{bottom:956.130284px;}
.y1ee{bottom:956.278823px;}
.y17a{bottom:956.283325px;}
.y228{bottom:956.623049px;}
.y3d{bottom:957.165344px;}
.y74{bottom:958.485260px;}
.y127{bottom:966.376465px;}
.y1b0{bottom:971.124284px;}
.y1ed{bottom:971.272823px;}
.y227{bottom:971.617049px;}
.y179{bottom:975.033325px;}
.y126{bottom:975.450428px;}
.y3c{bottom:975.915344px;}
.y129{bottom:976.860260px;}
.y12c{bottom:976.863281px;}
.y7a{bottom:977.235260px;}
.y6{bottom:981.424622px;}
.y1af{bottom:986.118284px;}
.y1ec{bottom:986.266823px;}
.y226{bottom:986.611049px;}
.yc6{bottom:992.042999px;}
.y178{bottom:993.783325px;}
.y3b{bottom:994.665344px;}
.y79{bottom:995.985260px;}
.y1ae{bottom:1001.112284px;}
.y1eb{bottom:1001.260823px;}
.y225{bottom:1001.605049px;}
.y5{bottom:1008.424622px;}
.ye6{bottom:1010.718018px;}
.yc5{bottom:1010.792999px;}
.y177{bottom:1012.533325px;}
.y3a{bottom:1013.415344px;}
.ye5{bottom:1014.525330px;}
.y73{bottom:1014.735260px;}
.y1ad{bottom:1016.106284px;}
.y1ea{bottom:1016.254823px;}
.y224{bottom:1016.599049px;}
.ye3{bottom:1029.468018px;}
.yc4{bottom:1029.542999px;}
.y1ac{bottom:1031.100284px;}
.y1e9{bottom:1031.248823px;}
.y176{bottom:1031.283325px;}
.y223{bottom:1031.593049px;}
.y39{bottom:1032.165344px;}
.ye2{bottom:1033.275330px;}
.y72{bottom:1033.485260px;}
.y1ab{bottom:1046.094284px;}
.y1e8{bottom:1046.242823px;}
.y222{bottom:1046.587049px;}
.yc2{bottom:1048.429504px;}
.y175{bottom:1050.033325px;}
.y38{bottom:1050.915344px;}
.ye1{bottom:1052.025330px;}
.y71{bottom:1052.235260px;}
.y1aa{bottom:1061.088284px;}
.y1e7{bottom:1061.236823px;}
.y221{bottom:1061.581049px;}
.yc1{bottom:1067.042999px;}
.yc0{bottom:1067.178040px;}
.y66{bottom:1069.665298px;}
.y37{bottom:1069.665344px;}
.ye0{bottom:1070.775330px;}
.y70{bottom:1070.985260px;}
.y1a9{bottom:1076.082284px;}
.y4{bottom:1076.132080px;}
.y1e6{bottom:1076.230823px;}
.y220{bottom:1076.575049px;}
.ybe{bottom:1085.928040px;}
.y174{bottom:1087.533325px;}
.y65{bottom:1088.415298px;}
.y36{bottom:1088.415344px;}
.ydf{bottom:1089.525330px;}
.y6f{bottom:1089.735260px;}
.y1a8{bottom:1091.076284px;}
.y1e5{bottom:1091.224823px;}
.y21f{bottom:1091.569049px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y35{bottom:1127.482361px;}
.y6e{bottom:1127.482544px;}
.h2a{height:3.960990px;}
.h2b{height:6.121530px;}
.h22{height:6.750000px;}
.h2c{height:9.601500px;}
.h15{height:10.200000px;}
.h11{height:10.350000px;}
.h1a{height:10.650000px;}
.h23{height:12.300000px;}
.h25{height:13.800000px;}
.h27{height:13.801500px;}
.h18{height:13.950000px;}
.h16{height:13.951499px;}
.h13{height:14.099999px;}
.h19{height:14.101500px;}
.h24{height:16.200000px;}
.h1c{height:18.450000px;}
.h12{height:25.686419px;}
.h1b{height:26.466614px;}
.h33{height:28.062814px;}
.h1d{height:28.692967px;}
.h28{height:29.398500px;}
.h2e{height:30.151500px;}
.h31{height:30.300000px;}
.hc{height:32.986799px;}
.h2{height:33.840000px;}
.h2d{height:37.329328px;}
.h26{height:39.969988px;}
.h29{height:40.199999px;}
.h17{height:40.450108px;}
.h20{height:40.570138px;}
.h14{height:40.690168px;}
.h1e{height:40.990243px;}
.h1f{height:41.410348px;}
.h3{height:44.676000px;}
.hb{height:47.124000px;}
.h8{height:55.440000px;}
.h10{height:55.440183px;}
.h4{height:55.461000px;}
.he{height:59.004000px;}
.h7{height:59.340000px;}
.h9{height:62.807817px;}
.hd{height:62.808000px;}
.hf{height:62.808183px;}
.h6{height:64.866000px;}
.h32{height:70.517622px;}
.ha{height:71.208000px;}
.h2f{height:74.898717px;}
.h5{height:85.056000px;}
.h21{height:87.381836px;}
.h30{height:112.528120px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w1c{width:6.285000px;}
.w10{width:7.485000px;}
.w12{width:7.486500px;}
.w13{width:10.860000px;}
.w11{width:11.926500px;}
.w15{width:12.224999px;}
.w2{width:14.683499px;}
.w4{width:14.849999px;}
.w19{width:14.851500px;}
.wd{width:19.081500px;}
.w16{width:23.655000px;}
.w17{width:23.656500px;}
.w5{width:25.515000px;}
.wf{width:26.250000px;}
.wb{width:28.740000px;}
.wc{width:29.490000px;}
.wa{width:30.074999px;}
.w8{width:30.495000px;}
.w14{width:31.230000px;}
.w9{width:31.920000px;}
.w18{width:32.670000px;}
.w6{width:33.165000px;}
.w7{width:40.110000px;}
.w1d{width:75.735003px;}
.w1b{width:86.219999px;}
.w1e{width:88.591500px;}
.w1a{width:96.584999px;}
.we{width:117.855000px;}
.w3{width:286.379997px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:2.213242px;}
.x4b{left:3.237579px;}
.x23{left:18.921936px;}
.x50{left:36.524094px;}
.x4d{left:40.345230px;}
.x43{left:52.404757px;}
.x47{left:54.059401px;}
.x45{left:55.395899px;}
.x25{left:65.429581px;}
.x4e{left:72.799072px;}
.x49{left:75.497858px;}
.x2{left:76.535402px;}
.x27{left:78.578568px;}
.x4a{left:83.287348px;}
.x3{left:85.181849px;}
.x42{left:86.645250px;}
.x3d{left:88.928249px;}
.x7{left:93.540451px;}
.x6{left:97.796100px;}
.x53{left:102.048152px;}
.x29{left:104.835892px;}
.x3b{left:107.874000px;}
.x40{left:109.280399px;}
.x39{left:115.122002px;}
.x2e{left:118.287003px;}
.x2f{left:125.940605px;}
.x3c{left:131.613899px;}
.x44{left:138.228596px;}
.x46{left:141.935554px;}
.x48{left:144.527400px;}
.x3a{left:146.427600px;}
.x3e{left:186.343494px;}
.x9{left:198.602989px;}
.x32{left:204.307503px;}
.x2a{left:208.511993px;}
.x3f{left:210.166350px;}
.x33{left:211.843941px;}
.xa{left:213.350395px;}
.x2c{left:224.775009px;}
.x2b{left:234.821548px;}
.x41{left:240.031494px;}
.x34{left:241.048508px;}
.x36{left:251.958458px;}
.x2d{left:255.427345px;}
.x37{left:328.051506px;}
.x38{left:340.027359px;}
.x30{left:383.890503px;}
.x31{left:395.983932px;}
.xb{left:416.210394px;}
.x4{left:459.215403px;}
.x22{left:469.318039px;}
.x4f{left:470.666840px;}
.x5{left:476.210403px;}
.x52{left:484.725290px;}
.x24{left:490.634399px;}
.xc{left:502.650009px;}
.xd{left:517.829544px;}
.x4c{left:524.687119px;}
.x26{left:529.446899px;}
.x51{left:534.021881px;}
.x16{left:546.175507px;}
.x28{left:556.514557px;}
.x10{left:569.146500px;}
.x17{left:578.341782px;}
.x1e{left:585.134995px;}
.x11{left:602.658005px;}
.x1f{left:610.934692px;}
.x14{left:625.298996px;}
.x18{left:630.910492px;}
.x15{left:656.017960px;}
.x19{left:661.060500px;}
.x1a{left:684.727478px;}
.xe{left:691.757996px;}
.x1b{left:713.527222px;}
.xf{left:717.603287px;}
.x1c{left:722.821518px;}
.x1{left:728.220612px;}
.x20{left:741.459000px;}
.x1d{left:752.386047px;}
.x12{left:760.306503px;}
.x8{left:792.153442px;}
.x21{left:798.890266px;}
.x13{left:800.762970px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-13.333333pt;}
.v9{vertical-align:-2.400391pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v7{vertical-align:30.941065pt;}
.v5{vertical-align:40.863545pt;}
.v6{vertical-align:59.161451pt;}
.v8{vertical-align:96.504116pt;}
.ls80{letter-spacing:-18.137866pt;}
.ls84{letter-spacing:-12.733758pt;}
.ls5f{letter-spacing:-1.547053pt;}
.ls1c{letter-spacing:-1.386667pt;}
.ls2e{letter-spacing:-1.333333pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls43{letter-spacing:-1.173333pt;}
.ls42{letter-spacing:-1.066667pt;}
.ls34{letter-spacing:-1.013333pt;}
.ls5e{letter-spacing:-1.008000pt;}
.ls35{letter-spacing:-0.906667pt;}
.lsb0{letter-spacing:-0.861333pt;}
.ls37{letter-spacing:-0.853333pt;}
.lsaf{letter-spacing:-0.816000pt;}
.ls2d{letter-spacing:-0.800000pt;}
.lsb1{letter-spacing:-0.770667pt;}
.ls36{letter-spacing:-0.746667pt;}
.ls2f{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.640000pt;}
.lsae{letter-spacing:-0.589333pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls5b{letter-spacing:-0.560136pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls48{letter-spacing:-0.544000pt;}
.ls38{letter-spacing:-0.533333pt;}
.lsb9{letter-spacing:-0.498667pt;}
.ls44{letter-spacing:-0.480000pt;}
.lsb2{letter-spacing:-0.453333pt;}
.ls2c{letter-spacing:-0.426667pt;}
.lsb8{letter-spacing:-0.408000pt;}
.ls5a{letter-spacing:-0.373333pt;}
.lsba{letter-spacing:-0.362667pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsa9{letter-spacing:-0.317333pt;}
.lsbb{letter-spacing:-0.272000pt;}
.ls2b{letter-spacing:-0.266667pt;}
.lsb7{letter-spacing:-0.226667pt;}
.ls29{letter-spacing:-0.213333pt;}
.lsaa{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsab{letter-spacing:-0.136000pt;}
.ls33{letter-spacing:-0.106667pt;}
.lsac{letter-spacing:-0.090667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.lsad{letter-spacing:-0.045333pt;}
.ls1b{letter-spacing:-0.037333pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls64{letter-spacing:0.000601pt;}
.ls59{letter-spacing:0.003501pt;}
.ls4b{letter-spacing:0.008846pt;}
.ls61{letter-spacing:0.008847pt;}
.ls4c{letter-spacing:0.009376pt;}
.ls54{letter-spacing:0.009417pt;}
.ls66{letter-spacing:0.014143pt;}
.ls65{letter-spacing:0.014656pt;}
.lsb5{letter-spacing:0.022667pt;}
.ls5d{letter-spacing:0.037342pt;}
.ls9e{letter-spacing:0.045333pt;}
.ls4{letter-spacing:0.053333pt;}
.lsb3{letter-spacing:0.068000pt;}
.ls23{letter-spacing:0.080000pt;}
.lsa1{letter-spacing:0.090667pt;}
.ls11{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.158926pt;}
.ls9{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.175982pt;}
.lsb4{letter-spacing:0.181333pt;}
.ls63{letter-spacing:0.186126pt;}
.ls2a{letter-spacing:0.186667pt;}
.ls76{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls62{letter-spacing:0.216055pt;}
.ls17{letter-spacing:0.226667pt;}
.ls9d{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.240000pt;}
.lsa2{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266657pt;}
.ls3{letter-spacing:0.266667pt;}
.ls8e{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.293310pt;}
.ls9f{letter-spacing:0.317333pt;}
.ls3e{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.325296pt;}
.ls15{letter-spacing:0.341296pt;}
.ls8d{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.373333pt;}
.lsa0{letter-spacing:0.408000pt;}
.ls67{letter-spacing:0.410667pt;}
.ls4a{letter-spacing:0.413859pt;}
.ls25{letter-spacing:0.426667pt;}
.ls9c{letter-spacing:0.453333pt;}
.ls26{letter-spacing:0.462895pt;}
.ls90{letter-spacing:0.476000pt;}
.ls20{letter-spacing:0.476280pt;}
.ls13{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.485333pt;}
.lsa4{letter-spacing:0.498667pt;}
.ls75{letter-spacing:0.522667pt;}
.lsb{letter-spacing:0.533333pt;}
.lsa5{letter-spacing:0.544000pt;}
.ls79{letter-spacing:0.549333pt;}
.ls60{letter-spacing:0.560000pt;}
.ls3d{letter-spacing:0.586667pt;}
.lsa6{letter-spacing:0.589333pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.624000pt;}
.ls39{letter-spacing:0.634667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.666667pt;}
.ls8f{letter-spacing:0.680000pt;}
.lsf{letter-spacing:0.693333pt;}
.ls77{letter-spacing:0.720000pt;}
.lsa3{letter-spacing:0.725333pt;}
.ls7a{letter-spacing:0.741311pt;}
.ls8{letter-spacing:0.746667pt;}
.ls8c{letter-spacing:0.770667pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls78{letter-spacing:0.816000pt;}
.ls49{letter-spacing:0.826667pt;}
.ls22{letter-spacing:0.842667pt;}
.ls5{letter-spacing:0.853333pt;}
.ls9b{letter-spacing:0.861333pt;}
.ls6c{letter-spacing:0.880000pt;}
.ls71{letter-spacing:0.906660pt;}
.ls1e{letter-spacing:0.906667pt;}
.lsb6{letter-spacing:0.952000pt;}
.ls57{letter-spacing:0.954667pt;}
.ls70{letter-spacing:0.960000pt;}
.ls94{letter-spacing:0.997333pt;}
.ls3a{letter-spacing:1.013333pt;}
.ls58{letter-spacing:1.050667pt;}
.ls24{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.071985pt;}
.lsa7{letter-spacing:1.088000pt;}
.ls46{letter-spacing:1.120000pt;}
.ls98{letter-spacing:1.133333pt;}
.ls14{letter-spacing:1.173333pt;}
.ls93{letter-spacing:1.178667pt;}
.ls96{letter-spacing:1.224000pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls6a{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.333333pt;}
.ls28{letter-spacing:1.360000pt;}
.ls3f{letter-spacing:1.386667pt;}
.ls85{letter-spacing:1.413333pt;}
.ls89{letter-spacing:1.440000pt;}
.ls92{letter-spacing:1.450667pt;}
.ls40{letter-spacing:1.493333pt;}
.ls91{letter-spacing:1.541333pt;}
.ls3c{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.626667pt;}
.ls45{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.706667pt;}
.ls95{letter-spacing:1.722667pt;}
.ls69{letter-spacing:1.760000pt;}
.ls97{letter-spacing:1.768000pt;}
.ls8a{letter-spacing:1.813333pt;}
.ls86{letter-spacing:1.866667pt;}
.lsa8{letter-spacing:1.904000pt;}
.ls87{letter-spacing:1.920000pt;}
.ls72{letter-spacing:1.973333pt;}
.ls81{letter-spacing:2.026667pt;}
.ls83{letter-spacing:2.080520pt;}
.ls9a{letter-spacing:2.085333pt;}
.ls73{letter-spacing:2.186667pt;}
.ls8b{letter-spacing:2.213333pt;}
.ls27{letter-spacing:2.400000pt;}
.ls68{letter-spacing:2.628015pt;}
.ls56{letter-spacing:2.628053pt;}
.ls6d{letter-spacing:2.648841pt;}
.ls52{letter-spacing:2.653167pt;}
.ls6e{letter-spacing:2.667452pt;}
.ls99{letter-spacing:2.810667pt;}
.ls6f{letter-spacing:3.200800pt;}
.ls7f{letter-spacing:3.466667pt;}
.ls0{letter-spacing:3.546667pt;}
.ls7b{letter-spacing:6.348253pt;}
.ls51{letter-spacing:7.788613pt;}
.ls5c{letter-spacing:8.855546pt;}
.ls53{letter-spacing:8.908893pt;}
.ls7c{letter-spacing:9.041890pt;}
.ls50{letter-spacing:11.896306pt;}
.ls4f{letter-spacing:14.511850pt;}
.ls4e{letter-spacing:14.830373pt;}
.ls82{letter-spacing:14.883719pt;}
.ls7d{letter-spacing:16.964239pt;}
.ls4d{letter-spacing:18.244617pt;}
.ws80{word-spacing:-16.800000pt;}
.ws46{word-spacing:-15.733333pt;}
.ws7b{word-spacing:-14.937066pt;}
.ws7f{word-spacing:-14.186667pt;}
.ws28{word-spacing:-14.026667pt;}
.ws65{word-spacing:-13.920000pt;}
.ws64{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws9b{word-spacing:-13.184000pt;}
.ws3b{word-spacing:-12.928000pt;}
.ws5c{word-spacing:-12.586667pt;}
.ws66{word-spacing:-12.533333pt;}
.ws2a{word-spacing:-12.053333pt;}
.ws10{word-spacing:-11.946667pt;}
.ws9c{word-spacing:-11.560000pt;}
.ws9a{word-spacing:-11.424000pt;}
.ws73{word-spacing:-11.093333pt;}
.ws3c{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws99{word-spacing:-10.245333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws2c{word-spacing:-9.968000pt;}
.ws77{word-spacing:-9.930667pt;}
.ws78{word-spacing:-9.744000pt;}
.ws29{word-spacing:-9.520000pt;}
.ws5b{word-spacing:-9.333333pt;}
.ws5{word-spacing:-9.296000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws6d{word-spacing:-8.855546pt;}
.ws2b{word-spacing:-8.773333pt;}
.ws6a{word-spacing:-8.325333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws8c{word-spacing:-6.666667pt;}
.ws8f{word-spacing:-6.560000pt;}
.ws52{word-spacing:-6.506667pt;}
.ws92{word-spacing:-2.080520pt;}
.ws8e{word-spacing:-1.493333pt;}
.wsb{word-spacing:-1.333333pt;}
.ws40{word-spacing:-1.280000pt;}
.wsc8{word-spacing:-1.224000pt;}
.wscf{word-spacing:-1.178667pt;}
.ws42{word-spacing:-1.173333pt;}
.wsa1{word-spacing:-1.133333pt;}
.ws4d{word-spacing:-1.120000pt;}
.wsce{word-spacing:-1.088000pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws4e{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.952000pt;}
.ws31{word-spacing:-0.906667pt;}
.wsaf{word-spacing:-0.861333pt;}
.ws32{word-spacing:-0.853333pt;}
.wsc7{word-spacing:-0.770667pt;}
.ws2f{word-spacing:-0.746667pt;}
.wsd3{word-spacing:-0.725333pt;}
.ws20{word-spacing:-0.693333pt;}
.wsb2{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsb3{word-spacing:-0.634667pt;}
.ws25{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.wsf{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.wsbc{word-spacing:-0.498667pt;}
.ws21{word-spacing:-0.480000pt;}
.wsd4{word-spacing:-0.453333pt;}
.ws4f{word-spacing:-0.426667pt;}
.wsd5{word-spacing:-0.408000pt;}
.ws16{word-spacing:-0.373333pt;}
.ws57{word-spacing:-0.320000pt;}
.wsc6{word-spacing:-0.272000pt;}
.ws14{word-spacing:-0.266667pt;}
.wsae{word-spacing:-0.234667pt;}
.wsb9{word-spacing:-0.226667pt;}
.ws1e{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.160000pt;}
.ws39{word-spacing:-0.106667pt;}
.ws67{word-spacing:-0.053347pt;}
.ws23{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws69{word-spacing:-0.037342pt;}
.ws9{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.045333pt;}
.ws43{word-spacing:0.053333pt;}
.ws1b{word-spacing:0.106667pt;}
.ws96{word-spacing:0.160000pt;}
.wsdc{word-spacing:0.181333pt;}
.wse{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.266667pt;}
.ws54{word-spacing:0.272000pt;}
.wsb4{word-spacing:0.317333pt;}
.ws59{word-spacing:0.320000pt;}
.ws91{word-spacing:0.373333pt;}
.wsd{word-spacing:0.480000pt;}
.ws13{word-spacing:0.533333pt;}
.ws63{word-spacing:0.544000pt;}
.ws72{word-spacing:0.560136pt;}
.ws3f{word-spacing:0.586667pt;}
.wscb{word-spacing:0.634667pt;}
.ws24{word-spacing:0.640000pt;}
.wsbe{word-spacing:0.680000pt;}
.ws60{word-spacing:0.746667pt;}
.wsd6{word-spacing:0.770667pt;}
.ws95{word-spacing:0.800000pt;}
.wsb8{word-spacing:0.816000pt;}
.ws17{word-spacing:0.906667pt;}
.ws85{word-spacing:0.960000pt;}
.ws56{word-spacing:1.013333pt;}
.wsb0{word-spacing:1.042667pt;}
.ws35{word-spacing:1.066667pt;}
.ws9e{word-spacing:1.088000pt;}
.ws37{word-spacing:1.120000pt;}
.wsa0{word-spacing:1.133333pt;}
.ws38{word-spacing:1.173333pt;}
.ws98{word-spacing:1.178667pt;}
.ws1c{word-spacing:1.226667pt;}
.wsd0{word-spacing:1.269333pt;}
.ws41{word-spacing:1.280000pt;}
.wsc{word-spacing:1.333333pt;}
.ws9f{word-spacing:1.360000pt;}
.ws36{word-spacing:1.386667pt;}
.wsda{word-spacing:1.405333pt;}
.ws1d{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.450667pt;}
.ws45{word-spacing:1.493333pt;}
.wsc0{word-spacing:1.496000pt;}
.wsba{word-spacing:1.541333pt;}
.ws1f{word-spacing:1.546667pt;}
.ws74{word-spacing:1.547053pt;}
.wsb5{word-spacing:1.586667pt;}
.ws90{word-spacing:1.600000pt;}
.wsbf{word-spacing:1.632000pt;}
.ws55{word-spacing:1.653333pt;}
.ws2e{word-spacing:1.706667pt;}
.wsa8{word-spacing:1.722667pt;}
.ws18{word-spacing:1.813333pt;}
.ws47{word-spacing:1.866667pt;}
.ws82{word-spacing:1.920000pt;}
.wsb7{word-spacing:1.949333pt;}
.ws71{word-spacing:1.973333pt;}
.wsc4{word-spacing:1.994667pt;}
.ws34{word-spacing:2.026667pt;}
.wsa4{word-spacing:2.040000pt;}
.ws51{word-spacing:2.080000pt;}
.wsa6{word-spacing:2.130667pt;}
.ws30{word-spacing:2.133333pt;}
.ws89{word-spacing:2.186667pt;}
.ws9d{word-spacing:2.240000pt;}
.wsd9{word-spacing:2.266667pt;}
.ws6b{word-spacing:2.293333pt;}
.ws33{word-spacing:2.346667pt;}
.wsc5{word-spacing:2.357333pt;}
.ws15{word-spacing:2.400000pt;}
.ws62{word-spacing:2.448000pt;}
.ws2d{word-spacing:2.453333pt;}
.wsd8{word-spacing:2.493333pt;}
.ws61{word-spacing:2.506667pt;}
.wsc3{word-spacing:2.538667pt;}
.ws5f{word-spacing:2.560000pt;}
.wsc9{word-spacing:2.584000pt;}
.ws44{word-spacing:2.613333pt;}
.ws97{word-spacing:2.666667pt;}
.wsad{word-spacing:2.674667pt;}
.ws8a{word-spacing:2.720000pt;}
.wsdb{word-spacing:2.765333pt;}
.ws5d{word-spacing:2.826667pt;}
.ws6c{word-spacing:2.880000pt;}
.ws76{word-spacing:2.901333pt;}
.ws8b{word-spacing:2.933333pt;}
.ws83{word-spacing:2.986667pt;}
.ws5a{word-spacing:2.992000pt;}
.wscd{word-spacing:3.037333pt;}
.ws4a{word-spacing:3.146667pt;}
.wsdd{word-spacing:3.173333pt;}
.wsb6{word-spacing:3.264000pt;}
.ws3a{word-spacing:3.306667pt;}
.wsd2{word-spacing:3.309333pt;}
.wsa3{word-spacing:3.354667pt;}
.ws81{word-spacing:3.413333pt;}
.ws3e{word-spacing:3.466667pt;}
.ws94{word-spacing:3.680000pt;}
.ws48{word-spacing:3.733333pt;}
.ws6e{word-spacing:3.893333pt;}
.wsaa{word-spacing:3.944000pt;}
.ws22{word-spacing:4.000000pt;}
.ws4c{word-spacing:4.053333pt;}
.wsc2{word-spacing:4.125333pt;}
.ws6f{word-spacing:4.160000pt;}
.wsd7{word-spacing:4.170667pt;}
.ws87{word-spacing:4.213333pt;}
.wsab{word-spacing:4.216000pt;}
.wsbb{word-spacing:4.306667pt;}
.wsd1{word-spacing:4.352000pt;}
.ws8d{word-spacing:4.426667pt;}
.wscc{word-spacing:4.442667pt;}
.ws50{word-spacing:4.533333pt;}
.wsa5{word-spacing:4.714667pt;}
.ws84{word-spacing:4.746667pt;}
.wsa7{word-spacing:4.760000pt;}
.ws1a{word-spacing:4.800000pt;}
.ws4b{word-spacing:4.906667pt;}
.ws7c{word-spacing:4.961240pt;}
.wsca{word-spacing:5.032000pt;}
.ws88{word-spacing:5.173333pt;}
.ws70{word-spacing:5.386667pt;}
.wsa2{word-spacing:5.440000pt;}
.ws58{word-spacing:5.600000pt;}
.ws68{word-spacing:6.630849pt;}
.ws49{word-spacing:7.661333pt;}
.ws53{word-spacing:8.386667pt;}
.wsac{word-spacing:8.840000pt;}
.wsde{word-spacing:12.013333pt;}
.wsa9{word-spacing:12.421333pt;}
.ws93{word-spacing:12.733758pt;}
.ws7d{word-spacing:14.723679pt;}
.ws7e{word-spacing:14.777026pt;}
.wsdf{word-spacing:15.640000pt;}
.ws7a{word-spacing:17.433245pt;}
.ws86{word-spacing:18.137866pt;}
.ws75{word-spacing:18.360000pt;}
.ws12{word-spacing:19.072000pt;}
.ws79{word-spacing:21.462312pt;}
.ws26{word-spacing:64.237333pt;}
._12{margin-left:-2630.557284pt;}
._8{margin-left:-86.133333pt;}
._24{margin-left:-16.637333pt;}
._18{margin-left:-15.680011pt;}
._5{margin-left:-14.733333pt;}
._22{margin-left:-13.645333pt;}
._17{margin-left:-12.426667pt;}
._3{margin-left:-11.532826pt;}
._15{margin-left:-10.453333pt;}
._21{margin-left:-9.338667pt;}
._c{margin-left:-7.776000pt;}
._b{margin-left:-6.212769pt;}
._a{margin-left:-4.586667pt;}
._1{margin-left:-2.996533pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.100800pt;}
._4{width:2.794667pt;}
._1b{width:3.948533pt;}
._19{width:4.885333pt;}
._1a{width:6.255993pt;}
._14{width:7.520000pt;}
._1c{width:8.871733pt;}
._16{width:9.781333pt;}
._f{width:11.154667pt;}
._13{width:12.921600pt;}
._11{width:13.872000pt;}
._6{width:16.320000pt;}
._10{width:18.245333pt;}
._23{width:19.810667pt;}
._1e{width:21.030133pt;}
._1f{width:22.360000pt;}
._25{width:23.319493pt;}
._1d{width:24.253340pt;}
._20{width:26.597867pt;}
._e{width:29.333333pt;}
._d{width:32.000000pt;}
._7{width:48.552000pt;}
._9{width:1087.501309pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y12b{bottom:-0.014404pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:0.039062pt;}
.ye9{bottom:0.040365pt;}
.y169{bottom:0.093669pt;}
.y139{bottom:0.173747pt;}
.y167{bottom:0.705648pt;}
.y160{bottom:0.733561pt;}
.yd3{bottom:1.983236pt;}
.y136{bottom:2.064372pt;}
.yc3{bottom:3.372152pt;}
.ybf{bottom:3.373454pt;}
.ye4{bottom:3.373617pt;}
.y110{bottom:3.373739pt;}
.ybd{bottom:3.440389pt;}
.y106{bottom:3.505737pt;}
.yf3{bottom:3.505778pt;}
.yb9{bottom:3.506917pt;}
.ycc{bottom:3.507080pt;}
.yf5{bottom:5.238932pt;}
.yec{bottom:5.240316pt;}
.y100{bottom:5.240398pt;}
.yd4{bottom:5.295085pt;}
.yd1{bottom:5.307048pt;}
.y128{bottom:9.318929pt;}
.y12d{bottom:9.321615pt;}
.y164{bottom:10.038981pt;}
.y15f{bottom:10.066895pt;}
.y161{bottom:10.069336pt;}
.y134{bottom:15.560262pt;}
.y12a{bottom:17.047201pt;}
.y137{bottom:17.076375pt;}
.y130{bottom:17.080404pt;}
.y166{bottom:17.767253pt;}
.y132{bottom:26.980387pt;}
.y1{bottom:61.181335pt;}
.y173{bottom:100.577596pt;}
.yab{bottom:100.684265pt;}
.y64{bottom:100.813599pt;}
.y8c{bottom:100.956271pt;}
.ya3{bottom:101.217600pt;}
.y6d{bottom:101.382938pt;}
.y2d{bottom:101.521200pt;}
.y34{bottom:104.917603pt;}
.y125{bottom:106.600382pt;}
.y1e4{bottom:111.577571pt;}
.y1a7{bottom:113.362935pt;}
.y8b{bottom:114.284271pt;}
.y6c{bottom:114.710938pt;}
.y15c{bottom:114.920231pt;}
.y63{bottom:117.480265pt;}
.y2c{bottom:118.187866pt;}
.y33{bottom:120.431603pt;}
.y124{bottom:123.267049pt;}
.y1e3{bottom:124.905571pt;}
.y15b{bottom:131.586898pt;}
.y62{bottom:134.146932pt;}
.y2b{bottom:134.854533pt;}
.y1e2{bottom:138.233571pt;}
.y32{bottom:138.292938pt;}
.y123{bottom:139.933716pt;}
.y1a6{bottom:140.029602pt;}
.y15a{bottom:148.253564pt;}
.y61{bottom:150.813599pt;}
.y2a{bottom:151.521200pt;}
.y1e1{bottom:151.561571pt;}
.y31{bottom:153.806928pt;}
.y122{bottom:156.600382pt;}
.y1e0{bottom:164.889571pt;}
.y159{bottom:164.920231pt;}
.y60{bottom:167.480265pt;}
.y29{bottom:168.187866pt;}
.y1a5{bottom:170.161582pt;}
.y30{bottom:171.668274pt;}
.y121{bottom:173.267049pt;}
.y1df{bottom:178.217571pt;}
.y158{bottom:181.586898pt;}
.y1a4{bottom:183.489582pt;}
.y5f{bottom:184.146932pt;}
.y28{bottom:184.854533pt;}
.ydb{bottom:188.876259pt;}
.y120{bottom:189.933716pt;}
.y1de{bottom:191.545571pt;}
.y2f{bottom:193.890933pt;}
.y1a3{bottom:196.817582pt;}
.y157{bottom:198.253564pt;}
.y27{bottom:201.521200pt;}
.yda{bottom:202.204259pt;}
.y1dd{bottom:204.873571pt;}
.y11f{bottom:206.600382pt;}
.y2e{bottom:207.218933pt;}
.y21e{bottom:210.281620pt;}
.y257{bottom:210.496934pt;}
.y156{bottom:214.920231pt;}
.yd9{bottom:215.532259pt;}
.y5e{bottom:217.480265pt;}
.y26{bottom:218.187866pt;}
.y1dc{bottom:218.201571pt;}
.y11e{bottom:223.267049pt;}
.y1a2{bottom:223.484915pt;}
.y21d{bottom:223.609620pt;}
.y256{bottom:223.824934pt;}
.yd8{bottom:228.860259pt;}
.y1db{bottom:231.529571pt;}
.y155{bottom:231.586898pt;}
.y25{bottom:234.854533pt;}
.y1a1{bottom:236.812915pt;}
.y21c{bottom:236.937620pt;}
.y11d{bottom:239.933716pt;}
.yd7{bottom:242.188259pt;}
.y1da{bottom:244.857571pt;}
.y154{bottom:248.253564pt;}
.y1a0{bottom:250.140915pt;}
.y21b{bottom:250.265620pt;}
.y255{bottom:250.571599pt;}
.y5d{bottom:250.813599pt;}
.y23{bottom:251.521200pt;}
.yd6{bottom:255.516259pt;}
.y11c{bottom:256.600382pt;}
.y1d9{bottom:258.185571pt;}
.y19f{bottom:263.468915pt;}
.y21a{bottom:263.593620pt;}
.y254{bottom:263.899599pt;}
.y153{bottom:264.920231pt;}
.y5c{bottom:267.480265pt;}
.y22{bottom:268.187866pt;}
.yd5{bottom:268.844259pt;}
.y1d8{bottom:271.513571pt;}
.y11b{bottom:273.267049pt;}
.y19e{bottom:276.796915pt;}
.y219{bottom:276.921620pt;}
.y253{bottom:277.227599pt;}
.y152{bottom:281.586898pt;}
.y5b{bottom:284.146932pt;}
.y1d7{bottom:284.841571pt;}
.y21{bottom:284.854533pt;}
.y11a{bottom:289.933716pt;}
.y19d{bottom:290.124915pt;}
.y218{bottom:290.249620pt;}
.y252{bottom:290.555599pt;}
.y1d6{bottom:298.169571pt;}
.y151{bottom:298.253564pt;}
.y5a{bottom:300.813599pt;}
.y20{bottom:301.521200pt;}
.y19c{bottom:303.452915pt;}
.y217{bottom:303.577620pt;}
.y251{bottom:303.883599pt;}
.y119{bottom:306.600382pt;}
.y1d5{bottom:311.497571pt;}
.y150{bottom:314.920231pt;}
.y19b{bottom:316.780915pt;}
.y216{bottom:316.905620pt;}
.y250{bottom:317.211599pt;}
.y59{bottom:317.480265pt;}
.yde{bottom:317.664923pt;}
.y1f{bottom:318.187866pt;}
.y118{bottom:323.267049pt;}
.y1d4{bottom:324.825571pt;}
.y19a{bottom:330.108915pt;}
.y215{bottom:330.233620pt;}
.y24f{bottom:330.539599pt;}
.ydd{bottom:330.992923pt;}
.y14f{bottom:331.586898pt;}
.y58{bottom:334.146932pt;}
.y1e{bottom:334.854533pt;}
.y1d3{bottom:338.153571pt;}
.ybc{bottom:339.453328pt;}
.y117{bottom:339.933716pt;}
.ybb{bottom:340.720272pt;}
.y199{bottom:343.436915pt;}
.y214{bottom:343.561620pt;}
.y24e{bottom:343.867599pt;}
.ydc{bottom:344.320923pt;}
.y14e{bottom:348.253564pt;}
.y57{bottom:350.813599pt;}
.y1d2{bottom:351.481571pt;}
.y1d{bottom:351.521200pt;}
.y116{bottom:356.600382pt;}
.y198{bottom:356.764915pt;}
.y213{bottom:356.889620pt;}
.y24d{bottom:357.195599pt;}
.y1d1{bottom:364.809571pt;}
.y14d{bottom:364.920231pt;}
.y56{bottom:367.480265pt;}
.y1c{bottom:368.187866pt;}
.yba{bottom:368.653605pt;}
.y197{bottom:370.092915pt;}
.y212{bottom:370.217620pt;}
.y24c{bottom:370.523599pt;}
.y115{bottom:373.267049pt;}
.y1d0{bottom:378.137571pt;}
.y14c{bottom:381.586898pt;}
.yb8{bottom:381.815999pt;}
.y196{bottom:383.420915pt;}
.y211{bottom:383.545620pt;}
.y24b{bottom:383.851599pt;}
.y6b{bottom:384.146932pt;}
.y1b{bottom:384.854533pt;}
.yb7{bottom:385.320272pt;}
.y114{bottom:389.933716pt;}
.y1cf{bottom:391.465571pt;}
.y195{bottom:396.748915pt;}
.y210{bottom:396.873620pt;}
.y24a{bottom:397.179599pt;}
.y14b{bottom:398.253564pt;}
.y55{bottom:400.813599pt;}
.y1a{bottom:401.521200pt;}
.yb6{bottom:401.986938pt;}
.y1ce{bottom:404.793571pt;}
.y113{bottom:406.600382pt;}
.y194{bottom:410.076915pt;}
.y20f{bottom:410.201620pt;}
.y249{bottom:410.507599pt;}
.y14a{bottom:414.920231pt;}
.y6a{bottom:417.480265pt;}
.y1cd{bottom:418.121571pt;}
.y24{bottom:418.187866pt;}
.yb5{bottom:418.653605pt;}
.y112{bottom:423.267049pt;}
.y193{bottom:423.404915pt;}
.y20e{bottom:423.529620pt;}
.y248{bottom:423.835599pt;}
.y1cc{bottom:431.449571pt;}
.y149{bottom:431.586898pt;}
.y54{bottom:434.146932pt;}
.y19{bottom:434.854533pt;}
.yb4{bottom:435.320272pt;}
.y20d{bottom:436.857620pt;}
.y247{bottom:437.163599pt;}
.y111{bottom:439.933716pt;}
.y1cb{bottom:444.777571pt;}
.y148{bottom:448.253564pt;}
.y192{bottom:450.072248pt;}
.y20c{bottom:450.185620pt;}
.y246{bottom:450.491599pt;}
.y69{bottom:450.813599pt;}
.yb3{bottom:451.986938pt;}
.y10f{bottom:453.215983pt;}
.y10e{bottom:456.600382pt;}
.y1ca{bottom:458.105571pt;}
.y191{bottom:463.400248pt;}
.y20b{bottom:463.513620pt;}
.y245{bottom:463.819599pt;}
.y147{bottom:464.920231pt;}
.y68{bottom:467.480265pt;}
.yb2{bottom:468.653605pt;}
.y1c9{bottom:471.433571pt;}
.y10d{bottom:473.267049pt;}
.y190{bottom:476.728248pt;}
.y20a{bottom:476.841620pt;}
.y244{bottom:477.147599pt;}
.y146{bottom:481.586898pt;}
.y53{bottom:484.146932pt;}
.y1c8{bottom:484.761571pt;}
.y18{bottom:484.854533pt;}
.yb1{bottom:485.320272pt;}
.y10c{bottom:489.933716pt;}
.y96{bottom:490.054932pt;}
.y18f{bottom:490.056248pt;}
.y209{bottom:490.169620pt;}
.y243{bottom:490.475599pt;}
.y1c7{bottom:498.089571pt;}
.y145{bottom:498.253564pt;}
.y52{bottom:500.813599pt;}
.y17{bottom:501.521200pt;}
.yaa{bottom:501.986938pt;}
.y18e{bottom:503.384248pt;}
.y208{bottom:503.497620pt;}
.y242{bottom:503.803599pt;}
.y10b{bottom:506.600382pt;}
.y95{bottom:506.721598pt;}
.ya0{bottom:507.774932pt;}
.y1c6{bottom:511.417571pt;}
.y144{bottom:514.920231pt;}
.y18d{bottom:516.712248pt;}
.y207{bottom:516.825620pt;}
.y241{bottom:517.131599pt;}
.y51{bottom:517.480265pt;}
.ya9{bottom:518.653605pt;}
.y10a{bottom:523.267049pt;}
.y94{bottom:523.388265pt;}
.y9f{bottom:524.441598pt;}
.y1c5{bottom:524.745571pt;}
.y8a{bottom:529.762820pt;}
.y18c{bottom:530.040248pt;}
.y206{bottom:530.153620pt;}
.y240{bottom:530.459599pt;}
.y143{bottom:531.586898pt;}
.y50{bottom:534.146932pt;}
.y16{bottom:534.854533pt;}
.ya8{bottom:535.320272pt;}
.y170{bottom:535.444255pt;}
.y1c4{bottom:538.073571pt;}
.y109{bottom:539.933716pt;}
.y93{bottom:540.054932pt;}
.y9e{bottom:541.108265pt;}
.y89{bottom:543.090820pt;}
.y18b{bottom:543.368248pt;}
.y205{bottom:543.481620pt;}
.y23f{bottom:543.787599pt;}
.y142{bottom:548.253564pt;}
.y4f{bottom:550.813599pt;}
.yad{bottom:551.215050pt;}
.y1c3{bottom:551.401571pt;}
.y15{bottom:551.521200pt;}
.y88{bottom:551.986898pt;}
.ya7{bottom:551.986938pt;}
.y16f{bottom:552.110921pt;}
.y108{bottom:556.600382pt;}
.y18a{bottom:556.696248pt;}
.y92{bottom:556.721598pt;}
.y204{bottom:556.809620pt;}
.y23e{bottom:557.115599pt;}
.y9d{bottom:557.774932pt;}
.yac{bottom:564.543050pt;}
.y1c2{bottom:564.729571pt;}
.y141{bottom:564.920231pt;}
.y4e{bottom:567.480265pt;}
.y14{bottom:568.187866pt;}
.y87{bottom:568.653564pt;}
.ya6{bottom:568.653605pt;}
.y16e{bottom:568.777588pt;}
.y105{bottom:569.763997pt;}
.y203{bottom:570.137620pt;}
.y23d{bottom:570.443599pt;}
.y107{bottom:573.267049pt;}
.y91{bottom:573.388265pt;}
.y9c{bottom:574.441598pt;}
.y1c1{bottom:578.057571pt;}
.y140{bottom:581.586898pt;}
.y202{bottom:583.465620pt;}
.y23c{bottom:583.771599pt;}
.y4d{bottom:584.146932pt;}
.y13{bottom:584.854574pt;}
.y86{bottom:585.320231pt;}
.ya5{bottom:585.320272pt;}
.y16d{bottom:585.444255pt;}
.y104{bottom:589.933716pt;}
.y90{bottom:590.054932pt;}
.y9b{bottom:591.108265pt;}
.y1c0{bottom:591.385571pt;}
.y201{bottom:596.793620pt;}
.y23b{bottom:597.099599pt;}
.y13f{bottom:598.253564pt;}
.y189{bottom:600.029622pt;}
.y4c{bottom:600.813599pt;}
.y67{bottom:600.813639pt;}
.y12{bottom:601.521240pt;}
.y85{bottom:601.986898pt;}
.yb0{bottom:601.986938pt;}
.y16c{bottom:602.110921pt;}
.y1bf{bottom:604.713571pt;}
.y103{bottom:606.600382pt;}
.y8f{bottom:606.721598pt;}
.y9a{bottom:607.774932pt;}
.y200{bottom:610.121620pt;}
.y23a{bottom:610.427599pt;}
.y13e{bottom:614.920231pt;}
.y188{bottom:616.696289pt;}
.y4b{bottom:617.480306pt;}
.yff{bottom:618.034667pt;}
.y1be{bottom:618.041571pt;}
.y11{bottom:618.187907pt;}
.y84{bottom:618.653564pt;}
.ya4{bottom:618.653605pt;}
.y16b{bottom:618.777588pt;}
.y102{bottom:619.762655pt;}
.y101{bottom:623.267049pt;}
.y8e{bottom:623.388265pt;}
.y1ff{bottom:623.449620pt;}
.y239{bottom:623.755599pt;}
.y99{bottom:624.441598pt;}
.y1bd{bottom:631.369571pt;}
.y13d{bottom:631.586898pt;}
.y187{bottom:633.362956pt;}
.y4a{bottom:634.146973pt;}
.y10{bottom:634.854574pt;}
.y83{bottom:635.320231pt;}
.yaf{bottom:635.320272pt;}
.y16a{bottom:635.444255pt;}
.yfd{bottom:636.429321pt;}
.y1fe{bottom:636.777620pt;}
.y238{bottom:637.083599pt;}
.yfc{bottom:639.933580pt;}
.yfe{bottom:639.933716pt;}
.y98{bottom:641.108265pt;}
.y1bc{bottom:644.697571pt;}
.y13c{bottom:648.253564pt;}
.y186{bottom:650.029622pt;}
.y1fd{bottom:650.105620pt;}
.y237{bottom:650.411599pt;}
.y49{bottom:650.813639pt;}
.yf{bottom:651.521240pt;}
.y82{bottom:651.986898pt;}
.yae{bottom:651.986938pt;}
.y8d{bottom:656.721598pt;}
.y97{bottom:657.774932pt;}
.y1bb{bottom:658.025571pt;}
.y1fc{bottom:663.433620pt;}
.y236{bottom:663.739599pt;}
.y13b{bottom:664.920231pt;}
.y12f{bottom:664.933350pt;}
.y185{bottom:666.696289pt;}
.y48{bottom:667.480306pt;}
.ye{bottom:668.187907pt;}
.y81{bottom:668.653564pt;}
.y135{bottom:670.333618pt;}
.y1ba{bottom:671.353571pt;}
.y172{bottom:675.534956pt;}
.y1fb{bottom:676.761620pt;}
.y235{bottom:677.067599pt;}
.y12e{bottom:677.800415pt;}
.y131{bottom:682.013753pt;}
.y184{bottom:683.362956pt;}
.y47{bottom:684.146973pt;}
.y1b9{bottom:684.681571pt;}
.yd{bottom:684.854574pt;}
.y80{bottom:685.320231pt;}
.y133{bottom:688.577718pt;}
.y171{bottom:688.862956pt;}
.y163{bottom:689.921305pt;}
.y1fa{bottom:690.089620pt;}
.y234{bottom:690.395599pt;}
.yce{bottom:693.920410pt;}
.y1b8{bottom:698.009571pt;}
.ya2{bottom:698.324262pt;}
.y162{bottom:698.387044pt;}
.y165{bottom:699.960286pt;}
.y183{bottom:700.029622pt;}
.y46{bottom:700.813639pt;}
.yc{bottom:701.521240pt;}
.y7f{bottom:701.986898pt;}
.y1f9{bottom:703.417620pt;}
.y233{bottom:703.723599pt;}
.ycb{bottom:707.082682pt;}
.yca{bottom:710.586898pt;}
.ycd{bottom:710.587077pt;}
.y1b7{bottom:711.337571pt;}
.ya1{bottom:711.652262pt;}
.yfb{bottom:712.101318pt;}
.y168{bottom:714.746826pt;}
.y182{bottom:716.696289pt;}
.y1f8{bottom:716.745620pt;}
.y232{bottom:717.051599pt;}
.yfa{bottom:717.333577pt;}
.y45{bottom:717.480306pt;}
.y7e{bottom:718.653564pt;}
.y1b6{bottom:724.665571pt;}
.yc9{bottom:727.253564pt;}
.y1f7{bottom:730.073620pt;}
.y231{bottom:730.379599pt;}
.y181{bottom:733.362956pt;}
.y13a{bottom:733.520231pt;}
.yf9{bottom:734.000244pt;}
.y44{bottom:734.146973pt;}
.y7d{bottom:735.320231pt;}
.y1b5{bottom:737.993571pt;}
.yb{bottom:740.794803pt;}
.y1f6{bottom:743.401620pt;}
.y230{bottom:743.707599pt;}
.y180{bottom:750.029622pt;}
.yf8{bottom:750.666911pt;}
.y43{bottom:750.813639pt;}
.y78{bottom:751.986898pt;}
.yd0{bottom:752.253337pt;}
.ya{bottom:754.122803pt;}
.ycf{bottom:755.453740pt;}
.y1f5{bottom:756.729620pt;}
.y22f{bottom:757.035599pt;}
.yd2{bottom:757.560384pt;}
.y15e{bottom:758.520020pt;}
.yf7{bottom:763.949300pt;}
.y17f{bottom:766.696289pt;}
.y15d{bottom:766.920251pt;}
.yf6{bottom:767.333577pt;}
.y42{bottom:767.480306pt;}
.y1b4{bottom:767.993571pt;}
.y77{bottom:768.653564pt;}
.y1f4{bottom:770.057620pt;}
.y22e{bottom:770.363599pt;}
.yf4{bottom:778.769368pt;}
.yf2{bottom:780.497314pt;}
.yc8{bottom:781.937337pt;}
.y17e{bottom:783.362956pt;}
.y1f3{bottom:783.385620pt;}
.y22d{bottom:783.691599pt;}
.yf0{bottom:783.962646pt;}
.yef{bottom:784.000244pt;}
.y41{bottom:784.146973pt;}
.y76{bottom:785.320231pt;}
.y9{bottom:791.989502pt;}
.y1f2{bottom:796.713620pt;}
.y22c{bottom:797.019599pt;}
.y17d{bottom:800.029622pt;}
.yee{bottom:800.666911pt;}
.y40{bottom:800.813639pt;}
.y138{bottom:801.818685pt;}
.y7c{bottom:801.986898pt;}
.y8{bottom:808.656169pt;}
.y1f1{bottom:810.041620pt;}
.y22b{bottom:810.347599pt;}
.yc7{bottom:815.149333pt;}
.y17c{bottom:816.696289pt;}
.yed{bottom:817.333577pt;}
.y3f{bottom:817.480306pt;}
.y75{bottom:818.653564pt;}
.y1b3{bottom:823.237586pt;}
.y1f0{bottom:823.369620pt;}
.y22a{bottom:823.675599pt;}
.yeb{bottom:828.767985pt;}
.y17b{bottom:833.362956pt;}
.ye8{bottom:833.961344pt;}
.yea{bottom:834.000244pt;}
.ye7{bottom:834.000293pt;}
.y3e{bottom:834.146973pt;}
.y7b{bottom:835.320231pt;}
.y1b2{bottom:836.565586pt;}
.y1ef{bottom:836.697620pt;}
.y229{bottom:837.003599pt;}
.y7{bottom:848.377441pt;}
.y1b1{bottom:849.893586pt;}
.y1ee{bottom:850.025620pt;}
.y17a{bottom:850.029622pt;}
.y228{bottom:850.331599pt;}
.y3d{bottom:850.813639pt;}
.y74{bottom:851.986898pt;}
.y127{bottom:859.001302pt;}
.y1b0{bottom:863.221586pt;}
.y1ed{bottom:863.353620pt;}
.y227{bottom:863.659599pt;}
.y179{bottom:866.696289pt;}
.y126{bottom:867.067047pt;}
.y3c{bottom:867.480306pt;}
.y129{bottom:868.320231pt;}
.y12c{bottom:868.322917pt;}
.y7a{bottom:868.653564pt;}
.y6{bottom:872.377441pt;}
.y1af{bottom:876.549586pt;}
.y1ec{bottom:876.681620pt;}
.y226{bottom:876.987599pt;}
.yc6{bottom:881.815999pt;}
.y178{bottom:883.362956pt;}
.y3b{bottom:884.146973pt;}
.y79{bottom:885.320231pt;}
.y1ae{bottom:889.877586pt;}
.y1eb{bottom:890.009620pt;}
.y225{bottom:890.315599pt;}
.y5{bottom:896.377441pt;}
.ye6{bottom:898.416016pt;}
.yc5{bottom:898.482666pt;}
.y177{bottom:900.029622pt;}
.y3a{bottom:900.813639pt;}
.ye5{bottom:901.800293pt;}
.y73{bottom:901.986898pt;}
.y1ad{bottom:903.205586pt;}
.y1ea{bottom:903.337620pt;}
.y224{bottom:903.643599pt;}
.ye3{bottom:915.082682pt;}
.yc4{bottom:915.149333pt;}
.y1ac{bottom:916.533586pt;}
.y1e9{bottom:916.665620pt;}
.y176{bottom:916.696289pt;}
.y223{bottom:916.971599pt;}
.y39{bottom:917.480306pt;}
.ye2{bottom:918.466960pt;}
.y72{bottom:918.653564pt;}
.y1ab{bottom:929.861586pt;}
.y1e8{bottom:929.993620pt;}
.y222{bottom:930.299599pt;}
.yc2{bottom:931.937337pt;}
.y175{bottom:933.362956pt;}
.y38{bottom:934.146973pt;}
.ye1{bottom:935.133626pt;}
.y71{bottom:935.320231pt;}
.y1aa{bottom:943.189586pt;}
.y1e7{bottom:943.321620pt;}
.y221{bottom:943.627599pt;}
.yc1{bottom:948.482666pt;}
.yc0{bottom:948.602702pt;}
.y66{bottom:950.813599pt;}
.y37{bottom:950.813639pt;}
.ye0{bottom:951.800293pt;}
.y70{bottom:951.986898pt;}
.y1a9{bottom:956.517586pt;}
.y4{bottom:956.561849pt;}
.y1e6{bottom:956.649620pt;}
.y220{bottom:956.955599pt;}
.ybe{bottom:965.269368pt;}
.y174{bottom:966.696289pt;}
.y65{bottom:967.480265pt;}
.y36{bottom:967.480306pt;}
.ydf{bottom:968.466960pt;}
.y6f{bottom:968.653564pt;}
.y1a8{bottom:969.845586pt;}
.y1e5{bottom:969.977620pt;}
.y21f{bottom:970.283599pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y35{bottom:1002.206543pt;}
.y6e{bottom:1002.206706pt;}
.h2a{height:3.520880pt;}
.h2b{height:5.441360pt;}
.h22{height:6.000000pt;}
.h2c{height:8.534667pt;}
.h15{height:9.066667pt;}
.h11{height:9.200000pt;}
.h1a{height:9.466667pt;}
.h23{height:10.933333pt;}
.h25{height:12.266666pt;}
.h27{height:12.268000pt;}
.h18{height:12.400000pt;}
.h16{height:12.401333pt;}
.h13{height:12.533333pt;}
.h19{height:12.534667pt;}
.h24{height:14.400000pt;}
.h1c{height:16.400000pt;}
.h12{height:22.832372pt;}
.h1b{height:23.525879pt;}
.h33{height:24.944723pt;}
.h1d{height:25.504859pt;}
.h28{height:26.132000pt;}
.h2e{height:26.801333pt;}
.h31{height:26.933333pt;}
.hc{height:29.321599pt;}
.h2{height:30.080000pt;}
.h2d{height:33.181625pt;}
.h26{height:35.528879pt;}
.h29{height:35.733332pt;}
.h17{height:35.955652pt;}
.h20{height:36.062345pt;}
.h14{height:36.169038pt;}
.h1e{height:36.435772pt;}
.h1f{height:36.809198pt;}
.h3{height:39.712000pt;}
.hb{height:41.888000pt;}
.h8{height:49.280000pt;}
.h10{height:49.280163pt;}
.h4{height:49.298667pt;}
.he{height:52.448000pt;}
.h7{height:52.746667pt;}
.h9{height:55.829171pt;}
.hd{height:55.829333pt;}
.hf{height:55.829496pt;}
.h6{height:57.658667pt;}
.h32{height:62.682331pt;}
.ha{height:63.296000pt;}
.h2f{height:66.576637pt;}
.h5{height:75.605333pt;}
.h21{height:77.672743pt;}
.h30{height:100.024996pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w1c{width:5.586667pt;}
.w10{width:6.653333pt;}
.w12{width:6.654667pt;}
.w13{width:9.653333pt;}
.w11{width:10.601333pt;}
.w15{width:10.866666pt;}
.w2{width:13.051999pt;}
.w4{width:13.199999pt;}
.w19{width:13.201333pt;}
.wd{width:16.961333pt;}
.w16{width:21.026667pt;}
.w17{width:21.028000pt;}
.w5{width:22.680000pt;}
.wf{width:23.333333pt;}
.wb{width:25.546666pt;}
.wc{width:26.213333pt;}
.wa{width:26.733332pt;}
.w8{width:27.106667pt;}
.w14{width:27.760000pt;}
.w9{width:28.373333pt;}
.w18{width:29.040000pt;}
.w6{width:29.480000pt;}
.w7{width:35.653333pt;}
.w1d{width:67.320002pt;}
.w1b{width:76.639999pt;}
.w1e{width:78.748000pt;}
.w1a{width:85.853333pt;}
.we{width:104.760000pt;}
.w3{width:254.559998pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:1.967326pt;}
.x4b{left:2.877848pt;}
.x23{left:16.819499pt;}
.x50{left:32.465861pt;}
.x4d{left:35.862427pt;}
.x43{left:46.582006pt;}
.x47{left:48.052800pt;}
.x45{left:49.240799pt;}
.x25{left:58.159627pt;}
.x4e{left:64.710286pt;}
.x49{left:67.109207pt;}
.x2{left:68.031469pt;}
.x27{left:69.847616pt;}
.x4a{left:74.033198pt;}
.x3{left:75.717199pt;}
.x42{left:77.018000pt;}
.x3d{left:79.047333pt;}
.x7{left:83.147068pt;}
.x6{left:86.929867pt;}
.x53{left:90.709469pt;}
.x29{left:93.187459pt;}
.x3b{left:95.888000pt;}
.x40{left:97.138133pt;}
.x39{left:102.330668pt;}
.x2e{left:105.144002pt;}
.x2f{left:111.947205pt;}
.x3c{left:116.990133pt;}
.x44{left:122.869863pt;}
.x46{left:126.164937pt;}
.x48{left:128.468800pt;}
.x3a{left:130.157867pt;}
.x3e{left:165.638662pt;}
.x9{left:176.535990pt;}
.x32{left:181.606669pt;}
.x2a{left:185.343994pt;}
.x3f{left:186.814533pt;}
.x33{left:188.305725pt;}
.xa{left:189.644796pt;}
.x2c{left:199.800008pt;}
.x2b{left:208.730265pt;}
.x41{left:213.361328pt;}
.x34{left:214.265340pt;}
.x36{left:223.963074pt;}
.x2d{left:227.046529pt;}
.x37{left:291.601339pt;}
.x38{left:302.246541pt;}
.x30{left:341.236003pt;}
.x31{left:351.985718pt;}
.xb{left:369.964795pt;}
.x4{left:408.191469pt;}
.x22{left:417.171590pt;}
.x4f{left:418.370524pt;}
.x5{left:423.298136pt;}
.x52{left:430.866924pt;}
.x24{left:436.119466pt;}
.xc{left:446.800008pt;}
.xd{left:460.292928pt;}
.x4c{left:466.388550pt;}
.x26{left:470.619466pt;}
.x51{left:474.686117pt;}
.x16{left:485.489339pt;}
.x28{left:494.679606pt;}
.x10{left:505.908000pt;}
.x17{left:514.081584pt;}
.x1e{left:520.119995pt;}
.x11{left:535.696004pt;}
.x1f{left:543.053060pt;}
.x14{left:555.821330pt;}
.x18{left:560.809326pt;}
.x15{left:583.127075pt;}
.x19{left:587.609333pt;}
.x1a{left:608.646647pt;}
.xe{left:614.895996pt;}
.x1b{left:634.246419pt;}
.xf{left:637.869588pt;}
.x1c{left:642.508016pt;}
.x1{left:647.307210pt;}
.x20{left:659.074666pt;}
.x1d{left:668.787598pt;}
.x12{left:675.828003pt;}
.x8{left:704.136393pt;}
.x21{left:710.124681pt;}
.x13{left:711.789307pt;}
}




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