
    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_40808cdd17cfffa78b43bc86.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_df9e28dc275209faab54434e.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_0cba3e4cd8f9e6acf2015524.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_b2b9225fc8e0e36b6fd10305.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2245e54e9c24466c28ed844f.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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4337162fbe5f955daa6b8052.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf5f536c8f96882334175387.woff2')format("woff");}.ffc{font-family:ffc;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d808c513683f2bf852e2911c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6545924f9572f4cad61ece0a.woff2')format("woff");}.fff{font-family:fff;line-height:0.221000;font-style:normal;font-weight: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_0b360afe16df1f143c8b72bb.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c1728cb79ef118908e3006b6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d645314b8c55fc1690aa7f21.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b15fe5ae03ddaacaf216c2c0.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_5cf079570c6706ebab4793f9.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_fc85b2b8be23c7bf955b99af.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.246000;font-style:normal;font-weight: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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_1aa0454b06b03b2e6f01f891.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_4a477ec8dfdea0f35b03b4e4.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_5f1b02559811cb9f11bab2f1.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_b6add4ea7f42a30d49779443.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_a540c62106c03651f490fff4.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.252000;font-style:normal;font-weight: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_16dbe39105c780c21607c326.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_f464ed0d8c967946c549e0f9.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_55e473b76b6bf7f3bf2cdc13.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.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_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_5f1b02559811cb9f11bab2f1.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_b6add4ea7f42a30d49779443.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.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_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_f464ed0d8c967946c549e0f9.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_55e473b76b6bf7f3bf2cdc13.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.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_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_5f1b02559811cb9f11bab2f1.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_b6add4ea7f42a30d49779443.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_94dedbfe53c28413f8b4c840.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.734000;font-style:normal;font-weight: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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.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_745033452a59f1608561cf7c.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_11e64481b7613f66fba95283.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_075d97003e772cfb65be8cf7.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_b0513b4e5eb9d70c40e0d0e4.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_856d1c55ac5aaede6e27d4cd.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url('chunks/assets/font_031fde50211602c49576195d.woff2')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_e70761d943e118bf9582cf9e.woff2')format("woff");}.ff4e{font-family:ff4e;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.980000px;}
.lse{letter-spacing:-0.338030px;}
.lsc{letter-spacing:-0.089291px;}
.lsd{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.038268px;}
.ls8{letter-spacing:0.057000px;}
.ls5{letter-spacing:0.094215px;}
.ls4{letter-spacing:0.094827px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.666417px;}
.ls3{letter-spacing:0.694290px;}
.ls34{letter-spacing:2.475664px;}
.ls22{letter-spacing:14.798564px;}
.ls18{letter-spacing:14.800993px;}
.ls19{letter-spacing:15.512349px;}
.ls25{letter-spacing:16.480993px;}
.ls30{letter-spacing:17.123859px;}
.ls1a{letter-spacing:17.206943px;}
.ls2f{letter-spacing:17.601512px;}
.ls1d{letter-spacing:17.894714px;}
.ls1c{letter-spacing:18.388993px;}
.ls16{letter-spacing:18.738847px;}
.ls2e{letter-spacing:19.416546px;}
.ls1e{letter-spacing:19.449000px;}
.ls20{letter-spacing:19.965852px;}
.ls13{letter-spacing:20.140993px;}
.ls7{letter-spacing:20.339809px;}
.ls2b{letter-spacing:21.323691px;}
.ls6{letter-spacing:21.409993px;}
.ls17{letter-spacing:21.478993px;}
.ls33{letter-spacing:21.748993px;}
.ls12{letter-spacing:21.907928px;}
.ls31{letter-spacing:22.213993px;}
.ls1f{letter-spacing:22.233000px;}
.lsb{letter-spacing:22.364358px;}
.ls15{letter-spacing:22.850679px;}
.ls24{letter-spacing:22.883881px;}
.ls10{letter-spacing:22.922534px;}
.ls26{letter-spacing:23.293252px;}
.ls14{letter-spacing:23.575993px;}
.lsa{letter-spacing:23.827993px;}
.ls32{letter-spacing:24.460739px;}
.ls2d{letter-spacing:25.455133px;}
.ls2c{letter-spacing:25.963993px;}
.ls9{letter-spacing:27.415993px;}
.ls11{letter-spacing:27.701212px;}
.ls2a{letter-spacing:27.762837px;}
.ls29{letter-spacing:28.276808px;}
.ls21{letter-spacing:28.783198px;}
.ls23{letter-spacing:29.882978px;}
.ls28{letter-spacing:30.061993px;}
.ls27{letter-spacing:35.905868px;}
.ls1b{letter-spacing:39.921423px;}
.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;}
}
.ws0{word-spacing:-48.485022px;}
.ws1{word-spacing:-48.000300px;}
.ws23b{word-spacing:-19.093093px;}
.ws12e{word-spacing:-18.334188px;}
.ws104{word-spacing:-16.606328px;}
.ws255{word-spacing:-15.279257px;}
.ws272{word-spacing:-3.335612px;}
.ws212{word-spacing:-3.275595px;}
.ws16d{word-spacing:-3.275536px;}
.ws10a{word-spacing:-3.216116px;}
.ws1ec{word-spacing:-3.096500px;}
.ws135{word-spacing:-3.036722px;}
.ws1a7{word-spacing:-2.976705px;}
.ws2da{word-spacing:-2.857388px;}
.ws43{word-spacing:-2.857329px;}
.ws2a6{word-spacing:-2.797969px;}
.ws21c{word-spacing:-2.797610px;}
.ws10d{word-spacing:-2.797312px;}
.wsa9{word-spacing:-2.678533px;}
.wsc3{word-spacing:-2.678054px;}
.wsbe{word-spacing:-2.677935px;}
.ws2d9{word-spacing:-2.664908px;}
.ws6f{word-spacing:-2.618516px;}
.ws15a{word-spacing:-2.617978px;}
.ws70{word-spacing:-2.558498px;}
.ws199{word-spacing:-2.439720px;}
.ws164{word-spacing:-2.439182px;}
.ws238{word-spacing:-2.439122px;}
.wsaf{word-spacing:-2.438942px;}
.wse1{word-spacing:-2.379164px;}
.ws182{word-spacing:-2.259728px;}
.ws12a{word-spacing:-2.199711px;}
.ws37{word-spacing:-2.020317px;}
.ws127{word-spacing:-1.960898px;}
.ws180{word-spacing:-1.841521px;}
.wsac{word-spacing:-1.841162px;}
.wsed{word-spacing:-1.840923px;}
.ws169{word-spacing:-1.781564px;}
.ws10c{word-spacing:-1.781504px;}
.wsd7{word-spacing:-1.721547px;}
.ws3a{word-spacing:-1.662127px;}
.ws132{word-spacing:-1.602110px;}
.ws1d5{word-spacing:-1.542153px;}
.ws1ce{word-spacing:-1.482734px;}
.ws5f{word-spacing:-1.482136px;}
.ws124{word-spacing:-1.422716px;}
.wsd6{word-spacing:-1.363297px;}
.ws194{word-spacing:-1.362699px;}
.ws163{word-spacing:-1.303340px;}
.ws122{word-spacing:-1.243382px;}
.ws2f{word-spacing:-1.243323px;}
.ws176{word-spacing:-1.183903px;}
.ws68{word-spacing:-1.167161px;}
.ws125{word-spacing:-1.064048px;}
.ws2a5{word-spacing:-1.063929px;}
.ws2cf{word-spacing:-1.039599px;}
.ws63{word-spacing:-1.020469px;}
.ws89{word-spacing:-1.004510px;}
.ws67{word-spacing:-1.001335px;}
.ws27c{word-spacing:-0.980359px;}
.ws183{word-spacing:-0.944552px;}
.ws109{word-spacing:-0.884714px;}
.ws151{word-spacing:-0.884535px;}
.wsb3{word-spacing:-0.765158px;}
.wsb7{word-spacing:-0.765099px;}
.ws145{word-spacing:-0.705679px;}
.ws134{word-spacing:-0.645722px;}
.ws61{word-spacing:-0.612281px;}
.ws1d9{word-spacing:-0.585705px;}
.ws64{word-spacing:-0.503856px;}
.wsd0{word-spacing:-0.466328px;}
.ws1e7{word-spacing:-0.466268px;}
.ws69{word-spacing:-0.465589px;}
.ws2bb{word-spacing:-0.442716px;}
.ws1ae{word-spacing:-0.406311px;}
.ws2a4{word-spacing:-0.382519px;}
.ws234{word-spacing:-0.346952px;}
.ws9{word-spacing:-0.233134px;}
.ws1f0{word-spacing:-0.227156px;}
.ws136{word-spacing:-0.226917px;}
.ws38{word-spacing:-0.226858px;}
.ws8{word-spacing:-0.173177px;}
.ws30{word-spacing:-0.167498px;}
.ws203{word-spacing:-0.107600px;}
.ws1a9{word-spacing:-0.107541px;}
.ws205{word-spacing:-0.107481px;}
.ws79{word-spacing:-0.048121px;}
.ws21d{word-spacing:-0.047822px;}
.ws6{word-spacing:-0.047820px;}
.ws273{word-spacing:-0.035628px;}
.ws60{word-spacing:0.000000px;}
.ws6a{word-spacing:0.011896px;}
.wsaa{word-spacing:0.011956px;}
.ws66{word-spacing:0.044646px;}
.ws131{word-spacing:0.071853px;}
.ws71{word-spacing:0.131272px;}
.wsc2{word-spacing:0.131332px;}
.ws108{word-spacing:0.131512px;}
.ws24e{word-spacing:0.215201px;}
.ws23f{word-spacing:0.251068px;}
.wsc5{word-spacing:0.251904px;}
.ws2bc{word-spacing:0.275098px;}
.ws62{word-spacing:0.293385px;}
.ws1b0{word-spacing:0.310666px;}
.ws8e{word-spacing:0.370683px;}
.ws1aa{word-spacing:0.430162px;}
.ws116{word-spacing:0.430700px;}
.ws1dc{word-spacing:0.549539px;}
.ws1db{word-spacing:0.550137px;}
.ws2ca{word-spacing:0.609556px;}
.ws128{word-spacing:0.609736px;}
.ws2c9{word-spacing:0.633886px;}
.ws110{word-spacing:0.669454px;}
.ws5e{word-spacing:0.669573px;}
.ws65{word-spacing:0.714328px;}
.ws216{word-spacing:0.729471px;}
.ws20c{word-spacing:0.788950px;}
.wsd1{word-spacing:0.789070px;}
.ws239{word-spacing:0.801025px;}
.wse7{word-spacing:0.848848px;}
.ws1bf{word-spacing:0.908386px;}
.ws1d8{word-spacing:0.968284px;}
.wsc0{word-spacing:1.028182px;}
.ws88{word-spacing:1.028301px;}
.ws215{word-spacing:1.028899px;}
.ws17a{word-spacing:1.087661px;}
.ws2d6{word-spacing:1.107487px;}
.ws171{word-spacing:1.147678px;}
.ws1d7{word-spacing:1.147797px;}
.ws2d5{word-spacing:1.207157px;}
.wsf1{word-spacing:1.207695px;}
.ws2d1{word-spacing:1.231546px;}
.wsea{word-spacing:1.267054px;}
.ws40{word-spacing:1.267174px;}
.ws133{word-spacing:1.327072px;}
.ws12b{word-spacing:1.386491px;}
.wsd8{word-spacing:1.386850px;}
.ws22a{word-spacing:1.446448px;}
.ws1f8{word-spacing:1.446628px;}
.wsc1{word-spacing:1.506406px;}
.ws45{word-spacing:1.506465px;}
.wsca{word-spacing:1.565885px;}
.ws170{word-spacing:1.625902px;}
.wsa3{word-spacing:1.685740px;}
.ws121{word-spacing:1.685859px;}
.ws222{word-spacing:1.745278px;}
.ws229{word-spacing:1.745398px;}
.ws22e{word-spacing:1.745876px;}
.ws97{word-spacing:1.805296px;}
.ws130{word-spacing:1.805415px;}
.ws1dd{word-spacing:1.864655px;}
.ws1da{word-spacing:1.864834px;}
.ws195{word-spacing:1.865253px;}
.ws19c{word-spacing:1.924792px;}
.ws148{word-spacing:1.984630px;}
.ws32{word-spacing:1.984689px;}
.ws2db{word-spacing:2.044049px;}
.ws3b{word-spacing:2.044228px;}
.ws19b{word-spacing:2.104066px;}
.wsd{word-spacing:2.157866px;}
.ws25f{word-spacing:2.163282px;}
.ws202{word-spacing:2.163485px;}
.ws1f2{word-spacing:2.164083px;}
.wsdb{word-spacing:2.223502px;}
.wsdc{word-spacing:2.223742px;}
.wsa7{word-spacing:2.283460px;}
.wsec{word-spacing:2.283520px;}
.ws102{word-spacing:2.283639px;}
.ws1a5{word-spacing:2.342879px;}
.ws1a4{word-spacing:2.343656px;}
.wsf7{word-spacing:2.402896px;}
.ws15e{word-spacing:2.403016px;}
.ws12c{word-spacing:2.403076px;}
.ws22f{word-spacing:2.403494px;}
.wsfb{word-spacing:2.462854px;}
.ws129{word-spacing:2.522273px;}
.ws181{word-spacing:2.522871px;}
.ws2c1{word-spacing:2.582290px;}
.ws1d2{word-spacing:2.582469px;}
.ws16b{word-spacing:2.641650px;}
.ws1eb{word-spacing:2.642188px;}
.wsda{word-spacing:2.642247px;}
.wsb1{word-spacing:2.701667px;}
.ws190{word-spacing:2.701846px;}
.ws1d1{word-spacing:2.761684px;}
.ws1f3{word-spacing:2.761744px;}
.ws42{word-spacing:2.762282px;}
.ws6e{word-spacing:2.821103px;}
.ws41{word-spacing:2.821223px;}
.wse2{word-spacing:2.821701px;}
.wsce{word-spacing:2.941078px;}
.ws1ac{word-spacing:3.000497px;}
.ws22c{word-spacing:3.000856px;}
.ws103{word-spacing:3.060454px;}
.ws2c8{word-spacing:3.060634px;}
.ws10{word-spacing:3.114254px;}
.ws226{word-spacing:3.120412px;}
.ws78{word-spacing:3.120471px;}
.ws1c6{word-spacing:3.120651px;}
.ws14b{word-spacing:3.180190px;}
.ws2df{word-spacing:3.263819px;}
.ws15{word-spacing:3.293648px;}
.ws7f{word-spacing:3.299267px;}
.ws2d{word-spacing:3.299447px;}
.wsb4{word-spacing:3.299746px;}
.ws31{word-spacing:3.299865px;}
.ws49{word-spacing:3.300044px;}
.ws240{word-spacing:3.311761px;}
.ws158{word-spacing:3.359284px;}
.ws1df{word-spacing:3.359464px;}
.wsef{word-spacing:3.359524px;}
.ws72{word-spacing:3.359882px;}
.ws2c0{word-spacing:3.418883px;}
.ws98{word-spacing:3.419302px;}
.wsde{word-spacing:3.478661px;}
.ws9d{word-spacing:3.538678px;}
.ws9c{word-spacing:3.538858px;}
.ws218{word-spacing:3.598098px;}
.ws18b{word-spacing:3.598636px;}
.ws56{word-spacing:3.598875px;}
.ws53{word-spacing:3.658055px;}
.ws100{word-spacing:3.658653px;}
.wsbb{word-spacing:3.718072px;}
.ws1b1{word-spacing:3.718311px;}
.wsbf{word-spacing:3.778687px;}
.ws207{word-spacing:3.801881px;}
.ws52{word-spacing:3.837449px;}
.ws8b{word-spacing:3.838106px;}
.ws140{word-spacing:3.861121px;}
.ws1b7{word-spacing:3.861420px;}
.ws20b{word-spacing:3.861659px;}
.ws153{word-spacing:3.897107px;}
.wse5{word-spacing:3.897466px;}
.ws152{word-spacing:3.897526px;}
.ws85{word-spacing:3.956885px;}
.ws86{word-spacing:3.957483px;}
.ws16a{word-spacing:3.957722px;}
.ws47{word-spacing:4.016902px;}
.wsee{word-spacing:4.017082px;}
.ws228{word-spacing:4.076860px;}
.ws287{word-spacing:4.077099px;}
.ws2d7{word-spacing:4.088935px;}
.ws16c{word-spacing:4.136638px;}
.wsb2{word-spacing:4.136877px;}
.wse0{word-spacing:4.196296px;}
.ws21e{word-spacing:4.196475px;}
.ws48{word-spacing:4.255656px;}
.ws197{word-spacing:4.256253px;}
.ws286{word-spacing:4.279925px;}
.ws1b4{word-spacing:4.315912px;}
.ws19d{word-spacing:4.375750px;}
.ws139{word-spacing:4.435049px;}
.ws1ad{word-spacing:4.435288px;}
.ws126{word-spacing:4.435707px;}
.ws16{word-spacing:4.489447px;}
.ws2a3{word-spacing:4.495306px;}
.ws8c{word-spacing:4.555084px;}
.wsb{word-spacing:4.668662px;}
.ws1c7{word-spacing:4.674102px;}
.wsf3{word-spacing:4.674640px;}
.ws1c9{word-spacing:4.674699px;}
.ws162{word-spacing:4.733880px;}
.ws1a6{word-spacing:4.794136px;}
.wsa6{word-spacing:4.794196px;}
.wse3{word-spacing:4.853854px;}
.ws1de{word-spacing:4.854153px;}
.ws1ab{word-spacing:4.854452px;}
.ws6d{word-spacing:4.913871px;}
.ws29d{word-spacing:4.914110px;}
.ws111{word-spacing:4.973290px;}
.ws1bc{word-spacing:4.973530px;}
.ws191{word-spacing:4.978421px;}
.ws2bd{word-spacing:5.032949px;}
.ws232{word-spacing:5.033248px;}
.ws260{word-spacing:5.045144px;}
.ws13a{word-spacing:5.092667px;}
.ws19e{word-spacing:5.093086px;}
.ws13f{word-spacing:5.152684px;}
.ws2b{word-spacing:5.152923px;}
.ws115{word-spacing:5.153282px;}
.wsa8{word-spacing:5.212642px;}
.ws7c{word-spacing:5.212701px;}
.ws5{word-spacing:5.250274px;}
.ws19a{word-spacing:5.272061px;}
.ws113{word-spacing:5.272420px;}
.ws1e6{word-spacing:5.332198px;}
.ws2e{word-spacing:5.391736px;}
.ws112{word-spacing:5.391976px;}
.ws7e{word-spacing:5.392095px;}
.ws24c{word-spacing:5.416066px;}
.ws2b8{word-spacing:5.416305px;}
.ws1be{word-spacing:5.451455px;}
.ws1cd{word-spacing:5.451754px;}
.ws2d0{word-spacing:5.463590px;}
.ws6b{word-spacing:5.511472px;}
.ws11f{word-spacing:5.511532px;}
.ws233{word-spacing:5.568762px;}
.ws9a{word-spacing:5.570891px;}
.wsb8{word-spacing:5.571310px;}
.ws120{word-spacing:5.571489px;}
.ws2d8{word-spacing:5.583564px;}
.ws13c{word-spacing:5.609575px;}
.ws1a{word-spacing:5.624811px;}
.ws1d{word-spacing:5.625409px;}
.ws101{word-spacing:5.630848px;}
.ws3d{word-spacing:5.631147px;}
.ws96{word-spacing:5.690866px;}
.ws117{word-spacing:5.750285px;}
.ws10f{word-spacing:5.750644px;}
.ws1d4{word-spacing:5.809704px;}
.ws5b{word-spacing:5.810302px;}
.ws5c{word-spacing:5.810541px;}
.ws28d{word-spacing:5.822377px;}
.ws10e{word-spacing:5.869662px;}
.ws175{word-spacing:5.870259px;}
.ws5d{word-spacing:5.870857px;}
.wse9{word-spacing:5.929679px;}
.wse8{word-spacing:5.929978px;}
.ws2ac{word-spacing:5.989098px;}
.ws4b{word-spacing:5.990294px;}
.ws18{word-spacing:6.043675px;}
.wse6{word-spacing:6.049055px;}
.ws23a{word-spacing:6.061489px;}
.ws24b{word-spacing:6.061549px;}
.ws28e{word-spacing:6.061788px;}
.ws13{word-spacing:6.103035px;}
.ws12{word-spacing:6.103453px;}
.ws21f{word-spacing:6.109072px;}
.ws26d{word-spacing:6.121207px;}
.ws241{word-spacing:6.121267px;}
.ws1fe{word-spacing:6.169090px;}
.ws17{word-spacing:6.222830px;}
.wsae{word-spacing:6.228449px;}
.wsad{word-spacing:6.228927px;}
.ws35{word-spacing:6.229107px;}
.wsa{word-spacing:6.282847px;}
.ws76{word-spacing:6.288466px;}
.wsd9{word-spacing:6.288646px;}
.ws34{word-spacing:6.288765px;}
.wsb6{word-spacing:6.348424px;}
.ws77{word-spacing:6.348483px;}
.ws11c{word-spacing:6.408500px;}
.ws1d0{word-spacing:6.467860px;}
.ws1b2{word-spacing:6.468219px;}
.ws1c4{word-spacing:6.527279px;}
.ws9f{word-spacing:6.527578px;}
.ws2a1{word-spacing:6.551489px;}
.ws249{word-spacing:6.586998px;}
.ws1f4{word-spacing:6.587296px;}
.ws24d{word-spacing:6.587536px;}
.ws26b{word-spacing:6.587595px;}
.ws172{word-spacing:6.587894px;}
.ws7a{word-spacing:6.599133px;}
.wsf8{word-spacing:6.599431px;}
.ws149{word-spacing:6.599491px;}
.ws13d{word-spacing:6.599730px;}
.ws15d{word-spacing:6.600029px;}
.ws73{word-spacing:6.646656px;}
.ws51{word-spacing:6.647015px;}
.ws106{word-spacing:6.647254px;}
.ws50{word-spacing:6.647612px;}
.ws99{word-spacing:6.659150px;}
.wsfd{word-spacing:6.706673px;}
.ws1b6{word-spacing:6.707032px;}
.wsfc{word-spacing:6.707092px;}
.ws8d{word-spacing:6.707271px;}
.ws11b{word-spacing:6.766391px;}
.ws137{word-spacing:6.766690px;}
.ws173{word-spacing:6.766870px;}
.ws11a{word-spacing:6.766989px;}
.wsa5{word-spacing:6.826408px;}
.wsc4{word-spacing:6.826588px;}
.ws150{word-spacing:6.826707px;}
.ws21a{word-spacing:6.886426px;}
.wsdd{word-spacing:6.886665px;}
.ws248{word-spacing:6.910935px;}
.ws179{word-spacing:6.946084px;}
.wsd4{word-spacing:6.946204px;}
.wsd5{word-spacing:6.946443px;}
.ws2a2{word-spacing:6.957920px;}
.ws24f{word-spacing:7.030132px;}
.ws2ae{word-spacing:7.064863px;}
.ws1ef{word-spacing:7.065760px;}
.wse{word-spacing:7.119261px;}
.wsf{word-spacing:7.119560px;}
.ws270{word-spacing:7.125239px;}
.ws21b{word-spacing:7.125538px;}
.wse4{word-spacing:7.126076px;}
.ws14f{word-spacing:7.184897px;}
.ws237{word-spacing:7.185196px;}
.ws4f{word-spacing:7.185495px;}
.ws5a{word-spacing:7.245213px;}
.ws4e{word-spacing:7.245452px;}
.ws165{word-spacing:7.304632px;}
.ws80{word-spacing:7.304872px;}
.wsf5{word-spacing:7.364291px;}
.wsf2{word-spacing:7.364650px;}
.ws87{word-spacing:7.364889px;}
.wsff{word-spacing:7.423650px;}
.ws26f{word-spacing:7.448399px;}
.ws2ad{word-spacing:7.448518px;}
.ws11{word-spacing:7.478048px;}
.ws1cc{word-spacing:7.484026px;}
.wsc8{word-spacing:7.484206px;}
.ws17d{word-spacing:7.484265px;}
.ws280{word-spacing:7.543685px;}
.ws22d{word-spacing:7.543984px;}
.ws75{word-spacing:7.544282px;}
.ws29c{word-spacing:7.556178px;}
.ws253{word-spacing:7.567895px;}
.ws15c{word-spacing:7.603463px;}
.ws7d{word-spacing:7.603702px;}
.wsf6{word-spacing:7.663061px;}
.ws28a{word-spacing:7.663420px;}
.wsc9{word-spacing:7.663540px;}
.ws2cb{word-spacing:7.663659px;}
.ws166{word-spacing:7.723676px;}
.ws2be{word-spacing:7.734974px;}
.ws14c{word-spacing:7.842874px;}
.wsab{word-spacing:7.843053px;}
.ws17f{word-spacing:7.902472px;}
.ws231{word-spacing:7.902652px;}
.wsb0{word-spacing:7.903070px;}
.ws230{word-spacing:7.918992px;}
.wsfe{word-spacing:7.962489px;}
.ws3{word-spacing:7.990722px;}
.ws4{word-spacing:7.990794px;}
.ws58{word-spacing:8.022267px;}
.ws264{word-spacing:8.022506px;}
.ws1a8{word-spacing:8.082284px;}
.ws107{word-spacing:8.141644px;}
.wsfa{word-spacing:8.141764px;}
.ws95{word-spacing:8.141883px;}
.ws259{word-spacing:8.153600px;}
.ws196{word-spacing:8.201302px;}
.ws138{word-spacing:8.201900px;}
.ws27{word-spacing:8.261260px;}
.ws46{word-spacing:8.321098px;}
.ws118{word-spacing:8.380696px;}
.ws18d{word-spacing:8.380876px;}
.ws18e{word-spacing:8.381055px;}
.ws1ed{word-spacing:8.440474px;}
.wsf0{word-spacing:8.440654px;}
.ws123{word-spacing:8.500432px;}
.ws271{word-spacing:8.500491px;}
.ws1c5{word-spacing:8.559851px;}
.ws221{word-spacing:8.560090px;}
.ws2ab{word-spacing:8.572285px;}
.ws236{word-spacing:8.584121px;}
.ws24{word-spacing:8.619988px;}
.ws14a{word-spacing:8.620107px;}
.ws17b{word-spacing:8.679467px;}
.ws159{word-spacing:8.679885px;}
.ws1c{word-spacing:8.733865px;}
.ws1ee{word-spacing:8.739484px;}
.ws23d{word-spacing:8.739544px;}
.ws1e0{word-spacing:8.799262px;}
.ws1b8{word-spacing:8.799501px;}
.wsa1{word-spacing:8.858860px;}
.ws20d{word-spacing:8.859100px;}
.ws1cf{word-spacing:8.859279px;}
.ws161{word-spacing:8.859458px;}
.ws29f{word-spacing:8.918698px;}
.ws36{word-spacing:8.918878px;}
.ws263{word-spacing:8.978118px;}
.ws198{word-spacing:8.978715px;}
.ws254{word-spacing:8.990611px;}
.ws119{word-spacing:9.038254px;}
.ws13e{word-spacing:9.038852px;}
.ws192{word-spacing:9.050389px;}
.ws16e{word-spacing:9.098212px;}
.ws1d6{word-spacing:9.098271px;}
.ws26c{word-spacing:9.109928px;}
.ws15f{word-spacing:9.158109px;}
.ws20a{word-spacing:9.158288px;}
.ws143{word-spacing:9.217708px;}
.ws211{word-spacing:9.217768px;}
.ws94{word-spacing:9.277665px;}
.ws91{word-spacing:9.337084px;}
.ws1cb{word-spacing:9.337503px;}
.ws92{word-spacing:9.337682px;}
.ws29e{word-spacing:9.361235px;}
.ws1f5{word-spacing:9.397102px;}
.ws44{word-spacing:9.456342px;}
.ws220{word-spacing:9.456461px;}
.wsbd{word-spacing:9.456880px;}
.ws2c{word-spacing:9.457059px;}
.ws262{word-spacing:9.480731px;}
.wsc{word-spacing:9.510680px;}
.ws33{word-spacing:9.516478px;}
.ws2b1{word-spacing:9.528733px;}
.ws19{word-spacing:9.630594px;}
.wsd2{word-spacing:9.636214px;}
.wsd3{word-spacing:9.636453px;}
.ws281{word-spacing:9.648169px;}
.ws22{word-spacing:9.749774px;}
.ws1e{word-spacing:9.752252px;}
.ws20{word-spacing:9.756260px;}
.ws21{word-spacing:9.757816px;}
.ws3f{word-spacing:9.815129px;}
.ws209{word-spacing:9.815548px;}
.ws2cc{word-spacing:9.815727px;}
.ws2a7{word-spacing:9.870089px;}
.wsc6{word-spacing:9.875146px;}
.ws257{word-spacing:9.875266px;}
.wsb5{word-spacing:9.875326px;}
.ws11d{word-spacing:9.908936px;}
.ws157{word-spacing:9.935163px;}
.ws141{word-spacing:9.935283px;}
.ws22b{word-spacing:9.994702px;}
.wsa4{word-spacing:9.994882px;}
.ws57{word-spacing:9.995300px;}
.ws224{word-spacing:10.054660px;}
.ws289{word-spacing:10.066376px;}
.ws15b{word-spacing:10.114677px;}
.ws13b{word-spacing:10.173498px;}
.ws29{word-spacing:10.173917px;}
.ws28{word-spacing:10.174096px;}
.ws269{word-spacing:10.233934px;}
.ws1af{word-spacing:10.234053px;}
.ws16f{word-spacing:10.293473px;}
.ws217{word-spacing:10.293772px;}
.ws2e0{word-spacing:10.293951px;}
.ws2c4{word-spacing:10.317683px;}
.ws1e2{word-spacing:10.353370px;}
.ws105{word-spacing:10.353490px;}
.ws2b9{word-spacing:10.403682px;}
.ws219{word-spacing:10.413328px;}
.ws93{word-spacing:10.472866px;}
.ws11e{word-spacing:10.473106px;}
.ws26e{word-spacing:10.497077px;}
.ws2a0{word-spacing:10.532764px;}
.ws24a{word-spacing:10.545198px;}
.ws23c{word-spacing:10.616573px;}
.ws1f6{word-spacing:10.652260px;}
.ws20e{word-spacing:10.652858px;}
.wsb9{word-spacing:10.771697px;}
.wsba{word-spacing:10.771996px;}
.ws3e{word-spacing:10.772294px;}
.ws4c{word-spacing:10.831594px;}
.ws4d{word-spacing:10.831654px;}
.ws1a2{word-spacing:10.831774px;}
.ws14e{word-spacing:10.891671px;}
.ws2c5{word-spacing:10.903388px;}
.ws82{word-spacing:10.951090px;}
.ws201{word-spacing:10.951330px;}
.ws10b{word-spacing:10.951688px;}
.ws210{word-spacing:11.011108px;}
.ws2d4{word-spacing:11.070407px;}
.wsc7{word-spacing:11.070886px;}
.ws296{word-spacing:11.082781px;}
.ws14{word-spacing:11.124626px;}
.ws206{word-spacing:11.130664px;}
.ws1ca{word-spacing:11.130962px;}
.wsbc{word-spacing:11.190442px;}
.ws1c0{word-spacing:11.190501px;}
.ws12f{word-spacing:11.309818px;}
.ws29a{word-spacing:11.429195px;}
.ws19f{word-spacing:11.429255px;}
.ws1e4{word-spacing:11.429852px;}
.ws225{word-spacing:11.489272px;}
.ws18f{word-spacing:11.489332px;}
.wseb{word-spacing:11.549229px;}
.ws1bd{word-spacing:11.668666px;}
.ws84{word-spacing:11.728085px;}
.ws1c2{word-spacing:11.728623px;}
.ws83{word-spacing:11.728683px;}
.ws17e{word-spacing:11.788102px;}
.ws250{word-spacing:11.848000px;}
.wscd{word-spacing:11.848059px;}
.ws9b{word-spacing:11.967496px;}
.ws299{word-spacing:11.991766px;}
.wsa0{word-spacing:12.027453px;}
.ws1e3{word-spacing:12.087112px;}
.ws285{word-spacing:12.099247px;}
.ws168{word-spacing:12.146830px;}
.wsf4{word-spacing:12.146890px;}
.ws167{word-spacing:12.206847px;}
.ws74{word-spacing:12.206907px;}
.ws144{word-spacing:12.326224px;}
.ws3c{word-spacing:12.326283px;}
.ws214{word-spacing:12.386002px;}
.ws2cd{word-spacing:12.398077px;}
.ws1e5{word-spacing:12.445660px;}
.wscc{word-spacing:12.505558px;}
.ws147{word-spacing:12.505677px;}
.ws27d{word-spacing:12.517513px;}
.ws2af{word-spacing:12.565096px;}
.ws160{word-spacing:12.625054px;}
.ws2ba{word-spacing:12.636890px;}
.ws1a1{word-spacing:12.685071px;}
.ws2ce{word-spacing:12.745672px;}
.ws1a3{word-spacing:12.804448px;}
.ws14d{word-spacing:12.804507px;}
.ws2e2{word-spacing:12.816284px;}
.ws227{word-spacing:12.863867px;}
.ws59{word-spacing:12.864465px;}
.ws142{word-spacing:12.923884px;}
.ws114{word-spacing:12.924482px;}
.ws1c1{word-spacing:12.983841px;}
.ws6c{word-spacing:12.983901px;}
.wsdf{word-spacing:13.043560px;}
.ws277{word-spacing:13.163235px;}
.ws7b{word-spacing:13.163295px;}
.ws242{word-spacing:13.274015px;}
.ws261{word-spacing:13.277015px;}
.ws235{word-spacing:13.280015px;}
.ws193{word-spacing:13.282672px;}
.ws1f9{word-spacing:13.342450px;}
.ws8a{word-spacing:13.462065px;}
.ws4a{word-spacing:13.522082px;}
.ws295{word-spacing:13.605831px;}
.ws1f1{word-spacing:13.701118px;}
.ws25b{word-spacing:13.760896px;}
.ws28c{word-spacing:13.784627px;}
.ws23e{word-spacing:13.880272px;}
.ws2a{word-spacing:13.940289px;}
.ws55{word-spacing:13.999709px;}
.ws8f{word-spacing:14.000306px;}
.ws9e{word-spacing:14.119564px;}
.ws177{word-spacing:14.179102px;}
.ws1c8{word-spacing:14.179700px;}
.ws1b3{word-spacing:14.239060px;}
.ws1fd{word-spacing:14.239120px;}
.ws2c2{word-spacing:14.250956px;}
.ws2d3{word-spacing:14.298539px;}
.ws2c3{word-spacing:14.419051px;}
.ws293{word-spacing:14.490307px;}
.ws29b{word-spacing:14.552253px;}
.ws268{word-spacing:14.681058px;}
.ws294{word-spacing:14.717344px;}
.ws1a0{word-spacing:14.728522px;}
.ws1f{word-spacing:14.770765px;}
.ws28b{word-spacing:14.801093px;}
.ws20f{word-spacing:14.836660px;}
.ws39{word-spacing:15.016114px;}
.ws25{word-spacing:15.016234px;}
.ws26{word-spacing:15.016652px;}
.ws2d2{word-spacing:15.040503px;}
.ws2aa{word-spacing:15.087967px;}
.ws1e1{word-spacing:15.135790px;}
.ws278{word-spacing:15.147984px;}
.ws200{word-spacing:15.315124px;}
.ws1b9{word-spacing:15.315542px;}
.wsa2{word-spacing:15.374902px;}
.ws1ba{word-spacing:15.374961px;}
.ws81{word-spacing:15.494278px;}
.ws1fc{word-spacing:15.494338px;}
.ws155{word-spacing:15.613655px;}
.ws2c7{word-spacing:15.614253px;}
.ws154{word-spacing:15.673792px;}
.ws1ff{word-spacing:15.733689px;}
.ws213{word-spacing:15.793108px;}
.ws297{word-spacing:15.816900px;}
.ws90{word-spacing:15.853066px;}
.ws174{word-spacing:15.853126px;}
.ws54{word-spacing:16.151956px;}
.ws258{word-spacing:16.510684px;}
.ws204{word-spacing:16.528298px;}
.ws7{word-spacing:16.880317px;}
.ws1c3{word-spacing:16.928890px;}
.ws2de{word-spacing:17.191914px;}
.ws25a{word-spacing:17.192153px;}
.ws26a{word-spacing:17.407055px;}
.ws1d3{word-spacing:17.527268px;}
.wsf9{word-spacing:17.706244px;}
.ws291{word-spacing:17.825859px;}
.ws252{word-spacing:17.885279px;}
.ws18c{word-spacing:17.945296px;}
.ws283{word-spacing:17.969207px;}
.ws2dc{word-spacing:18.017269px;}
.ws266{word-spacing:18.196662px;}
.ws156{word-spacing:18.722888px;}
.ws256{word-spacing:19.045271px;}
.wscf{word-spacing:19.081078px;}
.ws1bb{word-spacing:19.320130px;}
.ws251{word-spacing:19.511539px;}
.ws2dd{word-spacing:19.559541px;}
.ws223{word-spacing:19.618661px;}
.ws2c6{word-spacing:19.702649px;}
.ws267{word-spacing:19.738935px;}
.ws208{word-spacing:19.918089px;}
.ws178{word-spacing:19.977509px;}
.ws1b{word-spacing:20.677142px;}
.ws17c{word-spacing:20.814460px;}
.ws1fb{word-spacing:20.993854px;}
.ws25e{word-spacing:20.994034px;}
.ws25c{word-spacing:21.001179px;}
.ws2b0{word-spacing:21.022865px;}
.ws12d{word-spacing:21.547692px;}
.ws2bf{word-spacing:21.675563px;}
.ws25d{word-spacing:22.380345px;}
.ws290{word-spacing:22.667877px;}
.ws288{word-spacing:22.708544px;}
.ws27e{word-spacing:23.923514px;}
.ws1b5{word-spacing:24.760107px;}
.ws292{word-spacing:24.819945px;}
.ws276{word-spacing:24.879305px;}
.ws282{word-spacing:25.501295px;}
.ws298{word-spacing:25.920099px;}
.ws275{word-spacing:26.158913px;}
.ws247{word-spacing:27.808666px;}
.ws2{word-spacing:27.974097px;}
.ws279{word-spacing:27.999955px;}
.ws246{word-spacing:28.597795px;}
.ws28f{word-spacing:28.908820px;}
.ws284{word-spacing:29.239243px;}
.ws2a8{word-spacing:30.761699px;}
.ws2e1{word-spacing:31.700549px;}
.ws2e4{word-spacing:33.966099px;}
.ws2e5{word-spacing:34.336722px;}
.ws244{word-spacing:35.998312px;}
.ws2a9{word-spacing:36.508499px;}
.ws2e7{word-spacing:37.373265px;}
.ws2e6{word-spacing:37.384563px;}
.ws27a{word-spacing:38.939509px;}
.ws27f{word-spacing:39.286102px;}
.ws243{word-spacing:40.923720px;}
.ws274{word-spacing:41.043694px;}
.ws1e8{word-spacing:42.573473px;}
.ws2b6{word-spacing:43.064071px;}
.ws27b{word-spacing:47.954270px;}
.ws146{word-spacing:49.651607px;}
.wscb{word-spacing:50.476543px;}
.ws2b2{word-spacing:52.162163px;}
.ws2b7{word-spacing:53.573103px;}
.ws2b4{word-spacing:54.529073px;}
.ws188{word-spacing:55.124635px;}
.ws184{word-spacing:58.274935px;}
.ws2e3{word-spacing:59.036633px;}
.ws23{word-spacing:60.568812px;}
.ws265{word-spacing:81.962786px;}
.ws245{word-spacing:82.820208px;}
.ws18a{word-spacing:94.117824px;}
.ws187{word-spacing:96.132343px;}
.ws189{word-spacing:100.448314px;}
.ws1ea{word-spacing:105.878794px;}
.ws186{word-spacing:123.205799px;}
.ws1f7{word-spacing:129.491283px;}
.ws2b5{word-spacing:129.632573px;}
.ws1e9{word-spacing:148.560525px;}
.ws2b3{word-spacing:160.065621px;}
.ws185{word-spacing:177.992336px;}
.ws1fa{word-spacing:220.980343px;}
._4{margin-left:-39.523230px;}
._32{margin-left:-29.127202px;}
._6{margin-left:-27.567731px;}
._5{margin-left:-20.211885px;}
._20{margin-left:-15.217727px;}
._2{margin-left:-7.546044px;}
._36{margin-left:-6.519139px;}
._c{margin-left:-4.961395px;}
._38{margin-left:-3.802766px;}
._3{margin-left:-2.770304px;}
._1{margin-left:-1.749475px;}
._0{width:1.750078px;}
._1c{width:3.347389px;}
._12{width:15.661836px;}
._25{width:17.276081px;}
._a{width:18.471756px;}
._3a{width:19.564980px;}
._2f{width:20.711273px;}
._14{width:21.952857px;}
._23{width:23.180446px;}
._7{width:24.568574px;}
._18{width:25.753246px;}
._d{width:26.779827px;}
._27{width:27.799330px;}
._e{width:28.861274px;}
._24{width:29.889000px;}
._9{width:30.948488px;}
._15{width:32.713702px;}
._f{width:34.670762px;}
._17{width:36.507483px;}
._8{width:38.468662px;}
._1b{width:39.529052px;}
._1e{width:40.811559px;}
._39{width:41.940500px;}
._b{width:43.207755px;}
._1d{width:44.670438px;}
._13{width:46.029658px;}
._10{width:47.408054px;}
._16{width:48.997739px;}
._2e{width:50.512410px;}
._1f{width:52.201868px;}
._28{width:54.668739px;}
._22{width:55.756059px;}
._11{width:57.749667px;}
._33{width:59.178950px;}
._37{width:60.363682px;}
._29{width:61.511442px;}
._2b{width:62.842591px;}
._1a{width:65.755800px;}
._3b{width:67.622815px;}
._26{width:68.744999px;}
._2c{width:69.939961px;}
._21{width:73.917315px;}
._19{width:78.903000px;}
._34{width:84.246620px;}
._35{width:89.842713px;}
._30{width:90.920029px;}
._31{width:112.203127px;}
._3d{width:117.966789px;}
._2d{width:133.219435px;}
._3c{width:152.575238px;}
._2a{width:543.724672px;}
.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);}
.fs7{font-size:35.868000px;}
.fs9{font-size:41.844000px;}
.fs5{font-size:47.820000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fs6{font-size:53.796000px;}
.fs1{font-size:59.761202px;}
.fs8{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y55{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y54{bottom:41.879334px;}
.y56{bottom:42.993625px;}
.y3d{bottom:106.299000px;}
.y3c{bottom:124.231500px;}
.y135{bottom:126.976500px;}
.y1d2{bottom:138.150000px;}
.y3b{bottom:142.164000px;}
.y205{bottom:142.275000px;}
.y261{bottom:146.430000px;}
.y169{bottom:149.079000px;}
.y1d1{bottom:156.082500px;}
.y134{bottom:156.703500px;}
.y3a{bottom:160.096500px;}
.y1aa{bottom:160.098000px;}
.y204{bottom:160.209000px;}
.y260{bottom:164.961000px;}
.y150{bottom:169.749000px;}
.yf2{bottom:170.086500px;}
.ybe{bottom:171.709500px;}
.y1d0{bottom:174.015000px;}
.y133{bottom:174.636000px;}
.y2ba{bottom:175.041000px;}
.y168{bottom:175.324500px;}
.y53{bottom:178.029000px;}
.y39{bottom:178.030500px;}
.y203{bottom:178.141500px;}
.y237{bottom:178.438500px;}
.y25f{bottom:182.893500px;}
.y89{bottom:189.019500px;}
.y1cf{bottom:191.947500px;}
.y2b9{bottom:192.973500px;}
.y167{bottom:193.257000px;}
.y2ef{bottom:195.961500px;}
.y38{bottom:195.963000px;}
.y202{bottom:196.074000px;}
.y11a{bottom:196.122000px;}
.y187{bottom:196.317000px;}
.y236{bottom:196.371000px;}
.y321{bottom:197.334000px;}
.y25e{bottom:200.826000px;}
.y132{bottom:204.363000px;}
.y14f{bottom:208.431000px;}
.ybd{bottom:209.251500px;}
.y1ce{bottom:209.880000px;}
.y2b8{bottom:210.906000px;}
.yf1{bottom:211.504500px;}
.y166{bottom:211.657500px;}
.y37{bottom:213.895500px;}
.y201{bottom:214.006500px;}
.y119{bottom:214.054500px;}
.y186{bottom:214.249500px;}
.y235{bottom:214.303500px;}
.y2ee{bottom:214.623000px;}
.y320{bottom:215.266500px;}
.y131{bottom:222.297000px;}
.y25d{bottom:222.861000px;}
.y88{bottom:224.785500px;}
.y1a9{bottom:225.397500px;}
.y14e{bottom:226.363500px;}
.ybc{bottom:227.184000px;}
.y1cd{bottom:227.812500px;}
.y2b7{bottom:228.840000px;}
.yf0{bottom:229.438500px;}
.y165{bottom:229.590000px;}
.y52{bottom:231.828000px;}
.y200{bottom:231.939000px;}
.y185{bottom:232.182000px;}
.y234{bottom:232.236000px;}
.y2ed{bottom:232.555500px;}
.y31f{bottom:233.199000px;}
.y36{bottom:234.576000px;}
.y351{bottom:239.148000px;}
.y118{bottom:241.935000px;}
.y87{bottom:242.718000px;}
.y1a8{bottom:243.330000px;}
.y14d{bottom:244.297500px;}
.ybb{bottom:245.118000px;}
.y1cc{bottom:245.746500px;}
.y2b6{bottom:246.772500px;}
.yef{bottom:247.371000px;}
.y164{bottom:247.522500px;}
.y51{bottom:249.760500px;}
.y1ff{bottom:249.871500px;}
.y184{bottom:250.114500px;}
.y2ec{bottom:250.488000px;}
.y233{bottom:250.578000px;}
.y31e{bottom:251.131500px;}
.y130{bottom:252.024000px;}
.y35{bottom:252.508500px;}
.y350{bottom:257.080500px;}
.y86{bottom:260.650500px;}
.y1a7{bottom:261.264000px;}
.y25c{bottom:261.943500px;}
.y14c{bottom:262.230000px;}
.yba{bottom:263.050500px;}
.y2b5{bottom:264.705000px;}
.y1cb{bottom:264.978000px;}
.yee{bottom:265.303500px;}
.y163{bottom:265.455000px;}
.y50{bottom:267.693000px;}
.y183{bottom:268.047000px;}
.y2eb{bottom:268.420500px;}
.y232{bottom:268.510500px;}
.y12f{bottom:269.956500px;}
.y31d{bottom:270.435000px;}
.y34{bottom:270.441000px;}
.y34f{bottom:275.013000px;}
.y1fe{bottom:277.663500px;}
.y28c{bottom:277.725000px;}
.y85{bottom:278.584500px;}
.y25b{bottom:279.877500px;}
.yb9{bottom:280.983000px;}
.y1ca{bottom:282.910500px;}
.yed{bottom:283.236000px;}
.y162{bottom:283.389000px;}
.y4f{bottom:285.627000px;}
.y182{bottom:285.981000px;}
.y117{bottom:286.221000px;}
.y2ea{bottom:286.353000px;}
.y231{bottom:286.443000px;}
.y12e{bottom:287.889000px;}
.y31c{bottom:288.369000px;}
.y33{bottom:288.373500px;}
.y14b{bottom:289.813500px;}
.y1a6{bottom:290.698500px;}
.y2b4{bottom:292.288500px;}
.y34e{bottom:292.945500px;}
.y84{bottom:296.517000px;}
.y25a{bottom:297.810000px;}
.yb8{bottom:298.915500px;}
.y1c9{bottom:300.843000px;}
.yec{bottom:301.168500px;}
.y161{bottom:301.321500px;}
.y4e{bottom:303.559500px;}
.y181{bottom:303.913500px;}
.y116{bottom:304.153500px;}
.y2e9{bottom:304.287000px;}
.y230{bottom:304.375500px;}
.y12d{bottom:305.821500px;}
.y31b{bottom:306.301500px;}
.y32{bottom:306.306000px;}
.y1a5{bottom:308.631000px;}
.y34d{bottom:311.709000px;}
.y83{bottom:314.449500px;}
.y259{bottom:315.742500px;}
.yb7{bottom:316.848000px;}
.y1fd{bottom:317.098500px;}
.y28b{bottom:317.655000px;}
.y1c8{bottom:318.777000px;}
.yeb{bottom:319.101000px;}
.y160{bottom:319.254000px;}
.y4d{bottom:321.492000px;}
.y180{bottom:321.846000px;}
.y115{bottom:322.086000px;}
.y22f{bottom:322.717500px;}
.y2e8{bottom:322.947000px;}
.y12c{bottom:323.754000px;}
.y31a{bottom:324.234000px;}
.y31{bottom:324.240000px;}
.y1a4{bottom:326.563500px;}
.y34c{bottom:329.641500px;}
.y14a{bottom:330.105000px;}
.y82{bottom:332.382000px;}
.y258{bottom:333.675000px;}
.yb6{bottom:334.780500px;}
.y2b3{bottom:334.917000px;}
.y1fc{bottom:335.031000px;}
.y28a{bottom:335.587500px;}
.y1c7{bottom:336.709500px;}
.yea{bottom:337.035000px;}
.y15f{bottom:337.186500px;}
.y4c{bottom:339.424500px;}
.y17f{bottom:339.778500px;}
.y114{bottom:340.018500px;}
.y22e{bottom:340.650000px;}
.y2e7{bottom:340.879500px;}
.y30{bottom:342.172500px;}
.y319{bottom:343.537500px;}
.y34b{bottom:347.574000px;}
.y149{bottom:348.037500px;}
.y81{bottom:350.314500px;}
.y257{bottom:351.607500px;}
.yb5{bottom:352.714500px;}
.y2b2{bottom:352.849500px;}
.y1fb{bottom:352.963500px;}
.y12b{bottom:353.481000px;}
.y289{bottom:353.520000px;}
.y1c6{bottom:354.642000px;}
.ye9{bottom:354.967500px;}
.y15e{bottom:355.119000px;}
.y1a3{bottom:355.999500px;}
.y4b{bottom:357.357000px;}
.y17e{bottom:357.711000px;}
.y113{bottom:357.952500px;}
.y22d{bottom:358.582500px;}
.y2e6{bottom:358.812000px;}
.y2f{bottom:360.105000px;}
.y318{bottom:361.470000px;}
.y34a{bottom:365.508000px;}
.y148{bottom:365.970000px;}
.y80{bottom:368.247000px;}
.y256{bottom:369.540000px;}
.yb4{bottom:370.647000px;}
.y2b1{bottom:370.782000px;}
.y12a{bottom:371.415000px;}
.y288{bottom:371.452500px;}
.y1c5{bottom:372.574500px;}
.ye8{bottom:372.900000px;}
.y1a2{bottom:373.932000px;}
.y4a{bottom:375.289500px;}
.y17d{bottom:375.643500px;}
.y112{bottom:375.885000px;}
.y22c{bottom:376.515000px;}
.y2e5{bottom:376.744500px;}
.y2e{bottom:378.037500px;}
.y317{bottom:379.404000px;}
.y1fa{bottom:383.185500px;}
.y349{bottom:383.440500px;}
.y15d{bottom:383.575500px;}
.y147{bottom:383.904000px;}
.y7f{bottom:386.181000px;}
.y255{bottom:387.474000px;}
.y2b0{bottom:388.714500px;}
.y287{bottom:389.385000px;}
.yb3{bottom:389.634000px;}
.y1c4{bottom:390.507000px;}
.ye7{bottom:390.832500px;}
.y1a1{bottom:391.864500px;}
.y49{bottom:393.223500px;}
.y17c{bottom:393.577500px;}
.y111{bottom:393.817500px;}
.y2e4{bottom:394.677000px;}
.y22b{bottom:394.857000px;}
.y2d{bottom:395.970000px;}
.y316{bottom:397.336500px;}
.y129{bottom:401.142000px;}
.y146{bottom:401.836500px;}
.y348{bottom:402.202500px;}
.y7e{bottom:404.113500px;}
.y254{bottom:405.406500px;}
.y2af{bottom:406.647000px;}
.y1f9{bottom:407.319000px;}
.yb2{bottom:407.566500px;}
.ye6{bottom:408.948000px;}
.y1a0{bottom:409.797000px;}
.y48{bottom:411.156000px;}
.y17b{bottom:411.510000px;}
.y110{bottom:411.750000px;}
.y22a{bottom:412.789500px;}
.y2e3{bottom:413.338500px;}
.y315{bottom:416.640000px;}
.y2c{bottom:416.650500px;}
.y128{bottom:419.074500px;}
.y145{bottom:419.769000px;}
.y347{bottom:420.136500px;}
.y1c3{bottom:420.510000px;}
.y7d{bottom:422.046000px;}
.y253{bottom:423.339000px;}
.y2ae{bottom:424.581000px;}
.y286{bottom:425.251500px;}
.yb1{bottom:425.499000px;}
.y15c{bottom:426.511500px;}
.ye5{bottom:426.880500px;}
.y10f{bottom:429.682500px;}
.y229{bottom:431.131500px;}
.y2e2{bottom:431.271000px;}
.y47{bottom:431.415000px;}
.y1f8{bottom:431.451000px;}
.y314{bottom:434.572500px;}
.y2b{bottom:434.583000px;}
.y144{bottom:437.701500px;}
.y346{bottom:438.069000px;}
.y19f{bottom:439.233000px;}
.y17a{bottom:439.752000px;}
.y7c{bottom:439.978500px;}
.y252{bottom:441.271500px;}
.y2ad{bottom:442.513500px;}
.y285{bottom:443.184000px;}
.yb0{bottom:443.431500px;}
.y15b{bottom:444.444000px;}
.ye4{bottom:444.813000px;}
.y10e{bottom:447.615000px;}
.y127{bottom:448.801500px;}
.y228{bottom:449.064000px;}
.y2e1{bottom:449.203500px;}
.y46{bottom:449.347500px;}
.y1f7{bottom:449.385000px;}
.y313{bottom:452.505000px;}
.y2a{bottom:452.515500px;}
.y345{bottom:456.001500px;}
.y7b{bottom:457.911000px;}
.y2ac{bottom:460.446000px;}
.y284{bottom:461.116500px;}
.yaf{bottom:461.364000px;}
.y15a{bottom:462.376500px;}
.ye3{bottom:462.745500px;}
.y143{bottom:465.285000px;}
.y10d{bottom:465.549000px;}
.y126{bottom:466.734000px;}
.y227{bottom:466.996500px;}
.y2e0{bottom:467.136000px;}
.y45{bottom:467.280000px;}
.y1c2{bottom:467.856000px;}
.y19e{bottom:468.667500px;}
.y29{bottom:470.449500px;}
.y312{bottom:471.808500px;}
.y344{bottom:474.765000px;}
.y251{bottom:474.991500px;}
.y7a{bottom:476.563500px;}
.y2ab{bottom:478.378500px;}
.y283{bottom:479.049000px;}
.yae{bottom:479.298000px;}
.y159{bottom:480.309000px;}
.ye2{bottom:480.678000px;}
.y179{bottom:482.082000px;}
.y10c{bottom:483.481500px;}
.y125{bottom:484.666500px;}
.y226{bottom:484.929000px;}
.y44{bottom:485.212500px;}
.y1c1{bottom:485.790000px;}
.y2df{bottom:485.797500px;}
.y28{bottom:488.382000px;}
.y1f6{bottom:489.034500px;}
.y311{bottom:489.742500px;}
.y343{bottom:492.697500px;}
.y250{bottom:492.924000px;}
.y79{bottom:494.496000px;}
.y2aa{bottom:496.311000px;}
.y282{bottom:496.981500px;}
.yad{bottom:497.230500px;}
.ye1{bottom:498.610500px;}
.y178{bottom:500.014500px;}
.y19d{bottom:500.412000px;}
.y10b{bottom:501.414000px;}
.y225{bottom:502.861500px;}
.y43{bottom:503.146500px;}
.y1c0{bottom:503.722500px;}
.y2de{bottom:503.730000px;}
.y142{bottom:505.576500px;}
.y27{bottom:506.314500px;}
.y1f5{bottom:506.968500px;}
.y310{bottom:507.675000px;}
.y158{bottom:508.764000px;}
.y342{bottom:510.630000px;}
.y78{bottom:512.428500px;}
.y2a9{bottom:514.243500px;}
.y124{bottom:514.776000px;}
.y281{bottom:514.915500px;}
.yac{bottom:515.163000px;}
.ye0{bottom:516.544500px;}
.y177{bottom:517.947000px;}
.y19c{bottom:518.344500px;}
.y24f{bottom:519.388500px;}
.y224{bottom:520.795500px;}
.y42{bottom:521.079000px;}
.y1bf{bottom:521.655000px;}
.y2dd{bottom:521.662500px;}
.y141{bottom:523.510500px;}
.y26{bottom:524.247000px;}
.y1f4{bottom:525.012000px;}
.y30f{bottom:525.607500px;}
.y341{bottom:528.562500px;}
.y10a{bottom:529.294500px;}
.y77{bottom:530.362500px;}
.y2a8{bottom:532.177500px;}
.y123{bottom:532.708500px;}
.y280{bottom:532.848000px;}
.yab{bottom:533.095500px;}
.ydf{bottom:534.658500px;}
.y176{bottom:535.879500px;}
.y19b{bottom:536.277000px;}
.y24e{bottom:537.321000px;}
.y223{bottom:538.728000px;}
.y41{bottom:539.011500px;}
.y1be{bottom:539.587500px;}
.y2dc{bottom:539.595000px;}
.y140{bottom:541.443000px;}
.y25{bottom:542.179500px;}
.y1f3{bottom:542.944500px;}
.y30e{bottom:543.540000px;}
.y340{bottom:546.495000px;}
.y76{bottom:548.295000px;}
.y157{bottom:550.092000px;}
.y2a7{bottom:550.110000px;}
.y27f{bottom:550.780500px;}
.yaa{bottom:551.028000px;}
.yde{bottom:552.591000px;}
.y122{bottom:553.549500px;}
.y175{bottom:553.813500px;}
.y222{bottom:556.660500px;}
.y40{bottom:556.944000px;}
.y1bd{bottom:557.520000px;}
.y2db{bottom:557.527500px;}
.y13f{bottom:559.375500px;}
.y24{bottom:560.112000px;}
.y1f2{bottom:560.989500px;}
.y30d{bottom:561.472500px;}
.y24d{bottom:562.536000px;}
.y33f{bottom:564.427500px;}
.y75{bottom:566.227500px;}
.y19a{bottom:568.021500px;}
.y156{bottom:568.024500px;}
.y2a6{bottom:568.042500px;}
.y27e{bottom:568.713000px;}
.ya9{bottom:568.960500px;}
.ydd{bottom:570.523500px;}
.y109{bottom:570.592500px;}
.y121{bottom:571.482000px;}
.y174{bottom:571.746000px;}
.y221{bottom:574.593000px;}
.y3f{bottom:574.876500px;}
.y1bc{bottom:575.452500px;}
.y2da{bottom:575.460000px;}
.y13e{bottom:577.308000px;}
.y1f1{bottom:578.922000px;}
.y30c{bottom:580.776000px;}
.y33e{bottom:582.361500px;}
.y74{bottom:584.160000px;}
.y199{bottom:585.955500px;}
.y155{bottom:585.957000px;}
.y2a5{bottom:585.975000px;}
.y27d{bottom:586.645500px;}
.ya8{bottom:586.894500px;}
.ydc{bottom:588.457500px;}
.y108{bottom:588.525000px;}
.y120{bottom:589.416000px;}
.y220{bottom:592.525500px;}
.y3e{bottom:592.809000px;}
.y23{bottom:592.810500px;}
.y2d9{bottom:594.121500px;}
.y13d{bottom:595.240500px;}
.y24c{bottom:596.256000px;}
.y1f0{bottom:596.854500px;}
.y30b{bottom:598.710000px;}
.y33d{bottom:601.123500px;}
.y73{bottom:602.812500px;}
.y154{bottom:603.891000px;}
.y2a4{bottom:603.907500px;}
.y27c{bottom:604.578000px;}
.ya7{bottom:604.827000px;}
.y1bb{bottom:605.455500px;}
.y173{bottom:606.037500px;}
.ydb{bottom:606.390000px;}
.y107{bottom:606.457500px;}
.y11f{bottom:607.348500px;}
.y2d8{bottom:612.054000px;}
.y13c{bottom:613.173000px;}
.y24b{bottom:614.188500px;}
.y1ef{bottom:614.787000px;}
.y198{bottom:615.390000px;}
.y30a{bottom:616.642500px;}
.y33c{bottom:619.056000px;}
.y72{bottom:620.745000px;}
.y21f{bottom:620.871000px;}
.y153{bottom:621.823500px;}
.y2a3{bottom:621.841500px;}
.y27b{bottom:622.512000px;}
.ya6{bottom:622.759500px;}
.y1ba{bottom:623.388000px;}
.y172{bottom:623.970000px;}
.yda{bottom:624.322500px;}
.y106{bottom:624.390000px;}
.y11e{bottom:625.281000px;}
.y2d7{bottom:629.986500px;}
.y13b{bottom:631.107000px;}
.y1ee{bottom:632.832000px;}
.y197{bottom:633.322500px;}
.y309{bottom:634.575000px;}
.y33b{bottom:636.990000px;}
.y71{bottom:638.677500px;}
.y2a2{bottom:639.774000px;}
.y27a{bottom:640.444500px;}
.y24a{bottom:640.653000px;}
.ya5{bottom:640.692000px;}
.yd9{bottom:642.255000px;}
.y105{bottom:642.322500px;}
.y11d{bottom:643.213500px;}
.y2d6{bottom:647.919000px;}
.y171{bottom:648.588000px;}
.y13a{bottom:649.039500px;}
.y1ed{bottom:650.764500px;}
.y1b9{bottom:653.391000px;}
.y308{bottom:653.878500px;}
.y33a{bottom:654.922500px;}
.y70{bottom:656.610000px;}
.y2a1{bottom:657.706500px;}
.y279{bottom:658.377000px;}
.y249{bottom:658.585500px;}
.ya4{bottom:658.624500px;}
.yd8{bottom:660.187500px;}
.y104{bottom:660.255000px;}
.y21e{bottom:661.882500px;}
.y196{bottom:662.757000px;}
.y2d5{bottom:665.851500px;}
.y170{bottom:666.520500px;}
.y1ec{bottom:668.697000px;}
.y307{bottom:671.811000px;}
.y1f{bottom:672.690000px;}
.y339{bottom:673.684500px;}
.y6f{bottom:674.544000px;}
.y278{bottom:676.309500px;}
.ya3{bottom:676.558500px;}
.y139{bottom:676.623000px;}
.y152{bottom:677.169000px;}
.yd7{bottom:678.121500px;}
.y103{bottom:678.189000px;}
.y21d{bottom:679.815000px;}
.y195{bottom:680.691000px;}
.y2d4{bottom:684.513000px;}
.y22{bottom:684.645000px;}
.y248{bottom:685.050000px;}
.y2a0{bottom:685.290000px;}
.y1eb{bottom:686.629500px;}
.y306{bottom:689.745000px;}
.y1e{bottom:690.622500px;}
.y16f{bottom:691.138500px;}
.y338{bottom:691.618500px;}
.y6e{bottom:692.476500px;}
.ya2{bottom:694.491000px;}
.yd6{bottom:696.054000px;}
.y102{bottom:696.280500px;}
.y21{bottom:696.600000px;}
.y21c{bottom:697.747500px;}
.y2d3{bottom:702.445500px;}
.y247{bottom:702.982500px;}
.y11c{bottom:703.440000px;}
.y1b8{bottom:703.726500px;}
.y138{bottom:704.206500px;}
.y277{bottom:704.274000px;}
.y1ea{bottom:704.562000px;}
.y305{bottom:707.677500px;}
.y20{bottom:708.555000px;}
.y16e{bottom:709.072500px;}
.y337{bottom:709.551000px;}
.y194{bottom:710.125500px;}
.y6d{bottom:710.409000px;}
.ya1{bottom:713.478000px;}
.yd5{bottom:713.986500px;}
.y101{bottom:714.213000px;}
.y21b{bottom:715.680000px;}
.y2d2{bottom:720.378000px;}
.y1b7{bottom:721.659000px;}
.y1e9{bottom:722.494500px;}
.y137{bottom:725.128500px;}
.y304{bottom:725.610000px;}
.y1d{bottom:726.487500px;}
.y336{bottom:727.483500px;}
.y29f{bottom:727.918500px;}
.y246{bottom:728.197500px;}
.y6c{bottom:728.341500px;}
.ya0{bottom:731.410500px;}
.yd4{bottom:731.919000px;}
.y100{bottom:732.145500px;}
.y16d{bottom:733.690500px;}
.y21a{bottom:734.022000px;}
.y2d1{bottom:739.038000px;}
.y193{bottom:739.560000px;}
.y1b6{bottom:739.591500px;}
.y1e8{bottom:740.428500px;}
.y276{bottom:744.204000px;}
.y1c{bottom:744.420000px;}
.y303{bottom:744.913500px;}
.y335{bottom:745.416000px;}
.y29e{bottom:745.851000px;}
.y245{bottom:746.131500px;}
.y6b{bottom:746.274000px;}
.y9f{bottom:749.343000px;}
.yd3{bottom:750.034500px;}
.yff{bottom:750.079500px;}
.y16c{bottom:751.623000px;}
.y219{bottom:751.954500px;}
.y2d0{bottom:756.970500px;}
.y192{bottom:757.494000px;}
.y1b5{bottom:757.524000px;}
.y1e7{bottom:758.361000px;}
.y275{bottom:762.136500px;}
.y1b{bottom:762.352500px;}
.y302{bottom:762.846000px;}
.y29d{bottom:763.783500px;}
.y244{bottom:764.064000px;}
.y334{bottom:764.179500px;}
.y6a{bottom:764.206500px;}
.y9e{bottom:767.275500px;}
.yd2{bottom:767.967000px;}
.yfe{bottom:768.012000px;}
.y16b{bottom:769.555500px;}
.y218{bottom:769.887000px;}
.y2cf{bottom:774.904500px;}
.y1b4{bottom:775.456500px;}
.y1e6{bottom:776.293500px;}
.y274{bottom:780.069000px;}
.y1a{bottom:780.286500px;}
.y301{bottom:780.778500px;}
.y29c{bottom:781.716000px;}
.y243{bottom:781.996500px;}
.y333{bottom:782.112000px;}
.y69{bottom:782.140500px;}
.y9d{bottom:785.208000px;}
.yd1{bottom:785.899500px;}
.yfd{bottom:786.103500px;}
.y191{bottom:786.928500px;}
.y217{bottom:787.821000px;}
.y136{bottom:792.639000px;}
.y2ce{bottom:792.837000px;}
.y1b3{bottom:793.390500px;}
.y1e5{bottom:794.226000px;}
.y273{bottom:798.001500px;}
.y19{bottom:798.219000px;}
.y300{bottom:798.712500px;}
.y29b{bottom:799.648500px;}
.y242{bottom:799.929000px;}
.y332{bottom:800.044500px;}
.y68{bottom:800.073000px;}
.y9c{bottom:803.142000px;}
.yd0{bottom:803.832000px;}
.yfc{bottom:804.036000px;}
.y216{bottom:806.161500px;}
.y2cd{bottom:810.769500px;}
.y1e4{bottom:812.158500px;}
.y272{bottom:815.934000px;}
.y18{bottom:816.151500px;}
.y2ff{bottom:816.645000px;}
.y29a{bottom:817.582500px;}
.y331{bottom:817.977000px;}
.y151{bottom:818.107500px;}
.y190{bottom:818.673000px;}
.y9b{bottom:821.074500px;}
.ycf{bottom:821.764500px;}
.yfb{bottom:821.968500px;}
.y215{bottom:824.094000px;}
.y67{bottom:828.996000px;}
.y2cc{bottom:829.429500px;}
.y1e3{bottom:830.203500px;}
.y241{bottom:833.649000px;}
.y271{bottom:833.866500px;}
.y17{bottom:834.084000px;}
.y299{bottom:835.515000px;}
.y2fe{bottom:835.948500px;}
.y18f{bottom:836.605500px;}
.y330{bottom:836.740500px;}
.y16a{bottom:837.427500px;}
.y9a{bottom:839.007000px;}
.yce{bottom:839.697000px;}
.yfa{bottom:839.902500px;}
.y214{bottom:842.028000px;}
.y2cb{bottom:847.362000px;}
.y1e2{bottom:848.136000px;}
.y1b2{bottom:849.870000px;}
.y240{bottom:851.581500px;}
.y270{bottom:851.800500px;}
.y16{bottom:852.016500px;}
.y298{bottom:853.447500px;}
.y2fd{bottom:853.881000px;}
.y18e{bottom:854.538000px;}
.y32f{bottom:854.673000px;}
.y99{bottom:856.939500px;}
.ycd{bottom:857.631000px;}
.yf9{bottom:857.835000px;}
.y66{bottom:857.919000px;}
.y213{bottom:859.960500px;}
.y2ca{bottom:865.294500px;}
.y1e1{bottom:866.068500px;}
.y1b1{bottom:868.401000px;}
.y23f{bottom:869.514000px;}
.y15{bottom:869.949000px;}
.y297{bottom:871.380000px;}
.y2fc{bottom:871.813500px;}
.y18d{bottom:872.470500px;}
.y32e{bottom:873.436500px;}
.y98{bottom:874.872000px;}
.ycc{bottom:875.563500px;}
.yf8{bottom:875.767500px;}
.y212{bottom:877.893000px;}
.y26f{bottom:879.765000px;}
.y2c9{bottom:883.956000px;}
.y1e0{bottom:884.001000px;}
.y1b0{bottom:886.930500px;}
.y23e{bottom:887.446500px;}
.y14{bottom:887.883000px;}
.y296{bottom:889.312500px;}
.y2fb{bottom:889.747500px;}
.y18c{bottom:890.404500px;}
.y32d{bottom:891.369000px;}
.y65{bottom:892.420500px;}
.y97{bottom:892.804500px;}
.ycb{bottom:893.496000px;}
.yf7{bottom:893.700000px;}
.y211{bottom:895.825500px;}
.y2c8{bottom:901.888500px;}
.y1df{bottom:901.933500px;}
.y1af{bottom:905.461500px;}
.y13{bottom:905.815500px;}
.y2fa{bottom:907.680000px;}
.y295{bottom:908.026500px;}
.y18b{bottom:908.337000px;}
.y32c{bottom:909.301500px;}
.y64{bottom:910.353000px;}
.y96{bottom:910.738500px;}
.yca{bottom:911.428500px;}
.yf6{bottom:911.632500px;}
.y210{bottom:913.758000px;}
.y23d{bottom:913.911000px;}
.y26e{bottom:919.693500px;}
.y2c7{bottom:919.821000px;}
.y1de{bottom:919.867500px;}
.y12{bottom:923.748000px;}
.y1ae{bottom:923.992500px;}
.y294{bottom:925.959000px;}
.y18a{bottom:926.269500px;}
.y2f9{bottom:926.983500px;}
.y32b{bottom:927.234000px;}
.y63{bottom:928.287000px;}
.y95{bottom:928.671000px;}
.yc9{bottom:929.361000px;}
.yf5{bottom:929.565000px;}
.y20f{bottom:931.690500px;}
.y23c{bottom:931.843500px;}
.y26d{bottom:937.626000px;}
.y2c6{bottom:937.753500px;}
.y1dd{bottom:937.800000px;}
.y11{bottom:941.680500px;}
.y1ad{bottom:942.522000px;}
.y189{bottom:944.202000px;}
.y293{bottom:944.673000px;}
.y2f8{bottom:944.916000px;}
.y32a{bottom:945.166500px;}
.y62{bottom:946.219500px;}
.y94{bottom:946.603500px;}
.yc8{bottom:947.293500px;}
.yf4{bottom:947.499000px;}
.y20e{bottom:949.624500px;}
.y23b{bottom:949.776000px;}
.y26c{bottom:955.558500px;}
.y1dc{bottom:955.732500px;}
.y2c5{bottom:956.415000px;}
.y10{bottom:959.613000px;}
.y1ac{bottom:961.053000px;}
.y292{bottom:962.605500px;}
.y2f7{bottom:962.848500px;}
.y329{bottom:963.930000px;}
.y61{bottom:964.152000px;}
.yc7{bottom:965.409000px;}
.y93{bottom:965.590500px;}
.y20d{bottom:967.557000px;}
.y26b{bottom:973.492500px;}
.y1db{bottom:973.665000px;}
.y2c4{bottom:974.347500px;}
.y23a{bottom:976.240500px;}
.yf{bottom:977.545500px;}
.y1ab{bottom:980.181000px;}
.y291{bottom:980.539500px;}
.y2f6{bottom:980.781000px;}
.y328{bottom:981.862500px;}
.y60{bottom:982.084500px;}
.yc6{bottom:983.341500px;}
.y92{bottom:983.523000px;}
.y11b{bottom:984.618000px;}
.y20c{bottom:985.489500px;}
.y26a{bottom:991.425000px;}
.y1da{bottom:991.597500px;}
.y2c3{bottom:992.280000px;}
.y239{bottom:994.174500px;}
.ye{bottom:995.479500px;}
.y188{bottom:997.705500px;}
.y290{bottom:998.472000px;}
.y2f5{bottom:998.715000px;}
.y327{bottom:999.795000px;}
.y5f{bottom:1000.017000px;}
.yc5{bottom:1001.274000px;}
.y91{bottom:1001.455500px;}
.y20b{bottom:1003.422000px;}
.y269{bottom:1009.357500px;}
.y1d9{bottom:1009.530000px;}
.y2c2{bottom:1010.212500px;}
.y238{bottom:1012.107000px;}
.yd{bottom:1013.412000px;}
.y28f{bottom:1016.077500px;}
.y2f4{bottom:1018.018500px;}
.y326{bottom:1018.558500px;}
.y5e{bottom:1018.669500px;}
.yc4{bottom:1019.206500px;}
.y90{bottom:1019.388000px;}
.yf3{bottom:1019.389500px;}
.y268{bottom:1027.290000px;}
.y1d8{bottom:1027.464000px;}
.y2c1{bottom:1028.872500px;}
.yc{bottom:1031.344500px;}
.y20a{bottom:1031.766000px;}
.y28e{bottom:1034.010000px;}
.y2f3{bottom:1035.951000px;}
.y325{bottom:1036.491000px;}
.y5d{bottom:1036.602000px;}
.yc3{bottom:1037.140500px;}
.y8f{bottom:1037.322000px;}
.y267{bottom:1045.222500px;}
.y1d7{bottom:1045.396500px;}
.y2c0{bottom:1046.805000px;}
.y2f2{bottom:1053.883500px;}
.y324{bottom:1054.423500px;}
.y5c{bottom:1054.536000px;}
.yc2{bottom:1055.073000px;}
.y8e{bottom:1055.254500px;}
.y28d{bottom:1061.593500px;}
.y266{bottom:1063.155000px;}
.y1d6{bottom:1063.329000px;}
.ya{bottom:1063.474500px;}
.y2bf{bottom:1064.739000px;}
.yb{bottom:1067.692500px;}
.y2f1{bottom:1071.816000px;}
.y323{bottom:1072.357500px;}
.y5b{bottom:1072.468500px;}
.y209{bottom:1072.779000px;}
.yc1{bottom:1073.005500px;}
.y8d{bottom:1073.187000px;}
.y265{bottom:1081.089000px;}
.y1d5{bottom:1081.261500px;}
.y9{bottom:1082.154000px;}
.y2be{bottom:1082.671500px;}
.y2f0{bottom:1089.748500px;}
.y322{bottom:1090.290000px;}
.y5a{bottom:1090.401000px;}
.y208{bottom:1090.711500px;}
.y8c{bottom:1091.119500px;}
.y264{bottom:1099.021500px;}
.y1d4{bottom:1099.194000px;}
.y2bd{bottom:1101.331500px;}
.y8{bottom:1103.076000px;}
.y59{bottom:1108.333500px;}
.y207{bottom:1108.644000px;}
.y8b{bottom:1109.052000px;}
.yc0{bottom:1109.053500px;}
.y263{bottom:1116.954000px;}
.y1d3{bottom:1117.126500px;}
.y2bc{bottom:1119.264000px;}
.y6{bottom:1123.996500px;}
.y58{bottom:1126.266000px;}
.y206{bottom:1126.576500px;}
.y8a{bottom:1126.986000px;}
.y7{bottom:1130.505000px;}
.y262{bottom:1134.886500px;}
.y2bb{bottom:1137.196500px;}
.y57{bottom:1144.918500px;}
.y5{bottom:1162.851000px;}
.ybf{bottom:1165.888438px;}
.y4{bottom:1166.003240px;}
.y3{bottom:1179.782758px;}
.he{height:13.200074px;}
.hd{height:29.960304px;}
.h9{height:33.665280px;}
.ha{height:34.074600px;}
.h12{height:34.368215px;}
.h4{height:36.000225px;}
.h8{height:40.347000px;}
.h11{height:42.792210px;}
.hb{height:42.801048px;}
.h3{height:44.824091px;}
.hc{height:44.833500px;}
.h7{height:45.429000px;}
.h13{height:47.781048px;}
.h14{height:47.787048px;}
.hf{height:49.898438px;}
.h6{height:51.358680px;}
.h5{height:60.769656px;}
.h2{height:1195.555378px;}
.h10{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:20.022000px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.111095px;}
.x12{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x15{left:95.832000px;}
.xd{left:99.984000px;}
.x23{left:101.638500px;}
.x16{left:114.927000px;}
.x21{left:122.482500px;}
.x2{left:125.858878px;}
.x14{left:129.010500px;}
.x13{left:139.741500px;}
.x28{left:150.996000px;}
.x22{left:164.067000px;}
.x1a{left:165.333000px;}
.x5{left:173.398500px;}
.x7{left:183.562500px;}
.x6{left:186.100500px;}
.x1d{left:187.540500px;}
.x8{left:193.276500px;}
.x19{left:198.271500px;}
.x11{left:208.226652px;}
.x24{left:350.103000px;}
.xe{left:453.928500px;}
.x25{left:461.400000px;}
.x1c{left:464.721000px;}
.xf{left:468.873000px;}
.x18{left:483.517500px;}
.x26{left:484.647000px;}
.x20{left:491.371500px;}
.x2a{left:493.779000px;}
.x17{left:503.254500px;}
.x27{left:522.895500px;}
.x1b{left:534.637500px;}
.x1e{left:547.858500px;}
.x1f{left:567.763500px;}
.x29{left:628.660500px;}
.xc{left:664.176000px;}
.xa{left:665.550000px;}
.x9{left:667.213500px;}
.xb{left:679.366500px;}
.x10{left:791.891968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.426667pt;}
.lse{letter-spacing:-0.300471pt;}
.lsc{letter-spacing:-0.079370pt;}
.lsd{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.034016pt;}
.ls8{letter-spacing:0.050667pt;}
.ls5{letter-spacing:0.083746pt;}
.ls4{letter-spacing:0.084291pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.592371pt;}
.ls3{letter-spacing:0.617146pt;}
.ls34{letter-spacing:2.200590pt;}
.ls22{letter-spacing:13.154279pt;}
.ls18{letter-spacing:13.156438pt;}
.ls19{letter-spacing:13.788755pt;}
.ls25{letter-spacing:14.649771pt;}
.ls30{letter-spacing:15.221208pt;}
.ls1a{letter-spacing:15.295061pt;}
.ls2f{letter-spacing:15.645789pt;}
.ls1d{letter-spacing:15.906412pt;}
.ls1c{letter-spacing:16.345771pt;}
.ls16{letter-spacing:16.656753pt;}
.ls2e{letter-spacing:17.259152pt;}
.ls1e{letter-spacing:17.288000pt;}
.ls20{letter-spacing:17.747424pt;}
.ls13{letter-spacing:17.903105pt;}
.ls7{letter-spacing:18.079830pt;}
.ls2b{letter-spacing:18.954392pt;}
.ls6{letter-spacing:19.031105pt;}
.ls17{letter-spacing:19.092438pt;}
.ls33{letter-spacing:19.332438pt;}
.ls12{letter-spacing:19.473714pt;}
.ls31{letter-spacing:19.745771pt;}
.ls1f{letter-spacing:19.762667pt;}
.lsb{letter-spacing:19.879429pt;}
.ls15{letter-spacing:20.311715pt;}
.ls24{letter-spacing:20.341228pt;}
.ls10{letter-spacing:20.375586pt;}
.ls26{letter-spacing:20.705113pt;}
.ls14{letter-spacing:20.956438pt;}
.lsa{letter-spacing:21.180438pt;}
.ls32{letter-spacing:21.742879pt;}
.ls2d{letter-spacing:22.626785pt;}
.ls2c{letter-spacing:23.079105pt;}
.ls9{letter-spacing:24.369771pt;}
.ls11{letter-spacing:24.623300pt;}
.ls2a{letter-spacing:24.678077pt;}
.ls29{letter-spacing:25.134941pt;}
.ls21{letter-spacing:25.585065pt;}
.ls23{letter-spacing:26.562647pt;}
.ls28{letter-spacing:26.721771pt;}
.ls27{letter-spacing:31.916328pt;}
.ls1b{letter-spacing:35.485709pt;}
.ws0{word-spacing:-43.097798pt;}
.ws1{word-spacing:-42.666933pt;}
.ws23b{word-spacing:-16.971638pt;}
.ws12e{word-spacing:-16.297056pt;}
.ws104{word-spacing:-14.761181pt;}
.ws255{word-spacing:-13.581562pt;}
.ws272{word-spacing:-2.964989pt;}
.ws212{word-spacing:-2.911640pt;}
.ws16d{word-spacing:-2.911587pt;}
.ws10a{word-spacing:-2.858770pt;}
.ws1ec{word-spacing:-2.752445pt;}
.ws135{word-spacing:-2.699309pt;}
.ws1a7{word-spacing:-2.645960pt;}
.ws2da{word-spacing:-2.539901pt;}
.ws43{word-spacing:-2.539848pt;}
.ws2a6{word-spacing:-2.487084pt;}
.ws21c{word-spacing:-2.486765pt;}
.ws10d{word-spacing:-2.486499pt;}
.wsa9{word-spacing:-2.380918pt;}
.wsc3{word-spacing:-2.380493pt;}
.wsbe{word-spacing:-2.380387pt;}
.ws2d9{word-spacing:-2.368807pt;}
.ws6f{word-spacing:-2.327569pt;}
.ws15a{word-spacing:-2.327091pt;}
.ws70{word-spacing:-2.274221pt;}
.ws199{word-spacing:-2.168640pt;}
.ws164{word-spacing:-2.168161pt;}
.ws238{word-spacing:-2.168108pt;}
.wsaf{word-spacing:-2.167949pt;}
.wse1{word-spacing:-2.114813pt;}
.ws182{word-spacing:-2.008647pt;}
.ws12a{word-spacing:-1.955299pt;}
.ws37{word-spacing:-1.795837pt;}
.ws127{word-spacing:-1.743020pt;}
.ws180{word-spacing:-1.636908pt;}
.wsac{word-spacing:-1.636589pt;}
.wsed{word-spacing:-1.636376pt;}
.ws169{word-spacing:-1.583612pt;}
.ws10c{word-spacing:-1.583559pt;}
.wsd7{word-spacing:-1.530264pt;}
.ws3a{word-spacing:-1.477446pt;}
.ws132{word-spacing:-1.424098pt;}
.ws1d5{word-spacing:-1.370803pt;}
.ws1ce{word-spacing:-1.317985pt;}
.ws5f{word-spacing:-1.317454pt;}
.ws124{word-spacing:-1.264637pt;}
.wsd6{word-spacing:-1.211820pt;}
.ws194{word-spacing:-1.211288pt;}
.ws163{word-spacing:-1.158524pt;}
.ws122{word-spacing:-1.105229pt;}
.ws2f{word-spacing:-1.105176pt;}
.ws176{word-spacing:-1.052358pt;}
.ws68{word-spacing:-1.037477pt;}
.ws125{word-spacing:-0.945821pt;}
.ws2a5{word-spacing:-0.945715pt;}
.ws2cf{word-spacing:-0.924088pt;}
.ws63{word-spacing:-0.907083pt;}
.ws89{word-spacing:-0.892897pt;}
.ws67{word-spacing:-0.890076pt;}
.ws27c{word-spacing:-0.871430pt;}
.ws183{word-spacing:-0.839602pt;}
.ws109{word-spacing:-0.786413pt;}
.ws151{word-spacing:-0.786253pt;}
.wsb3{word-spacing:-0.680141pt;}
.wsb7{word-spacing:-0.680088pt;}
.ws145{word-spacing:-0.627270pt;}
.ws134{word-spacing:-0.573975pt;}
.ws61{word-spacing:-0.544250pt;}
.ws1d9{word-spacing:-0.520627pt;}
.ws64{word-spacing:-0.447872pt;}
.wsd0{word-spacing:-0.414514pt;}
.ws1e7{word-spacing:-0.414461pt;}
.ws69{word-spacing:-0.413857pt;}
.ws2bb{word-spacing:-0.393525pt;}
.ws1ae{word-spacing:-0.361165pt;}
.ws2a4{word-spacing:-0.340017pt;}
.ws234{word-spacing:-0.308401pt;}
.ws9{word-spacing:-0.207230pt;}
.ws1f0{word-spacing:-0.201917pt;}
.ws136{word-spacing:-0.201704pt;}
.ws38{word-spacing:-0.201651pt;}
.ws8{word-spacing:-0.153935pt;}
.ws30{word-spacing:-0.148887pt;}
.ws203{word-spacing:-0.095645pt;}
.ws1a9{word-spacing:-0.095592pt;}
.ws205{word-spacing:-0.095539pt;}
.ws79{word-spacing:-0.042774pt;}
.ws21d{word-spacing:-0.042509pt;}
.ws6{word-spacing:-0.042507pt;}
.ws273{word-spacing:-0.031669pt;}
.ws60{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.010574pt;}
.wsaa{word-spacing:0.010627pt;}
.ws66{word-spacing:0.039685pt;}
.ws131{word-spacing:0.063869pt;}
.ws71{word-spacing:0.116687pt;}
.wsc2{word-spacing:0.116740pt;}
.ws108{word-spacing:0.116899pt;}
.ws24e{word-spacing:0.191290pt;}
.ws23f{word-spacing:0.223171pt;}
.wsc5{word-spacing:0.223915pt;}
.ws2bc{word-spacing:0.244532pt;}
.ws62{word-spacing:0.260786pt;}
.ws1b0{word-spacing:0.276148pt;}
.ws8e{word-spacing:0.329496pt;}
.ws1aa{word-spacing:0.382367pt;}
.ws116{word-spacing:0.382845pt;}
.ws1dc{word-spacing:0.488479pt;}
.ws1db{word-spacing:0.489011pt;}
.ws2ca{word-spacing:0.541828pt;}
.ws128{word-spacing:0.541987pt;}
.ws2c9{word-spacing:0.563454pt;}
.ws110{word-spacing:0.595070pt;}
.ws5e{word-spacing:0.595176pt;}
.ws65{word-spacing:0.634958pt;}
.ws216{word-spacing:0.648419pt;}
.ws20c{word-spacing:0.701289pt;}
.wsd1{word-spacing:0.701395pt;}
.ws239{word-spacing:0.712022pt;}
.wse7{word-spacing:0.754531pt;}
.ws1bf{word-spacing:0.807455pt;}
.ws1d8{word-spacing:0.860697pt;}
.wsc0{word-spacing:0.913939pt;}
.ws88{word-spacing:0.914045pt;}
.ws215{word-spacing:0.914577pt;}
.ws17a{word-spacing:0.966810pt;}
.ws2d6{word-spacing:0.984433pt;}
.ws171{word-spacing:1.020158pt;}
.ws1d7{word-spacing:1.020264pt;}
.ws2d5{word-spacing:1.073028pt;}
.wsf1{word-spacing:1.073507pt;}
.ws2d1{word-spacing:1.094708pt;}
.wsea{word-spacing:1.126271pt;}
.ws40{word-spacing:1.126377pt;}
.ws133{word-spacing:1.179619pt;}
.ws12b{word-spacing:1.232436pt;}
.wsd8{word-spacing:1.232755pt;}
.ws22a{word-spacing:1.285732pt;}
.ws1f8{word-spacing:1.285891pt;}
.wsc1{word-spacing:1.339027pt;}
.ws45{word-spacing:1.339080pt;}
.wsca{word-spacing:1.391898pt;}
.ws170{word-spacing:1.445246pt;}
.wsa3{word-spacing:1.498435pt;}
.ws121{word-spacing:1.498541pt;}
.ws222{word-spacing:1.551359pt;}
.ws229{word-spacing:1.551465pt;}
.ws22e{word-spacing:1.551890pt;}
.ws97{word-spacing:1.604707pt;}
.ws130{word-spacing:1.604813pt;}
.ws1dd{word-spacing:1.657471pt;}
.ws1da{word-spacing:1.657631pt;}
.ws195{word-spacing:1.658003pt;}
.ws19c{word-spacing:1.710926pt;}
.ws148{word-spacing:1.764115pt;}
.ws32{word-spacing:1.764168pt;}
.ws2db{word-spacing:1.816932pt;}
.ws3b{word-spacing:1.817092pt;}
.ws19b{word-spacing:1.870281pt;}
.wsd{word-spacing:1.918103pt;}
.ws25f{word-spacing:1.922917pt;}
.ws202{word-spacing:1.923098pt;}
.ws1f2{word-spacing:1.923629pt;}
.wsdb{word-spacing:1.976447pt;}
.wsdc{word-spacing:1.976659pt;}
.wsa7{word-spacing:2.029742pt;}
.wsec{word-spacing:2.029795pt;}
.ws102{word-spacing:2.029901pt;}
.ws1a5{word-spacing:2.082559pt;}
.ws1a4{word-spacing:2.083250pt;}
.wsf7{word-spacing:2.135908pt;}
.ws15e{word-spacing:2.136014pt;}
.ws12c{word-spacing:2.136067pt;}
.ws22f{word-spacing:2.136439pt;}
.wsfb{word-spacing:2.189203pt;}
.ws129{word-spacing:2.242020pt;}
.ws181{word-spacing:2.242552pt;}
.ws2c1{word-spacing:2.295369pt;}
.ws1d2{word-spacing:2.295528pt;}
.ws16b{word-spacing:2.348133pt;}
.ws1eb{word-spacing:2.348611pt;}
.wsda{word-spacing:2.348664pt;}
.wsb1{word-spacing:2.401482pt;}
.ws190{word-spacing:2.401641pt;}
.ws1d1{word-spacing:2.454830pt;}
.ws1f3{word-spacing:2.454883pt;}
.ws42{word-spacing:2.455361pt;}
.ws6e{word-spacing:2.507647pt;}
.ws41{word-spacing:2.507754pt;}
.wse2{word-spacing:2.508179pt;}
.wsce{word-spacing:2.614291pt;}
.ws1ac{word-spacing:2.667108pt;}
.ws22c{word-spacing:2.667427pt;}
.ws103{word-spacing:2.720404pt;}
.ws2c8{word-spacing:2.720563pt;}
.ws10{word-spacing:2.768226pt;}
.ws226{word-spacing:2.773699pt;}
.ws78{word-spacing:2.773752pt;}
.ws1c6{word-spacing:2.773912pt;}
.ws14b{word-spacing:2.826835pt;}
.ws2df{word-spacing:2.901172pt;}
.ws15{word-spacing:2.927687pt;}
.ws7f{word-spacing:2.932682pt;}
.ws2d{word-spacing:2.932842pt;}
.wsb4{word-spacing:2.933107pt;}
.ws31{word-spacing:2.933213pt;}
.ws49{word-spacing:2.933373pt;}
.ws240{word-spacing:2.943788pt;}
.ws158{word-spacing:2.986031pt;}
.ws1df{word-spacing:2.986190pt;}
.wsef{word-spacing:2.986243pt;}
.ws72{word-spacing:2.986562pt;}
.ws2c0{word-spacing:3.039007pt;}
.ws98{word-spacing:3.039379pt;}
.wsde{word-spacing:3.092143pt;}
.ws9d{word-spacing:3.145492pt;}
.ws9c{word-spacing:3.145651pt;}
.ws218{word-spacing:3.198309pt;}
.ws18b{word-spacing:3.198787pt;}
.ws56{word-spacing:3.199000pt;}
.ws53{word-spacing:3.251604pt;}
.ws100{word-spacing:3.252136pt;}
.wsbb{word-spacing:3.304953pt;}
.ws1b1{word-spacing:3.305165pt;}
.wsbf{word-spacing:3.358833pt;}
.ws207{word-spacing:3.379450pt;}
.ws52{word-spacing:3.411066pt;}
.ws8b{word-spacing:3.411650pt;}
.ws140{word-spacing:3.432107pt;}
.ws1b7{word-spacing:3.432373pt;}
.ws20b{word-spacing:3.432586pt;}
.ws153{word-spacing:3.464095pt;}
.wse5{word-spacing:3.464414pt;}
.ws152{word-spacing:3.464467pt;}
.ws85{word-spacing:3.517231pt;}
.ws86{word-spacing:3.517763pt;}
.ws16a{word-spacing:3.517975pt;}
.ws47{word-spacing:3.570580pt;}
.wsee{word-spacing:3.570739pt;}
.ws228{word-spacing:3.623875pt;}
.ws287{word-spacing:3.624088pt;}
.ws2d7{word-spacing:3.634609pt;}
.ws16c{word-spacing:3.677011pt;}
.wsb2{word-spacing:3.677224pt;}
.wse0{word-spacing:3.730041pt;}
.ws21e{word-spacing:3.730200pt;}
.ws48{word-spacing:3.782805pt;}
.ws197{word-spacing:3.783336pt;}
.ws286{word-spacing:3.804378pt;}
.ws1b4{word-spacing:3.836366pt;}
.ws19d{word-spacing:3.889555pt;}
.ws139{word-spacing:3.942266pt;}
.ws1ad{word-spacing:3.942479pt;}
.ws126{word-spacing:3.942851pt;}
.ws16{word-spacing:3.990620pt;}
.ws2a3{word-spacing:3.995827pt;}
.ws8c{word-spacing:4.048963pt;}
.wsb{word-spacing:4.149922pt;}
.ws1c7{word-spacing:4.154757pt;}
.wsf3{word-spacing:4.155235pt;}
.ws1c9{word-spacing:4.155288pt;}
.ws162{word-spacing:4.207893pt;}
.ws1a6{word-spacing:4.261454pt;}
.wsa6{word-spacing:4.261507pt;}
.wse3{word-spacing:4.314537pt;}
.ws1de{word-spacing:4.314803pt;}
.ws1ab{word-spacing:4.315068pt;}
.ws6d{word-spacing:4.367885pt;}
.ws29d{word-spacing:4.368098pt;}
.ws111{word-spacing:4.420703pt;}
.ws1bc{word-spacing:4.420915pt;}
.ws191{word-spacing:4.425263pt;}
.ws2bd{word-spacing:4.473732pt;}
.ws232{word-spacing:4.473998pt;}
.ws260{word-spacing:4.484572pt;}
.ws13a{word-spacing:4.526815pt;}
.ws19e{word-spacing:4.527187pt;}
.ws13f{word-spacing:4.580164pt;}
.ws2b{word-spacing:4.580376pt;}
.ws115{word-spacing:4.580695pt;}
.wsa8{word-spacing:4.633459pt;}
.ws7c{word-spacing:4.633512pt;}
.ws5{word-spacing:4.666911pt;}
.ws19a{word-spacing:4.686276pt;}
.ws113{word-spacing:4.686595pt;}
.ws1e6{word-spacing:4.739731pt;}
.ws2e{word-spacing:4.792655pt;}
.ws112{word-spacing:4.792867pt;}
.ws7e{word-spacing:4.792973pt;}
.ws24c{word-spacing:4.814281pt;}
.ws2b8{word-spacing:4.814494pt;}
.ws1be{word-spacing:4.845738pt;}
.ws1cd{word-spacing:4.846003pt;}
.ws2d0{word-spacing:4.856524pt;}
.ws6b{word-spacing:4.899086pt;}
.ws11f{word-spacing:4.899139pt;}
.ws233{word-spacing:4.950011pt;}
.ws9a{word-spacing:4.951903pt;}
.wsb8{word-spacing:4.952275pt;}
.ws120{word-spacing:4.952435pt;}
.ws2d8{word-spacing:4.963168pt;}
.ws13c{word-spacing:4.986289pt;}
.ws1a{word-spacing:4.999832pt;}
.ws1d{word-spacing:5.000363pt;}
.ws101{word-spacing:5.005199pt;}
.ws3d{word-spacing:5.005464pt;}
.ws96{word-spacing:5.058547pt;}
.ws117{word-spacing:5.111364pt;}
.ws10f{word-spacing:5.111683pt;}
.ws1d4{word-spacing:5.164182pt;}
.ws5b{word-spacing:5.164713pt;}
.ws5c{word-spacing:5.164925pt;}
.ws28d{word-spacing:5.175446pt;}
.ws10e{word-spacing:5.217477pt;}
.ws175{word-spacing:5.218008pt;}
.ws5d{word-spacing:5.218540pt;}
.wse9{word-spacing:5.270826pt;}
.wse8{word-spacing:5.271091pt;}
.ws2ac{word-spacing:5.323643pt;}
.ws4b{word-spacing:5.324705pt;}
.ws18{word-spacing:5.372156pt;}
.wse6{word-spacing:5.376938pt;}
.ws23a{word-spacing:5.387990pt;}
.ws24b{word-spacing:5.388044pt;}
.ws28e{word-spacing:5.388256pt;}
.ws13{word-spacing:5.424920pt;}
.ws12{word-spacing:5.425292pt;}
.ws21f{word-spacing:5.430287pt;}
.ws26d{word-spacing:5.441073pt;}
.ws241{word-spacing:5.441126pt;}
.ws1fe{word-spacing:5.483635pt;}
.ws17{word-spacing:5.531404pt;}
.wsae{word-spacing:5.536399pt;}
.wsad{word-spacing:5.536824pt;}
.ws35{word-spacing:5.536984pt;}
.wsa{word-spacing:5.584753pt;}
.ws76{word-spacing:5.589748pt;}
.wsd9{word-spacing:5.589907pt;}
.ws34{word-spacing:5.590013pt;}
.wsb6{word-spacing:5.643043pt;}
.ws77{word-spacing:5.643096pt;}
.ws11c{word-spacing:5.696445pt;}
.ws1d0{word-spacing:5.749209pt;}
.ws1b2{word-spacing:5.749528pt;}
.ws1c4{word-spacing:5.802026pt;}
.ws9f{word-spacing:5.802292pt;}
.ws2a1{word-spacing:5.823546pt;}
.ws249{word-spacing:5.855109pt;}
.ws1f4{word-spacing:5.855375pt;}
.ws24d{word-spacing:5.855587pt;}
.ws26b{word-spacing:5.855640pt;}
.ws172{word-spacing:5.855906pt;}
.ws7a{word-spacing:5.865896pt;}
.wsf8{word-spacing:5.866161pt;}
.ws149{word-spacing:5.866214pt;}
.ws13d{word-spacing:5.866427pt;}
.ws15d{word-spacing:5.866693pt;}
.ws73{word-spacing:5.908139pt;}
.ws51{word-spacing:5.908458pt;}
.ws106{word-spacing:5.908670pt;}
.ws50{word-spacing:5.908989pt;}
.ws99{word-spacing:5.919244pt;}
.wsfd{word-spacing:5.961487pt;}
.ws1b6{word-spacing:5.961806pt;}
.wsfc{word-spacing:5.961859pt;}
.ws8d{word-spacing:5.962019pt;}
.ws11b{word-spacing:6.014570pt;}
.ws137{word-spacing:6.014836pt;}
.ws173{word-spacing:6.014995pt;}
.ws11a{word-spacing:6.015101pt;}
.wsa5{word-spacing:6.067919pt;}
.wsc4{word-spacing:6.068078pt;}
.ws150{word-spacing:6.068184pt;}
.ws21a{word-spacing:6.121267pt;}
.wsdd{word-spacing:6.121480pt;}
.ws248{word-spacing:6.143053pt;}
.ws179{word-spacing:6.174297pt;}
.wsd4{word-spacing:6.174403pt;}
.wsd5{word-spacing:6.174616pt;}
.ws2a2{word-spacing:6.184818pt;}
.ws24f{word-spacing:6.249006pt;}
.ws2ae{word-spacing:6.279878pt;}
.ws1ef{word-spacing:6.280675pt;}
.wse{word-spacing:6.328232pt;}
.wsf{word-spacing:6.328498pt;}
.ws270{word-spacing:6.333546pt;}
.ws21b{word-spacing:6.333811pt;}
.wse4{word-spacing:6.334289pt;}
.ws14f{word-spacing:6.386575pt;}
.ws237{word-spacing:6.386841pt;}
.ws4f{word-spacing:6.387107pt;}
.ws5a{word-spacing:6.440189pt;}
.ws4e{word-spacing:6.440402pt;}
.ws165{word-spacing:6.493007pt;}
.ws80{word-spacing:6.493219pt;}
.wsf5{word-spacing:6.546036pt;}
.wsf2{word-spacing:6.546355pt;}
.ws87{word-spacing:6.546568pt;}
.wsff{word-spacing:6.598800pt;}
.ws26f{word-spacing:6.620799pt;}
.ws2ad{word-spacing:6.620905pt;}
.ws11{word-spacing:6.647154pt;}
.ws1cc{word-spacing:6.652468pt;}
.wsc8{word-spacing:6.652627pt;}
.ws17d{word-spacing:6.652680pt;}
.ws280{word-spacing:6.705498pt;}
.ws22d{word-spacing:6.705763pt;}
.ws75{word-spacing:6.706029pt;}
.ws29c{word-spacing:6.716603pt;}
.ws253{word-spacing:6.727018pt;}
.ws15c{word-spacing:6.758634pt;}
.ws7d{word-spacing:6.758846pt;}
.wsf6{word-spacing:6.811610pt;}
.ws28a{word-spacing:6.811929pt;}
.wsc9{word-spacing:6.812035pt;}
.ws2cb{word-spacing:6.812141pt;}
.ws166{word-spacing:6.865490pt;}
.ws2be{word-spacing:6.875533pt;}
.ws14c{word-spacing:6.971443pt;}
.wsab{word-spacing:6.971603pt;}
.ws17f{word-spacing:7.024420pt;}
.ws231{word-spacing:7.024579pt;}
.wsb0{word-spacing:7.024951pt;}
.ws230{word-spacing:7.039104pt;}
.wsfe{word-spacing:7.077768pt;}
.ws3{word-spacing:7.102864pt;}
.ws4{word-spacing:7.102928pt;}
.ws58{word-spacing:7.130904pt;}
.ws264{word-spacing:7.131117pt;}
.ws1a8{word-spacing:7.184253pt;}
.ws107{word-spacing:7.237017pt;}
.wsfa{word-spacing:7.237123pt;}
.ws95{word-spacing:7.237229pt;}
.ws259{word-spacing:7.247644pt;}
.ws196{word-spacing:7.290047pt;}
.ws138{word-spacing:7.290578pt;}
.ws27{word-spacing:7.343342pt;}
.ws46{word-spacing:7.396531pt;}
.ws118{word-spacing:7.449508pt;}
.ws18d{word-spacing:7.449667pt;}
.ws18e{word-spacing:7.449827pt;}
.ws1ed{word-spacing:7.502644pt;}
.wsf0{word-spacing:7.502803pt;}
.ws123{word-spacing:7.555939pt;}
.ws271{word-spacing:7.555992pt;}
.ws1c5{word-spacing:7.608756pt;}
.ws221{word-spacing:7.608969pt;}
.ws2ab{word-spacing:7.619809pt;}
.ws236{word-spacing:7.630330pt;}
.ws24{word-spacing:7.662211pt;}
.ws14a{word-spacing:7.662317pt;}
.ws17b{word-spacing:7.715082pt;}
.ws159{word-spacing:7.715453pt;}
.ws1c{word-spacing:7.763435pt;}
.ws1ee{word-spacing:7.768430pt;}
.ws23d{word-spacing:7.768483pt;}
.ws1e0{word-spacing:7.821566pt;}
.ws1b8{word-spacing:7.821779pt;}
.wsa1{word-spacing:7.874543pt;}
.ws20d{word-spacing:7.874755pt;}
.ws1cf{word-spacing:7.874915pt;}
.ws161{word-spacing:7.875074pt;}
.ws29f{word-spacing:7.927732pt;}
.ws36{word-spacing:7.927891pt;}
.ws263{word-spacing:7.980549pt;}
.ws198{word-spacing:7.981080pt;}
.ws254{word-spacing:7.991654pt;}
.ws119{word-spacing:8.034004pt;}
.ws13e{word-spacing:8.034535pt;}
.ws192{word-spacing:8.044790pt;}
.ws16e{word-spacing:8.087299pt;}
.ws1d6{word-spacing:8.087352pt;}
.ws26c{word-spacing:8.097714pt;}
.ws15f{word-spacing:8.140541pt;}
.ws20a{word-spacing:8.140701pt;}
.ws143{word-spacing:8.193518pt;}
.ws211{word-spacing:8.193571pt;}
.ws94{word-spacing:8.246813pt;}
.ws91{word-spacing:8.299631pt;}
.ws1cb{word-spacing:8.300003pt;}
.ws92{word-spacing:8.300162pt;}
.ws29e{word-spacing:8.321098pt;}
.ws1f5{word-spacing:8.352979pt;}
.ws44{word-spacing:8.405637pt;}
.ws220{word-spacing:8.405743pt;}
.wsbd{word-spacing:8.406115pt;}
.ws2c{word-spacing:8.406275pt;}
.ws262{word-spacing:8.427316pt;}
.wsc{word-spacing:8.453938pt;}
.ws33{word-spacing:8.459092pt;}
.ws2b1{word-spacing:8.469985pt;}
.ws19{word-spacing:8.560528pt;}
.wsd2{word-spacing:8.565523pt;}
.wsd3{word-spacing:8.565736pt;}
.ws281{word-spacing:8.576150pt;}
.ws22{word-spacing:8.666466pt;}
.ws1e{word-spacing:8.668669pt;}
.ws20{word-spacing:8.672231pt;}
.ws21{word-spacing:8.673614pt;}
.ws3f{word-spacing:8.724559pt;}
.ws209{word-spacing:8.724931pt;}
.ws2cc{word-spacing:8.725091pt;}
.ws2a7{word-spacing:8.773412pt;}
.wsc6{word-spacing:8.777908pt;}
.ws257{word-spacing:8.778014pt;}
.wsb5{word-spacing:8.778067pt;}
.ws11d{word-spacing:8.807943pt;}
.ws157{word-spacing:8.831256pt;}
.ws141{word-spacing:8.831363pt;}
.ws22b{word-spacing:8.884180pt;}
.wsa4{word-spacing:8.884339pt;}
.ws57{word-spacing:8.884711pt;}
.ws224{word-spacing:8.937475pt;}
.ws289{word-spacing:8.947890pt;}
.ws15b{word-spacing:8.990824pt;}
.ws13b{word-spacing:9.043110pt;}
.ws29{word-spacing:9.043482pt;}
.ws28{word-spacing:9.043641pt;}
.ws269{word-spacing:9.096830pt;}
.ws1af{word-spacing:9.096936pt;}
.ws16f{word-spacing:9.149754pt;}
.ws217{word-spacing:9.150019pt;}
.ws2e0{word-spacing:9.150179pt;}
.ws2c4{word-spacing:9.171274pt;}
.ws1e2{word-spacing:9.202996pt;}
.ws105{word-spacing:9.203102pt;}
.ws2b9{word-spacing:9.247718pt;}
.ws219{word-spacing:9.256291pt;}
.ws93{word-spacing:9.309215pt;}
.ws11e{word-spacing:9.309427pt;}
.ws26e{word-spacing:9.330735pt;}
.ws2a0{word-spacing:9.362457pt;}
.ws24a{word-spacing:9.373509pt;}
.ws23c{word-spacing:9.436954pt;}
.ws1f6{word-spacing:9.468676pt;}
.ws20e{word-spacing:9.469207pt;}
.wsb9{word-spacing:9.574842pt;}
.wsba{word-spacing:9.575107pt;}
.ws3e{word-spacing:9.575373pt;}
.ws4c{word-spacing:9.628084pt;}
.ws4d{word-spacing:9.628137pt;}
.ws1a2{word-spacing:9.628243pt;}
.ws14e{word-spacing:9.681485pt;}
.ws2c5{word-spacing:9.691900pt;}
.ws82{word-spacing:9.734303pt;}
.ws201{word-spacing:9.734515pt;}
.ws10b{word-spacing:9.734834pt;}
.ws210{word-spacing:9.787651pt;}
.ws2d4{word-spacing:9.840362pt;}
.wsc7{word-spacing:9.840787pt;}
.ws296{word-spacing:9.851361pt;}
.ws14{word-spacing:9.888556pt;}
.ws206{word-spacing:9.893923pt;}
.ws1ca{word-spacing:9.894189pt;}
.wsbc{word-spacing:9.947059pt;}
.ws1c0{word-spacing:9.947112pt;}
.ws12f{word-spacing:10.053172pt;}
.ws29a{word-spacing:10.159284pt;}
.ws19f{word-spacing:10.159338pt;}
.ws1e4{word-spacing:10.159869pt;}
.ws225{word-spacing:10.212686pt;}
.ws18f{word-spacing:10.212739pt;}
.wseb{word-spacing:10.265981pt;}
.ws1bd{word-spacing:10.372147pt;}
.ws84{word-spacing:10.424964pt;}
.ws1c2{word-spacing:10.425443pt;}
.ws83{word-spacing:10.425496pt;}
.ws17e{word-spacing:10.478313pt;}
.ws250{word-spacing:10.531555pt;}
.wscd{word-spacing:10.531608pt;}
.ws9b{word-spacing:10.637774pt;}
.ws299{word-spacing:10.659347pt;}
.wsa0{word-spacing:10.691069pt;}
.ws1e3{word-spacing:10.744099pt;}
.ws285{word-spacing:10.754886pt;}
.ws168{word-spacing:10.797182pt;}
.wsf4{word-spacing:10.797235pt;}
.ws167{word-spacing:10.850531pt;}
.ws74{word-spacing:10.850584pt;}
.ws144{word-spacing:10.956643pt;}
.ws3c{word-spacing:10.956696pt;}
.ws214{word-spacing:11.009779pt;}
.ws2cd{word-spacing:11.020513pt;}
.ws1e5{word-spacing:11.062809pt;}
.wscc{word-spacing:11.116051pt;}
.ws147{word-spacing:11.116157pt;}
.ws27d{word-spacing:11.126678pt;}
.ws2af{word-spacing:11.168975pt;}
.ws160{word-spacing:11.222270pt;}
.ws2ba{word-spacing:11.232791pt;}
.ws1a1{word-spacing:11.275619pt;}
.ws2ce{word-spacing:11.329486pt;}
.ws1a3{word-spacing:11.381731pt;}
.ws14d{word-spacing:11.381784pt;}
.ws2e2{word-spacing:11.392252pt;}
.ws227{word-spacing:11.434548pt;}
.ws59{word-spacing:11.435080pt;}
.ws142{word-spacing:11.487897pt;}
.ws114{word-spacing:11.488428pt;}
.ws1c1{word-spacing:11.541192pt;}
.ws6c{word-spacing:11.541245pt;}
.wsdf{word-spacing:11.594275pt;}
.ws277{word-spacing:11.700653pt;}
.ws7b{word-spacing:11.700707pt;}
.ws242{word-spacing:11.799124pt;}
.ws261{word-spacing:11.801791pt;}
.ws235{word-spacing:11.804458pt;}
.ws193{word-spacing:11.806819pt;}
.ws1f9{word-spacing:11.859955pt;}
.ws8a{word-spacing:11.966280pt;}
.ws4a{word-spacing:12.019629pt;}
.ws295{word-spacing:12.094072pt;}
.ws1f1{word-spacing:12.178771pt;}
.ws25b{word-spacing:12.231907pt;}
.ws28c{word-spacing:12.253002pt;}
.ws23e{word-spacing:12.338020pt;}
.ws2a{word-spacing:12.391368pt;}
.ws55{word-spacing:12.444186pt;}
.ws8f{word-spacing:12.444717pt;}
.ws9e{word-spacing:12.550723pt;}
.ws177{word-spacing:12.603647pt;}
.ws1c8{word-spacing:12.604178pt;}
.ws1b3{word-spacing:12.656942pt;}
.ws1fd{word-spacing:12.656995pt;}
.ws2c2{word-spacing:12.667516pt;}
.ws2d3{word-spacing:12.709812pt;}
.ws2c3{word-spacing:12.816935pt;}
.ws293{word-spacing:12.880273pt;}
.ws29b{word-spacing:12.935336pt;}
.ws268{word-spacing:13.049830pt;}
.ws294{word-spacing:13.082083pt;}
.ws1a0{word-spacing:13.092020pt;}
.ws1f{word-spacing:13.129569pt;}
.ws28b{word-spacing:13.156527pt;}
.ws20f{word-spacing:13.188143pt;}
.ws39{word-spacing:13.347657pt;}
.ws25{word-spacing:13.347763pt;}
.ws26{word-spacing:13.348135pt;}
.ws2d2{word-spacing:13.369336pt;}
.ws2aa{word-spacing:13.411526pt;}
.ws1e1{word-spacing:13.454035pt;}
.ws278{word-spacing:13.464875pt;}
.ws200{word-spacing:13.613443pt;}
.ws1b9{word-spacing:13.613815pt;}
.wsa2{word-spacing:13.666579pt;}
.ws1ba{word-spacing:13.666632pt;}
.ws81{word-spacing:13.772692pt;}
.ws1fc{word-spacing:13.772745pt;}
.ws155{word-spacing:13.878804pt;}
.ws2c7{word-spacing:13.879336pt;}
.ws154{word-spacing:13.932259pt;}
.ws1ff{word-spacing:13.985501pt;}
.ws213{word-spacing:14.038319pt;}
.ws297{word-spacing:14.059467pt;}
.ws90{word-spacing:14.091614pt;}
.ws174{word-spacing:14.091667pt;}
.ws54{word-spacing:14.357294pt;}
.ws258{word-spacing:14.676163pt;}
.ws204{word-spacing:14.691820pt;}
.ws7{word-spacing:15.004726pt;}
.ws1c3{word-spacing:15.047903pt;}
.ws2de{word-spacing:15.281701pt;}
.ws25a{word-spacing:15.281914pt;}
.ws26a{word-spacing:15.472938pt;}
.ws1d3{word-spacing:15.579794pt;}
.wsf9{word-spacing:15.738883pt;}
.ws291{word-spacing:15.845208pt;}
.ws252{word-spacing:15.898026pt;}
.ws18c{word-spacing:15.951374pt;}
.ws283{word-spacing:15.972628pt;}
.ws2dc{word-spacing:16.015350pt;}
.ws266{word-spacing:16.174811pt;}
.ws156{word-spacing:16.642567pt;}
.ws256{word-spacing:16.929130pt;}
.wscf{word-spacing:16.960958pt;}
.ws1bb{word-spacing:17.173449pt;}
.ws251{word-spacing:17.343590pt;}
.ws2dd{word-spacing:17.386259pt;}
.ws223{word-spacing:17.438810pt;}
.ws2c6{word-spacing:17.513466pt;}
.ws267{word-spacing:17.545720pt;}
.ws208{word-spacing:17.704968pt;}
.ws178{word-spacing:17.757786pt;}
.ws1b{word-spacing:18.379681pt;}
.ws17c{word-spacing:18.501743pt;}
.ws1fb{word-spacing:18.661204pt;}
.ws25e{word-spacing:18.661363pt;}
.ws25c{word-spacing:18.667715pt;}
.ws2b0{word-spacing:18.686991pt;}
.ws12d{word-spacing:19.153504pt;}
.ws2bf{word-spacing:19.267167pt;}
.ws25d{word-spacing:19.893640pt;}
.ws290{word-spacing:20.149224pt;}
.ws288{word-spacing:20.185372pt;}
.ws27e{word-spacing:21.265346pt;}
.ws1b5{word-spacing:22.008984pt;}
.ws292{word-spacing:22.062173pt;}
.ws276{word-spacing:22.114938pt;}
.ws282{word-spacing:22.667818pt;}
.ws298{word-spacing:23.040088pt;}
.ws275{word-spacing:23.252367pt;}
.ws247{word-spacing:24.718814pt;}
.ws2{word-spacing:24.865864pt;}
.ws279{word-spacing:24.888849pt;}
.ws246{word-spacing:25.420262pt;}
.ws28f{word-spacing:25.696729pt;}
.ws284{word-spacing:25.990438pt;}
.ws2a8{word-spacing:27.343732pt;}
.ws2e1{word-spacing:28.178266pt;}
.ws2e4{word-spacing:30.192088pt;}
.ws2e5{word-spacing:30.521531pt;}
.ws244{word-spacing:31.998499pt;}
.ws2a9{word-spacing:32.451999pt;}
.ws2e7{word-spacing:33.220680pt;}
.ws2e6{word-spacing:33.230723pt;}
.ws27a{word-spacing:34.612897pt;}
.ws27f{word-spacing:34.920979pt;}
.ws243{word-spacing:36.376640pt;}
.ws274{word-spacing:36.483284pt;}
.ws1e8{word-spacing:37.843087pt;}
.ws2b6{word-spacing:38.279174pt;}
.ws27b{word-spacing:42.626018pt;}
.ws146{word-spacing:44.134762pt;}
.wscb{word-spacing:44.868038pt;}
.ws2b2{word-spacing:46.366367pt;}
.ws2b7{word-spacing:47.620536pt;}
.ws2b4{word-spacing:48.470287pt;}
.ws188{word-spacing:48.999675pt;}
.ws184{word-spacing:51.799942pt;}
.ws2e3{word-spacing:52.477007pt;}
.ws23{word-spacing:53.838944pt;}
.ws265{word-spacing:72.855810pt;}
.ws245{word-spacing:73.617963pt;}
.ws18a{word-spacing:83.660288pt;}
.ws187{word-spacing:85.450971pt;}
.ws189{word-spacing:89.287390pt;}
.ws1ea{word-spacing:94.114483pt;}
.ws186{word-spacing:109.516266pt;}
.ws1f7{word-spacing:115.103363pt;}
.ws2b5{word-spacing:115.228954pt;}
.ws1e9{word-spacing:132.053800pt;}
.ws2b3{word-spacing:142.280552pt;}
.ws185{word-spacing:158.215410pt;}
.ws1fa{word-spacing:196.426972pt;}
._4{margin-left:-35.131760pt;}
._32{margin-left:-25.890846pt;}
._6{margin-left:-24.504650pt;}
._5{margin-left:-17.966120pt;}
._20{margin-left:-13.526868pt;}
._2{margin-left:-6.707595pt;}
._36{margin-left:-5.794791pt;}
._c{margin-left:-4.410129pt;}
._38{margin-left:-3.380236pt;}
._3{margin-left:-2.462492pt;}
._1{margin-left:-1.555089pt;}
._0{width:1.555625pt;}
._1c{width:2.975457pt;}
._12{width:13.921632pt;}
._25{width:15.356517pt;}
._a{width:16.419339pt;}
._3a{width:17.391093pt;}
._2f{width:18.410020pt;}
._14{width:19.513650pt;}
._23{width:20.604841pt;}
._7{width:21.838732pt;}
._18{width:22.891774pt;}
._d{width:23.804290pt;}
._27{width:24.710516pt;}
._e{width:25.654466pt;}
._24{width:26.568000pt;}
._9{width:27.509767pt;}
._15{width:29.078846pt;}
._f{width:30.818455pt;}
._17{width:32.451096pt;}
._8{width:34.194366pt;}
._1b{width:35.136935pt;}
._1e{width:36.276942pt;}
._39{width:37.280445pt;}
._b{width:38.406893pt;}
._1d{width:39.707056pt;}
._13{width:40.915251pt;}
._10{width:42.140493pt;}
._16{width:43.553546pt;}
._2e{width:44.899920pt;}
._1f{width:46.401661pt;}
._28{width:48.594435pt;}
._22{width:49.560942pt;}
._11{width:51.333038pt;}
._33{width:52.603511pt;}
._37{width:53.656606pt;}
._29{width:54.676838pt;}
._2b{width:55.860081pt;}
._1a{width:58.449600pt;}
._3b{width:60.109168pt;}
._26{width:61.106666pt;}
._2c{width:62.168854pt;}
._21{width:65.704280pt;}
._19{width:70.136000pt;}
._34{width:74.885885pt;}
._35{width:79.860190pt;}
._30{width:80.817804pt;}
._31{width:99.736113pt;}
._3d{width:104.859368pt;}
._2d{width:118.417275pt;}
._3c{width:135.622434pt;}
._2a{width:483.310819pt;}
.fs7{font-size:31.882667pt;}
.fs9{font-size:37.194667pt;}
.fs5{font-size:42.506667pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fs6{font-size:47.818667pt;}
.fs1{font-size:53.121069pt;}
.fs8{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y54{bottom:37.226074pt;}
.y56{bottom:38.216555pt;}
.y3d{bottom:94.488000pt;}
.y3c{bottom:110.428000pt;}
.y135{bottom:112.868000pt;}
.y1d2{bottom:122.800000pt;}
.y3b{bottom:126.368000pt;}
.y205{bottom:126.466667pt;}
.y261{bottom:130.160000pt;}
.y169{bottom:132.514667pt;}
.y1d1{bottom:138.740000pt;}
.y134{bottom:139.292000pt;}
.y3a{bottom:142.308000pt;}
.y1aa{bottom:142.309333pt;}
.y204{bottom:142.408000pt;}
.y260{bottom:146.632000pt;}
.y150{bottom:150.888000pt;}
.yf2{bottom:151.188000pt;}
.ybe{bottom:152.630667pt;}
.y1d0{bottom:154.680000pt;}
.y133{bottom:155.232000pt;}
.y2ba{bottom:155.592000pt;}
.y168{bottom:155.844000pt;}
.y53{bottom:158.248000pt;}
.y39{bottom:158.249333pt;}
.y203{bottom:158.348000pt;}
.y237{bottom:158.612000pt;}
.y25f{bottom:162.572000pt;}
.y89{bottom:168.017333pt;}
.y1cf{bottom:170.620000pt;}
.y2b9{bottom:171.532000pt;}
.y167{bottom:171.784000pt;}
.y2ef{bottom:174.188000pt;}
.y38{bottom:174.189333pt;}
.y202{bottom:174.288000pt;}
.y11a{bottom:174.330667pt;}
.y187{bottom:174.504000pt;}
.y236{bottom:174.552000pt;}
.y321{bottom:175.408000pt;}
.y25e{bottom:178.512000pt;}
.y132{bottom:181.656000pt;}
.y14f{bottom:185.272000pt;}
.ybd{bottom:186.001333pt;}
.y1ce{bottom:186.560000pt;}
.y2b8{bottom:187.472000pt;}
.yf1{bottom:188.004000pt;}
.y166{bottom:188.140000pt;}
.y37{bottom:190.129333pt;}
.y201{bottom:190.228000pt;}
.y119{bottom:190.270667pt;}
.y186{bottom:190.444000pt;}
.y235{bottom:190.492000pt;}
.y2ee{bottom:190.776000pt;}
.y320{bottom:191.348000pt;}
.y131{bottom:197.597333pt;}
.y25d{bottom:198.098667pt;}
.y88{bottom:199.809333pt;}
.y1a9{bottom:200.353333pt;}
.y14e{bottom:201.212000pt;}
.ybc{bottom:201.941333pt;}
.y1cd{bottom:202.500000pt;}
.y2b7{bottom:203.413333pt;}
.yf0{bottom:203.945333pt;}
.y165{bottom:204.080000pt;}
.y52{bottom:206.069333pt;}
.y200{bottom:206.168000pt;}
.y185{bottom:206.384000pt;}
.y234{bottom:206.432000pt;}
.y2ed{bottom:206.716000pt;}
.y31f{bottom:207.288000pt;}
.y36{bottom:208.512000pt;}
.y351{bottom:212.576000pt;}
.y118{bottom:215.053333pt;}
.y87{bottom:215.749333pt;}
.y1a8{bottom:216.293333pt;}
.y14d{bottom:217.153333pt;}
.ybb{bottom:217.882667pt;}
.y1cc{bottom:218.441333pt;}
.y2b6{bottom:219.353333pt;}
.yef{bottom:219.885333pt;}
.y164{bottom:220.020000pt;}
.y51{bottom:222.009333pt;}
.y1ff{bottom:222.108000pt;}
.y184{bottom:222.324000pt;}
.y2ec{bottom:222.656000pt;}
.y233{bottom:222.736000pt;}
.y31e{bottom:223.228000pt;}
.y130{bottom:224.021333pt;}
.y35{bottom:224.452000pt;}
.y350{bottom:228.516000pt;}
.y86{bottom:231.689333pt;}
.y1a7{bottom:232.234667pt;}
.y25c{bottom:232.838667pt;}
.y14c{bottom:233.093333pt;}
.yba{bottom:233.822667pt;}
.y2b5{bottom:235.293333pt;}
.y1cb{bottom:235.536000pt;}
.yee{bottom:235.825333pt;}
.y163{bottom:235.960000pt;}
.y50{bottom:237.949333pt;}
.y183{bottom:238.264000pt;}
.y2eb{bottom:238.596000pt;}
.y232{bottom:238.676000pt;}
.y12f{bottom:239.961333pt;}
.y31d{bottom:240.386667pt;}
.y34{bottom:240.392000pt;}
.y34f{bottom:244.456000pt;}
.y1fe{bottom:246.812000pt;}
.y28c{bottom:246.866667pt;}
.y85{bottom:247.630667pt;}
.y25b{bottom:248.780000pt;}
.yb9{bottom:249.762667pt;}
.y1ca{bottom:251.476000pt;}
.yed{bottom:251.765333pt;}
.y162{bottom:251.901333pt;}
.y4f{bottom:253.890667pt;}
.y182{bottom:254.205333pt;}
.y117{bottom:254.418667pt;}
.y2ea{bottom:254.536000pt;}
.y231{bottom:254.616000pt;}
.y12e{bottom:255.901333pt;}
.y31c{bottom:256.328000pt;}
.y33{bottom:256.332000pt;}
.y14b{bottom:257.612000pt;}
.y1a6{bottom:258.398667pt;}
.y2b4{bottom:259.812000pt;}
.y34e{bottom:260.396000pt;}
.y84{bottom:263.570667pt;}
.y25a{bottom:264.720000pt;}
.yb8{bottom:265.702667pt;}
.y1c9{bottom:267.416000pt;}
.yec{bottom:267.705333pt;}
.y161{bottom:267.841333pt;}
.y4e{bottom:269.830667pt;}
.y181{bottom:270.145333pt;}
.y116{bottom:270.358667pt;}
.y2e9{bottom:270.477333pt;}
.y230{bottom:270.556000pt;}
.y12d{bottom:271.841333pt;}
.y31b{bottom:272.268000pt;}
.y32{bottom:272.272000pt;}
.y1a5{bottom:274.338667pt;}
.y34d{bottom:277.074667pt;}
.y83{bottom:279.510667pt;}
.y259{bottom:280.660000pt;}
.yb7{bottom:281.642667pt;}
.y1fd{bottom:281.865333pt;}
.y28b{bottom:282.360000pt;}
.y1c8{bottom:283.357333pt;}
.yeb{bottom:283.645333pt;}
.y160{bottom:283.781333pt;}
.y4d{bottom:285.770667pt;}
.y180{bottom:286.085333pt;}
.y115{bottom:286.298667pt;}
.y22f{bottom:286.860000pt;}
.y2e8{bottom:287.064000pt;}
.y12c{bottom:287.781333pt;}
.y31a{bottom:288.208000pt;}
.y31{bottom:288.213333pt;}
.y1a4{bottom:290.278667pt;}
.y34c{bottom:293.014667pt;}
.y14a{bottom:293.426667pt;}
.y82{bottom:295.450667pt;}
.y258{bottom:296.600000pt;}
.yb6{bottom:297.582667pt;}
.y2b3{bottom:297.704000pt;}
.y1fc{bottom:297.805333pt;}
.y28a{bottom:298.300000pt;}
.y1c7{bottom:299.297333pt;}
.yea{bottom:299.586667pt;}
.y15f{bottom:299.721333pt;}
.y4c{bottom:301.710667pt;}
.y17f{bottom:302.025333pt;}
.y114{bottom:302.238667pt;}
.y22e{bottom:302.800000pt;}
.y2e7{bottom:303.004000pt;}
.y30{bottom:304.153333pt;}
.y319{bottom:305.366667pt;}
.y34b{bottom:308.954667pt;}
.y149{bottom:309.366667pt;}
.y81{bottom:311.390667pt;}
.y257{bottom:312.540000pt;}
.yb5{bottom:313.524000pt;}
.y2b2{bottom:313.644000pt;}
.y1fb{bottom:313.745333pt;}
.y12b{bottom:314.205333pt;}
.y289{bottom:314.240000pt;}
.y1c6{bottom:315.237333pt;}
.ye9{bottom:315.526667pt;}
.y15e{bottom:315.661333pt;}
.y1a3{bottom:316.444000pt;}
.y4b{bottom:317.650667pt;}
.y17e{bottom:317.965333pt;}
.y113{bottom:318.180000pt;}
.y22d{bottom:318.740000pt;}
.y2e6{bottom:318.944000pt;}
.y2f{bottom:320.093333pt;}
.y318{bottom:321.306667pt;}
.y34a{bottom:324.896000pt;}
.y148{bottom:325.306667pt;}
.y80{bottom:327.330667pt;}
.y256{bottom:328.480000pt;}
.yb4{bottom:329.464000pt;}
.y2b1{bottom:329.584000pt;}
.y12a{bottom:330.146667pt;}
.y288{bottom:330.180000pt;}
.y1c5{bottom:331.177333pt;}
.ye8{bottom:331.466667pt;}
.y1a2{bottom:332.384000pt;}
.y4a{bottom:333.590667pt;}
.y17d{bottom:333.905333pt;}
.y112{bottom:334.120000pt;}
.y22c{bottom:334.680000pt;}
.y2e5{bottom:334.884000pt;}
.y2e{bottom:336.033333pt;}
.y317{bottom:337.248000pt;}
.y1fa{bottom:340.609333pt;}
.y349{bottom:340.836000pt;}
.y15d{bottom:340.956000pt;}
.y147{bottom:341.248000pt;}
.y7f{bottom:343.272000pt;}
.y255{bottom:344.421333pt;}
.y2b0{bottom:345.524000pt;}
.y287{bottom:346.120000pt;}
.yb3{bottom:346.341333pt;}
.y1c4{bottom:347.117333pt;}
.ye7{bottom:347.406667pt;}
.y1a1{bottom:348.324000pt;}
.y49{bottom:349.532000pt;}
.y17c{bottom:349.846667pt;}
.y111{bottom:350.060000pt;}
.y2e4{bottom:350.824000pt;}
.y22b{bottom:350.984000pt;}
.y2d{bottom:351.973333pt;}
.y316{bottom:353.188000pt;}
.y129{bottom:356.570667pt;}
.y146{bottom:357.188000pt;}
.y348{bottom:357.513333pt;}
.y7e{bottom:359.212000pt;}
.y254{bottom:360.361333pt;}
.y2af{bottom:361.464000pt;}
.y1f9{bottom:362.061333pt;}
.yb2{bottom:362.281333pt;}
.ye6{bottom:363.509333pt;}
.y1a0{bottom:364.264000pt;}
.y48{bottom:365.472000pt;}
.y17b{bottom:365.786667pt;}
.y110{bottom:366.000000pt;}
.y22a{bottom:366.924000pt;}
.y2e3{bottom:367.412000pt;}
.y315{bottom:370.346667pt;}
.y2c{bottom:370.356000pt;}
.y128{bottom:372.510667pt;}
.y145{bottom:373.128000pt;}
.y347{bottom:373.454667pt;}
.y1c3{bottom:373.786667pt;}
.y7d{bottom:375.152000pt;}
.y253{bottom:376.301333pt;}
.y2ae{bottom:377.405333pt;}
.y286{bottom:378.001333pt;}
.yb1{bottom:378.221333pt;}
.y15c{bottom:379.121333pt;}
.ye5{bottom:379.449333pt;}
.y10f{bottom:381.940000pt;}
.y229{bottom:383.228000pt;}
.y2e2{bottom:383.352000pt;}
.y47{bottom:383.480000pt;}
.y1f8{bottom:383.512000pt;}
.y314{bottom:386.286667pt;}
.y2b{bottom:386.296000pt;}
.y144{bottom:389.068000pt;}
.y346{bottom:389.394667pt;}
.y19f{bottom:390.429333pt;}
.y17a{bottom:390.890667pt;}
.y7c{bottom:391.092000pt;}
.y252{bottom:392.241333pt;}
.y2ad{bottom:393.345333pt;}
.y285{bottom:393.941333pt;}
.yb0{bottom:394.161333pt;}
.y15b{bottom:395.061333pt;}
.ye4{bottom:395.389333pt;}
.y10e{bottom:397.880000pt;}
.y127{bottom:398.934667pt;}
.y228{bottom:399.168000pt;}
.y2e1{bottom:399.292000pt;}
.y46{bottom:399.420000pt;}
.y1f7{bottom:399.453333pt;}
.y313{bottom:402.226667pt;}
.y2a{bottom:402.236000pt;}
.y345{bottom:405.334667pt;}
.y7b{bottom:407.032000pt;}
.y2ac{bottom:409.285333pt;}
.y284{bottom:409.881333pt;}
.yaf{bottom:410.101333pt;}
.y15a{bottom:411.001333pt;}
.ye3{bottom:411.329333pt;}
.y143{bottom:413.586667pt;}
.y10d{bottom:413.821333pt;}
.y126{bottom:414.874667pt;}
.y227{bottom:415.108000pt;}
.y2e0{bottom:415.232000pt;}
.y45{bottom:415.360000pt;}
.y1c2{bottom:415.872000pt;}
.y19e{bottom:416.593333pt;}
.y29{bottom:418.177333pt;}
.y312{bottom:419.385333pt;}
.y344{bottom:422.013333pt;}
.y251{bottom:422.214667pt;}
.y7a{bottom:423.612000pt;}
.y2ab{bottom:425.225333pt;}
.y283{bottom:425.821333pt;}
.yae{bottom:426.042667pt;}
.y159{bottom:426.941333pt;}
.ye2{bottom:427.269333pt;}
.y179{bottom:428.517333pt;}
.y10c{bottom:429.761333pt;}
.y125{bottom:430.814667pt;}
.y226{bottom:431.048000pt;}
.y44{bottom:431.300000pt;}
.y1c1{bottom:431.813333pt;}
.y2df{bottom:431.820000pt;}
.y28{bottom:434.117333pt;}
.y1f6{bottom:434.697333pt;}
.y311{bottom:435.326667pt;}
.y343{bottom:437.953333pt;}
.y250{bottom:438.154667pt;}
.y79{bottom:439.552000pt;}
.y2aa{bottom:441.165333pt;}
.y282{bottom:441.761333pt;}
.yad{bottom:441.982667pt;}
.ye1{bottom:443.209333pt;}
.y178{bottom:444.457333pt;}
.y19d{bottom:444.810667pt;}
.y10b{bottom:445.701333pt;}
.y225{bottom:446.988000pt;}
.y43{bottom:447.241333pt;}
.y1c0{bottom:447.753333pt;}
.y2de{bottom:447.760000pt;}
.y142{bottom:449.401333pt;}
.y27{bottom:450.057333pt;}
.y1f5{bottom:450.638667pt;}
.y310{bottom:451.266667pt;}
.y158{bottom:452.234667pt;}
.y342{bottom:453.893333pt;}
.y78{bottom:455.492000pt;}
.y2a9{bottom:457.105333pt;}
.y124{bottom:457.578667pt;}
.y281{bottom:457.702667pt;}
.yac{bottom:457.922667pt;}
.ye0{bottom:459.150667pt;}
.y177{bottom:460.397333pt;}
.y19c{bottom:460.750667pt;}
.y24f{bottom:461.678667pt;}
.y224{bottom:462.929333pt;}
.y42{bottom:463.181333pt;}
.y1bf{bottom:463.693333pt;}
.y2dd{bottom:463.700000pt;}
.y141{bottom:465.342667pt;}
.y26{bottom:465.997333pt;}
.y1f4{bottom:466.677333pt;}
.y30f{bottom:467.206667pt;}
.y341{bottom:469.833333pt;}
.y10a{bottom:470.484000pt;}
.y77{bottom:471.433333pt;}
.y2a8{bottom:473.046667pt;}
.y123{bottom:473.518667pt;}
.y280{bottom:473.642667pt;}
.yab{bottom:473.862667pt;}
.ydf{bottom:475.252000pt;}
.y176{bottom:476.337333pt;}
.y19b{bottom:476.690667pt;}
.y24e{bottom:477.618667pt;}
.y223{bottom:478.869333pt;}
.y41{bottom:479.121333pt;}
.y1be{bottom:479.633333pt;}
.y2dc{bottom:479.640000pt;}
.y140{bottom:481.282667pt;}
.y25{bottom:481.937333pt;}
.y1f3{bottom:482.617333pt;}
.y30e{bottom:483.146667pt;}
.y340{bottom:485.773333pt;}
.y76{bottom:487.373333pt;}
.y157{bottom:488.970667pt;}
.y2a7{bottom:488.986667pt;}
.y27f{bottom:489.582667pt;}
.yaa{bottom:489.802667pt;}
.yde{bottom:491.192000pt;}
.y122{bottom:492.044000pt;}
.y175{bottom:492.278667pt;}
.y222{bottom:494.809333pt;}
.y40{bottom:495.061333pt;}
.y1bd{bottom:495.573333pt;}
.y2db{bottom:495.580000pt;}
.y13f{bottom:497.222667pt;}
.y24{bottom:497.877333pt;}
.y1f2{bottom:498.657333pt;}
.y30d{bottom:499.086667pt;}
.y24d{bottom:500.032000pt;}
.y33f{bottom:501.713333pt;}
.y75{bottom:503.313333pt;}
.y19a{bottom:504.908000pt;}
.y156{bottom:504.910667pt;}
.y2a6{bottom:504.926667pt;}
.y27e{bottom:505.522667pt;}
.ya9{bottom:505.742667pt;}
.ydd{bottom:507.132000pt;}
.y109{bottom:507.193333pt;}
.y121{bottom:507.984000pt;}
.y174{bottom:508.218667pt;}
.y221{bottom:510.749333pt;}
.y3f{bottom:511.001333pt;}
.y1bc{bottom:511.513333pt;}
.y2da{bottom:511.520000pt;}
.y13e{bottom:513.162667pt;}
.y1f1{bottom:514.597333pt;}
.y30c{bottom:516.245333pt;}
.y33e{bottom:517.654667pt;}
.y74{bottom:519.253333pt;}
.y199{bottom:520.849333pt;}
.y155{bottom:520.850667pt;}
.y2a5{bottom:520.866667pt;}
.y27d{bottom:521.462667pt;}
.ya8{bottom:521.684000pt;}
.ydc{bottom:523.073333pt;}
.y108{bottom:523.133333pt;}
.y120{bottom:523.925333pt;}
.y220{bottom:526.689333pt;}
.y3e{bottom:526.941333pt;}
.y23{bottom:526.942667pt;}
.y2d9{bottom:528.108000pt;}
.y13d{bottom:529.102667pt;}
.y24c{bottom:530.005333pt;}
.y1f0{bottom:530.537333pt;}
.y30b{bottom:532.186667pt;}
.y33d{bottom:534.332000pt;}
.y73{bottom:535.833333pt;}
.y154{bottom:536.792000pt;}
.y2a4{bottom:536.806667pt;}
.y27c{bottom:537.402667pt;}
.ya7{bottom:537.624000pt;}
.y1bb{bottom:538.182667pt;}
.y173{bottom:538.700000pt;}
.ydb{bottom:539.013333pt;}
.y107{bottom:539.073333pt;}
.y11f{bottom:539.865333pt;}
.y2d8{bottom:544.048000pt;}
.y13c{bottom:545.042667pt;}
.y24b{bottom:545.945333pt;}
.y1ef{bottom:546.477333pt;}
.y198{bottom:547.013333pt;}
.y30a{bottom:548.126667pt;}
.y33c{bottom:550.272000pt;}
.y72{bottom:551.773333pt;}
.y21f{bottom:551.885333pt;}
.y153{bottom:552.732000pt;}
.y2a3{bottom:552.748000pt;}
.y27b{bottom:553.344000pt;}
.ya6{bottom:553.564000pt;}
.y1ba{bottom:554.122667pt;}
.y172{bottom:554.640000pt;}
.yda{bottom:554.953333pt;}
.y106{bottom:555.013333pt;}
.y11e{bottom:555.805333pt;}
.y2d7{bottom:559.988000pt;}
.y13b{bottom:560.984000pt;}
.y1ee{bottom:562.517333pt;}
.y197{bottom:562.953333pt;}
.y309{bottom:564.066667pt;}
.y33b{bottom:566.213333pt;}
.y71{bottom:567.713333pt;}
.y2a2{bottom:568.688000pt;}
.y27a{bottom:569.284000pt;}
.y24a{bottom:569.469333pt;}
.ya5{bottom:569.504000pt;}
.yd9{bottom:570.893333pt;}
.y105{bottom:570.953333pt;}
.y11d{bottom:571.745333pt;}
.y2d6{bottom:575.928000pt;}
.y171{bottom:576.522667pt;}
.y13a{bottom:576.924000pt;}
.y1ed{bottom:578.457333pt;}
.y1b9{bottom:580.792000pt;}
.y308{bottom:581.225333pt;}
.y33a{bottom:582.153333pt;}
.y70{bottom:583.653333pt;}
.y2a1{bottom:584.628000pt;}
.y279{bottom:585.224000pt;}
.y249{bottom:585.409333pt;}
.ya4{bottom:585.444000pt;}
.yd8{bottom:586.833333pt;}
.y104{bottom:586.893333pt;}
.y21e{bottom:588.340000pt;}
.y196{bottom:589.117333pt;}
.y2d5{bottom:591.868000pt;}
.y170{bottom:592.462667pt;}
.y1ec{bottom:594.397333pt;}
.y307{bottom:597.165333pt;}
.y1f{bottom:597.946667pt;}
.y339{bottom:598.830667pt;}
.y6f{bottom:599.594667pt;}
.y278{bottom:601.164000pt;}
.ya3{bottom:601.385333pt;}
.y139{bottom:601.442667pt;}
.y152{bottom:601.928000pt;}
.yd7{bottom:602.774667pt;}
.y103{bottom:602.834667pt;}
.y21d{bottom:604.280000pt;}
.y195{bottom:605.058667pt;}
.y2d4{bottom:608.456000pt;}
.y22{bottom:608.573333pt;}
.y248{bottom:608.933333pt;}
.y2a0{bottom:609.146667pt;}
.y1eb{bottom:610.337333pt;}
.y306{bottom:613.106667pt;}
.y1e{bottom:613.886667pt;}
.y16f{bottom:614.345333pt;}
.y338{bottom:614.772000pt;}
.y6e{bottom:615.534667pt;}
.ya2{bottom:617.325333pt;}
.yd6{bottom:618.714667pt;}
.y102{bottom:618.916000pt;}
.y21{bottom:619.200000pt;}
.y21c{bottom:620.220000pt;}
.y2d3{bottom:624.396000pt;}
.y247{bottom:624.873333pt;}
.y11c{bottom:625.280000pt;}
.y1b8{bottom:625.534667pt;}
.y138{bottom:625.961333pt;}
.y277{bottom:626.021333pt;}
.y1ea{bottom:626.277333pt;}
.y305{bottom:629.046667pt;}
.y20{bottom:629.826667pt;}
.y16e{bottom:630.286667pt;}
.y337{bottom:630.712000pt;}
.y194{bottom:631.222667pt;}
.y6d{bottom:631.474667pt;}
.ya1{bottom:634.202667pt;}
.yd5{bottom:634.654667pt;}
.y101{bottom:634.856000pt;}
.y21b{bottom:636.160000pt;}
.y2d2{bottom:640.336000pt;}
.y1b7{bottom:641.474667pt;}
.y1e9{bottom:642.217333pt;}
.y137{bottom:644.558667pt;}
.y304{bottom:644.986667pt;}
.y1d{bottom:645.766667pt;}
.y336{bottom:646.652000pt;}
.y29f{bottom:647.038667pt;}
.y246{bottom:647.286667pt;}
.y6c{bottom:647.414667pt;}
.ya0{bottom:650.142667pt;}
.yd4{bottom:650.594667pt;}
.y100{bottom:650.796000pt;}
.y16d{bottom:652.169333pt;}
.y21a{bottom:652.464000pt;}
.y2d1{bottom:656.922667pt;}
.y193{bottom:657.386667pt;}
.y1b6{bottom:657.414667pt;}
.y1e8{bottom:658.158667pt;}
.y276{bottom:661.514667pt;}
.y1c{bottom:661.706667pt;}
.y303{bottom:662.145333pt;}
.y335{bottom:662.592000pt;}
.y29e{bottom:662.978667pt;}
.y245{bottom:663.228000pt;}
.y6b{bottom:663.354667pt;}
.y9f{bottom:666.082667pt;}
.yd3{bottom:666.697333pt;}
.yff{bottom:666.737333pt;}
.y16c{bottom:668.109333pt;}
.y219{bottom:668.404000pt;}
.y2d0{bottom:672.862667pt;}
.y192{bottom:673.328000pt;}
.y1b5{bottom:673.354667pt;}
.y1e7{bottom:674.098667pt;}
.y275{bottom:677.454667pt;}
.y1b{bottom:677.646667pt;}
.y302{bottom:678.085333pt;}
.y29d{bottom:678.918667pt;}
.y244{bottom:679.168000pt;}
.y334{bottom:679.270667pt;}
.y6a{bottom:679.294667pt;}
.y9e{bottom:682.022667pt;}
.yd2{bottom:682.637333pt;}
.yfe{bottom:682.677333pt;}
.y16b{bottom:684.049333pt;}
.y218{bottom:684.344000pt;}
.y2cf{bottom:688.804000pt;}
.y1b4{bottom:689.294667pt;}
.y1e6{bottom:690.038667pt;}
.y274{bottom:693.394667pt;}
.y1a{bottom:693.588000pt;}
.y301{bottom:694.025333pt;}
.y29c{bottom:694.858667pt;}
.y243{bottom:695.108000pt;}
.y333{bottom:695.210667pt;}
.y69{bottom:695.236000pt;}
.y9d{bottom:697.962667pt;}
.yd1{bottom:698.577333pt;}
.yfd{bottom:698.758667pt;}
.y191{bottom:699.492000pt;}
.y217{bottom:700.285333pt;}
.y136{bottom:704.568000pt;}
.y2ce{bottom:704.744000pt;}
.y1b3{bottom:705.236000pt;}
.y1e5{bottom:705.978667pt;}
.y273{bottom:709.334667pt;}
.y19{bottom:709.528000pt;}
.y300{bottom:709.966667pt;}
.y29b{bottom:710.798667pt;}
.y242{bottom:711.048000pt;}
.y332{bottom:711.150667pt;}
.y68{bottom:711.176000pt;}
.y9c{bottom:713.904000pt;}
.yd0{bottom:714.517333pt;}
.yfc{bottom:714.698667pt;}
.y216{bottom:716.588000pt;}
.y2cd{bottom:720.684000pt;}
.y1e4{bottom:721.918667pt;}
.y272{bottom:725.274667pt;}
.y18{bottom:725.468000pt;}
.y2ff{bottom:725.906667pt;}
.y29a{bottom:726.740000pt;}
.y331{bottom:727.090667pt;}
.y151{bottom:727.206667pt;}
.y190{bottom:727.709333pt;}
.y9b{bottom:729.844000pt;}
.ycf{bottom:730.457333pt;}
.yfb{bottom:730.638667pt;}
.y215{bottom:732.528000pt;}
.y67{bottom:736.885333pt;}
.y2cc{bottom:737.270667pt;}
.y1e3{bottom:737.958667pt;}
.y241{bottom:741.021333pt;}
.y271{bottom:741.214667pt;}
.y17{bottom:741.408000pt;}
.y299{bottom:742.680000pt;}
.y2fe{bottom:743.065333pt;}
.y18f{bottom:743.649333pt;}
.y330{bottom:743.769333pt;}
.y16a{bottom:744.380000pt;}
.y9a{bottom:745.784000pt;}
.yce{bottom:746.397333pt;}
.yfa{bottom:746.580000pt;}
.y214{bottom:748.469333pt;}
.y2cb{bottom:753.210667pt;}
.y1e2{bottom:753.898667pt;}
.y1b2{bottom:755.440000pt;}
.y240{bottom:756.961333pt;}
.y270{bottom:757.156000pt;}
.y16{bottom:757.348000pt;}
.y298{bottom:758.620000pt;}
.y2fd{bottom:759.005333pt;}
.y18e{bottom:759.589333pt;}
.y32f{bottom:759.709333pt;}
.y99{bottom:761.724000pt;}
.ycd{bottom:762.338667pt;}
.yf9{bottom:762.520000pt;}
.y66{bottom:762.594667pt;}
.y213{bottom:764.409333pt;}
.y2ca{bottom:769.150667pt;}
.y1e1{bottom:769.838667pt;}
.y1b1{bottom:771.912000pt;}
.y23f{bottom:772.901333pt;}
.y15{bottom:773.288000pt;}
.y297{bottom:774.560000pt;}
.y2fc{bottom:774.945333pt;}
.y18d{bottom:775.529333pt;}
.y32e{bottom:776.388000pt;}
.y98{bottom:777.664000pt;}
.ycc{bottom:778.278667pt;}
.yf8{bottom:778.460000pt;}
.y212{bottom:780.349333pt;}
.y26f{bottom:782.013333pt;}
.y2c9{bottom:785.738667pt;}
.y1e0{bottom:785.778667pt;}
.y1b0{bottom:788.382667pt;}
.y23e{bottom:788.841333pt;}
.y14{bottom:789.229333pt;}
.y296{bottom:790.500000pt;}
.y2fb{bottom:790.886667pt;}
.y18c{bottom:791.470667pt;}
.y32d{bottom:792.328000pt;}
.y65{bottom:793.262667pt;}
.y97{bottom:793.604000pt;}
.ycb{bottom:794.218667pt;}
.yf7{bottom:794.400000pt;}
.y211{bottom:796.289333pt;}
.y2c8{bottom:801.678667pt;}
.y1df{bottom:801.718667pt;}
.y1af{bottom:804.854667pt;}
.y13{bottom:805.169333pt;}
.y2fa{bottom:806.826667pt;}
.y295{bottom:807.134667pt;}
.y18b{bottom:807.410667pt;}
.y32c{bottom:808.268000pt;}
.y64{bottom:809.202667pt;}
.y96{bottom:809.545333pt;}
.yca{bottom:810.158667pt;}
.yf6{bottom:810.340000pt;}
.y210{bottom:812.229333pt;}
.y23d{bottom:812.365333pt;}
.y26e{bottom:817.505333pt;}
.y2c7{bottom:817.618667pt;}
.y1de{bottom:817.660000pt;}
.y12{bottom:821.109333pt;}
.y1ae{bottom:821.326667pt;}
.y294{bottom:823.074667pt;}
.y18a{bottom:823.350667pt;}
.y2f9{bottom:823.985333pt;}
.y32b{bottom:824.208000pt;}
.y63{bottom:825.144000pt;}
.y95{bottom:825.485333pt;}
.yc9{bottom:826.098667pt;}
.yf5{bottom:826.280000pt;}
.y20f{bottom:828.169333pt;}
.y23c{bottom:828.305333pt;}
.y26d{bottom:833.445333pt;}
.y2c6{bottom:833.558667pt;}
.y1dd{bottom:833.600000pt;}
.y11{bottom:837.049333pt;}
.y1ad{bottom:837.797333pt;}
.y189{bottom:839.290667pt;}
.y293{bottom:839.709333pt;}
.y2f8{bottom:839.925333pt;}
.y32a{bottom:840.148000pt;}
.y62{bottom:841.084000pt;}
.y94{bottom:841.425333pt;}
.yc8{bottom:842.038667pt;}
.yf4{bottom:842.221333pt;}
.y20e{bottom:844.110667pt;}
.y23b{bottom:844.245333pt;}
.y26c{bottom:849.385333pt;}
.y1dc{bottom:849.540000pt;}
.y2c5{bottom:850.146667pt;}
.y10{bottom:852.989333pt;}
.y1ac{bottom:854.269333pt;}
.y292{bottom:855.649333pt;}
.y2f7{bottom:855.865333pt;}
.y329{bottom:856.826667pt;}
.y61{bottom:857.024000pt;}
.yc7{bottom:858.141333pt;}
.y93{bottom:858.302667pt;}
.y20d{bottom:860.050667pt;}
.y26b{bottom:865.326667pt;}
.y1db{bottom:865.480000pt;}
.y2c4{bottom:866.086667pt;}
.y23a{bottom:867.769333pt;}
.yf{bottom:868.929333pt;}
.y1ab{bottom:871.272000pt;}
.y291{bottom:871.590667pt;}
.y2f6{bottom:871.805333pt;}
.y328{bottom:872.766667pt;}
.y60{bottom:872.964000pt;}
.yc6{bottom:874.081333pt;}
.y92{bottom:874.242667pt;}
.y11b{bottom:875.216000pt;}
.y20c{bottom:875.990667pt;}
.y26a{bottom:881.266667pt;}
.y1da{bottom:881.420000pt;}
.y2c3{bottom:882.026667pt;}
.y239{bottom:883.710667pt;}
.ye{bottom:884.870667pt;}
.y188{bottom:886.849333pt;}
.y290{bottom:887.530667pt;}
.y2f5{bottom:887.746667pt;}
.y327{bottom:888.706667pt;}
.y5f{bottom:888.904000pt;}
.yc5{bottom:890.021333pt;}
.y91{bottom:890.182667pt;}
.y20b{bottom:891.930667pt;}
.y269{bottom:897.206667pt;}
.y1d9{bottom:897.360000pt;}
.y2c2{bottom:897.966667pt;}
.y238{bottom:899.650667pt;}
.yd{bottom:900.810667pt;}
.y28f{bottom:903.180000pt;}
.y2f4{bottom:904.905333pt;}
.y326{bottom:905.385333pt;}
.y5e{bottom:905.484000pt;}
.yc4{bottom:905.961333pt;}
.y90{bottom:906.122667pt;}
.yf3{bottom:906.124000pt;}
.y268{bottom:913.146667pt;}
.y1d8{bottom:913.301333pt;}
.y2c1{bottom:914.553333pt;}
.yc{bottom:916.750667pt;}
.y20a{bottom:917.125333pt;}
.y28e{bottom:919.120000pt;}
.y2f3{bottom:920.845333pt;}
.y325{bottom:921.325333pt;}
.y5d{bottom:921.424000pt;}
.yc3{bottom:921.902667pt;}
.y8f{bottom:922.064000pt;}
.y267{bottom:929.086667pt;}
.y1d7{bottom:929.241333pt;}
.y2c0{bottom:930.493333pt;}
.y2f2{bottom:936.785333pt;}
.y324{bottom:937.265333pt;}
.y5c{bottom:937.365333pt;}
.yc2{bottom:937.842667pt;}
.y8e{bottom:938.004000pt;}
.y28d{bottom:943.638667pt;}
.y266{bottom:945.026667pt;}
.y1d6{bottom:945.181333pt;}
.ya{bottom:945.310667pt;}
.y2bf{bottom:946.434667pt;}
.yb{bottom:949.060000pt;}
.y2f1{bottom:952.725333pt;}
.y323{bottom:953.206667pt;}
.y5b{bottom:953.305333pt;}
.y209{bottom:953.581333pt;}
.yc1{bottom:953.782667pt;}
.y8d{bottom:953.944000pt;}
.y265{bottom:960.968000pt;}
.y1d5{bottom:961.121333pt;}
.y9{bottom:961.914667pt;}
.y2be{bottom:962.374667pt;}
.y2f0{bottom:968.665333pt;}
.y322{bottom:969.146667pt;}
.y5a{bottom:969.245333pt;}
.y208{bottom:969.521333pt;}
.y8c{bottom:969.884000pt;}
.y264{bottom:976.908000pt;}
.y1d4{bottom:977.061333pt;}
.y2bd{bottom:978.961333pt;}
.y8{bottom:980.512000pt;}
.y59{bottom:985.185333pt;}
.y207{bottom:985.461333pt;}
.y8b{bottom:985.824000pt;}
.yc0{bottom:985.825333pt;}
.y263{bottom:992.848000pt;}
.y1d3{bottom:993.001333pt;}
.y2bc{bottom:994.901333pt;}
.y6{bottom:999.108000pt;}
.y58{bottom:1001.125333pt;}
.y206{bottom:1001.401333pt;}
.y8a{bottom:1001.765333pt;}
.y7{bottom:1004.893333pt;}
.y262{bottom:1008.788000pt;}
.y2bb{bottom:1010.841333pt;}
.y57{bottom:1017.705333pt;}
.y5{bottom:1033.645333pt;}
.ybf{bottom:1036.345278pt;}
.y4{bottom:1036.447325pt;}
.y3{bottom:1048.695785pt;}
.he{height:11.733399pt;}
.hd{height:26.631381pt;}
.h9{height:29.924693pt;}
.ha{height:30.288533pt;}
.h12{height:30.549524pt;}
.h4{height:32.000200pt;}
.h8{height:35.864000pt;}
.h11{height:38.037520pt;}
.hb{height:38.045376pt;}
.h3{height:39.843636pt;}
.hc{height:39.852000pt;}
.h7{height:40.381333pt;}
.h13{height:42.472043pt;}
.h14{height:42.477376pt;}
.hf{height:44.354167pt;}
.h6{height:45.652160pt;}
.h5{height:54.017472pt;}
.h2{height:1062.715892pt;}
.h10{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:17.797333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.876529pt;}
.x12{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x15{left:85.184000pt;}
.xd{left:88.874667pt;}
.x23{left:90.345333pt;}
.x16{left:102.157333pt;}
.x21{left:108.873333pt;}
.x2{left:111.874558pt;}
.x14{left:114.676000pt;}
.x13{left:124.214667pt;}
.x28{left:134.218667pt;}
.x22{left:145.837333pt;}
.x1a{left:146.962667pt;}
.x5{left:154.132000pt;}
.x7{left:163.166667pt;}
.x6{left:165.422667pt;}
.x1d{left:166.702667pt;}
.x8{left:171.801333pt;}
.x19{left:176.241333pt;}
.x11{left:185.090357pt;}
.x24{left:311.202667pt;}
.xe{left:403.492000pt;}
.x25{left:410.133333pt;}
.x1c{left:413.085333pt;}
.xf{left:416.776000pt;}
.x18{left:429.793333pt;}
.x26{left:430.797333pt;}
.x20{left:436.774667pt;}
.x2a{left:438.914667pt;}
.x17{left:447.337333pt;}
.x27{left:464.796000pt;}
.x1b{left:475.233333pt;}
.x1e{left:486.985333pt;}
.x1f{left:504.678667pt;}
.x29{left:558.809333pt;}
.xc{left:590.378667pt;}
.xa{left:591.600000pt;}
.x9{left:593.078667pt;}
.xb{left:603.881333pt;}
.x10{left:703.903971pt;}
}




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