
    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_4a7cca462024becbf481c7df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;font-style:normal;font-weight: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_d92d25c7041809fffef2a3d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4e8d0540653878010ff109e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d1f89fdbea2ff0da55a2b530.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3545b669f6d93c687cdee2f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9784dd06daa5bd419200c99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b54ee2a3cad04562e35b59e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;font-style:normal;font-weight: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_cf73db2875d3583b9a250a0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;font-style:normal;font-weight: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_d30a09b94ac9e00e92ebbd9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;font-style:normal;font-weight: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_c54ad13287b17bf1432ade66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;font-style:normal;font-weight: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_3adde5a3f6ea83c44819b765.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;font-style:normal;font-weight: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_25c176f2f617acb049c54a04.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c83b79b4269a3dce358f4b69.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a13b047195e522c7f2992ed6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.364258;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.fff{font-family:fff;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.922000;font-style:normal;font-weight: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_5e2bdc085069f3eb78f49c79.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2f42d8c6cc6fa52f5fb7cecb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_740d1326bfffcade89efe464.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.220000;font-style:normal;font-weight: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_6bc7d93feb1bf0357a06d7cb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_99a4fbea7689fc75699c798f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.907715;font-style:normal;font-weight: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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.922000;font-style:normal;font-weight: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_3fa223408e1dbd228e2e6e04.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_d4785462b4636f7cfe92f10c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.819000;font-style:normal;font-weight: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_ccc48f65c7cf86260e02d927.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.901000;font-style:normal;font-weight: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_3429b3b0ce42abe6088d701e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909000;font-style:normal;font-weight: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_b9b77fcaf92cc35e92c4fba3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.908000;font-style:normal;font-weight: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_036ca2633e78568a8caa2bb2.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_3bfc6a1982234c81ecee068e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.911000;font-style:normal;font-weight: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_4c5c7a74c1f6923df87e432e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.453000;font-style:normal;font-weight: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_03dc710d83fd59aaef94c8c6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.431000;font-style:normal;font-weight: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_85bba8dd9925ba45ba3b7454.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.840000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.922000;font-style:normal;font-weight: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_5e2bdc085069f3eb78f49c79.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_2f42d8c6cc6fa52f5fb7cecb.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_f98c85f7a4887a3dcba1da4b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.700000;font-style:normal;font-weight: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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.907715;font-style:normal;font-weight: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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.922000;font-style:normal;font-weight: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_54a6dd5e780f37ecff47750e.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_e5d0a89d87faf2194f30535a.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.819000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.922000;font-style:normal;font-weight: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_ee28697f04bec664b9ea3b34.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_9af0aa799d10a99358cbb40e.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.907715;font-style:normal;font-weight: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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.922000;font-style:normal;font-weight: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_be3f2e5c15222747e34ff1bf.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_37071ab953617684479e4fcf.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.819000;font-style:normal;font-weight: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_6d419d08adeb6b824cdd5cbf.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.923000;font-style:normal;font-weight: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_e92433f4f572562d6e9a8b55.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.910000;font-style:normal;font-weight: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_ca2e95092bc1b6ac2f3f65b4.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.922000;font-style:normal;font-weight: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_ee28697f04bec664b9ea3b34.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_9af0aa799d10a99358cbb40e.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v11{vertical-align:-30.966837px;}
.vf{vertical-align:-14.610000px;}
.v2{vertical-align:-8.964000px;}
.vb{vertical-align:-6.263446px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.814000px;}
.v4{vertical-align:14.778000px;}
.v13{vertical-align:17.268000px;}
.v3{vertical-align:21.696000px;}
.vc{vertical-align:22.733289px;}
.v6{vertical-align:24.684000px;}
.v14{vertical-align:30.629734px;}
.v9{vertical-align:31.952377px;}
.v1{vertical-align:33.929038px;}
.v5{vertical-align:36.468000px;}
.v8{vertical-align:39.462000px;}
.v10{vertical-align:41.004000px;}
.vd{vertical-align:47.604702px;}
.va{vertical-align:50.855908px;}
.ve{vertical-align:66.508234px;}
.v12{vertical-align:121.920000px;}
.lsc{letter-spacing:-0.338030px;}
.lsa{letter-spacing:-0.089291px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000873px;}
.ls46{letter-spacing:0.001430px;}
.ls37{letter-spacing:0.002164px;}
.ls64{letter-spacing:0.002336px;}
.ls66{letter-spacing:0.002394px;}
.ls4e{letter-spacing:0.008737px;}
.lsd{letter-spacing:0.038268px;}
.ls6b{letter-spacing:0.146657px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.664504px;}
.lse{letter-spacing:0.666549px;}
.lsf{letter-spacing:0.693531px;}
.ls3{letter-spacing:0.693663px;}
.ls39{letter-spacing:1.660543px;}
.ls50{letter-spacing:1.664207px;}
.ls44{letter-spacing:1.706524px;}
.ls4f{letter-spacing:1.731678px;}
.ls4a{letter-spacing:1.740415px;}
.ls6c{letter-spacing:1.809664px;}
.ls28{letter-spacing:1.885573px;}
.ls53{letter-spacing:2.145894px;}
.ls24{letter-spacing:2.983842px;}
.ls2b{letter-spacing:2.987767px;}
.ls5c{letter-spacing:2.988655px;}
.ls55{letter-spacing:2.988707px;}
.ls35{letter-spacing:2.990737px;}
.ls67{letter-spacing:3.002394px;}
.ls68{letter-spacing:3.008394px;}
.ls42{letter-spacing:3.134592px;}
.ls30{letter-spacing:3.229763px;}
.ls25{letter-spacing:4.000139px;}
.ls45{letter-spacing:4.699014px;}
.ls41{letter-spacing:4.852549px;}
.ls48{letter-spacing:5.085956px;}
.ls3c{letter-spacing:9.955672px;}
.ls3b{letter-spacing:9.962336px;}
.ls43{letter-spacing:10.566600px;}
.ls63{letter-spacing:13.276672px;}
.ls27{letter-spacing:13.280893px;}
.ls5a{letter-spacing:13.282672px;}
.ls6a{letter-spacing:14.066394px;}
.ls69{letter-spacing:14.072394px;}
.ls52{letter-spacing:14.234680px;}
.ls9{letter-spacing:16.207672px;}
.ls8{letter-spacing:16.251550px;}
.ls59{letter-spacing:16.266655px;}
.ls62{letter-spacing:16.272655px;}
.ls3e{letter-spacing:16.600672px;}
.ls58{letter-spacing:16.606672px;}
.ls22{letter-spacing:16.618284px;}
.ls4{letter-spacing:17.055084px;}
.ls19{letter-spacing:18.844102px;}
.ls1a{letter-spacing:18.845055px;}
.ls1d{letter-spacing:18.845987px;}
.ls18{letter-spacing:18.850732px;}
.ls34{letter-spacing:18.950207px;}
.ls2d{letter-spacing:18.994479px;}
.ls2a{letter-spacing:19.000007px;}
.ls51{letter-spacing:19.590707px;}
.ls57{letter-spacing:19.592737px;}
.ls5{letter-spacing:19.890021px;}
.ls6{letter-spacing:19.915672px;}
.ls7{letter-spacing:19.972672px;}
.ls31{letter-spacing:20.810916px;}
.ls4b{letter-spacing:21.436445px;}
.ls2c{letter-spacing:21.721672px;}
.ls29{letter-spacing:21.984655px;}
.ls3d{letter-spacing:22.016341px;}
.ls10{letter-spacing:22.046188px;}
.ls13{letter-spacing:22.176000px;}
.ls16{letter-spacing:22.180198px;}
.ls15{letter-spacing:22.183993px;}
.ls14{letter-spacing:22.186198px;}
.ls33{letter-spacing:23.324737px;}
.ls21{letter-spacing:23.432916px;}
.ls32{letter-spacing:23.798737px;}
.ls2f{letter-spacing:24.604007px;}
.ls40{letter-spacing:24.680916px;}
.ls47{letter-spacing:24.986696px;}
.ls17{letter-spacing:28.189993px;}
.ls36{letter-spacing:28.465420px;}
.ls38{letter-spacing:28.856737px;}
.ls54{letter-spacing:28.862737px;}
.ls49{letter-spacing:30.244746px;}
.ls12{letter-spacing:31.990350px;}
.ls11{letter-spacing:32.001718px;}
.ls2e{letter-spacing:37.886893px;}
.ls4c{letter-spacing:38.909656px;}
.ls3a{letter-spacing:60.404737px;}
.ls56{letter-spacing:60.410737px;}
.ls61{letter-spacing:61.936585px;}
.ls5f{letter-spacing:61.936588px;}
.ls5d{letter-spacing:61.941338px;}
.ls60{letter-spacing:61.941447px;}
.ls5e{letter-spacing:61.941964px;}
.ls4d{letter-spacing:63.310205px;}
.ls1e{letter-spacing:144.128549px;}
.ls1f{letter-spacing:158.268960px;}
.ls1c{letter-spacing:162.978653px;}
.ls1b{letter-spacing:177.119063px;}
.ls26{letter-spacing:228.982007px;}
.ls65{letter-spacing:268.381842px;}
.ls3f{letter-spacing:273.777000px;}
.ls20{letter-spacing:332.635197px;}
.ls5b{letter-spacing:455.419244px;}
.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;}
}
.ws12f{word-spacing:-76.281528px;}
.ws11f{word-spacing:-76.281012px;}
.ws119{word-spacing:-50.472377px;}
.wsfa{word-spacing:-40.812374px;}
.ws1{word-spacing:-40.428498px;}
.ws0{word-spacing:-40.224404px;}
.wsed{word-spacing:-38.939389px;}
.wsce{word-spacing:-33.224612px;}
.wsd0{word-spacing:-29.016241px;}
.wse8{word-spacing:-29.016181px;}
.wsf0{word-spacing:-29.016002px;}
.wscd{word-spacing:-28.956762px;}
.wscf{word-spacing:-28.956463px;}
.wsf5{word-spacing:-28.956164px;}
.ws101{word-spacing:-28.955985px;}
.ws23f{word-spacing:-19.093093px;}
.ws105{word-spacing:-16.606328px;}
.ws14d{word-spacing:-16.307411px;}
.ws66{word-spacing:-16.307167px;}
.ws99{word-spacing:-15.711247px;}
.ws200{word-spacing:-15.279257px;}
.ws117{word-spacing:-14.339565px;}
.ws16a{word-spacing:-14.183465px;}
.wsfc{word-spacing:-3.376618px;}
.ws261{word-spacing:-3.036782px;}
.ws198{word-spacing:-3.036722px;}
.wsbb{word-spacing:-2.976944px;}
.ws148{word-spacing:-2.917346px;}
.ws260{word-spacing:-2.912379px;}
.ws19e{word-spacing:-2.498720px;}
.ws24{word-spacing:-2.379164px;}
.ws112{word-spacing:-2.379105px;}
.wsc0{word-spacing:-2.319386px;}
.ws22d{word-spacing:-2.259728px;}
.ws10c{word-spacing:-2.199711px;}
.ws264{word-spacing:-2.080334px;}
.ws24e{word-spacing:-2.056602px;}
.ws251{word-spacing:-2.020317px;}
.ws111{word-spacing:-1.900940px;}
.ws4a{word-spacing:-1.840923px;}
.wsba{word-spacing:-1.781444px;}
.ws21{word-spacing:-1.721547px;}
.ws35{word-spacing:-1.662127px;}
.ws137{word-spacing:-1.661530px;}
.ws41{word-spacing:-1.602110px;}
.ws164{word-spacing:-1.572333px;}
.wsd2{word-spacing:-1.550007px;}
.wsd3{word-spacing:-1.542153px;}
.ws163{word-spacing:-1.533661px;}
.ws168{word-spacing:-1.521583px;}
.ws13a{word-spacing:-1.482734px;}
.ws71{word-spacing:-1.362699px;}
.ws116{word-spacing:-1.183903px;}
.ws64{word-spacing:-1.167161px;}
.wsa8{word-spacing:-1.123946px;}
.ws10b{word-spacing:-1.063929px;}
.ws5f{word-spacing:-1.020469px;}
.wsc5{word-spacing:-1.004510px;}
.ws63{word-spacing:-1.001335px;}
.ws24f{word-spacing:-0.980180px;}
.wsd8{word-spacing:-0.884535px;}
.ws1c7{word-spacing:-0.825116px;}
.ws33{word-spacing:-0.765099px;}
.ws58{word-spacing:-0.705739px;}
.ws59{word-spacing:-0.705679px;}
.ws34{word-spacing:-0.645662px;}
.ws5d{word-spacing:-0.612281px;}
.ws60{word-spacing:-0.503856px;}
.ws10a{word-spacing:-0.466328px;}
.ws22{word-spacing:-0.466268px;}
.ws65{word-spacing:-0.465589px;}
.ws55{word-spacing:-0.406909px;}
.ws56{word-spacing:-0.406251px;}
.ws174{word-spacing:-0.347030px;}
.wsa1{word-spacing:-0.286934px;}
.ws1f6{word-spacing:-0.286875px;}
.ws1a8{word-spacing:-0.227515px;}
.ws1bd{word-spacing:-0.227156px;}
.ws1eb{word-spacing:-0.083869px;}
.wse6{word-spacing:-0.059778px;}
.ws48{word-spacing:-0.048062px;}
.wsfe{word-spacing:-0.043857px;}
.wsf3{word-spacing:-0.041844px;}
.wsfd{word-spacing:-0.031324px;}
.ws133{word-spacing:-0.028583px;}
.wsf4{word-spacing:-0.025605px;}
.wsf6{word-spacing:-0.019605px;}
.ws5c{word-spacing:0.000000px;}
.ws100{word-spacing:0.011896px;}
.ws113{word-spacing:0.011956px;}
.wsfb{word-spacing:0.016777px;}
.ws62{word-spacing:0.044646px;}
.wsa5{word-spacing:0.131272px;}
.wsd5{word-spacing:0.191290px;}
.ws5b{word-spacing:0.191349px;}
.wsc1{word-spacing:0.250649px;}
.ws1a5{word-spacing:0.251247px;}
.ws5e{word-spacing:0.293385px;}
.ws13c{word-spacing:0.310666px;}
.ws88{word-spacing:0.310726px;}
.wsd7{word-spacing:0.310846px;}
.wsaf{word-spacing:0.430700px;}
.ws210{word-spacing:0.454313px;}
.ws1b{word-spacing:0.490060px;}
.ws197{word-spacing:0.609496px;}
.ws1ae{word-spacing:0.609736px;}
.wsb2{word-spacing:0.610094px;}
.wsef{word-spacing:0.669514px;}
.ws61{word-spacing:0.714328px;}
.ws1c2{word-spacing:0.789070px;}
.ws1d5{word-spacing:0.848848px;}
.ws7a{word-spacing:0.968284px;}
.ws7c{word-spacing:0.968404px;}
.ws145{word-spacing:1.087661px;}
.ws1c{word-spacing:1.088378px;}
.ws18c{word-spacing:1.134000px;}
.wsb8{word-spacing:1.147678px;}
.ws265{word-spacing:1.159574px;}
.ws67{word-spacing:1.207695px;}
.ws1f{word-spacing:1.267054px;}
.ws221{word-spacing:1.327191px;}
.ws257{word-spacing:1.386491px;}
.ws31{word-spacing:1.446448px;}
.ws78{word-spacing:1.506465px;}
.wsc8{word-spacing:1.565885px;}
.ws6e{word-spacing:1.566004px;}
.ws1c8{word-spacing:1.566184px;}
.ws4b{word-spacing:1.625902px;}
.ws6d{word-spacing:1.626021px;}
.ws22c{word-spacing:1.745278px;}
.ws32{word-spacing:1.745398px;}
.ws223{word-spacing:1.745876px;}
.ws165{word-spacing:1.746384px;}
.wsdc{word-spacing:1.805296px;}
.ws74{word-spacing:1.865253px;}
.ws1c6{word-spacing:1.924852px;}
.ws267{word-spacing:1.948285px;}
.ws23{word-spacing:1.984211px;}
.wsdb{word-spacing:2.044049px;}
.ws243{word-spacing:2.044408px;}
.wse2{word-spacing:2.104066px;}
.ws1c5{word-spacing:2.163964px;}
.ws216{word-spacing:2.164083px;}
.ws22b{word-spacing:2.187695px;}
.ws1ed{word-spacing:2.283520px;}
.ws1cf{word-spacing:2.343058px;}
.ws1b4{word-spacing:2.402896px;}
.wse7{word-spacing:2.403076px;}
.ws23a{word-spacing:2.414732px;}
.ws50{word-spacing:2.462854px;}
.wse{word-spacing:2.516654px;}
.wsc2{word-spacing:2.582290px;}
.ws79{word-spacing:2.582469px;}
.ws22e{word-spacing:2.594126px;}
.ws1ec{word-spacing:2.606321px;}
.ws138{word-spacing:2.641650px;}
.ws1ce{word-spacing:2.642188px;}
.ws1be{word-spacing:2.642247px;}
.ws20f{word-spacing:2.725937px;}
.ws1fe{word-spacing:2.761684px;}
.ws1f7{word-spacing:2.773520px;}
.ws154{word-spacing:2.817904px;}
.ws166{word-spacing:2.818415px;}
.ws167{word-spacing:2.875284px;}
.wsb0{word-spacing:2.881060px;}
.ws161{word-spacing:2.885315px;}
.ws1fc{word-spacing:2.904972px;}
.ws16f{word-spacing:2.908010px;}
.ws159{word-spacing:2.917051px;}
.ws1a0{word-spacing:2.941078px;}
.ws256{word-spacing:2.941257px;}
.wsb{word-spacing:2.994818px;}
.ws80{word-spacing:3.000497px;}
.ws7f{word-spacing:3.000676px;}
.ws81{word-spacing:3.001095px;}
.ws82{word-spacing:3.001692px;}
.ws1fd{word-spacing:3.025006px;}
.ws96{word-spacing:3.040124px;}
.ws2b{word-spacing:3.060454px;}
.ws2c{word-spacing:3.119874px;}
.ws9b{word-spacing:3.121437px;}
.ws9a{word-spacing:3.121633px;}
.ws98{word-spacing:3.122002px;}
.ws9d{word-spacing:3.132876px;}
.ws254{word-spacing:3.143785px;}
.ws1b8{word-spacing:3.179891px;}
.ws1b9{word-spacing:3.180488px;}
.ws255{word-spacing:3.204400px;}
.ws1af{word-spacing:3.239848px;}
.ws53{word-spacing:3.299267px;}
.ws28{word-spacing:3.299447px;}
.ws94{word-spacing:3.299746px;}
.ws5a{word-spacing:3.299865px;}
.ws36{word-spacing:3.300044px;}
.ws106{word-spacing:3.313629px;}
.ws14c{word-spacing:3.359464px;}
.wsbf{word-spacing:3.359524px;}
.wsd1{word-spacing:3.359882px;}
.ws211{word-spacing:3.371479px;}
.wse3{word-spacing:3.419302px;}
.ws20e{word-spacing:3.431138px;}
.ws23b{word-spacing:3.442914px;}
.ws180{word-spacing:3.468000px;}
.ws38{word-spacing:3.479259px;}
.ws181{word-spacing:3.528000px;}
.ws75{word-spacing:3.538678px;}
.ws68{word-spacing:3.598695px;}
.ws20{word-spacing:3.658892px;}
.wsee{word-spacing:3.718072px;}
.wsf1{word-spacing:3.718192px;}
.ws184{word-spacing:3.768000px;}
.ws109{word-spacing:3.777491px;}
.ws6c{word-spacing:3.777671px;}
.ws1a6{word-spacing:3.777970px;}
.ws1d2{word-spacing:3.778268px;}
.ws237{word-spacing:3.801701px;}
.ws183{word-spacing:3.828000px;}
.wsd9{word-spacing:3.897466px;}
.ws1df{word-spacing:3.897526px;}
.ws149{word-spacing:3.898064px;}
.wsd{word-spacing:3.951266px;}
.ws147{word-spacing:3.957124px;}
.wsb3{word-spacing:4.016902px;}
.ws1b6{word-spacing:4.017500px;}
.ws182{word-spacing:4.068000px;}
.ws132{word-spacing:4.076860px;}
.ws16e{word-spacing:4.094467px;}
.ws6f{word-spacing:4.136518px;}
.ws1a2{word-spacing:4.136638px;}
.ws25{word-spacing:4.136877px;}
.wsec{word-spacing:4.160870px;}
.ws188{word-spacing:4.188000px;}
.ws1a1{word-spacing:4.196296px;}
.wseb{word-spacing:4.196475px;}
.ws187{word-spacing:4.242000px;}
.ws189{word-spacing:4.248000px;}
.ws40{word-spacing:4.255656px;}
.wsa4{word-spacing:4.315673px;}
.wsea{word-spacing:4.315972px;}
.ws222{word-spacing:4.327569px;}
.ws258{word-spacing:4.327748px;}
.ws17a{word-spacing:4.375092px;}
.ws136{word-spacing:4.435707px;}
.ws228{word-spacing:4.459319px;}
.ws13{word-spacing:4.489447px;}
.ws108{word-spacing:4.495066px;}
.ws89{word-spacing:4.555323px;}
.ws7b{word-spacing:4.614503px;}
.ws13e{word-spacing:4.614742px;}
.ws95{word-spacing:4.614862px;}
.ws7{word-spacing:4.668841px;}
.ws1ad{word-spacing:4.674460px;}
.ws52{word-spacing:4.674699px;}
.wse5{word-spacing:4.712590px;}
.ws17c{word-spacing:4.733880px;}
.ws7d{word-spacing:4.734119px;}
.ws1bc{word-spacing:4.734418px;}
.ws70{word-spacing:4.794136px;}
.wsbd{word-spacing:4.794196px;}
.ws13f{word-spacing:4.853854px;}
.wsc9{word-spacing:4.913871px;}
.ws244{word-spacing:4.925707px;}
.ws4f{word-spacing:5.033248px;}
.ws215{word-spacing:5.045263px;}
.ws18a{word-spacing:5.142000px;}
.ws46{word-spacing:5.152684px;}
.ws1c1{word-spacing:5.152864px;}
.ws18b{word-spacing:5.202000px;}
.ws4{word-spacing:5.250274px;}
.ws173{word-spacing:5.269530px;}
.ws225{word-spacing:5.332078px;}
.ws186{word-spacing:5.382000px;}
.ws6b{word-spacing:5.391736px;}
.ws69{word-spacing:5.392095px;}
.ws6a{word-spacing:5.392334px;}
.ws185{word-spacing:5.442000px;}
.ws252{word-spacing:5.463948px;}
.ws193{word-spacing:5.502000px;}
.ws220{word-spacing:5.511771px;}
.ws8e{word-spacing:5.571130px;}
.ws11{word-spacing:5.624811px;}
.ws14{word-spacing:5.625110px;}
.ws224{word-spacing:5.655118px;}
.ws219{word-spacing:5.690866px;}
.wsb7{word-spacing:5.750285px;}
.ws242{word-spacing:5.750584px;}
.ws1aa{word-spacing:5.810302px;}
.wsb6{word-spacing:5.810541px;}
.ws3d{word-spacing:5.810900px;}
.ws19f{word-spacing:5.929978px;}
.ws3c{word-spacing:6.049354px;}
.ws23c{word-spacing:6.061549px;}
.ws194{word-spacing:6.096000px;}
.ws1b1{word-spacing:6.109072px;}
.ws1a4{word-spacing:6.109312px;}
.wsf9{word-spacing:6.109371px;}
.ws207{word-spacing:6.120968px;}
.ws1f8{word-spacing:6.121207px;}
.ws1e1{word-spacing:6.121267px;}
.ws17d{word-spacing:6.169090px;}
.ws14a{word-spacing:6.169388px;}
.wsc{word-spacing:6.282847px;}
.ws195{word-spacing:6.336000px;}
.ws176{word-spacing:6.348483px;}
.ws196{word-spacing:6.396000px;}
.ws204{word-spacing:6.407903px;}
.ws2a{word-spacing:6.408202px;}
.ws110{word-spacing:6.467860px;}
.ws14b{word-spacing:6.468219px;}
.wsa7{word-spacing:6.468458px;}
.ws213{word-spacing:6.492548px;}
.ws1ca{word-spacing:6.527578px;}
.ws10d{word-spacing:6.527877px;}
.ws235{word-spacing:6.552087px;}
.ws57{word-spacing:6.587595px;}
.wsa3{word-spacing:6.599491px;}
.ws13b{word-spacing:6.647254px;}
.ws107{word-spacing:6.659150px;}
.ws135{word-spacing:6.659449px;}
.wsb5{word-spacing:6.707032px;}
.ws178{word-spacing:6.766092px;}
.ws1ef{word-spacing:6.790781px;}
.ws30{word-spacing:6.826408px;}
.ws131{word-spacing:6.826528px;}
.wsa9{word-spacing:6.826588px;}
.ws84{word-spacing:6.826707px;}
.ws83{word-spacing:6.827006px;}
.ws8{word-spacing:6.880448px;}
.ws1a3{word-spacing:6.886426px;}
.ws1b7{word-spacing:6.886665px;}
.ws1d3{word-spacing:6.946084px;}
.ws247{word-spacing:6.970115px;}
.ws10e{word-spacing:7.006101px;}
.ws54{word-spacing:7.065222px;}
.wse0{word-spacing:7.065760px;}
.ws142{word-spacing:7.065819px;}
.wsae{word-spacing:7.125538px;}
.wsc7{word-spacing:7.185495px;}
.ws86{word-spacing:7.244615px;}
.ws47{word-spacing:7.244854px;}
.ws85{word-spacing:7.245213px;}
.ws87{word-spacing:7.245452px;}
.ws1ba{word-spacing:7.364291px;}
.ws92{word-spacing:7.364650px;}
.wsdd{word-spacing:7.364889px;}
.ws2e{word-spacing:7.424009px;}
.wsc4{word-spacing:7.424248px;}
.ws1c4{word-spacing:7.424368px;}
.ws37{word-spacing:7.483668px;}
.ws1d4{word-spacing:7.484265px;}
.wsdf{word-spacing:7.543984px;}
.ws226{word-spacing:7.544282px;}
.ws250{word-spacing:7.567775px;}
.ws1ff{word-spacing:7.663420px;}
.ws45{word-spacing:7.663659px;}
.ws10f{word-spacing:7.723078px;}
.wscc{word-spacing:7.783096px;}
.ws93{word-spacing:7.843053px;}
.ws20c{word-spacing:7.866785px;}
.ws3{word-spacing:7.918992px;}
.ws144{word-spacing:7.962489px;}
.ws4e{word-spacing:8.022267px;}
.ws24a{word-spacing:8.081866px;}
.ws1ac{word-spacing:8.081986px;}
.wsf8{word-spacing:8.082284px;}
.ws2f{word-spacing:8.082464px;}
.ws209{word-spacing:8.105897px;}
.ws25f{word-spacing:8.106016px;}
.ws1e4{word-spacing:8.106136px;}
.wse9{word-spacing:8.115965px;}
.ws44{word-spacing:8.141644px;}
.wsc6{word-spacing:8.141764px;}
.ws4c{word-spacing:8.141883px;}
.ws1cd{word-spacing:8.201302px;}
.ws1b5{word-spacing:8.201542px;}
.ws201{word-spacing:8.213497px;}
.ws146{word-spacing:8.261080px;}
.ws1e0{word-spacing:8.261260px;}
.ws175{word-spacing:8.321277px;}
.wsbe{word-spacing:8.380696px;}
.ws1f0{word-spacing:8.392532px;}
.wsf2{word-spacing:8.410584px;}
.wsad{word-spacing:8.440474px;}
.ws1e{word-spacing:8.440654px;}
.ws6{word-spacing:8.494454px;}
.wsb1{word-spacing:8.500432px;}
.ws103{word-spacing:8.619450px;}
.ws104{word-spacing:8.669318px;}
.wse1{word-spacing:8.679467px;}
.ws229{word-spacing:8.739484px;}
.ws19d{word-spacing:8.739544px;}
.ws1b0{word-spacing:8.799262px;}
.ws17b{word-spacing:8.918878px;}
.ws9{word-spacing:8.972618px;}
.ws1d1{word-spacing:8.978297px;}
.ws26{word-spacing:8.978715px;}
.ws1c0{word-spacing:8.978895px;}
.ws8a{word-spacing:9.097674px;}
.ws1de{word-spacing:9.109349px;}
.ws27{word-spacing:9.158109px;}
.ws214{word-spacing:9.158288px;}
.ws24c{word-spacing:9.277486px;}
.ws1cb{word-spacing:9.277665px;}
.ws179{word-spacing:9.337084px;}
.ws51{word-spacing:9.337503px;}
.ws20a{word-spacing:9.349219px;}
.ws72{word-spacing:9.456461px;}
.ws13d{word-spacing:9.457059px;}
.ws19b{word-spacing:9.516478px;}
.ws141{word-spacing:9.576316px;}
.ws130{word-spacing:9.635855px;}
.ws1c9{word-spacing:9.636453px;}
.wsac{word-spacing:9.695752px;}
.wscb{word-spacing:9.695872px;}
.wsab{word-spacing:9.696350px;}
.ws19c{word-spacing:9.755770px;}
.ws19{word-spacing:9.755774px;}
.ws143{word-spacing:9.755889px;}
.ws17{word-spacing:9.756260px;}
.ws18{word-spacing:9.757816px;}
.ws15{word-spacing:9.758252px;}
.ws152{word-spacing:9.803360px;}
.ws153{word-spacing:9.812987px;}
.ws1e6{word-spacing:9.815548px;}
.ws17f{word-spacing:9.815906px;}
.ws212{word-spacing:9.827742px;}
.ws1f3{word-spacing:9.878701px;}
.ws262{word-spacing:9.887358px;}
.ws49{word-spacing:9.935283px;}
.ws20d{word-spacing:9.947059px;}
.wsda{word-spacing:9.994702px;}
.ws39{word-spacing:9.995121px;}
.ws227{word-spacing:10.006538px;}
.ws3f{word-spacing:10.054660px;}
.wsc3{word-spacing:10.114557px;}
.ws218{word-spacing:10.174096px;}
.wsf{word-spacing:10.227836px;}
.ws20b{word-spacing:10.234053px;}
.ws1e5{word-spacing:10.317743px;}
.ws1bf{word-spacing:10.353550px;}
.ws43{word-spacing:10.413507px;}
.ws24b{word-spacing:10.485061px;}
.wsd6{word-spacing:10.652440px;}
.ws1dc{word-spacing:10.735890px;}
.ws29{word-spacing:10.772175px;}
.ws169{word-spacing:10.783058px;}
.wsca{word-spacing:10.831654px;}
.wsa{word-spacing:10.945471px;}
.ws73{word-spacing:11.011108px;}
.ws22a{word-spacing:11.082961px;}
.ws4d{word-spacing:11.130484px;}
.ws3b{word-spacing:11.190501px;}
.ws15e{word-spacing:11.191510px;}
.ws18d{word-spacing:11.298000px;}
.ws91{word-spacing:11.310416px;}
.wsde{word-spacing:11.369776px;}
.ws1c3{word-spacing:11.429255px;}
.ws1d{word-spacing:11.489272px;}
.ws8f{word-spacing:11.548572px;}
.ws21f{word-spacing:11.548691px;}
.ws90{word-spacing:11.549289px;}
.ws1cc{word-spacing:11.608708px;}
.wsa6{word-spacing:11.668666px;}
.ws3a{word-spacing:11.728683px;}
.ws160{word-spacing:11.753181px;}
.wse4{word-spacing:11.848000px;}
.ws203{word-spacing:11.872329px;}
.ws23d{word-spacing:11.931689px;}
.ws1a9{word-spacing:12.087112px;}
.ws10{word-spacing:12.140613px;}
.ws76{word-spacing:12.146890px;}
.ws1b3{word-spacing:12.206249px;}
.ws140{word-spacing:12.266206px;}
.ws1dd{word-spacing:12.290536px;}
.ws230{word-spacing:12.445660px;}
.ws158{word-spacing:12.468073px;}
.ws1bb{word-spacing:12.505677px;}
.ws157{word-spacing:12.507743px;}
.ws1ee{word-spacing:12.577291px;}
.ws139{word-spacing:12.625054px;}
.ws240{word-spacing:12.649025px;}
.ws205{word-spacing:12.684892px;}
.ws191{word-spacing:12.792000px;}
.ws1b2{word-spacing:12.804448px;}
.wsff{word-spacing:12.804507px;}
.ws192{word-spacing:12.852000px;}
.ws77{word-spacing:12.923884px;}
.wsaa{word-spacing:12.983782px;}
.wsd4{word-spacing:13.043261px;}
.ws3e{word-spacing:13.043858px;}
.ws22f{word-spacing:13.067531px;}
.ws12{word-spacing:13.135261px;}
.ws266{word-spacing:13.246327px;}
.ws25a{word-spacing:13.246984px;}
.ws202{word-spacing:13.274015px;}
.ws208{word-spacing:13.277015px;}
.ws1db{word-spacing:13.280015px;}
.ws1f2{word-spacing:13.282672px;}
.ws23e{word-spacing:13.473961px;}
.ws17e{word-spacing:13.522082px;}
.wsa2{word-spacing:13.641459px;}
.ws177{word-spacing:13.760896px;}
.ws1d0{word-spacing:13.820853px;}
.ws263{word-spacing:13.844525px;}
.ws1f1{word-spacing:13.964021px;}
.ws25d{word-spacing:14.358496px;}
.ws172{word-spacing:14.560925px;}
.ws206{word-spacing:14.669521px;}
.ws16{word-spacing:14.770974px;}
.ws217{word-spacing:14.801033px;}
.ws15b{word-spacing:14.854810px;}
.ws15c{word-spacing:14.867365px;}
.ws21e{word-spacing:14.956695px;}
.ws199{word-spacing:15.016054px;}
.ws1e7{word-spacing:15.195568px;}
.ws8c{word-spacing:15.374304px;}
.ws190{word-spacing:15.420000px;}
.ws18f{word-spacing:15.426000px;}
.ws8d{word-spacing:15.434978px;}
.wsbc{word-spacing:15.613655px;}
.ws21c{word-spacing:15.757481px;}
.ws25e{word-spacing:16.283826px;}
.ws1a7{word-spacing:16.510684px;}
.ws115{word-spacing:16.570462px;}
.ws238{word-spacing:16.774305px;}
.ws21b{word-spacing:16.952742px;}
.ws19a{word-spacing:17.168301px;}
.ws241{word-spacing:17.252529px;}
.ws18e{word-spacing:17.694000px;}
.ws25b{word-spacing:17.765902px;}
.ws15f{word-spacing:17.930851px;}
.wsa0{word-spacing:18.124690px;}
.ws253{word-spacing:18.208618px;}
.ws5{word-spacing:18.245664px;}
.ws42{word-spacing:18.662512px;}
.ws233{word-spacing:18.674767px;}
.ws21d{word-spacing:18.806219px;}
.ws171{word-spacing:19.922305px;}
.ws1ab{word-spacing:20.097124px;}
.ws2d{word-spacing:20.156902px;}
.ws234{word-spacing:20.396254px;}
.wsb9{word-spacing:20.456032px;}
.ws249{word-spacing:20.814759px;}
.ws1f9{word-spacing:21.196741px;}
.ws1fa{word-spacing:21.197339px;}
.ws1ea{word-spacing:21.831224px;}
.ws236{word-spacing:22.452736px;}
.ws16c{word-spacing:22.516087px;}
.ws16d{word-spacing:22.525569px;}
.ws231{word-spacing:22.667877px;}
.ws1e9{word-spacing:23.098219px;}
.ws232{word-spacing:23.277374px;}
.ws15d{word-spacing:23.700172px;}
.ws259{word-spacing:24.402639px;}
.ws25c{word-spacing:24.938903px;}
.ws248{word-spacing:26.397965px;}
.ws1f5{word-spacing:26.613405px;}
.ws1da{word-spacing:26.672944px;}
.ws24d{word-spacing:27.294754px;}
.ws1e3{word-spacing:27.952193px;}
.ws1f4{word-spacing:27.952372px;}
.ws2{word-spacing:27.974700px;}
.ws246{word-spacing:31.598651px;}
.ws8b{word-spacing:35.220480px;}
.ws239{word-spacing:35.221078px;}
.ws1d9{word-spacing:43.165422px;}
.ws14f{word-spacing:44.960257px;}
.ws12d{word-spacing:47.580271px;}
.ws11b{word-spacing:47.585970px;}
.ws120{word-spacing:47.590935px;}
.ws12a{word-spacing:47.591651px;}
.ws123{word-spacing:47.596205px;}
.ws122{word-spacing:47.596484px;}
.ws11c{word-spacing:47.596721px;}
.ws12e{word-spacing:47.599332px;}
.ws118{word-spacing:47.599420px;}
.ws11a{word-spacing:47.601883px;}
.ws125{word-spacing:47.601884px;}
.ws12c{word-spacing:47.611872px;}
.ws1fb{word-spacing:49.113425px;}
.ws1e2{word-spacing:49.292939px;}
.ws21a{word-spacing:49.771043px;}
.ws7e{word-spacing:50.476782px;}
.ws1d7{word-spacing:56.621722px;}
.ws134{word-spacing:60.568669px;}
.ws1a{word-spacing:60.568812px;}
.ws1e8{word-spacing:65.006912px;}
.ws245{word-spacing:72.546162px;}
.ws156{word-spacing:72.747302px;}
.ws11d{word-spacing:73.403631px;}
.ws121{word-spacing:73.408484px;}
.ws151{word-spacing:76.352165px;}
.ws1d6{word-spacing:79.038472px;}
.ws126{word-spacing:97.790222px;}
.ws129{word-spacing:103.511389px;}
.ws124{word-spacing:109.101651px;}
.ws127{word-spacing:112.828492px;}
.ws12b{word-spacing:113.551148px;}
.ws11e{word-spacing:115.682830px;}
.ws128{word-spacing:127.168057px;}
.ws1d8{word-spacing:132.756515px;}
.ws14e{word-spacing:150.397986px;}
.ws9f{word-spacing:166.116522px;}
.ws170{word-spacing:168.237493px;}
.ws16b{word-spacing:190.090853px;}
.ws15a{word-spacing:192.646481px;}
.ws162{word-spacing:201.279298px;}
.ws97{word-spacing:223.347844px;}
.ws114{word-spacing:235.426672px;}
.ws150{word-spacing:249.677852px;}
.ws155{word-spacing:280.334399px;}
.wsf7{word-spacing:303.256007px;}
.ws9c{word-spacing:312.250223px;}
.wsb4{word-spacing:316.022375px;}
.ws102{word-spacing:323.524007px;}
.ws9e{word-spacing:351.243538px;}
._31{margin-left:-62.489635px;}
._30{margin-left:-61.394292px;}
._a{margin-left:-31.098413px;}
._44{margin-left:-29.889000px;}
._4{margin-left:-27.651574px;}
._8{margin-left:-25.710696px;}
._45{margin-left:-24.159662px;}
._47{margin-left:-22.799623px;}
._7{margin-left:-20.442588px;}
._2e{margin-left:-16.653509px;}
._1{margin-left:-10.385183px;}
._4c{margin-left:-8.455031px;}
._6{margin-left:-7.208395px;}
._2{margin-left:-6.139954px;}
._5{margin-left:-4.838358px;}
._13{margin-left:-3.148649px;}
._3{margin-left:-1.993706px;}
._0{width:1.750078px;}
._49{width:2.898651px;}
._19{width:4.086833px;}
._3c{width:5.521801px;}
._46{width:8.595015px;}
._48{width:10.042704px;}
._2d{width:13.257146px;}
._39{width:14.944799px;}
._18{width:16.100836px;}
._10{width:17.619398px;}
._12{width:18.992229px;}
._4a{width:20.146262px;}
._1a{width:21.223847px;}
._1b{width:23.040380px;}
._9{width:24.132599px;}
._14{width:25.226137px;}
._d{width:26.486170px;}
._f{width:27.977060px;}
._1f{width:29.175045px;}
._b{width:30.307446px;}
._16{width:32.159428px;}
._41{width:33.915431px;}
._20{width:35.507953px;}
._c{width:36.643974px;}
._2f{width:37.919866px;}
._e{width:39.731575px;}
._3e{width:40.889108px;}
._11{width:42.006699px;}
._17{width:43.300543px;}
._2b{width:45.397591px;}
._40{width:46.711708px;}
._2c{width:47.881461px;}
._1e{width:50.751642px;}
._15{width:52.726319px;}
._38{width:53.821352px;}
._1c{width:55.414624px;}
._42{width:56.428526px;}
._3b{width:57.949513px;}
._3f{width:59.121710px;}
._34{width:61.386478px;}
._33{width:62.496782px;}
._4b{width:63.642896px;}
._2a{width:65.755800px;}
._3d{width:68.011087px;}
._1d{width:78.902857px;}
._3a{width:85.366641px;}
._36{width:87.785465px;}
._43{width:96.495676px;}
._35{width:117.680749px;}
._21{width:120.634657px;}
._37{width:125.733050px;}
._32{width:130.017730px;}
._24{width:177.312280px;}
._27{width:194.325149px;}
._23{width:211.104357px;}
._28{width:233.439255px;}
._22{width:238.008503px;}
._25{width:243.423372px;}
._26{width:260.436241px;}
._29{width:442.505887px;}
.fc7{color:rgb(236,0,140);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,104,152);}
.fc1{color:rgb(148,150,153);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.323517px;}
.fs8{font-size:41.844000px;}
.fsc{font-size:43.856696px;}
.fs6{font-size:47.820000px;}
.fs9{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fsf{font-size:51.056390px;}
.fse{font-size:51.618303px;}
.fs5{font-size:53.796000px;}
.fsa{font-size:56.555966px;}
.fs1{font-size:59.761202px;}
.fs7{font-size:59.778000px;}
.fsb{font-size:62.653322px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y5c{bottom:41.879334px;}
.y5e{bottom:42.993625px;}
.y219{bottom:106.297500px;}
.y3b{bottom:106.299000px;}
.y3a{bottom:124.231500px;}
.y5b{bottom:126.778500px;}
.y39{bottom:142.164000px;}
.y1e4{bottom:142.402500px;}
.y218{bottom:143.338500px;}
.y5a{bottom:144.711000px;}
.y116{bottom:152.620500px;}
.y38{bottom:160.096500px;}
.ya8{bottom:160.098000px;}
.y1e3{bottom:160.335000px;}
.y217{bottom:161.271000px;}
.y59{bottom:162.643500px;}
.y113{bottom:170.253000px;}
.y1c1{bottom:178.029000px;}
.y85{bottom:178.030500px;}
.y1e2{bottom:178.267500px;}
.y216{bottom:180.379500px;}
.y58{bottom:180.576000px;}
.y37{bottom:181.305000px;}
.y115{bottom:184.449000px;}
.y114{bottom:188.932500px;}
.y1c0{bottom:195.961500px;}
.y84{bottom:195.963000px;}
.y1e1{bottom:196.438500px;}
.y183{bottom:196.975500px;}
.y215{bottom:198.312000px;}
.y57{bottom:198.508500px;}
.y36{bottom:199.237500px;}
.ya7{bottom:213.895500px;}
.y83{bottom:214.213500px;}
.y112{bottom:214.354500px;}
.y1e0{bottom:214.371000px;}
.y182{bottom:214.908000px;}
.y19b{bottom:215.601000px;}
.y214{bottom:216.244500px;}
.y56{bottom:216.442500px;}
.y35{bottom:217.171500px;}
.ya6{bottom:231.828000px;}
.y82{bottom:232.146000px;}
.y111{bottom:232.287000px;}
.y1df{bottom:232.542000px;}
.y181{bottom:232.840500px;}
.y19a{bottom:233.533500px;}
.y213{bottom:234.178500px;}
.y55{bottom:234.375000px;}
.y34{bottom:235.104000px;}
.ya5{bottom:249.760500px;}
.y81{bottom:250.080000px;}
.y110{bottom:250.219500px;}
.y1de{bottom:250.474500px;}
.y180{bottom:250.773000px;}
.y199{bottom:251.466000px;}
.y212{bottom:252.111000px;}
.y54{bottom:252.307500px;}
.y33{bottom:253.036500px;}
.yd8{bottom:267.693000px;}
.ya4{bottom:267.694500px;}
.y80{bottom:268.012500px;}
.y1dd{bottom:268.645500px;}
.y17f{bottom:269.719500px;}
.y211{bottom:270.043500px;}
.y53{bottom:270.240000px;}
.y32{bottom:270.969000px;}
.y198{bottom:271.104000px;}
.y10f{bottom:279.505500px;}
.y1bf{bottom:285.625500px;}
.y149{bottom:285.627000px;}
.yd7{bottom:285.943500px;}
.y7f{bottom:285.945000px;}
.y1dc{bottom:286.578000px;}
.y17e{bottom:287.652000px;}
.y52{bottom:288.172500px;}
.y31{bottom:288.901500px;}
.y197{bottom:289.036500px;}
.y210{bottom:289.152000px;}
.ya3{bottom:295.551000px;}
.y10e{bottom:299.014500px;}
.y148{bottom:303.559500px;}
.yd6{bottom:303.876000px;}
.y7e{bottom:303.877500px;}
.y1db{bottom:304.510500px;}
.y17d{bottom:305.584500px;}
.y51{bottom:306.105000px;}
.y30{bottom:306.834000px;}
.y196{bottom:306.970500px;}
.y20f{bottom:307.084500px;}
.y1be{bottom:313.210500px;}
.y10d{bottom:318.522000px;}
.y147{bottom:321.492000px;}
.yd5{bottom:321.808500px;}
.y7d{bottom:321.810000px;}
.y1da{bottom:322.443000px;}
.y17c{bottom:323.517000px;}
.y50{bottom:324.039000px;}
.y2f{bottom:324.768000px;}
.y195{bottom:324.903000px;}
.y20e{bottom:325.017000px;}
.ya2{bottom:336.783000px;}
.y10c{bottom:339.304500px;}
.y146{bottom:339.424500px;}
.yd4{bottom:339.741000px;}
.y7c{bottom:339.742500px;}
.y1d9{bottom:340.377000px;}
.y17b{bottom:341.449500px;}
.y2e{bottom:342.700500px;}
.y194{bottom:342.835500px;}
.y20d{bottom:342.949500px;}
.y4f{bottom:344.517000px;}
.ya1{bottom:354.715500px;}
.y1bd{bottom:355.876500px;}
.y145{bottom:357.357000px;}
.yd3{bottom:357.673500px;}
.y1d8{bottom:358.546500px;}
.y17a{bottom:359.382000px;}
.y193{bottom:360.768000px;}
.y20c{bottom:360.882000px;}
.y4e{bottom:362.451000px;}
.y2d{bottom:363.907500px;}
.y109{bottom:366.864000px;}
.y7b{bottom:367.920000px;}
.ya0{bottom:372.648000px;}
.y1bc{bottom:373.809000px;}
.y10b{bottom:374.244000px;}
.y144{bottom:375.291000px;}
.yd2{bottom:375.606000px;}
.y1d7{bottom:376.480500px;}
.y179{bottom:377.316000px;}
.y192{bottom:378.700500px;}
.y20b{bottom:379.990500px;}
.y4d{bottom:380.383500px;}
.y2c{bottom:381.841500px;}
.y106{bottom:384.495000px;}
.y9f{bottom:390.580500px;}
.y1bb{bottom:391.743000px;}
.y143{bottom:393.223500px;}
.yd1{bottom:393.540000px;}
.y1d6{bottom:394.413000px;}
.y10a{bottom:394.605000px;}
.y178{bottom:395.248500px;}
.y7a{bottom:396.097500px;}
.y191{bottom:396.633000px;}
.y20a{bottom:397.923000px;}
.y4c{bottom:398.316000px;}
.y108{bottom:398.692500px;}
.y2b{bottom:399.774000px;}
.y107{bottom:403.176000px;}
.y9e{bottom:408.514500px;}
.y1ba{bottom:409.675500px;}
.y142{bottom:411.156000px;}
.yd0{bottom:411.472500px;}
.y1d5{bottom:412.345500px;}
.y177{bottom:414.196500px;}
.y209{bottom:415.855500px;}
.y4b{bottom:416.248500px;}
.y190{bottom:416.271000px;}
.y2a{bottom:417.706500px;}
.y9d{bottom:426.447000px;}
.y1b9{bottom:427.608000px;}
.y105{bottom:428.596500px;}
.y141{bottom:429.088500px;}
.ycf{bottom:429.405000px;}
.y1d4{bottom:430.278000px;}
.y176{bottom:432.129000px;}
.y208{bottom:433.788000px;}
.y4a{bottom:434.181000px;}
.y18f{bottom:434.205000px;}
.y29{bottom:435.639000px;}
.y79{bottom:441.228000px;}
.y9c{bottom:444.526500px;}
.y1b8{bottom:445.540500px;}
.y104{bottom:446.529000px;}
.y140{bottom:447.021000px;}
.yce{bottom:447.337500px;}
.y1d3{bottom:448.210500px;}
.y175{bottom:450.061500px;}
.y49{bottom:452.115000px;}
.y18e{bottom:452.137500px;}
.y207{bottom:452.896500px;}
.y28{bottom:456.847500px;}
.y78{bottom:459.160500px;}
.y9b{bottom:462.459000px;}
.y1b7{bottom:463.473000px;}
.y103{bottom:464.461500px;}
.y13f{bottom:464.953500px;}
.y1d2{bottom:466.143000px;}
.y174{bottom:467.994000px;}
.y48{bottom:470.047500px;}
.y18d{bottom:470.070000px;}
.y206{bottom:470.829000px;}
.y27{bottom:474.780000px;}
.y23b{bottom:475.594500px;}
.y77{bottom:477.093000px;}
.ycd{bottom:478.174500px;}
.y9a{bottom:480.391500px;}
.y1b6{bottom:481.405500px;}
.y102{bottom:482.394000px;}
.y13e{bottom:482.887500px;}
.y1d1{bottom:484.314000px;}
.y173{bottom:485.926500px;}
.y47{bottom:487.980000px;}
.y18c{bottom:488.002500px;}
.y205{bottom:488.761500px;}
.y26{bottom:492.712500px;}
.y23a{bottom:493.527000px;}
.y76{bottom:495.025500px;}
.ycc{bottom:498.466500px;}
.y1b5{bottom:499.339500px;}
.y101{bottom:500.328000px;}
.y13d{bottom:500.820000px;}
.y1d0{bottom:502.246500px;}
.y172{bottom:503.859000px;}
.y46{bottom:505.912500px;}
.y18b{bottom:505.935000px;}
.y204{bottom:507.870000px;}
.y99{bottom:508.249500px;}
.y25{bottom:510.645000px;}
.y239{bottom:511.461000px;}
.y75{bottom:512.959500px;}
.y1b4{bottom:517.272000px;}
.y100{bottom:518.260500px;}
.y13c{bottom:518.752500px;}
.ycb{bottom:518.757000px;}
.y1cf{bottom:520.180500px;}
.y171{bottom:521.791500px;}
.y45{bottom:523.845000px;}
.y18a{bottom:523.869000px;}
.y203{bottom:525.802500px;}
.y24{bottom:528.577500px;}
.y238{bottom:530.223000px;}
.y74{bottom:530.892000px;}
.y1b3{bottom:535.204500px;}
.yff{bottom:536.193000px;}
.y13b{bottom:536.685000px;}
.y1ce{bottom:538.113000px;}
.y170{bottom:539.724000px;}
.yca{bottom:541.090500px;}
.y44{bottom:541.777500px;}
.y189{bottom:541.801500px;}
.y202{bottom:543.735000px;}
.y23{bottom:546.511500px;}
.y237{bottom:548.155500px;}
.y73{bottom:549.142500px;}
.y98{bottom:549.480000px;}
.y1b2{bottom:553.137000px;}
.yfe{bottom:554.125500px;}
.y13a{bottom:554.617500px;}
.y1cd{bottom:556.045500px;}
.y16f{bottom:557.656500px;}
.y43{bottom:559.711500px;}
.y201{bottom:562.843500px;}
.y22{bottom:564.444000px;}
.y236{bottom:566.089500px;}
.y72{bottom:567.075000px;}
.y97{bottom:567.414000px;}
.yc9{bottom:568.938000px;}
.y1b1{bottom:571.069500px;}
.yfd{bottom:572.058000px;}
.y139{bottom:572.550000px;}
.y188{bottom:572.559000px;}
.y1cc{bottom:574.216500px;}
.y16e{bottom:575.589000px;}
.y42{bottom:577.644000px;}
.y200{bottom:580.776000px;}
.y21{bottom:582.376500px;}
.y235{bottom:584.022000px;}
.y71{bottom:585.009000px;}
.y96{bottom:585.346500px;}
.yc8{bottom:587.820000px;}
.y1b0{bottom:589.002000px;}
.yfc{bottom:589.990500px;}
.y138{bottom:590.484000px;}
.y1cb{bottom:592.149000px;}
.y16d{bottom:593.521500px;}
.y41{bottom:595.576500px;}
.y1ff{bottom:598.708500px;}
.y20{bottom:600.309000px;}
.y234{bottom:602.784000px;}
.y70{bottom:602.941500px;}
.y95{bottom:603.279000px;}
.yc7{bottom:605.754000px;}
.y1af{bottom:606.936000px;}
.yfb{bottom:607.924500px;}
.y137{bottom:608.416500px;}
.y1ca{bottom:610.081500px;}
.y40{bottom:613.509000px;}
.y1fe{bottom:616.642500px;}
.y1f{bottom:618.241500px;}
.y233{bottom:620.718000px;}
.y6f{bottom:620.874000px;}
.y16c{bottom:622.989000px;}
.yc6{bottom:623.686500px;}
.y1ae{bottom:624.868500px;}
.y187{bottom:625.284000px;}
.y136{bottom:626.349000px;}
.y1c9{bottom:628.014000px;}
.y3f{bottom:631.441500px;}
.y1fd{bottom:634.575000px;}
.yfa{bottom:635.508000px;}
.y1e{bottom:636.174000px;}
.y232{bottom:638.650500px;}
.y6e{bottom:638.806500px;}
.yc5{bottom:641.619000px;}
.y1ad{bottom:642.801000px;}
.y186{bottom:643.216500px;}
.y1c8{bottom:645.948000px;}
.y3e{bottom:649.374000px;}
.y1fc{bottom:652.507500px;}
.y135{bottom:653.932500px;}
.y94{bottom:654.033857px;}
.y1d{bottom:654.108000px;}
.y231{bottom:656.583000px;}
.y6d{bottom:656.739000px;}
.yc4{bottom:659.551500px;}
.y1ac{bottom:660.733500px;}
.y1c7{bottom:663.880500px;}
.y16b{bottom:668.814000px;}
.y3d{bottom:669.853500px;}
.y1fb{bottom:670.440000px;}
.y93{bottom:670.999795px;}
.y1c{bottom:672.040500px;}
.y6c{bottom:674.671500px;}
.y230{bottom:675.346500px;}
.yf9{bottom:675.831000px;}
.yc3{bottom:677.800500px;}
.y1ab{bottom:678.666000px;}
.y134{bottom:681.517500px;}
.y16a{bottom:686.746500px;}
.y3c{bottom:687.787500px;}
.y92{bottom:687.965734px;}
.y1c6{bottom:689.533500px;}
.y1fa{bottom:689.548500px;}
.y6b{bottom:692.605500px;}
.y22f{bottom:693.279000px;}
.yf8{bottom:693.763500px;}
.yc2{bottom:695.733000px;}
.y1aa{bottom:696.598500px;}
.y169{bottom:704.679000px;}
.y91{bottom:704.933091px;}
.y1b{bottom:705.720000px;}
.y1f9{bottom:707.481000px;}
.yf7{bottom:708.001500px;}
.y6a{bottom:710.538000px;}
.y22e{bottom:711.211500px;}
.yf6{bottom:711.696000px;}
.yc1{bottom:713.665500px;}
.y1a9{bottom:714.532500px;}
.y90{bottom:721.899029px;}
.y133{bottom:722.590500px;}
.y1f8{bottom:725.413500px;}
.y69{bottom:728.470500px;}
.y22d{bottom:729.144000px;}
.y130{bottom:729.972000px;}
.yc0{bottom:731.599500px;}
.y1a8{bottom:732.465000px;}
.yf5{bottom:738.144000px;}
.y8f{bottom:738.864968px;}
.y12b{bottom:740.223000px;}
.y1f7{bottom:743.346000px;}
.y12e{bottom:744.400500px;}
.y68{bottom:746.721000px;}
.y22c{bottom:747.076500px;}
.ybf{bottom:749.532000px;}
.y12f{bottom:750.333000px;}
.y1a7{bottom:750.397500px;}
.y12d{bottom:753.367500px;}
.y132{bottom:754.419000px;}
.y8e{bottom:755.830906px;}
.yf4{bottom:756.078000px;}
.y168{bottom:756.670707px;}
.y131{bottom:758.902500px;}
.y12c{bottom:762.333000px;}
.y1f6{bottom:762.454500px;}
.y67{bottom:764.655000px;}
.y22b{bottom:765.840000px;}
.ybe{bottom:767.464500px;}
.y1a6{bottom:768.330000px;}
.y167{bottom:771.986856px;}
.y8d{bottom:772.796844px;}
.yf3{bottom:774.010500px;}
.y1f5{bottom:780.387000px;}
.y66{bottom:782.587500px;}
.y22a{bottom:783.772500px;}
.ybd{bottom:785.397000px;}
.y17{bottom:785.599500px;}
.y1a5{bottom:786.262500px;}
.y1c5{bottom:786.264000px;}
.y166{bottom:787.304285px;}
.y12a{bottom:788.436000px;}
.y8c{bottom:789.794400px;}
.yf2{bottom:791.943000px;}
.y163{bottom:794.931000px;}
.y1a{bottom:797.554500px;}
.y1f4{bottom:798.319500px;}
.y65{bottom:800.520000px;}
.y229{bottom:801.705000px;}
.y165{bottom:802.620433px;}
.ybc{bottom:803.329500px;}
.y16{bottom:803.532000px;}
.y1a4{bottom:804.196500px;}
.yee{bottom:806.210850px;}
.y129{bottom:806.368500px;}
.y8b{bottom:807.294962px;}
.yef{bottom:807.740552px;}
.yf1{bottom:807.781428px;}
.y19{bottom:809.509500px;}
.yec{bottom:811.612500px;}
.y8a{bottom:815.811450px;}
.y1f3{bottom:816.252000px;}
.yed{bottom:816.508175px;}
.yf0{bottom:816.508433px;}
.y164{bottom:817.936611px;}
.y64{bottom:818.452500px;}
.y228{bottom:819.637500px;}
.ybb{bottom:821.263500px;}
.y18{bottom:821.464500px;}
.y1a3{bottom:822.129000px;}
.y128{bottom:824.302500px;}
.y162{bottom:833.763909px;}
.y1f2{bottom:835.360500px;}
.y63{bottom:836.385000px;}
.y227{bottom:837.571500px;}
.yba{bottom:839.196000px;}
.y15{bottom:839.397000px;}
.y1a2{bottom:840.061500px;}
.yeb{bottom:840.682500px;}
.y127{bottom:842.235000px;}
.y89{bottom:845.619000px;}
.y15f{bottom:849.046800px;}
.y161{bottom:849.080057px;}
.y1f1{bottom:853.293000px;}
.y62{bottom:854.317500px;}
.y226{bottom:856.333500px;}
.yb9{bottom:857.128500px;}
.y14{bottom:857.329500px;}
.y1a1{bottom:857.994000px;}
.yea{bottom:858.615000px;}
.y88{bottom:863.553000px;}
.y160{bottom:864.396258px;}
.y1f0{bottom:871.225500px;}
.y61{bottom:872.251500px;}
.y225{bottom:874.266000px;}
.yb8{bottom:875.061000px;}
.y13{bottom:875.263500px;}
.y1a0{bottom:875.926500px;}
.ye9{bottom:876.547500px;}
.y15e{bottom:880.223532px;}
.y1ef{bottom:889.158000px;}
.y126{bottom:889.982841px;}
.y60{bottom:890.184000px;}
.y224{bottom:892.200000px;}
.y12{bottom:893.196000px;}
.yb7{bottom:893.310000px;}
.y19f{bottom:893.859000px;}
.y1c4{bottom:893.860500px;}
.y15b{bottom:895.504200px;}
.y15d{bottom:895.539680px;}
.y87{bottom:904.029000px;}
.ye8{bottom:904.978500px;}
.y125{bottom:905.468936px;}
.y1ee{bottom:908.266500px;}
.ye7{bottom:908.673000px;}
.y223{bottom:910.132500px;}
.y15c{bottom:910.855829px;}
.y11{bottom:911.128500px;}
.yb6{bottom:911.242500px;}
.y19e{bottom:911.793000px;}
.y185{bottom:915.906000px;}
.y124{bottom:920.953586px;}
.y86{bottom:921.961500px;}
.y1ed{bottom:926.199000px;}
.y15a{bottom:926.683156px;}
.y222{bottom:928.065000px;}
.y10{bottom:929.061000px;}
.y19d{bottom:929.725500px;}
.ye6{bottom:929.770500px;}
.ye5{bottom:933.465000px;}
.y184{bottom:933.838500px;}
.y123{bottom:936.438386px;}
.y157{bottom:941.961600px;}
.y159{bottom:941.999304px;}
.y5f{bottom:943.041000px;}
.y1ec{bottom:944.131500px;}
.y221{bottom:945.997500px;}
.yf{bottom:946.993500px;}
.y19c{bottom:947.658000px;}
.y122{bottom:951.923036px;}
.y158{bottom:957.314902px;}
.ye4{bottom:961.896000px;}
.yb5{bottom:962.685000px;}
.y1eb{bottom:963.240000px;}
.y220{bottom:963.930000px;}
.ye{bottom:964.927500px;}
.ye3{bottom:965.590500px;}
.y121{bottom:967.407686px;}
.y156{bottom:973.142779px;}
.yb4{bottom:980.617500px;}
.y1ea{bottom:981.172500px;}
.y21f{bottom:982.693500px;}
.yd{bottom:982.860000px;}
.y120{bottom:982.892541px;}
.ye2{bottom:983.523000px;}
.y155{bottom:988.458928px;}
.y11f{bottom:998.378486px;}
.y1e9{bottom:999.105000px;}
.yb3{bottom:999.148500px;}
.y21e{bottom:1000.626000px;}
.yc{bottom:1000.792500px;}
.ye1{bottom:1001.455500px;}
.y1c3{bottom:1001.457000px;}
.y154{bottom:1003.775076px;}
.y150{bottom:1011.392850px;}
.y11e{bottom:1013.863136px;}
.yb2{bottom:1017.081000px;}
.y1e8{bottom:1018.213500px;}
.y21d{bottom:1018.558500px;}
.yb{bottom:1018.725000px;}
.y153{bottom:1019.091224px;}
.ye0{bottom:1019.389500px;}
.y11d{bottom:1029.347936px;}
.y152{bottom:1034.407372px;}
.yb1{bottom:1035.013500px;}
.y1e7{bottom:1036.146000px;}
.y21c{bottom:1036.492500px;}
.ya{bottom:1036.657500px;}
.ydf{bottom:1037.322000px;}
.y11c{bottom:1044.832586px;}
.y151{bottom:1049.724858px;}
.yb0{bottom:1052.947500px;}
.y1e6{bottom:1054.078500px;}
.y21b{bottom:1054.425000px;}
.y9{bottom:1054.590000px;}
.yde{bottom:1055.254500px;}
.y11b{bottom:1060.317300px;}
.y14f{bottom:1065.550848px;}
.yaf{bottom:1070.880000px;}
.y1e5{bottom:1072.012500px;}
.y21a{bottom:1072.357500px;}
.y14e{bottom:1073.165850px;}
.ydd{bottom:1073.187000px;}
.y11a{bottom:1084.060495px;}
.y8{bottom:1084.395000px;}
.yae{bottom:1089.409500px;}
.ydc{bottom:1091.119500px;}
.y119{bottom:1091.803500px;}
.y14d{bottom:1096.694323px;}
.y7{bottom:1103.076000px;}
.y14c{bottom:1104.307800px;}
.yad{bottom:1107.343500px;}
.ydb{bottom:1109.052000px;}
.y1c2{bottom:1109.053500px;}
.y118{bottom:1109.136000px;}
.y6{bottom:1123.996500px;}
.yac{bottom:1125.873000px;}
.yda{bottom:1126.986000px;}
.y117{bottom:1127.068500px;}
.y14b{bottom:1127.791500px;}
.yd9{bottom:1144.918500px;}
.yab{bottom:1145.001000px;}
.y5{bottom:1162.851000px;}
.y14a{bottom:1162.933500px;}
.yaa{bottom:1162.935000px;}
.ya9{bottom:1165.888438px;}
.y4{bottom:1165.953811px;}
.y3{bottom:1179.733329px;}
.h22{height:2.391120px;}
.hc{height:13.200074px;}
.h1b{height:13.844994px;}
.h21{height:29.458176px;}
.hb{height:29.960304px;}
.h8{height:33.665280px;}
.h12{height:34.368215px;}
.h2b{height:35.924666px;}
.h4{height:36.000225px;}
.h2d{height:38.292292px;}
.h31{height:38.294495px;}
.h34{height:38.415283px;}
.h33{height:38.425532px;}
.h32{height:38.435781px;}
.h30{height:38.440906px;}
.h2f{height:38.456280px;}
.h7{height:38.517936px;}
.h25{height:38.713727px;}
.h26{height:38.713775px;}
.h28{height:38.713844px;}
.h27{height:38.713982px;}
.h36{height:41.485932px;}
.h13{height:41.844600px;}
.h11{height:42.416974px;}
.hf{height:42.792210px;}
.h24{height:42.795399px;}
.h9{height:42.801048px;}
.h3{height:44.827280px;}
.ha{height:44.833500px;}
.h35{height:44.839500px;}
.h2a{height:46.726176px;}
.h37{height:47.781048px;}
.h39{height:47.787048px;}
.hd{height:49.898438px;}
.h15{height:51.148176px;}
.h14{height:51.154176px;}
.h6{height:51.358680px;}
.h18{height:54.142176px;}
.h38{height:57.909048px;}
.h3a{height:57.915048px;}
.h17{height:59.611500px;}
.h5{height:61.544340px;}
.h1f{height:62.478813px;}
.h16{height:65.926176px;}
.h20{height:65.932176px;}
.h19{height:68.920176px;}
.h2e{height:69.096876px;}
.h2c{height:69.102978px;}
.h1a{height:73.102491px;}
.h1c{height:75.216033px;}
.h1e{height:75.379536px;}
.h10{height:76.214773px;}
.h23{height:85.837500px;}
.h1d{height:88.591313px;}
.h29{height:124.311120px;}
.h2{height:1195.555378px;}
.he{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:6.673485px;}
.w5{width:6.675000px;}
.w7{width:13.346985px;}
.w6{width:13.348500px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.437964px;}
.x11{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x15{left:91.308000px;}
.x3c{left:92.511000px;}
.x16{left:94.764000px;}
.x12{left:97.309500px;}
.x33{left:98.848029px;}
.x9{left:99.984000px;}
.x3d{left:115.758000px;}
.x2{left:125.858878px;}
.x49{left:139.701000px;}
.xe{left:142.978500px;}
.x44{left:148.036500px;}
.x4b{left:155.106000px;}
.x14{left:161.382000px;}
.x50{left:165.144000px;}
.x34{left:170.484000px;}
.x48{left:171.913500px;}
.x52{left:195.666000px;}
.xd{left:208.226652px;}
.x35{left:233.581500px;}
.x4f{left:238.861500px;}
.x36{left:251.898000px;}
.x4d{left:259.833000px;}
.x51{left:263.563500px;}
.x32{left:264.593400px;}
.x13{left:270.978000px;}
.x46{left:284.439000px;}
.x37{left:285.988500px;}
.x4a{left:332.896500px;}
.x4c{left:360.463500px;}
.x47{left:381.168000px;}
.x3e{left:384.933000px;}
.x3f{left:391.530000px;}
.x4e{left:404.854500px;}
.x45{left:420.529500px;}
.xa{left:453.928500px;}
.x2c{left:455.820000px;}
.x2b{left:457.608000px;}
.x42{left:461.401500px;}
.x1d{left:462.769500px;}
.xf{left:467.125800px;}
.xb{left:468.873000px;}
.x40{left:484.647000px;}
.x17{left:530.085000px;}
.x19{left:541.468500px;}
.x2d{left:546.825000px;}
.x43{left:551.844000px;}
.x1a{left:553.282500px;}
.x1e{left:559.002374px;}
.x25{left:562.881000px;}
.x1b{left:564.804000px;}
.x2f{left:590.619000px;}
.x30{left:591.732000px;}
.x2e{left:597.718500px;}
.x24{left:600.294000px;}
.x1f{left:611.187210px;}
.x18{left:612.810000px;}
.x31{left:614.695500px;}
.x27{left:617.883000px;}
.x28{left:618.996000px;}
.x26{left:624.982500px;}
.x38{left:627.963544px;}
.x29{left:643.753500px;}
.x2a{left:665.955000px;}
.x1c{left:671.940000px;}
.x5{left:678.273000px;}
.x21{left:684.004500px;}
.x20{left:686.894094px;}
.x8{left:688.965000px;}
.x41{left:689.974500px;}
.x6{left:692.155500px;}
.x7{left:704.157000px;}
.x10{left:731.768621px;}
.x39{left:741.147000px;}
.x22{left:746.068266px;}
.x3a{left:759.079500px;}
.x23{left:788.779500px;}
.x3b{left:798.566986px;}
.xc{left:805.240540px;}
@media print{
.v11{vertical-align:-27.526077pt;}
.vf{vertical-align:-12.986667pt;}
.v2{vertical-align:-7.968000pt;}
.vb{vertical-align:-5.567507pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.168000pt;}
.v4{vertical-align:13.136000pt;}
.v13{vertical-align:15.349333pt;}
.v3{vertical-align:19.285333pt;}
.vc{vertical-align:20.207368pt;}
.v6{vertical-align:21.941333pt;}
.v14{vertical-align:27.226430pt;}
.v9{vertical-align:28.402113pt;}
.v1{vertical-align:30.159145pt;}
.v5{vertical-align:32.416000pt;}
.v8{vertical-align:35.077333pt;}
.v10{vertical-align:36.448000pt;}
.vd{vertical-align:42.315291pt;}
.va{vertical-align:45.205252pt;}
.ve{vertical-align:59.118430pt;}
.v12{vertical-align:108.373333pt;}
.lsc{letter-spacing:-0.300471pt;}
.lsa{letter-spacing:-0.079370pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000776pt;}
.ls46{letter-spacing:0.001271pt;}
.ls37{letter-spacing:0.001924pt;}
.ls64{letter-spacing:0.002076pt;}
.ls66{letter-spacing:0.002128pt;}
.ls4e{letter-spacing:0.007766pt;}
.lsd{letter-spacing:0.034016pt;}
.ls6b{letter-spacing:0.130362pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.590670pt;}
.lse{letter-spacing:0.592488pt;}
.lsf{letter-spacing:0.616472pt;}
.ls3{letter-spacing:0.616589pt;}
.ls39{letter-spacing:1.476038pt;}
.ls50{letter-spacing:1.479295pt;}
.ls44{letter-spacing:1.516910pt;}
.ls4f{letter-spacing:1.539269pt;}
.ls4a{letter-spacing:1.547035pt;}
.ls6c{letter-spacing:1.608590pt;}
.ls28{letter-spacing:1.676065pt;}
.ls53{letter-spacing:1.907461pt;}
.ls24{letter-spacing:2.652304pt;}
.ls2b{letter-spacing:2.655793pt;}
.ls5c{letter-spacing:2.656582pt;}
.ls55{letter-spacing:2.656628pt;}
.ls35{letter-spacing:2.658433pt;}
.ls67{letter-spacing:2.668795pt;}
.ls68{letter-spacing:2.674128pt;}
.ls42{letter-spacing:2.786304pt;}
.ls30{letter-spacing:2.870900pt;}
.ls25{letter-spacing:3.555679pt;}
.ls45{letter-spacing:4.176902pt;}
.ls41{letter-spacing:4.313377pt;}
.ls48{letter-spacing:4.520850pt;}
.ls3c{letter-spacing:8.849486pt;}
.ls3b{letter-spacing:8.855410pt;}
.ls43{letter-spacing:9.392533pt;}
.ls63{letter-spacing:11.801486pt;}
.ls27{letter-spacing:11.805238pt;}
.ls5a{letter-spacing:11.806819pt;}
.ls6a{letter-spacing:12.503461pt;}
.ls69{letter-spacing:12.508795pt;}
.ls52{letter-spacing:12.653049pt;}
.ls9{letter-spacing:14.406819pt;}
.ls8{letter-spacing:14.445822pt;}
.ls59{letter-spacing:14.459249pt;}
.ls62{letter-spacing:14.464582pt;}
.ls3e{letter-spacing:14.756153pt;}
.ls58{letter-spacing:14.761486pt;}
.ls22{letter-spacing:14.771808pt;}
.ls4{letter-spacing:15.160074pt;}
.ls19{letter-spacing:16.750313pt;}
.ls1a{letter-spacing:16.751160pt;}
.ls1d{letter-spacing:16.751989pt;}
.ls18{letter-spacing:16.756206pt;}
.ls34{letter-spacing:16.844628pt;}
.ls2d{letter-spacing:16.883981pt;}
.ls2a{letter-spacing:16.888895pt;}
.ls51{letter-spacing:17.413962pt;}
.ls57{letter-spacing:17.415766pt;}
.ls5{letter-spacing:17.680018pt;}
.ls6{letter-spacing:17.702819pt;}
.ls7{letter-spacing:17.753486pt;}
.ls31{letter-spacing:18.498592pt;}
.ls4b{letter-spacing:19.054618pt;}
.ls2c{letter-spacing:19.308153pt;}
.ls29{letter-spacing:19.541916pt;}
.ls3d{letter-spacing:19.570081pt;}
.ls10{letter-spacing:19.596611pt;}
.ls13{letter-spacing:19.712000pt;}
.ls16{letter-spacing:19.715732pt;}
.ls15{letter-spacing:19.719105pt;}
.ls14{letter-spacing:19.721065pt;}
.ls33{letter-spacing:20.733100pt;}
.ls21{letter-spacing:20.829259pt;}
.ls32{letter-spacing:21.154433pt;}
.ls2f{letter-spacing:21.870229pt;}
.ls40{letter-spacing:21.938592pt;}
.ls47{letter-spacing:22.210396pt;}
.ls17{letter-spacing:25.057771pt;}
.ls36{letter-spacing:25.302595pt;}
.ls38{letter-spacing:25.650433pt;}
.ls54{letter-spacing:25.655766pt;}
.ls49{letter-spacing:26.884219pt;}
.ls12{letter-spacing:28.435867pt;}
.ls11{letter-spacing:28.445971pt;}
.ls2e{letter-spacing:33.677238pt;}
.ls4c{letter-spacing:34.586361pt;}
.ls3a{letter-spacing:53.693100pt;}
.ls56{letter-spacing:53.698433pt;}
.ls61{letter-spacing:55.054743pt;}
.ls5f{letter-spacing:55.054745pt;}
.ls5d{letter-spacing:55.058967pt;}
.ls60{letter-spacing:55.059064pt;}
.ls5e{letter-spacing:55.059523pt;}
.ls4d{letter-spacing:56.275738pt;}
.ls1e{letter-spacing:128.114266pt;}
.ls1f{letter-spacing:140.683520pt;}
.ls1c{letter-spacing:144.869914pt;}
.ls1b{letter-spacing:157.439167pt;}
.ls26{letter-spacing:203.539562pt;}
.ls65{letter-spacing:238.561637pt;}
.ls3f{letter-spacing:243.357333pt;}
.ls20{letter-spacing:295.675731pt;}
.ls5b{letter-spacing:404.817106pt;}
.ws12f{word-spacing:-67.805803pt;}
.ws11f{word-spacing:-67.805344pt;}
.ws119{word-spacing:-44.864335pt;}
.wsfa{word-spacing:-36.277666pt;}
.ws1{word-spacing:-35.936443pt;}
.ws0{word-spacing:-35.755026pt;}
.wsed{word-spacing:-34.612790pt;}
.wsce{word-spacing:-29.532989pt;}
.wsd0{word-spacing:-25.792214pt;}
.wse8{word-spacing:-25.792161pt;}
.wsf0{word-spacing:-25.792002pt;}
.wscd{word-spacing:-25.739344pt;}
.wscf{word-spacing:-25.739078pt;}
.wsf5{word-spacing:-25.738813pt;}
.ws101{word-spacing:-25.738653pt;}
.ws23f{word-spacing:-16.971638pt;}
.ws105{word-spacing:-14.761181pt;}
.ws14d{word-spacing:-14.495476pt;}
.ws66{word-spacing:-14.495260pt;}
.ws99{word-spacing:-13.965553pt;}
.ws200{word-spacing:-13.581562pt;}
.ws117{word-spacing:-12.746280pt;}
.ws16a{word-spacing:-12.607525pt;}
.wsfc{word-spacing:-3.001439pt;}
.ws261{word-spacing:-2.699362pt;}
.ws198{word-spacing:-2.699309pt;}
.wsbb{word-spacing:-2.646173pt;}
.ws148{word-spacing:-2.593196pt;}
.ws260{word-spacing:-2.588781pt;}
.ws19e{word-spacing:-2.221085pt;}
.ws24{word-spacing:-2.114813pt;}
.ws112{word-spacing:-2.114760pt;}
.wsc0{word-spacing:-2.061677pt;}
.ws22d{word-spacing:-2.008647pt;}
.ws10c{word-spacing:-1.955299pt;}
.ws264{word-spacing:-1.849186pt;}
.ws24e{word-spacing:-1.828091pt;}
.ws251{word-spacing:-1.795837pt;}
.ws111{word-spacing:-1.689725pt;}
.ws4a{word-spacing:-1.636376pt;}
.wsba{word-spacing:-1.583506pt;}
.ws21{word-spacing:-1.530264pt;}
.ws35{word-spacing:-1.477446pt;}
.ws137{word-spacing:-1.476915pt;}
.ws41{word-spacing:-1.424098pt;}
.ws164{word-spacing:-1.397629pt;}
.wsd2{word-spacing:-1.377784pt;}
.wsd3{word-spacing:-1.370803pt;}
.ws163{word-spacing:-1.363254pt;}
.ws168{word-spacing:-1.352518pt;}
.ws13a{word-spacing:-1.317985pt;}
.ws71{word-spacing:-1.211288pt;}
.ws116{word-spacing:-1.052358pt;}
.ws64{word-spacing:-1.037477pt;}
.wsa8{word-spacing:-0.999063pt;}
.ws10b{word-spacing:-0.945715pt;}
.ws5f{word-spacing:-0.907083pt;}
.wsc5{word-spacing:-0.892897pt;}
.ws63{word-spacing:-0.890076pt;}
.ws24f{word-spacing:-0.871271pt;}
.wsd8{word-spacing:-0.786253pt;}
.ws1c7{word-spacing:-0.733436pt;}
.ws33{word-spacing:-0.680088pt;}
.ws58{word-spacing:-0.627324pt;}
.ws59{word-spacing:-0.627270pt;}
.ws34{word-spacing:-0.573922pt;}
.ws5d{word-spacing:-0.544250pt;}
.ws60{word-spacing:-0.447872pt;}
.ws10a{word-spacing:-0.414514pt;}
.ws22{word-spacing:-0.414461pt;}
.ws65{word-spacing:-0.413857pt;}
.ws55{word-spacing:-0.361697pt;}
.ws56{word-spacing:-0.361112pt;}
.ws174{word-spacing:-0.308471pt;}
.wsa1{word-spacing:-0.255053pt;}
.ws1f6{word-spacing:-0.255000pt;}
.ws1a8{word-spacing:-0.202236pt;}
.ws1bd{word-spacing:-0.201917pt;}
.ws1eb{word-spacing:-0.074550pt;}
.wse6{word-spacing:-0.053136pt;}
.ws48{word-spacing:-0.042721pt;}
.wsfe{word-spacing:-0.038984pt;}
.wsf3{word-spacing:-0.037195pt;}
.wsfd{word-spacing:-0.027843pt;}
.ws133{word-spacing:-0.025407pt;}
.wsf4{word-spacing:-0.022760pt;}
.wsf6{word-spacing:-0.017427pt;}
.ws5c{word-spacing:0.000000pt;}
.ws100{word-spacing:0.010574pt;}
.ws113{word-spacing:0.010627pt;}
.wsfb{word-spacing:0.014913pt;}
.ws62{word-spacing:0.039685pt;}
.wsa5{word-spacing:0.116687pt;}
.wsd5{word-spacing:0.170035pt;}
.ws5b{word-spacing:0.170088pt;}
.wsc1{word-spacing:0.222799pt;}
.ws1a5{word-spacing:0.223331pt;}
.ws5e{word-spacing:0.260786pt;}
.ws13c{word-spacing:0.276148pt;}
.ws88{word-spacing:0.276201pt;}
.wsd7{word-spacing:0.276307pt;}
.wsaf{word-spacing:0.382845pt;}
.ws210{word-spacing:0.403834pt;}
.ws1b{word-spacing:0.435609pt;}
.ws197{word-spacing:0.541775pt;}
.ws1ae{word-spacing:0.541987pt;}
.wsb2{word-spacing:0.542306pt;}
.wsef{word-spacing:0.595123pt;}
.ws61{word-spacing:0.634958pt;}
.ws1c2{word-spacing:0.701395pt;}
.ws1d5{word-spacing:0.754531pt;}
.ws7a{word-spacing:0.860697pt;}
.ws7c{word-spacing:0.860803pt;}
.ws145{word-spacing:0.966810pt;}
.ws1c{word-spacing:0.967447pt;}
.ws18c{word-spacing:1.008000pt;}
.wsb8{word-spacing:1.020158pt;}
.ws265{word-spacing:1.030732pt;}
.ws67{word-spacing:1.073507pt;}
.ws1f{word-spacing:1.126271pt;}
.ws221{word-spacing:1.179725pt;}
.ws257{word-spacing:1.232436pt;}
.ws31{word-spacing:1.285732pt;}
.ws78{word-spacing:1.339080pt;}
.wsc8{word-spacing:1.391898pt;}
.ws6e{word-spacing:1.392004pt;}
.ws1c8{word-spacing:1.392163pt;}
.ws4b{word-spacing:1.445246pt;}
.ws6d{word-spacing:1.445352pt;}
.ws22c{word-spacing:1.551359pt;}
.ws32{word-spacing:1.551465pt;}
.ws223{word-spacing:1.551890pt;}
.ws165{word-spacing:1.552341pt;}
.wsdc{word-spacing:1.604707pt;}
.ws74{word-spacing:1.658003pt;}
.ws1c6{word-spacing:1.710979pt;}
.ws267{word-spacing:1.731809pt;}
.ws23{word-spacing:1.763743pt;}
.wsdb{word-spacing:1.816932pt;}
.ws243{word-spacing:1.817251pt;}
.wse2{word-spacing:1.870281pt;}
.ws1c5{word-spacing:1.923523pt;}
.ws216{word-spacing:1.923629pt;}
.ws22b{word-spacing:1.944618pt;}
.ws1ed{word-spacing:2.029795pt;}
.ws1cf{word-spacing:2.082719pt;}
.ws1b4{word-spacing:2.135908pt;}
.wse7{word-spacing:2.136067pt;}
.ws23a{word-spacing:2.146429pt;}
.ws50{word-spacing:2.189203pt;}
.wse{word-spacing:2.237026pt;}
.wsc2{word-spacing:2.295369pt;}
.ws79{word-spacing:2.295528pt;}
.ws22e{word-spacing:2.305890pt;}
.ws1ec{word-spacing:2.316730pt;}
.ws138{word-spacing:2.348133pt;}
.ws1ce{word-spacing:2.348611pt;}
.ws1be{word-spacing:2.348664pt;}
.ws20f{word-spacing:2.423055pt;}
.ws1fe{word-spacing:2.454830pt;}
.ws1f7{word-spacing:2.465351pt;}
.ws154{word-spacing:2.504804pt;}
.ws166{word-spacing:2.505258pt;}
.ws167{word-spacing:2.555808pt;}
.wsb0{word-spacing:2.560943pt;}
.ws161{word-spacing:2.564725pt;}
.ws1fc{word-spacing:2.582197pt;}
.ws16f{word-spacing:2.584897pt;}
.ws159{word-spacing:2.592934pt;}
.ws1a0{word-spacing:2.614291pt;}
.ws256{word-spacing:2.614451pt;}
.wsb{word-spacing:2.662060pt;}
.ws80{word-spacing:2.667108pt;}
.ws7f{word-spacing:2.667268pt;}
.ws81{word-spacing:2.667640pt;}
.ws82{word-spacing:2.668171pt;}
.ws1fd{word-spacing:2.688894pt;}
.ws96{word-spacing:2.702332pt;}
.ws2b{word-spacing:2.720404pt;}
.ws2c{word-spacing:2.773221pt;}
.ws9b{word-spacing:2.774611pt;}
.ws9a{word-spacing:2.774785pt;}
.ws98{word-spacing:2.775113pt;}
.ws9d{word-spacing:2.784778pt;}
.ws254{word-spacing:2.794475pt;}
.ws1b8{word-spacing:2.826570pt;}
.ws1b9{word-spacing:2.827101pt;}
.ws255{word-spacing:2.848355pt;}
.ws1af{word-spacing:2.879865pt;}
.ws53{word-spacing:2.932682pt;}
.ws28{word-spacing:2.932842pt;}
.ws94{word-spacing:2.933107pt;}
.ws5a{word-spacing:2.933213pt;}
.ws36{word-spacing:2.933373pt;}
.ws106{word-spacing:2.945448pt;}
.ws14c{word-spacing:2.986190pt;}
.wsbf{word-spacing:2.986243pt;}
.wsd1{word-spacing:2.986562pt;}
.ws211{word-spacing:2.996870pt;}
.wse3{word-spacing:3.039379pt;}
.ws20e{word-spacing:3.049900pt;}
.ws23b{word-spacing:3.060368pt;}
.ws180{word-spacing:3.082667pt;}
.ws38{word-spacing:3.092675pt;}
.ws181{word-spacing:3.136000pt;}
.ws75{word-spacing:3.145492pt;}
.ws68{word-spacing:3.198840pt;}
.ws20{word-spacing:3.252348pt;}
.wsee{word-spacing:3.304953pt;}
.wsf1{word-spacing:3.305059pt;}
.ws184{word-spacing:3.349333pt;}
.ws109{word-spacing:3.357770pt;}
.ws6c{word-spacing:3.357930pt;}
.ws1a6{word-spacing:3.358195pt;}
.ws1d2{word-spacing:3.358461pt;}
.ws237{word-spacing:3.379290pt;}
.ws183{word-spacing:3.402667pt;}
.wsd9{word-spacing:3.464414pt;}
.ws1df{word-spacing:3.464467pt;}
.ws149{word-spacing:3.464945pt;}
.wsd{word-spacing:3.512236pt;}
.ws147{word-spacing:3.517444pt;}
.wsb3{word-spacing:3.570580pt;}
.ws1b6{word-spacing:3.571111pt;}
.ws182{word-spacing:3.616000pt;}
.ws132{word-spacing:3.623875pt;}
.ws16e{word-spacing:3.639526pt;}
.ws6f{word-spacing:3.676905pt;}
.ws1a2{word-spacing:3.677011pt;}
.ws25{word-spacing:3.677224pt;}
.wsec{word-spacing:3.698551pt;}
.ws188{word-spacing:3.722667pt;}
.ws1a1{word-spacing:3.730041pt;}
.wseb{word-spacing:3.730200pt;}
.ws187{word-spacing:3.770667pt;}
.ws189{word-spacing:3.776000pt;}
.ws40{word-spacing:3.782805pt;}
.wsa4{word-spacing:3.836154pt;}
.wsea{word-spacing:3.836419pt;}
.ws222{word-spacing:3.846728pt;}
.ws258{word-spacing:3.846887pt;}
.ws17a{word-spacing:3.888971pt;}
.ws136{word-spacing:3.942851pt;}
.ws228{word-spacing:3.963839pt;}
.ws13{word-spacing:3.990620pt;}
.ws108{word-spacing:3.995615pt;}
.ws89{word-spacing:4.049176pt;}
.ws7b{word-spacing:4.101780pt;}
.ws13e{word-spacing:4.101993pt;}
.ws95{word-spacing:4.102099pt;}
.ws7{word-spacing:4.150081pt;}
.ws1ad{word-spacing:4.155076pt;}
.ws52{word-spacing:4.155288pt;}
.wse5{word-spacing:4.188969pt;}
.ws17c{word-spacing:4.207893pt;}
.ws7d{word-spacing:4.208106pt;}
.ws1bc{word-spacing:4.208371pt;}
.ws70{word-spacing:4.261454pt;}
.wsbd{word-spacing:4.261507pt;}
.ws13f{word-spacing:4.314537pt;}
.wsc9{word-spacing:4.367885pt;}
.ws244{word-spacing:4.378406pt;}
.ws4f{word-spacing:4.473998pt;}
.ws215{word-spacing:4.484678pt;}
.ws18a{word-spacing:4.570667pt;}
.ws46{word-spacing:4.580164pt;}
.ws1c1{word-spacing:4.580323pt;}
.ws18b{word-spacing:4.624000pt;}
.ws4{word-spacing:4.666911pt;}
.ws173{word-spacing:4.684027pt;}
.ws225{word-spacing:4.739625pt;}
.ws186{word-spacing:4.784000pt;}
.ws6b{word-spacing:4.792655pt;}
.ws69{word-spacing:4.792973pt;}
.ws6a{word-spacing:4.793186pt;}
.ws185{word-spacing:4.837333pt;}
.ws252{word-spacing:4.856843pt;}
.ws193{word-spacing:4.890667pt;}
.ws220{word-spacing:4.899352pt;}
.ws8e{word-spacing:4.952116pt;}
.ws11{word-spacing:4.999832pt;}
.ws14{word-spacing:5.000098pt;}
.ws224{word-spacing:5.026772pt;}
.ws219{word-spacing:5.058547pt;}
.wsb7{word-spacing:5.111364pt;}
.ws242{word-spacing:5.111630pt;}
.ws1aa{word-spacing:5.164713pt;}
.wsb6{word-spacing:5.164925pt;}
.ws3d{word-spacing:5.165244pt;}
.ws19f{word-spacing:5.271091pt;}
.ws3c{word-spacing:5.377204pt;}
.ws23c{word-spacing:5.388044pt;}
.ws194{word-spacing:5.418667pt;}
.ws1b1{word-spacing:5.430287pt;}
.ws1a4{word-spacing:5.430499pt;}
.wsf9{word-spacing:5.430552pt;}
.ws207{word-spacing:5.440861pt;}
.ws1f8{word-spacing:5.441073pt;}
.ws1e1{word-spacing:5.441126pt;}
.ws17d{word-spacing:5.483635pt;}
.ws14a{word-spacing:5.483901pt;}
.wsc{word-spacing:5.584753pt;}
.ws195{word-spacing:5.632000pt;}
.ws176{word-spacing:5.643096pt;}
.ws196{word-spacing:5.685333pt;}
.ws204{word-spacing:5.695914pt;}
.ws2a{word-spacing:5.696179pt;}
.ws110{word-spacing:5.749209pt;}
.ws14b{word-spacing:5.749528pt;}
.wsa7{word-spacing:5.749740pt;}
.ws213{word-spacing:5.771154pt;}
.ws1ca{word-spacing:5.802292pt;}
.ws10d{word-spacing:5.802557pt;}
.ws235{word-spacing:5.824078pt;}
.ws57{word-spacing:5.855640pt;}
.wsa3{word-spacing:5.866214pt;}
.ws13b{word-spacing:5.908670pt;}
.ws107{word-spacing:5.919244pt;}
.ws135{word-spacing:5.919510pt;}
.wsb5{word-spacing:5.961806pt;}
.ws178{word-spacing:6.014304pt;}
.ws1ef{word-spacing:6.036250pt;}
.ws30{word-spacing:6.067919pt;}
.ws131{word-spacing:6.068025pt;}
.wsa9{word-spacing:6.068078pt;}
.ws84{word-spacing:6.068184pt;}
.ws83{word-spacing:6.068450pt;}
.ws8{word-spacing:6.115954pt;}
.ws1a3{word-spacing:6.121267pt;}
.ws1b7{word-spacing:6.121480pt;}
.ws1d3{word-spacing:6.174297pt;}
.ws247{word-spacing:6.195658pt;}
.ws10e{word-spacing:6.227645pt;}
.ws54{word-spacing:6.280197pt;}
.wse0{word-spacing:6.280675pt;}
.ws142{word-spacing:6.280728pt;}
.wsae{word-spacing:6.333811pt;}
.wsc7{word-spacing:6.387107pt;}
.ws86{word-spacing:6.439658pt;}
.ws47{word-spacing:6.439871pt;}
.ws85{word-spacing:6.440189pt;}
.ws87{word-spacing:6.440402pt;}
.ws1ba{word-spacing:6.546036pt;}
.ws92{word-spacing:6.546355pt;}
.wsdd{word-spacing:6.546568pt;}
.ws2e{word-spacing:6.599119pt;}
.wsc4{word-spacing:6.599332pt;}
.ws1c4{word-spacing:6.599438pt;}
.ws37{word-spacing:6.652149pt;}
.ws1d4{word-spacing:6.652680pt;}
.wsdf{word-spacing:6.705763pt;}
.ws226{word-spacing:6.706029pt;}
.ws250{word-spacing:6.726911pt;}
.ws1ff{word-spacing:6.811929pt;}
.ws45{word-spacing:6.812141pt;}
.ws10f{word-spacing:6.864959pt;}
.wscc{word-spacing:6.918307pt;}
.ws93{word-spacing:6.971603pt;}
.ws20c{word-spacing:6.992698pt;}
.ws3{word-spacing:7.039104pt;}
.ws144{word-spacing:7.077768pt;}
.ws4e{word-spacing:7.130904pt;}
.ws24a{word-spacing:7.183881pt;}
.ws1ac{word-spacing:7.183987pt;}
.wsf8{word-spacing:7.184253pt;}
.ws2f{word-spacing:7.184412pt;}
.ws209{word-spacing:7.205242pt;}
.ws25f{word-spacing:7.205348pt;}
.ws1e4{word-spacing:7.205454pt;}
.wse9{word-spacing:7.214191pt;}
.ws44{word-spacing:7.237017pt;}
.wsc6{word-spacing:7.237123pt;}
.ws4c{word-spacing:7.237229pt;}
.ws1cd{word-spacing:7.290047pt;}
.ws1b5{word-spacing:7.290259pt;}
.ws201{word-spacing:7.300886pt;}
.ws146{word-spacing:7.343183pt;}
.ws1e0{word-spacing:7.343342pt;}
.ws175{word-spacing:7.396691pt;}
.wsbe{word-spacing:7.449508pt;}
.ws1f0{word-spacing:7.460029pt;}
.wsf2{word-spacing:7.476075pt;}
.wsad{word-spacing:7.502644pt;}
.ws1e{word-spacing:7.502803pt;}
.ws6{word-spacing:7.550626pt;}
.wsb1{word-spacing:7.555939pt;}
.ws103{word-spacing:7.661733pt;}
.ws104{word-spacing:7.706060pt;}
.wse1{word-spacing:7.715082pt;}
.ws229{word-spacing:7.768430pt;}
.ws19d{word-spacing:7.768483pt;}
.ws1b0{word-spacing:7.821566pt;}
.ws17b{word-spacing:7.927891pt;}
.ws9{word-spacing:7.975660pt;}
.ws1d1{word-spacing:7.980708pt;}
.ws26{word-spacing:7.981080pt;}
.ws1c0{word-spacing:7.981240pt;}
.ws8a{word-spacing:8.086821pt;}
.ws1de{word-spacing:8.097199pt;}
.ws27{word-spacing:8.140541pt;}
.ws214{word-spacing:8.140701pt;}
.ws24c{word-spacing:8.246654pt;}
.ws1cb{word-spacing:8.246813pt;}
.ws179{word-spacing:8.299631pt;}
.ws51{word-spacing:8.300003pt;}
.ws20a{word-spacing:8.310417pt;}
.ws72{word-spacing:8.405743pt;}
.ws13d{word-spacing:8.406275pt;}
.ws19b{word-spacing:8.459092pt;}
.ws141{word-spacing:8.512281pt;}
.ws130{word-spacing:8.565204pt;}
.ws1c9{word-spacing:8.565736pt;}
.wsac{word-spacing:8.618447pt;}
.wscb{word-spacing:8.618553pt;}
.wsab{word-spacing:8.618978pt;}
.ws19c{word-spacing:8.671795pt;}
.ws19{word-spacing:8.671799pt;}
.ws143{word-spacing:8.671901pt;}
.ws17{word-spacing:8.672231pt;}
.ws18{word-spacing:8.673614pt;}
.ws15{word-spacing:8.674002pt;}
.ws152{word-spacing:8.714098pt;}
.ws153{word-spacing:8.722655pt;}
.ws1e6{word-spacing:8.724931pt;}
.ws17f{word-spacing:8.725250pt;}
.ws212{word-spacing:8.735771pt;}
.ws1f3{word-spacing:8.781068pt;}
.ws262{word-spacing:8.788763pt;}
.ws49{word-spacing:8.831363pt;}
.ws20d{word-spacing:8.841830pt;}
.wsda{word-spacing:8.884180pt;}
.ws39{word-spacing:8.884552pt;}
.ws227{word-spacing:8.894701pt;}
.ws3f{word-spacing:8.937475pt;}
.wsc3{word-spacing:8.990717pt;}
.ws218{word-spacing:9.043641pt;}
.wsf{word-spacing:9.091410pt;}
.ws20b{word-spacing:9.096936pt;}
.ws1e5{word-spacing:9.171327pt;}
.ws1bf{word-spacing:9.203155pt;}
.ws43{word-spacing:9.256451pt;}
.ws24b{word-spacing:9.320054pt;}
.wsd6{word-spacing:9.468835pt;}
.ws1dc{word-spacing:9.543013pt;}
.ws29{word-spacing:9.575267pt;}
.ws169{word-spacing:9.584941pt;}
.wsca{word-spacing:9.628137pt;}
.wsa{word-spacing:9.729308pt;}
.ws73{word-spacing:9.787651pt;}
.ws22a{word-spacing:9.851521pt;}
.ws4d{word-spacing:9.893764pt;}
.ws3b{word-spacing:9.947112pt;}
.ws15e{word-spacing:9.948009pt;}
.ws18d{word-spacing:10.042667pt;}
.ws91{word-spacing:10.053703pt;}
.wsde{word-spacing:10.106467pt;}
.ws1c3{word-spacing:10.159338pt;}
.ws1d{word-spacing:10.212686pt;}
.ws8f{word-spacing:10.265397pt;}
.ws21f{word-spacing:10.265503pt;}
.ws90{word-spacing:10.266035pt;}
.ws1cc{word-spacing:10.318852pt;}
.wsa6{word-spacing:10.372147pt;}
.ws3a{word-spacing:10.425496pt;}
.ws160{word-spacing:10.447272pt;}
.wse4{word-spacing:10.531555pt;}
.ws203{word-spacing:10.553182pt;}
.ws23d{word-spacing:10.605946pt;}
.ws1a9{word-spacing:10.744099pt;}
.ws10{word-spacing:10.791656pt;}
.ws76{word-spacing:10.797235pt;}
.ws1b3{word-spacing:10.849999pt;}
.ws140{word-spacing:10.903295pt;}
.ws1dd{word-spacing:10.924921pt;}
.ws230{word-spacing:11.062809pt;}
.ws158{word-spacing:11.082731pt;}
.ws1bb{word-spacing:11.116157pt;}
.ws157{word-spacing:11.117994pt;}
.ws1ee{word-spacing:11.179814pt;}
.ws139{word-spacing:11.222270pt;}
.ws240{word-spacing:11.243578pt;}
.ws205{word-spacing:11.275459pt;}
.ws191{word-spacing:11.370667pt;}
.ws1b2{word-spacing:11.381731pt;}
.wsff{word-spacing:11.381784pt;}
.ws192{word-spacing:11.424000pt;}
.ws77{word-spacing:11.487897pt;}
.wsaa{word-spacing:11.541139pt;}
.wsd4{word-spacing:11.594010pt;}
.ws3e{word-spacing:11.594541pt;}
.ws22f{word-spacing:11.615583pt;}
.ws12{word-spacing:11.675788pt;}
.ws266{word-spacing:11.774513pt;}
.ws25a{word-spacing:11.775097pt;}
.ws202{word-spacing:11.799124pt;}
.ws208{word-spacing:11.801791pt;}
.ws1db{word-spacing:11.804458pt;}
.ws1f2{word-spacing:11.806819pt;}
.ws23e{word-spacing:11.976854pt;}
.ws17e{word-spacing:12.019629pt;}
.wsa2{word-spacing:12.125741pt;}
.ws177{word-spacing:12.231907pt;}
.ws1d0{word-spacing:12.285203pt;}
.ws263{word-spacing:12.306244pt;}
.ws1f1{word-spacing:12.412463pt;}
.ws25d{word-spacing:12.763108pt;}
.ws172{word-spacing:12.943044pt;}
.ws206{word-spacing:13.039574pt;}
.ws16{word-spacing:13.129755pt;}
.ws217{word-spacing:13.156474pt;}
.ws15b{word-spacing:13.204275pt;}
.ws15c{word-spacing:13.215436pt;}
.ws21e{word-spacing:13.294840pt;}
.ws199{word-spacing:13.347604pt;}
.ws1e7{word-spacing:13.507171pt;}
.ws8c{word-spacing:13.666048pt;}
.ws190{word-spacing:13.706667pt;}
.ws18f{word-spacing:13.712000pt;}
.ws8d{word-spacing:13.719981pt;}
.wsbc{word-spacing:13.878804pt;}
.ws21c{word-spacing:14.006650pt;}
.ws25e{word-spacing:14.474512pt;}
.ws1a7{word-spacing:14.676163pt;}
.ws115{word-spacing:14.729299pt;}
.ws238{word-spacing:14.910493pt;}
.ws21b{word-spacing:15.069104pt;}
.ws19a{word-spacing:15.260712pt;}
.ws241{word-spacing:15.335581pt;}
.ws18e{word-spacing:15.728000pt;}
.ws25b{word-spacing:15.791913pt;}
.ws15f{word-spacing:15.938534pt;}
.wsa0{word-spacing:16.110835pt;}
.ws253{word-spacing:16.185438pt;}
.ws5{word-spacing:16.218368pt;}
.ws42{word-spacing:16.588900pt;}
.ws233{word-spacing:16.599793pt;}
.ws21d{word-spacing:16.716639pt;}
.ws171{word-spacing:17.708716pt;}
.ws1ab{word-spacing:17.864111pt;}
.ws2d{word-spacing:17.917247pt;}
.ws234{word-spacing:18.130003pt;}
.wsb9{word-spacing:18.183139pt;}
.ws249{word-spacing:18.502008pt;}
.ws1f9{word-spacing:18.841547pt;}
.ws1fa{word-spacing:18.842079pt;}
.ws1ea{word-spacing:19.405533pt;}
.ws236{word-spacing:19.957988pt;}
.ws16c{word-spacing:20.014299pt;}
.ws16d{word-spacing:20.022728pt;}
.ws231{word-spacing:20.149224pt;}
.ws1e9{word-spacing:20.531750pt;}
.ws232{word-spacing:20.690999pt;}
.ws15d{word-spacing:21.066819pt;}
.ws259{word-spacing:21.691235pt;}
.ws25c{word-spacing:22.167914pt;}
.ws248{word-spacing:23.464858pt;}
.ws1f5{word-spacing:23.656360pt;}
.ws1da{word-spacing:23.709283pt;}
.ws24d{word-spacing:24.262004pt;}
.ws1e3{word-spacing:24.846394pt;}
.ws1f4{word-spacing:24.846553pt;}
.ws2{word-spacing:24.866400pt;}
.ws246{word-spacing:28.087690pt;}
.ws8b{word-spacing:31.307094pt;}
.ws239{word-spacing:31.307625pt;}
.ws1d9{word-spacing:38.369264pt;}
.ws14f{word-spacing:39.964673pt;}
.ws12d{word-spacing:42.293574pt;}
.ws11b{word-spacing:42.298640pt;}
.ws120{word-spacing:42.303053pt;}
.ws12a{word-spacing:42.303690pt;}
.ws123{word-spacing:42.307738pt;}
.ws122{word-spacing:42.307986pt;}
.ws11c{word-spacing:42.308196pt;}
.ws12e{word-spacing:42.310518pt;}
.ws118{word-spacing:42.310596pt;}
.ws11a{word-spacing:42.312785pt;}
.ws125{word-spacing:42.312786pt;}
.ws12c{word-spacing:42.321664pt;}
.ws1fb{word-spacing:43.656378pt;}
.ws1e2{word-spacing:43.815946pt;}
.ws21a{word-spacing:44.240927pt;}
.ws7e{word-spacing:44.868251pt;}
.ws1d7{word-spacing:50.330419pt;}
.ws134{word-spacing:53.838816pt;}
.ws1a{word-spacing:53.838944pt;}
.ws1e8{word-spacing:57.783922pt;}
.ws245{word-spacing:64.485478pt;}
.ws156{word-spacing:64.664269pt;}
.ws11d{word-spacing:65.247672pt;}
.ws121{word-spacing:65.251986pt;}
.ws151{word-spacing:67.868591pt;}
.ws1d6{word-spacing:70.256419pt;}
.ws126{word-spacing:86.924642pt;}
.ws129{word-spacing:92.010123pt;}
.ws124{word-spacing:96.979245pt;}
.ws127{word-spacing:100.291993pt;}
.ws12b{word-spacing:100.934354pt;}
.ws11e{word-spacing:102.829182pt;}
.ws128{word-spacing:113.038273pt;}
.ws1d8{word-spacing:118.005791pt;}
.ws14e{word-spacing:133.687099pt;}
.ws9f{word-spacing:147.659131pt;}
.ws170{word-spacing:149.544438pt;}
.ws16b{word-spacing:168.969647pt;}
.ws15a{word-spacing:171.241316pt;}
.ws162{word-spacing:178.914932pt;}
.ws97{word-spacing:198.531417pt;}
.ws114{word-spacing:209.268153pt;}
.ws150{word-spacing:221.935868pt;}
.ws155{word-spacing:249.186133pt;}
.wsf7{word-spacing:269.560895pt;}
.ws9c{word-spacing:277.555753pt;}
.wsb4{word-spacing:280.908778pt;}
.ws102{word-spacing:287.576895pt;}
.ws9e{word-spacing:312.216479pt;}
._31{margin-left:-55.546342pt;}
._30{margin-left:-54.572704pt;}
._a{margin-left:-27.643033pt;}
._44{margin-left:-26.568000pt;}
._4{margin-left:-24.579177pt;}
._8{margin-left:-22.853952pt;}
._45{margin-left:-21.475255pt;}
._47{margin-left:-20.266332pt;}
._7{margin-left:-18.171189pt;}
._2e{margin-left:-14.803119pt;}
._1{margin-left:-9.231273pt;}
._4c{margin-left:-7.515583pt;}
._6{margin-left:-6.407462pt;}
._2{margin-left:-5.457737pt;}
._5{margin-left:-4.300763pt;}
._13{margin-left:-2.798799pt;}
._3{margin-left:-1.772183pt;}
._0{width:1.555625pt;}
._49{width:2.576579pt;}
._19{width:3.632740pt;}
._3c{width:4.908267pt;}
._46{width:7.640014pt;}
._48{width:8.926848pt;}
._2d{width:11.784130pt;}
._39{width:13.284266pt;}
._18{width:14.311854pt;}
._10{width:15.661687pt;}
._12{width:16.881981pt;}
._4a{width:17.907788pt;}
._1a{width:18.865641pt;}
._1b{width:20.480337pt;}
._9{width:21.451199pt;}
._14{width:22.423233pt;}
._d{width:23.543263pt;}
._f{width:24.868498pt;}
._1f{width:25.933373pt;}
._b{width:26.939952pt;}
._16{width:28.586158pt;}
._41{width:30.147050pt;}
._20{width:31.562625pt;}
._c{width:32.572421pt;}
._2f{width:33.706547pt;}
._e{width:35.316955pt;}
._3e{width:36.345874pt;}
._11{width:37.339288pt;}
._17{width:38.489372pt;}
._2b{width:40.353414pt;}
._40{width:41.521518pt;}
._2c{width:42.561298pt;}
._1e{width:45.112570pt;}
._15{width:46.867840pt;}
._38{width:47.841202pt;}
._1c{width:49.257444pt;}
._42{width:50.158690pt;}
._3b{width:51.510678pt;}
._3f{width:52.552631pt;}
._34{width:54.565758pt;}
._33{width:55.552695pt;}
._4b{width:56.571463pt;}
._2a{width:58.449600pt;}
._3d{width:60.454300pt;}
._1d{width:70.135872pt;}
._3a{width:75.881459pt;}
._36{width:78.031525pt;}
._43{width:85.773934pt;}
._35{width:104.605110pt;}
._21{width:107.230806pt;}
._37{width:111.762711pt;}
._32{width:115.571316pt;}
._24{width:157.610916pt;}
._27{width:172.733466pt;}
._23{width:187.648317pt;}
._28{width:207.501560pt;}
._22{width:211.563113pt;}
._25{width:216.376331pt;}
._26{width:231.498881pt;}
._29{width:393.338566pt;}
.fsd{font-size:27.843126pt;}
.fs8{font-size:37.194667pt;}
.fsc{font-size:38.983730pt;}
.fs6{font-size:42.506667pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fsf{font-size:45.383458pt;}
.fse{font-size:45.882936pt;}
.fs5{font-size:47.818667pt;}
.fsa{font-size:50.271970pt;}
.fs1{font-size:53.121069pt;}
.fs7{font-size:53.136000pt;}
.fsb{font-size:55.691842pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y5c{bottom:37.226074pt;}
.y5e{bottom:38.216555pt;}
.y219{bottom:94.486667pt;}
.y3b{bottom:94.488000pt;}
.y3a{bottom:110.428000pt;}
.y5b{bottom:112.692000pt;}
.y39{bottom:126.368000pt;}
.y1e4{bottom:126.580000pt;}
.y218{bottom:127.412000pt;}
.y5a{bottom:128.632000pt;}
.y116{bottom:135.662667pt;}
.y38{bottom:142.308000pt;}
.ya8{bottom:142.309333pt;}
.y1e3{bottom:142.520000pt;}
.y217{bottom:143.352000pt;}
.y59{bottom:144.572000pt;}
.y113{bottom:151.336000pt;}
.y1c1{bottom:158.248000pt;}
.y85{bottom:158.249333pt;}
.y1e2{bottom:158.460000pt;}
.y216{bottom:160.337333pt;}
.y58{bottom:160.512000pt;}
.y37{bottom:161.160000pt;}
.y115{bottom:163.954667pt;}
.y114{bottom:167.940000pt;}
.y1c0{bottom:174.188000pt;}
.y84{bottom:174.189333pt;}
.y1e1{bottom:174.612000pt;}
.y183{bottom:175.089333pt;}
.y215{bottom:176.277333pt;}
.y57{bottom:176.452000pt;}
.y36{bottom:177.100000pt;}
.ya7{bottom:190.129333pt;}
.y83{bottom:190.412000pt;}
.y112{bottom:190.537333pt;}
.y1e0{bottom:190.552000pt;}
.y182{bottom:191.029333pt;}
.y19b{bottom:191.645333pt;}
.y214{bottom:192.217333pt;}
.y56{bottom:192.393333pt;}
.y35{bottom:193.041333pt;}
.ya6{bottom:206.069333pt;}
.y82{bottom:206.352000pt;}
.y111{bottom:206.477333pt;}
.y1df{bottom:206.704000pt;}
.y181{bottom:206.969333pt;}
.y19a{bottom:207.585333pt;}
.y213{bottom:208.158667pt;}
.y55{bottom:208.333333pt;}
.y34{bottom:208.981333pt;}
.ya5{bottom:222.009333pt;}
.y81{bottom:222.293333pt;}
.y110{bottom:222.417333pt;}
.y1de{bottom:222.644000pt;}
.y180{bottom:222.909333pt;}
.y199{bottom:223.525333pt;}
.y212{bottom:224.098667pt;}
.y54{bottom:224.273333pt;}
.y33{bottom:224.921333pt;}
.yd8{bottom:237.949333pt;}
.ya4{bottom:237.950667pt;}
.y80{bottom:238.233333pt;}
.y1dd{bottom:238.796000pt;}
.y17f{bottom:239.750667pt;}
.y211{bottom:240.038667pt;}
.y53{bottom:240.213333pt;}
.y32{bottom:240.861333pt;}
.y198{bottom:240.981333pt;}
.y10f{bottom:248.449333pt;}
.y1bf{bottom:253.889333pt;}
.y149{bottom:253.890667pt;}
.yd7{bottom:254.172000pt;}
.y7f{bottom:254.173333pt;}
.y1dc{bottom:254.736000pt;}
.y17e{bottom:255.690667pt;}
.y52{bottom:256.153333pt;}
.y31{bottom:256.801333pt;}
.y197{bottom:256.921333pt;}
.y210{bottom:257.024000pt;}
.ya3{bottom:262.712000pt;}
.y10e{bottom:265.790667pt;}
.y148{bottom:269.830667pt;}
.yd6{bottom:270.112000pt;}
.y7e{bottom:270.113333pt;}
.y1db{bottom:270.676000pt;}
.y17d{bottom:271.630667pt;}
.y51{bottom:272.093333pt;}
.y30{bottom:272.741333pt;}
.y196{bottom:272.862667pt;}
.y20f{bottom:272.964000pt;}
.y1be{bottom:278.409333pt;}
.y10d{bottom:283.130667pt;}
.y147{bottom:285.770667pt;}
.yd5{bottom:286.052000pt;}
.y7d{bottom:286.053333pt;}
.y1da{bottom:286.616000pt;}
.y17c{bottom:287.570667pt;}
.y50{bottom:288.034667pt;}
.y2f{bottom:288.682667pt;}
.y195{bottom:288.802667pt;}
.y20e{bottom:288.904000pt;}
.ya2{bottom:299.362667pt;}
.y10c{bottom:301.604000pt;}
.y146{bottom:301.710667pt;}
.yd4{bottom:301.992000pt;}
.y7c{bottom:301.993333pt;}
.y1d9{bottom:302.557333pt;}
.y17b{bottom:303.510667pt;}
.y2e{bottom:304.622667pt;}
.y194{bottom:304.742667pt;}
.y20d{bottom:304.844000pt;}
.y4f{bottom:306.237333pt;}
.ya1{bottom:315.302667pt;}
.y1bd{bottom:316.334667pt;}
.y145{bottom:317.650667pt;}
.yd3{bottom:317.932000pt;}
.y1d8{bottom:318.708000pt;}
.y17a{bottom:319.450667pt;}
.y193{bottom:320.682667pt;}
.y20c{bottom:320.784000pt;}
.y4e{bottom:322.178667pt;}
.y2d{bottom:323.473333pt;}
.y109{bottom:326.101333pt;}
.y7b{bottom:327.040000pt;}
.ya0{bottom:331.242667pt;}
.y1bc{bottom:332.274667pt;}
.y10b{bottom:332.661333pt;}
.y144{bottom:333.592000pt;}
.yd2{bottom:333.872000pt;}
.y1d7{bottom:334.649333pt;}
.y179{bottom:335.392000pt;}
.y192{bottom:336.622667pt;}
.y20b{bottom:337.769333pt;}
.y4d{bottom:338.118667pt;}
.y2c{bottom:339.414667pt;}
.y106{bottom:341.773333pt;}
.y9f{bottom:347.182667pt;}
.y1bb{bottom:348.216000pt;}
.y143{bottom:349.532000pt;}
.yd1{bottom:349.813333pt;}
.y1d6{bottom:350.589333pt;}
.y10a{bottom:350.760000pt;}
.y178{bottom:351.332000pt;}
.y7a{bottom:352.086667pt;}
.y191{bottom:352.562667pt;}
.y20a{bottom:353.709333pt;}
.y4c{bottom:354.058667pt;}
.y108{bottom:354.393333pt;}
.y2b{bottom:355.354667pt;}
.y107{bottom:358.378667pt;}
.y9e{bottom:363.124000pt;}
.y1ba{bottom:364.156000pt;}
.y142{bottom:365.472000pt;}
.yd0{bottom:365.753333pt;}
.y1d5{bottom:366.529333pt;}
.y177{bottom:368.174667pt;}
.y209{bottom:369.649333pt;}
.y4b{bottom:369.998667pt;}
.y190{bottom:370.018667pt;}
.y2a{bottom:371.294667pt;}
.y9d{bottom:379.064000pt;}
.y1b9{bottom:380.096000pt;}
.y105{bottom:380.974667pt;}
.y141{bottom:381.412000pt;}
.ycf{bottom:381.693333pt;}
.y1d4{bottom:382.469333pt;}
.y176{bottom:384.114667pt;}
.y208{bottom:385.589333pt;}
.y4a{bottom:385.938667pt;}
.y18f{bottom:385.960000pt;}
.y29{bottom:387.234667pt;}
.y79{bottom:392.202667pt;}
.y9c{bottom:395.134667pt;}
.y1b8{bottom:396.036000pt;}
.y104{bottom:396.914667pt;}
.y140{bottom:397.352000pt;}
.yce{bottom:397.633333pt;}
.y1d3{bottom:398.409333pt;}
.y175{bottom:400.054667pt;}
.y49{bottom:401.880000pt;}
.y18e{bottom:401.900000pt;}
.y207{bottom:402.574667pt;}
.y28{bottom:406.086667pt;}
.y78{bottom:408.142667pt;}
.y9b{bottom:411.074667pt;}
.y1b7{bottom:411.976000pt;}
.y103{bottom:412.854667pt;}
.y13f{bottom:413.292000pt;}
.y1d2{bottom:414.349333pt;}
.y174{bottom:415.994667pt;}
.y48{bottom:417.820000pt;}
.y18d{bottom:417.840000pt;}
.y206{bottom:418.514667pt;}
.y27{bottom:422.026667pt;}
.y23b{bottom:422.750667pt;}
.y77{bottom:424.082667pt;}
.ycd{bottom:425.044000pt;}
.y9a{bottom:427.014667pt;}
.y1b6{bottom:427.916000pt;}
.y102{bottom:428.794667pt;}
.y13e{bottom:429.233333pt;}
.y1d1{bottom:430.501333pt;}
.y173{bottom:431.934667pt;}
.y47{bottom:433.760000pt;}
.y18c{bottom:433.780000pt;}
.y205{bottom:434.454667pt;}
.y26{bottom:437.966667pt;}
.y23a{bottom:438.690667pt;}
.y76{bottom:440.022667pt;}
.ycc{bottom:443.081333pt;}
.y1b5{bottom:443.857333pt;}
.y101{bottom:444.736000pt;}
.y13d{bottom:445.173333pt;}
.y1d0{bottom:446.441333pt;}
.y172{bottom:447.874667pt;}
.y46{bottom:449.700000pt;}
.y18b{bottom:449.720000pt;}
.y204{bottom:451.440000pt;}
.y99{bottom:451.777333pt;}
.y25{bottom:453.906667pt;}
.y239{bottom:454.632000pt;}
.y75{bottom:455.964000pt;}
.y1b4{bottom:459.797333pt;}
.y100{bottom:460.676000pt;}
.y13c{bottom:461.113333pt;}
.ycb{bottom:461.117333pt;}
.y1cf{bottom:462.382667pt;}
.y171{bottom:463.814667pt;}
.y45{bottom:465.640000pt;}
.y18a{bottom:465.661333pt;}
.y203{bottom:467.380000pt;}
.y24{bottom:469.846667pt;}
.y238{bottom:471.309333pt;}
.y74{bottom:471.904000pt;}
.y1b3{bottom:475.737333pt;}
.yff{bottom:476.616000pt;}
.y13b{bottom:477.053333pt;}
.y1ce{bottom:478.322667pt;}
.y170{bottom:479.754667pt;}
.yca{bottom:480.969333pt;}
.y44{bottom:481.580000pt;}
.y189{bottom:481.601333pt;}
.y202{bottom:483.320000pt;}
.y23{bottom:485.788000pt;}
.y237{bottom:487.249333pt;}
.y73{bottom:488.126667pt;}
.y98{bottom:488.426667pt;}
.y1b2{bottom:491.677333pt;}
.yfe{bottom:492.556000pt;}
.y13a{bottom:492.993333pt;}
.y1cd{bottom:494.262667pt;}
.y16f{bottom:495.694667pt;}
.y43{bottom:497.521333pt;}
.y201{bottom:500.305333pt;}
.y22{bottom:501.728000pt;}
.y236{bottom:503.190667pt;}
.y72{bottom:504.066667pt;}
.y97{bottom:504.368000pt;}
.yc9{bottom:505.722667pt;}
.y1b1{bottom:507.617333pt;}
.yfd{bottom:508.496000pt;}
.y139{bottom:508.933333pt;}
.y188{bottom:508.941333pt;}
.y1cc{bottom:510.414667pt;}
.y16e{bottom:511.634667pt;}
.y42{bottom:513.461333pt;}
.y200{bottom:516.245333pt;}
.y21{bottom:517.668000pt;}
.y235{bottom:519.130667pt;}
.y71{bottom:520.008000pt;}
.y96{bottom:520.308000pt;}
.yc8{bottom:522.506667pt;}
.y1b0{bottom:523.557333pt;}
.yfc{bottom:524.436000pt;}
.y138{bottom:524.874667pt;}
.y1cb{bottom:526.354667pt;}
.y16d{bottom:527.574667pt;}
.y41{bottom:529.401333pt;}
.y1ff{bottom:532.185333pt;}
.y20{bottom:533.608000pt;}
.y234{bottom:535.808000pt;}
.y70{bottom:535.948000pt;}
.y95{bottom:536.248000pt;}
.yc7{bottom:538.448000pt;}
.y1af{bottom:539.498667pt;}
.yfb{bottom:540.377333pt;}
.y137{bottom:540.814667pt;}
.y1ca{bottom:542.294667pt;}
.y40{bottom:545.341333pt;}
.y1fe{bottom:548.126667pt;}
.y1f{bottom:549.548000pt;}
.y233{bottom:551.749333pt;}
.y6f{bottom:551.888000pt;}
.y16c{bottom:553.768000pt;}
.yc6{bottom:554.388000pt;}
.y1ae{bottom:555.438667pt;}
.y187{bottom:555.808000pt;}
.y136{bottom:556.754667pt;}
.y1c9{bottom:558.234667pt;}
.y3f{bottom:561.281333pt;}
.y1fd{bottom:564.066667pt;}
.yfa{bottom:564.896000pt;}
.y1e{bottom:565.488000pt;}
.y232{bottom:567.689333pt;}
.y6e{bottom:567.828000pt;}
.yc5{bottom:570.328000pt;}
.y1ad{bottom:571.378667pt;}
.y186{bottom:571.748000pt;}
.y1c8{bottom:574.176000pt;}
.y3e{bottom:577.221333pt;}
.y1fc{bottom:580.006667pt;}
.y135{bottom:581.273333pt;}
.y94{bottom:581.363429pt;}
.y1d{bottom:581.429333pt;}
.y231{bottom:583.629333pt;}
.y6d{bottom:583.768000pt;}
.yc4{bottom:586.268000pt;}
.y1ac{bottom:587.318667pt;}
.y1c7{bottom:590.116000pt;}
.y16b{bottom:594.501333pt;}
.y3d{bottom:595.425333pt;}
.y1fb{bottom:595.946667pt;}
.y93{bottom:596.444263pt;}
.y1c{bottom:597.369333pt;}
.y6c{bottom:599.708000pt;}
.y230{bottom:600.308000pt;}
.yf9{bottom:600.738667pt;}
.yc3{bottom:602.489333pt;}
.y1ab{bottom:603.258667pt;}
.y134{bottom:605.793333pt;}
.y16a{bottom:610.441333pt;}
.y3c{bottom:611.366667pt;}
.y92{bottom:611.525097pt;}
.y1c6{bottom:612.918667pt;}
.y1fa{bottom:612.932000pt;}
.y6b{bottom:615.649333pt;}
.y22f{bottom:616.248000pt;}
.yf8{bottom:616.678667pt;}
.yc2{bottom:618.429333pt;}
.y1aa{bottom:619.198667pt;}
.y169{bottom:626.381333pt;}
.y91{bottom:626.607192pt;}
.y1b{bottom:627.306667pt;}
.y1f9{bottom:628.872000pt;}
.yf7{bottom:629.334667pt;}
.y6a{bottom:631.589333pt;}
.y22e{bottom:632.188000pt;}
.yf6{bottom:632.618667pt;}
.yc1{bottom:634.369333pt;}
.y1a9{bottom:635.140000pt;}
.y90{bottom:641.688026pt;}
.y133{bottom:642.302667pt;}
.y1f8{bottom:644.812000pt;}
.y69{bottom:647.529333pt;}
.y22d{bottom:648.128000pt;}
.y130{bottom:648.864000pt;}
.yc0{bottom:650.310667pt;}
.y1a8{bottom:651.080000pt;}
.yf5{bottom:656.128000pt;}
.y8f{bottom:656.768860pt;}
.y12b{bottom:657.976000pt;}
.y1f7{bottom:660.752000pt;}
.y12e{bottom:661.689333pt;}
.y68{bottom:663.752000pt;}
.y22c{bottom:664.068000pt;}
.ybf{bottom:666.250667pt;}
.y12f{bottom:666.962667pt;}
.y1a7{bottom:667.020000pt;}
.y12d{bottom:669.660000pt;}
.y132{bottom:670.594667pt;}
.y8e{bottom:671.849694pt;}
.yf4{bottom:672.069333pt;}
.y168{bottom:672.596184pt;}
.y131{bottom:674.580000pt;}
.y12c{bottom:677.629333pt;}
.y1f6{bottom:677.737333pt;}
.y67{bottom:679.693333pt;}
.y22b{bottom:680.746667pt;}
.ybe{bottom:682.190667pt;}
.y1a6{bottom:682.960000pt;}
.y167{bottom:686.210538pt;}
.y8d{bottom:686.930528pt;}
.yf3{bottom:688.009333pt;}
.y1f5{bottom:693.677333pt;}
.y66{bottom:695.633333pt;}
.y22a{bottom:696.686667pt;}
.ybd{bottom:698.130667pt;}
.y17{bottom:698.310667pt;}
.y1a5{bottom:698.900000pt;}
.y1c5{bottom:698.901333pt;}
.y166{bottom:699.826031pt;}
.y12a{bottom:700.832000pt;}
.y8c{bottom:702.039467pt;}
.yf2{bottom:703.949333pt;}
.y163{bottom:706.605333pt;}
.y1a{bottom:708.937333pt;}
.y1f4{bottom:709.617333pt;}
.y65{bottom:711.573333pt;}
.y229{bottom:712.626667pt;}
.y165{bottom:713.440385pt;}
.ybc{bottom:714.070667pt;}
.y16{bottom:714.250667pt;}
.y1a4{bottom:714.841333pt;}
.yee{bottom:716.631867pt;}
.y129{bottom:716.772000pt;}
.y8b{bottom:717.595521pt;}
.yef{bottom:717.991602pt;}
.yf1{bottom:718.027936pt;}
.y19{bottom:719.564000pt;}
.yec{bottom:721.433333pt;}
.y8a{bottom:725.165733pt;}
.y1f3{bottom:725.557333pt;}
.yed{bottom:725.785045pt;}
.yf0{bottom:725.785273pt;}
.y164{bottom:727.054765pt;}
.y64{bottom:727.513333pt;}
.y228{bottom:728.566667pt;}
.ybb{bottom:730.012000pt;}
.y18{bottom:730.190667pt;}
.y1a3{bottom:730.781333pt;}
.y128{bottom:732.713333pt;}
.y162{bottom:741.123474pt;}
.y1f2{bottom:742.542667pt;}
.y63{bottom:743.453333pt;}
.y227{bottom:744.508000pt;}
.yba{bottom:745.952000pt;}
.y15{bottom:746.130667pt;}
.y1a2{bottom:746.721333pt;}
.yeb{bottom:747.273333pt;}
.y127{bottom:748.653333pt;}
.y89{bottom:751.661333pt;}
.y15f{bottom:754.708267pt;}
.y161{bottom:754.737828pt;}
.y1f1{bottom:758.482667pt;}
.y62{bottom:759.393333pt;}
.y226{bottom:761.185333pt;}
.yb9{bottom:761.892000pt;}
.y14{bottom:762.070667pt;}
.y1a1{bottom:762.661333pt;}
.yea{bottom:763.213333pt;}
.y88{bottom:767.602667pt;}
.y160{bottom:768.352229pt;}
.y1f0{bottom:774.422667pt;}
.y61{bottom:775.334667pt;}
.y225{bottom:777.125333pt;}
.yb8{bottom:777.832000pt;}
.y13{bottom:778.012000pt;}
.y1a0{bottom:778.601333pt;}
.ye9{bottom:779.153333pt;}
.y15e{bottom:782.420917pt;}
.y1ef{bottom:790.362667pt;}
.y126{bottom:791.095859pt;}
.y60{bottom:791.274667pt;}
.y224{bottom:793.066667pt;}
.y12{bottom:793.952000pt;}
.yb7{bottom:794.053333pt;}
.y19f{bottom:794.541333pt;}
.y1c4{bottom:794.542667pt;}
.y15b{bottom:796.003733pt;}
.y15d{bottom:796.035271pt;}
.y87{bottom:803.581333pt;}
.ye8{bottom:804.425333pt;}
.y125{bottom:804.861277pt;}
.y1ee{bottom:807.348000pt;}
.ye7{bottom:807.709333pt;}
.y223{bottom:809.006667pt;}
.y15c{bottom:809.649625pt;}
.y11{bottom:809.892000pt;}
.yb6{bottom:809.993333pt;}
.y19e{bottom:810.482667pt;}
.y185{bottom:814.138667pt;}
.y124{bottom:818.625410pt;}
.y86{bottom:819.521333pt;}
.y1ed{bottom:823.288000pt;}
.y15a{bottom:823.718361pt;}
.y222{bottom:824.946667pt;}
.y10{bottom:825.832000pt;}
.y19d{bottom:826.422667pt;}
.ye6{bottom:826.462667pt;}
.ye5{bottom:829.746667pt;}
.y184{bottom:830.078667pt;}
.y123{bottom:832.389677pt;}
.y157{bottom:837.299200pt;}
.y159{bottom:837.332715pt;}
.y5f{bottom:838.258667pt;}
.y1ec{bottom:839.228000pt;}
.y221{bottom:840.886667pt;}
.yf{bottom:841.772000pt;}
.y19c{bottom:842.362667pt;}
.y122{bottom:846.153810pt;}
.y158{bottom:850.946579pt;}
.ye4{bottom:855.018667pt;}
.yb5{bottom:855.720000pt;}
.y1eb{bottom:856.213333pt;}
.y220{bottom:856.826667pt;}
.ye{bottom:857.713333pt;}
.ye3{bottom:858.302667pt;}
.y121{bottom:859.917943pt;}
.y156{bottom:865.015804pt;}
.yb4{bottom:871.660000pt;}
.y1ea{bottom:872.153333pt;}
.y21f{bottom:873.505333pt;}
.yd{bottom:873.653333pt;}
.y120{bottom:873.682259pt;}
.ye2{bottom:874.242667pt;}
.y155{bottom:878.630158pt;}
.y11f{bottom:887.447543pt;}
.y1e9{bottom:888.093333pt;}
.yb3{bottom:888.132000pt;}
.y21e{bottom:889.445333pt;}
.yc{bottom:889.593333pt;}
.ye1{bottom:890.182667pt;}
.y1c3{bottom:890.184000pt;}
.y154{bottom:892.244512pt;}
.y150{bottom:899.015867pt;}
.y11e{bottom:901.211677pt;}
.yb2{bottom:904.072000pt;}
.y1e8{bottom:905.078667pt;}
.y21d{bottom:905.385333pt;}
.yb{bottom:905.533333pt;}
.y153{bottom:905.858866pt;}
.ye0{bottom:906.124000pt;}
.y11d{bottom:914.975943pt;}
.y152{bottom:919.473220pt;}
.yb1{bottom:920.012000pt;}
.y1e7{bottom:921.018667pt;}
.y21c{bottom:921.326667pt;}
.ya{bottom:921.473333pt;}
.ydf{bottom:922.064000pt;}
.y11c{bottom:928.740077pt;}
.y151{bottom:933.088763pt;}
.yb0{bottom:935.953333pt;}
.y1e6{bottom:936.958667pt;}
.y21b{bottom:937.266667pt;}
.y9{bottom:937.413333pt;}
.yde{bottom:938.004000pt;}
.y11b{bottom:942.504267pt;}
.y14f{bottom:947.156309pt;}
.yaf{bottom:951.893333pt;}
.y1e5{bottom:952.900000pt;}
.y21a{bottom:953.206667pt;}
.y14e{bottom:953.925200pt;}
.ydd{bottom:953.944000pt;}
.y11a{bottom:963.609329pt;}
.y8{bottom:963.906667pt;}
.yae{bottom:968.364000pt;}
.ydc{bottom:969.884000pt;}
.y119{bottom:970.492000pt;}
.y14d{bottom:974.839398pt;}
.y7{bottom:980.512000pt;}
.y14c{bottom:981.606933pt;}
.yad{bottom:984.305333pt;}
.ydb{bottom:985.824000pt;}
.y1c2{bottom:985.825333pt;}
.y118{bottom:985.898667pt;}
.y6{bottom:999.108000pt;}
.yac{bottom:1000.776000pt;}
.yda{bottom:1001.765333pt;}
.y117{bottom:1001.838667pt;}
.y14b{bottom:1002.481333pt;}
.yd9{bottom:1017.705333pt;}
.yab{bottom:1017.778667pt;}
.y5{bottom:1033.645333pt;}
.y14a{bottom:1033.718667pt;}
.yaa{bottom:1033.720000pt;}
.ya9{bottom:1036.345278pt;}
.y4{bottom:1036.403388pt;}
.y3{bottom:1048.651848pt;}
.h22{height:2.125440pt;}
.hc{height:11.733399pt;}
.h1b{height:12.306662pt;}
.h21{height:26.185045pt;}
.hb{height:26.631381pt;}
.h8{height:29.924693pt;}
.h12{height:30.549524pt;}
.h2b{height:31.933037pt;}
.h4{height:32.000200pt;}
.h2d{height:34.037593pt;}
.h31{height:34.039551pt;}
.h34{height:34.146918pt;}
.h33{height:34.156028pt;}
.h32{height:34.165139pt;}
.h30{height:34.169694pt;}
.h2f{height:34.183360pt;}
.h7{height:34.238165pt;}
.h25{height:34.412202pt;}
.h26{height:34.412245pt;}
.h28{height:34.412306pt;}
.h27{height:34.412429pt;}
.h36{height:36.876384pt;}
.h13{height:37.195200pt;}
.h11{height:37.703977pt;}
.hf{height:38.037520pt;}
.h24{height:38.040354pt;}
.h9{height:38.045376pt;}
.h3{height:39.846471pt;}
.ha{height:39.852000pt;}
.h35{height:39.857333pt;}
.h2a{height:41.534379pt;}
.h37{height:42.472043pt;}
.h39{height:42.477376pt;}
.hd{height:44.354167pt;}
.h15{height:45.465045pt;}
.h14{height:45.470379pt;}
.h6{height:45.652160pt;}
.h18{height:48.126379pt;}
.h38{height:51.474709pt;}
.h3a{height:51.480043pt;}
.h17{height:52.988000pt;}
.h5{height:54.706080pt;}
.h1f{height:55.536723pt;}
.h16{height:58.601045pt;}
.h20{height:58.606379pt;}
.h19{height:61.262379pt;}
.h2e{height:61.419445pt;}
.h2c{height:61.424869pt;}
.h1a{height:64.979992pt;}
.h1c{height:66.858696pt;}
.h1e{height:67.004032pt;}
.h10{height:67.746465pt;}
.h23{height:76.300000pt;}
.h1d{height:78.747834pt;}
.h29{height:110.498773pt;}
.h2{height:1062.715892pt;}
.he{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.931987pt;}
.w5{width:5.933333pt;}
.w7{width:11.863987pt;}
.w6{width:11.865333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.167079pt;}
.x11{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x15{left:81.162667pt;}
.x3c{left:82.232000pt;}
.x16{left:84.234667pt;}
.x12{left:86.497333pt;}
.x33{left:87.864915pt;}
.x9{left:88.874667pt;}
.x3d{left:102.896000pt;}
.x2{left:111.874558pt;}
.x49{left:124.178667pt;}
.xe{left:127.092000pt;}
.x44{left:131.588000pt;}
.x4b{left:137.872000pt;}
.x14{left:143.450667pt;}
.x50{left:146.794667pt;}
.x34{left:151.541333pt;}
.x48{left:152.812000pt;}
.x52{left:173.925333pt;}
.xd{left:185.090357pt;}
.x35{left:207.628000pt;}
.x4f{left:212.321333pt;}
.x36{left:223.909333pt;}
.x4d{left:230.962667pt;}
.x51{left:234.278667pt;}
.x32{left:235.194133pt;}
.x13{left:240.869333pt;}
.x46{left:252.834667pt;}
.x37{left:254.212000pt;}
.x4a{left:295.908000pt;}
.x4c{left:320.412000pt;}
.x47{left:338.816000pt;}
.x3e{left:342.162667pt;}
.x3f{left:348.026667pt;}
.x4e{left:359.870667pt;}
.x45{left:373.804000pt;}
.xa{left:403.492000pt;}
.x2c{left:405.173333pt;}
.x2b{left:406.762667pt;}
.x42{left:410.134667pt;}
.x1d{left:411.350667pt;}
.xf{left:415.222933pt;}
.xb{left:416.776000pt;}
.x40{left:430.797333pt;}
.x17{left:471.186667pt;}
.x19{left:481.305333pt;}
.x2d{left:486.066667pt;}
.x43{left:490.528000pt;}
.x1a{left:491.806667pt;}
.x1e{left:496.890999pt;}
.x25{left:500.338667pt;}
.x1b{left:502.048000pt;}
.x2f{left:524.994667pt;}
.x30{left:525.984000pt;}
.x2e{left:531.305333pt;}
.x24{left:533.594667pt;}
.x1f{left:543.277520pt;}
.x18{left:544.720000pt;}
.x31{left:546.396000pt;}
.x27{left:549.229333pt;}
.x28{left:550.218667pt;}
.x26{left:555.540000pt;}
.x38{left:558.189817pt;}
.x29{left:572.225333pt;}
.x2a{left:591.960000pt;}
.x1c{left:597.280000pt;}
.x5{left:602.909333pt;}
.x21{left:608.004000pt;}
.x20{left:610.572528pt;}
.x8{left:612.413333pt;}
.x41{left:613.310667pt;}
.x6{left:615.249333pt;}
.x7{left:625.917333pt;}
.x10{left:650.460996pt;}
.x39{left:658.797333pt;}
.x22{left:663.171792pt;}
.x3a{left:674.737333pt;}
.x23{left:701.137333pt;}
.x3b{left:709.837321pt;}
.xc{left:715.769369pt;}
}




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