
    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_dab72ae4e73b837610f05af9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e6043cef0a3a83d77c0d0cd8.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_63942ff9e7faaa07c4f2cd7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b98c3505af1525785cc86ead.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eef559d01cc7ae05f96bad41.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a03b8422a58aeac764e47fd.woff2')format("woff");}.ffb{font-family:ffb;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c0dfe02c8590647cbb5737e4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1eca101ff12d17a744408d3a.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_8ab0c35498a0f14995ec263e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b900d33f04d66d4f5254b40d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_22a81c89a8afb1b09203835b.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_37ac54133a79f9b89b83c984.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_85771074fe4cb4013279d45c.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_81a928ebc84e39e692037e5b.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_9cd556b87593ac31d230d6e3.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_eaae05e266bf1c5e98b81774.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_85511e8d84074ba76bc281b8.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_f403d8a026ffee3b35726487.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_e80ccc56a6999cbac099e5f0.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_e59e32d49c0578b2950dce54.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.687000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_9cd556b87593ac31d230d6e3.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_eaae05e266bf1c5e98b81774.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_e88cd9795173c89af84817e2.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_4c373c1d07625ad36dfbeb1c.woff2')format("woff");}.ff32{font-family:ff32;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;}
.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);}
.v3{vertical-align:-26.685792px;}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.980000px;}
.v5{vertical-align:15.114000px;}
.v1{vertical-align:26.034000px;}
.ls8{letter-spacing:-0.338030px;}
.ls6{letter-spacing:-0.089291px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.038268px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.lsa{letter-spacing:0.666515px;}
.ls2{letter-spacing:0.666549px;}
.ls3{letter-spacing:0.693531px;}
.lsb{letter-spacing:0.693564px;}
.ls4{letter-spacing:2.985234px;}
.ls5{letter-spacing:2.987332px;}
.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;}
}
.ws1{word-spacing:-40.428498px;}
.ws0{word-spacing:-40.224404px;}
.ws1a7{word-spacing:-19.093093px;}
.ws1aa{word-spacing:-16.606328px;}
.ws2{word-spacing:-16.307167px;}
.ws1c{word-spacing:-14.280964px;}
.ws132{word-spacing:-11.948253px;}
.ws17c{word-spacing:-3.325231px;}
.ws17d{word-spacing:-3.275834px;}
.wsfd{word-spacing:-3.156278px;}
.ws77{word-spacing:-3.096740px;}
.ws9a{word-spacing:-3.096500px;}
.ws37{word-spacing:-3.096142px;}
.wsdf{word-spacing:-3.036722px;}
.ws12e{word-spacing:-2.857329px;}
.ws80{word-spacing:-2.737952px;}
.ws14b{word-spacing:-2.678533px;}
.wsa9{word-spacing:-2.558498px;}
.wsb8{word-spacing:-2.498720px;}
.wsf6{word-spacing:-2.379105px;}
.wsb3{word-spacing:-2.259728px;}
.wsb2{word-spacing:-2.259608px;}
.ws97{word-spacing:-2.140052px;}
.ws14e{word-spacing:-2.080274px;}
.wsb7{word-spacing:-1.900940px;}
.ws7f{word-spacing:-1.781564px;}
.ws7e{word-spacing:-1.781444px;}
.ws14f{word-spacing:-1.661828px;}
.ws99{word-spacing:-1.602110px;}
.ws8a{word-spacing:-1.542153px;}
.wsa3{word-spacing:-1.482734px;}
.wsd5{word-spacing:-1.422716px;}
.ws113{word-spacing:-1.362699px;}
.ws157{word-spacing:-1.303340px;}
.ws86{word-spacing:-1.303160px;}
.wse4{word-spacing:-1.243382px;}
.wsbb{word-spacing:-1.183306px;}
.ws60{word-spacing:-1.167161px;}
.ws173{word-spacing:-1.123886px;}
.ws152{word-spacing:-1.063929px;}
.ws5b{word-spacing:-1.020469px;}
.ws5f{word-spacing:-1.001335px;}
.ws155{word-spacing:-0.944492px;}
.ws182{word-spacing:-0.869699px;}
.wse6{word-spacing:-0.825116px;}
.ws1c0{word-spacing:-0.800786px;}
.ws1c1{word-spacing:-0.765158px;}
.ws104{word-spacing:-0.705679px;}
.ws164{word-spacing:-0.681469px;}
.ws89{word-spacing:-0.645602px;}
.ws59{word-spacing:-0.612281px;}
.ws5c{word-spacing:-0.503856px;}
.ws26{word-spacing:-0.466268px;}
.ws61{word-spacing:-0.465589px;}
.wsd0{word-spacing:-0.346952px;}
.wsf0{word-spacing:-0.286934px;}
.wscb{word-spacing:-0.286875px;}
.ws1bf{word-spacing:-0.227515px;}
.ws156{word-spacing:-0.226917px;}
.wsa0{word-spacing:-0.167498px;}
.ws9f{word-spacing:-0.167378px;}
.ws168{word-spacing:-0.059778px;}
.ws58{word-spacing:0.000000px;}
.wsc3{word-spacing:0.011896px;}
.ws5e{word-spacing:0.044646px;}
.wsf3{word-spacing:0.071853px;}
.ws1af{word-spacing:0.131512px;}
.ws34{word-spacing:0.191290px;}
.ws128{word-spacing:0.251247px;}
.ws5a{word-spacing:0.293385px;}
.wsa5{word-spacing:0.310666px;}
.wsa7{word-spacing:0.310846px;}
.ws17a{word-spacing:0.430402px;}
.wsab{word-spacing:0.490060px;}
.ws9c{word-spacing:0.550137px;}
.wsdc{word-spacing:0.609736px;}
.wsb5{word-spacing:0.669454px;}
.ws5d{word-spacing:0.714328px;}
.wsd7{word-spacing:0.728873px;}
.ws153{word-spacing:0.729292px;}
.ws76{word-spacing:0.788890px;}
.ws129{word-spacing:0.848848px;}
.wsd3{word-spacing:1.147678px;}
.ws166{word-spacing:1.207575px;}
.ws12b{word-spacing:1.207814px;}
.ws120{word-spacing:1.267054px;}
.wscf{word-spacing:1.327072px;}
.ws6c{word-spacing:1.386491px;}
.ws90{word-spacing:1.446448px;}
.wsc8{word-spacing:1.446628px;}
.wsc2{word-spacing:1.506465px;}
.wsc0{word-spacing:1.565885px;}
.ws9b{word-spacing:1.625902px;}
.ws48{word-spacing:1.685261px;}
.ws10d{word-spacing:1.685740px;}
.ws165{word-spacing:1.709711px;}
.wsba{word-spacing:1.805296px;}
.ws27{word-spacing:1.864655px;}
.wsb4{word-spacing:1.865074px;}
.wsf5{word-spacing:1.865253px;}
.ws82{word-spacing:1.924672px;}
.wsca{word-spacing:1.924852px;}
.ws126{word-spacing:1.984689px;}
.ws130{word-spacing:2.044049px;}
.ws74{word-spacing:2.164083px;}
.wsac{word-spacing:2.223502px;}
.wsd4{word-spacing:2.223742px;}
.ws1ae{word-spacing:2.242328px;}
.ws18c{word-spacing:2.283639px;}
.ws143{word-spacing:2.343058px;}
.ws95{word-spacing:2.343298px;}
.ws139{word-spacing:2.374253px;}
.ws7d{word-spacing:2.402896px;}
.ws117{word-spacing:2.447984px;}
.ws11a{word-spacing:2.454655px;}
.ws119{word-spacing:2.455100px;}
.ws189{word-spacing:2.522632px;}
.ws107{word-spacing:2.523050px;}
.ws84{word-spacing:2.582290px;}
.ws98{word-spacing:2.582410px;}
.wsfc{word-spacing:2.641650px;}
.wsf9{word-spacing:2.642247px;}
.wsd6{word-spacing:2.701667px;}
.wsa4{word-spacing:2.761684px;}
.ws10e{word-spacing:2.761744px;}
.wscc{word-spacing:2.821522px;}
.wscd{word-spacing:2.821701px;}
.ws35{word-spacing:2.941078px;}
.ws7a{word-spacing:3.060634px;}
.wsed{word-spacing:3.120471px;}
.ws11{word-spacing:3.234229px;}
.wsbd{word-spacing:3.299267px;}
.ws85{word-spacing:3.299447px;}
.ws49{word-spacing:3.299746px;}
.ws2b{word-spacing:3.299865px;}
.wse8{word-spacing:3.300044px;}
.ws9d{word-spacing:3.359464px;}
.ws3b{word-spacing:3.359524px;}
.wsbc{word-spacing:3.359882px;}
.ws105{word-spacing:3.419302px;}
.ws154{word-spacing:3.478900px;}
.ws54{word-spacing:3.479259px;}
.wsc6{word-spacing:3.598636px;}
.wsdd{word-spacing:3.598695px;}
.wsce{word-spacing:3.658414px;}
.ws167{word-spacing:3.718192px;}
.ws114{word-spacing:3.837449px;}
.ws36{word-spacing:3.897466px;}
.wsb6{word-spacing:3.897526px;}
.wsec{word-spacing:3.897705px;}
.wsd1{word-spacing:3.956885px;}
.ws123{word-spacing:3.957483px;}
.ws81{word-spacing:4.017082px;}
.ws102{word-spacing:4.196296px;}
.ws47{word-spacing:4.196475px;}
.ws1e{word-spacing:4.205364px;}
.ws180{word-spacing:4.280105px;}
.ws6a{word-spacing:4.315673px;}
.ws75{word-spacing:4.315972px;}
.ws108{word-spacing:4.375929px;}
.ws10c{word-spacing:4.435049px;}
.ws32{word-spacing:4.435528px;}
.ws33{word-spacing:4.435707px;}
.ws23{word-spacing:4.495066px;}
.ws1a8{word-spacing:4.495306px;}
.ws42{word-spacing:4.555084px;}
.ws18f{word-spacing:4.578696px;}
.wsdb{word-spacing:4.614503px;}
.wsef{word-spacing:4.615101px;}
.ws4d{word-spacing:4.674460px;}
.wsd9{word-spacing:4.675058px;}
.ws41{word-spacing:4.733880px;}
.ws29{word-spacing:4.734418px;}
.ws2a{word-spacing:4.734477px;}
.ws150{word-spacing:4.794196px;}
.ws9{word-spacing:4.805910px;}
.ws13{word-spacing:4.847637px;}
.ws144{word-spacing:4.853854px;}
.wsbf{word-spacing:4.913752px;}
.ws51{word-spacing:4.973290px;}
.ws15b{word-spacing:4.973530px;}
.ws15a{word-spacing:5.033248px;}
.ws2c{word-spacing:5.092667px;}
.wse2{word-spacing:5.093265px;}
.ws125{word-spacing:5.152684px;}
.ws4e{word-spacing:5.152864px;}
.ws3c{word-spacing:5.212104px;}
.wsfe{word-spacing:5.272659px;}
.ws127{word-spacing:5.332377px;}
.ws4c{word-spacing:5.391736px;}
.ws145{word-spacing:5.392095px;}
.ws14{word-spacing:5.445836px;}
.ws100{word-spacing:5.570891px;}
.wsb1{word-spacing:5.571310px;}
.ws19{word-spacing:5.625110px;}
.wsa6{word-spacing:5.630848px;}
.ws43{word-spacing:5.690866px;}
.wsf2{word-spacing:5.750883px;}
.ws16a{word-spacing:5.834333px;}
.ws96{word-spacing:5.869662px;}
.ws30{word-spacing:5.929679px;}
.ws2f{word-spacing:5.989756px;}
.wsa1{word-spacing:5.990294px;}
.ws12c{word-spacing:6.049055px;}
.wsde{word-spacing:6.049534px;}
.ws111{word-spacing:6.049653px;}
.ws3d{word-spacing:6.109312px;}
.wsd8{word-spacing:6.169090px;}
.ws40{word-spacing:6.229107px;}
.wse3{word-spacing:6.288466px;}
.ws88{word-spacing:6.288646px;}
.wsc9{word-spacing:6.289064px;}
.ws17e{word-spacing:6.348184px;}
.ws190{word-spacing:6.348483px;}
.ws17{word-spacing:6.402224px;}
.ws2d{word-spacing:6.408202px;}
.ws3f{word-spacing:6.408500px;}
.wsfb{word-spacing:6.467860px;}
.wsf8{word-spacing:6.467980px;}
.ws149{word-spacing:6.527578px;}
.wsd{word-spacing:6.581618px;}
.ws8b{word-spacing:6.587536px;}
.ws124{word-spacing:6.647015px;}
.ws14c{word-spacing:6.647254px;}
.wse5{word-spacing:6.766989px;}
.ws141{word-spacing:6.826707px;}
.ws94{word-spacing:6.886426px;}
.ws8e{word-spacing:6.886665px;}
.wsff{word-spacing:6.945486px;}
.ws3a{word-spacing:6.946204px;}
.ws196{word-spacing:6.985287px;}
.ws87{word-spacing:7.005503px;}
.ws45{word-spacing:7.125478px;}
.ws56{word-spacing:7.125538px;}
.ws15c{word-spacing:7.185495px;}
.ws10{word-spacing:7.239235px;}
.wsee{word-spacing:7.304872px;}
.ws15e{word-spacing:7.329141px;}
.ws70{word-spacing:7.364650px;}
.ws4f{word-spacing:7.424248px;}
.ws31{word-spacing:7.424368px;}
.ws44{word-spacing:7.484206px;}
.ws13f{word-spacing:7.484265px;}
.ws171{word-spacing:7.508356px;}
.ws19a{word-spacing:7.567895px;}
.ws181{word-spacing:7.664018px;}
.wsb9{word-spacing:7.782498px;}
.ws16c{word-spacing:7.783096px;}
.ws187{word-spacing:7.842455px;}
.ws39{word-spacing:7.842874px;}
.ws78{word-spacing:7.843053px;}
.ws195{word-spacing:7.902472px;}
.ws38{word-spacing:7.902652px;}
.ws10a{word-spacing:7.903070px;}
.ws159{word-spacing:7.962430px;}
.wsc4{word-spacing:7.962489px;}
.ws148{word-spacing:8.021849px;}
.ws12a{word-spacing:8.022506px;}
.ws193{word-spacing:8.046119px;}
.ws172{word-spacing:8.081986px;}
.ws146{word-spacing:8.082284px;}
.ws112{word-spacing:8.082464px;}
.ws151{word-spacing:8.141644px;}
.ws10b{word-spacing:8.141883px;}
.wsa2{word-spacing:8.201542px;}
.ws3{word-spacing:8.237473px;}
.ws1b{word-spacing:8.255043px;}
.ws194{word-spacing:8.285231px;}
.wse9{word-spacing:8.321098px;}
.ws12d{word-spacing:8.500432px;}
.ws188{word-spacing:8.560090px;}
.wse0{word-spacing:8.560210px;}
.ws101{word-spacing:8.560508px;}
.wsf1{word-spacing:8.620107px;}
.ws46{word-spacing:8.679766px;}
.ws91{word-spacing:8.739304px;}
.ws19b{word-spacing:8.765358px;}
.wse{word-spacing:8.793224px;}
.wsfa{word-spacing:8.918878px;}
.wsa8{word-spacing:8.978715px;}
.ws13e{word-spacing:9.038434px;}
.ws15{word-spacing:9.092652px;}
.ws121{word-spacing:9.098092px;}
.wsf{word-spacing:9.152072px;}
.ws25{word-spacing:9.158288px;}
.wsa{word-spacing:9.271448px;}
.ws79{word-spacing:9.277665px;}
.ws1c2{word-spacing:9.320831px;}
.ws16b{word-spacing:9.421013px;}
.wsf4{word-spacing:9.456880px;}
.ws186{word-spacing:9.480791px;}
.ws110{word-spacing:9.516658px;}
.ws7c{word-spacing:9.576436px;}
.ws158{word-spacing:9.576495px;}
.wse1{word-spacing:9.635855px;}
.ws1a9{word-spacing:9.660125px;}
.ws14a{word-spacing:9.815548px;}
.ws1a6{word-spacing:9.839459px;}
.ws10f{word-spacing:9.875326px;}
.ws1bb{word-spacing:9.897749px;}
.ws1ad{word-spacing:9.899237px;}
.wsaf{word-spacing:9.934685px;}
.wsf7{word-spacing:9.935104px;}
.ws13d{word-spacing:9.994882px;}
.wsc7{word-spacing:10.054660px;}
.ws122{word-spacing:10.173917px;}
.ws67{word-spacing:10.174216px;}
.ws1a5{word-spacing:10.198306px;}
.ws8f{word-spacing:10.233934px;}
.ws6e{word-spacing:10.294070px;}
.ws13b{word-spacing:10.413328px;}
.ws147{word-spacing:10.413507px;}
.ws106{word-spacing:10.712218px;}
.wsc{word-spacing:10.825796px;}
.wsad{word-spacing:10.891552px;}
.ws50{word-spacing:11.011108px;}
.wseb{word-spacing:11.130962px;}
.ws16{word-spacing:11.244242px;}
.ws8d{word-spacing:11.309818px;}
.ws8c{word-spacing:11.309998px;}
.wsb{word-spacing:11.423456px;}
.ws24{word-spacing:11.429255px;}
.ws28{word-spacing:11.549289px;}
.wsae{word-spacing:11.788222px;}
.ws140{word-spacing:11.907778px;}
.ws1be{word-spacing:11.931689px;}
.ws109{word-spacing:11.967436px;}
.ws83{word-spacing:11.967496px;}
.wsb0{word-spacing:12.146890px;}
.ws16d{word-spacing:12.206668px;}
.ws177{word-spacing:12.386002px;}
.wse7{word-spacing:12.565037px;}
.ws6b{word-spacing:12.565096px;}
.wsea{word-spacing:12.625054px;}
.ws11f{word-spacing:12.625114px;}
.ws1b4{word-spacing:12.684892px;}
.ws93{word-spacing:12.685071px;}
.wsda{word-spacing:12.983901px;}
.ws7b{word-spacing:13.162697px;}
.wsc5{word-spacing:13.222654px;}
.ws18d{word-spacing:13.277015px;}
.ws18{word-spacing:13.277052px;}
.ws15d{word-spacing:13.280015px;}
.ws185{word-spacing:13.306344px;}
.ws14d{word-spacing:13.342689px;}
.ws176{word-spacing:13.485797px;}
.ws1ba{word-spacing:13.701118px;}
.ws62{word-spacing:13.760896px;}
.ws11d{word-spacing:14.239060px;}
.ws1b9{word-spacing:14.382587px;}
.ws1b0{word-spacing:14.597788px;}
.ws1b1{word-spacing:14.597907px;}
.ws131{word-spacing:14.717344px;}
.wsc1{word-spacing:14.956456px;}
.ws4a{word-spacing:15.135790px;}
.ws17f{word-spacing:15.243211px;}
.ws183{word-spacing:15.243390px;}
.ws6f{word-spacing:15.374902px;}
.ws12{word-spacing:15.608036px;}
.ws2e{word-spacing:15.614014px;}
.ws1b3{word-spacing:15.757481px;}
.ws92{word-spacing:15.853126px;}
.ws69{word-spacing:15.853185px;}
.ws3e{word-spacing:16.091998px;}
.ws66{word-spacing:16.570462px;}
.ws174{word-spacing:17.216004px;}
.ws63{word-spacing:17.228259px;}
.ws71{word-spacing:17.287678px;}
.ws1c5{word-spacing:17.335620px;}
.ws73{word-spacing:17.706244px;}
.ws142{word-spacing:18.244066px;}
.ws1b5{word-spacing:18.244246px;}
.ws8{word-spacing:18.344382px;}
.ws6{word-spacing:18.398286px;}
.ws7{word-spacing:18.398393px;}
.ws179{word-spacing:18.650736px;}
.ws12f{word-spacing:19.379908px;}
.ws1b8{word-spacing:19.523495px;}
.ws18b{word-spacing:20.085408px;}
.ws4b{word-spacing:20.276578px;}
.ws64{word-spacing:20.336476px;}
.ws20{word-spacing:20.405298px;}
.ws21{word-spacing:20.409257px;}
.ws1f{word-spacing:20.409743px;}
.ws1d{word-spacing:20.411735px;}
.ws57{word-spacing:20.515092px;}
.ws18a{word-spacing:20.623410px;}
.ws19c{word-spacing:20.682829px;}
.ws161{word-spacing:21.173368px;}
.ws13c{word-spacing:21.233265px;}
.ws184{word-spacing:21.280968px;}
.ws1ac{word-spacing:21.340447px;}
.ws15f{word-spacing:21.340746px;}
.ws169{word-spacing:21.341045px;}
.ws68{word-spacing:21.472258px;}
.wsd2{word-spacing:21.818970px;}
.wsaa{word-spacing:21.819209px;}
.wsbe{word-spacing:21.878628px;}
.ws103{word-spacing:21.878748px;}
.ws1a4{word-spacing:22.034171px;}
.ws199{word-spacing:22.064257px;}
.ws19f{word-spacing:22.309090px;}
.ws65{word-spacing:22.548501px;}
.ws1a1{word-spacing:22.727596px;}
.ws1c4{word-spacing:23.253642px;}
.ws178{word-spacing:23.253821px;}
.ws17b{word-spacing:23.349107px;}
.ws1bc{word-spacing:23.735015px;}
.ws175{word-spacing:24.030756px;}
.ws198{word-spacing:24.628536px;}
.ws197{word-spacing:24.688434px;}
.ws170{word-spacing:24.757084px;}
.ws53{word-spacing:25.118895px;}
.ws52{word-spacing:25.178254px;}
.ws72{word-spacing:25.537102px;}
.ws191{word-spacing:25.824096px;}
.ws1ab{word-spacing:26.122986px;}
.ws5{word-spacing:26.181450px;}
.ws16f{word-spacing:26.183003px;}
.ws4{word-spacing:26.253180px;}
.ws1c3{word-spacing:26.900040px;}
.ws160{word-spacing:26.995745px;}
.ws1a3{word-spacing:27.949876px;}
.ws19e{word-spacing:28.430417px;}
.ws16e{word-spacing:29.530452px;}
.ws163{word-spacing:29.589811px;}
.ws1b6{word-spacing:30.259624px;}
.ws6d{word-spacing:30.498736px;}
.ws19d{word-spacing:31.359479px;}
.ws1b2{word-spacing:31.682340px;}
.ws55{word-spacing:33.427678px;}
.ws1a{word-spacing:34.954740px;}
.ws162{word-spacing:36.699557px;}
.ws1a2{word-spacing:39.154590px;}
.ws133{word-spacing:39.649209px;}
.ws13a{word-spacing:39.659447px;}
.ws137{word-spacing:39.663642px;}
.ws138{word-spacing:39.664072px;}
.ws1bd{word-spacing:39.728459px;}
.ws1a0{word-spacing:40.003438px;}
.ws11e{word-spacing:40.999321px;}
.ws11c{word-spacing:41.009908px;}
.ws115{word-spacing:41.012466px;}
.ws11b{word-spacing:41.014690px;}
.ws118{word-spacing:41.015135px;}
.ws134{word-spacing:43.836025px;}
.ws192{word-spacing:44.893278px;}
.ws116{word-spacing:45.373357px;}
.ws1b7{word-spacing:46.088838px;}
.ws18e{word-spacing:52.759943px;}
.ws9e{word-spacing:65.696022px;}
.ws22{word-spacing:78.831270px;}
.ws136{word-spacing:90.810997px;}
.ws135{word-spacing:456.801196px;}
._25{margin-left:-23.484687px;}
._d{margin-left:-22.058381px;}
._32{margin-left:-17.019055px;}
._1{margin-left:-10.385183px;}
._c{margin-left:-6.934846px;}
._3{margin-left:-5.218361px;}
._f{margin-left:-4.108131px;}
._2{margin-left:-2.151900px;}
._a{margin-left:-1.134754px;}
._0{width:1.750078px;}
._2a{width:3.747417px;}
._14{width:14.551664px;}
._29{width:15.781392px;}
._23{width:17.054465px;}
._2b{width:18.948143px;}
._9{width:20.224265px;}
._3f{width:21.271493px;}
._16{width:22.503178px;}
._b{width:24.466877px;}
._6{width:26.285804px;}
._e{width:27.378216px;}
._10{width:28.753218px;}
._12{width:29.872484px;}
._8{width:31.801011px;}
._19{width:33.177280px;}
._13{width:34.910244px;}
._7{width:36.644464px;}
._17{width:38.122577px;}
._3d{width:39.214260px;}
._15{width:40.290372px;}
._5{width:42.273348px;}
._4{width:43.801595px;}
._21{width:45.490938px;}
._1e{width:47.104825px;}
._28{width:48.941786px;}
._1a{width:50.093916px;}
._11{width:51.454087px;}
._22{width:52.528406px;}
._1f{width:54.202381px;}
._20{width:56.610196px;}
._1b{width:58.685445px;}
._18{width:61.136343px;}
._24{width:63.304865px;}
._27{width:65.755800px;}
._1c{width:68.206459px;}
._26{width:78.903000px;}
._1d{width:84.823619px;}
._3e{width:100.008594px;}
._38{width:103.210091px;}
._2f{width:106.249929px;}
._2e{width:110.342058px;}
._2d{width:127.185822px;}
._35{width:151.429024px;}
._31{width:158.080444px;}
._33{width:185.584149px;}
._30{width:228.860310px;}
._3c{width:351.104403px;}
._39{width:386.428222px;}
._3b{width:412.136688px;}
._2c{width:414.445143px;}
._34{width:431.023130px;}
._37{width:443.175974px;}
._36{width:446.728791px;}
._3a{width:468.927610px;}
.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);}
.fs6{font-size:35.868000px;}
.fs9{font-size:41.844000px;}
.fsc{font-size:43.010271px;}
.fsb{font-size:44.474832px;}
.fs5{font-size:47.820000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fs7{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;}
.y56{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y55{bottom:41.879334px;}
.y57{bottom:42.993625px;}
.y3d{bottom:106.299000px;}
.yde{bottom:114.519000px;}
.y3c{bottom:124.231500px;}
.y18f{bottom:135.669000px;}
.y3b{bottom:142.164000px;}
.y18e{bottom:153.601500px;}
.y54{bottom:160.096500px;}
.y3a{bottom:160.098000px;}
.y1c1{bottom:161.371500px;}
.y1f6{bottom:167.416500px;}
.y18d{bottom:171.534000px;}
.y53{bottom:178.030500px;}
.y157{bottom:178.869000px;}
.y1c0{bottom:179.304000px;}
.y39{bottom:182.530500px;}
.y1f5{bottom:185.349000px;}
.y18c{bottom:189.466500px;}
.y8c{bottom:195.963000px;}
.y156{bottom:196.801500px;}
.y1bf{bottom:197.236500px;}
.y38{bottom:200.463000px;}
.y52{bottom:200.509500px;}
.y1f4{bottom:203.283000px;}
.y18b{bottom:207.399000px;}
.y8b{bottom:213.895500px;}
.y155{bottom:214.734000px;}
.y1be{bottom:215.169000px;}
.y37{bottom:218.395500px;}
.y51{bottom:218.442000px;}
.y1f3{bottom:221.215500px;}
.y18a{bottom:225.331500px;}
.y8a{bottom:231.828000px;}
.y154{bottom:232.666500px;}
.y1bd{bottom:233.101500px;}
.y36{bottom:236.328000px;}
.y50{bottom:236.374500px;}
.y1f2{bottom:239.148000px;}
.y189{bottom:243.265500px;}
.yac{bottom:249.760500px;}
.y153{bottom:250.600500px;}
.y1bc{bottom:252.309000px;}
.y89{bottom:253.051500px;}
.y35{bottom:254.260500px;}
.y4f{bottom:254.307000px;}
.y1f1{bottom:257.080500px;}
.y11f{bottom:258.715500px;}
.yab{bottom:267.694500px;}
.y152{bottom:268.533000px;}
.y1bb{bottom:270.241500px;}
.y88{bottom:270.984000px;}
.y188{bottom:272.116500px;}
.y34{bottom:272.193000px;}
.y4e{bottom:272.239500px;}
.y1f0{bottom:275.844000px;}
.y11e{bottom:276.648000px;}
.yaa{bottom:285.627000px;}
.y151{bottom:286.465500px;}
.y1ba{bottom:288.174000px;}
.y87{bottom:288.916500px;}
.y187{bottom:290.049000px;}
.y33{bottom:290.127000px;}
.y4d{bottom:290.172000px;}
.y1ef{bottom:293.776500px;}
.y11d{bottom:294.705000px;}
.yf1{bottom:296.911500px;}
.ya9{bottom:303.559500px;}
.y150{bottom:304.398000px;}
.y1b9{bottom:306.106500px;}
.y86{bottom:306.849000px;}
.y186{bottom:307.981500px;}
.y32{bottom:308.059500px;}
.y4c{bottom:308.106000px;}
.y1ee{bottom:311.709000px;}
.y11c{bottom:312.637500px;}
.yf0{bottom:314.844000px;}
.ya8{bottom:321.492000px;}
.y14f{bottom:323.169000px;}
.y1b8{bottom:324.039000px;}
.y85{bottom:324.783000px;}
.y185{bottom:325.914000px;}
.y31{bottom:325.992000px;}
.y4b{bottom:326.038500px;}
.y1ed{bottom:329.641500px;}
.y11b{bottom:330.570000px;}
.yef{bottom:332.776500px;}
.y14e{bottom:341.103000px;}
.y1b7{bottom:341.973000px;}
.y84{bottom:342.715500px;}
.y184{bottom:343.846500px;}
.y30{bottom:343.924500px;}
.y4a{bottom:343.971000px;}
.y1ec{bottom:347.574000px;}
.y11a{bottom:348.502500px;}
.yee{bottom:350.710500px;}
.y14d{bottom:359.035500px;}
.y83{bottom:360.648000px;}
.y1b6{bottom:361.179000px;}
.y183{bottom:361.780500px;}
.y2f{bottom:361.857000px;}
.y49{bottom:361.903500px;}
.ya7{bottom:362.388000px;}
.y1eb{bottom:366.337500px;}
.y119{bottom:366.436500px;}
.yed{bottom:368.643000px;}
.y14c{bottom:376.968000px;}
.y82{bottom:378.580500px;}
.y1b5{bottom:379.111500px;}
.y182{bottom:379.713000px;}
.y2e{bottom:379.789500px;}
.y48{bottom:379.836000px;}
.y1ea{bottom:384.270000px;}
.y118{bottom:384.369000px;}
.yec{bottom:386.575500px;}
.y14b{bottom:394.900500px;}
.y81{bottom:396.513000px;}
.y1b4{bottom:397.044000px;}
.y181{bottom:397.645500px;}
.y2d{bottom:397.723500px;}
.y1e9{bottom:402.202500px;}
.y117{bottom:402.301500px;}
.y47{bottom:402.315000px;}
.yeb{bottom:404.508000px;}
.y14a{bottom:412.833000px;}
.y80{bottom:414.445500px;}
.y1b3{bottom:414.976500px;}
.y180{bottom:415.578000px;}
.ycd{bottom:415.860000px;}
.y1e8{bottom:420.136500px;}
.y2c{bottom:420.156000px;}
.y116{bottom:420.234000px;}
.y46{bottom:420.249000px;}
.yea{bottom:422.440500px;}
.y149{bottom:430.765500px;}
.y7f{bottom:432.379500px;}
.y1b2{bottom:432.910500px;}
.y17f{bottom:433.510500px;}
.ycc{bottom:433.794000px;}
.y2b{bottom:438.088500px;}
.y115{bottom:438.166500px;}
.y45{bottom:438.181500px;}
.y1e7{bottom:438.898500px;}
.ye9{bottom:440.373000px;}
.y148{bottom:448.699500px;}
.y17e{bottom:451.443000px;}
.ycb{bottom:451.726500px;}
.y1b1{bottom:452.116500px;}
.y7e{bottom:453.601500px;}
.y2a{bottom:456.021000px;}
.y114{bottom:456.100500px;}
.y44{bottom:456.114000px;}
.y1e6{bottom:456.831000px;}
.ye8{bottom:458.307000px;}
.y147{bottom:466.632000px;}
.y17d{bottom:469.377000px;}
.yca{bottom:469.659000px;}
.y1b0{bottom:470.049000px;}
.y7d{bottom:471.535500px;}
.y29{bottom:473.953500px;}
.y113{bottom:474.033000px;}
.y43{bottom:474.046500px;}
.y1e5{bottom:474.765000px;}
.ye7{bottom:476.239500px;}
.ya6{bottom:478.186500px;}
.y146{bottom:484.564500px;}
.y17c{bottom:487.309500px;}
.yc9{bottom:487.591500px;}
.y1af{bottom:487.981500px;}
.y7c{bottom:489.468000px;}
.y28{bottom:491.886000px;}
.y112{bottom:491.965500px;}
.y42{bottom:491.979000px;}
.y1e4{bottom:492.697500px;}
.ye6{bottom:494.172000px;}
.ya5{bottom:496.119000px;}
.y145{bottom:502.497000px;}
.y17b{bottom:505.242000px;}
.yc8{bottom:505.524000px;}
.y1ae{bottom:505.915500px;}
.y7b{bottom:507.400500px;}
.y27{bottom:509.820000px;}
.y41{bottom:509.911500px;}
.y111{bottom:510.021000px;}
.y1e3{bottom:511.459500px;}
.ye5{bottom:512.104500px;}
.ya4{bottom:514.051500px;}
.y17a{bottom:523.174500px;}
.yc7{bottom:523.456500px;}
.y1ad{bottom:523.848000px;}
.y7a{bottom:525.333000px;}
.y26{bottom:527.752500px;}
.y40{bottom:527.845500px;}
.y110{bottom:527.953500px;}
.ydd{bottom:528.676500px;}
.y1e2{bottom:529.393500px;}
.ye4{bottom:530.037000px;}
.y144{bottom:531.642000px;}
.ya3{bottom:531.984000px;}
.yc6{bottom:541.390500px;}
.y1ac{bottom:543.054000px;}
.y79{bottom:543.265500px;}
.y25{bottom:545.685000px;}
.y3f{bottom:545.778000px;}
.y10f{bottom:545.887500px;}
.ydc{bottom:546.610500px;}
.y1e1{bottom:547.326000px;}
.ye3{bottom:547.969500px;}
.ya2{bottom:549.918000px;}
.y179{bottom:550.758000px;}
.yc5{bottom:559.323000px;}
.y1ab{bottom:560.986500px;}
.y78{bottom:561.198000px;}
.y3e{bottom:563.710500px;}
.y10e{bottom:563.820000px;}
.y1e0{bottom:565.258500px;}
.ye2{bottom:565.903500px;}
.ya1{bottom:567.850500px;}
.y143{bottom:576.544500px;}
.yc4{bottom:577.255500px;}
.y1aa{bottom:578.919000px;}
.y77{bottom:579.132000px;}
.y24{bottom:581.643000px;}
.y10d{bottom:581.752500px;}
.y1df{bottom:583.191000px;}
.ye1{bottom:583.836000px;}
.ya0{bottom:585.783000px;}
.y178{bottom:593.976000px;}
.y142{bottom:594.478500px;}
.y1a9{bottom:596.853000px;}
.y10c{bottom:599.685000px;}
.y76{bottom:600.354000px;}
.y1de{bottom:601.954500px;}
.y9f{bottom:603.715500px;}
.yc3{bottom:604.839000px;}
.y177{bottom:611.910000px;}
.y141{bottom:612.411000px;}
.y1a8{bottom:614.785500px;}
.y10b{bottom:617.617500px;}
.y75{bottom:618.288000px;}
.y1dd{bottom:619.887000px;}
.y176{bottom:629.842500px;}
.y140{bottom:630.343500px;}
.y9e{bottom:631.299000px;}
.ye0{bottom:632.200500px;}
.y1a7{bottom:633.991500px;}
.y10a{bottom:635.551500px;}
.y74{bottom:636.220500px;}
.y1dc{bottom:637.819500px;}
.y175{bottom:647.775000px;}
.y13f{bottom:648.276000px;}
.ydf{bottom:650.134500px;}
.y1a6{bottom:651.924000px;}
.y109{bottom:653.484000px;}
.y73{bottom:654.153000px;}
.y1db{bottom:655.752000px;}
.y20{bottom:661.522500px;}
.y174{bottom:665.707500px;}
.yc2{bottom:665.829000px;}
.y13e{bottom:666.208500px;}
.y1a5{bottom:669.858000px;}
.y9d{bottom:670.737000px;}
.y108{bottom:671.416500px;}
.y72{bottom:672.085500px;}
.y23{bottom:673.477500px;}
.y1da{bottom:674.515500px;}
.y1f{bottom:679.455000px;}
.y173{bottom:683.640000px;}
.y13d{bottom:684.141000px;}
.y22{bottom:685.432500px;}
.y1a4{bottom:687.790500px;}
.y9c{bottom:688.669500px;}
.y107{bottom:689.349000px;}
.y71{bottom:690.018000px;}
.y1d9{bottom:692.448000px;}
.y21{bottom:697.389000px;}
.y172{bottom:701.574000px;}
.y13c{bottom:702.075000px;}
.y1a3{bottom:705.723000px;}
.y9b{bottom:706.602000px;}
.y106{bottom:707.281500px;}
.y70{bottom:707.952000px;}
.y1d8{bottom:710.380500px;}
.y1e{bottom:715.321500px;}
.y171{bottom:719.506500px;}
.y13b{bottom:720.007500px;}
.y9a{bottom:724.534500px;}
.y1a2{bottom:724.929000px;}
.y105{bottom:725.214000px;}
.y6f{bottom:725.884500px;}
.y1d7{bottom:728.313000px;}
.y1d{bottom:733.254000px;}
.y170{bottom:737.439000px;}
.y13a{bottom:737.940000px;}
.y99{bottom:742.467000px;}
.y1a1{bottom:742.861500px;}
.y104{bottom:743.148000px;}
.y6e{bottom:743.817000px;}
.y1d6{bottom:746.247000px;}
.y1c{bottom:751.186500px;}
.y16f{bottom:755.371500px;}
.y98{bottom:760.399500px;}
.y1a0{bottom:760.795500px;}
.y103{bottom:761.080500px;}
.y1d5{bottom:765.009000px;}
.y6d{bottom:765.040500px;}
.y1b{bottom:769.119000px;}
.y16e{bottom:773.304000px;}
.y97{bottom:778.333500px;}
.y102{bottom:779.013000px;}
.y19f{bottom:780.001500px;}
.y1d4{bottom:782.941500px;}
.y6c{bottom:782.973000px;}
.y1a{bottom:787.051500px;}
.y139{bottom:788.896848px;}
.y16d{bottom:791.236500px;}
.yc1{bottom:794.545500px;}
.y96{bottom:796.266000px;}
.y101{bottom:796.945500px;}
.y19e{bottom:797.934000px;}
.y1d3{bottom:800.875500px;}
.y6b{bottom:800.905500px;}
.y138{bottom:802.238628px;}
.y19{bottom:804.985500px;}
.y16c{bottom:809.170500px;}
.yc0{bottom:812.478000px;}
.y95{bottom:814.198500px;}
.y137{bottom:815.581524px;}
.y1d2{bottom:818.808000px;}
.y6a{bottom:818.838000px;}
.y18{bottom:822.918000px;}
.y19d{bottom:823.779000px;}
.y100{bottom:824.760000px;}
.y16b{bottom:827.103000px;}
.y136{bottom:828.923304px;}
.ybf{bottom:830.410500px;}
.y94{bottom:832.131000px;}
.y1d1{bottom:836.740500px;}
.y69{bottom:836.770500px;}
.y17{bottom:840.850500px;}
.y135{bottom:842.265084px;}
.y16a{bottom:845.035500px;}
.ybe{bottom:848.343000px;}
.y93{bottom:850.063500px;}
.y68{bottom:854.704500px;}
.y1d0{bottom:855.504000px;}
.y134{bottom:855.606864px;}
.y16{bottom:858.783000px;}
.yff{bottom:865.867500px;}
.ybd{bottom:866.275500px;}
.y92{bottom:867.997500px;}
.y19c{bottom:868.396500px;}
.y133{bottom:868.948644px;}
.y67{bottom:872.637000px;}
.y1cf{bottom:873.436500px;}
.ydb{bottom:874.713000px;}
.y15{bottom:876.715500px;}
.y132{bottom:882.290424px;}
.yfe{bottom:883.800000px;}
.ybc{bottom:884.208000px;}
.y91{bottom:885.930000px;}
.y19b{bottom:886.329000px;}
.y66{bottom:890.569500px;}
.y1ce{bottom:891.369000px;}
.yda{bottom:892.645500px;}
.y169{bottom:893.097046px;}
.y14{bottom:894.648000px;}
.y131{bottom:895.633320px;}
.yfd{bottom:901.732500px;}
.ybb{bottom:902.142000px;}
.y19a{bottom:904.263000px;}
.y168{bottom:905.999480px;}
.y65{bottom:908.502000px;}
.y130{bottom:908.975100px;}
.y1cd{bottom:909.301500px;}
.yd9{bottom:910.578000px;}
.y13{bottom:912.582000px;}
.y90{bottom:913.513500px;}
.y167{bottom:918.901914px;}
.yfc{bottom:919.665000px;}
.yba{bottom:920.074500px;}
.y199{bottom:922.195500px;}
.y12f{bottom:922.761150px;}
.y64{bottom:926.434500px;}
.y1cc{bottom:928.065000px;}
.yd8{bottom:928.510500px;}
.y12{bottom:930.514500px;}
.y166{bottom:931.804348px;}
.yfb{bottom:937.597500px;}
.yb9{bottom:938.007000px;}
.y12e{bottom:938.523000px;}
.y198{bottom:940.128000px;}
.y8f{bottom:941.097000px;}
.y63{bottom:944.367000px;}
.y165{bottom:944.707861px;}
.y1cb{bottom:945.997500px;}
.yd7{bottom:946.444500px;}
.y11{bottom:948.447000px;}
.yfa{bottom:955.530000px;}
.yb8{bottom:955.939500px;}
.y12d{bottom:956.455500px;}
.y164{bottom:957.610295px;}
.y197{bottom:958.060500px;}
.y1ca{bottom:963.930000px;}
.yd6{bottom:964.377000px;}
.y62{bottom:965.590500px;}
.y10{bottom:966.379500px;}
.y163{bottom:970.552050px;}
.yf9{bottom:973.464000px;}
.yb7{bottom:973.872000px;}
.y196{bottom:975.993000px;}
.y1c9{bottom:981.862500px;}
.yd5{bottom:982.309500px;}
.y61{bottom:983.523000px;}
.y162{bottom:983.885850px;}
.yf{bottom:984.312000px;}
.yb6{bottom:991.804500px;}
.y195{bottom:993.927000px;}
.y12c{bottom:995.374830px;}
.y1c8{bottom:999.795000px;}
.yd4{bottom:1000.242000px;}
.yf8{bottom:1001.277000px;}
.y8e{bottom:1001.455500px;}
.y60{bottom:1001.457000px;}
.y161{bottom:1002.231000px;}
.ye{bottom:1002.246000px;}
.y12b{bottom:1008.716610px;}
.yb5{bottom:1009.738500px;}
.y194{bottom:1011.859500px;}
.yd3{bottom:1018.174500px;}
.y1c7{bottom:1018.558500px;}
.y5f{bottom:1019.389500px;}
.yd{bottom:1020.178500px;}
.y12a{bottom:1022.059506px;}
.yb4{bottom:1027.671000px;}
.y129{bottom:1035.401286px;}
.yd2{bottom:1036.108500px;}
.y1c6{bottom:1036.491000px;}
.y5e{bottom:1037.322000px;}
.y160{bottom:1038.766669px;}
.y193{bottom:1042.413000px;}
.yf7{bottom:1045.374000px;}
.yb3{bottom:1045.603500px;}
.y128{bottom:1048.743066px;}
.yb{bottom:1051.519500px;}
.y15f{bottom:1051.669102px;}
.yd1{bottom:1054.041000px;}
.y1c5{bottom:1054.423500px;}
.y5d{bottom:1055.254500px;}
.yc{bottom:1055.737500px;}
.y192{bottom:1060.345500px;}
.y127{bottom:1062.084846px;}
.yf6{bottom:1063.306500px;}
.yb2{bottom:1063.536000px;}
.y15e{bottom:1064.572615px;}
.yd0{bottom:1071.973500px;}
.y1c4{bottom:1072.357500px;}
.y5c{bottom:1073.187000px;}
.y126{bottom:1075.426626px;}
.ya{bottom:1075.912500px;}
.y15d{bottom:1077.475049px;}
.y191{bottom:1078.278000px;}
.yf5{bottom:1081.239000px;}
.yb1{bottom:1081.468500px;}
.y9{bottom:1086.637500px;}
.y125{bottom:1088.769522px;}
.ycf{bottom:1089.906000px;}
.y1c3{bottom:1090.290000px;}
.y15c{bottom:1090.377483px;}
.y5b{bottom:1091.119500px;}
.y190{bottom:1096.210500px;}
.yf4{bottom:1099.171500px;}
.yb0{bottom:1099.401000px;}
.y124{bottom:1102.111302px;}
.y15b{bottom:1103.279917px;}
.yce{bottom:1107.838500px;}
.y1c2{bottom:1108.222500px;}
.y8{bottom:1108.789500px;}
.y8d{bottom:1109.052000px;}
.y5a{bottom:1109.053500px;}
.y123{bottom:1115.453100px;}
.y15a{bottom:1116.227550px;}
.yf3{bottom:1117.104000px;}
.yaf{bottom:1117.335000px;}
.y6{bottom:1123.996500px;}
.y59{bottom:1126.986000px;}
.y122{bottom:1129.240200px;}
.y159{bottom:1129.561350px;}
.y7{bottom:1130.505000px;}
.yf2{bottom:1135.038000px;}
.yae{bottom:1135.267500px;}
.y58{bottom:1144.918500px;}
.y121{bottom:1145.001000px;}
.y5{bottom:1162.851000px;}
.y158{bottom:1162.933500px;}
.y120{bottom:1162.935000px;}
.yad{bottom:1165.888438px;}
.y4{bottom:1166.977469px;}
.y3{bottom:1179.940611px;}
.h10{height:13.200074px;}
.h8{height:25.251072px;}
.hd{height:29.960304px;}
.h16{height:32.257703px;}
.h15{height:33.356124px;}
.ha{height:33.665280px;}
.hb{height:34.074600px;}
.h14{height:34.368215px;}
.h4{height:36.000225px;}
.h9{height:38.517936px;}
.h13{height:42.792210px;}
.hc{height:42.801048px;}
.h3{height:44.824091px;}
.hf{height:44.833500px;}
.h7{height:45.429000px;}
.h17{height:47.781048px;}
.h19{height:47.787048px;}
.h11{height:49.898438px;}
.he{height:51.358680px;}
.h18{height:57.915048px;}
.h6{height:59.699280px;}
.h5{height:61.544340px;}
.h2{height:1195.555378px;}
.h12{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:6.673485px;}
.w5{width:6.675000px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.437964px;}
.x11{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x1b{left:92.511000px;}
.x1a{left:95.002500px;}
.x15{left:97.182750px;}
.xb{left:99.984000px;}
.x19{left:114.927000px;}
.x2{left:125.858878px;}
.x12{left:165.333000px;}
.x14{left:188.382000px;}
.xf{left:208.226652px;}
.x13{left:245.086500px;}
.x6{left:332.734500px;}
.x5{left:362.567112px;}
.xc{left:453.928500px;}
.x16{left:455.413500px;}
.x17{left:463.060500px;}
.x10{left:466.227000px;}
.xd{left:468.873000px;}
.x18{left:483.816000px;}
.x1e{left:517.000500px;}
.x1f{left:533.406000px;}
.x1c{left:580.222500px;}
.x1d{left:596.229000px;}
.x7{left:674.386500px;}
.xa{left:688.965000px;}
.x8{left:692.155500px;}
.x9{left:705.973500px;}
.xe{left:805.240540px;}
@media print{
.v3{vertical-align:-23.720704pt;}
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.426667pt;}
.v5{vertical-align:13.434667pt;}
.v1{vertical-align:23.141333pt;}
.ls8{letter-spacing:-0.300471pt;}
.ls6{letter-spacing:-0.079370pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.034016pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.lsa{letter-spacing:0.592458pt;}
.ls2{letter-spacing:0.592488pt;}
.ls3{letter-spacing:0.616472pt;}
.lsb{letter-spacing:0.616502pt;}
.ls4{letter-spacing:2.653541pt;}
.ls5{letter-spacing:2.655406pt;}
.ws1{word-spacing:-35.936443pt;}
.ws0{word-spacing:-35.755026pt;}
.ws1a7{word-spacing:-16.971638pt;}
.ws1aa{word-spacing:-14.761181pt;}
.ws2{word-spacing:-14.495260pt;}
.ws1c{word-spacing:-12.694190pt;}
.ws132{word-spacing:-10.620670pt;}
.ws17c{word-spacing:-2.955761pt;}
.ws17d{word-spacing:-2.911853pt;}
.wsfd{word-spacing:-2.805581pt;}
.ws77{word-spacing:-2.752657pt;}
.ws9a{word-spacing:-2.752445pt;}
.ws37{word-spacing:-2.752126pt;}
.wsdf{word-spacing:-2.699309pt;}
.ws12e{word-spacing:-2.539848pt;}
.ws80{word-spacing:-2.433735pt;}
.ws14b{word-spacing:-2.380918pt;}
.wsa9{word-spacing:-2.274221pt;}
.wsb8{word-spacing:-2.221085pt;}
.wsf6{word-spacing:-2.114760pt;}
.wsb3{word-spacing:-2.008647pt;}
.wsb2{word-spacing:-2.008541pt;}
.ws97{word-spacing:-1.902269pt;}
.ws14e{word-spacing:-1.849133pt;}
.wsb7{word-spacing:-1.689725pt;}
.ws7f{word-spacing:-1.583612pt;}
.ws7e{word-spacing:-1.583506pt;}
.ws14f{word-spacing:-1.477181pt;}
.ws99{word-spacing:-1.424098pt;}
.ws8a{word-spacing:-1.370803pt;}
.wsa3{word-spacing:-1.317985pt;}
.wsd5{word-spacing:-1.264637pt;}
.ws113{word-spacing:-1.211288pt;}
.ws157{word-spacing:-1.158524pt;}
.ws86{word-spacing:-1.158365pt;}
.wse4{word-spacing:-1.105229pt;}
.wsbb{word-spacing:-1.051827pt;}
.ws60{word-spacing:-1.037477pt;}
.ws173{word-spacing:-0.999010pt;}
.ws152{word-spacing:-0.945715pt;}
.ws5b{word-spacing:-0.907083pt;}
.ws5f{word-spacing:-0.890076pt;}
.ws155{word-spacing:-0.839549pt;}
.ws182{word-spacing:-0.773066pt;}
.wse6{word-spacing:-0.733436pt;}
.ws1c0{word-spacing:-0.711810pt;}
.ws1c1{word-spacing:-0.680141pt;}
.ws104{word-spacing:-0.627270pt;}
.ws164{word-spacing:-0.605750pt;}
.ws89{word-spacing:-0.573869pt;}
.ws59{word-spacing:-0.544250pt;}
.ws5c{word-spacing:-0.447872pt;}
.ws26{word-spacing:-0.414461pt;}
.ws61{word-spacing:-0.413857pt;}
.wsd0{word-spacing:-0.308401pt;}
.wsf0{word-spacing:-0.255053pt;}
.wscb{word-spacing:-0.255000pt;}
.ws1bf{word-spacing:-0.202236pt;}
.ws156{word-spacing:-0.201704pt;}
.wsa0{word-spacing:-0.148887pt;}
.ws9f{word-spacing:-0.148781pt;}
.ws168{word-spacing:-0.053136pt;}
.ws58{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.010574pt;}
.ws5e{word-spacing:0.039685pt;}
.wsf3{word-spacing:0.063869pt;}
.ws1af{word-spacing:0.116899pt;}
.ws34{word-spacing:0.170035pt;}
.ws128{word-spacing:0.223331pt;}
.ws5a{word-spacing:0.260786pt;}
.wsa5{word-spacing:0.276148pt;}
.wsa7{word-spacing:0.276307pt;}
.ws17a{word-spacing:0.382579pt;}
.wsab{word-spacing:0.435609pt;}
.ws9c{word-spacing:0.489011pt;}
.wsdc{word-spacing:0.541987pt;}
.wsb5{word-spacing:0.595070pt;}
.ws5d{word-spacing:0.634958pt;}
.wsd7{word-spacing:0.647887pt;}
.ws153{word-spacing:0.648259pt;}
.ws76{word-spacing:0.701236pt;}
.ws129{word-spacing:0.754531pt;}
.wsd3{word-spacing:1.020158pt;}
.ws166{word-spacing:1.073400pt;}
.ws12b{word-spacing:1.073613pt;}
.ws120{word-spacing:1.126271pt;}
.wscf{word-spacing:1.179619pt;}
.ws6c{word-spacing:1.232436pt;}
.ws90{word-spacing:1.285732pt;}
.wsc8{word-spacing:1.285891pt;}
.wsc2{word-spacing:1.339080pt;}
.wsc0{word-spacing:1.391898pt;}
.ws9b{word-spacing:1.445246pt;}
.ws48{word-spacing:1.498010pt;}
.ws10d{word-spacing:1.498435pt;}
.ws165{word-spacing:1.519743pt;}
.wsba{word-spacing:1.604707pt;}
.ws27{word-spacing:1.657471pt;}
.wsb4{word-spacing:1.657843pt;}
.wsf5{word-spacing:1.658003pt;}
.ws82{word-spacing:1.710820pt;}
.wsca{word-spacing:1.710979pt;}
.ws126{word-spacing:1.764168pt;}
.ws130{word-spacing:1.816932pt;}
.ws74{word-spacing:1.923629pt;}
.wsac{word-spacing:1.976447pt;}
.wsd4{word-spacing:1.976659pt;}
.ws1ae{word-spacing:1.993180pt;}
.ws18c{word-spacing:2.029901pt;}
.ws143{word-spacing:2.082719pt;}
.ws95{word-spacing:2.082931pt;}
.ws139{word-spacing:2.110447pt;}
.ws7d{word-spacing:2.135908pt;}
.ws117{word-spacing:2.175986pt;}
.ws11a{word-spacing:2.181915pt;}
.ws119{word-spacing:2.182311pt;}
.ws189{word-spacing:2.242339pt;}
.ws107{word-spacing:2.242711pt;}
.ws84{word-spacing:2.295369pt;}
.ws98{word-spacing:2.295475pt;}
.wsfc{word-spacing:2.348133pt;}
.wsf9{word-spacing:2.348664pt;}
.wsd6{word-spacing:2.401482pt;}
.wsa4{word-spacing:2.454830pt;}
.ws10e{word-spacing:2.454883pt;}
.wscc{word-spacing:2.508019pt;}
.wscd{word-spacing:2.508179pt;}
.ws35{word-spacing:2.614291pt;}
.ws7a{word-spacing:2.720563pt;}
.wsed{word-spacing:2.773752pt;}
.ws11{word-spacing:2.874870pt;}
.wsbd{word-spacing:2.932682pt;}
.ws85{word-spacing:2.932842pt;}
.ws49{word-spacing:2.933107pt;}
.ws2b{word-spacing:2.933213pt;}
.wse8{word-spacing:2.933373pt;}
.ws9d{word-spacing:2.986190pt;}
.ws3b{word-spacing:2.986243pt;}
.wsbc{word-spacing:2.986562pt;}
.ws105{word-spacing:3.039379pt;}
.ws154{word-spacing:3.092356pt;}
.ws54{word-spacing:3.092675pt;}
.wsc6{word-spacing:3.198787pt;}
.wsdd{word-spacing:3.198840pt;}
.wsce{word-spacing:3.251923pt;}
.ws167{word-spacing:3.305059pt;}
.ws114{word-spacing:3.411066pt;}
.ws36{word-spacing:3.464414pt;}
.wsb6{word-spacing:3.464467pt;}
.wsec{word-spacing:3.464627pt;}
.wsd1{word-spacing:3.517231pt;}
.ws123{word-spacing:3.517763pt;}
.ws81{word-spacing:3.570739pt;}
.ws102{word-spacing:3.730041pt;}
.ws47{word-spacing:3.730200pt;}
.ws1e{word-spacing:3.738101pt;}
.ws180{word-spacing:3.804538pt;}
.ws6a{word-spacing:3.836154pt;}
.ws75{word-spacing:3.836419pt;}
.ws108{word-spacing:3.889715pt;}
.ws10c{word-spacing:3.942266pt;}
.ws32{word-spacing:3.942691pt;}
.ws33{word-spacing:3.942851pt;}
.ws23{word-spacing:3.995615pt;}
.ws1a8{word-spacing:3.995827pt;}
.ws42{word-spacing:4.048963pt;}
.ws18f{word-spacing:4.069952pt;}
.wsdb{word-spacing:4.101780pt;}
.wsef{word-spacing:4.102312pt;}
.ws4d{word-spacing:4.155076pt;}
.wsd9{word-spacing:4.155607pt;}
.ws41{word-spacing:4.207893pt;}
.ws29{word-spacing:4.208371pt;}
.ws2a{word-spacing:4.208424pt;}
.ws150{word-spacing:4.261507pt;}
.ws9{word-spacing:4.271920pt;}
.ws13{word-spacing:4.309011pt;}
.ws144{word-spacing:4.314537pt;}
.wsbf{word-spacing:4.367779pt;}
.ws51{word-spacing:4.420703pt;}
.ws15b{word-spacing:4.420915pt;}
.ws15a{word-spacing:4.473998pt;}
.ws2c{word-spacing:4.526815pt;}
.wse2{word-spacing:4.527347pt;}
.ws125{word-spacing:4.580164pt;}
.ws4e{word-spacing:4.580323pt;}
.ws3c{word-spacing:4.632981pt;}
.wsfe{word-spacing:4.686808pt;}
.ws127{word-spacing:4.739891pt;}
.ws4c{word-spacing:4.792655pt;}
.ws145{word-spacing:4.792973pt;}
.ws14{word-spacing:4.840743pt;}
.ws100{word-spacing:4.951903pt;}
.wsb1{word-spacing:4.952275pt;}
.ws19{word-spacing:5.000098pt;}
.wsa6{word-spacing:5.005199pt;}
.ws43{word-spacing:5.058547pt;}
.wsf2{word-spacing:5.111896pt;}
.ws16a{word-spacing:5.186074pt;}
.ws96{word-spacing:5.217477pt;}
.ws30{word-spacing:5.270826pt;}
.ws2f{word-spacing:5.324227pt;}
.wsa1{word-spacing:5.324705pt;}
.ws12c{word-spacing:5.376938pt;}
.wsde{word-spacing:5.377363pt;}
.ws111{word-spacing:5.377469pt;}
.ws3d{word-spacing:5.430499pt;}
.wsd8{word-spacing:5.483635pt;}
.ws40{word-spacing:5.536984pt;}
.wse3{word-spacing:5.589748pt;}
.ws88{word-spacing:5.589907pt;}
.wsc9{word-spacing:5.590279pt;}
.ws17e{word-spacing:5.642831pt;}
.ws190{word-spacing:5.643096pt;}
.ws17{word-spacing:5.690866pt;}
.ws2d{word-spacing:5.696179pt;}
.ws3f{word-spacing:5.696445pt;}
.wsfb{word-spacing:5.749209pt;}
.wsf8{word-spacing:5.749315pt;}
.ws149{word-spacing:5.802292pt;}
.wsd{word-spacing:5.850327pt;}
.ws8b{word-spacing:5.855587pt;}
.ws124{word-spacing:5.908458pt;}
.ws14c{word-spacing:5.908670pt;}
.wse5{word-spacing:6.015101pt;}
.ws141{word-spacing:6.068184pt;}
.ws94{word-spacing:6.121267pt;}
.ws8e{word-spacing:6.121480pt;}
.wsff{word-spacing:6.173766pt;}
.ws3a{word-spacing:6.174403pt;}
.ws196{word-spacing:6.209144pt;}
.ws87{word-spacing:6.227114pt;}
.ws45{word-spacing:6.333758pt;}
.ws56{word-spacing:6.333811pt;}
.ws15c{word-spacing:6.387107pt;}
.ws10{word-spacing:6.434876pt;}
.wsee{word-spacing:6.493219pt;}
.ws15e{word-spacing:6.514792pt;}
.ws70{word-spacing:6.546355pt;}
.ws4f{word-spacing:6.599332pt;}
.ws31{word-spacing:6.599438pt;}
.ws44{word-spacing:6.652627pt;}
.ws13f{word-spacing:6.652680pt;}
.ws171{word-spacing:6.674094pt;}
.ws19a{word-spacing:6.727018pt;}
.ws181{word-spacing:6.812460pt;}
.wsb9{word-spacing:6.917776pt;}
.ws16c{word-spacing:6.918307pt;}
.ws187{word-spacing:6.971071pt;}
.ws39{word-spacing:6.971443pt;}
.ws78{word-spacing:6.971603pt;}
.ws195{word-spacing:7.024420pt;}
.ws38{word-spacing:7.024579pt;}
.ws10a{word-spacing:7.024951pt;}
.ws159{word-spacing:7.077715pt;}
.wsc4{word-spacing:7.077768pt;}
.ws148{word-spacing:7.130532pt;}
.ws12a{word-spacing:7.131117pt;}
.ws193{word-spacing:7.152106pt;}
.ws172{word-spacing:7.183987pt;}
.ws146{word-spacing:7.184253pt;}
.ws112{word-spacing:7.184412pt;}
.ws151{word-spacing:7.237017pt;}
.ws10b{word-spacing:7.237229pt;}
.wsa2{word-spacing:7.290259pt;}
.ws3{word-spacing:7.322198pt;}
.ws1b{word-spacing:7.337816pt;}
.ws194{word-spacing:7.364650pt;}
.wse9{word-spacing:7.396531pt;}
.ws12d{word-spacing:7.555939pt;}
.ws188{word-spacing:7.608969pt;}
.wse0{word-spacing:7.609075pt;}
.ws101{word-spacing:7.609341pt;}
.wsf1{word-spacing:7.662317pt;}
.ws46{word-spacing:7.715347pt;}
.ws91{word-spacing:7.768271pt;}
.ws19b{word-spacing:7.791429pt;}
.wse{word-spacing:7.816199pt;}
.wsfa{word-spacing:7.927891pt;}
.wsa8{word-spacing:7.981080pt;}
.ws13e{word-spacing:8.034163pt;}
.ws15{word-spacing:8.082358pt;}
.ws121{word-spacing:8.087193pt;}
.wsf{word-spacing:8.135175pt;}
.ws25{word-spacing:8.140701pt;}
.wsa{word-spacing:8.241287pt;}
.ws79{word-spacing:8.246813pt;}
.ws1c2{word-spacing:8.285183pt;}
.ws16b{word-spacing:8.374234pt;}
.wsf4{word-spacing:8.406115pt;}
.ws186{word-spacing:8.427370pt;}
.ws110{word-spacing:8.459251pt;}
.ws7c{word-spacing:8.512387pt;}
.ws158{word-spacing:8.512440pt;}
.wse1{word-spacing:8.565204pt;}
.ws1a9{word-spacing:8.586778pt;}
.ws14a{word-spacing:8.724931pt;}
.ws1a6{word-spacing:8.746186pt;}
.ws10f{word-spacing:8.778067pt;}
.ws1bb{word-spacing:8.797999pt;}
.ws1ad{word-spacing:8.799322pt;}
.wsaf{word-spacing:8.830831pt;}
.wsf7{word-spacing:8.831203pt;}
.ws13d{word-spacing:8.884339pt;}
.wsc7{word-spacing:8.937475pt;}
.ws122{word-spacing:9.043482pt;}
.ws67{word-spacing:9.043747pt;}
.ws1a5{word-spacing:9.065161pt;}
.ws8f{word-spacing:9.096830pt;}
.ws6e{word-spacing:9.150285pt;}
.ws13b{word-spacing:9.256291pt;}
.ws147{word-spacing:9.256451pt;}
.ws106{word-spacing:9.521971pt;}
.wsc{word-spacing:9.622930pt;}
.wsad{word-spacing:9.681379pt;}
.ws50{word-spacing:9.787651pt;}
.wseb{word-spacing:9.894189pt;}
.ws16{word-spacing:9.994882pt;}
.ws8d{word-spacing:10.053172pt;}
.ws8c{word-spacing:10.053331pt;}
.wsb{word-spacing:10.154183pt;}
.ws24{word-spacing:10.159338pt;}
.ws28{word-spacing:10.266035pt;}
.wsae{word-spacing:10.478419pt;}
.ws140{word-spacing:10.584691pt;}
.ws1be{word-spacing:10.605946pt;}
.ws109{word-spacing:10.637721pt;}
.ws83{word-spacing:10.637774pt;}
.wsb0{word-spacing:10.797235pt;}
.ws16d{word-spacing:10.850371pt;}
.ws177{word-spacing:11.009779pt;}
.wse7{word-spacing:11.168922pt;}
.ws6b{word-spacing:11.168975pt;}
.wsea{word-spacing:11.222270pt;}
.ws11f{word-spacing:11.222323pt;}
.ws1b4{word-spacing:11.275459pt;}
.ws93{word-spacing:11.275619pt;}
.wsda{word-spacing:11.541245pt;}
.ws7b{word-spacing:11.700175pt;}
.wsc5{word-spacing:11.753471pt;}
.ws18d{word-spacing:11.801791pt;}
.ws18{word-spacing:11.801824pt;}
.ws15d{word-spacing:11.804458pt;}
.ws185{word-spacing:11.827861pt;}
.ws14d{word-spacing:11.860168pt;}
.ws176{word-spacing:11.987375pt;}
.ws1ba{word-spacing:12.178771pt;}
.ws62{word-spacing:12.231907pt;}
.ws11d{word-spacing:12.656942pt;}
.ws1b9{word-spacing:12.784522pt;}
.ws1b0{word-spacing:12.975811pt;}
.ws1b1{word-spacing:12.975917pt;}
.ws131{word-spacing:13.082083pt;}
.wsc1{word-spacing:13.294627pt;}
.ws4a{word-spacing:13.454035pt;}
.ws17f{word-spacing:13.549521pt;}
.ws183{word-spacing:13.549680pt;}
.ws6f{word-spacing:13.666579pt;}
.ws12{word-spacing:13.873810pt;}
.ws2e{word-spacing:13.879123pt;}
.ws1b3{word-spacing:14.006650pt;}
.ws92{word-spacing:14.091667pt;}
.ws69{word-spacing:14.091720pt;}
.ws3e{word-spacing:14.303999pt;}
.ws66{word-spacing:14.729299pt;}
.ws174{word-spacing:15.303115pt;}
.ws63{word-spacing:15.314008pt;}
.ws71{word-spacing:15.366825pt;}
.ws1c5{word-spacing:15.409440pt;}
.ws73{word-spacing:15.738883pt;}
.ws142{word-spacing:16.216948pt;}
.ws1b5{word-spacing:16.217107pt;}
.ws8{word-spacing:16.306118pt;}
.ws6{word-spacing:16.354032pt;}
.ws7{word-spacing:16.354127pt;}
.ws179{word-spacing:16.578432pt;}
.ws12f{word-spacing:17.226585pt;}
.ws1b8{word-spacing:17.354218pt;}
.ws18b{word-spacing:17.853696pt;}
.ws4b{word-spacing:18.023625pt;}
.ws64{word-spacing:18.076867pt;}
.ws20{word-spacing:18.138043pt;}
.ws21{word-spacing:18.141562pt;}
.ws1f{word-spacing:18.141994pt;}
.ws1d{word-spacing:18.143764pt;}
.ws57{word-spacing:18.235638pt;}
.ws18a{word-spacing:18.331920pt;}
.ws19c{word-spacing:18.384737pt;}
.ws161{word-spacing:18.820771pt;}
.ws13c{word-spacing:18.874013pt;}
.ws184{word-spacing:18.916416pt;}
.ws1ac{word-spacing:18.969286pt;}
.ws15f{word-spacing:18.969552pt;}
.ws169{word-spacing:18.969818pt;}
.ws68{word-spacing:19.086451pt;}
.wsd2{word-spacing:19.394640pt;}
.wsaa{word-spacing:19.394853pt;}
.wsbe{word-spacing:19.447670pt;}
.ws103{word-spacing:19.447776pt;}
.ws1a4{word-spacing:19.585930pt;}
.ws199{word-spacing:19.612673pt;}
.ws19f{word-spacing:19.830302pt;}
.ws65{word-spacing:20.043112pt;}
.ws1a1{word-spacing:20.202307pt;}
.ws1c4{word-spacing:20.669904pt;}
.ws178{word-spacing:20.670063pt;}
.ws17b{word-spacing:20.754762pt;}
.ws1bc{word-spacing:21.097791pt;}
.ws175{word-spacing:21.360672pt;}
.ws198{word-spacing:21.892032pt;}
.ws197{word-spacing:21.945274pt;}
.ws170{word-spacing:22.006297pt;}
.ws53{word-spacing:22.327907pt;}
.ws52{word-spacing:22.380671pt;}
.ws72{word-spacing:22.699646pt;}
.ws191{word-spacing:22.954752pt;}
.ws1ab{word-spacing:23.220432pt;}
.ws5{word-spacing:23.272400pt;}
.ws16f{word-spacing:23.273781pt;}
.ws4{word-spacing:23.336160pt;}
.ws1c3{word-spacing:23.911147pt;}
.ws160{word-spacing:23.996218pt;}
.ws1a3{word-spacing:24.844334pt;}
.ws19e{word-spacing:25.271482pt;}
.ws16e{word-spacing:26.249290pt;}
.ws163{word-spacing:26.302054pt;}
.ws1b6{word-spacing:26.897443pt;}
.ws6d{word-spacing:27.109987pt;}
.ws19d{word-spacing:27.875092pt;}
.ws1b2{word-spacing:28.162080pt;}
.ws55{word-spacing:29.713492pt;}
.ws1a{word-spacing:31.070880pt;}
.ws162{word-spacing:32.621828pt;}
.ws1a2{word-spacing:34.804080pt;}
.ws133{word-spacing:35.243741pt;}
.ws13a{word-spacing:35.252842pt;}
.ws137{word-spacing:35.256571pt;}
.ws138{word-spacing:35.256953pt;}
.ws1bd{word-spacing:35.314186pt;}
.ws1a0{word-spacing:35.558611pt;}
.ws11e{word-spacing:36.443841pt;}
.ws11c{word-spacing:36.453251pt;}
.ws115{word-spacing:36.455526pt;}
.ws11b{word-spacing:36.457502pt;}
.ws118{word-spacing:36.457898pt;}
.ws134{word-spacing:38.965356pt;}
.ws192{word-spacing:39.905136pt;}
.ws116{word-spacing:40.331873pt;}
.ws1b7{word-spacing:40.967856pt;}
.ws18e{word-spacing:46.897727pt;}
.ws9e{word-spacing:58.396464pt;}
.ws22{word-spacing:70.072240pt;}
.ws136{word-spacing:80.720886pt;}
.ws135{word-spacing:406.045508pt;}
._25{margin-left:-20.875277pt;}
._d{margin-left:-19.607450pt;}
._32{margin-left:-15.128049pt;}
._1{margin-left:-9.231273pt;}
._c{margin-left:-6.164307pt;}
._3{margin-left:-4.638543pt;}
._f{margin-left:-3.651672pt;}
._2{margin-left:-1.912800pt;}
._a{margin-left:-1.008670pt;}
._0{width:1.555625pt;}
._2a{width:3.331038pt;}
._14{width:12.934813pt;}
._29{width:14.027904pt;}
._23{width:15.159524pt;}
._2b{width:16.842794pt;}
._9{width:17.977124pt;}
._3f{width:18.907994pt;}
._16{width:20.002825pt;}
._b{width:21.748335pt;}
._6{width:23.365159pt;}
._e{width:24.336192pt;}
._10{width:25.558416pt;}
._12{width:26.553319pt;}
._8{width:28.267565pt;}
._19{width:29.490915pt;}
._13{width:31.031328pt;}
._7{width:32.572856pt;}
._17{width:33.886735pt;}
._3d{width:34.857120pt;}
._15{width:35.813664pt;}
._5{width:37.576309pt;}
._4{width:38.934751pt;}
._21{width:40.436390pt;}
._1e{width:41.870955pt;}
._28{width:43.503810pt;}
._1a{width:44.527925pt;}
._11{width:45.736966pt;}
._22{width:46.691916pt;}
._1f{width:48.179894pt;}
._20{width:50.320174pt;}
._1b{width:52.164840pt;}
._18{width:54.343416pt;}
._24{width:56.270991pt;}
._27{width:58.449600pt;}
._1c{width:60.627963pt;}
._26{width:70.136000pt;}
._1d{width:75.398772pt;}
._3e{width:88.896528pt;}
._38{width:91.742303pt;}
._2f{width:94.444381pt;}
._2e{width:98.081830pt;}
._2d{width:113.054064pt;}
._35{width:134.603576pt;}
._31{width:140.515951pt;}
._33{width:164.963688pt;}
._30{width:203.431387pt;}
._3c{width:312.092803pt;}
._39{width:343.491753pt;}
._3b{width:366.343723pt;}
._2c{width:368.395683pt;}
._34{width:383.131671pt;}
._37{width:393.934199pt;}
._36{width:397.092259pt;}
._3a{width:416.824542pt;}
.fs6{font-size:31.882667pt;}
.fs9{font-size:37.194667pt;}
.fsc{font-size:38.231352pt;}
.fsb{font-size:39.533184pt;}
.fs5{font-size:42.506667pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fs7{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;}
.y56{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y55{bottom:37.226074pt;}
.y57{bottom:38.216555pt;}
.y3d{bottom:94.488000pt;}
.yde{bottom:101.794667pt;}
.y3c{bottom:110.428000pt;}
.y18f{bottom:120.594667pt;}
.y3b{bottom:126.368000pt;}
.y18e{bottom:136.534667pt;}
.y54{bottom:142.308000pt;}
.y3a{bottom:142.309333pt;}
.y1c1{bottom:143.441333pt;}
.y1f6{bottom:148.814667pt;}
.y18d{bottom:152.474667pt;}
.y53{bottom:158.249333pt;}
.y157{bottom:158.994667pt;}
.y1c0{bottom:159.381333pt;}
.y39{bottom:162.249333pt;}
.y1f5{bottom:164.754667pt;}
.y18c{bottom:168.414667pt;}
.y8c{bottom:174.189333pt;}
.y156{bottom:174.934667pt;}
.y1bf{bottom:175.321333pt;}
.y38{bottom:178.189333pt;}
.y52{bottom:178.230667pt;}
.y1f4{bottom:180.696000pt;}
.y18b{bottom:184.354667pt;}
.y8b{bottom:190.129333pt;}
.y155{bottom:190.874667pt;}
.y1be{bottom:191.261333pt;}
.y37{bottom:194.129333pt;}
.y51{bottom:194.170667pt;}
.y1f3{bottom:196.636000pt;}
.y18a{bottom:200.294667pt;}
.y8a{bottom:206.069333pt;}
.y154{bottom:206.814667pt;}
.y1bd{bottom:207.201333pt;}
.y36{bottom:210.069333pt;}
.y50{bottom:210.110667pt;}
.y1f2{bottom:212.576000pt;}
.y189{bottom:216.236000pt;}
.yac{bottom:222.009333pt;}
.y153{bottom:222.756000pt;}
.y1bc{bottom:224.274667pt;}
.y89{bottom:224.934667pt;}
.y35{bottom:226.009333pt;}
.y4f{bottom:226.050667pt;}
.y1f1{bottom:228.516000pt;}
.y11f{bottom:229.969333pt;}
.yab{bottom:237.950667pt;}
.y152{bottom:238.696000pt;}
.y1bb{bottom:240.214667pt;}
.y88{bottom:240.874667pt;}
.y188{bottom:241.881333pt;}
.y34{bottom:241.949333pt;}
.y4e{bottom:241.990667pt;}
.y1f0{bottom:245.194667pt;}
.y11e{bottom:245.909333pt;}
.yaa{bottom:253.890667pt;}
.y151{bottom:254.636000pt;}
.y1ba{bottom:256.154667pt;}
.y87{bottom:256.814667pt;}
.y187{bottom:257.821333pt;}
.y33{bottom:257.890667pt;}
.y4d{bottom:257.930667pt;}
.y1ef{bottom:261.134667pt;}
.y11d{bottom:261.960000pt;}
.yf1{bottom:263.921333pt;}
.ya9{bottom:269.830667pt;}
.y150{bottom:270.576000pt;}
.y1b9{bottom:272.094667pt;}
.y86{bottom:272.754667pt;}
.y186{bottom:273.761333pt;}
.y32{bottom:273.830667pt;}
.y4c{bottom:273.872000pt;}
.y1ee{bottom:277.074667pt;}
.y11c{bottom:277.900000pt;}
.yf0{bottom:279.861333pt;}
.ya8{bottom:285.770667pt;}
.y14f{bottom:287.261333pt;}
.y1b8{bottom:288.034667pt;}
.y85{bottom:288.696000pt;}
.y185{bottom:289.701333pt;}
.y31{bottom:289.770667pt;}
.y4b{bottom:289.812000pt;}
.y1ed{bottom:293.014667pt;}
.y11b{bottom:293.840000pt;}
.yef{bottom:295.801333pt;}
.y14e{bottom:303.202667pt;}
.y1b7{bottom:303.976000pt;}
.y84{bottom:304.636000pt;}
.y184{bottom:305.641333pt;}
.y30{bottom:305.710667pt;}
.y4a{bottom:305.752000pt;}
.y1ec{bottom:308.954667pt;}
.y11a{bottom:309.780000pt;}
.yee{bottom:311.742667pt;}
.y14d{bottom:319.142667pt;}
.y83{bottom:320.576000pt;}
.y1b6{bottom:321.048000pt;}
.y183{bottom:321.582667pt;}
.y2f{bottom:321.650667pt;}
.y49{bottom:321.692000pt;}
.ya7{bottom:322.122667pt;}
.y1eb{bottom:325.633333pt;}
.y119{bottom:325.721333pt;}
.yed{bottom:327.682667pt;}
.y14c{bottom:335.082667pt;}
.y82{bottom:336.516000pt;}
.y1b5{bottom:336.988000pt;}
.y182{bottom:337.522667pt;}
.y2e{bottom:337.590667pt;}
.y48{bottom:337.632000pt;}
.y1ea{bottom:341.573333pt;}
.y118{bottom:341.661333pt;}
.yec{bottom:343.622667pt;}
.y14b{bottom:351.022667pt;}
.y81{bottom:352.456000pt;}
.y1b4{bottom:352.928000pt;}
.y181{bottom:353.462667pt;}
.y2d{bottom:353.532000pt;}
.y1e9{bottom:357.513333pt;}
.y117{bottom:357.601333pt;}
.y47{bottom:357.613333pt;}
.yeb{bottom:359.562667pt;}
.y14a{bottom:366.962667pt;}
.y80{bottom:368.396000pt;}
.y1b3{bottom:368.868000pt;}
.y180{bottom:369.402667pt;}
.ycd{bottom:369.653333pt;}
.y1e8{bottom:373.454667pt;}
.y2c{bottom:373.472000pt;}
.y116{bottom:373.541333pt;}
.y46{bottom:373.554667pt;}
.yea{bottom:375.502667pt;}
.y149{bottom:382.902667pt;}
.y7f{bottom:384.337333pt;}
.y1b2{bottom:384.809333pt;}
.y17f{bottom:385.342667pt;}
.ycc{bottom:385.594667pt;}
.y2b{bottom:389.412000pt;}
.y115{bottom:389.481333pt;}
.y45{bottom:389.494667pt;}
.y1e7{bottom:390.132000pt;}
.ye9{bottom:391.442667pt;}
.y148{bottom:398.844000pt;}
.y17e{bottom:401.282667pt;}
.ycb{bottom:401.534667pt;}
.y1b1{bottom:401.881333pt;}
.y7e{bottom:403.201333pt;}
.y2a{bottom:405.352000pt;}
.y114{bottom:405.422667pt;}
.y44{bottom:405.434667pt;}
.y1e6{bottom:406.072000pt;}
.ye8{bottom:407.384000pt;}
.y147{bottom:414.784000pt;}
.y17d{bottom:417.224000pt;}
.yca{bottom:417.474667pt;}
.y1b0{bottom:417.821333pt;}
.y7d{bottom:419.142667pt;}
.y29{bottom:421.292000pt;}
.y113{bottom:421.362667pt;}
.y43{bottom:421.374667pt;}
.y1e5{bottom:422.013333pt;}
.ye7{bottom:423.324000pt;}
.ya6{bottom:425.054667pt;}
.y146{bottom:430.724000pt;}
.y17c{bottom:433.164000pt;}
.yc9{bottom:433.414667pt;}
.y1af{bottom:433.761333pt;}
.y7c{bottom:435.082667pt;}
.y28{bottom:437.232000pt;}
.y112{bottom:437.302667pt;}
.y42{bottom:437.314667pt;}
.y1e4{bottom:437.953333pt;}
.ye6{bottom:439.264000pt;}
.ya5{bottom:440.994667pt;}
.y145{bottom:446.664000pt;}
.y17b{bottom:449.104000pt;}
.yc8{bottom:449.354667pt;}
.y1ae{bottom:449.702667pt;}
.y7b{bottom:451.022667pt;}
.y27{bottom:453.173333pt;}
.y41{bottom:453.254667pt;}
.y111{bottom:453.352000pt;}
.y1e3{bottom:454.630667pt;}
.ye5{bottom:455.204000pt;}
.ya4{bottom:456.934667pt;}
.y17a{bottom:465.044000pt;}
.yc7{bottom:465.294667pt;}
.y1ad{bottom:465.642667pt;}
.y7a{bottom:466.962667pt;}
.y26{bottom:469.113333pt;}
.y40{bottom:469.196000pt;}
.y110{bottom:469.292000pt;}
.ydd{bottom:469.934667pt;}
.y1e2{bottom:470.572000pt;}
.ye4{bottom:471.144000pt;}
.y144{bottom:472.570667pt;}
.ya3{bottom:472.874667pt;}
.yc6{bottom:481.236000pt;}
.y1ac{bottom:482.714667pt;}
.y79{bottom:482.902667pt;}
.y25{bottom:485.053333pt;}
.y3f{bottom:485.136000pt;}
.y10f{bottom:485.233333pt;}
.ydc{bottom:485.876000pt;}
.y1e1{bottom:486.512000pt;}
.ye3{bottom:487.084000pt;}
.ya2{bottom:488.816000pt;}
.y179{bottom:489.562667pt;}
.yc5{bottom:497.176000pt;}
.y1ab{bottom:498.654667pt;}
.y78{bottom:498.842667pt;}
.y3e{bottom:501.076000pt;}
.y10e{bottom:501.173333pt;}
.y1e0{bottom:502.452000pt;}
.ye2{bottom:503.025333pt;}
.ya1{bottom:504.756000pt;}
.y143{bottom:512.484000pt;}
.yc4{bottom:513.116000pt;}
.y1aa{bottom:514.594667pt;}
.y77{bottom:514.784000pt;}
.y24{bottom:517.016000pt;}
.y10d{bottom:517.113333pt;}
.y1df{bottom:518.392000pt;}
.ye1{bottom:518.965333pt;}
.ya0{bottom:520.696000pt;}
.y178{bottom:527.978667pt;}
.y142{bottom:528.425333pt;}
.y1a9{bottom:530.536000pt;}
.y10c{bottom:533.053333pt;}
.y76{bottom:533.648000pt;}
.y1de{bottom:535.070667pt;}
.y9f{bottom:536.636000pt;}
.yc3{bottom:537.634667pt;}
.y177{bottom:543.920000pt;}
.y141{bottom:544.365333pt;}
.y1a8{bottom:546.476000pt;}
.y10b{bottom:548.993333pt;}
.y75{bottom:549.589333pt;}
.y1dd{bottom:551.010667pt;}
.y176{bottom:559.860000pt;}
.y140{bottom:560.305333pt;}
.y9e{bottom:561.154667pt;}
.ye0{bottom:561.956000pt;}
.y1a7{bottom:563.548000pt;}
.y10a{bottom:564.934667pt;}
.y74{bottom:565.529333pt;}
.y1dc{bottom:566.950667pt;}
.y175{bottom:575.800000pt;}
.y13f{bottom:576.245333pt;}
.ydf{bottom:577.897333pt;}
.y1a6{bottom:579.488000pt;}
.y109{bottom:580.874667pt;}
.y73{bottom:581.469333pt;}
.y1db{bottom:582.890667pt;}
.y20{bottom:588.020000pt;}
.y174{bottom:591.740000pt;}
.yc2{bottom:591.848000pt;}
.y13e{bottom:592.185333pt;}
.y1a5{bottom:595.429333pt;}
.y9d{bottom:596.210667pt;}
.y108{bottom:596.814667pt;}
.y72{bottom:597.409333pt;}
.y23{bottom:598.646667pt;}
.y1da{bottom:599.569333pt;}
.y1f{bottom:603.960000pt;}
.y173{bottom:607.680000pt;}
.y13d{bottom:608.125333pt;}
.y22{bottom:609.273333pt;}
.y1a4{bottom:611.369333pt;}
.y9c{bottom:612.150667pt;}
.y107{bottom:612.754667pt;}
.y71{bottom:613.349333pt;}
.y1d9{bottom:615.509333pt;}
.y21{bottom:619.901333pt;}
.y172{bottom:623.621333pt;}
.y13c{bottom:624.066667pt;}
.y1a3{bottom:627.309333pt;}
.y9b{bottom:628.090667pt;}
.y106{bottom:628.694667pt;}
.y70{bottom:629.290667pt;}
.y1d8{bottom:631.449333pt;}
.y1e{bottom:635.841333pt;}
.y171{bottom:639.561333pt;}
.y13b{bottom:640.006667pt;}
.y9a{bottom:644.030667pt;}
.y1a2{bottom:644.381333pt;}
.y105{bottom:644.634667pt;}
.y6f{bottom:645.230667pt;}
.y1d7{bottom:647.389333pt;}
.y1d{bottom:651.781333pt;}
.y170{bottom:655.501333pt;}
.y13a{bottom:655.946667pt;}
.y99{bottom:659.970667pt;}
.y1a1{bottom:660.321333pt;}
.y104{bottom:660.576000pt;}
.y6e{bottom:661.170667pt;}
.y1d6{bottom:663.330667pt;}
.y1c{bottom:667.721333pt;}
.y16f{bottom:671.441333pt;}
.y98{bottom:675.910667pt;}
.y1a0{bottom:676.262667pt;}
.y103{bottom:676.516000pt;}
.y1d5{bottom:680.008000pt;}
.y6d{bottom:680.036000pt;}
.y1b{bottom:683.661333pt;}
.y16e{bottom:687.381333pt;}
.y97{bottom:691.852000pt;}
.y102{bottom:692.456000pt;}
.y19f{bottom:693.334667pt;}
.y1d4{bottom:695.948000pt;}
.y6c{bottom:695.976000pt;}
.y1a{bottom:699.601333pt;}
.y139{bottom:701.241643pt;}
.y16d{bottom:703.321333pt;}
.yc1{bottom:706.262667pt;}
.y96{bottom:707.792000pt;}
.y101{bottom:708.396000pt;}
.y19e{bottom:709.274667pt;}
.y1d3{bottom:711.889333pt;}
.y6b{bottom:711.916000pt;}
.y138{bottom:713.101003pt;}
.y19{bottom:715.542667pt;}
.y16c{bottom:719.262667pt;}
.yc0{bottom:722.202667pt;}
.y95{bottom:723.732000pt;}
.y137{bottom:724.961355pt;}
.y1d2{bottom:727.829333pt;}
.y6a{bottom:727.856000pt;}
.y18{bottom:731.482667pt;}
.y19d{bottom:732.248000pt;}
.y100{bottom:733.120000pt;}
.y16b{bottom:735.202667pt;}
.y136{bottom:736.820715pt;}
.ybf{bottom:738.142667pt;}
.y94{bottom:739.672000pt;}
.y1d1{bottom:743.769333pt;}
.y69{bottom:743.796000pt;}
.y17{bottom:747.422667pt;}
.y135{bottom:748.680075pt;}
.y16a{bottom:751.142667pt;}
.ybe{bottom:754.082667pt;}
.y93{bottom:755.612000pt;}
.y68{bottom:759.737333pt;}
.y1d0{bottom:760.448000pt;}
.y134{bottom:760.539435pt;}
.y16{bottom:763.362667pt;}
.yff{bottom:769.660000pt;}
.ybd{bottom:770.022667pt;}
.y92{bottom:771.553333pt;}
.y19c{bottom:771.908000pt;}
.y133{bottom:772.398795pt;}
.y67{bottom:775.677333pt;}
.y1cf{bottom:776.388000pt;}
.ydb{bottom:777.522667pt;}
.y15{bottom:779.302667pt;}
.y132{bottom:784.258155pt;}
.yfe{bottom:785.600000pt;}
.ybc{bottom:785.962667pt;}
.y91{bottom:787.493333pt;}
.y19b{bottom:787.848000pt;}
.y66{bottom:791.617333pt;}
.y1ce{bottom:792.328000pt;}
.yda{bottom:793.462667pt;}
.y169{bottom:793.864041pt;}
.y14{bottom:795.242667pt;}
.y131{bottom:796.118507pt;}
.yfd{bottom:801.540000pt;}
.ybb{bottom:801.904000pt;}
.y19a{bottom:803.789333pt;}
.y168{bottom:805.332871pt;}
.y65{bottom:807.557333pt;}
.y130{bottom:807.977867pt;}
.y1cd{bottom:808.268000pt;}
.yd9{bottom:809.402667pt;}
.y13{bottom:811.184000pt;}
.y90{bottom:812.012000pt;}
.y167{bottom:816.801701pt;}
.yfc{bottom:817.480000pt;}
.yba{bottom:817.844000pt;}
.y199{bottom:819.729333pt;}
.y12f{bottom:820.232133pt;}
.y64{bottom:823.497333pt;}
.y1cc{bottom:824.946667pt;}
.yd8{bottom:825.342667pt;}
.y12{bottom:827.124000pt;}
.y166{bottom:828.270531pt;}
.yfb{bottom:833.420000pt;}
.yb9{bottom:833.784000pt;}
.y12e{bottom:834.242667pt;}
.y198{bottom:835.669333pt;}
.y8f{bottom:836.530667pt;}
.y63{bottom:839.437333pt;}
.y165{bottom:839.740321pt;}
.y1cb{bottom:840.886667pt;}
.yd7{bottom:841.284000pt;}
.y11{bottom:843.064000pt;}
.yfa{bottom:849.360000pt;}
.yb8{bottom:849.724000pt;}
.y12d{bottom:850.182667pt;}
.y164{bottom:851.209151pt;}
.y197{bottom:851.609333pt;}
.y1ca{bottom:856.826667pt;}
.yd6{bottom:857.224000pt;}
.y62{bottom:858.302667pt;}
.y10{bottom:859.004000pt;}
.y163{bottom:862.712933pt;}
.yf9{bottom:865.301333pt;}
.yb7{bottom:865.664000pt;}
.y196{bottom:867.549333pt;}
.y1c9{bottom:872.766667pt;}
.yd5{bottom:873.164000pt;}
.y61{bottom:874.242667pt;}
.y162{bottom:874.565200pt;}
.yf{bottom:874.944000pt;}
.yb6{bottom:881.604000pt;}
.y195{bottom:883.490667pt;}
.y12c{bottom:884.777627pt;}
.y1c8{bottom:888.706667pt;}
.yd4{bottom:889.104000pt;}
.yf8{bottom:890.024000pt;}
.y8e{bottom:890.182667pt;}
.y60{bottom:890.184000pt;}
.y161{bottom:890.872000pt;}
.ye{bottom:890.885333pt;}
.y12b{bottom:896.636987pt;}
.yb5{bottom:897.545333pt;}
.y194{bottom:899.430667pt;}
.yd3{bottom:905.044000pt;}
.y1c7{bottom:905.385333pt;}
.y5f{bottom:906.124000pt;}
.yd{bottom:906.825333pt;}
.y12a{bottom:908.497339pt;}
.yb4{bottom:913.485333pt;}
.y129{bottom:920.356699pt;}
.yd2{bottom:920.985333pt;}
.y1c6{bottom:921.325333pt;}
.y5e{bottom:922.064000pt;}
.y160{bottom:923.348150pt;}
.y193{bottom:926.589333pt;}
.yf7{bottom:929.221333pt;}
.yb3{bottom:929.425333pt;}
.y128{bottom:932.216059pt;}
.yb{bottom:934.684000pt;}
.y15f{bottom:934.816980pt;}
.yd1{bottom:936.925333pt;}
.y1c5{bottom:937.265333pt;}
.y5d{bottom:938.004000pt;}
.yc{bottom:938.433333pt;}
.y192{bottom:942.529333pt;}
.y127{bottom:944.075419pt;}
.yf6{bottom:945.161333pt;}
.yb2{bottom:945.365333pt;}
.y15e{bottom:946.286769pt;}
.yd0{bottom:952.865333pt;}
.y1c4{bottom:953.206667pt;}
.y5c{bottom:953.944000pt;}
.y126{bottom:955.934779pt;}
.ya{bottom:956.366667pt;}
.y15d{bottom:957.755599pt;}
.y191{bottom:958.469333pt;}
.yf5{bottom:961.101333pt;}
.yb1{bottom:961.305333pt;}
.y9{bottom:965.900000pt;}
.y125{bottom:967.795131pt;}
.ycf{bottom:968.805333pt;}
.y1c3{bottom:969.146667pt;}
.y15c{bottom:969.224429pt;}
.y5b{bottom:969.884000pt;}
.y190{bottom:974.409333pt;}
.yf4{bottom:977.041333pt;}
.yb0{bottom:977.245333pt;}
.y124{bottom:979.654491pt;}
.y15b{bottom:980.693259pt;}
.yce{bottom:984.745333pt;}
.y1c2{bottom:985.086667pt;}
.y8{bottom:985.590667pt;}
.y8d{bottom:985.824000pt;}
.y5a{bottom:985.825333pt;}
.y123{bottom:991.513867pt;}
.y15a{bottom:992.202267pt;}
.yf3{bottom:992.981333pt;}
.yaf{bottom:993.186667pt;}
.y6{bottom:999.108000pt;}
.y59{bottom:1001.765333pt;}
.y122{bottom:1003.769067pt;}
.y159{bottom:1004.054533pt;}
.y7{bottom:1004.893333pt;}
.yf2{bottom:1008.922667pt;}
.yae{bottom:1009.126667pt;}
.y58{bottom:1017.705333pt;}
.y121{bottom:1017.778667pt;}
.y5{bottom:1033.645333pt;}
.y158{bottom:1033.718667pt;}
.y120{bottom:1033.720000pt;}
.yad{bottom:1036.345278pt;}
.y4{bottom:1037.313306pt;}
.y3{bottom:1048.836099pt;}
.h10{height:11.733399pt;}
.h8{height:22.445397pt;}
.hd{height:26.631381pt;}
.h16{height:28.673514pt;}
.h15{height:29.649888pt;}
.ha{height:29.924693pt;}
.hb{height:30.288533pt;}
.h14{height:30.549524pt;}
.h4{height:32.000200pt;}
.h9{height:34.238165pt;}
.h13{height:38.037520pt;}
.hc{height:38.045376pt;}
.h3{height:39.843636pt;}
.hf{height:39.852000pt;}
.h7{height:40.381333pt;}
.h17{height:42.472043pt;}
.h19{height:42.477376pt;}
.h11{height:44.354167pt;}
.he{height:45.652160pt;}
.h18{height:51.480043pt;}
.h6{height:53.066027pt;}
.h5{height:54.706080pt;}
.h2{height:1062.715892pt;}
.h12{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.931987pt;}
.w5{width:5.933333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.167079pt;}
.x11{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x1b{left:82.232000pt;}
.x1a{left:84.446667pt;}
.x15{left:86.384667pt;}
.xb{left:88.874667pt;}
.x19{left:102.157333pt;}
.x2{left:111.874558pt;}
.x12{left:146.962667pt;}
.x14{left:167.450667pt;}
.xf{left:185.090357pt;}
.x13{left:217.854667pt;}
.x6{left:295.764000pt;}
.x5{left:322.281877pt;}
.xc{left:403.492000pt;}
.x16{left:404.812000pt;}
.x17{left:411.609333pt;}
.x10{left:414.424000pt;}
.xd{left:416.776000pt;}
.x18{left:430.058667pt;}
.x1e{left:459.556000pt;}
.x1f{left:474.138667pt;}
.x1c{left:515.753333pt;}
.x1d{left:529.981333pt;}
.x7{left:599.454667pt;}
.xa{left:612.413333pt;}
.x8{left:615.249333pt;}
.x9{left:627.532000pt;}
.xe{left:715.769369pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  