
    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_345559eac1dd1fb58f3ac38f.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_ee6b5d1f3d4d67221375d10a.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_df4c324892cc467303254d53.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_dbbd469fba6ad08e21fc911e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c4d03b7f015ba69f300cbd87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dacb6165bfe1840f7a8a2fa2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0aa103d6226f8e670377d543.woff2')format("woff");}.ffc{font-family:ffc;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_508f525a8ecee9b91ec5879d.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_382ef01e8b3094dd93864866.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_46dfc28398b5b321c0ee5db1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.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_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_bf9e2ed9b8ecd268e0b2acdd.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_d71e2fe63b2d8da541eeae95.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.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_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_8f7cf50fde9e2092efabdf25.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_11a25d5a22c844119ece503d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.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_b14a5f697f7b9b4c457e0885.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_ad0a8bb2f08f04ac720f0bd6.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_745033452a59f1608561cf7c.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_40136f04dca42d12c3d3c7d1.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_f7f515e9d18042c7424d22d5.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.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_885967f949a0b2e7c06f704b.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_9a0f61dd791e9d7652750341.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_04b18a737c09018346bf5db7.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_8f7cf50fde9e2092efabdf25.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_11a25d5a22c844119ece503d.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_6d3f7794aba7e63892aed57b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.899000;font-style:normal;font-weight: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_0d94b70f2536d62e06924fc6.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.697000;font-style:normal;font-weight: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_52cadd89fcd2dc2fadd4778b.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.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_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_40136f04dca42d12c3d3c7d1.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_f7f515e9d18042c7424d22d5.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_8f7cf50fde9e2092efabdf25.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_11a25d5a22c844119ece503d.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_9478ba32977d01de7a93ff5c.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_f27afb1b43a045c1d70cfe02.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_7eec177e9e53d36a33dac3a9.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_7bdf9253a58cd57961f124b9.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_a227bfefc3b4082170c0f7bd.woff2')format("woff");}.ff44{font-family:ff44;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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.980000px;}
.v1{vertical-align:26.028000px;}
.lsc{letter-spacing:-0.338030px;}
.lsa{letter-spacing:-0.089291px;}
.lsb{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.038268px;}
.lse{letter-spacing:0.057000px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.664504px;}
.ls10{letter-spacing:0.666549px;}
.ls11{letter-spacing:0.693531px;}
.ls3{letter-spacing:0.693663px;}
.ls4{letter-spacing:2.985234px;}
.ls6{letter-spacing:2.987332px;}
.ls5{letter-spacing:2.991234px;}
.ls14{letter-spacing:6.432120px;}
.ls18{letter-spacing:18.112734px;}
.ls15{letter-spacing:18.172512px;}
.ls8{letter-spacing:19.869113px;}
.ls9{letter-spacing:19.915672px;}
.ls13{letter-spacing:26.994120px;}
.lsf{letter-spacing:28.962011px;}
.ls19{letter-spacing:30.183000px;}
.ls7{letter-spacing:32.869985px;}
.ls17{letter-spacing:36.643914px;}
.ls16{letter-spacing:36.703692px;}
.ls12{letter-spacing:238.877869px;}
.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;}
.ws1fb{word-spacing:-19.093093px;}
.ws46{word-spacing:-16.606328px;}
.ws5e{word-spacing:-16.307167px;}
.ws13c{word-spacing:-16.136369px;}
.ws169{word-spacing:-3.216176px;}
.wsab{word-spacing:-3.096202px;}
.ws2f{word-spacing:-2.977303px;}
.ws2d{word-spacing:-2.976765px;}
.ws2e{word-spacing:-2.917346px;}
.ws16f{word-spacing:-2.857388px;}
.wsf0{word-spacing:-2.737952px;}
.ws119{word-spacing:-2.618516px;}
.ws72{word-spacing:-2.618276px;}
.wsaa{word-spacing:-2.558498px;}
.wsdc{word-spacing:-2.438942px;}
.ws204{word-spacing:-2.379105px;}
.ws103{word-spacing:-2.319386px;}
.ws66{word-spacing:-2.259728px;}
.wse9{word-spacing:-2.199711px;}
.ws20e{word-spacing:-2.020496px;}
.ws83{word-spacing:-1.960958px;}
.ws7b{word-spacing:-1.900940px;}
.ws188{word-spacing:-1.841162px;}
.ws149{word-spacing:-1.781564px;}
.ws107{word-spacing:-1.781504px;}
.ws30{word-spacing:-1.721547px;}
.ws245{word-spacing:-1.637917px;}
.ws1a5{word-spacing:-1.602110px;}
.ws78{word-spacing:-1.602050px;}
.ws12a{word-spacing:-1.542153px;}
.wsb4{word-spacing:-1.482734px;}
.ws222{word-spacing:-1.458464px;}
.wse8{word-spacing:-1.422716px;}
.ws26c{word-spacing:-1.362938px;}
.wsa7{word-spacing:-1.362699px;}
.wsa4{word-spacing:-1.303340px;}
.ws203{word-spacing:-1.243382px;}
.wsea{word-spacing:-1.243323px;}
.wsbb{word-spacing:-1.183903px;}
.wsd6{word-spacing:-1.183306px;}
.ws5c{word-spacing:-1.167161px;}
.ws25e{word-spacing:-1.159693px;}
.ws28{word-spacing:-1.063929px;}
.ws57{word-spacing:-1.020469px;}
.wsc2{word-spacing:-1.004510px;}
.ws10c{word-spacing:-1.004270px;}
.ws5b{word-spacing:-1.001335px;}
.wsa1{word-spacing:-0.944552px;}
.wscc{word-spacing:-0.885073px;}
.wse7{word-spacing:-0.705739px;}
.ws164{word-spacing:-0.645722px;}
.ws14f{word-spacing:-0.645662px;}
.ws55{word-spacing:-0.612281px;}
.ws193{word-spacing:-0.526046px;}
.ws58{word-spacing:-0.503856px;}
.ws5d{word-spacing:-0.465589px;}
.ws115{word-spacing:-0.406909px;}
.wsef{word-spacing:-0.406311px;}
.wsaf{word-spacing:-0.406251px;}
.ws12f{word-spacing:-0.346952px;}
.wsae{word-spacing:-0.346892px;}
.ws202{word-spacing:-0.322801px;}
.ws135{word-spacing:-0.286934px;}
.ws136{word-spacing:-0.286875px;}
.ws217{word-spacing:-0.227156px;}
.ws33{word-spacing:-0.226858px;}
.ws7a{word-spacing:-0.107600px;}
.ws3c{word-spacing:-0.107481px;}
.ws5{word-spacing:-0.071730px;}
.ws240{word-spacing:-0.059778px;}
.wsa5{word-spacing:-0.048121px;}
.ws9f{word-spacing:-0.048062px;}
.ws125{word-spacing:-0.047822px;}
.ws54{word-spacing:0.000000px;}
.wseb{word-spacing:0.011896px;}
.wsb2{word-spacing:0.011956px;}
.ws5a{word-spacing:0.044646px;}
.wsd1{word-spacing:0.071734px;}
.ws41{word-spacing:0.071853px;}
.ws1b0{word-spacing:0.191290px;}
.ws15e{word-spacing:0.191349px;}
.ws121{word-spacing:0.250649px;}
.ws56{word-spacing:0.293385px;}
.ws1ef{word-spacing:0.310666px;}
.wsc8{word-spacing:0.310726px;}
.ws1ee{word-spacing:0.334757px;}
.wsfa{word-spacing:0.370683px;}
.ws1cc{word-spacing:0.430103px;}
.wsc3{word-spacing:0.490060px;}
.ws1b5{word-spacing:0.549479px;}
.ws220{word-spacing:0.550137px;}
.ws159{word-spacing:0.609496px;}
.ws8e{word-spacing:0.609556px;}
.ws1af{word-spacing:0.669454px;}
.ws1db{word-spacing:0.669514px;}
.ws59{word-spacing:0.714328px;}
.ws113{word-spacing:0.728873px;}
.ws118{word-spacing:0.728993px;}
.wsb3{word-spacing:0.729471px;}
.ws1cb{word-spacing:0.788890px;}
.ws15a{word-spacing:0.788950px;}
.ws86{word-spacing:0.848848px;}
.ws19a{word-spacing:0.908865px;}
.ws1de{word-spacing:0.968284px;}
.ws1a8{word-spacing:1.028301px;}
.ws4a{word-spacing:1.088258px;}
.ws1c5{word-spacing:1.147678px;}
.ws1ab{word-spacing:1.207575px;}
.ws79{word-spacing:1.207814px;}
.ws19f{word-spacing:1.267054px;}
.ws116{word-spacing:1.327072px;}
.ws20d{word-spacing:1.410761px;}
.ws99{word-spacing:1.446448px;}
.ws1bc{word-spacing:1.506406px;}
.ws19e{word-spacing:1.506465px;}
.ws137{word-spacing:1.565885px;}
.ws16d{word-spacing:1.566184px;}
.ws22{word-spacing:1.625902px;}
.ws184{word-spacing:1.685740px;}
.ws26{word-spacing:1.745398px;}
.ws95{word-spacing:1.805415px;}
.ws1c0{word-spacing:1.924672px;}
.wsee{word-spacing:1.924852px;}
.ws1f0{word-spacing:1.984211px;}
.ws1df{word-spacing:1.984630px;}
.ws45{word-spacing:1.984689px;}
.ws14b{word-spacing:1.984809px;}
.ws215{word-spacing:2.008541px;}
.ws1ba{word-spacing:2.104066px;}
.wsd2{word-spacing:2.104186px;}
.ws1a3{word-spacing:2.163485px;}
.wsf4{word-spacing:2.164083px;}
.ws38{word-spacing:2.164203px;}
.wsbe{word-spacing:2.223502px;}
.wsbd{word-spacing:2.223622px;}
.ws1ae{word-spacing:2.282862px;}
.wsc1{word-spacing:2.283460px;}
.ws11e{word-spacing:2.283520px;}
.ws130{word-spacing:2.283639px;}
.ws4b{word-spacing:2.343058px;}
.ws122{word-spacing:2.343298px;}
.ws124{word-spacing:2.343477px;}
.ws14a{word-spacing:2.343656px;}
.ws268{word-spacing:2.367089px;}
.wsfc{word-spacing:2.402896px;}
.ws1a0{word-spacing:2.403076px;}
.ws11{word-spacing:2.456637px;}
.wsad{word-spacing:2.462854px;}
.ws1e3{word-spacing:2.522273px;}
.ws148{word-spacing:2.522452px;}
.ws26b{word-spacing:2.522632px;}
.wsdb{word-spacing:2.642247px;}
.ws69{word-spacing:2.701667px;}
.ws6e{word-spacing:2.701966px;}
.wsa3{word-spacing:2.702264px;}
.ws198{word-spacing:2.761684px;}
.ws1ac{word-spacing:2.821522px;}
.ws156{word-spacing:2.881060px;}
.ws87{word-spacing:2.881240px;}
.ws63{word-spacing:2.881300px;}
.ws64{word-spacing:2.881658px;}
.ws1c4{word-spacing:2.941078px;}
.ws39{word-spacing:3.001095px;}
.ws94{word-spacing:3.060454px;}
.ws14{word-spacing:3.114254px;}
.ws1bb{word-spacing:3.119874px;}
.ws1b8{word-spacing:3.120412px;}
.wsde{word-spacing:3.120471px;}
.ws1d8{word-spacing:3.179891px;}
.ws195{word-spacing:3.202617px;}
.ws1f3{word-spacing:3.204101px;}
.ws142{word-spacing:3.205898px;}
.ws4e{word-spacing:3.239848px;}
.ws4d{word-spacing:3.240087px;}
.ws141{word-spacing:3.265378px;}
.ws176{word-spacing:3.280052px;}
.ws170{word-spacing:3.289986px;}
.ws153{word-spacing:3.299267px;}
.ws37{word-spacing:3.299447px;}
.wse5{word-spacing:3.299746px;}
.ws27{word-spacing:3.299865px;}
.ws53{word-spacing:3.300044px;}
.ws1b7{word-spacing:3.312236px;}
.ws181{word-spacing:3.359284px;}
.wscd{word-spacing:3.359464px;}
.ws175{word-spacing:3.359524px;}
.ws1e6{word-spacing:3.359882px;}
.ws197{word-spacing:3.418704px;}
.ws23{word-spacing:3.419302px;}
.wsa6{word-spacing:3.478661px;}
.ws102{word-spacing:3.538858px;}
.ws44{word-spacing:3.598695px;}
.ws26f{word-spacing:3.622547px;}
.wsf8{word-spacing:3.658414px;}
.ws151{word-spacing:3.718311px;}
.ws114{word-spacing:3.718670px;}
.ws9a{word-spacing:3.777671px;}
.wscf{word-spacing:3.777970px;}
.ws167{word-spacing:3.778089px;}
.wsc{word-spacing:3.831770px;}
.ws84{word-spacing:3.837449px;}
.ws6b{word-spacing:3.896868px;}
.ws1bd{word-spacing:3.897107px;}
.ws61{word-spacing:3.897466px;}
.ws180{word-spacing:3.897526px;}
.ws173{word-spacing:3.948515px;}
.ws10f{word-spacing:3.956885px;}
.ws174{word-spacing:3.957304px;}
.ws9c{word-spacing:4.016304px;}
.ws9b{word-spacing:4.017082px;}
.ws158{word-spacing:4.017500px;}
.wsbc{word-spacing:4.076860px;}
.ws108{word-spacing:4.136638px;}
.ws19c{word-spacing:4.196296px;}
.ws1fc{word-spacing:4.220327px;}
.ws20{word-spacing:4.315673px;}
.ws6c{word-spacing:4.315972px;}
.ws259{word-spacing:4.339823px;}
.ws13a{word-spacing:4.375092px;}
.ws12b{word-spacing:4.375750px;}
.ws23c{word-spacing:4.435049px;}
.ws236{word-spacing:4.435528px;}
.ws16a{word-spacing:4.435707px;}
.ws25a{word-spacing:4.495066px;}
.ws157{word-spacing:4.495306px;}
.ws143{word-spacing:4.542173px;}
.ws13{word-spacing:4.608824px;}
.ws4c{word-spacing:4.614742px;}
.ws264{word-spacing:4.614862px;}
.ws93{word-spacing:4.674460px;}
.ws16c{word-spacing:4.674640px;}
.ws244{word-spacing:4.698551px;}
.ws235{word-spacing:4.698730px;}
.ws40{word-spacing:4.734119px;}
.ws18f{word-spacing:4.734418px;}
.ws10e{word-spacing:4.734477px;}
.ws3f{word-spacing:4.734716px;}
.ws183{word-spacing:4.793897px;}
.wse1{word-spacing:4.794196px;}
.wsf2{word-spacing:4.794494px;}
.wsa2{word-spacing:4.853854px;}
.ws1d9{word-spacing:4.853974px;}
.ws106{word-spacing:4.913273px;}
.ws22b{word-spacing:4.913752px;}
.wsf9{word-spacing:4.913871px;}
.ws23b{word-spacing:4.997441px;}
.ws127{word-spacing:5.032650px;}
.ws1b2{word-spacing:5.033248px;}
.ws1e0{word-spacing:5.033547px;}
.ws208{word-spacing:5.057219px;}
.ws10b{word-spacing:5.092667px;}
.ws139{word-spacing:5.092966px;}
.wsac{word-spacing:5.152923px;}
.ws89{word-spacing:5.212701px;}
.ws267{word-spacing:5.272061px;}
.wsa8{word-spacing:5.272659px;}
.ws1f6{word-spacing:5.303591px;}
.ws52{word-spacing:5.332078px;}
.ws1b9{word-spacing:5.391497px;}
.ws90{word-spacing:5.392095px;}
.wsb1{word-spacing:5.451455px;}
.wsc7{word-spacing:5.511173px;}
.ws1e5{word-spacing:5.511472px;}
.ws22a{word-spacing:5.535383px;}
.ws1a4{word-spacing:5.571130px;}
.ws21f{word-spacing:5.571310px;}
.ws25f{word-spacing:5.595101px;}
.ws16{word-spacing:5.624811px;}
.ws19{word-spacing:5.625110px;}
.ws123{word-spacing:5.630848px;}
.ws224{word-spacing:5.690866px;}
.ws65{word-spacing:5.750584px;}
.ws209{word-spacing:5.750644px;}
.ws10a{word-spacing:5.750883px;}
.wscb{word-spacing:5.809943px;}
.ws1be{word-spacing:5.810422px;}
.ws36{word-spacing:5.869960px;}
.ws3e{word-spacing:5.870259px;}
.ws21e{word-spacing:5.894111px;}
.ws32{word-spacing:5.929978px;}
.ws11d{word-spacing:5.989696px;}
.wsf3{word-spacing:5.989756px;}
.wsdd{word-spacing:6.049653px;}
.ws104{word-spacing:6.109312px;}
.ws7c{word-spacing:6.109371px;}
.ws128{word-spacing:6.109670px;}
.ws168{word-spacing:6.168492px;}
.ws10d{word-spacing:6.169090px;}
.wsf5{word-spacing:6.229107px;}
.ws17d{word-spacing:6.288646px;}
.ws237{word-spacing:6.288765px;}
.ws1e1{word-spacing:6.347886px;}
.ws1a1{word-spacing:6.407903px;}
.ws18e{word-spacing:6.408202px;}
.ws24d{word-spacing:6.427791px;}
.wsf1{word-spacing:6.467980px;}
.ws227{word-spacing:6.491891px;}
.ws1da{word-spacing:6.587296px;}
.ws62{word-spacing:6.587536px;}
.ws51{word-spacing:6.587595px;}
.ws223{word-spacing:6.611447px;}
.wsc0{word-spacing:6.647254px;}
.ws1aa{word-spacing:6.706673px;}
.ws34{word-spacing:6.766690px;}
.ws177{word-spacing:6.886067px;}
.ws11b{word-spacing:6.886426px;}
.ws1bf{word-spacing:6.886665px;}
.ws77{word-spacing:6.946204px;}
.ws17e{word-spacing:6.946443px;}
.ws112{word-spacing:7.005802px;}
.ws251{word-spacing:7.005982px;}
.ws68{word-spacing:7.006101px;}
.ws270{word-spacing:7.029893px;}
.ws7d{word-spacing:7.065461px;}
.ws101{word-spacing:7.065760px;}
.wsd{word-spacing:7.119560px;}
.ws1a6{word-spacing:7.125239px;}
.ws2a{word-spacing:7.125478px;}
.ws132{word-spacing:7.125538px;}
.ws9d{word-spacing:7.125836px;}
.ws160{word-spacing:7.184897px;}
.ws20f{word-spacing:7.185196px;}
.ws21{word-spacing:7.304872px;}
.ws14d{word-spacing:7.305230px;}
.ws10{word-spacing:7.358612px;}
.ws155{word-spacing:7.364650px;}
.wsd9{word-spacing:7.364889px;}
.ws6f{word-spacing:7.424368px;}
.ws24a{word-spacing:7.448339px;}
.wsa0{word-spacing:7.483668px;}
.ws14c{word-spacing:7.484265px;}
.ws266{word-spacing:7.508356px;}
.ws50{word-spacing:7.722839px;}
.ws126{word-spacing:7.723318px;}
.ws117{word-spacing:7.723437px;}
.ws15{word-spacing:7.777118px;}
.ws7e{word-spacing:7.783096px;}
.ws231{word-spacing:7.840394px;}
.ws134{word-spacing:7.843053px;}
.ws2b{word-spacing:7.902233px;}
.ws1c6{word-spacing:7.902652px;}
.wsc5{word-spacing:7.903070px;}
.wsd4{word-spacing:7.962430px;}
.ws1d4{word-spacing:7.962489px;}
.ws74{word-spacing:8.022148px;}
.ws1e4{word-spacing:8.022506px;}
.ws1ed{word-spacing:8.046119px;}
.ws76{word-spacing:8.082464px;}
.ws262{word-spacing:8.105897px;}
.wsfb{word-spacing:8.141644px;}
.ws3a{word-spacing:8.201302px;}
.ws152{word-spacing:8.201900px;}
.ws1fe{word-spacing:8.261260px;}
.wsec{word-spacing:8.261320px;}
.wsa{word-spacing:8.315060px;}
.ws75{word-spacing:8.321098px;}
.ws15d{word-spacing:8.380696px;}
.ws1c2{word-spacing:8.380876px;}
.ws26e{word-spacing:8.404787px;}
.wse3{word-spacing:8.440654px;}
.wsf{word-spacing:8.494454px;}
.wsfd{word-spacing:8.500432px;}
.ws97{word-spacing:8.500491px;}
.ws1cd{word-spacing:8.500671px;}
.ws43{word-spacing:8.559851px;}
.ws3b{word-spacing:8.560090px;}
.wse2{word-spacing:8.560688px;}
.ws185{word-spacing:8.679467px;}
.ws12d{word-spacing:8.679766px;}
.ws1d6{word-spacing:8.799262px;}
.ws1a2{word-spacing:8.858860px;}
.ws6a{word-spacing:8.859100px;}
.ws17c{word-spacing:8.918878px;}
.wsfe{word-spacing:8.978895px;}
.ws19b{word-spacing:9.037656px;}
.ws138{word-spacing:9.038254px;}
.wsff{word-spacing:9.098212px;}
.wsd5{word-spacing:9.158288px;}
.ws11f{word-spacing:9.217768px;}
.ws1f5{word-spacing:9.277067px;}
.ws16e{word-spacing:9.277486px;}
.ws17b{word-spacing:9.277546px;}
.ws29{word-spacing:9.277665px;}
.ws238{word-spacing:9.317297px;}
.ws16b{word-spacing:9.337084px;}
.ws12{word-spacing:9.390825px;}
.ws18{word-spacing:9.391124px;}
.ws4f{word-spacing:9.456939px;}
.ws120{word-spacing:9.457059px;}
.ws73{word-spacing:9.516658px;}
.wsa9{word-spacing:9.516897px;}
.ws205{word-spacing:9.575898px;}
.ws48{word-spacing:9.576316px;}
.ws23d{word-spacing:9.576436px;}
.wsd3{word-spacing:9.636453px;}
.ws1a7{word-spacing:9.695752px;}
.ws186{word-spacing:9.695872px;}
.ws161{word-spacing:9.755770px;}
.ws9e{word-spacing:9.755889px;}
.wse0{word-spacing:9.875146px;}
.wsdf{word-spacing:9.875326px;}
.ws60{word-spacing:9.935104px;}
.ws67{word-spacing:9.935283px;}
.ws21a{word-spacing:9.994702px;}
.ws1fd{word-spacing:10.018793px;}
.ws1b6{word-spacing:10.054660px;}
.ws1b4{word-spacing:10.114438px;}
.ws18a{word-spacing:10.114677px;}
.ws13b{word-spacing:10.174096px;}
.ws31{word-spacing:10.174694px;}
.ws9{word-spacing:10.407230px;}
.ws19d{word-spacing:10.413328px;}
.ws100{word-spacing:10.473106px;}
.wsc6{word-spacing:10.532764px;}
.ws88{word-spacing:10.532884px;}
.ws8f{word-spacing:10.592781px;}
.ws190{word-spacing:10.592901px;}
.ws230{word-spacing:10.616573px;}
.ws15c{word-spacing:10.652858px;}
.ws91{word-spacing:10.712277px;}
.ws131{word-spacing:10.772294px;}
.ws250{word-spacing:10.795907px;}
.wse4{word-spacing:10.832192px;}
.ws1c9{word-spacing:10.891073px;}
.ws71{word-spacing:10.891552px;}
.ws129{word-spacing:10.951090px;}
.wsf6{word-spacing:10.951688px;}
.wsce{word-spacing:11.010988px;}
.wsb7{word-spacing:11.011108px;}
.wsc4{word-spacing:11.130962px;}
.ws15b{word-spacing:11.190382px;}
.ws17f{word-spacing:11.250220px;}
.wsd0{word-spacing:11.309878px;}
.ws109{word-spacing:11.310476px;}
.ws1f4{word-spacing:11.333909px;}
.ws1ca{word-spacing:11.369895px;}
.ws111{word-spacing:11.429255px;}
.ws191{word-spacing:11.429554px;}
.ws18c{word-spacing:11.429852px;}
.ws110{word-spacing:11.489332px;}
.ws8d{word-spacing:11.549229px;}
.ws80{word-spacing:11.549289px;}
.ws192{word-spacing:11.608708px;}
.wsed{word-spacing:11.668666px;}
.ws92{word-spacing:11.728085px;}
.ws228{word-spacing:11.728444px;}
.wse{word-spacing:11.901680px;}
.ws98{word-spacing:11.907479px;}
.ws1ff{word-spacing:11.907778px;}
.ws2c{word-spacing:11.967436px;}
.ws8c{word-spacing:11.967496px;}
.ws276{word-spacing:11.967556px;}
.ws1e2{word-spacing:12.086872px;}
.ws219{word-spacing:12.087112px;}
.ws246{word-spacing:12.112563px;}
.ws1a9{word-spacing:12.146890px;}
.ws133{word-spacing:12.206907px;}
.wsba{word-spacing:12.266206px;}
.ws49{word-spacing:12.266266px;}
.wsb9{word-spacing:12.326224px;}
.ws275{word-spacing:12.349896px;}
.wsc9{word-spacing:12.385643px;}
.ws70{word-spacing:12.385703px;}
.ws179{word-spacing:12.445660px;}
.ws249{word-spacing:12.469691px;}
.ws1d7{word-spacing:12.505677px;}
.ws8a{word-spacing:12.565634px;}
.ws105{word-spacing:12.565694px;}
.ws150{word-spacing:12.685071px;}
.ws6d{word-spacing:12.744670px;}
.ws14e{word-spacing:12.923884px;}
.ws25b{word-spacing:12.924004px;}
.wsb{word-spacing:13.037642px;}
.wsca{word-spacing:13.043858px;}
.ws216{word-spacing:13.163116px;}
.ws154{word-spacing:13.163295px;}
.wsbf{word-spacing:13.222654px;}
.ws201{word-spacing:13.274015px;}
.ws21c{word-spacing:13.277015px;}
.ws1ec{word-spacing:13.280015px;}
.wsd8{word-spacing:13.282672px;}
.ws165{word-spacing:13.342450px;}
.ws194{word-spacing:13.342689px;}
.ws1d5{word-spacing:13.402108px;}
.ws1c3{word-spacing:13.402228px;}
.ws17a{word-spacing:13.462065px;}
.wsf7{word-spacing:13.521784px;}
.ws1c8{word-spacing:13.522082px;}
.ws1c7{word-spacing:13.540154px;}
.ws255{word-spacing:13.556325px;}
.wsb5{word-spacing:13.581502px;}
.ws1f1{word-spacing:13.641459px;}
.ws199{word-spacing:13.700878px;}
.ws182{word-spacing:13.760896px;}
.ws24c{word-spacing:13.904542px;}
.ws1cf{word-spacing:13.940230px;}
.ws85{word-spacing:13.940289px;}
.ws8b{word-spacing:14.119683px;}
.ws279{word-spacing:14.418454px;}
.ws7f{word-spacing:14.478530px;}
.ws82{word-spacing:14.597907px;}
.ws35{word-spacing:14.657267px;}
.ws21d{word-spacing:14.681537px;}
.ws187{word-spacing:14.684258px;}
.ws1b1{word-spacing:14.717344px;}
.ws1b{word-spacing:14.770974px;}
.ws42{word-spacing:15.016114px;}
.ws218{word-spacing:15.040205px;}
.ws263{word-spacing:15.195508px;}
.ws81{word-spacing:15.196106px;}
.ws248{word-spacing:15.362946px;}
.ws18b{word-spacing:15.374902px;}
.ws254{word-spacing:15.494338px;}
.ws242{word-spacing:15.853066px;}
.ws11c{word-spacing:15.912904px;}
.ws25{word-spacing:16.271273px;}
.wsb6{word-spacing:16.331409px;}
.ws12e{word-spacing:16.570462px;}
.ws207{word-spacing:16.654151px;}
.ws3d{word-spacing:16.690197px;}
.ws20c{word-spacing:16.857396px;}
.ws8{word-spacing:16.880317px;}
.ws26d{word-spacing:16.976653px;}
.ws24{word-spacing:17.646466px;}
.wsb8{word-spacing:17.766022px;}
.wsda{word-spacing:17.825859px;}
.ws278{word-spacing:18.029105px;}
.ws206{word-spacing:18.172512px;}
.ws260{word-spacing:18.314786px;}
.ws6{word-spacing:18.344382px;}
.ws7{word-spacing:18.398393px;}
.ws23a{word-spacing:18.590599px;}
.ws253{word-spacing:18.602914px;}
.wsb0{word-spacing:18.603452px;}
.ws213{word-spacing:18.710514px;}
.ws96{word-spacing:18.782307px;}
.ws1ad{word-spacing:18.871796px;}
.ws258{word-spacing:19.069182px;}
.ws271{word-spacing:19.619140px;}
.ws171{word-spacing:19.884014px;}
.ws241{word-spacing:19.941941px;}
.ws26a{word-spacing:20.037586px;}
.wsd7{word-spacing:20.396254px;}
.ws1b3{word-spacing:20.402456px;}
.ws1e{word-spacing:20.409257px;}
.ws1c{word-spacing:20.409743px;}
.ws1d{word-spacing:20.411298px;}
.ws1a{word-spacing:20.411735px;}
.ws234{word-spacing:20.563632px;}
.ws18d{word-spacing:20.836454px;}
.ws47{word-spacing:20.994153px;}
.ws221{word-spacing:20.996545px;}
.ws21b{word-spacing:21.280968px;}
.ws1fa{word-spacing:21.340746px;}
.ws196{word-spacing:21.818611px;}
.ws15f{word-spacing:21.878330px;}
.ws178{word-spacing:21.878628px;}
.ws12c{word-spacing:21.878748px;}
.ws27c{word-spacing:22.189653px;}
.ws265{word-spacing:22.536306px;}
.ws24b{word-spacing:22.716238px;}
.wse6{word-spacing:22.906930px;}
.ws212{word-spacing:23.110175px;}
.ws1f7{word-spacing:23.133249px;}
.ws20a{word-spacing:23.552532px;}
.ws252{word-spacing:23.588399px;}
.ws257{word-spacing:23.671789px;}
.ws261{word-spacing:23.911200px;}
.ws24e{word-spacing:24.210090px;}
.ws214{word-spacing:24.688314px;}
.ws210{word-spacing:24.927247px;}
.ws22e{word-spacing:25.238272px;}
.ws25c{word-spacing:25.345872px;}
.ws269{word-spacing:25.501295px;}
.ws232{word-spacing:25.525206px;}
.ws4{word-spacing:25.751070px;}
.ws3{word-spacing:25.822800px;}
.ws225{word-spacing:25.943652px;}
.ws243{word-spacing:26.030545px;}
.ws11a{word-spacing:26.181450px;}
.ws5f{word-spacing:26.253180px;}
.ws1e8{word-spacing:26.374054px;}
.ws274{word-spacing:26.660629px;}
.ws239{word-spacing:26.840322px;}
.ws23e{word-spacing:27.079434px;}
.ws273{word-spacing:27.255686px;}
.ws211{word-spacing:27.964615px;}
.ws2{word-spacing:27.974700px;}
.ws22f{word-spacing:28.370579px;}
.ws24f{word-spacing:28.633423px;}
.ws277{word-spacing:29.231442px;}
.ws247{word-spacing:29.410776px;}
.ws1f9{word-spacing:29.709845px;}
.ws172{word-spacing:29.835732px;}
.ws189{word-spacing:29.841732px;}
.ws256{word-spacing:30.785670px;}
.ws23f{word-spacing:30.965004px;}
.ws229{word-spacing:31.801896px;}
.ws1e9{word-spacing:32.351256px;}
.ws146{word-spacing:32.423937px;}
.ws20b{word-spacing:33.176611px;}
.ws1f2{word-spacing:33.296645px;}
.ws1f8{word-spacing:34.790617px;}
.ws200{word-spacing:34.970130px;}
.ws27b{word-spacing:35.268841px;}
.ws226{word-spacing:36.261335px;}
.ws272{word-spacing:36.344606px;}
.ws233{word-spacing:37.241634px;}
.ws17{word-spacing:37.408740px;}
.ws25d{word-spacing:38.257741px;}
.ws22d{word-spacing:41.485872px;}
.ws1eb{word-spacing:44.666301px;}
.ws144{word-spacing:46.016476px;}
.ws13d{word-spacing:46.824526px;}
.ws1ea{word-spacing:47.714800px;}
.ws162{word-spacing:48.193024px;}
.ws27a{word-spacing:54.897298px;}
.ws1ce{word-spacing:64.333084px;}
.ws1d1{word-spacing:67.859687px;}
.ws1dc{word-spacing:67.919285px;}
.ws1d2{word-spacing:67.919644px;}
.ws1d0{word-spacing:67.919764px;}
.ws1d3{word-spacing:67.919883px;}
.ws1e7{word-spacing:72.626077px;}
.ws22c{word-spacing:75.217459px;}
.ws1f{word-spacing:78.831270px;}
.ws1dd{word-spacing:144.316107px;}
.ws145{word-spacing:193.787049px;}
.ws140{word-spacing:222.830191px;}
.ws163{word-spacing:229.320364px;}
.ws1c1{word-spacing:284.614954px;}
.ws13e{word-spacing:671.449725px;}
.ws13f{word-spacing:721.888410px;}
.ws166{word-spacing:895.067950px;}
.ws147{word-spacing:902.778631px;}
._1{margin-left:-10.385183px;}
._3{margin-left:-6.599734px;}
._4{margin-left:-4.560765px;}
._f{margin-left:-3.287790px;}
._2{margin-left:-2.238320px;}
._6{margin-left:-1.049350px;}
._0{width:1.750078px;}
._16{width:3.496169px;}
._3c{width:4.722462px;}
._12{width:15.509036px;}
._5{width:17.450370px;}
._21{width:19.258203px;}
._37{width:20.881551px;}
._10{width:22.204172px;}
._20{width:23.731866px;}
._2f{width:24.927426px;}
._9{width:25.986914px;}
._b{width:27.677035px;}
._8{width:29.796277px;}
._c{width:31.622502px;}
._e{width:32.937678px;}
._14{width:34.133537px;}
._11{width:36.105912px;}
._1f{width:37.387725px;}
._d{width:38.765787px;}
._1c{width:40.032712px;}
._15{width:41.291397px;}
._1e{width:42.930025px;}
._1d{width:44.115865px;}
._a{width:45.371622px;}
._13{width:47.224919px;}
._7{width:49.017661px;}
._19{width:51.109532px;}
._1a{width:52.529315px;}
._31{width:54.636614px;}
._30{width:55.767632px;}
._36{width:56.772345px;}
._18{width:60.196267px;}
._4a{width:61.930426px;}
._49{width:63.887701px;}
._1b{width:66.243923px;}
._48{width:71.590309px;}
._47{width:75.439836px;}
._17{width:78.903000px;}
._42{width:102.698604px;}
._43{width:104.064348px;}
._40{width:105.149502px;}
._46{width:114.202514px;}
._3b{width:124.202168px;}
._35{width:132.374907px;}
._3d{width:133.842942px;}
._3f{width:135.576504px;}
._38{width:157.465091px;}
._44{width:160.922376px;}
._2d{width:209.923419px;}
._45{width:211.913010px;}
._24{width:238.966560px;}
._34{width:245.926692px;}
._27{width:335.964360px;}
._41{width:352.152198px;}
._39{width:354.602590px;}
._3e{width:381.981420px;}
._3a{width:385.829113px;}
._26{width:469.187222px;}
._25{width:470.707950px;}
._33{width:600.828678px;}
._22{width:616.213256px;}
._32{width:617.354033px;}
._2b{width:619.247337px;}
._2c{width:645.895347px;}
._2a{width:654.875270px;}
._2e{width:658.815665px;}
._29{width:690.534480px;}
._28{width:710.332187px;}
._23{width:750.883172px;}
.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;}
.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;}
.fsb{font-size:58.086283px;}
.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;}
.ycb{bottom:42.993625px;}
.yca{bottom:106.297500px;}
.y3d{bottom:106.299000px;}
.y210{bottom:117.519000px;}
.y3c{bottom:124.231500px;}
.y90{bottom:125.992500px;}
.yc9{bottom:132.457500px;}
.y20f{bottom:135.451500px;}
.yef{bottom:142.164000px;}
.y22b{bottom:142.731000px;}
.y3b{bottom:142.977000px;}
.y290{bottom:143.430000px;}
.y25b{bottom:143.535000px;}
.y8f{bottom:143.925000px;}
.yc8{bottom:150.390000px;}
.yee{bottom:160.096500px;}
.y17c{bottom:160.098000px;}
.y22a{bottom:160.663500px;}
.y3a{bottom:160.909500px;}
.y28f{bottom:161.362500px;}
.y25a{bottom:161.467500px;}
.y8e{bottom:161.859000px;}
.y54{bottom:164.734500px;}
.yc7{bottom:168.322500px;}
.y152{bottom:170.500500px;}
.yed{bottom:178.029000px;}
.y11e{bottom:178.030500px;}
.y229{bottom:178.596000px;}
.y39{bottom:178.842000px;}
.y28e{bottom:179.295000px;}
.y259{bottom:179.400000px;}
.y8d{bottom:179.791500px;}
.y53{bottom:182.667000px;}
.yc6{bottom:186.255000px;}
.yfb{bottom:195.961500px;}
.yec{bottom:195.963000px;}
.y228{bottom:196.528500px;}
.y38{bottom:196.774500px;}
.y28d{bottom:197.227500px;}
.y258{bottom:197.334000px;}
.y8c{bottom:197.724000px;}
.y52{bottom:200.601000px;}
.yc5{bottom:204.187500px;}
.y151{bottom:213.094500px;}
.yeb{bottom:213.895500px;}
.y227{bottom:214.462500px;}
.y37{bottom:214.707000px;}
.y28c{bottom:215.161500px;}
.y8b{bottom:215.656500px;}
.y257{bottom:216.637500px;}
.y51{bottom:218.533500px;}
.yc4{bottom:222.121500px;}
.y150{bottom:231.027000px;}
.y20c{bottom:231.082500px;}
.yea{bottom:231.828000px;}
.y11d{bottom:232.071000px;}
.y226{bottom:232.395000px;}
.y36{bottom:232.641000px;}
.y8a{bottom:233.589000px;}
.y28b{bottom:234.358500px;}
.y256{bottom:234.570000px;}
.y50{bottom:236.466000px;}
.yc3{bottom:240.054000px;}
.y1cf{bottom:241.479000px;}
.y14f{bottom:248.959500px;}
.y20b{bottom:249.015000px;}
.ye9{bottom:249.760500px;}
.y11c{bottom:250.003500px;}
.y225{bottom:250.327500px;}
.y35{bottom:250.573500px;}
.y89{bottom:251.521500px;}
.y28a{bottom:252.292500px;}
.y255{bottom:252.502500px;}
.y4f{bottom:254.398500px;}
.yc2{bottom:257.986500px;}
.yfa{bottom:259.411500px;}
.y14e{bottom:266.893500px;}
.y20a{bottom:266.947500px;}
.ye8{bottom:267.693000px;}
.y17b{bottom:267.694500px;}
.y11b{bottom:267.936000px;}
.y34{bottom:268.506000px;}
.y88{bottom:269.455500px;}
.y289{bottom:270.225000px;}
.y254{bottom:270.435000px;}
.y4e{bottom:272.331000px;}
.yc1{bottom:275.919000px;}
.y224{bottom:275.980500px;}
.y14d{bottom:284.826000px;}
.y209{bottom:284.880000px;}
.ye7{bottom:285.627000px;}
.y11a{bottom:285.870000px;}
.y1f6{bottom:285.942000px;}
.y33{bottom:286.438500px;}
.y87{bottom:287.388000px;}
.y288{bottom:288.157500px;}
.y253{bottom:288.367500px;}
.y4d{bottom:290.265000px;}
.yc0{bottom:293.851500px;}
.yf9{bottom:302.079000px;}
.y14c{bottom:302.758500px;}
.ye6{bottom:303.559500px;}
.y119{bottom:303.802500px;}
.y1f5{bottom:303.874500px;}
.y32{bottom:304.371000px;}
.y86{bottom:305.320500px;}
.y287{bottom:306.090000px;}
.y252{bottom:307.672500px;}
.y208{bottom:307.894500px;}
.y4c{bottom:308.197500px;}
.y1ce{bottom:309.012000px;}
.ybf{bottom:311.785500px;}
.y223{bottom:319.195500px;}
.yf8{bottom:320.011500px;}
.y14b{bottom:320.691000px;}
.y1cd{bottom:320.884500px;}
.ye5{bottom:321.492000px;}
.y118{bottom:321.735000px;}
.y1f4{bottom:321.807000px;}
.y31{bottom:322.303500px;}
.y85{bottom:323.253000px;}
.y286{bottom:324.022500px;}
.y251{bottom:325.605000px;}
.y207{bottom:325.827000px;}
.y4b{bottom:326.130000px;}
.ybe{bottom:329.718000px;}
.y1ac{bottom:331.143000px;}
.y1cc{bottom:336.127500px;}
.y222{bottom:337.128000px;}
.yf7{bottom:337.944000px;}
.y14a{bottom:338.623500px;}
.ye4{bottom:339.424500px;}
.y117{bottom:339.667500px;}
.y1f3{bottom:339.739500px;}
.y30{bottom:340.237500px;}
.y84{bottom:341.185500px;}
.y285{bottom:343.221000px;}
.y250{bottom:343.537500px;}
.y206{bottom:343.759500px;}
.y4a{bottom:344.062500px;}
.ybd{bottom:347.650500px;}
.y1cb{bottom:350.905500px;}
.y221{bottom:355.060500px;}
.yf6{bottom:355.876500px;}
.y149{bottom:356.556000px;}
.y17a{bottom:357.357000px;}
.y116{bottom:357.600000px;}
.y2f{bottom:358.170000px;}
.y83{bottom:359.119500px;}
.y284{bottom:361.153500px;}
.y24f{bottom:361.470000px;}
.y205{bottom:361.692000px;}
.y49{bottom:361.995000px;}
.ybc{bottom:365.583000px;}
.y1ca{bottom:366.148500px;}
.ye3{bottom:367.008000px;}
.y1f2{bottom:367.237500px;}
.y1ab{bottom:371.125500px;}
.y220{bottom:372.993000px;}
.yf5{bottom:373.809000px;}
.y148{bottom:374.490000px;}
.y179{bottom:375.291000px;}
.y115{bottom:375.532500px;}
.y2e{bottom:376.102500px;}
.y82{bottom:377.052000px;}
.y283{bottom:379.087500px;}
.y24e{bottom:379.402500px;}
.y1c9{bottom:380.926500px;}
.ybb{bottom:383.515500px;}
.y204{bottom:384.706500px;}
.y1f1{bottom:385.170000px;}
.y48{bottom:388.077000px;}
.y1aa{bottom:389.058000px;}
.y21f{bottom:390.925500px;}
.yf4{bottom:391.741500px;}
.y147{bottom:392.422500px;}
.y178{bottom:393.223500px;}
.y114{bottom:393.466500px;}
.y2d{bottom:394.035000px;}
.y81{bottom:394.984500px;}
.y1c8{bottom:396.169500px;}
.y282{bottom:398.284500px;}
.y24d{bottom:398.707500px;}
.yba{bottom:401.448000px;}
.y203{bottom:402.639000px;}
.y1f0{bottom:403.102500px;}
.y47{bottom:406.009500px;}
.y1a9{bottom:406.990500px;}
.ye2{bottom:409.675500px;}
.y146{bottom:410.355000px;}
.y177{bottom:411.156000px;}
.y113{bottom:411.399000px;}
.y1c7{bottom:411.412500px;}
.y2c{bottom:412.780500px;}
.y80{bottom:412.917000px;}
.y281{bottom:416.218500px;}
.y24c{bottom:416.640000px;}
.yb9{bottom:419.382000px;}
.y202{bottom:420.571500px;}
.y21e{bottom:423.802500px;}
.y46{bottom:423.943500px;}
.y1a8{bottom:424.923000px;}
.y1c6{bottom:426.655500px;}
.y1ef{bottom:426.714000px;}
.ye1{bottom:427.608000px;}
.y145{bottom:428.287500px;}
.y176{bottom:429.088500px;}
.y112{bottom:429.331500px;}
.y2b{bottom:430.713000px;}
.y7f{bottom:430.849500px;}
.y280{bottom:434.151000px;}
.y24b{bottom:434.572500px;}
.yb8{bottom:437.314500px;}
.y201{bottom:438.504000px;}
.y1c5{bottom:438.526500px;}
.y21d{bottom:441.735000px;}
.y45{bottom:441.876000px;}
.y1ee{bottom:444.646500px;}
.ye0{bottom:445.540500px;}
.y144{bottom:446.220000px;}
.y111{bottom:447.264000px;}
.y2a{bottom:448.645500px;}
.y7e{bottom:448.782000px;}
.y27f{bottom:452.083500px;}
.y24a{bottom:452.505000px;}
.y1c4{bottom:453.769500px;}
.yb7{bottom:455.247000px;}
.y175{bottom:456.672000px;}
.y21c{bottom:459.669000px;}
.y44{bottom:459.808500px;}
.y200{bottom:461.518500px;}
.y1a7{bottom:463.365000px;}
.ydf{bottom:463.473000px;}
.y143{bottom:464.152500px;}
.y110{bottom:465.196500px;}
.y29{bottom:466.578000px;}
.y7d{bottom:466.716000px;}
.y1c3{bottom:469.012500px;}
.y27e{bottom:470.016000px;}
.y249{bottom:470.437500px;}
.yb6{bottom:473.179500px;}
.y1a6{bottom:475.237500px;}
.y21b{bottom:477.601500px;}
.y43{bottom:477.741000px;}
.y1ff{bottom:479.451000px;}
.y1ed{bottom:480.577500px;}
.yf3{bottom:481.405500px;}
.yde{bottom:481.407000px;}
.y142{bottom:482.086500px;}
.y10f{bottom:483.130500px;}
.y1c2{bottom:484.255500px;}
.y28{bottom:484.510500px;}
.y7c{bottom:484.648500px;}
.y27d{bottom:489.214500px;}
.y248{bottom:489.741000px;}
.y1a5{bottom:490.480500px;}
.yb5{bottom:491.112000px;}
.y21a{bottom:495.534000px;}
.y42{bottom:495.673500px;}
.y1c1{bottom:496.128000px;}
.y1fe{bottom:497.383500px;}
.y1ec{bottom:498.510000px;}
.yf2{bottom:499.338000px;}
.ydd{bottom:499.339500px;}
.y141{bottom:500.019000px;}
.y27{bottom:502.444500px;}
.y7b{bottom:502.581000px;}
.y1a4{bottom:505.723500px;}
.y27c{bottom:507.147000px;}
.y247{bottom:507.675000px;}
.yb4{bottom:509.044500px;}
.y10e{bottom:511.165500px;}
.y1c0{bottom:511.371000px;}
.y219{bottom:513.466500px;}
.y41{bottom:513.606000px;}
.y1fd{bottom:515.316000px;}
.y1eb{bottom:516.444000px;}
.ydc{bottom:517.272000px;}
.y1a3{bottom:517.594500px;}
.y140{bottom:517.951500px;}
.y26{bottom:520.377000px;}
.y7a{bottom:520.513500px;}
.y174{bottom:521.152500px;}
.y27b{bottom:525.079500px;}
.y246{bottom:525.607500px;}
.y1bf{bottom:526.614000px;}
.yb3{bottom:526.978500px;}
.y218{bottom:531.399000px;}
.y40{bottom:531.540000px;}
.y1a2{bottom:532.837500px;}
.y1ea{bottom:534.376500px;}
.ydb{bottom:535.204500px;}
.y13f{bottom:535.884000px;}
.y173{bottom:535.930500px;}
.y25{bottom:538.309500px;}
.y79{bottom:538.446000px;}
.y1be{bottom:541.857000px;}
.y1fc{bottom:542.814000px;}
.y27a{bottom:543.013500px;}
.yb2{bottom:544.911000px;}
.y1a1{bottom:547.615500px;}
.y217{bottom:549.333000px;}
.y3f{bottom:549.472500px;}
.y172{bottom:551.173500px;}
.y1e9{bottom:552.309000px;}
.y10d{bottom:552.907500px;}
.yda{bottom:553.137000px;}
.y13e{bottom:553.816500px;}
.y24{bottom:556.242000px;}
.y78{bottom:556.378500px;}
.y1bd{bottom:557.100000px;}
.y1fb{bottom:560.746500px;}
.y279{bottom:562.210500px;}
.yb1{bottom:562.843500px;}
.y1a0{bottom:562.858500px;}
.y171{bottom:566.416500px;}
.y216{bottom:567.265500px;}
.y3e{bottom:567.405000px;}
.y1e8{bottom:570.241500px;}
.y10c{bottom:570.840000px;}
.yd9{bottom:571.069500px;}
.y13d{bottom:571.750500px;}
.y77{bottom:574.312500px;}
.y1bc{bottom:576.958500px;}
.y19f{bottom:577.636500px;}
.y278{bottom:580.144500px;}
.yb0{bottom:580.776000px;}
.y170{bottom:581.194500px;}
.y215{bottom:585.198000px;}
.y23{bottom:585.337500px;}
.y1fa{bottom:587.263500px;}
.y1e7{bottom:588.174000px;}
.y10b{bottom:588.772500px;}
.yf1{bottom:589.002000px;}
.yd8{bottom:589.003500px;}
.y13c{bottom:589.683000px;}
.y1bb{bottom:592.201500px;}
.y76{bottom:592.245000px;}
.y19e{bottom:592.879500px;}
.y16f{bottom:596.437500px;}
.y277{bottom:598.077000px;}
.yaf{bottom:598.708500px;}
.y214{bottom:603.130500px;}
.y1f9{bottom:605.196000px;}
.y1e6{bottom:606.223500px;}
.y10a{bottom:606.706500px;}
.yf0{bottom:606.934500px;}
.yd7{bottom:606.936000px;}
.y13b{bottom:607.615500px;}
.y19d{bottom:608.122500px;}
.y75{bottom:610.177500px;}
.y16e{bottom:611.215500px;}
.y276{bottom:616.009500px;}
.yae{bottom:616.641000px;}
.y245{bottom:618.013500px;}
.y213{bottom:621.063000px;}
.y19c{bottom:623.365500px;}
.y1e5{bottom:624.156000px;}
.y109{bottom:624.639000px;}
.yd6{bottom:624.868500px;}
.y13a{bottom:625.548000px;}
.y16d{bottom:626.458500px;}
.y74{bottom:628.110000px;}
.y275{bottom:633.942000px;}
.yad{bottom:634.575000px;}
.y244{bottom:635.946000px;}
.y2ac{bottom:637.819500px;}
.y19b{bottom:638.608500px;}
.y16c{bottom:641.701500px;}
.y1e4{bottom:642.088500px;}
.y108{bottom:642.571500px;}
.yd5{bottom:642.801000px;}
.y139{bottom:643.480500px;}
.y73{bottom:647.805000px;}
.y20e{bottom:648.439500px;}
.y1ba{bottom:648.621000px;}
.y1f8{bottom:651.441000px;}
.yac{bottom:652.507500px;}
.y274{bottom:653.140500px;}
.y19a{bottom:653.851500px;}
.y243{bottom:653.878500px;}
.y2ab{bottom:655.752000px;}
.y16b{bottom:656.478000px;}
.y1e3{bottom:660.138000px;}
.y1b9{bottom:660.493500px;}
.y107{bottom:660.504000px;}
.yd4{bottom:660.733500px;}
.y138{bottom:661.413000px;}
.y1f{bottom:665.217000px;}
.y72{bottom:665.737500px;}
.y20d{bottom:666.372000px;}
.y199{bottom:669.094500px;}
.y1f7{bottom:669.373500px;}
.y273{bottom:671.073000px;}
.y16a{bottom:671.721000px;}
.y242{bottom:671.811000px;}
.y212{bottom:673.059000px;}
.y2aa{bottom:673.684500px;}
.y1b8{bottom:675.736500px;}
.y22{bottom:677.172000px;}
.y1e2{bottom:678.070500px;}
.y106{bottom:678.436500px;}
.yab{bottom:678.666000px;}
.y137{bottom:679.347000px;}
.y1e{bottom:683.149500px;}
.y71{bottom:683.670000px;}
.y198{bottom:684.337500px;}
.y169{bottom:686.964000px;}
.y272{bottom:689.005500px;}
.y21{bottom:689.127000px;}
.y241{bottom:689.743500px;}
.y1b7{bottom:690.514500px;}
.y211{bottom:690.991500px;}
.y2a9{bottom:691.618500px;}
.y1e1{bottom:696.003000px;}
.y105{bottom:696.369000px;}
.yaa{bottom:696.598500px;}
.yd3{bottom:696.600000px;}
.y136{bottom:697.683000px;}
.y197{bottom:699.115500px;}
.y20{bottom:701.082000px;}
.y70{bottom:701.602500px;}
.y1b6{bottom:705.757500px;}
.y168{bottom:706.824000px;}
.y271{bottom:706.939500px;}
.y240{bottom:709.048500px;}
.y2a8{bottom:710.380500px;}
.y1e0{bottom:713.935500px;}
.y104{bottom:714.303000px;}
.y196{bottom:714.358500px;}
.ya9{bottom:714.532500px;}
.y135{bottom:715.615500px;}
.y1d{bottom:719.016000px;}
.y6f{bottom:719.535000px;}
.y1b5{bottom:721.000500px;}
.y270{bottom:726.136500px;}
.y23f{bottom:726.981000px;}
.y2a7{bottom:728.313000px;}
.y195{bottom:729.601500px;}
.y1df{bottom:731.868000px;}
.y103{bottom:732.235500px;}
.ya8{bottom:732.465000px;}
.y1b4{bottom:735.778500px;}
.y1c{bottom:736.948500px;}
.y6e{bottom:737.467500px;}
.y167{bottom:741.888000px;}
.y26f{bottom:744.070500px;}
.y194{bottom:744.844500px;}
.y23e{bottom:744.913500px;}
.y2a6{bottom:746.247000px;}
.y1de{bottom:749.800500px;}
.y102{bottom:750.168000px;}
.ya7{bottom:750.397500px;}
.y1b3{bottom:751.021500px;}
.y1b{bottom:754.881000px;}
.y6d{bottom:755.401500px;}
.y166{bottom:759.820500px;}
.y193{bottom:760.087500px;}
.y26e{bottom:762.003000px;}
.y23d{bottom:762.846000px;}
.y2a5{bottom:764.179500px;}
.y1b2{bottom:766.264500px;}
.y1dd{bottom:767.734500px;}
.y101{bottom:768.100500px;}
.ya6{bottom:768.330000px;}
.y1a{bottom:772.813500px;}
.y6c{bottom:773.334000px;}
.y165{bottom:777.753000px;}
.y26d{bottom:779.935500px;}
.y192{bottom:779.946000px;}
.y1b1{bottom:781.042500px;}
.y134{bottom:781.975966px;}
.y23c{bottom:782.149500px;}
.y2a4{bottom:782.941500px;}
.y1dc{bottom:785.667000px;}
.y100{bottom:786.033000px;}
.ya5{bottom:786.262500px;}
.yd2{bottom:786.264000px;}
.y19{bottom:790.746000px;}
.y6b{bottom:791.266500px;}
.y164{bottom:795.685500px;}
.y1b0{bottom:796.285500px;}
.y26c{bottom:797.868000px;}
.y191{bottom:797.878500px;}
.y133{bottom:799.402434px;}
.y23b{bottom:800.082000px;}
.y2a3{bottom:800.875500px;}
.y1db{bottom:803.599500px;}
.yff{bottom:803.967000px;}
.ya4{bottom:804.195000px;}
.yd1{bottom:804.196500px;}
.y18{bottom:808.680000px;}
.y6a{bottom:809.199000px;}
.y1af{bottom:811.528500px;}
.y163{bottom:813.619500px;}
.y132{bottom:816.827445px;}
.y26b{bottom:817.066500px;}
.y23a{bottom:818.016000px;}
.y2a2{bottom:818.808000px;}
.y1da{bottom:821.532000px;}
.yfe{bottom:821.899500px;}
.ya3{bottom:822.129000px;}
.y17{bottom:826.612500px;}
.y69{bottom:827.131500px;}
.y1ae{bottom:828.481500px;}
.y162{bottom:831.552000px;}
.y190{bottom:832.185000px;}
.y131{bottom:834.252455px;}
.y26a{bottom:834.999000px;}
.y239{bottom:835.948500px;}
.y2a1{bottom:836.740500px;}
.y1d9{bottom:839.464500px;}
.yfd{bottom:839.832000px;}
.ya2{bottom:840.061500px;}
.y1ad{bottom:843.724500px;}
.y16{bottom:844.545000px;}
.y68{bottom:845.065500px;}
.y161{bottom:849.484500px;}
.y18f{bottom:850.119000px;}
.y130{bottom:851.677465px;}
.y269{bottom:852.931500px;}
.y238{bottom:853.881000px;}
.y2a0{bottom:854.673000px;}
.y1d8{bottom:857.397000px;}
.ya1{bottom:857.994000px;}
.y15{bottom:862.477500px;}
.y67{bottom:862.998000px;}
.y160{bottom:867.417000px;}
.y18e{bottom:868.051500px;}
.y12f{bottom:869.102475px;}
.y237{bottom:871.813500px;}
.y268{bottom:872.130000px;}
.y29f{bottom:873.436500px;}
.y1d7{bottom:875.331000px;}
.ya0{bottom:875.926500px;}
.y14{bottom:880.410000px;}
.y66{bottom:880.930500px;}
.y15f{bottom:885.349500px;}
.y18d{bottom:885.984000px;}
.y12e{bottom:886.527486px;}
.y267{bottom:890.062500px;}
.y236{bottom:891.117000px;}
.y29e{bottom:891.369000px;}
.yfc{bottom:892.539000px;}
.y1d6{bottom:893.263500px;}
.y9f{bottom:893.859000px;}
.yd0{bottom:893.860500px;}
.y13{bottom:898.342500px;}
.y65{bottom:898.863000px;}
.y15e{bottom:903.282000px;}
.y12d{bottom:903.953953px;}
.y266{bottom:907.996500px;}
.y235{bottom:909.049500px;}
.y29d{bottom:909.301500px;}
.y1d5{bottom:911.196000px;}
.y9e{bottom:911.791500px;}
.ycf{bottom:911.793000px;}
.y12{bottom:916.276500px;}
.y64{bottom:916.795500px;}
.y15d{bottom:921.216000px;}
.y12c{bottom:921.378964px;}
.y265{bottom:925.929000px;}
.y234{bottom:926.983500px;}
.y29c{bottom:927.234000px;}
.y9d{bottom:929.725500px;}
.y11{bottom:934.209000px;}
.y63{bottom:934.728000px;}
.y18c{bottom:935.203500px;}
.y12b{bottom:938.803974px;}
.y15c{bottom:939.148500px;}
.y233{bottom:944.916000px;}
.y264{bottom:945.127500px;}
.y29b{bottom:945.166500px;}
.y9c{bottom:947.658000px;}
.y18b{bottom:949.981500px;}
.y10{bottom:952.141500px;}
.y62{bottom:952.662000px;}
.y12a{bottom:956.228984px;}
.y232{bottom:962.848500px;}
.y263{bottom:963.060000px;}
.y29a{bottom:963.930000px;}
.y18a{bottom:965.224500px;}
.y9b{bottom:965.590500px;}
.y1d4{bottom:968.215500px;}
.yf{bottom:970.074000px;}
.y61{bottom:970.594500px;}
.y129{bottom:973.653994px;}
.y189{bottom:980.002500px;}
.y231{bottom:980.781000px;}
.y262{bottom:980.992500px;}
.y299{bottom:981.862500px;}
.y9a{bottom:983.523000px;}
.y1d3{bottom:986.148000px;}
.ye{bottom:988.006500px;}
.y60{bottom:988.527000px;}
.y128{bottom:991.079005px;}
.y188{bottom:995.245500px;}
.y261{bottom:998.925000px;}
.y298{bottom:999.795000px;}
.y230{bottom:1000.084500px;}
.y99{bottom:1001.455500px;}
.yce{bottom:1001.457000px;}
.y1d2{bottom:1004.080500px;}
.y15b{bottom:1004.229000px;}
.y5f{bottom:1006.459500px;}
.y127{bottom:1008.505472px;}
.y187{bottom:1010.023500px;}
.y297{bottom:1017.729000px;}
.y22f{bottom:1018.018500px;}
.y260{bottom:1018.123500px;}
.y98{bottom:1019.388000px;}
.ycd{bottom:1019.389500px;}
.yc{bottom:1020.136500px;}
.y15a{bottom:1022.163000px;}
.yd{bottom:1024.356000px;}
.y5e{bottom:1024.392000px;}
.y186{bottom:1025.266500px;}
.y126{bottom:1025.930483px;}
.y1d1{bottom:1031.577000px;}
.y296{bottom:1035.661500px;}
.y22e{bottom:1035.951000px;}
.y25f{bottom:1036.056000px;}
.y97{bottom:1037.322000px;}
.y185{bottom:1040.044500px;}
.y159{bottom:1040.095500px;}
.y5d{bottom:1042.324500px;}
.y125{bottom:1043.355493px;}
.yb{bottom:1044.529500px;}
.y22d{bottom:1053.883500px;}
.y25e{bottom:1053.988500px;}
.y295{bottom:1054.423500px;}
.y96{bottom:1055.254500px;}
.y184{bottom:1055.287500px;}
.y158{bottom:1058.028000px;}
.y1d0{bottom:1058.094000px;}
.y5c{bottom:1060.258500px;}
.y124{bottom:1060.780503px;}
.ya{bottom:1060.968000px;}
.y183{bottom:1070.530500px;}
.y22c{bottom:1071.816000px;}
.y25d{bottom:1071.922500px;}
.y294{bottom:1072.357500px;}
.y95{bottom:1073.187000px;}
.y157{bottom:1075.960500px;}
.y8{bottom:1076.176500px;}
.y5b{bottom:1078.191000px;}
.y123{bottom:1078.205513px;}
.y182{bottom:1082.403000px;}
.y9{bottom:1082.683500px;}
.y25c{bottom:1089.855000px;}
.y293{bottom:1090.290000px;}
.y94{bottom:1091.119500px;}
.y156{bottom:1093.893000px;}
.y122{bottom:1095.631981px;}
.y5a{bottom:1096.123500px;}
.y7{bottom:1097.098500px;}
.y181{bottom:1097.646000px;}
.y292{bottom:1108.222500px;}
.y93{bottom:1109.052000px;}
.ycc{bottom:1109.053500px;}
.y180{bottom:1112.889000px;}
.y121{bottom:1113.101700px;}
.y59{bottom:1114.056000px;}
.y155{bottom:1121.389500px;}
.y291{bottom:1126.155000px;}
.y92{bottom:1126.986000px;}
.y17f{bottom:1128.132000px;}
.y58{bottom:1131.988500px;}
.y6{bottom:1135.951500px;}
.y120{bottom:1139.821200px;}
.y91{bottom:1144.918500px;}
.y154{bottom:1145.001000px;}
.y17e{bottom:1147.990500px;}
.y5{bottom:1162.851000px;}
.y11f{bottom:1162.933500px;}
.y153{bottom:1162.935000px;}
.y17d{bottom:1163.233500px;}
.y57{bottom:1165.888438px;}
.y4{bottom:1165.953811px;}
.y3{bottom:1179.733329px;}
.hf{height:13.200074px;}
.h8{height:25.251072px;}
.hd{height:29.960304px;}
.h9{height:33.665280px;}
.ha{height:34.074600px;}
.h12{height:34.368215px;}
.h4{height:36.000225px;}
.h11{height:42.792210px;}
.hb{height:42.801048px;}
.h14{height:43.564712px;}
.h3{height:44.827280px;}
.hc{height:44.833500px;}
.h7{height:45.429000px;}
.h15{height:47.781048px;}
.h10{height:49.898438px;}
.he{height:51.358680px;}
.h6{height:59.693280px;}
.h5{height:61.544340px;}
.h2{height:1195.555378px;}
.h13{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:13.346985px;}
.w3{width:13.348500px;}
.w2{width:727.996041px;}
.w5{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.437964px;}
.xf{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x1b{left:93.093000px;}
.x23{left:98.125500px;}
.xc{left:99.984000px;}
.x18{left:105.891000px;}
.x1c{left:110.443500px;}
.x27{left:115.758000px;}
.x2{left:125.858878px;}
.x5{left:148.368612px;}
.x12{left:164.067000px;}
.x19{left:174.846000px;}
.x26{left:179.838000px;}
.x11{left:208.226652px;}
.x6{left:236.847000px;}
.x7{left:246.561000px;}
.x24{left:335.682000px;}
.x1a{left:362.857500px;}
.x25{left:383.379000px;}
.xd{left:453.928500px;}
.x1d{left:461.982000px;}
.xe{left:468.873000px;}
.x1e{left:479.334000px;}
.x28{left:484.647000px;}
.x2a{left:502.612500px;}
.x20{left:509.257500px;}
.x14{left:536.228618px;}
.x1f{left:540.117000px;}
.x13{left:551.158500px;}
.x29{left:607.552500px;}
.x21{left:654.288000px;}
.xb{left:688.965000px;}
.x9{left:690.340500px;}
.x8{left:692.620500px;}
.xa{left:704.157000px;}
.x22{left:762.436500px;}
.x16{left:770.745498px;}
.x15{left:778.007012px;}
.x17{left:785.267069px;}
.x10{left:798.566986px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.426667pt;}
.v1{vertical-align:23.136000pt;}
.lsc{letter-spacing:-0.300471pt;}
.lsa{letter-spacing:-0.079370pt;}
.lsb{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.034016pt;}
.lse{letter-spacing:0.050667pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.590670pt;}
.ls10{letter-spacing:0.592488pt;}
.ls11{letter-spacing:0.616472pt;}
.ls3{letter-spacing:0.616589pt;}
.ls4{letter-spacing:2.653541pt;}
.ls6{letter-spacing:2.655406pt;}
.ls5{letter-spacing:2.658875pt;}
.ls14{letter-spacing:5.717440pt;}
.ls18{letter-spacing:16.100208pt;}
.ls15{letter-spacing:16.153344pt;}
.ls8{letter-spacing:17.661434pt;}
.ls9{letter-spacing:17.702819pt;}
.ls13{letter-spacing:23.994773pt;}
.lsf{letter-spacing:25.744009pt;}
.ls19{letter-spacing:26.829333pt;}
.ls7{letter-spacing:29.217764pt;}
.ls17{letter-spacing:32.572368pt;}
.ls16{letter-spacing:32.625504pt;}
.ls12{letter-spacing:212.335884pt;}
.ws1{word-spacing:-35.936443pt;}
.ws0{word-spacing:-35.755026pt;}
.ws1fb{word-spacing:-16.971638pt;}
.ws46{word-spacing:-14.761181pt;}
.ws5e{word-spacing:-14.495260pt;}
.ws13c{word-spacing:-14.343439pt;}
.ws169{word-spacing:-2.858823pt;}
.wsab{word-spacing:-2.752179pt;}
.ws2f{word-spacing:-2.646492pt;}
.ws2d{word-spacing:-2.646013pt;}
.ws2e{word-spacing:-2.593196pt;}
.ws16f{word-spacing:-2.539901pt;}
.wsf0{word-spacing:-2.433735pt;}
.ws119{word-spacing:-2.327569pt;}
.ws72{word-spacing:-2.327357pt;}
.wsaa{word-spacing:-2.274221pt;}
.wsdc{word-spacing:-2.167949pt;}
.ws204{word-spacing:-2.114760pt;}
.ws103{word-spacing:-2.061677pt;}
.ws66{word-spacing:-2.008647pt;}
.wse9{word-spacing:-1.955299pt;}
.ws20e{word-spacing:-1.795997pt;}
.ws83{word-spacing:-1.743073pt;}
.ws7b{word-spacing:-1.689725pt;}
.ws188{word-spacing:-1.636589pt;}
.ws149{word-spacing:-1.583612pt;}
.ws107{word-spacing:-1.583559pt;}
.ws30{word-spacing:-1.530264pt;}
.ws245{word-spacing:-1.455926pt;}
.ws1a5{word-spacing:-1.424098pt;}
.ws78{word-spacing:-1.424045pt;}
.ws12a{word-spacing:-1.370803pt;}
.wsb4{word-spacing:-1.317985pt;}
.ws222{word-spacing:-1.296412pt;}
.wse8{word-spacing:-1.264637pt;}
.ws26c{word-spacing:-1.211501pt;}
.wsa7{word-spacing:-1.211288pt;}
.wsa4{word-spacing:-1.158524pt;}
.ws203{word-spacing:-1.105229pt;}
.wsea{word-spacing:-1.105176pt;}
.wsbb{word-spacing:-1.052358pt;}
.wsd6{word-spacing:-1.051827pt;}
.ws5c{word-spacing:-1.037477pt;}
.ws25e{word-spacing:-1.030838pt;}
.ws28{word-spacing:-0.945715pt;}
.ws57{word-spacing:-0.907083pt;}
.wsc2{word-spacing:-0.892897pt;}
.ws10c{word-spacing:-0.892685pt;}
.ws5b{word-spacing:-0.890076pt;}
.wsa1{word-spacing:-0.839602pt;}
.wscc{word-spacing:-0.786732pt;}
.wse7{word-spacing:-0.627324pt;}
.ws164{word-spacing:-0.573975pt;}
.ws14f{word-spacing:-0.573922pt;}
.ws55{word-spacing:-0.544250pt;}
.ws193{word-spacing:-0.467597pt;}
.ws58{word-spacing:-0.447872pt;}
.ws5d{word-spacing:-0.413857pt;}
.ws115{word-spacing:-0.361697pt;}
.wsef{word-spacing:-0.361165pt;}
.wsaf{word-spacing:-0.361112pt;}
.ws12f{word-spacing:-0.308401pt;}
.wsae{word-spacing:-0.308348pt;}
.ws202{word-spacing:-0.286934pt;}
.ws135{word-spacing:-0.255053pt;}
.ws136{word-spacing:-0.255000pt;}
.ws217{word-spacing:-0.201917pt;}
.ws33{word-spacing:-0.201651pt;}
.ws7a{word-spacing:-0.095645pt;}
.ws3c{word-spacing:-0.095539pt;}
.ws5{word-spacing:-0.063760pt;}
.ws240{word-spacing:-0.053136pt;}
.wsa5{word-spacing:-0.042774pt;}
.ws9f{word-spacing:-0.042721pt;}
.ws125{word-spacing:-0.042509pt;}
.ws54{word-spacing:0.000000pt;}
.wseb{word-spacing:0.010574pt;}
.wsb2{word-spacing:0.010627pt;}
.ws5a{word-spacing:0.039685pt;}
.wsd1{word-spacing:0.063763pt;}
.ws41{word-spacing:0.063869pt;}
.ws1b0{word-spacing:0.170035pt;}
.ws15e{word-spacing:0.170088pt;}
.ws121{word-spacing:0.222799pt;}
.ws56{word-spacing:0.260786pt;}
.ws1ef{word-spacing:0.276148pt;}
.wsc8{word-spacing:0.276201pt;}
.ws1ee{word-spacing:0.297562pt;}
.wsfa{word-spacing:0.329496pt;}
.ws1cc{word-spacing:0.382314pt;}
.wsc3{word-spacing:0.435609pt;}
.ws1b5{word-spacing:0.488426pt;}
.ws220{word-spacing:0.489011pt;}
.ws159{word-spacing:0.541775pt;}
.ws8e{word-spacing:0.541828pt;}
.ws1af{word-spacing:0.595070pt;}
.ws1db{word-spacing:0.595123pt;}
.ws59{word-spacing:0.634958pt;}
.ws113{word-spacing:0.647887pt;}
.ws118{word-spacing:0.647994pt;}
.wsb3{word-spacing:0.648419pt;}
.ws1cb{word-spacing:0.701236pt;}
.ws15a{word-spacing:0.701289pt;}
.ws86{word-spacing:0.754531pt;}
.ws19a{word-spacing:0.807880pt;}
.ws1de{word-spacing:0.860697pt;}
.ws1a8{word-spacing:0.914045pt;}
.ws4a{word-spacing:0.967341pt;}
.ws1c5{word-spacing:1.020158pt;}
.ws1ab{word-spacing:1.073400pt;}
.ws79{word-spacing:1.073613pt;}
.ws19f{word-spacing:1.126271pt;}
.ws116{word-spacing:1.179619pt;}
.ws20d{word-spacing:1.254010pt;}
.ws99{word-spacing:1.285732pt;}
.ws1bc{word-spacing:1.339027pt;}
.ws19e{word-spacing:1.339080pt;}
.ws137{word-spacing:1.391898pt;}
.ws16d{word-spacing:1.392163pt;}
.ws22{word-spacing:1.445246pt;}
.ws184{word-spacing:1.498435pt;}
.ws26{word-spacing:1.551465pt;}
.ws95{word-spacing:1.604813pt;}
.ws1c0{word-spacing:1.710820pt;}
.wsee{word-spacing:1.710979pt;}
.ws1f0{word-spacing:1.763743pt;}
.ws1df{word-spacing:1.764115pt;}
.ws45{word-spacing:1.764168pt;}
.ws14b{word-spacing:1.764275pt;}
.ws215{word-spacing:1.785370pt;}
.ws1ba{word-spacing:1.870281pt;}
.wsd2{word-spacing:1.870387pt;}
.ws1a3{word-spacing:1.923098pt;}
.wsf4{word-spacing:1.923629pt;}
.ws38{word-spacing:1.923736pt;}
.wsbe{word-spacing:1.976447pt;}
.wsbd{word-spacing:1.976553pt;}
.ws1ae{word-spacing:2.029211pt;}
.wsc1{word-spacing:2.029742pt;}
.ws11e{word-spacing:2.029795pt;}
.ws130{word-spacing:2.029901pt;}
.ws4b{word-spacing:2.082719pt;}
.ws122{word-spacing:2.082931pt;}
.ws124{word-spacing:2.083091pt;}
.ws14a{word-spacing:2.083250pt;}
.ws268{word-spacing:2.104079pt;}
.wsfc{word-spacing:2.135908pt;}
.ws1a0{word-spacing:2.136067pt;}
.ws11{word-spacing:2.183677pt;}
.wsad{word-spacing:2.189203pt;}
.ws1e3{word-spacing:2.242020pt;}
.ws148{word-spacing:2.242180pt;}
.ws26b{word-spacing:2.242339pt;}
.wsdb{word-spacing:2.348664pt;}
.ws69{word-spacing:2.401482pt;}
.ws6e{word-spacing:2.401747pt;}
.wsa3{word-spacing:2.402013pt;}
.ws198{word-spacing:2.454830pt;}
.ws1ac{word-spacing:2.508019pt;}
.ws156{word-spacing:2.560943pt;}
.ws87{word-spacing:2.561102pt;}
.ws63{word-spacing:2.561155pt;}
.ws64{word-spacing:2.561474pt;}
.ws1c4{word-spacing:2.614291pt;}
.ws39{word-spacing:2.667640pt;}
.ws94{word-spacing:2.720404pt;}
.ws14{word-spacing:2.768226pt;}
.ws1bb{word-spacing:2.773221pt;}
.ws1b8{word-spacing:2.773699pt;}
.wsde{word-spacing:2.773752pt;}
.ws1d8{word-spacing:2.826570pt;}
.ws195{word-spacing:2.846771pt;}
.ws1f3{word-spacing:2.848090pt;}
.ws142{word-spacing:2.849687pt;}
.ws4e{word-spacing:2.879865pt;}
.ws4d{word-spacing:2.880077pt;}
.ws141{word-spacing:2.902559pt;}
.ws176{word-spacing:2.915602pt;}
.ws170{word-spacing:2.924432pt;}
.ws153{word-spacing:2.932682pt;}
.ws37{word-spacing:2.932842pt;}
.wse5{word-spacing:2.933107pt;}
.ws27{word-spacing:2.933213pt;}
.ws53{word-spacing:2.933373pt;}
.ws1b7{word-spacing:2.944210pt;}
.ws181{word-spacing:2.986031pt;}
.wscd{word-spacing:2.986190pt;}
.ws175{word-spacing:2.986243pt;}
.ws1e6{word-spacing:2.986562pt;}
.ws197{word-spacing:3.038848pt;}
.ws23{word-spacing:3.039379pt;}
.wsa6{word-spacing:3.092143pt;}
.ws102{word-spacing:3.145651pt;}
.ws44{word-spacing:3.198840pt;}
.ws26f{word-spacing:3.220042pt;}
.wsf8{word-spacing:3.251923pt;}
.ws151{word-spacing:3.305165pt;}
.ws114{word-spacing:3.305484pt;}
.ws9a{word-spacing:3.357930pt;}
.wscf{word-spacing:3.358195pt;}
.ws167{word-spacing:3.358301pt;}
.wsc{word-spacing:3.406018pt;}
.ws84{word-spacing:3.411066pt;}
.ws6b{word-spacing:3.463883pt;}
.ws1bd{word-spacing:3.464095pt;}
.ws61{word-spacing:3.464414pt;}
.ws180{word-spacing:3.464467pt;}
.ws173{word-spacing:3.509791pt;}
.ws10f{word-spacing:3.517231pt;}
.ws174{word-spacing:3.517603pt;}
.ws9c{word-spacing:3.570048pt;}
.ws9b{word-spacing:3.570739pt;}
.ws158{word-spacing:3.571111pt;}
.wsbc{word-spacing:3.623875pt;}
.ws108{word-spacing:3.677011pt;}
.ws19c{word-spacing:3.730041pt;}
.ws1fc{word-spacing:3.751402pt;}
.ws20{word-spacing:3.836154pt;}
.ws6c{word-spacing:3.836419pt;}
.ws259{word-spacing:3.857620pt;}
.ws13a{word-spacing:3.888971pt;}
.ws12b{word-spacing:3.889555pt;}
.ws23c{word-spacing:3.942266pt;}
.ws236{word-spacing:3.942691pt;}
.ws16a{word-spacing:3.942851pt;}
.ws25a{word-spacing:3.995615pt;}
.ws157{word-spacing:3.995827pt;}
.ws143{word-spacing:4.037487pt;}
.ws13{word-spacing:4.096732pt;}
.ws4c{word-spacing:4.101993pt;}
.ws264{word-spacing:4.102099pt;}
.ws93{word-spacing:4.155076pt;}
.ws16c{word-spacing:4.155235pt;}
.ws244{word-spacing:4.176490pt;}
.ws235{word-spacing:4.176649pt;}
.ws40{word-spacing:4.208106pt;}
.ws18f{word-spacing:4.208371pt;}
.ws10e{word-spacing:4.208424pt;}
.ws3f{word-spacing:4.208637pt;}
.ws183{word-spacing:4.261242pt;}
.wse1{word-spacing:4.261507pt;}
.wsf2{word-spacing:4.261773pt;}
.wsa2{word-spacing:4.314537pt;}
.ws1d9{word-spacing:4.314643pt;}
.ws106{word-spacing:4.367354pt;}
.ws22b{word-spacing:4.367779pt;}
.wsf9{word-spacing:4.367885pt;}
.ws23b{word-spacing:4.442170pt;}
.ws127{word-spacing:4.473467pt;}
.ws1b2{word-spacing:4.473998pt;}
.ws1e0{word-spacing:4.474264pt;}
.ws208{word-spacing:4.495306pt;}
.ws10b{word-spacing:4.526815pt;}
.ws139{word-spacing:4.527081pt;}
.wsac{word-spacing:4.580376pt;}
.ws89{word-spacing:4.633512pt;}
.ws267{word-spacing:4.686276pt;}
.wsa8{word-spacing:4.686808pt;}
.ws1f6{word-spacing:4.714303pt;}
.ws52{word-spacing:4.739625pt;}
.ws1b9{word-spacing:4.792442pt;}
.ws90{word-spacing:4.792973pt;}
.wsb1{word-spacing:4.845738pt;}
.wsc7{word-spacing:4.898820pt;}
.ws1e5{word-spacing:4.899086pt;}
.ws22a{word-spacing:4.920340pt;}
.ws1a4{word-spacing:4.952116pt;}
.ws21f{word-spacing:4.952275pt;}
.ws25f{word-spacing:4.973423pt;}
.ws16{word-spacing:4.999832pt;}
.ws19{word-spacing:5.000098pt;}
.ws123{word-spacing:5.005199pt;}
.ws224{word-spacing:5.058547pt;}
.ws65{word-spacing:5.111630pt;}
.ws209{word-spacing:5.111683pt;}
.ws10a{word-spacing:5.111896pt;}
.wscb{word-spacing:5.164394pt;}
.ws1be{word-spacing:5.164819pt;}
.ws36{word-spacing:5.217743pt;}
.ws3e{word-spacing:5.218008pt;}
.ws21e{word-spacing:5.239210pt;}
.ws32{word-spacing:5.271091pt;}
.ws11d{word-spacing:5.324174pt;}
.wsf3{word-spacing:5.324227pt;}
.wsdd{word-spacing:5.377469pt;}
.ws104{word-spacing:5.430499pt;}
.ws7c{word-spacing:5.430552pt;}
.ws128{word-spacing:5.430818pt;}
.ws168{word-spacing:5.483104pt;}
.ws10d{word-spacing:5.483635pt;}
.wsf5{word-spacing:5.536984pt;}
.ws17d{word-spacing:5.589907pt;}
.ws237{word-spacing:5.590013pt;}
.ws1e1{word-spacing:5.642565pt;}
.ws1a1{word-spacing:5.695914pt;}
.ws18e{word-spacing:5.696179pt;}
.ws24d{word-spacing:5.713592pt;}
.wsf1{word-spacing:5.749315pt;}
.ws227{word-spacing:5.770570pt;}
.ws1da{word-spacing:5.855375pt;}
.ws62{word-spacing:5.855587pt;}
.ws51{word-spacing:5.855640pt;}
.ws223{word-spacing:5.876842pt;}
.wsc0{word-spacing:5.908670pt;}
.ws1aa{word-spacing:5.961487pt;}
.ws34{word-spacing:6.014836pt;}
.ws177{word-spacing:6.120948pt;}
.ws11b{word-spacing:6.121267pt;}
.ws1bf{word-spacing:6.121480pt;}
.ws77{word-spacing:6.174403pt;}
.ws17e{word-spacing:6.174616pt;}
.ws112{word-spacing:6.227380pt;}
.ws251{word-spacing:6.227539pt;}
.ws68{word-spacing:6.227645pt;}
.ws270{word-spacing:6.248794pt;}
.ws7d{word-spacing:6.280410pt;}
.ws101{word-spacing:6.280675pt;}
.wsd{word-spacing:6.328498pt;}
.ws1a6{word-spacing:6.333546pt;}
.ws2a{word-spacing:6.333758pt;}
.ws132{word-spacing:6.333811pt;}
.ws9d{word-spacing:6.334077pt;}
.ws160{word-spacing:6.386575pt;}
.ws20f{word-spacing:6.386841pt;}
.ws21{word-spacing:6.493219pt;}
.ws14d{word-spacing:6.493538pt;}
.ws10{word-spacing:6.540988pt;}
.ws155{word-spacing:6.546355pt;}
.wsd9{word-spacing:6.546568pt;}
.ws6f{word-spacing:6.599438pt;}
.ws24a{word-spacing:6.620746pt;}
.wsa0{word-spacing:6.652149pt;}
.ws14c{word-spacing:6.652680pt;}
.ws266{word-spacing:6.674094pt;}
.ws50{word-spacing:6.864746pt;}
.ws126{word-spacing:6.865171pt;}
.ws117{word-spacing:6.865277pt;}
.ws15{word-spacing:6.912994pt;}
.ws7e{word-spacing:6.918307pt;}
.ws231{word-spacing:6.969239pt;}
.ws134{word-spacing:6.971603pt;}
.ws2b{word-spacing:7.024207pt;}
.ws1c6{word-spacing:7.024579pt;}
.wsc5{word-spacing:7.024951pt;}
.wsd4{word-spacing:7.077715pt;}
.ws1d4{word-spacing:7.077768pt;}
.ws74{word-spacing:7.130798pt;}
.ws1e4{word-spacing:7.131117pt;}
.ws1ed{word-spacing:7.152106pt;}
.ws76{word-spacing:7.184412pt;}
.ws262{word-spacing:7.205242pt;}
.wsfb{word-spacing:7.237017pt;}
.ws3a{word-spacing:7.290047pt;}
.ws152{word-spacing:7.290578pt;}
.ws1fe{word-spacing:7.343342pt;}
.wsec{word-spacing:7.343395pt;}
.wsa{word-spacing:7.391164pt;}
.ws75{word-spacing:7.396531pt;}
.ws15d{word-spacing:7.449508pt;}
.ws1c2{word-spacing:7.449667pt;}
.ws26e{word-spacing:7.470922pt;}
.wse3{word-spacing:7.502803pt;}
.wsf{word-spacing:7.550626pt;}
.wsfd{word-spacing:7.555939pt;}
.ws97{word-spacing:7.555992pt;}
.ws1cd{word-spacing:7.556152pt;}
.ws43{word-spacing:7.608756pt;}
.ws3b{word-spacing:7.608969pt;}
.wse2{word-spacing:7.609500pt;}
.ws185{word-spacing:7.715082pt;}
.ws12d{word-spacing:7.715347pt;}
.ws1d6{word-spacing:7.821566pt;}
.ws1a2{word-spacing:7.874543pt;}
.ws6a{word-spacing:7.874755pt;}
.ws17c{word-spacing:7.927891pt;}
.wsfe{word-spacing:7.981240pt;}
.ws19b{word-spacing:8.033472pt;}
.ws138{word-spacing:8.034004pt;}
.wsff{word-spacing:8.087299pt;}
.wsd5{word-spacing:8.140701pt;}
.ws11f{word-spacing:8.193571pt;}
.ws1f5{word-spacing:8.246282pt;}
.ws16e{word-spacing:8.246654pt;}
.ws17b{word-spacing:8.246707pt;}
.ws29{word-spacing:8.246813pt;}
.ws238{word-spacing:8.282042pt;}
.ws16b{word-spacing:8.299631pt;}
.ws12{word-spacing:8.347400pt;}
.ws18{word-spacing:8.347666pt;}
.ws4f{word-spacing:8.406168pt;}
.ws120{word-spacing:8.406275pt;}
.ws73{word-spacing:8.459251pt;}
.wsa9{word-spacing:8.459464pt;}
.ws205{word-spacing:8.511909pt;}
.ws48{word-spacing:8.512281pt;}
.ws23d{word-spacing:8.512387pt;}
.wsd3{word-spacing:8.565736pt;}
.ws1a7{word-spacing:8.618447pt;}
.ws186{word-spacing:8.618553pt;}
.ws161{word-spacing:8.671795pt;}
.ws9e{word-spacing:8.671901pt;}
.wse0{word-spacing:8.777908pt;}
.wsdf{word-spacing:8.778067pt;}
.ws60{word-spacing:8.831203pt;}
.ws67{word-spacing:8.831363pt;}
.ws21a{word-spacing:8.884180pt;}
.ws1fd{word-spacing:8.905594pt;}
.ws1b6{word-spacing:8.937475pt;}
.ws1b4{word-spacing:8.990611pt;}
.ws18a{word-spacing:8.990824pt;}
.ws13b{word-spacing:9.043641pt;}
.ws31{word-spacing:9.044172pt;}
.ws9{word-spacing:9.250871pt;}
.ws19d{word-spacing:9.256291pt;}
.ws100{word-spacing:9.309427pt;}
.wsc6{word-spacing:9.362457pt;}
.ws88{word-spacing:9.362563pt;}
.ws8f{word-spacing:9.415805pt;}
.ws190{word-spacing:9.415912pt;}
.ws230{word-spacing:9.436954pt;}
.ws15c{word-spacing:9.469207pt;}
.ws91{word-spacing:9.522024pt;}
.ws131{word-spacing:9.575373pt;}
.ws250{word-spacing:9.596362pt;}
.wse4{word-spacing:9.628615pt;}
.ws1c9{word-spacing:9.680954pt;}
.ws71{word-spacing:9.681379pt;}
.ws129{word-spacing:9.734303pt;}
.wsf6{word-spacing:9.734834pt;}
.wsce{word-spacing:9.787545pt;}
.wsb7{word-spacing:9.787651pt;}
.wsc4{word-spacing:9.894189pt;}
.ws15b{word-spacing:9.947006pt;}
.ws17f{word-spacing:10.000195pt;}
.wsd0{word-spacing:10.053225pt;}
.ws109{word-spacing:10.053756pt;}
.ws1f4{word-spacing:10.074586pt;}
.ws1ca{word-spacing:10.106573pt;}
.ws111{word-spacing:10.159338pt;}
.ws191{word-spacing:10.159603pt;}
.ws18c{word-spacing:10.159869pt;}
.ws110{word-spacing:10.212739pt;}
.ws8d{word-spacing:10.265981pt;}
.ws80{word-spacing:10.266035pt;}
.ws192{word-spacing:10.318852pt;}
.wsed{word-spacing:10.372147pt;}
.ws92{word-spacing:10.424964pt;}
.ws228{word-spacing:10.425283pt;}
.wse{word-spacing:10.579271pt;}
.ws98{word-spacing:10.584426pt;}
.ws1ff{word-spacing:10.584691pt;}
.ws2c{word-spacing:10.637721pt;}
.ws8c{word-spacing:10.637774pt;}
.ws276{word-spacing:10.637827pt;}
.ws1e2{word-spacing:10.743887pt;}
.ws219{word-spacing:10.744099pt;}
.ws246{word-spacing:10.766723pt;}
.ws1a9{word-spacing:10.797235pt;}
.ws133{word-spacing:10.850584pt;}
.wsba{word-spacing:10.903295pt;}
.ws49{word-spacing:10.903348pt;}
.wsb9{word-spacing:10.956643pt;}
.ws275{word-spacing:10.977685pt;}
.wsc9{word-spacing:11.009460pt;}
.ws70{word-spacing:11.009514pt;}
.ws179{word-spacing:11.062809pt;}
.ws249{word-spacing:11.084170pt;}
.ws1d7{word-spacing:11.116157pt;}
.ws8a{word-spacing:11.169453pt;}
.ws105{word-spacing:11.169506pt;}
.ws150{word-spacing:11.275619pt;}
.ws6d{word-spacing:11.328595pt;}
.ws14e{word-spacing:11.487897pt;}
.ws25b{word-spacing:11.488003pt;}
.wsb{word-spacing:11.589015pt;}
.wsca{word-spacing:11.594541pt;}
.ws216{word-spacing:11.700547pt;}
.ws154{word-spacing:11.700707pt;}
.wsbf{word-spacing:11.753471pt;}
.ws201{word-spacing:11.799124pt;}
.ws21c{word-spacing:11.801791pt;}
.ws1ec{word-spacing:11.804458pt;}
.wsd8{word-spacing:11.806819pt;}
.ws165{word-spacing:11.859955pt;}
.ws194{word-spacing:11.860168pt;}
.ws1d5{word-spacing:11.912985pt;}
.ws1c3{word-spacing:11.913091pt;}
.ws17a{word-spacing:11.966280pt;}
.wsf7{word-spacing:12.019363pt;}
.ws1c8{word-spacing:12.019629pt;}
.ws1c7{word-spacing:12.035693pt;}
.ws255{word-spacing:12.050067pt;}
.wsb5{word-spacing:12.072446pt;}
.ws1f1{word-spacing:12.125741pt;}
.ws199{word-spacing:12.178559pt;}
.ws182{word-spacing:12.231907pt;}
.ws24c{word-spacing:12.359593pt;}
.ws1cf{word-spacing:12.391315pt;}
.ws85{word-spacing:12.391368pt;}
.ws8b{word-spacing:12.550829pt;}
.ws279{word-spacing:12.816403pt;}
.ws7f{word-spacing:12.869805pt;}
.ws82{word-spacing:12.975917pt;}
.ws35{word-spacing:13.028682pt;}
.ws21d{word-spacing:13.050255pt;}
.ws187{word-spacing:13.052674pt;}
.ws1b1{word-spacing:13.082083pt;}
.ws1b{word-spacing:13.129755pt;}
.ws42{word-spacing:13.347657pt;}
.ws218{word-spacing:13.369071pt;}
.ws263{word-spacing:13.507118pt;}
.ws81{word-spacing:13.507649pt;}
.ws248{word-spacing:13.655952pt;}
.ws18b{word-spacing:13.666579pt;}
.ws254{word-spacing:13.772745pt;}
.ws242{word-spacing:14.091614pt;}
.ws11c{word-spacing:14.144803pt;}
.ws25{word-spacing:14.463354pt;}
.wsb6{word-spacing:14.516808pt;}
.ws12e{word-spacing:14.729299pt;}
.ws207{word-spacing:14.803690pt;}
.ws3d{word-spacing:14.835731pt;}
.ws20c{word-spacing:14.984352pt;}
.ws8{word-spacing:15.004726pt;}
.ws26d{word-spacing:15.090358pt;}
.ws24{word-spacing:15.685747pt;}
.wsb8{word-spacing:15.792019pt;}
.wsda{word-spacing:15.845208pt;}
.ws278{word-spacing:16.025871pt;}
.ws206{word-spacing:16.153344pt;}
.ws260{word-spacing:16.279810pt;}
.ws6{word-spacing:16.306118pt;}
.ws7{word-spacing:16.354127pt;}
.ws23a{word-spacing:16.524977pt;}
.ws253{word-spacing:16.535923pt;}
.wsb0{word-spacing:16.536401pt;}
.ws213{word-spacing:16.631568pt;}
.ws96{word-spacing:16.695384pt;}
.ws1ad{word-spacing:16.774930pt;}
.ws258{word-spacing:16.950384pt;}
.ws271{word-spacing:17.439235pt;}
.ws171{word-spacing:17.674679pt;}
.ws241{word-spacing:17.726170pt;}
.ws26a{word-spacing:17.811187pt;}
.wsd7{word-spacing:18.130003pt;}
.ws1b3{word-spacing:18.135517pt;}
.ws1e{word-spacing:18.141562pt;}
.ws1c{word-spacing:18.141994pt;}
.ws1d{word-spacing:18.143376pt;}
.ws1a{word-spacing:18.143764pt;}
.ws234{word-spacing:18.278784pt;}
.ws18d{word-spacing:18.521293pt;}
.ws47{word-spacing:18.661469pt;}
.ws221{word-spacing:18.663596pt;}
.ws21b{word-spacing:18.916416pt;}
.ws1fa{word-spacing:18.969552pt;}
.ws196{word-spacing:19.394321pt;}
.ws15f{word-spacing:19.447404pt;}
.ws178{word-spacing:19.447670pt;}
.ws12c{word-spacing:19.447776pt;}
.ws27c{word-spacing:19.724136pt;}
.ws265{word-spacing:20.032272pt;}
.ws24b{word-spacing:20.192211pt;}
.wse6{word-spacing:20.361715pt;}
.ws212{word-spacing:20.542378pt;}
.ws1f7{word-spacing:20.562888pt;}
.ws20a{word-spacing:20.935584pt;}
.ws252{word-spacing:20.967466pt;}
.ws257{word-spacing:21.041590pt;}
.ws261{word-spacing:21.254400pt;}
.ws24e{word-spacing:21.520080pt;}
.ws214{word-spacing:21.945168pt;}
.ws210{word-spacing:22.157553pt;}
.ws22e{word-spacing:22.434019pt;}
.ws25c{word-spacing:22.529664pt;}
.ws269{word-spacing:22.667818pt;}
.ws232{word-spacing:22.689072pt;}
.ws4{word-spacing:22.889840pt;}
.ws3{word-spacing:22.953600pt;}
.ws225{word-spacing:23.061024pt;}
.ws243{word-spacing:23.138262pt;}
.ws11a{word-spacing:23.272400pt;}
.ws5f{word-spacing:23.336160pt;}
.ws1e8{word-spacing:23.443603pt;}
.ws274{word-spacing:23.698337pt;}
.ws239{word-spacing:23.858064pt;}
.ws23e{word-spacing:24.070608pt;}
.ws273{word-spacing:24.227277pt;}
.ws211{word-spacing:24.857435pt;}
.ws2{word-spacing:24.866400pt;}
.ws22f{word-spacing:25.218292pt;}
.ws24f{word-spacing:25.451931pt;}
.ws277{word-spacing:25.983504pt;}
.ws247{word-spacing:26.142912pt;}
.ws1f9{word-spacing:26.408751pt;}
.ws172{word-spacing:26.520651pt;}
.ws189{word-spacing:26.525984pt;}
.ws256{word-spacing:27.365040pt;}
.ws23f{word-spacing:27.524448pt;}
.ws229{word-spacing:28.268352pt;}
.ws1e9{word-spacing:28.756672pt;}
.ws146{word-spacing:28.821278pt;}
.ws20b{word-spacing:29.490321pt;}
.ws1f2{word-spacing:29.597018pt;}
.ws1f8{word-spacing:30.924993pt;}
.ws200{word-spacing:31.084560pt;}
.ws27b{word-spacing:31.350081pt;}
.ws226{word-spacing:32.232298pt;}
.ws272{word-spacing:32.306316pt;}
.ws233{word-spacing:33.103675pt;}
.ws17{word-spacing:33.252213pt;}
.ws25d{word-spacing:34.006881pt;}
.ws22d{word-spacing:36.876331pt;}
.ws1eb{word-spacing:39.703379pt;}
.ws144{word-spacing:40.903534pt;}
.ws13d{word-spacing:41.621801pt;}
.ws1ea{word-spacing:42.413155pt;}
.ws162{word-spacing:42.838243pt;}
.ws27a{word-spacing:48.797598pt;}
.ws1ce{word-spacing:57.184963pt;}
.ws1d1{word-spacing:60.319722pt;}
.ws1dc{word-spacing:60.372698pt;}
.ws1d2{word-spacing:60.373017pt;}
.ws1d0{word-spacing:60.373123pt;}
.ws1d3{word-spacing:60.373229pt;}
.ws1e7{word-spacing:64.556513pt;}
.ws22c{word-spacing:66.859964pt;}
.ws1f{word-spacing:70.072240pt;}
.ws1dd{word-spacing:128.280984pt;}
.ws145{word-spacing:172.255155pt;}
.ws140{word-spacing:198.071281pt;}
.ws163{word-spacing:203.840323pt;}
.ws1c1{word-spacing:252.991070pt;}
.ws13e{word-spacing:596.844200pt;}
.ws13f{word-spacing:641.678586pt;}
.ws166{word-spacing:795.615955pt;}
.ws147{word-spacing:802.469895pt;}
._1{margin-left:-9.231273pt;}
._3{margin-left:-5.866430pt;}
._4{margin-left:-4.054013pt;}
._f{margin-left:-2.922480pt;}
._2{margin-left:-1.989618pt;}
._6{margin-left:-0.932756pt;}
._0{width:1.555625pt;}
._16{width:3.107706pt;}
._3c{width:4.197744pt;}
._12{width:13.785810pt;}
._5{width:15.511440pt;}
._21{width:17.118403pt;}
._37{width:18.561378pt;}
._10{width:19.737042pt;}
._20{width:21.094992pt;}
._2f{width:22.157712pt;}
._9{width:23.099479pt;}
._b{width:24.601809pt;}
._8{width:26.485580pt;}
._c{width:28.108891pt;}
._e{width:29.277936pt;}
._14{width:30.340922pt;}
._11{width:32.094144pt;}
._1f{width:33.233533pt;}
._d{width:34.458477pt;}
._1c{width:35.584633pt;}
._15{width:36.703464pt;}
._1e{width:38.160022pt;}
._1d{width:39.214102pt;}
._a{width:40.330330pt;}
._13{width:41.977706pt;}
._7{width:43.571254pt;}
._19{width:45.430696pt;}
._1a{width:46.692724pt;}
._31{width:48.565879pt;}
._30{width:49.571228pt;}
._36{width:50.464307pt;}
._18{width:53.507793pt;}
._4a{width:55.049268pt;}
._49{width:56.789067pt;}
._1b{width:58.883487pt;}
._48{width:63.635830pt;}
._47{width:67.057632pt;}
._17{width:70.136000pt;}
._42{width:91.287648pt;}
._43{width:92.501643pt;}
._40{width:93.466224pt;}
._46{width:101.513346pt;}
._3b{width:110.401927pt;}
._35{width:117.666584pt;}
._3d{width:118.971504pt;}
._3f{width:120.512448pt;}
._38{width:139.968970pt;}
._44{width:143.042112pt;}
._2d{width:186.598594pt;}
._45{width:188.367120pt;}
._24{width:212.414720pt;}
._34{width:218.601504pt;}
._27{width:298.634986pt;}
._41{width:313.024176pt;}
._39{width:315.202302pt;}
._3e{width:339.539040pt;}
._3a{width:342.959211pt;}
._26{width:417.055308pt;}
._25{width:418.407067pt;}
._33{width:534.069936pt;}
._22{width:547.745117pt;}
._32{width:548.759140pt;}
._2b{width:550.442077pt;}
._2c{width:574.129197pt;}
._2a{width:582.111351pt;}
._2e{width:585.613925pt;}
._29{width:613.808426pt;}
._28{width:631.406388pt;}
._23{width:667.451708pt;}
.fs6{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;}
.fs7{font-size:47.818667pt;}
.fsb{font-size:51.632251pt;}
.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;}
.ycb{bottom:38.216555pt;}
.yca{bottom:94.486667pt;}
.y3d{bottom:94.488000pt;}
.y210{bottom:104.461333pt;}
.y3c{bottom:110.428000pt;}
.y90{bottom:111.993333pt;}
.yc9{bottom:117.740000pt;}
.y20f{bottom:120.401333pt;}
.yef{bottom:126.368000pt;}
.y22b{bottom:126.872000pt;}
.y3b{bottom:127.090667pt;}
.y290{bottom:127.493333pt;}
.y25b{bottom:127.586667pt;}
.y8f{bottom:127.933333pt;}
.yc8{bottom:133.680000pt;}
.yee{bottom:142.308000pt;}
.y17c{bottom:142.309333pt;}
.y22a{bottom:142.812000pt;}
.y3a{bottom:143.030667pt;}
.y28f{bottom:143.433333pt;}
.y25a{bottom:143.526667pt;}
.y8e{bottom:143.874667pt;}
.y54{bottom:146.430667pt;}
.yc7{bottom:149.620000pt;}
.y152{bottom:151.556000pt;}
.yed{bottom:158.248000pt;}
.y11e{bottom:158.249333pt;}
.y229{bottom:158.752000pt;}
.y39{bottom:158.970667pt;}
.y28e{bottom:159.373333pt;}
.y259{bottom:159.466667pt;}
.y8d{bottom:159.814667pt;}
.y53{bottom:162.370667pt;}
.yc6{bottom:165.560000pt;}
.yfb{bottom:174.188000pt;}
.yec{bottom:174.189333pt;}
.y228{bottom:174.692000pt;}
.y38{bottom:174.910667pt;}
.y28d{bottom:175.313333pt;}
.y258{bottom:175.408000pt;}
.y8c{bottom:175.754667pt;}
.y52{bottom:178.312000pt;}
.yc5{bottom:181.500000pt;}
.y151{bottom:189.417333pt;}
.yeb{bottom:190.129333pt;}
.y227{bottom:190.633333pt;}
.y37{bottom:190.850667pt;}
.y28c{bottom:191.254667pt;}
.y8b{bottom:191.694667pt;}
.y257{bottom:192.566667pt;}
.y51{bottom:194.252000pt;}
.yc4{bottom:197.441333pt;}
.y150{bottom:205.357333pt;}
.y20c{bottom:205.406667pt;}
.yea{bottom:206.069333pt;}
.y11d{bottom:206.285333pt;}
.y226{bottom:206.573333pt;}
.y36{bottom:206.792000pt;}
.y8a{bottom:207.634667pt;}
.y28b{bottom:208.318667pt;}
.y256{bottom:208.506667pt;}
.y50{bottom:210.192000pt;}
.yc3{bottom:213.381333pt;}
.y1cf{bottom:214.648000pt;}
.y14f{bottom:221.297333pt;}
.y20b{bottom:221.346667pt;}
.ye9{bottom:222.009333pt;}
.y11c{bottom:222.225333pt;}
.y225{bottom:222.513333pt;}
.y35{bottom:222.732000pt;}
.y89{bottom:223.574667pt;}
.y28a{bottom:224.260000pt;}
.y255{bottom:224.446667pt;}
.y4f{bottom:226.132000pt;}
.yc2{bottom:229.321333pt;}
.yfa{bottom:230.588000pt;}
.y14e{bottom:237.238667pt;}
.y20a{bottom:237.286667pt;}
.ye8{bottom:237.949333pt;}
.y17b{bottom:237.950667pt;}
.y11b{bottom:238.165333pt;}
.y34{bottom:238.672000pt;}
.y88{bottom:239.516000pt;}
.y289{bottom:240.200000pt;}
.y254{bottom:240.386667pt;}
.y4e{bottom:242.072000pt;}
.yc1{bottom:245.261333pt;}
.y224{bottom:245.316000pt;}
.y14d{bottom:253.178667pt;}
.y209{bottom:253.226667pt;}
.ye7{bottom:253.890667pt;}
.y11a{bottom:254.106667pt;}
.y1f6{bottom:254.170667pt;}
.y33{bottom:254.612000pt;}
.y87{bottom:255.456000pt;}
.y288{bottom:256.140000pt;}
.y253{bottom:256.326667pt;}
.y4d{bottom:258.013333pt;}
.yc0{bottom:261.201333pt;}
.yf9{bottom:268.514667pt;}
.y14c{bottom:269.118667pt;}
.ye6{bottom:269.830667pt;}
.y119{bottom:270.046667pt;}
.y1f5{bottom:270.110667pt;}
.y32{bottom:270.552000pt;}
.y86{bottom:271.396000pt;}
.y287{bottom:272.080000pt;}
.y252{bottom:273.486667pt;}
.y208{bottom:273.684000pt;}
.y4c{bottom:273.953333pt;}
.y1ce{bottom:274.677333pt;}
.ybf{bottom:277.142667pt;}
.y223{bottom:283.729333pt;}
.yf8{bottom:284.454667pt;}
.y14b{bottom:285.058667pt;}
.y1cd{bottom:285.230667pt;}
.ye5{bottom:285.770667pt;}
.y118{bottom:285.986667pt;}
.y1f4{bottom:286.050667pt;}
.y31{bottom:286.492000pt;}
.y85{bottom:287.336000pt;}
.y286{bottom:288.020000pt;}
.y251{bottom:289.426667pt;}
.y207{bottom:289.624000pt;}
.y4b{bottom:289.893333pt;}
.ybe{bottom:293.082667pt;}
.y1ac{bottom:294.349333pt;}
.y1cc{bottom:298.780000pt;}
.y222{bottom:299.669333pt;}
.yf7{bottom:300.394667pt;}
.y14a{bottom:300.998667pt;}
.ye4{bottom:301.710667pt;}
.y117{bottom:301.926667pt;}
.y1f3{bottom:301.990667pt;}
.y30{bottom:302.433333pt;}
.y84{bottom:303.276000pt;}
.y285{bottom:305.085333pt;}
.y250{bottom:305.366667pt;}
.y206{bottom:305.564000pt;}
.y4a{bottom:305.833333pt;}
.ybd{bottom:309.022667pt;}
.y1cb{bottom:311.916000pt;}
.y221{bottom:315.609333pt;}
.yf6{bottom:316.334667pt;}
.y149{bottom:316.938667pt;}
.y17a{bottom:317.650667pt;}
.y116{bottom:317.866667pt;}
.y2f{bottom:318.373333pt;}
.y83{bottom:319.217333pt;}
.y284{bottom:321.025333pt;}
.y24f{bottom:321.306667pt;}
.y205{bottom:321.504000pt;}
.y49{bottom:321.773333pt;}
.ybc{bottom:324.962667pt;}
.y1ca{bottom:325.465333pt;}
.ye3{bottom:326.229333pt;}
.y1f2{bottom:326.433333pt;}
.y1ab{bottom:329.889333pt;}
.y220{bottom:331.549333pt;}
.yf5{bottom:332.274667pt;}
.y148{bottom:332.880000pt;}
.y179{bottom:333.592000pt;}
.y115{bottom:333.806667pt;}
.y2e{bottom:334.313333pt;}
.y82{bottom:335.157333pt;}
.y283{bottom:336.966667pt;}
.y24e{bottom:337.246667pt;}
.y1c9{bottom:338.601333pt;}
.ybb{bottom:340.902667pt;}
.y204{bottom:341.961333pt;}
.y1f1{bottom:342.373333pt;}
.y48{bottom:344.957333pt;}
.y1aa{bottom:345.829333pt;}
.y21f{bottom:347.489333pt;}
.yf4{bottom:348.214667pt;}
.y147{bottom:348.820000pt;}
.y178{bottom:349.532000pt;}
.y114{bottom:349.748000pt;}
.y2d{bottom:350.253333pt;}
.y81{bottom:351.097333pt;}
.y1c8{bottom:352.150667pt;}
.y282{bottom:354.030667pt;}
.y24d{bottom:354.406667pt;}
.yba{bottom:356.842667pt;}
.y203{bottom:357.901333pt;}
.y1f0{bottom:358.313333pt;}
.y47{bottom:360.897333pt;}
.y1a9{bottom:361.769333pt;}
.ye2{bottom:364.156000pt;}
.y146{bottom:364.760000pt;}
.y177{bottom:365.472000pt;}
.y113{bottom:365.688000pt;}
.y1c7{bottom:365.700000pt;}
.y2c{bottom:366.916000pt;}
.y80{bottom:367.037333pt;}
.y281{bottom:369.972000pt;}
.y24c{bottom:370.346667pt;}
.yb9{bottom:372.784000pt;}
.y202{bottom:373.841333pt;}
.y21e{bottom:376.713333pt;}
.y46{bottom:376.838667pt;}
.y1a8{bottom:377.709333pt;}
.y1c6{bottom:379.249333pt;}
.y1ef{bottom:379.301333pt;}
.ye1{bottom:380.096000pt;}
.y145{bottom:380.700000pt;}
.y176{bottom:381.412000pt;}
.y112{bottom:381.628000pt;}
.y2b{bottom:382.856000pt;}
.y7f{bottom:382.977333pt;}
.y280{bottom:385.912000pt;}
.y24b{bottom:386.286667pt;}
.yb8{bottom:388.724000pt;}
.y201{bottom:389.781333pt;}
.y1c5{bottom:389.801333pt;}
.y21d{bottom:392.653333pt;}
.y45{bottom:392.778667pt;}
.y1ee{bottom:395.241333pt;}
.ye0{bottom:396.036000pt;}
.y144{bottom:396.640000pt;}
.y111{bottom:397.568000pt;}
.y2a{bottom:398.796000pt;}
.y7e{bottom:398.917333pt;}
.y27f{bottom:401.852000pt;}
.y24a{bottom:402.226667pt;}
.y1c4{bottom:403.350667pt;}
.yb7{bottom:404.664000pt;}
.y175{bottom:405.930667pt;}
.y21c{bottom:408.594667pt;}
.y44{bottom:408.718667pt;}
.y200{bottom:410.238667pt;}
.y1a7{bottom:411.880000pt;}
.ydf{bottom:411.976000pt;}
.y143{bottom:412.580000pt;}
.y110{bottom:413.508000pt;}
.y29{bottom:414.736000pt;}
.y7d{bottom:414.858667pt;}
.y1c3{bottom:416.900000pt;}
.y27e{bottom:417.792000pt;}
.y249{bottom:418.166667pt;}
.yb6{bottom:420.604000pt;}
.y1a6{bottom:422.433333pt;}
.y21b{bottom:424.534667pt;}
.y43{bottom:424.658667pt;}
.y1ff{bottom:426.178667pt;}
.y1ed{bottom:427.180000pt;}
.yf3{bottom:427.916000pt;}
.yde{bottom:427.917333pt;}
.y142{bottom:428.521333pt;}
.y10f{bottom:429.449333pt;}
.y1c2{bottom:430.449333pt;}
.y28{bottom:430.676000pt;}
.y7c{bottom:430.798667pt;}
.y27d{bottom:434.857333pt;}
.y248{bottom:435.325333pt;}
.y1a5{bottom:435.982667pt;}
.yb5{bottom:436.544000pt;}
.y21a{bottom:440.474667pt;}
.y42{bottom:440.598667pt;}
.y1c1{bottom:441.002667pt;}
.y1fe{bottom:442.118667pt;}
.y1ec{bottom:443.120000pt;}
.yf2{bottom:443.856000pt;}
.ydd{bottom:443.857333pt;}
.y141{bottom:444.461333pt;}
.y27{bottom:446.617333pt;}
.y7b{bottom:446.738667pt;}
.y1a4{bottom:449.532000pt;}
.y27c{bottom:450.797333pt;}
.y247{bottom:451.266667pt;}
.yb4{bottom:452.484000pt;}
.y10e{bottom:454.369333pt;}
.y1c0{bottom:454.552000pt;}
.y219{bottom:456.414667pt;}
.y41{bottom:456.538667pt;}
.y1fd{bottom:458.058667pt;}
.y1eb{bottom:459.061333pt;}
.ydc{bottom:459.797333pt;}
.y1a3{bottom:460.084000pt;}
.y140{bottom:460.401333pt;}
.y26{bottom:462.557333pt;}
.y7a{bottom:462.678667pt;}
.y174{bottom:463.246667pt;}
.y27b{bottom:466.737333pt;}
.y246{bottom:467.206667pt;}
.y1bf{bottom:468.101333pt;}
.yb3{bottom:468.425333pt;}
.y218{bottom:472.354667pt;}
.y40{bottom:472.480000pt;}
.y1a2{bottom:473.633333pt;}
.y1ea{bottom:475.001333pt;}
.ydb{bottom:475.737333pt;}
.y13f{bottom:476.341333pt;}
.y173{bottom:476.382667pt;}
.y25{bottom:478.497333pt;}
.y79{bottom:478.618667pt;}
.y1be{bottom:481.650667pt;}
.y1fc{bottom:482.501333pt;}
.y27a{bottom:482.678667pt;}
.yb2{bottom:484.365333pt;}
.y1a1{bottom:486.769333pt;}
.y217{bottom:488.296000pt;}
.y3f{bottom:488.420000pt;}
.y172{bottom:489.932000pt;}
.y1e9{bottom:490.941333pt;}
.y10d{bottom:491.473333pt;}
.yda{bottom:491.677333pt;}
.y13e{bottom:492.281333pt;}
.y24{bottom:494.437333pt;}
.y78{bottom:494.558667pt;}
.y1bd{bottom:495.200000pt;}
.y1fb{bottom:498.441333pt;}
.y279{bottom:499.742667pt;}
.yb1{bottom:500.305333pt;}
.y1a0{bottom:500.318667pt;}
.y171{bottom:503.481333pt;}
.y216{bottom:504.236000pt;}
.y3e{bottom:504.360000pt;}
.y1e8{bottom:506.881333pt;}
.y10c{bottom:507.413333pt;}
.yd9{bottom:507.617333pt;}
.y13d{bottom:508.222667pt;}
.y77{bottom:510.500000pt;}
.y1bc{bottom:512.852000pt;}
.y19f{bottom:513.454667pt;}
.y278{bottom:515.684000pt;}
.yb0{bottom:516.245333pt;}
.y170{bottom:516.617333pt;}
.y215{bottom:520.176000pt;}
.y23{bottom:520.300000pt;}
.y1fa{bottom:522.012000pt;}
.y1e7{bottom:522.821333pt;}
.y10b{bottom:523.353333pt;}
.yf1{bottom:523.557333pt;}
.yd8{bottom:523.558667pt;}
.y13c{bottom:524.162667pt;}
.y1bb{bottom:526.401333pt;}
.y76{bottom:526.440000pt;}
.y19e{bottom:527.004000pt;}
.y16f{bottom:530.166667pt;}
.y277{bottom:531.624000pt;}
.yaf{bottom:532.185333pt;}
.y214{bottom:536.116000pt;}
.y1f9{bottom:537.952000pt;}
.y1e6{bottom:538.865333pt;}
.y10a{bottom:539.294667pt;}
.yf0{bottom:539.497333pt;}
.yd7{bottom:539.498667pt;}
.y13b{bottom:540.102667pt;}
.y19d{bottom:540.553333pt;}
.y75{bottom:542.380000pt;}
.y16e{bottom:543.302667pt;}
.y276{bottom:547.564000pt;}
.yae{bottom:548.125333pt;}
.y245{bottom:549.345333pt;}
.y213{bottom:552.056000pt;}
.y19c{bottom:554.102667pt;}
.y1e5{bottom:554.805333pt;}
.y109{bottom:555.234667pt;}
.yd6{bottom:555.438667pt;}
.y13a{bottom:556.042667pt;}
.y16d{bottom:556.852000pt;}
.y74{bottom:558.320000pt;}
.y275{bottom:563.504000pt;}
.yad{bottom:564.066667pt;}
.y244{bottom:565.285333pt;}
.y2ac{bottom:566.950667pt;}
.y19b{bottom:567.652000pt;}
.y16c{bottom:570.401333pt;}
.y1e4{bottom:570.745333pt;}
.y108{bottom:571.174667pt;}
.yd5{bottom:571.378667pt;}
.y139{bottom:571.982667pt;}
.y73{bottom:575.826667pt;}
.y20e{bottom:576.390667pt;}
.y1ba{bottom:576.552000pt;}
.y1f8{bottom:579.058667pt;}
.yac{bottom:580.006667pt;}
.y274{bottom:580.569333pt;}
.y19a{bottom:581.201333pt;}
.y243{bottom:581.225333pt;}
.y2ab{bottom:582.890667pt;}
.y16b{bottom:583.536000pt;}
.y1e3{bottom:586.789333pt;}
.y1b9{bottom:587.105333pt;}
.y107{bottom:587.114667pt;}
.yd4{bottom:587.318667pt;}
.y138{bottom:587.922667pt;}
.y1f{bottom:591.304000pt;}
.y72{bottom:591.766667pt;}
.y20d{bottom:592.330667pt;}
.y199{bottom:594.750667pt;}
.y1f7{bottom:594.998667pt;}
.y273{bottom:596.509333pt;}
.y16a{bottom:597.085333pt;}
.y242{bottom:597.165333pt;}
.y212{bottom:598.274667pt;}
.y2aa{bottom:598.830667pt;}
.y1b8{bottom:600.654667pt;}
.y22{bottom:601.930667pt;}
.y1e2{bottom:602.729333pt;}
.y106{bottom:603.054667pt;}
.yab{bottom:603.258667pt;}
.y137{bottom:603.864000pt;}
.y1e{bottom:607.244000pt;}
.y71{bottom:607.706667pt;}
.y198{bottom:608.300000pt;}
.y169{bottom:610.634667pt;}
.y272{bottom:612.449333pt;}
.y21{bottom:612.557333pt;}
.y241{bottom:613.105333pt;}
.y1b7{bottom:613.790667pt;}
.y211{bottom:614.214667pt;}
.y2a9{bottom:614.772000pt;}
.y1e1{bottom:618.669333pt;}
.y105{bottom:618.994667pt;}
.yaa{bottom:619.198667pt;}
.yd3{bottom:619.200000pt;}
.y136{bottom:620.162667pt;}
.y197{bottom:621.436000pt;}
.y20{bottom:623.184000pt;}
.y70{bottom:623.646667pt;}
.y1b6{bottom:627.340000pt;}
.y168{bottom:628.288000pt;}
.y271{bottom:628.390667pt;}
.y240{bottom:630.265333pt;}
.y2a8{bottom:631.449333pt;}
.y1e0{bottom:634.609333pt;}
.y104{bottom:634.936000pt;}
.y196{bottom:634.985333pt;}
.ya9{bottom:635.140000pt;}
.y135{bottom:636.102667pt;}
.y1d{bottom:639.125333pt;}
.y6f{bottom:639.586667pt;}
.y1b5{bottom:640.889333pt;}
.y270{bottom:645.454667pt;}
.y23f{bottom:646.205333pt;}
.y2a7{bottom:647.389333pt;}
.y195{bottom:648.534667pt;}
.y1df{bottom:650.549333pt;}
.y103{bottom:650.876000pt;}
.ya8{bottom:651.080000pt;}
.y1b4{bottom:654.025333pt;}
.y1c{bottom:655.065333pt;}
.y6e{bottom:655.526667pt;}
.y167{bottom:659.456000pt;}
.y26f{bottom:661.396000pt;}
.y194{bottom:662.084000pt;}
.y23e{bottom:662.145333pt;}
.y2a6{bottom:663.330667pt;}
.y1de{bottom:666.489333pt;}
.y102{bottom:666.816000pt;}
.ya7{bottom:667.020000pt;}
.y1b3{bottom:667.574667pt;}
.y1b{bottom:671.005333pt;}
.y6d{bottom:671.468000pt;}
.y166{bottom:675.396000pt;}
.y193{bottom:675.633333pt;}
.y26e{bottom:677.336000pt;}
.y23d{bottom:678.085333pt;}
.y2a5{bottom:679.270667pt;}
.y1b2{bottom:681.124000pt;}
.y1dd{bottom:682.430667pt;}
.y101{bottom:682.756000pt;}
.ya6{bottom:682.960000pt;}
.y1a{bottom:686.945333pt;}
.y6c{bottom:687.408000pt;}
.y165{bottom:691.336000pt;}
.y26d{bottom:693.276000pt;}
.y192{bottom:693.285333pt;}
.y1b1{bottom:694.260000pt;}
.y134{bottom:695.089748pt;}
.y23c{bottom:695.244000pt;}
.y2a4{bottom:695.948000pt;}
.y1dc{bottom:698.370667pt;}
.y100{bottom:698.696000pt;}
.ya5{bottom:698.900000pt;}
.yd2{bottom:698.901333pt;}
.y19{bottom:702.885333pt;}
.y6b{bottom:703.348000pt;}
.y164{bottom:707.276000pt;}
.y1b0{bottom:707.809333pt;}
.y26c{bottom:709.216000pt;}
.y191{bottom:709.225333pt;}
.y133{bottom:710.579942pt;}
.y23b{bottom:711.184000pt;}
.y2a3{bottom:711.889333pt;}
.y1db{bottom:714.310667pt;}
.yff{bottom:714.637333pt;}
.ya4{bottom:714.840000pt;}
.yd1{bottom:714.841333pt;}
.y18{bottom:718.826667pt;}
.y6a{bottom:719.288000pt;}
.y1af{bottom:721.358667pt;}
.y163{bottom:723.217333pt;}
.y132{bottom:726.068840pt;}
.y26b{bottom:726.281333pt;}
.y23a{bottom:727.125333pt;}
.y2a2{bottom:727.829333pt;}
.y1da{bottom:730.250667pt;}
.yfe{bottom:730.577333pt;}
.ya3{bottom:730.781333pt;}
.y17{bottom:734.766667pt;}
.y69{bottom:735.228000pt;}
.y1ae{bottom:736.428000pt;}
.y162{bottom:739.157333pt;}
.y190{bottom:739.720000pt;}
.y131{bottom:741.557738pt;}
.y26a{bottom:742.221333pt;}
.y239{bottom:743.065333pt;}
.y2a1{bottom:743.769333pt;}
.y1d9{bottom:746.190667pt;}
.yfd{bottom:746.517333pt;}
.ya2{bottom:746.721333pt;}
.y1ad{bottom:749.977333pt;}
.y16{bottom:750.706667pt;}
.y68{bottom:751.169333pt;}
.y161{bottom:755.097333pt;}
.y18f{bottom:755.661333pt;}
.y130{bottom:757.046636pt;}
.y269{bottom:758.161333pt;}
.y238{bottom:759.005333pt;}
.y2a0{bottom:759.709333pt;}
.y1d8{bottom:762.130667pt;}
.ya1{bottom:762.661333pt;}
.y15{bottom:766.646667pt;}
.y67{bottom:767.109333pt;}
.y160{bottom:771.037333pt;}
.y18e{bottom:771.601333pt;}
.y12f{bottom:772.535534pt;}
.y237{bottom:774.945333pt;}
.y268{bottom:775.226667pt;}
.y29f{bottom:776.388000pt;}
.y1d7{bottom:778.072000pt;}
.ya0{bottom:778.601333pt;}
.y14{bottom:782.586667pt;}
.y66{bottom:783.049333pt;}
.y15f{bottom:786.977333pt;}
.y18d{bottom:787.541333pt;}
.y12e{bottom:788.024432pt;}
.y267{bottom:791.166667pt;}
.y236{bottom:792.104000pt;}
.y29e{bottom:792.328000pt;}
.yfc{bottom:793.368000pt;}
.y1d6{bottom:794.012000pt;}
.y9f{bottom:794.541333pt;}
.yd0{bottom:794.542667pt;}
.y13{bottom:798.526667pt;}
.y65{bottom:798.989333pt;}
.y15e{bottom:802.917333pt;}
.y12d{bottom:803.514625pt;}
.y266{bottom:807.108000pt;}
.y235{bottom:808.044000pt;}
.y29d{bottom:808.268000pt;}
.y1d5{bottom:809.952000pt;}
.y9e{bottom:810.481333pt;}
.ycf{bottom:810.482667pt;}
.y12{bottom:814.468000pt;}
.y64{bottom:814.929333pt;}
.y15d{bottom:818.858667pt;}
.y12c{bottom:819.003523pt;}
.y265{bottom:823.048000pt;}
.y234{bottom:823.985333pt;}
.y29c{bottom:824.208000pt;}
.y9d{bottom:826.422667pt;}
.y11{bottom:830.408000pt;}
.y63{bottom:830.869333pt;}
.y18c{bottom:831.292000pt;}
.y12b{bottom:834.492421pt;}
.y15c{bottom:834.798667pt;}
.y233{bottom:839.925333pt;}
.y264{bottom:840.113333pt;}
.y29b{bottom:840.148000pt;}
.y9c{bottom:842.362667pt;}
.y18b{bottom:844.428000pt;}
.y10{bottom:846.348000pt;}
.y62{bottom:846.810667pt;}
.y12a{bottom:849.981319pt;}
.y232{bottom:855.865333pt;}
.y263{bottom:856.053333pt;}
.y29a{bottom:856.826667pt;}
.y18a{bottom:857.977333pt;}
.y9b{bottom:858.302667pt;}
.y1d4{bottom:860.636000pt;}
.yf{bottom:862.288000pt;}
.y61{bottom:862.750667pt;}
.y129{bottom:865.470217pt;}
.y189{bottom:871.113333pt;}
.y231{bottom:871.805333pt;}
.y262{bottom:871.993333pt;}
.y299{bottom:872.766667pt;}
.y9a{bottom:874.242667pt;}
.y1d3{bottom:876.576000pt;}
.ye{bottom:878.228000pt;}
.y60{bottom:878.690667pt;}
.y128{bottom:880.959115pt;}
.y188{bottom:884.662667pt;}
.y261{bottom:887.933333pt;}
.y298{bottom:888.706667pt;}
.y230{bottom:888.964000pt;}
.y99{bottom:890.182667pt;}
.yce{bottom:890.184000pt;}
.y1d2{bottom:892.516000pt;}
.y15b{bottom:892.648000pt;}
.y5f{bottom:894.630667pt;}
.y127{bottom:896.449309pt;}
.y187{bottom:897.798667pt;}
.y297{bottom:904.648000pt;}
.y22f{bottom:904.905333pt;}
.y260{bottom:904.998667pt;}
.y98{bottom:906.122667pt;}
.ycd{bottom:906.124000pt;}
.yc{bottom:906.788000pt;}
.y15a{bottom:908.589333pt;}
.yd{bottom:910.538667pt;}
.y5e{bottom:910.570667pt;}
.y186{bottom:911.348000pt;}
.y126{bottom:911.938207pt;}
.y1d1{bottom:916.957333pt;}
.y296{bottom:920.588000pt;}
.y22e{bottom:920.845333pt;}
.y25f{bottom:920.938667pt;}
.y97{bottom:922.064000pt;}
.y185{bottom:924.484000pt;}
.y159{bottom:924.529333pt;}
.y5d{bottom:926.510667pt;}
.y125{bottom:927.427105pt;}
.yb{bottom:928.470667pt;}
.y22d{bottom:936.785333pt;}
.y25e{bottom:936.878667pt;}
.y295{bottom:937.265333pt;}
.y96{bottom:938.004000pt;}
.y184{bottom:938.033333pt;}
.y158{bottom:940.469333pt;}
.y1d0{bottom:940.528000pt;}
.y5c{bottom:942.452000pt;}
.y124{bottom:942.916003pt;}
.ya{bottom:943.082667pt;}
.y183{bottom:951.582667pt;}
.y22c{bottom:952.725333pt;}
.y25d{bottom:952.820000pt;}
.y294{bottom:953.206667pt;}
.y95{bottom:953.944000pt;}
.y157{bottom:956.409333pt;}
.y8{bottom:956.601333pt;}
.y5b{bottom:958.392000pt;}
.y123{bottom:958.404901pt;}
.y182{bottom:962.136000pt;}
.y9{bottom:962.385333pt;}
.y25c{bottom:968.760000pt;}
.y293{bottom:969.146667pt;}
.y94{bottom:969.884000pt;}
.y156{bottom:972.349333pt;}
.y122{bottom:973.895094pt;}
.y5a{bottom:974.332000pt;}
.y7{bottom:975.198667pt;}
.y181{bottom:975.685333pt;}
.y292{bottom:985.086667pt;}
.y93{bottom:985.824000pt;}
.ycc{bottom:985.825333pt;}
.y180{bottom:989.234667pt;}
.y121{bottom:989.423733pt;}
.y59{bottom:990.272000pt;}
.y155{bottom:996.790667pt;}
.y291{bottom:1001.026667pt;}
.y92{bottom:1001.765333pt;}
.y17f{bottom:1002.784000pt;}
.y58{bottom:1006.212000pt;}
.y6{bottom:1009.734667pt;}
.y120{bottom:1013.174400pt;}
.y91{bottom:1017.705333pt;}
.y154{bottom:1017.778667pt;}
.y17e{bottom:1020.436000pt;}
.y5{bottom:1033.645333pt;}
.y11f{bottom:1033.718667pt;}
.y153{bottom:1033.720000pt;}
.y17d{bottom:1033.985333pt;}
.y57{bottom:1036.345278pt;}
.y4{bottom:1036.403388pt;}
.y3{bottom:1048.651848pt;}
.hf{height:11.733399pt;}
.h8{height:22.445397pt;}
.hd{height:26.631381pt;}
.h9{height:29.924693pt;}
.ha{height:30.288533pt;}
.h12{height:30.549524pt;}
.h4{height:32.000200pt;}
.h11{height:38.037520pt;}
.hb{height:38.045376pt;}
.h14{height:38.724188pt;}
.h3{height:39.846471pt;}
.hc{height:39.852000pt;}
.h7{height:40.381333pt;}
.h15{height:42.472043pt;}
.h10{height:44.354167pt;}
.he{height:45.652160pt;}
.h6{height:53.060693pt;}
.h5{height:54.706080pt;}
.h2{height:1062.715892pt;}
.h13{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:11.863987pt;}
.w3{width:11.865333pt;}
.w2{width:647.107592pt;}
.w5{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.167079pt;}
.xf{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x1b{left:82.749333pt;}
.x23{left:87.222667pt;}
.xc{left:88.874667pt;}
.x18{left:94.125333pt;}
.x1c{left:98.172000pt;}
.x27{left:102.896000pt;}
.x2{left:111.874558pt;}
.x5{left:131.883211pt;}
.x12{left:145.837333pt;}
.x19{left:155.418667pt;}
.x26{left:159.856000pt;}
.x11{left:185.090357pt;}
.x6{left:210.530667pt;}
.x7{left:219.165333pt;}
.x24{left:298.384000pt;}
.x1a{left:322.540000pt;}
.x25{left:340.781333pt;}
.xd{left:403.492000pt;}
.x1d{left:410.650667pt;}
.xe{left:416.776000pt;}
.x1e{left:426.074667pt;}
.x28{left:430.797333pt;}
.x2a{left:446.766667pt;}
.x20{left:452.673333pt;}
.x14{left:476.647661pt;}
.x1f{left:480.104000pt;}
.x13{left:489.918667pt;}
.x29{left:540.046667pt;}
.x21{left:581.589333pt;}
.xb{left:612.413333pt;}
.x9{left:613.636000pt;}
.x8{left:615.662667pt;}
.xa{left:625.917333pt;}
.x22{left:677.721333pt;}
.x16{left:685.107109pt;}
.x15{left:691.561789pt;}
.x17{left:698.015172pt;}
.x10{left:709.837321pt;}
}




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